blob: 3304d0f0d9f8f92c3495f9b26aa5fac798e522a8 [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
Dave Barach9770e202016-07-06 10:29:27 -040051/** \brief Get vlib node by index.
52 @warning This function will ASSERT if @c i is out of range.
53 @param vm vlib_main_t pointer, varies by thread
54 @param i node index.
55 @return pointer to the requested vlib_node_t.
56*/
57
Ed Warnickecb9cada2015-12-08 15:45:58 -070058always_inline vlib_node_t *
59vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040060{
61 return vec_elt (vm->node_main.nodes, i);
62}
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
Dave Barach9770e202016-07-06 10:29:27 -040064/** \brief Get vlib node by graph arc (next) index.
65 @param vm vlib_main_t pointer, varies by thread
66 @param node_index index of original node
67 @param next_index graph arc index
68 @return pointer to the vlib_node_t at the end of the indicated arc
69*/
70
Ed Warnickecb9cada2015-12-08 15:45:58 -070071always_inline vlib_node_t *
72vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
73{
Dave Barach9b8ffd92016-07-08 08:13:45 -040074 vlib_node_main_t *nm = &vm->node_main;
75 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
77 n = vec_elt (nm->nodes, node_index);
78 ASSERT (next_index < vec_len (n->next_nodes));
79 return vlib_get_node (vm, n->next_nodes[next_index]);
80}
81
Dave Barach9770e202016-07-06 10:29:27 -040082/** \brief Get node runtime by node index.
83 @param vm vlib_main_t pointer, varies by thread
84 @param node_index index of node
85 @return pointer to the indicated vlib_node_runtime_t
86*/
87
Ed Warnickecb9cada2015-12-08 15:45:58 -070088always_inline vlib_node_runtime_t *
89vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
90{
Dave Barach9b8ffd92016-07-08 08:13:45 -040091 vlib_node_main_t *nm = &vm->node_main;
92 vlib_node_t *n = vec_elt (nm->nodes, node_index);
93 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 if (n->type != VLIB_NODE_TYPE_PROCESS)
95 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
96 else
97 {
98 p = vec_elt (nm->processes, n->runtime_index);
99 return &p->node_runtime;
100 }
101}
102
Dave Barach9770e202016-07-06 10:29:27 -0400103/** \brief Get node runtime private data by node index.
104 @param vm vlib_main_t pointer, varies by thread
105 @param node_index index of the node
106 @return pointer to the indicated vlib_node_runtime_t private data
107*/
108
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109always_inline void *
110vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
111{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400112 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 return r->runtime_data;
114}
115
Dave Barach9770e202016-07-06 10:29:27 -0400116/** \brief Set node runtime private data.
117 @param vm vlib_main_t pointer, varies by thread
118 @param node_index index of the node
119 @param runtime_data arbitrary runtime private data
120 @param n_runtime_data_bytes size of runtime private data
121*/
122
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123always_inline void
124vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400125 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400127 vlib_node_t *n = vlib_get_node (vm, node_index);
128 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
130 n->runtime_data_bytes = n_runtime_data_bytes;
131 vec_free (n->runtime_data);
132 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
133
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100134 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
135 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
136
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 if (vec_len (n->runtime_data) > 0)
Damjan Marionf1213b82016-03-13 02:22:06 +0100138 clib_memcpy (r->runtime_data, n->runtime_data, vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139}
140
Dave Barach9770e202016-07-06 10:29:27 -0400141/** \brief Set node dispatch state.
142 @param vm vlib_main_t pointer, varies by thread
143 @param node_index index of the node
144 @param new_state new state for node, see vlib_node_state_t
145*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400147vlib_node_set_state (vlib_main_t * vm, u32 node_index,
148 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400150 vlib_node_main_t *nm = &vm->node_main;
151 vlib_node_t *n;
152 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
154 n = vec_elt (nm->nodes, node_index);
155 if (n->type == VLIB_NODE_TYPE_PROCESS)
156 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400157 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 r = &p->node_runtime;
159
160 /* When disabling make sure flags are cleared. */
161 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
162 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
163 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
164 }
165 else
166 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
167
168 ASSERT (new_state < VLIB_N_NODE_STATE);
169
170 if (n->type == VLIB_NODE_TYPE_INPUT)
171 {
172 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
173 nm->input_node_counts_by_state[n->state] -= 1;
174 nm->input_node_counts_by_state[new_state] += 1;
175 }
176
177 n->state = new_state;
178 r->state = new_state;
179}
180
Damjan Marion153646e2017-04-05 18:15:45 +0200181/** \brief Get node dispatch state.
182 @param vm vlib_main_t pointer, varies by thread
183 @param node_index index of the node
184 @return state for node, see vlib_node_state_t
185*/
186always_inline vlib_node_state_t
187vlib_node_get_state (vlib_main_t * vm, u32 node_index)
188{
189 vlib_node_main_t *nm = &vm->node_main;
190 vlib_node_t *n;
191 n = vec_elt (nm->nodes, node_index);
192 return n->state;
193}
194
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195always_inline void
196vlib_node_set_interrupt_pending (vlib_main_t * vm, u32 node_index)
197{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400198 vlib_node_main_t *nm = &vm->node_main;
199 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion2c2b6402017-03-28 14:16:15 +0200201 clib_spinlock_lock_if_init (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 vec_add1 (nm->pending_interrupt_node_runtime_indices, n->runtime_index);
Damjan Marion2c2b6402017-03-28 14:16:15 +0200203 clib_spinlock_unlock_if_init (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204}
205
206always_inline vlib_process_t *
207vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
208{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
211 return vec_elt (nm->processes, node->runtime_index);
212}
213
214/* Fetches frame with given handle. */
215always_inline vlib_frame_t *
216vlib_get_frame_no_check (vlib_main_t * vm, uword frame_index)
217{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 vlib_frame_t *f;
Dave Barach6a5adc32018-07-04 10:56:23 -0400219 f = vm->heap_aligned_base + (frame_index * VLIB_FRAME_ALIGN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 return f;
221}
222
223always_inline u32
224vlib_frame_index_no_check (vlib_main_t * vm, vlib_frame_t * f)
225{
Dave Barachd84ba852017-08-22 17:56:46 -0400226 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
Dave Barachd84ba852017-08-22 17:56:46 -0400228 ASSERT (((uword) f & (VLIB_FRAME_ALIGN - 1)) == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Dave Barach6a5adc32018-07-04 10:56:23 -0400230 i = ((u8 *) f - (u8 *) vm->heap_aligned_base);
Dave Barachd84ba852017-08-22 17:56:46 -0400231 ASSERT ((i / VLIB_FRAME_ALIGN) <= 0xFFFFFFFFULL);
232
233 return i / VLIB_FRAME_ALIGN;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234}
235
236always_inline vlib_frame_t *
237vlib_get_frame (vlib_main_t * vm, uword frame_index)
238{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400239 vlib_frame_t *f = vlib_get_frame_no_check (vm, frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200240 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 return f;
242}
243
244always_inline u32
245vlib_frame_index (vlib_main_t * vm, vlib_frame_t * f)
246{
247 uword i = vlib_frame_index_no_check (vm, f);
248 ASSERT (vlib_get_frame (vm, i) == f);
249 return i;
250}
251
252/* Byte alignment for vector arguments. */
253#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
254
255always_inline u32
256vlib_frame_vector_byte_offset (u32 scalar_size)
257{
258 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
259 VLIB_FRAME_VECTOR_ALIGN);
260}
261
Dave Barach9770e202016-07-06 10:29:27 -0400262/** \brief Get pointer to frame vector data.
263 @param f vlib_frame_t pointer
264 @return pointer to first vector element in frame
265*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266always_inline void *
267vlib_frame_vector_args (vlib_frame_t * f)
268{
269 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
270}
271
Dave Barach9770e202016-07-06 10:29:27 -0400272/** \brief Get pointer to frame scalar data.
273
274 @warning This is almost certainly not the function you wish to call.
275 See @ref vlib_frame_vector_args instead.
276
277 @param f vlib_frame_t pointer
278
279 @return arbitrary node scalar data
280
281 @sa vlib_frame_vector_args
282*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283always_inline void *
284vlib_frame_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285{
286 return vlib_frame_vector_args (f) - f->scalar_size;
287}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
289always_inline vlib_next_frame_t *
290vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400291 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 vlib_node_main_t *nm = &vm->node_main;
294 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295
296 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298
299 if (CLIB_DEBUG > 0)
300 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400301 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 node = vec_elt (nm->nodes, n->node_index);
303 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
304 ASSERT (nf->node_runtime_index == next->runtime_index);
305 }
306
307 return nf;
308}
309
Dave Barach9770e202016-07-06 10:29:27 -0400310/** \brief Get pointer to frame by (@c node_index, @c next_index).
311
312 @warning This is not a function that you should call directly.
313 See @ref vlib_get_next_frame instead.
314
315 @param vm vlib_main_t pointer, varies by thread
316 @param node_index index of the node
317 @param next_index graph arc index
318
319 @return pointer to the requested vlib_next_frame_t
320
321 @sa vlib_get_next_frame
322*/
323
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327 vlib_node_main_t *nm = &vm->node_main;
328 vlib_node_t *n;
329 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331 n = vec_elt (nm->nodes, node_index);
332 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
333 return vlib_node_runtime_get_next_frame (vm, r, next_index);
334}
335
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
337 vlib_node_runtime_t * node,
338 u32 next_index,
339 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
342do { \
343 vlib_frame_t * _f \
344 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
345 (alloc_new_frame)); \
346 u32 _n = _f->n_vectors; \
347 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
348 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
349} while (0)
350
Dave Barach9770e202016-07-06 10:29:27 -0400351
Dave Barach9b8ffd92016-07-08 08:13:45 -0400352/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400353 (@c vlib_node_runtime_t, @c next_index).
354 Standard single/dual loop boilerplate element.
355 @attention This is a MACRO, with SIDE EFFECTS.
356
357 @param vm vlib_main_t pointer, varies by thread
358 @param node current node vlib_node_runtime_t pointer
359 @param next_index requested graph arc index
360
361 @return @c vectors -- pointer to next available vector slot
362 @return @c n_vectors_left -- number of vector slots available
363*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
365 vlib_get_next_frame_macro (vm, node, next_index, \
366 vectors, n_vectors_left, \
367 /* alloc new frame */ 0)
368
369#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
370 vlib_get_next_frame_macro (vm, node, next_index, \
371 vectors, n_vectors_left, \
372 /* alloc new frame */ 1)
373
Dave Barach9770e202016-07-06 10:29:27 -0400374/** \brief Release pointer to next frame vector data.
375 Standard single/dual loop boilerplate element.
376 @param vm vlib_main_t pointer, varies by thread
377 @param r current node vlib_node_runtime_t pointer
378 @param next_index graph arc index
379 @param n_packets_left number of slots still available in vector
380*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381void
382vlib_put_next_frame (vlib_main_t * vm,
383 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
386/* Combination get plus put. Returns vector argument just added. */
387#define vlib_set_next_frame(vm,node,next_index,v) \
388({ \
389 uword _n_left; \
390 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
391 ASSERT (_n_left > 0); \
392 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
393 (v); \
394})
395
396always_inline void
397vlib_set_next_frame_buffer (vlib_main_t * vm,
398 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400401 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 p = vlib_set_next_frame (vm, node, next_index, p);
403 p[0] = buffer_index;
404}
405
Dave Barach9b8ffd92016-07-08 08:13:45 -0400406vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
407void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
408 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410always_inline uword
411vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412{
413 return vm->node_main.current_process_index != ~0;
414}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415
Florin Coras66b11312017-07-31 17:18:03 -0700416always_inline vlib_process_t *
417vlib_get_current_process (vlib_main_t * vm)
418{
419 vlib_node_main_t *nm = &vm->node_main;
420 if (vlib_in_process_context (vm))
421 return vec_elt (nm->processes, nm->current_process_index);
422 return 0;
423}
424
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425always_inline uword
426vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427{
428 return vlib_get_current_process (vm)->node_runtime.node_index;
429}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
Dave Barach5c20a012017-06-13 08:48:31 -0400431/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400432 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400433 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400434*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435always_inline uword
436vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437{
Dave Barach5c20a012017-06-13 08:48:31 -0400438 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400439}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440
Dave Barach2ab470a2016-08-10 18:38:36 -0400441/** Suspend a vlib cooperative multi-tasking thread for a period of time
442 @param vm - vlib_main_t *
443 @param dt - suspend interval in seconds
444 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
445*/
446
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447always_inline uword
448vlib_process_suspend (vlib_main_t * vm, f64 dt)
449{
450 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400451 vlib_node_main_t *nm = &vm->node_main;
452 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453
454 if (vlib_process_suspend_time_is_zero (dt))
455 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
456
457 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
458 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
459 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
460 {
Dave Barach5c20a012017-06-13 08:48:31 -0400461 /* expiration time in 10us ticks */
462 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
464 }
465
466 return r;
467}
468
469always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470vlib_process_free_event_type (vlib_process_t * p, uword t,
471 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400473 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474 pool_put_index (p->event_type_pool, t);
475 if (is_one_time_event)
476 p->one_time_event_type_bitmap =
477 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
478}
479
480always_inline void
481vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
482{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
485 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
486}
487
488always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489vlib_process_get_event_data (vlib_main_t * vm,
490 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400492 vlib_node_main_t *nm = &vm->node_main;
493 vlib_process_t *p;
494 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100495 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400496 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
498 p = vec_elt (nm->processes, nm->current_process_index);
499
500 /* Find first type with events ready.
501 Return invalid type when there's nothing there. */
502 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
503 if (t == ~0)
504 return 0;
505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 p->non_empty_event_type_bitmap =
507 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100509 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510 event_data_vector = p->pending_event_data_by_type_index[t];
511 p->pending_event_data_by_type_index[t] = 0;
512
513 et = pool_elt_at_index (p->event_type_pool, t);
514
515 /* Return user's opaque value and possibly index. */
516 *return_event_type_opaque = et->opaque;
517
518 vlib_process_maybe_free_event_type (p, t);
519
520 return event_data_vector;
521}
522
523/* Return event data vector for later reuse. We reuse event data to avoid
524 repeatedly allocating event vectors in cases where we care about speed. */
525always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529 vec_add1 (nm->recycled_event_data_vectors, event_data);
530}
531
Dave Barach2ab470a2016-08-10 18:38:36 -0400532/** Return the first event type which has occurred and a vector of per-event
533 data of that type, or a timeout indication
534
535 @param vm - vlib_main_t pointer
536 @param data_vector - pointer to a (uword *) vector to receive event data
537 @returns either an event type and a vector of per-event instance data,
538 or ~0 to indicate a timeout.
539*/
540
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541always_inline uword
542vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
543{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400544 vlib_node_main_t *nm = &vm->node_main;
545 vlib_process_t *p;
546 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 uword r, t, l;
548
549 p = vec_elt (nm->processes, nm->current_process_index);
550
551 /* Find first type with events ready.
552 Return invalid type when there's nothing there. */
553 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
554 if (t == ~0)
555 return t;
556
Dave Barach9b8ffd92016-07-08 08:13:45 -0400557 p->non_empty_event_type_bitmap =
558 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559
560 l = _vec_len (p->pending_event_data_by_type_index[t]);
561 if (data_vector)
562 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
563 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
564
565 et = pool_elt_at_index (p->event_type_pool, t);
566
567 /* Return user's opaque value. */
568 r = et->opaque;
569
570 vlib_process_maybe_free_event_type (p, t);
571
572 return r;
573}
574
575always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400576vlib_process_get_events_helper (vlib_process_t * p, uword t,
577 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578{
579 uword l;
580
Dave Barach9b8ffd92016-07-08 08:13:45 -0400581 p->non_empty_event_type_bitmap =
582 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
584 l = _vec_len (p->pending_event_data_by_type_index[t]);
585 if (data_vector)
586 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
587 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
588
589 vlib_process_maybe_free_event_type (p, t);
590
591 return l;
592}
593
594/* As above but query as specified type of event. Returns number of
595 events found. */
596always_inline uword
597vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
598 uword with_type_opaque)
599{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400600 vlib_node_main_t *nm = &vm->node_main;
601 vlib_process_t *p;
602 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 p = vec_elt (nm->processes, nm->current_process_index);
605 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 /* This can happen when an event has not yet been
608 signaled with given opaque type. */
609 return 0;
610
611 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400612 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 return 0;
614
615 return vlib_process_get_events_helper (p, t, data_vector);
616}
617
618always_inline uword *
619vlib_process_wait_for_event (vlib_main_t * vm)
620{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400621 vlib_node_main_t *nm = &vm->node_main;
622 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700623 uword r;
624
625 p = vec_elt (nm->processes, nm->current_process_index);
626 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
627 {
628 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400629 r =
630 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400632 clib_longjmp (&p->return_longjmp,
633 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634 }
635
636 return p->non_empty_event_type_bitmap;
637}
638
639always_inline uword
640vlib_process_wait_for_one_time_event (vlib_main_t * vm,
641 uword ** data_vector,
642 uword with_type_index)
643{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400644 vlib_node_main_t *nm = &vm->node_main;
645 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646 uword r;
647
648 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
650 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 {
652 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653 r =
654 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400656 clib_longjmp (&p->return_longjmp,
657 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 }
659
660 return vlib_process_get_events_helper (p, with_type_index, data_vector);
661}
662
663always_inline uword
664vlib_process_wait_for_event_with_type (vlib_main_t * vm,
665 uword ** data_vector,
666 uword with_type_opaque)
667{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400668 vlib_node_main_t *nm = &vm->node_main;
669 vlib_process_t *p;
670 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
672 p = vec_elt (nm->processes, nm->current_process_index);
673 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 {
676 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400677 r =
678 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400680 clib_longjmp (&p->return_longjmp,
681 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682
683 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400684 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700685 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
686 }
687
688 return vlib_process_get_events_helper (p, h[0], data_vector);
689}
690
Dave Barach2ab470a2016-08-10 18:38:36 -0400691/** Suspend a cooperative multi-tasking thread
692 Waits for an event, or for the indicated number of seconds to elapse
693 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200694 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400695 @returns the remaining time interval
696*/
697
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698always_inline f64
699vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
700{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400701 vlib_node_main_t *nm = &vm->node_main;
702 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 f64 wakeup_time;
704 uword r;
705
706 p = vec_elt (nm->processes, nm->current_process_index);
707
708 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400709 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710 return dt;
711
712 wakeup_time = vlib_time_now (vm) + dt;
713
714 /* Suspend waiting for both clock and event to occur. */
715 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
716 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
717
718 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
719 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
720 {
Dave Barach5c20a012017-06-13 08:48:31 -0400721 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700722 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
723 }
724
725 /* Return amount of time still left to sleep.
726 If <= 0 then we've been waken up by the clock (and not an event). */
727 return wakeup_time - vlib_time_now (vm);
728}
729
730always_inline vlib_process_event_type_t *
731vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
732{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400733 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734 pool_get (p->event_type_pool, et);
735 et->opaque = with_type_opaque;
736 return et;
737}
738
739always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400740vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
741 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400743 vlib_node_main_t *nm = &vm->node_main;
744 vlib_node_t *n = vlib_get_node (vm, node_index);
745 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
746 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747 uword t;
748
749 et = vlib_process_new_event_type (p, with_type_opaque);
750 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400751 p->one_time_event_type_bitmap =
752 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753 return t;
754}
755
756always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400757vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
758 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 vlib_node_main_t *nm = &vm->node_main;
761 vlib_node_t *n = vlib_get_node (vm, node_index);
762 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763
764 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
765 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
766}
767
768always_inline void *
769vlib_process_signal_event_helper (vlib_node_main_t * nm,
770 vlib_node_t * n,
771 vlib_process_t * p,
772 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400773 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774{
775 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777
Dave Barach1403fcd2018-02-05 09:45:43 -0500778 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
779
Dave Barach9b8ffd92016-07-08 08:13:45 -0400780 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700781
782 vec_validate (p->pending_event_data_by_type_index, t);
783
784 /* Resize data vector and return caller's data to be written. */
785 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400786 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787 uword l;
788
Dave Barach9b8ffd92016-07-08 08:13:45 -0400789 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790 {
791 data_vec = vec_pop (nm->recycled_event_data_vectors);
792 _vec_len (data_vec) = 0;
793 }
794
795 l = vec_len (data_vec);
796
797 data_vec = _vec_resize (data_vec,
798 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799 /* total size after increment */
800 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 /* header_bytes */ 0, /* data_align */ 0);
802
803 p->pending_event_data_by_type_index[t] = data_vec;
804 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
805 }
806
Dave Barach9b8ffd92016-07-08 08:13:45 -0400807 p->non_empty_event_type_bitmap =
808 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700809
810 p_flags = p->flags;
811
812 /* Event was already signalled? */
813 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
814
815 /* Process will resume when suspend time elapses? */
816 delete_from_wheel = 0;
817 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
818 {
819 /* Waiting for both event and clock? */
820 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700821 {
822 if (!TW (tw_timer_handle_is_free)
823 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
824 p->stop_timer_handle))
825 delete_from_wheel = 1;
826 else
827 /* timer just popped so process should already be on the list */
828 add_to_pending = 0;
829 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830 else
831 /* Waiting only for clock. Event will be queue and may be
832 handled when timer expires. */
833 add_to_pending = 0;
834 }
835
836 /* Never add current process to pending vector since current process is
837 already running. */
838 add_to_pending &= nm->current_process_index != n->runtime_index;
839
840 if (add_to_pending)
841 {
842 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
843 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
844 vec_add1 (nm->data_from_advancing_timing_wheel, x);
845 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400846 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
847 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848 }
849
850 return data_to_be_written_by_caller;
851}
852
853always_inline void *
854vlib_process_signal_event_data (vlib_main_t * vm,
855 uword node_index,
856 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400857 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400859 vlib_node_main_t *nm = &vm->node_main;
860 vlib_node_t *n = vlib_get_node (vm, node_index);
861 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
862 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863
John Lo609707e2017-09-19 21:45:10 -0400864 /* Must be in main thread */
865 ASSERT (vlib_get_thread_index () == 0);
866
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400870 vlib_process_event_type_t *et =
871 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700872 t = et - p->event_type_pool;
873 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
874 }
875 else
876 t = h[0];
877
Dave Barach9b8ffd92016-07-08 08:13:45 -0400878 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
879 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700880}
881
882always_inline void *
883vlib_process_signal_event_at_time (vlib_main_t * vm,
884 f64 dt,
885 uword node_index,
886 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400889 vlib_node_main_t *nm = &vm->node_main;
890 vlib_node_t *n = vlib_get_node (vm, node_index);
891 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
892 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700893
894 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400895 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700896 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400897 vlib_process_event_type_t *et =
898 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 t = et - p->event_type_pool;
900 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
901 }
902 else
903 t = h[0];
904
905 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
907 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 else
909 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400910 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
912 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
913
914 te->n_data_elts = n_data_elts;
915 te->n_data_elt_bytes = n_data_elt_bytes;
916 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
917
918 /* Assert that structure fields are big enough. */
919 ASSERT (te->n_data_elts == n_data_elts);
920 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
921 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
922
923 te->process_node_index = n->runtime_index;
924 te->event_type_index = t;
925
Dave Barach5c20a012017-06-13 08:48:31 -0400926 p->stop_timer_handle =
927 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
928 vlib_timing_wheel_data_set_timed_event
929 (te - nm->signal_timed_event_data_pool),
930 0 /* timer_id */ ,
931 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932
933 /* Inline data big enough to hold event? */
934 if (te->n_data_bytes < sizeof (te->inline_event_data))
935 return te->inline_event_data;
936 else
937 {
938 te->event_data_as_vector = 0;
939 vec_resize (te->event_data_as_vector, te->n_data_bytes);
940 return te->event_data_as_vector;
941 }
942 }
943}
944
945always_inline void *
946vlib_process_signal_one_time_event_data (vlib_main_t * vm,
947 uword node_index,
948 uword type_index,
949 uword n_data_elts,
950 uword n_data_elt_bytes)
951{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400952 vlib_node_main_t *nm = &vm->node_main;
953 vlib_node_t *n = vlib_get_node (vm, node_index);
954 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
955 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
956 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957}
958
959always_inline void
960vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400963 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
964 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 d[0] = data;
966}
967
968always_inline void
969vlib_process_signal_event_pointer (vlib_main_t * vm,
970 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400971 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
974 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975 d[0] = data;
976}
977
Dave Barach69128d02017-09-26 10:54:34 -0400978/**
979 * Signal event to process from any thread.
980 *
981 * When in doubt, use this.
982 */
983always_inline void
984vlib_process_signal_event_mt (vlib_main_t * vm,
985 uword node_index, uword type_opaque, uword data)
986{
987 if (vlib_get_thread_index () != 0)
988 {
989 vlib_process_signal_event_mt_args_t args = {
990 .node_index = node_index,
991 .type_opaque = type_opaque,
992 .data = data,
993 };
994 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
995 (u8 *) & args, sizeof (args));
996 }
997 else
998 vlib_process_signal_event (vm, node_index, type_opaque, data);
999}
1000
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001always_inline void
1002vlib_process_signal_one_time_event (vlib_main_t * vm,
1003 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001004 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001006 uword *d =
1007 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1008 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 d[0] = data;
1010}
1011
1012always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001013vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1014 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001016 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1017 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001018 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019}
1020
1021always_inline void
1022vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 vlib_one_time_waiting_process_t
1024 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001025{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026 vlib_one_time_waiting_process_t *wp;
1027 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028 vec_free (*wps);
1029}
1030
1031always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001032vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1033 vlib_one_time_waiting_process_t
1034 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035{
1036 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001037 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1038 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039 vlib_process_wait_for_one_time_event (vm,
1040 /* don't care about data */ 0,
1041 p->one_time_event);
1042}
1043
1044always_inline void
1045vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001046 vlib_one_time_waiting_process_t
1047 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001049 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050 vec_add2 (*wps, wp, 1);
1051 vlib_current_process_wait_for_one_time_event (vm, wp);
1052}
1053
1054always_inline u32
1055vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1056 vlib_node_runtime_t * node,
1057 uword n_vectors)
1058{
1059 u32 i, d, vi0, vi1;
1060 u32 i0, i1;
1061
1062 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1063 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1064 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1065 i0 = i ^ 0;
1066 i1 = i ^ 1;
1067 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001068 -
1069 (node->main_loop_count_last_dispatch >>
1070 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071 vi0 = node->main_loop_vector_stats[i0];
1072 vi1 = node->main_loop_vector_stats[i1];
1073 vi0 = d == 0 ? vi0 : 0;
1074 vi1 = d <= 1 ? vi1 : 0;
1075 vi0 += n_vectors;
1076 node->main_loop_vector_stats[i0] = vi0;
1077 node->main_loop_vector_stats[i1] = vi1;
1078 node->main_loop_count_last_dispatch = vm->main_loop_count;
1079 /* Return previous counter. */
1080 return node->main_loop_vector_stats[i1];
1081}
1082
1083always_inline f64
1084vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1085{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001086 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 u32 v;
1088
Dave Barach9b8ffd92016-07-08 08:13:45 -04001089 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1090 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1092}
1093
1094always_inline u32
1095vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1096{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001097 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 u32 v;
1099
Dave Barach9b8ffd92016-07-08 08:13:45 -04001100 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1101 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1103}
1104
1105void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001106vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107
Neale Rannsbb620d72017-06-29 00:19:08 -07001108/* Return the edge index if present, ~0 otherwise */
1109uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1110
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111/* Add next node to given node in given slot. */
1112uword
1113vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001114 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115
1116/* As above but adds to end of node's next vector. */
1117always_inline uword
1118vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001119{
1120 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1121}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122
1123/* Add next node to given node in given slot. */
1124uword
1125vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001126 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001127
1128/* As above but adds to end of node's next vector. */
1129always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001130vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1131{
1132 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1133}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134
Florin Corase86a8ed2018-01-05 03:20:25 -08001135/**
1136 * Get list of nodes
1137 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001138void
1139vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1140 int barrier_sync, vlib_node_t **** node_dupsp,
1141 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001142
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001144vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145
1146/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001147void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001148
1149/* Register new packet processing node. Nodes can be registered
1150 dynamically via this call or statically via the VLIB_REGISTER_NODE
1151 macro. */
1152u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1153
1154/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1155void vlib_register_all_static_nodes (vlib_main_t * vm);
1156
1157/* Start a process. */
1158void vlib_start_process (vlib_main_t * vm, uword process_index);
1159
1160/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001161void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162
1163/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001164clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165
1166format_function_t format_vlib_node_graph;
1167format_function_t format_vlib_node_name;
1168format_function_t format_vlib_next_node_name;
1169format_function_t format_vlib_node_and_next;
1170format_function_t format_vlib_cpu_time;
1171format_function_t format_vlib_time;
1172/* Parse node name -> node index. */
1173unformat_function_t unformat_vlib_node;
1174
Dave Barach9b8ffd92016-07-08 08:13:45 -04001175always_inline void
1176vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1177 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001178{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001179 vlib_node_t *n = vlib_get_node (vm, node_index);
1180 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001181 u32 node_counter_base_index = n->error_heap_index;
1182 em->counters[node_counter_base_index + counter_index] += increment;
1183}
1184
1185#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001186
1187/*
1188 * fd.io coding-style-patch-verification: ON
1189 *
1190 * Local Variables:
1191 * eval: (c-set-style "gnu")
1192 * End:
1193 */