blob: 777746a0f789e3cbaaf39509de65c43c9bd0f766 [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)
Dave Barach178cf492018-11-13 16:34:13 -0500138 clib_memcpy_fast (r->runtime_data, n->runtime_data,
139 vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140}
141
Dave Barach9770e202016-07-06 10:29:27 -0400142/** \brief Set node dispatch state.
143 @param vm vlib_main_t pointer, varies by thread
144 @param node_index index of the node
145 @param new_state new state for node, see vlib_node_state_t
146*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400148vlib_node_set_state (vlib_main_t * vm, u32 node_index,
149 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400151 vlib_node_main_t *nm = &vm->node_main;
152 vlib_node_t *n;
153 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
155 n = vec_elt (nm->nodes, node_index);
156 if (n->type == VLIB_NODE_TYPE_PROCESS)
157 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 r = &p->node_runtime;
160
161 /* When disabling make sure flags are cleared. */
162 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
163 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
164 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
165 }
166 else
167 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
168
169 ASSERT (new_state < VLIB_N_NODE_STATE);
170
171 if (n->type == VLIB_NODE_TYPE_INPUT)
172 {
173 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
174 nm->input_node_counts_by_state[n->state] -= 1;
175 nm->input_node_counts_by_state[new_state] += 1;
176 }
177
178 n->state = new_state;
179 r->state = new_state;
180}
181
Damjan Marion153646e2017-04-05 18:15:45 +0200182/** \brief Get node dispatch state.
183 @param vm vlib_main_t pointer, varies by thread
184 @param node_index index of the node
185 @return state for node, see vlib_node_state_t
186*/
187always_inline vlib_node_state_t
188vlib_node_get_state (vlib_main_t * vm, u32 node_index)
189{
190 vlib_node_main_t *nm = &vm->node_main;
191 vlib_node_t *n;
192 n = vec_elt (nm->nodes, node_index);
193 return n->state;
194}
195
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196always_inline void
197vlib_node_set_interrupt_pending (vlib_main_t * vm, u32 node_index)
198{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 vlib_node_main_t *nm = &vm->node_main;
200 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion2c2b6402017-03-28 14:16:15 +0200202 clib_spinlock_lock_if_init (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 vec_add1 (nm->pending_interrupt_node_runtime_indices, n->runtime_index);
Damjan Marion2c2b6402017-03-28 14:16:15 +0200204 clib_spinlock_unlock_if_init (&nm->pending_interrupt_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205}
206
207always_inline vlib_process_t *
208vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
209{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400210 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
212 return vec_elt (nm->processes, node->runtime_index);
213}
214
215/* Fetches frame with given handle. */
216always_inline vlib_frame_t *
217vlib_get_frame_no_check (vlib_main_t * vm, uword frame_index)
218{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 vlib_frame_t *f;
Dave Barach6a5adc32018-07-04 10:56:23 -0400220 f = vm->heap_aligned_base + (frame_index * VLIB_FRAME_ALIGN);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 return f;
222}
223
224always_inline u32
225vlib_frame_index_no_check (vlib_main_t * vm, vlib_frame_t * f)
226{
Dave Barachd84ba852017-08-22 17:56:46 -0400227 uword i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
Dave Barachd84ba852017-08-22 17:56:46 -0400229 ASSERT (((uword) f & (VLIB_FRAME_ALIGN - 1)) == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230
Dave Barach6a5adc32018-07-04 10:56:23 -0400231 i = ((u8 *) f - (u8 *) vm->heap_aligned_base);
Dave Barachd84ba852017-08-22 17:56:46 -0400232 ASSERT ((i / VLIB_FRAME_ALIGN) <= 0xFFFFFFFFULL);
233
234 return i / VLIB_FRAME_ALIGN;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235}
236
237always_inline vlib_frame_t *
238vlib_get_frame (vlib_main_t * vm, uword frame_index)
239{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400240 vlib_frame_t *f = vlib_get_frame_no_check (vm, frame_index);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200241 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 return f;
243}
244
245always_inline u32
246vlib_frame_index (vlib_main_t * vm, vlib_frame_t * f)
247{
248 uword i = vlib_frame_index_no_check (vm, f);
249 ASSERT (vlib_get_frame (vm, i) == f);
250 return i;
251}
252
253/* Byte alignment for vector arguments. */
254#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
255
256always_inline u32
257vlib_frame_vector_byte_offset (u32 scalar_size)
258{
259 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
260 VLIB_FRAME_VECTOR_ALIGN);
261}
262
Dave Barach9770e202016-07-06 10:29:27 -0400263/** \brief Get pointer to frame vector data.
264 @param f vlib_frame_t pointer
265 @return pointer to first vector element in frame
266*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267always_inline void *
268vlib_frame_vector_args (vlib_frame_t * f)
269{
270 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
271}
272
Dave Barach9770e202016-07-06 10:29:27 -0400273/** \brief Get pointer to frame scalar data.
274
Dave Barach9770e202016-07-06 10:29:27 -0400275 @param f vlib_frame_t pointer
276
277 @return arbitrary node scalar data
278
279 @sa vlib_frame_vector_args
280*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100282vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400283{
284 return vlib_frame_vector_args (f) - f->scalar_size;
285}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
287always_inline vlib_next_frame_t *
288vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400289 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400291 vlib_node_main_t *nm = &vm->node_main;
292 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
294 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400295 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
297 if (CLIB_DEBUG > 0)
298 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400299 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300 node = vec_elt (nm->nodes, n->node_index);
301 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
302 ASSERT (nf->node_runtime_index == next->runtime_index);
303 }
304
305 return nf;
306}
307
Dave Barach9770e202016-07-06 10:29:27 -0400308/** \brief Get pointer to frame by (@c node_index, @c next_index).
309
310 @warning This is not a function that you should call directly.
311 See @ref vlib_get_next_frame instead.
312
313 @param vm vlib_main_t pointer, varies by thread
314 @param node_index index of the node
315 @param next_index graph arc index
316
317 @return pointer to the requested vlib_next_frame_t
318
319 @sa vlib_get_next_frame
320*/
321
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325 vlib_node_main_t *nm = &vm->node_main;
326 vlib_node_t *n;
327 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328
329 n = vec_elt (nm->nodes, node_index);
330 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
331 return vlib_node_runtime_get_next_frame (vm, r, next_index);
332}
333
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
335 vlib_node_runtime_t * node,
336 u32 next_index,
337 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338
339#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
340do { \
341 vlib_frame_t * _f \
342 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
343 (alloc_new_frame)); \
344 u32 _n = _f->n_vectors; \
345 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
346 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
347} while (0)
348
Dave Barach9770e202016-07-06 10:29:27 -0400349
Dave Barach9b8ffd92016-07-08 08:13:45 -0400350/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400351 (@c vlib_node_runtime_t, @c next_index).
352 Standard single/dual loop boilerplate element.
353 @attention This is a MACRO, with SIDE EFFECTS.
354
355 @param vm vlib_main_t pointer, varies by thread
356 @param node current node vlib_node_runtime_t pointer
357 @param next_index requested graph arc index
358
359 @return @c vectors -- pointer to next available vector slot
360 @return @c n_vectors_left -- number of vector slots available
361*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
363 vlib_get_next_frame_macro (vm, node, next_index, \
364 vectors, n_vectors_left, \
365 /* alloc new frame */ 0)
366
367#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
368 vlib_get_next_frame_macro (vm, node, next_index, \
369 vectors, n_vectors_left, \
370 /* alloc new frame */ 1)
371
Dave Barach9770e202016-07-06 10:29:27 -0400372/** \brief Release pointer to next frame vector data.
373 Standard single/dual loop boilerplate element.
374 @param vm vlib_main_t pointer, varies by thread
375 @param r current node vlib_node_runtime_t pointer
376 @param next_index graph arc index
377 @param n_packets_left number of slots still available in vector
378*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379void
380vlib_put_next_frame (vlib_main_t * vm,
381 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
384/* Combination get plus put. Returns vector argument just added. */
385#define vlib_set_next_frame(vm,node,next_index,v) \
386({ \
387 uword _n_left; \
388 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
389 ASSERT (_n_left > 0); \
390 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
391 (v); \
392})
393
394always_inline void
395vlib_set_next_frame_buffer (vlib_main_t * vm,
396 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 p = vlib_set_next_frame (vm, node, next_index, p);
401 p[0] = buffer_index;
402}
403
Dave Barach9b8ffd92016-07-08 08:13:45 -0400404vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
405void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
406 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700407
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408always_inline uword
409vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410{
411 return vm->node_main.current_process_index != ~0;
412}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Florin Coras66b11312017-07-31 17:18:03 -0700414always_inline vlib_process_t *
415vlib_get_current_process (vlib_main_t * vm)
416{
417 vlib_node_main_t *nm = &vm->node_main;
418 if (vlib_in_process_context (vm))
419 return vec_elt (nm->processes, nm->current_process_index);
420 return 0;
421}
422
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423always_inline uword
424vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425{
426 return vlib_get_current_process (vm)->node_runtime.node_index;
427}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428
Dave Barach5c20a012017-06-13 08:48:31 -0400429/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400430 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400431 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400432*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433always_inline uword
434vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435{
Dave Barach5c20a012017-06-13 08:48:31 -0400436 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
Dave Barach2ab470a2016-08-10 18:38:36 -0400439/** Suspend a vlib cooperative multi-tasking thread for a period of time
440 @param vm - vlib_main_t *
441 @param dt - suspend interval in seconds
442 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
443*/
444
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445always_inline uword
446vlib_process_suspend (vlib_main_t * vm, f64 dt)
447{
448 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400449 vlib_node_main_t *nm = &vm->node_main;
450 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451
452 if (vlib_process_suspend_time_is_zero (dt))
453 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
454
455 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
456 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
457 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
458 {
Dave Barach5c20a012017-06-13 08:48:31 -0400459 /* expiration time in 10us ticks */
460 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
462 }
463
464 return r;
465}
466
467always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400468vlib_process_free_event_type (vlib_process_t * p, uword t,
469 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 pool_put_index (p->event_type_pool, t);
473 if (is_one_time_event)
474 p->one_time_event_type_bitmap =
475 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
476}
477
478always_inline void
479vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
480{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400481 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
483 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
484}
485
486always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487vlib_process_get_event_data (vlib_main_t * vm,
488 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490 vlib_node_main_t *nm = &vm->node_main;
491 vlib_process_t *p;
492 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100493 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400494 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
496 p = vec_elt (nm->processes, nm->current_process_index);
497
498 /* Find first type with events ready.
499 Return invalid type when there's nothing there. */
500 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
501 if (t == ~0)
502 return 0;
503
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 p->non_empty_event_type_bitmap =
505 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100507 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 event_data_vector = p->pending_event_data_by_type_index[t];
509 p->pending_event_data_by_type_index[t] = 0;
510
511 et = pool_elt_at_index (p->event_type_pool, t);
512
513 /* Return user's opaque value and possibly index. */
514 *return_event_type_opaque = et->opaque;
515
516 vlib_process_maybe_free_event_type (p, t);
517
518 return event_data_vector;
519}
520
521/* Return event data vector for later reuse. We reuse event data to avoid
522 repeatedly allocating event vectors in cases where we care about speed. */
523always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400526 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 vec_add1 (nm->recycled_event_data_vectors, event_data);
528}
529
Dave Barach2ab470a2016-08-10 18:38:36 -0400530/** Return the first event type which has occurred and a vector of per-event
531 data of that type, or a timeout indication
532
533 @param vm - vlib_main_t pointer
534 @param data_vector - pointer to a (uword *) vector to receive event data
535 @returns either an event type and a vector of per-event instance data,
536 or ~0 to indicate a timeout.
537*/
538
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539always_inline uword
540vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
541{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542 vlib_node_main_t *nm = &vm->node_main;
543 vlib_process_t *p;
544 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545 uword r, t, l;
546
547 p = vec_elt (nm->processes, nm->current_process_index);
548
549 /* Find first type with events ready.
550 Return invalid type when there's nothing there. */
551 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
552 if (t == ~0)
553 return t;
554
Dave Barach9b8ffd92016-07-08 08:13:45 -0400555 p->non_empty_event_type_bitmap =
556 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558 l = _vec_len (p->pending_event_data_by_type_index[t]);
559 if (data_vector)
560 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
561 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
562
563 et = pool_elt_at_index (p->event_type_pool, t);
564
565 /* Return user's opaque value. */
566 r = et->opaque;
567
568 vlib_process_maybe_free_event_type (p, t);
569
570 return r;
571}
572
573always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574vlib_process_get_events_helper (vlib_process_t * p, uword t,
575 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576{
577 uword l;
578
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579 p->non_empty_event_type_bitmap =
580 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581
582 l = _vec_len (p->pending_event_data_by_type_index[t]);
583 if (data_vector)
584 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
585 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
586
587 vlib_process_maybe_free_event_type (p, t);
588
589 return l;
590}
591
592/* As above but query as specified type of event. Returns number of
593 events found. */
594always_inline uword
595vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
596 uword with_type_opaque)
597{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400598 vlib_node_main_t *nm = &vm->node_main;
599 vlib_process_t *p;
600 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
602 p = vec_elt (nm->processes, nm->current_process_index);
603 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 /* This can happen when an event has not yet been
606 signaled with given opaque type. */
607 return 0;
608
609 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400610 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 return 0;
612
613 return vlib_process_get_events_helper (p, t, data_vector);
614}
615
616always_inline uword *
617vlib_process_wait_for_event (vlib_main_t * vm)
618{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400619 vlib_node_main_t *nm = &vm->node_main;
620 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 uword r;
622
623 p = vec_elt (nm->processes, nm->current_process_index);
624 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
625 {
626 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400627 r =
628 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400630 clib_longjmp (&p->return_longjmp,
631 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632 }
633
634 return p->non_empty_event_type_bitmap;
635}
636
637always_inline uword
638vlib_process_wait_for_one_time_event (vlib_main_t * vm,
639 uword ** data_vector,
640 uword with_type_index)
641{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 vlib_node_main_t *nm = &vm->node_main;
643 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644 uword r;
645
646 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
648 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 {
650 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400651 r =
652 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700653 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400654 clib_longjmp (&p->return_longjmp,
655 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656 }
657
658 return vlib_process_get_events_helper (p, with_type_index, data_vector);
659}
660
661always_inline uword
662vlib_process_wait_for_event_with_type (vlib_main_t * vm,
663 uword ** data_vector,
664 uword with_type_opaque)
665{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666 vlib_node_main_t *nm = &vm->node_main;
667 vlib_process_t *p;
668 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669
670 p = vec_elt (nm->processes, nm->current_process_index);
671 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400672 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700673 {
674 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 r =
676 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678 clib_longjmp (&p->return_longjmp,
679 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680
681 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400682 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
684 }
685
686 return vlib_process_get_events_helper (p, h[0], data_vector);
687}
688
Dave Barach2ab470a2016-08-10 18:38:36 -0400689/** Suspend a cooperative multi-tasking thread
690 Waits for an event, or for the indicated number of seconds to elapse
691 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200692 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400693 @returns the remaining time interval
694*/
695
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696always_inline f64
697vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
698{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699 vlib_node_main_t *nm = &vm->node_main;
700 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 f64 wakeup_time;
702 uword r;
703
704 p = vec_elt (nm->processes, nm->current_process_index);
705
706 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 return dt;
709
710 wakeup_time = vlib_time_now (vm) + dt;
711
712 /* Suspend waiting for both clock and event to occur. */
713 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
714 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
715
716 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
717 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
718 {
Dave Barach5c20a012017-06-13 08:48:31 -0400719 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
721 }
722
723 /* Return amount of time still left to sleep.
724 If <= 0 then we've been waken up by the clock (and not an event). */
725 return wakeup_time - vlib_time_now (vm);
726}
727
728always_inline vlib_process_event_type_t *
729vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
730{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 pool_get (p->event_type_pool, et);
733 et->opaque = with_type_opaque;
734 return et;
735}
736
737always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
739 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700740{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400741 vlib_node_main_t *nm = &vm->node_main;
742 vlib_node_t *n = vlib_get_node (vm, node_index);
743 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
744 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745 uword t;
746
747 et = vlib_process_new_event_type (p, with_type_opaque);
748 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400749 p->one_time_event_type_bitmap =
750 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751 return t;
752}
753
754always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400755vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
756 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700757{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 vlib_node_main_t *nm = &vm->node_main;
759 vlib_node_t *n = vlib_get_node (vm, node_index);
760 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761
762 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
763 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
764}
765
766always_inline void *
767vlib_process_signal_event_helper (vlib_node_main_t * nm,
768 vlib_node_t * n,
769 vlib_process_t * p,
770 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400771 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772{
773 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400774 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775
Dave Barach1403fcd2018-02-05 09:45:43 -0500776 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
777
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779
780 vec_validate (p->pending_event_data_by_type_index, t);
781
782 /* Resize data vector and return caller's data to be written. */
783 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400784 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785 uword l;
786
Dave Barach9b8ffd92016-07-08 08:13:45 -0400787 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700788 {
789 data_vec = vec_pop (nm->recycled_event_data_vectors);
790 _vec_len (data_vec) = 0;
791 }
792
793 l = vec_len (data_vec);
794
795 data_vec = _vec_resize (data_vec,
796 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400797 /* total size after increment */
798 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 /* header_bytes */ 0, /* data_align */ 0);
800
801 p->pending_event_data_by_type_index[t] = data_vec;
802 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
803 }
804
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805 p->non_empty_event_type_bitmap =
806 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807
808 p_flags = p->flags;
809
810 /* Event was already signalled? */
811 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
812
813 /* Process will resume when suspend time elapses? */
814 delete_from_wheel = 0;
815 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
816 {
817 /* Waiting for both event and clock? */
818 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700819 {
820 if (!TW (tw_timer_handle_is_free)
821 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
822 p->stop_timer_handle))
823 delete_from_wheel = 1;
824 else
825 /* timer just popped so process should already be on the list */
826 add_to_pending = 0;
827 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828 else
829 /* Waiting only for clock. Event will be queue and may be
830 handled when timer expires. */
831 add_to_pending = 0;
832 }
833
834 /* Never add current process to pending vector since current process is
835 already running. */
836 add_to_pending &= nm->current_process_index != n->runtime_index;
837
838 if (add_to_pending)
839 {
840 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
841 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
842 vec_add1 (nm->data_from_advancing_timing_wheel, x);
843 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400844 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
845 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 }
847
848 return data_to_be_written_by_caller;
849}
850
851always_inline void *
852vlib_process_signal_event_data (vlib_main_t * vm,
853 uword node_index,
854 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400857 vlib_node_main_t *nm = &vm->node_main;
858 vlib_node_t *n = vlib_get_node (vm, node_index);
859 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
860 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700861
John Lo609707e2017-09-19 21:45:10 -0400862 /* Must be in main thread */
863 ASSERT (vlib_get_thread_index () == 0);
864
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 vlib_process_event_type_t *et =
869 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 t = et - p->event_type_pool;
871 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
872 }
873 else
874 t = h[0];
875
Dave Barach9b8ffd92016-07-08 08:13:45 -0400876 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
877 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700878}
879
880always_inline void *
881vlib_process_signal_event_at_time (vlib_main_t * vm,
882 f64 dt,
883 uword node_index,
884 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400885 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887 vlib_node_main_t *nm = &vm->node_main;
888 vlib_node_t *n = vlib_get_node (vm, node_index);
889 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
890 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891
892 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400893 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400895 vlib_process_event_type_t *et =
896 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897 t = et - p->event_type_pool;
898 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
899 }
900 else
901 t = h[0];
902
903 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
905 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906 else
907 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700909
910 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
911
912 te->n_data_elts = n_data_elts;
913 te->n_data_elt_bytes = n_data_elt_bytes;
914 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
915
916 /* Assert that structure fields are big enough. */
917 ASSERT (te->n_data_elts == n_data_elts);
918 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
919 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
920
921 te->process_node_index = n->runtime_index;
922 te->event_type_index = t;
923
Dave Barach5c20a012017-06-13 08:48:31 -0400924 p->stop_timer_handle =
925 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
926 vlib_timing_wheel_data_set_timed_event
927 (te - nm->signal_timed_event_data_pool),
928 0 /* timer_id */ ,
929 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700930
931 /* Inline data big enough to hold event? */
932 if (te->n_data_bytes < sizeof (te->inline_event_data))
933 return te->inline_event_data;
934 else
935 {
936 te->event_data_as_vector = 0;
937 vec_resize (te->event_data_as_vector, te->n_data_bytes);
938 return te->event_data_as_vector;
939 }
940 }
941}
942
943always_inline void *
944vlib_process_signal_one_time_event_data (vlib_main_t * vm,
945 uword node_index,
946 uword type_index,
947 uword n_data_elts,
948 uword n_data_elt_bytes)
949{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400950 vlib_node_main_t *nm = &vm->node_main;
951 vlib_node_t *n = vlib_get_node (vm, node_index);
952 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
953 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
954 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955}
956
957always_inline void
958vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400959 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400961 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
962 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 d[0] = data;
964}
965
966always_inline void
967vlib_process_signal_event_pointer (vlib_main_t * vm,
968 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700970{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400971 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
972 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973 d[0] = data;
974}
975
Dave Barach69128d02017-09-26 10:54:34 -0400976/**
977 * Signal event to process from any thread.
978 *
979 * When in doubt, use this.
980 */
981always_inline void
982vlib_process_signal_event_mt (vlib_main_t * vm,
983 uword node_index, uword type_opaque, uword data)
984{
985 if (vlib_get_thread_index () != 0)
986 {
987 vlib_process_signal_event_mt_args_t args = {
988 .node_index = node_index,
989 .type_opaque = type_opaque,
990 .data = data,
991 };
992 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
993 (u8 *) & args, sizeof (args));
994 }
995 else
996 vlib_process_signal_event (vm, node_index, type_opaque, data);
997}
998
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999always_inline void
1000vlib_process_signal_one_time_event (vlib_main_t * vm,
1001 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001002 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001004 uword *d =
1005 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1006 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001007 d[0] = data;
1008}
1009
1010always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1012 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001014 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1015 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001016 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017}
1018
1019always_inline void
1020vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001021 vlib_one_time_waiting_process_t
1022 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001024 vlib_one_time_waiting_process_t *wp;
1025 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026 vec_free (*wps);
1027}
1028
1029always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001030vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1031 vlib_one_time_waiting_process_t
1032 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033{
1034 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001035 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1036 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001037 vlib_process_wait_for_one_time_event (vm,
1038 /* don't care about data */ 0,
1039 p->one_time_event);
1040}
1041
1042always_inline void
1043vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 vlib_one_time_waiting_process_t
1045 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001047 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001048 vec_add2 (*wps, wp, 1);
1049 vlib_current_process_wait_for_one_time_event (vm, wp);
1050}
1051
1052always_inline u32
1053vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1054 vlib_node_runtime_t * node,
1055 uword n_vectors)
1056{
1057 u32 i, d, vi0, vi1;
1058 u32 i0, i1;
1059
1060 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1061 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1062 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1063 i0 = i ^ 0;
1064 i1 = i ^ 1;
1065 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001066 -
1067 (node->main_loop_count_last_dispatch >>
1068 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069 vi0 = node->main_loop_vector_stats[i0];
1070 vi1 = node->main_loop_vector_stats[i1];
1071 vi0 = d == 0 ? vi0 : 0;
1072 vi1 = d <= 1 ? vi1 : 0;
1073 vi0 += n_vectors;
1074 node->main_loop_vector_stats[i0] = vi0;
1075 node->main_loop_vector_stats[i1] = vi1;
1076 node->main_loop_count_last_dispatch = vm->main_loop_count;
1077 /* Return previous counter. */
1078 return node->main_loop_vector_stats[i1];
1079}
1080
1081always_inline f64
1082vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1083{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001084 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085 u32 v;
1086
Dave Barach9b8ffd92016-07-08 08:13:45 -04001087 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1088 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1090}
1091
1092always_inline u32
1093vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1094{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001095 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096 u32 v;
1097
Dave Barach9b8ffd92016-07-08 08:13:45 -04001098 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1099 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1101}
1102
1103void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001104vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105
Neale Rannsbb620d72017-06-29 00:19:08 -07001106/* Return the edge index if present, ~0 otherwise */
1107uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1108
Ed Warnickecb9cada2015-12-08 15:45:58 -07001109/* Add next node to given node in given slot. */
1110uword
1111vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001112 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113
1114/* As above but adds to end of node's next vector. */
1115always_inline uword
1116vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001117{
1118 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1119}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001120
1121/* Add next node to given node in given slot. */
1122uword
1123vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001124 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001125
1126/* As above but adds to end of node's next vector. */
1127always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001128vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1129{
1130 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1131}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132
Florin Corase86a8ed2018-01-05 03:20:25 -08001133/**
1134 * Get list of nodes
1135 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001136void
1137vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1138 int barrier_sync, vlib_node_t **** node_dupsp,
1139 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001140
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001142vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001143
1144/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001145void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001146
1147/* Register new packet processing node. Nodes can be registered
1148 dynamically via this call or statically via the VLIB_REGISTER_NODE
1149 macro. */
1150u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1151
1152/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1153void vlib_register_all_static_nodes (vlib_main_t * vm);
1154
1155/* Start a process. */
1156void vlib_start_process (vlib_main_t * vm, uword process_index);
1157
1158/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001159void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001160
1161/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001162clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163
1164format_function_t format_vlib_node_graph;
1165format_function_t format_vlib_node_name;
1166format_function_t format_vlib_next_node_name;
1167format_function_t format_vlib_node_and_next;
1168format_function_t format_vlib_cpu_time;
1169format_function_t format_vlib_time;
1170/* Parse node name -> node index. */
1171unformat_function_t unformat_vlib_node;
1172
Dave Barach9b8ffd92016-07-08 08:13:45 -04001173always_inline void
1174vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1175 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001176{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001177 vlib_node_t *n = vlib_get_node (vm, node_index);
1178 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001179 u32 node_counter_base_index = n->error_heap_index;
1180 em->counters[node_counter_base_index + counter_index] += increment;
1181}
1182
1183#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001184
1185/*
1186 * fd.io coding-style-patch-verification: ON
1187 *
1188 * Local Variables:
1189 * eval: (c-set-style "gnu")
1190 * End:
1191 */