blob: b33f4960a90d5d45b29cb73cebca493dbcf08b30 [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Damjan Marioncea46522020-05-21 16:47:05 +020051#ifdef CLIB_SANITIZE_ADDR
52#include <sanitizer/asan_interface.h>
53#endif
54
55static_always_inline void
56vlib_process_start_switch_stack (vlib_main_t * vm, vlib_process_t * p)
57{
58#ifdef CLIB_SANITIZE_ADDR
59 void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index];
60 u32 stack_bytes = p ? p->log2_n_stack_bytes : VLIB_THREAD_STACK_SIZE;
61 __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes);
62#endif
63}
64
65static_always_inline void
66vlib_process_finish_switch_stack (vlib_main_t * vm)
67{
68#ifdef CLIB_SANITIZE_ADDR
69 const void *bottom_old;
70 size_t size_old;
71
72 __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old,
73 &size_old);
74#endif
75}
76
Dave Barach9770e202016-07-06 10:29:27 -040077/** \brief Get vlib node by index.
78 @warning This function will ASSERT if @c i is out of range.
79 @param vm vlib_main_t pointer, varies by thread
80 @param i node index.
81 @return pointer to the requested vlib_node_t.
82*/
83
Ed Warnickecb9cada2015-12-08 15:45:58 -070084always_inline vlib_node_t *
85vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040086{
87 return vec_elt (vm->node_main.nodes, i);
88}
Ed Warnickecb9cada2015-12-08 15:45:58 -070089
Dave Barach9770e202016-07-06 10:29:27 -040090/** \brief Get vlib node by graph arc (next) index.
91 @param vm vlib_main_t pointer, varies by thread
92 @param node_index index of original node
93 @param next_index graph arc index
94 @return pointer to the vlib_node_t at the end of the indicated arc
95*/
96
Ed Warnickecb9cada2015-12-08 15:45:58 -070097always_inline vlib_node_t *
98vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
99{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400100 vlib_node_main_t *nm = &vm->node_main;
101 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
103 n = vec_elt (nm->nodes, node_index);
104 ASSERT (next_index < vec_len (n->next_nodes));
105 return vlib_get_node (vm, n->next_nodes[next_index]);
106}
107
Dave Barach9770e202016-07-06 10:29:27 -0400108/** \brief Get node runtime by node index.
109 @param vm vlib_main_t pointer, varies by thread
110 @param node_index index of node
111 @return pointer to the indicated vlib_node_runtime_t
112*/
113
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114always_inline vlib_node_runtime_t *
115vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
116{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400117 vlib_node_main_t *nm = &vm->node_main;
118 vlib_node_t *n = vec_elt (nm->nodes, node_index);
119 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 if (n->type != VLIB_NODE_TYPE_PROCESS)
121 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
122 else
123 {
124 p = vec_elt (nm->processes, n->runtime_index);
125 return &p->node_runtime;
126 }
127}
128
Dave Barach9770e202016-07-06 10:29:27 -0400129/** \brief Get node runtime private data by node index.
130 @param vm vlib_main_t pointer, varies by thread
131 @param node_index index of the node
132 @return pointer to the indicated vlib_node_runtime_t private data
133*/
134
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135always_inline void *
136vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
137{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400138 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139 return r->runtime_data;
140}
141
Dave Barach9770e202016-07-06 10:29:27 -0400142/** \brief Set node runtime private data.
143 @param vm vlib_main_t pointer, varies by thread
144 @param node_index index of the node
145 @param runtime_data arbitrary runtime private data
146 @param n_runtime_data_bytes size of runtime private data
147*/
148
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149always_inline void
150vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400153 vlib_node_t *n = vlib_get_node (vm, node_index);
154 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
156 n->runtime_data_bytes = n_runtime_data_bytes;
157 vec_free (n->runtime_data);
158 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
159
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100160 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
161 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
162
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 if (vec_len (n->runtime_data) > 0)
Dave Barach178cf492018-11-13 16:34:13 -0500164 clib_memcpy_fast (r->runtime_data, n->runtime_data,
165 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166}
167
Dave Barach9770e202016-07-06 10:29:27 -0400168/** \brief Set node dispatch state.
169 @param vm vlib_main_t pointer, varies by thread
170 @param node_index index of the node
171 @param new_state new state for node, see vlib_node_state_t
172*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400174vlib_node_set_state (vlib_main_t * vm, u32 node_index,
175 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 vlib_node_main_t *nm = &vm->node_main;
178 vlib_node_t *n;
179 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
181 n = vec_elt (nm->nodes, node_index);
182 if (n->type == VLIB_NODE_TYPE_PROCESS)
183 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400184 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 r = &p->node_runtime;
186
187 /* When disabling make sure flags are cleared. */
188 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
189 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
190 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
191 }
192 else
193 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
194
195 ASSERT (new_state < VLIB_N_NODE_STATE);
196
197 if (n->type == VLIB_NODE_TYPE_INPUT)
198 {
199 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
200 nm->input_node_counts_by_state[n->state] -= 1;
201 nm->input_node_counts_by_state[new_state] += 1;
202 }
203
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000204 if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED))
205 vlib_node_runtime_perf_counter (vm, r, 0, 0, 0,
206 VLIB_NODE_RUNTIME_PERF_RESET);
207
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 n->state = new_state;
209 r->state = new_state;
210}
211
Damjan Marion153646e2017-04-05 18:15:45 +0200212/** \brief Get node dispatch state.
213 @param vm vlib_main_t pointer, varies by thread
214 @param node_index index of the node
215 @return state for node, see vlib_node_state_t
216*/
217always_inline vlib_node_state_t
218vlib_node_get_state (vlib_main_t * vm, u32 node_index)
219{
220 vlib_node_main_t *nm = &vm->node_main;
221 vlib_node_t *n;
222 n = vec_elt (nm->nodes, node_index);
223 return n->state;
224}
225
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226always_inline void
Damjan Marion1033b492020-06-03 12:20:41 +0200227vlib_node_set_interrupt_pending_with_data (vlib_main_t * vm, u32 node_index,
228 u32 data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 vlib_node_main_t *nm = &vm->node_main;
231 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200232 vlib_node_interrupt_t *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion1033b492020-06-03 12:20:41 +0200234
235 if (vm == vlib_get_main ())
236 {
237 /* local thread */
238 vec_add2 (nm->pending_local_interrupts, i, 1);
239 i->node_runtime_index = n->runtime_index;
240 i->data = data;
241 }
242 else
243 {
244 /* remote thread */
245 clib_spinlock_lock (&nm->pending_interrupt_lock);
246 vec_add2 (nm->pending_remote_interrupts, i, 1);
247 i->node_runtime_index = n->runtime_index;
248 i->data = data;
Benoît Ganned25147d2020-06-30 18:17:06 +0200249 *nm->pending_remote_interrupts_notify = 1;
Damjan Marion1033b492020-06-03 12:20:41 +0200250 clib_spinlock_unlock (&nm->pending_interrupt_lock);
251 }
252}
253
254always_inline void
255vlib_node_set_interrupt_pending (vlib_main_t * vm, u32 node_index)
256{
257 vlib_node_set_interrupt_pending_with_data (vm, node_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258}
259
260always_inline vlib_process_t *
261vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
262{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
265 return vec_elt (nm->processes, node->runtime_index);
266}
267
Ed Warnickecb9cada2015-12-08 15:45:58 -0700268always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200269vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200271 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200272 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273 return f;
274}
275
Damjan Marion296988d2019-02-21 20:24:54 +0100276always_inline void
277vlib_frame_no_append (vlib_frame_t * f)
278{
279 f->frame_flags |= VLIB_FRAME_NO_APPEND;
280}
281
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282/* Byte alignment for vector arguments. */
283#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
284
285always_inline u32
286vlib_frame_vector_byte_offset (u32 scalar_size)
287{
288 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
289 VLIB_FRAME_VECTOR_ALIGN);
290}
291
Dave Barach9770e202016-07-06 10:29:27 -0400292/** \brief Get pointer to frame vector data.
293 @param f vlib_frame_t pointer
294 @return pointer to first vector element in frame
295*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296always_inline void *
297vlib_frame_vector_args (vlib_frame_t * f)
298{
299 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
300}
301
Dave Barach9770e202016-07-06 10:29:27 -0400302/** \brief Get pointer to frame scalar data.
303
Dave Barach9770e202016-07-06 10:29:27 -0400304 @param f vlib_frame_t pointer
305
306 @return arbitrary node scalar data
307
308 @sa vlib_frame_vector_args
309*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100311vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400312{
313 return vlib_frame_vector_args (f) - f->scalar_size;
314}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
316always_inline vlib_next_frame_t *
317vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320 vlib_node_main_t *nm = &vm->node_main;
321 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
323 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
326 if (CLIB_DEBUG > 0)
327 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329 node = vec_elt (nm->nodes, n->node_index);
330 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
331 ASSERT (nf->node_runtime_index == next->runtime_index);
332 }
333
334 return nf;
335}
336
Dave Barach9770e202016-07-06 10:29:27 -0400337/** \brief Get pointer to frame by (@c node_index, @c next_index).
338
339 @warning This is not a function that you should call directly.
340 See @ref vlib_get_next_frame instead.
341
342 @param vm vlib_main_t pointer, varies by thread
343 @param node_index index of the node
344 @param next_index graph arc index
345
346 @return pointer to the requested vlib_next_frame_t
347
348 @sa vlib_get_next_frame
349*/
350
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400352vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400354 vlib_node_main_t *nm = &vm->node_main;
355 vlib_node_t *n;
356 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357
358 n = vec_elt (nm->nodes, node_index);
359 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
360 return vlib_node_runtime_get_next_frame (vm, r, next_index);
361}
362
Dave Barach9b8ffd92016-07-08 08:13:45 -0400363vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
364 vlib_node_runtime_t * node,
365 u32 next_index,
366 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367
368#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
369do { \
370 vlib_frame_t * _f \
371 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
372 (alloc_new_frame)); \
373 u32 _n = _f->n_vectors; \
374 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
375 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
376} while (0)
377
Dave Barach9770e202016-07-06 10:29:27 -0400378
Dave Barach9b8ffd92016-07-08 08:13:45 -0400379/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400380 (@c vlib_node_runtime_t, @c next_index).
381 Standard single/dual loop boilerplate element.
382 @attention This is a MACRO, with SIDE EFFECTS.
383
384 @param vm vlib_main_t pointer, varies by thread
385 @param node current node vlib_node_runtime_t pointer
386 @param next_index requested graph arc index
387
388 @return @c vectors -- pointer to next available vector slot
389 @return @c n_vectors_left -- number of vector slots available
390*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
392 vlib_get_next_frame_macro (vm, node, next_index, \
393 vectors, n_vectors_left, \
394 /* alloc new frame */ 0)
395
396#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
397 vlib_get_next_frame_macro (vm, node, next_index, \
398 vectors, n_vectors_left, \
399 /* alloc new frame */ 1)
400
Dave Barach9770e202016-07-06 10:29:27 -0400401/** \brief Release pointer to next frame vector data.
402 Standard single/dual loop boilerplate element.
403 @param vm vlib_main_t pointer, varies by thread
404 @param r current node vlib_node_runtime_t pointer
405 @param next_index graph arc index
406 @param n_packets_left number of slots still available in vector
407*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408void
409vlib_put_next_frame (vlib_main_t * vm,
410 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412
413/* Combination get plus put. Returns vector argument just added. */
414#define vlib_set_next_frame(vm,node,next_index,v) \
415({ \
416 uword _n_left; \
417 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
418 ASSERT (_n_left > 0); \
419 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
420 (v); \
421})
422
423always_inline void
424vlib_set_next_frame_buffer (vlib_main_t * vm,
425 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400426 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400428 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 p = vlib_set_next_frame (vm, node, next_index, p);
430 p[0] = buffer_index;
431}
432
Dave Barach9b8ffd92016-07-08 08:13:45 -0400433vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
434void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
435 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437always_inline uword
438vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400439{
440 return vm->node_main.current_process_index != ~0;
441}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
Florin Coras66b11312017-07-31 17:18:03 -0700443always_inline vlib_process_t *
444vlib_get_current_process (vlib_main_t * vm)
445{
446 vlib_node_main_t *nm = &vm->node_main;
447 if (vlib_in_process_context (vm))
448 return vec_elt (nm->processes, nm->current_process_index);
449 return 0;
450}
451
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452always_inline uword
453vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454{
455 return vlib_get_current_process (vm)->node_runtime.node_index;
456}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
Damjan Marion698eeb12020-09-11 14:11:11 +0200458always_inline u32
459vlib_get_current_process_node_index (vlib_main_t * vm)
460{
461 vlib_process_t *process = vlib_get_current_process (vm);
462 return process->node_runtime.node_index;
463}
464
Dave Barach5c20a012017-06-13 08:48:31 -0400465/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400466 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400467 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400468*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469always_inline uword
470vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471{
Dave Barach5c20a012017-06-13 08:48:31 -0400472 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400473}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
Dave Barach2ab470a2016-08-10 18:38:36 -0400475/** Suspend a vlib cooperative multi-tasking thread for a period of time
476 @param vm - vlib_main_t *
477 @param dt - suspend interval in seconds
478 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
479*/
480
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481always_inline uword
482vlib_process_suspend (vlib_main_t * vm, f64 dt)
483{
484 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400485 vlib_node_main_t *nm = &vm->node_main;
486 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
488 if (vlib_process_suspend_time_is_zero (dt))
489 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
490
491 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
492 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
493 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
494 {
Dave Barach5c20a012017-06-13 08:48:31 -0400495 /* expiration time in 10us ticks */
496 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200497 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
499 }
Damjan Marioncea46522020-05-21 16:47:05 +0200500 else
501 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502
503 return r;
504}
505
506always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400507vlib_process_free_event_type (vlib_process_t * p, uword t,
508 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511 pool_put_index (p->event_type_pool, t);
512 if (is_one_time_event)
513 p->one_time_event_type_bitmap =
514 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
515}
516
517always_inline void
518vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
519{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400520 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
522 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
523}
524
525always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526vlib_process_get_event_data (vlib_main_t * vm,
527 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400529 vlib_node_main_t *nm = &vm->node_main;
530 vlib_process_t *p;
531 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100532 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400533 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534
535 p = vec_elt (nm->processes, nm->current_process_index);
536
537 /* Find first type with events ready.
538 Return invalid type when there's nothing there. */
539 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
540 if (t == ~0)
541 return 0;
542
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543 p->non_empty_event_type_bitmap =
544 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100546 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 event_data_vector = p->pending_event_data_by_type_index[t];
548 p->pending_event_data_by_type_index[t] = 0;
549
550 et = pool_elt_at_index (p->event_type_pool, t);
551
552 /* Return user's opaque value and possibly index. */
553 *return_event_type_opaque = et->opaque;
554
555 vlib_process_maybe_free_event_type (p, t);
556
557 return event_data_vector;
558}
559
560/* Return event data vector for later reuse. We reuse event data to avoid
561 repeatedly allocating event vectors in cases where we care about speed. */
562always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400563vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566 vec_add1 (nm->recycled_event_data_vectors, event_data);
567}
568
Dave Barach2ab470a2016-08-10 18:38:36 -0400569/** Return the first event type which has occurred and a vector of per-event
570 data of that type, or a timeout indication
571
572 @param vm - vlib_main_t pointer
573 @param data_vector - pointer to a (uword *) vector to receive event data
574 @returns either an event type and a vector of per-event instance data,
575 or ~0 to indicate a timeout.
576*/
577
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578always_inline uword
579vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
580{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400581 vlib_node_main_t *nm = &vm->node_main;
582 vlib_process_t *p;
583 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584 uword r, t, l;
585
586 p = vec_elt (nm->processes, nm->current_process_index);
587
588 /* Find first type with events ready.
589 Return invalid type when there's nothing there. */
590 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
591 if (t == ~0)
592 return t;
593
Dave Barach9b8ffd92016-07-08 08:13:45 -0400594 p->non_empty_event_type_bitmap =
595 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
597 l = _vec_len (p->pending_event_data_by_type_index[t]);
598 if (data_vector)
599 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
600 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
601
602 et = pool_elt_at_index (p->event_type_pool, t);
603
604 /* Return user's opaque value. */
605 r = et->opaque;
606
607 vlib_process_maybe_free_event_type (p, t);
608
609 return r;
610}
611
612always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613vlib_process_get_events_helper (vlib_process_t * p, uword t,
614 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615{
616 uword l;
617
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618 p->non_empty_event_type_bitmap =
619 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620
621 l = _vec_len (p->pending_event_data_by_type_index[t]);
622 if (data_vector)
623 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
624 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
625
626 vlib_process_maybe_free_event_type (p, t);
627
628 return l;
629}
630
631/* As above but query as specified type of event. Returns number of
632 events found. */
633always_inline uword
634vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
635 uword with_type_opaque)
636{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637 vlib_node_main_t *nm = &vm->node_main;
638 vlib_process_t *p;
639 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640
641 p = vec_elt (nm->processes, nm->current_process_index);
642 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400643 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 /* This can happen when an event has not yet been
645 signaled with given opaque type. */
646 return 0;
647
648 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650 return 0;
651
652 return vlib_process_get_events_helper (p, t, data_vector);
653}
654
655always_inline uword *
656vlib_process_wait_for_event (vlib_main_t * vm)
657{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400658 vlib_node_main_t *nm = &vm->node_main;
659 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660 uword r;
661
662 p = vec_elt (nm->processes, nm->current_process_index);
663 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
664 {
665 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666 r =
667 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200669 {
670 vlib_process_start_switch_stack (vm, 0);
671 clib_longjmp (&p->return_longjmp,
672 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
673 }
674 else
675 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676 }
677
678 return p->non_empty_event_type_bitmap;
679}
680
681always_inline uword
682vlib_process_wait_for_one_time_event (vlib_main_t * vm,
683 uword ** data_vector,
684 uword with_type_index)
685{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400686 vlib_node_main_t *nm = &vm->node_main;
687 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 uword r;
689
690 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
692 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693 {
694 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400695 r =
696 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200698 {
699 vlib_process_start_switch_stack (vm, 0);
700 clib_longjmp (&p->return_longjmp,
701 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
702 }
703 else
704 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705 }
706
707 return vlib_process_get_events_helper (p, with_type_index, data_vector);
708}
709
710always_inline uword
711vlib_process_wait_for_event_with_type (vlib_main_t * vm,
712 uword ** data_vector,
713 uword with_type_opaque)
714{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400715 vlib_node_main_t *nm = &vm->node_main;
716 vlib_process_t *p;
717 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718
719 p = vec_elt (nm->processes, nm->current_process_index);
720 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400721 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 {
723 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400724 r =
725 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200727 {
728 vlib_process_start_switch_stack (vm, 0);
729 clib_longjmp (&p->return_longjmp,
730 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
731 }
732 else
733 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734
735 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
738 }
739
740 return vlib_process_get_events_helper (p, h[0], data_vector);
741}
742
Dave Barach2ab470a2016-08-10 18:38:36 -0400743/** Suspend a cooperative multi-tasking thread
744 Waits for an event, or for the indicated number of seconds to elapse
745 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200746 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400747 @returns the remaining time interval
748*/
749
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750always_inline f64
751vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
752{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400753 vlib_node_main_t *nm = &vm->node_main;
754 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 f64 wakeup_time;
756 uword r;
757
758 p = vec_elt (nm->processes, nm->current_process_index);
759
760 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400761 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762 return dt;
763
764 wakeup_time = vlib_time_now (vm) + dt;
765
766 /* Suspend waiting for both clock and event to occur. */
767 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
768 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
769
770 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
771 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
772 {
Dave Barach5c20a012017-06-13 08:48:31 -0400773 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200774 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
776 }
Damjan Marioncea46522020-05-21 16:47:05 +0200777 else
778 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779
780 /* Return amount of time still left to sleep.
781 If <= 0 then we've been waken up by the clock (and not an event). */
782 return wakeup_time - vlib_time_now (vm);
783}
784
785always_inline vlib_process_event_type_t *
786vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
787{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 pool_get (p->event_type_pool, et);
790 et->opaque = with_type_opaque;
791 return et;
792}
793
794always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400795vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
796 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400798 vlib_node_main_t *nm = &vm->node_main;
799 vlib_node_t *n = vlib_get_node (vm, node_index);
800 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
801 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700802 uword t;
803
804 et = vlib_process_new_event_type (p, with_type_opaque);
805 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806 p->one_time_event_type_bitmap =
807 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808 return t;
809}
810
811always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400812vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
813 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700814{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400815 vlib_node_main_t *nm = &vm->node_main;
816 vlib_node_t *n = vlib_get_node (vm, node_index);
817 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
819 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
820 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
821}
822
823always_inline void *
824vlib_process_signal_event_helper (vlib_node_main_t * nm,
825 vlib_node_t * n,
826 vlib_process_t * p,
827 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829{
830 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400831 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832
Dave Barach1403fcd2018-02-05 09:45:43 -0500833 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
834
Dave Barach9b8ffd92016-07-08 08:13:45 -0400835 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700836
837 vec_validate (p->pending_event_data_by_type_index, t);
838
839 /* Resize data vector and return caller's data to be written. */
840 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400841 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842 uword l;
843
Dave Barach9b8ffd92016-07-08 08:13:45 -0400844 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845 {
846 data_vec = vec_pop (nm->recycled_event_data_vectors);
847 _vec_len (data_vec) = 0;
848 }
849
850 l = vec_len (data_vec);
851
852 data_vec = _vec_resize (data_vec,
853 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400854 /* total size after increment */
855 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 /* header_bytes */ 0, /* data_align */ 0);
857
858 p->pending_event_data_by_type_index[t] = data_vec;
859 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
860 }
861
Dave Barach9b8ffd92016-07-08 08:13:45 -0400862 p->non_empty_event_type_bitmap =
863 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
865 p_flags = p->flags;
866
867 /* Event was already signalled? */
868 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
869
870 /* Process will resume when suspend time elapses? */
871 delete_from_wheel = 0;
872 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
873 {
874 /* Waiting for both event and clock? */
875 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700876 {
877 if (!TW (tw_timer_handle_is_free)
878 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
879 p->stop_timer_handle))
880 delete_from_wheel = 1;
881 else
882 /* timer just popped so process should already be on the list */
883 add_to_pending = 0;
884 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885 else
886 /* Waiting only for clock. Event will be queue and may be
887 handled when timer expires. */
888 add_to_pending = 0;
889 }
890
891 /* Never add current process to pending vector since current process is
892 already running. */
893 add_to_pending &= nm->current_process_index != n->runtime_index;
894
895 if (add_to_pending)
896 {
897 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
898 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
899 vec_add1 (nm->data_from_advancing_timing_wheel, x);
900 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400901 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
902 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903 }
904
905 return data_to_be_written_by_caller;
906}
907
908always_inline void *
909vlib_process_signal_event_data (vlib_main_t * vm,
910 uword node_index,
911 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400912 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914 vlib_node_main_t *nm = &vm->node_main;
915 vlib_node_t *n = vlib_get_node (vm, node_index);
916 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
917 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918
John Lo609707e2017-09-19 21:45:10 -0400919 /* Must be in main thread */
920 ASSERT (vlib_get_thread_index () == 0);
921
Ed Warnickecb9cada2015-12-08 15:45:58 -0700922 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400923 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 vlib_process_event_type_t *et =
926 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927 t = et - p->event_type_pool;
928 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
929 }
930 else
931 t = h[0];
932
Dave Barach9b8ffd92016-07-08 08:13:45 -0400933 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
934 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935}
936
937always_inline void *
938vlib_process_signal_event_at_time (vlib_main_t * vm,
939 f64 dt,
940 uword node_index,
941 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400942 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400944 vlib_node_main_t *nm = &vm->node_main;
945 vlib_node_t *n = vlib_get_node (vm, node_index);
946 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
947 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948
949 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400950 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400952 vlib_process_event_type_t *et =
953 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700954 t = et - p->event_type_pool;
955 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
956 }
957 else
958 t = h[0];
959
960 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
962 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 else
964 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400965 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966
967 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
968
969 te->n_data_elts = n_data_elts;
970 te->n_data_elt_bytes = n_data_elt_bytes;
971 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
972
973 /* Assert that structure fields are big enough. */
974 ASSERT (te->n_data_elts == n_data_elts);
975 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
976 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
977
978 te->process_node_index = n->runtime_index;
979 te->event_type_index = t;
980
Dave Barach5c20a012017-06-13 08:48:31 -0400981 p->stop_timer_handle =
982 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
983 vlib_timing_wheel_data_set_timed_event
984 (te - nm->signal_timed_event_data_pool),
985 0 /* timer_id */ ,
986 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987
988 /* Inline data big enough to hold event? */
989 if (te->n_data_bytes < sizeof (te->inline_event_data))
990 return te->inline_event_data;
991 else
992 {
993 te->event_data_as_vector = 0;
994 vec_resize (te->event_data_as_vector, te->n_data_bytes);
995 return te->event_data_as_vector;
996 }
997 }
998}
999
1000always_inline void *
1001vlib_process_signal_one_time_event_data (vlib_main_t * vm,
1002 uword node_index,
1003 uword type_index,
1004 uword n_data_elts,
1005 uword n_data_elt_bytes)
1006{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001007 vlib_node_main_t *nm = &vm->node_main;
1008 vlib_node_t *n = vlib_get_node (vm, node_index);
1009 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1010 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1011 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012}
1013
1014always_inline void
1015vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001016 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001018 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1019 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020 d[0] = data;
1021}
1022
1023always_inline void
1024vlib_process_signal_event_pointer (vlib_main_t * vm,
1025 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001028 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1029 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030 d[0] = data;
1031}
1032
Dave Barach69128d02017-09-26 10:54:34 -04001033/**
1034 * Signal event to process from any thread.
1035 *
1036 * When in doubt, use this.
1037 */
1038always_inline void
1039vlib_process_signal_event_mt (vlib_main_t * vm,
1040 uword node_index, uword type_opaque, uword data)
1041{
1042 if (vlib_get_thread_index () != 0)
1043 {
1044 vlib_process_signal_event_mt_args_t args = {
1045 .node_index = node_index,
1046 .type_opaque = type_opaque,
1047 .data = data,
1048 };
1049 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1050 (u8 *) & args, sizeof (args));
1051 }
1052 else
1053 vlib_process_signal_event (vm, node_index, type_opaque, data);
1054}
1055
Ed Warnickecb9cada2015-12-08 15:45:58 -07001056always_inline void
1057vlib_process_signal_one_time_event (vlib_main_t * vm,
1058 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001059 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001060{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001061 uword *d =
1062 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1063 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001064 d[0] = data;
1065}
1066
1067always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001068vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1069 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001070{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001071 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1072 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001073 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074}
1075
1076always_inline void
1077vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001078 vlib_one_time_waiting_process_t
1079 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001081 vlib_one_time_waiting_process_t *wp;
1082 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 vec_free (*wps);
1084}
1085
1086always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001087vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1088 vlib_one_time_waiting_process_t
1089 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090{
1091 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001092 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1093 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 vlib_process_wait_for_one_time_event (vm,
1095 /* don't care about data */ 0,
1096 p->one_time_event);
1097}
1098
1099always_inline void
1100vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001101 vlib_one_time_waiting_process_t
1102 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001104 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105 vec_add2 (*wps, wp, 1);
1106 vlib_current_process_wait_for_one_time_event (vm, wp);
1107}
1108
1109always_inline u32
1110vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1111 vlib_node_runtime_t * node,
1112 uword n_vectors)
1113{
1114 u32 i, d, vi0, vi1;
1115 u32 i0, i1;
1116
1117 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1118 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1119 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1120 i0 = i ^ 0;
1121 i1 = i ^ 1;
1122 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001123 -
1124 (node->main_loop_count_last_dispatch >>
1125 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126 vi0 = node->main_loop_vector_stats[i0];
1127 vi1 = node->main_loop_vector_stats[i1];
1128 vi0 = d == 0 ? vi0 : 0;
1129 vi1 = d <= 1 ? vi1 : 0;
1130 vi0 += n_vectors;
1131 node->main_loop_vector_stats[i0] = vi0;
1132 node->main_loop_vector_stats[i1] = vi1;
1133 node->main_loop_count_last_dispatch = vm->main_loop_count;
1134 /* Return previous counter. */
1135 return node->main_loop_vector_stats[i1];
1136}
1137
1138always_inline f64
1139vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1140{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001141 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001142 u32 v;
1143
Dave Barach9b8ffd92016-07-08 08:13:45 -04001144 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1145 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1147}
1148
1149always_inline u32
1150vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1151{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001152 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001153 u32 v;
1154
Dave Barach9b8ffd92016-07-08 08:13:45 -04001155 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1156 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001157 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1158}
1159
1160void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001161vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
Neale Rannsbb620d72017-06-29 00:19:08 -07001163/* Return the edge index if present, ~0 otherwise */
1164uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1165
Ed Warnickecb9cada2015-12-08 15:45:58 -07001166/* Add next node to given node in given slot. */
1167uword
1168vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001169 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170
1171/* As above but adds to end of node's next vector. */
1172always_inline uword
1173vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001174{
1175 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1176}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
1178/* Add next node to given node in given slot. */
1179uword
1180vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001181 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182
1183/* As above but adds to end of node's next vector. */
1184always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001185vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1186{
1187 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1188}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189
Florin Corase86a8ed2018-01-05 03:20:25 -08001190/**
1191 * Get list of nodes
1192 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001193void
1194vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1195 int barrier_sync, vlib_node_t **** node_dupsp,
1196 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001197
Ed Warnickecb9cada2015-12-08 15:45:58 -07001198/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001199vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001200
1201/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001202void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001203
1204/* Register new packet processing node. Nodes can be registered
1205 dynamically via this call or statically via the VLIB_REGISTER_NODE
1206 macro. */
1207u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1208
1209/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1210void vlib_register_all_static_nodes (vlib_main_t * vm);
1211
1212/* Start a process. */
1213void vlib_start_process (vlib_main_t * vm, uword process_index);
1214
1215/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001216void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001217
1218/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001219clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001220
1221format_function_t format_vlib_node_graph;
1222format_function_t format_vlib_node_name;
1223format_function_t format_vlib_next_node_name;
1224format_function_t format_vlib_node_and_next;
1225format_function_t format_vlib_cpu_time;
1226format_function_t format_vlib_time;
1227/* Parse node name -> node index. */
1228unformat_function_t unformat_vlib_node;
1229
Dave Barach9b8ffd92016-07-08 08:13:45 -04001230always_inline void
1231vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1232 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001234 vlib_node_t *n = vlib_get_node (vm, node_index);
1235 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001236 u32 node_counter_base_index = n->error_heap_index;
1237 em->counters[node_counter_base_index + counter_index] += increment;
1238}
1239
Dave Barach11965c72019-05-28 16:31:05 -04001240/** @brief Create a vlib process
1241 * @param vm &vlib_global_main
1242 * @param f the process node function
1243 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1244 * @return newly-create node index
1245 * @warning call only on the main thread. Barrier sync required
1246 */
1247u32 vlib_process_create (vlib_main_t * vm, char *name,
1248 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1249
Damjan Marion8b60fb02020-11-27 20:15:17 +01001250always_inline int
1251vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn)
1252{
1253 if (fn && vm->dispatch_wrapper_fn)
1254 return 1;
1255 vm->dispatch_wrapper_fn = fn;
1256 return 0;
1257}
1258
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001260
1261/*
1262 * fd.io coding-style-patch-verification: ON
1263 *
1264 * Local Variables:
1265 * eval: (c-set-style "gnu")
1266 * End:
1267 */