blob: dfeba17ab09b7287709e7d2f608c92dd76d87b6d [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
Dave Barach5c20a012017-06-13 08:48:31 -0400458/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400459 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400460 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400461*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462always_inline uword
463vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400464{
Dave Barach5c20a012017-06-13 08:48:31 -0400465 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
Dave Barach2ab470a2016-08-10 18:38:36 -0400468/** Suspend a vlib cooperative multi-tasking thread for a period of time
469 @param vm - vlib_main_t *
470 @param dt - suspend interval in seconds
471 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
472*/
473
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474always_inline uword
475vlib_process_suspend (vlib_main_t * vm, f64 dt)
476{
477 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478 vlib_node_main_t *nm = &vm->node_main;
479 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480
481 if (vlib_process_suspend_time_is_zero (dt))
482 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
483
484 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
485 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
486 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
487 {
Dave Barach5c20a012017-06-13 08:48:31 -0400488 /* expiration time in 10us ticks */
489 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200490 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
492 }
Damjan Marioncea46522020-05-21 16:47:05 +0200493 else
494 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
496 return r;
497}
498
499always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500vlib_process_free_event_type (vlib_process_t * p, uword t,
501 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400503 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504 pool_put_index (p->event_type_pool, t);
505 if (is_one_time_event)
506 p->one_time_event_type_bitmap =
507 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
508}
509
510always_inline void
511vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
512{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400513 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
515 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
516}
517
518always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400519vlib_process_get_event_data (vlib_main_t * vm,
520 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400522 vlib_node_main_t *nm = &vm->node_main;
523 vlib_process_t *p;
524 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100525 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
528 p = vec_elt (nm->processes, nm->current_process_index);
529
530 /* Find first type with events ready.
531 Return invalid type when there's nothing there. */
532 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
533 if (t == ~0)
534 return 0;
535
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536 p->non_empty_event_type_bitmap =
537 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100539 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540 event_data_vector = p->pending_event_data_by_type_index[t];
541 p->pending_event_data_by_type_index[t] = 0;
542
543 et = pool_elt_at_index (p->event_type_pool, t);
544
545 /* Return user's opaque value and possibly index. */
546 *return_event_type_opaque = et->opaque;
547
548 vlib_process_maybe_free_event_type (p, t);
549
550 return event_data_vector;
551}
552
553/* Return event data vector for later reuse. We reuse event data to avoid
554 repeatedly allocating event vectors in cases where we care about speed. */
555always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400558 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 vec_add1 (nm->recycled_event_data_vectors, event_data);
560}
561
Dave Barach2ab470a2016-08-10 18:38:36 -0400562/** Return the first event type which has occurred and a vector of per-event
563 data of that type, or a timeout indication
564
565 @param vm - vlib_main_t pointer
566 @param data_vector - pointer to a (uword *) vector to receive event data
567 @returns either an event type and a vector of per-event instance data,
568 or ~0 to indicate a timeout.
569*/
570
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571always_inline uword
572vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
573{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574 vlib_node_main_t *nm = &vm->node_main;
575 vlib_process_t *p;
576 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 uword r, t, l;
578
579 p = vec_elt (nm->processes, nm->current_process_index);
580
581 /* Find first type with events ready.
582 Return invalid type when there's nothing there. */
583 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
584 if (t == ~0)
585 return t;
586
Dave Barach9b8ffd92016-07-08 08:13:45 -0400587 p->non_empty_event_type_bitmap =
588 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 l = _vec_len (p->pending_event_data_by_type_index[t]);
591 if (data_vector)
592 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
593 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
594
595 et = pool_elt_at_index (p->event_type_pool, t);
596
597 /* Return user's opaque value. */
598 r = et->opaque;
599
600 vlib_process_maybe_free_event_type (p, t);
601
602 return r;
603}
604
605always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606vlib_process_get_events_helper (vlib_process_t * p, uword t,
607 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608{
609 uword l;
610
Dave Barach9b8ffd92016-07-08 08:13:45 -0400611 p->non_empty_event_type_bitmap =
612 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
614 l = _vec_len (p->pending_event_data_by_type_index[t]);
615 if (data_vector)
616 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
617 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
618
619 vlib_process_maybe_free_event_type (p, t);
620
621 return l;
622}
623
624/* As above but query as specified type of event. Returns number of
625 events found. */
626always_inline uword
627vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
628 uword with_type_opaque)
629{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400630 vlib_node_main_t *nm = &vm->node_main;
631 vlib_process_t *p;
632 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
634 p = vec_elt (nm->processes, nm->current_process_index);
635 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400636 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 /* This can happen when an event has not yet been
638 signaled with given opaque type. */
639 return 0;
640
641 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643 return 0;
644
645 return vlib_process_get_events_helper (p, t, data_vector);
646}
647
648always_inline uword *
649vlib_process_wait_for_event (vlib_main_t * vm)
650{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400651 vlib_node_main_t *nm = &vm->node_main;
652 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 uword r;
654
655 p = vec_elt (nm->processes, nm->current_process_index);
656 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
657 {
658 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400659 r =
660 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200662 {
663 vlib_process_start_switch_stack (vm, 0);
664 clib_longjmp (&p->return_longjmp,
665 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
666 }
667 else
668 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 }
670
671 return p->non_empty_event_type_bitmap;
672}
673
674always_inline uword
675vlib_process_wait_for_one_time_event (vlib_main_t * vm,
676 uword ** data_vector,
677 uword with_type_index)
678{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400679 vlib_node_main_t *nm = &vm->node_main;
680 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 uword r;
682
683 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
685 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 {
687 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400688 r =
689 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200691 {
692 vlib_process_start_switch_stack (vm, 0);
693 clib_longjmp (&p->return_longjmp,
694 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
695 }
696 else
697 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 }
699
700 return vlib_process_get_events_helper (p, with_type_index, data_vector);
701}
702
703always_inline uword
704vlib_process_wait_for_event_with_type (vlib_main_t * vm,
705 uword ** data_vector,
706 uword with_type_opaque)
707{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400708 vlib_node_main_t *nm = &vm->node_main;
709 vlib_process_t *p;
710 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
712 p = vec_elt (nm->processes, nm->current_process_index);
713 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700715 {
716 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400717 r =
718 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Damjan Marioncea46522020-05-21 16:47:05 +0200720 {
721 vlib_process_start_switch_stack (vm, 0);
722 clib_longjmp (&p->return_longjmp,
723 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
724 }
725 else
726 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727
728 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
731 }
732
733 return vlib_process_get_events_helper (p, h[0], data_vector);
734}
735
Dave Barach2ab470a2016-08-10 18:38:36 -0400736/** Suspend a cooperative multi-tasking thread
737 Waits for an event, or for the indicated number of seconds to elapse
738 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200739 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400740 @returns the remaining time interval
741*/
742
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743always_inline f64
744vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
745{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400746 vlib_node_main_t *nm = &vm->node_main;
747 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748 f64 wakeup_time;
749 uword r;
750
751 p = vec_elt (nm->processes, nm->current_process_index);
752
753 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755 return dt;
756
757 wakeup_time = vlib_time_now (vm) + dt;
758
759 /* Suspend waiting for both clock and event to occur. */
760 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
761 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
762
763 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
764 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
765 {
Dave Barach5c20a012017-06-13 08:48:31 -0400766 p->resume_clock_interval = dt * 1e5;
Damjan Marioncea46522020-05-21 16:47:05 +0200767 vlib_process_start_switch_stack (vm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
769 }
Damjan Marioncea46522020-05-21 16:47:05 +0200770 else
771 vlib_process_finish_switch_stack (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
773 /* Return amount of time still left to sleep.
774 If <= 0 then we've been waken up by the clock (and not an event). */
775 return wakeup_time - vlib_time_now (vm);
776}
777
778always_inline vlib_process_event_type_t *
779vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
780{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400781 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782 pool_get (p->event_type_pool, et);
783 et->opaque = with_type_opaque;
784 return et;
785}
786
787always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
789 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400791 vlib_node_main_t *nm = &vm->node_main;
792 vlib_node_t *n = vlib_get_node (vm, node_index);
793 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
794 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700795 uword t;
796
797 et = vlib_process_new_event_type (p, with_type_opaque);
798 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799 p->one_time_event_type_bitmap =
800 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 return t;
802}
803
804always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
806 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 vlib_node_main_t *nm = &vm->node_main;
809 vlib_node_t *n = vlib_get_node (vm, node_index);
810 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700811
812 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
813 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
814}
815
816always_inline void *
817vlib_process_signal_event_helper (vlib_node_main_t * nm,
818 vlib_node_t * n,
819 vlib_process_t * p,
820 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400821 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822{
823 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825
Dave Barach1403fcd2018-02-05 09:45:43 -0500826 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
827
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829
830 vec_validate (p->pending_event_data_by_type_index, t);
831
832 /* Resize data vector and return caller's data to be written. */
833 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835 uword l;
836
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838 {
839 data_vec = vec_pop (nm->recycled_event_data_vectors);
840 _vec_len (data_vec) = 0;
841 }
842
843 l = vec_len (data_vec);
844
845 data_vec = _vec_resize (data_vec,
846 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847 /* total size after increment */
848 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 /* header_bytes */ 0, /* data_align */ 0);
850
851 p->pending_event_data_by_type_index[t] = data_vec;
852 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
853 }
854
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 p->non_empty_event_type_bitmap =
856 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857
858 p_flags = p->flags;
859
860 /* Event was already signalled? */
861 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
862
863 /* Process will resume when suspend time elapses? */
864 delete_from_wheel = 0;
865 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
866 {
867 /* Waiting for both event and clock? */
868 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700869 {
870 if (!TW (tw_timer_handle_is_free)
871 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
872 p->stop_timer_handle))
873 delete_from_wheel = 1;
874 else
875 /* timer just popped so process should already be on the list */
876 add_to_pending = 0;
877 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878 else
879 /* Waiting only for clock. Event will be queue and may be
880 handled when timer expires. */
881 add_to_pending = 0;
882 }
883
884 /* Never add current process to pending vector since current process is
885 already running. */
886 add_to_pending &= nm->current_process_index != n->runtime_index;
887
888 if (add_to_pending)
889 {
890 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
891 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
892 vec_add1 (nm->data_from_advancing_timing_wheel, x);
893 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400894 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
895 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700896 }
897
898 return data_to_be_written_by_caller;
899}
900
901always_inline void *
902vlib_process_signal_event_data (vlib_main_t * vm,
903 uword node_index,
904 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400905 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400907 vlib_node_main_t *nm = &vm->node_main;
908 vlib_node_t *n = vlib_get_node (vm, node_index);
909 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
910 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
John Lo609707e2017-09-19 21:45:10 -0400912 /* Must be in main thread */
913 ASSERT (vlib_get_thread_index () == 0);
914
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 vlib_process_event_type_t *et =
919 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920 t = et - p->event_type_pool;
921 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
922 }
923 else
924 t = h[0];
925
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
927 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928}
929
930always_inline void *
931vlib_process_signal_event_at_time (vlib_main_t * vm,
932 f64 dt,
933 uword node_index,
934 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400935 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937 vlib_node_main_t *nm = &vm->node_main;
938 vlib_node_t *n = vlib_get_node (vm, node_index);
939 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
940 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941
942 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400945 vlib_process_event_type_t *et =
946 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 t = et - p->event_type_pool;
948 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
949 }
950 else
951 t = h[0];
952
953 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400954 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
955 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 else
957 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400958 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959
960 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
961
962 te->n_data_elts = n_data_elts;
963 te->n_data_elt_bytes = n_data_elt_bytes;
964 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
965
966 /* Assert that structure fields are big enough. */
967 ASSERT (te->n_data_elts == n_data_elts);
968 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
969 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
970
971 te->process_node_index = n->runtime_index;
972 te->event_type_index = t;
973
Dave Barach5c20a012017-06-13 08:48:31 -0400974 p->stop_timer_handle =
975 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
976 vlib_timing_wheel_data_set_timed_event
977 (te - nm->signal_timed_event_data_pool),
978 0 /* timer_id */ ,
979 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
981 /* Inline data big enough to hold event? */
982 if (te->n_data_bytes < sizeof (te->inline_event_data))
983 return te->inline_event_data;
984 else
985 {
986 te->event_data_as_vector = 0;
987 vec_resize (te->event_data_as_vector, te->n_data_bytes);
988 return te->event_data_as_vector;
989 }
990 }
991}
992
993always_inline void *
994vlib_process_signal_one_time_event_data (vlib_main_t * vm,
995 uword node_index,
996 uword type_index,
997 uword n_data_elts,
998 uword n_data_elt_bytes)
999{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001000 vlib_node_main_t *nm = &vm->node_main;
1001 vlib_node_t *n = vlib_get_node (vm, node_index);
1002 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
1003 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
1004 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005}
1006
1007always_inline void
1008vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001009 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1012 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 d[0] = data;
1014}
1015
1016always_inline void
1017vlib_process_signal_event_pointer (vlib_main_t * vm,
1018 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001019 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001021 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
1022 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 d[0] = data;
1024}
1025
Dave Barach69128d02017-09-26 10:54:34 -04001026/**
1027 * Signal event to process from any thread.
1028 *
1029 * When in doubt, use this.
1030 */
1031always_inline void
1032vlib_process_signal_event_mt (vlib_main_t * vm,
1033 uword node_index, uword type_opaque, uword data)
1034{
1035 if (vlib_get_thread_index () != 0)
1036 {
1037 vlib_process_signal_event_mt_args_t args = {
1038 .node_index = node_index,
1039 .type_opaque = type_opaque,
1040 .data = data,
1041 };
1042 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
1043 (u8 *) & args, sizeof (args));
1044 }
1045 else
1046 vlib_process_signal_event (vm, node_index, type_opaque, data);
1047}
1048
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049always_inline void
1050vlib_process_signal_one_time_event (vlib_main_t * vm,
1051 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001052 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001054 uword *d =
1055 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1056 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057 d[0] = data;
1058}
1059
1060always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001061vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1062 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001064 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1065 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001066 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067}
1068
1069always_inline void
1070vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001071 vlib_one_time_waiting_process_t
1072 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001074 vlib_one_time_waiting_process_t *wp;
1075 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 vec_free (*wps);
1077}
1078
1079always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001080vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1081 vlib_one_time_waiting_process_t
1082 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083{
1084 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001085 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1086 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 vlib_process_wait_for_one_time_event (vm,
1088 /* don't care about data */ 0,
1089 p->one_time_event);
1090}
1091
1092always_inline void
1093vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001094 vlib_one_time_waiting_process_t
1095 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001097 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 vec_add2 (*wps, wp, 1);
1099 vlib_current_process_wait_for_one_time_event (vm, wp);
1100}
1101
1102always_inline u32
1103vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1104 vlib_node_runtime_t * node,
1105 uword n_vectors)
1106{
1107 u32 i, d, vi0, vi1;
1108 u32 i0, i1;
1109
1110 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1111 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1112 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1113 i0 = i ^ 0;
1114 i1 = i ^ 1;
1115 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001116 -
1117 (node->main_loop_count_last_dispatch >>
1118 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119 vi0 = node->main_loop_vector_stats[i0];
1120 vi1 = node->main_loop_vector_stats[i1];
1121 vi0 = d == 0 ? vi0 : 0;
1122 vi1 = d <= 1 ? vi1 : 0;
1123 vi0 += n_vectors;
1124 node->main_loop_vector_stats[i0] = vi0;
1125 node->main_loop_vector_stats[i1] = vi1;
1126 node->main_loop_count_last_dispatch = vm->main_loop_count;
1127 /* Return previous counter. */
1128 return node->main_loop_vector_stats[i1];
1129}
1130
1131always_inline f64
1132vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1133{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001134 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001135 u32 v;
1136
Dave Barach9b8ffd92016-07-08 08:13:45 -04001137 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1138 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1140}
1141
1142always_inline u32
1143vlib_node_vectors_per_main_loop_as_integer (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 v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1151}
1152
1153void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001154vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001155
Neale Rannsbb620d72017-06-29 00:19:08 -07001156/* Return the edge index if present, ~0 otherwise */
1157uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1158
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159/* Add next node to given node in given slot. */
1160uword
1161vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001162 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163
1164/* As above but adds to end of node's next vector. */
1165always_inline uword
1166vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001167{
1168 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1169}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001170
1171/* Add next node to given node in given slot. */
1172uword
1173vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001174 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175
1176/* As above but adds to end of node's next vector. */
1177always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1179{
1180 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1181}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001182
Florin Corase86a8ed2018-01-05 03:20:25 -08001183/**
1184 * Get list of nodes
1185 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001186void
1187vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1188 int barrier_sync, vlib_node_t **** node_dupsp,
1189 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001190
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001193
1194/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001195void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001196
1197/* Register new packet processing node. Nodes can be registered
1198 dynamically via this call or statically via the VLIB_REGISTER_NODE
1199 macro. */
1200u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1201
1202/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1203void vlib_register_all_static_nodes (vlib_main_t * vm);
1204
1205/* Start a process. */
1206void vlib_start_process (vlib_main_t * vm, uword process_index);
1207
1208/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001209void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001210
1211/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001212clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001213
1214format_function_t format_vlib_node_graph;
1215format_function_t format_vlib_node_name;
1216format_function_t format_vlib_next_node_name;
1217format_function_t format_vlib_node_and_next;
1218format_function_t format_vlib_cpu_time;
1219format_function_t format_vlib_time;
1220/* Parse node name -> node index. */
1221unformat_function_t unformat_vlib_node;
1222
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223always_inline void
1224vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1225 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001226{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001227 vlib_node_t *n = vlib_get_node (vm, node_index);
1228 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229 u32 node_counter_base_index = n->error_heap_index;
1230 em->counters[node_counter_base_index + counter_index] += increment;
1231}
1232
Dave Barach11965c72019-05-28 16:31:05 -04001233/** @brief Create a vlib process
1234 * @param vm &vlib_global_main
1235 * @param f the process node function
1236 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1237 * @return newly-create node index
1238 * @warning call only on the main thread. Barrier sync required
1239 */
1240u32 vlib_process_create (vlib_main_t * vm, char *name,
1241 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1242
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001244
1245/*
1246 * fd.io coding-style-patch-verification: ON
1247 *
1248 * Local Variables:
1249 * eval: (c-set-style "gnu")
1250 * End:
1251 */