blob: 263017d0ec7c7f4266f454b15ffb6c34b357c7ff [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
Damjan Marion1033b492020-06-03 12:20:41 +0200197vlib_node_set_interrupt_pending_with_data (vlib_main_t * vm, u32 node_index,
198 u32 data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400200 vlib_node_main_t *nm = &vm->node_main;
201 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Damjan Marion1033b492020-06-03 12:20:41 +0200202 vlib_node_interrupt_t *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
Damjan Marion1033b492020-06-03 12:20:41 +0200204
205 if (vm == vlib_get_main ())
206 {
207 /* local thread */
208 vec_add2 (nm->pending_local_interrupts, i, 1);
209 i->node_runtime_index = n->runtime_index;
210 i->data = data;
211 }
212 else
213 {
214 /* remote thread */
215 clib_spinlock_lock (&nm->pending_interrupt_lock);
216 vec_add2 (nm->pending_remote_interrupts, i, 1);
217 i->node_runtime_index = n->runtime_index;
218 i->data = data;
219 clib_spinlock_unlock (&nm->pending_interrupt_lock);
220 }
221}
222
223always_inline void
224vlib_node_set_interrupt_pending (vlib_main_t * vm, u32 node_index)
225{
226 vlib_node_set_interrupt_pending_with_data (vm, node_index, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227}
228
229always_inline vlib_process_t *
230vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
231{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
234 return vec_elt (nm->processes, node->runtime_index);
235}
236
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200238vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200240 ASSERT (f != NULL);
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
Damjan Marion296988d2019-02-21 20:24:54 +0100245always_inline void
246vlib_frame_no_append (vlib_frame_t * f)
247{
248 f->frame_flags |= VLIB_FRAME_NO_APPEND;
249}
250
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251/* Byte alignment for vector arguments. */
252#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
253
254always_inline u32
255vlib_frame_vector_byte_offset (u32 scalar_size)
256{
257 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
258 VLIB_FRAME_VECTOR_ALIGN);
259}
260
Dave Barach9770e202016-07-06 10:29:27 -0400261/** \brief Get pointer to frame vector data.
262 @param f vlib_frame_t pointer
263 @return pointer to first vector element in frame
264*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265always_inline void *
266vlib_frame_vector_args (vlib_frame_t * f)
267{
268 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
269}
270
Dave Barach9770e202016-07-06 10:29:27 -0400271/** \brief Get pointer to frame scalar data.
272
Dave Barach9770e202016-07-06 10:29:27 -0400273 @param f vlib_frame_t pointer
274
275 @return arbitrary node scalar data
276
277 @sa vlib_frame_vector_args
278*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100280vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400281{
282 return vlib_frame_vector_args (f) - f->scalar_size;
283}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285always_inline vlib_next_frame_t *
286vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400287 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400289 vlib_node_main_t *nm = &vm->node_main;
290 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
292 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
295 if (CLIB_DEBUG > 0)
296 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298 node = vec_elt (nm->nodes, n->node_index);
299 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
300 ASSERT (nf->node_runtime_index == next->runtime_index);
301 }
302
303 return nf;
304}
305
Dave Barach9770e202016-07-06 10:29:27 -0400306/** \brief Get pointer to frame by (@c node_index, @c next_index).
307
308 @warning This is not a function that you should call directly.
309 See @ref vlib_get_next_frame instead.
310
311 @param vm vlib_main_t pointer, varies by thread
312 @param node_index index of the node
313 @param next_index graph arc index
314
315 @return pointer to the requested vlib_next_frame_t
316
317 @sa vlib_get_next_frame
318*/
319
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323 vlib_node_main_t *nm = &vm->node_main;
324 vlib_node_t *n;
325 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327 n = vec_elt (nm->nodes, node_index);
328 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
329 return vlib_node_runtime_get_next_frame (vm, r, next_index);
330}
331
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
333 vlib_node_runtime_t * node,
334 u32 next_index,
335 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
338do { \
339 vlib_frame_t * _f \
340 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
341 (alloc_new_frame)); \
342 u32 _n = _f->n_vectors; \
343 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
344 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
345} while (0)
346
Dave Barach9770e202016-07-06 10:29:27 -0400347
Dave Barach9b8ffd92016-07-08 08:13:45 -0400348/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400349 (@c vlib_node_runtime_t, @c next_index).
350 Standard single/dual loop boilerplate element.
351 @attention This is a MACRO, with SIDE EFFECTS.
352
353 @param vm vlib_main_t pointer, varies by thread
354 @param node current node vlib_node_runtime_t pointer
355 @param next_index requested graph arc index
356
357 @return @c vectors -- pointer to next available vector slot
358 @return @c n_vectors_left -- number of vector slots available
359*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
361 vlib_get_next_frame_macro (vm, node, next_index, \
362 vectors, n_vectors_left, \
363 /* alloc new frame */ 0)
364
365#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
366 vlib_get_next_frame_macro (vm, node, next_index, \
367 vectors, n_vectors_left, \
368 /* alloc new frame */ 1)
369
Dave Barach9770e202016-07-06 10:29:27 -0400370/** \brief Release pointer to next frame vector data.
371 Standard single/dual loop boilerplate element.
372 @param vm vlib_main_t pointer, varies by thread
373 @param r current node vlib_node_runtime_t pointer
374 @param next_index graph arc index
375 @param n_packets_left number of slots still available in vector
376*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377void
378vlib_put_next_frame (vlib_main_t * vm,
379 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
382/* Combination get plus put. Returns vector argument just added. */
383#define vlib_set_next_frame(vm,node,next_index,v) \
384({ \
385 uword _n_left; \
386 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
387 ASSERT (_n_left > 0); \
388 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
389 (v); \
390})
391
392always_inline void
393vlib_set_next_frame_buffer (vlib_main_t * vm,
394 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400395 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700398 p = vlib_set_next_frame (vm, node, next_index, p);
399 p[0] = buffer_index;
400}
401
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
403void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
404 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406always_inline uword
407vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400408{
409 return vm->node_main.current_process_index != ~0;
410}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Florin Coras66b11312017-07-31 17:18:03 -0700412always_inline vlib_process_t *
413vlib_get_current_process (vlib_main_t * vm)
414{
415 vlib_node_main_t *nm = &vm->node_main;
416 if (vlib_in_process_context (vm))
417 return vec_elt (nm->processes, nm->current_process_index);
418 return 0;
419}
420
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421always_inline uword
422vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423{
424 return vlib_get_current_process (vm)->node_runtime.node_index;
425}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Dave Barach5c20a012017-06-13 08:48:31 -0400427/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400428 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400429 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400430*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431always_inline uword
432vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400433{
Dave Barach5c20a012017-06-13 08:48:31 -0400434 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
Dave Barach2ab470a2016-08-10 18:38:36 -0400437/** Suspend a vlib cooperative multi-tasking thread for a period of time
438 @param vm - vlib_main_t *
439 @param dt - suspend interval in seconds
440 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
441*/
442
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443always_inline uword
444vlib_process_suspend (vlib_main_t * vm, f64 dt)
445{
446 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447 vlib_node_main_t *nm = &vm->node_main;
448 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
450 if (vlib_process_suspend_time_is_zero (dt))
451 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
452
453 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
454 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
455 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
456 {
Dave Barach5c20a012017-06-13 08:48:31 -0400457 /* expiration time in 10us ticks */
458 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
460 }
461
462 return r;
463}
464
465always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466vlib_process_free_event_type (vlib_process_t * p, uword t,
467 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400469 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470 pool_put_index (p->event_type_pool, t);
471 if (is_one_time_event)
472 p->one_time_event_type_bitmap =
473 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
474}
475
476always_inline void
477vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
478{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400479 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
481 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
482}
483
484always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400485vlib_process_get_event_data (vlib_main_t * vm,
486 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400488 vlib_node_main_t *nm = &vm->node_main;
489 vlib_process_t *p;
490 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100491 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400492 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
494 p = vec_elt (nm->processes, nm->current_process_index);
495
496 /* Find first type with events ready.
497 Return invalid type when there's nothing there. */
498 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
499 if (t == ~0)
500 return 0;
501
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 p->non_empty_event_type_bitmap =
503 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100505 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 event_data_vector = p->pending_event_data_by_type_index[t];
507 p->pending_event_data_by_type_index[t] = 0;
508
509 et = pool_elt_at_index (p->event_type_pool, t);
510
511 /* Return user's opaque value and possibly index. */
512 *return_event_type_opaque = et->opaque;
513
514 vlib_process_maybe_free_event_type (p, t);
515
516 return event_data_vector;
517}
518
519/* Return event data vector for later reuse. We reuse event data to avoid
520 repeatedly allocating event vectors in cases where we care about speed. */
521always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400522vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 vec_add1 (nm->recycled_event_data_vectors, event_data);
526}
527
Dave Barach2ab470a2016-08-10 18:38:36 -0400528/** Return the first event type which has occurred and a vector of per-event
529 data of that type, or a timeout indication
530
531 @param vm - vlib_main_t pointer
532 @param data_vector - pointer to a (uword *) vector to receive event data
533 @returns either an event type and a vector of per-event instance data,
534 or ~0 to indicate a timeout.
535*/
536
Ed Warnickecb9cada2015-12-08 15:45:58 -0700537always_inline uword
538vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
539{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400540 vlib_node_main_t *nm = &vm->node_main;
541 vlib_process_t *p;
542 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 uword r, t, l;
544
545 p = vec_elt (nm->processes, nm->current_process_index);
546
547 /* Find first type with events ready.
548 Return invalid type when there's nothing there. */
549 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
550 if (t == ~0)
551 return t;
552
Dave Barach9b8ffd92016-07-08 08:13:45 -0400553 p->non_empty_event_type_bitmap =
554 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
556 l = _vec_len (p->pending_event_data_by_type_index[t]);
557 if (data_vector)
558 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
559 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
560
561 et = pool_elt_at_index (p->event_type_pool, t);
562
563 /* Return user's opaque value. */
564 r = et->opaque;
565
566 vlib_process_maybe_free_event_type (p, t);
567
568 return r;
569}
570
571always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572vlib_process_get_events_helper (vlib_process_t * p, uword t,
573 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574{
575 uword l;
576
Dave Barach9b8ffd92016-07-08 08:13:45 -0400577 p->non_empty_event_type_bitmap =
578 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579
580 l = _vec_len (p->pending_event_data_by_type_index[t]);
581 if (data_vector)
582 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
583 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
584
585 vlib_process_maybe_free_event_type (p, t);
586
587 return l;
588}
589
590/* As above but query as specified type of event. Returns number of
591 events found. */
592always_inline uword
593vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
594 uword with_type_opaque)
595{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 vlib_node_main_t *nm = &vm->node_main;
597 vlib_process_t *p;
598 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
600 p = vec_elt (nm->processes, nm->current_process_index);
601 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400602 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603 /* This can happen when an event has not yet been
604 signaled with given opaque type. */
605 return 0;
606
607 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400608 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 return 0;
610
611 return vlib_process_get_events_helper (p, t, data_vector);
612}
613
614always_inline uword *
615vlib_process_wait_for_event (vlib_main_t * vm)
616{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400617 vlib_node_main_t *nm = &vm->node_main;
618 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619 uword r;
620
621 p = vec_elt (nm->processes, nm->current_process_index);
622 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
623 {
624 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400625 r =
626 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628 clib_longjmp (&p->return_longjmp,
629 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 }
631
632 return p->non_empty_event_type_bitmap;
633}
634
635always_inline uword
636vlib_process_wait_for_one_time_event (vlib_main_t * vm,
637 uword ** data_vector,
638 uword with_type_index)
639{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640 vlib_node_main_t *nm = &vm->node_main;
641 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 uword r;
643
644 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400645 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
646 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647 {
648 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400649 r =
650 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400652 clib_longjmp (&p->return_longjmp,
653 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 }
655
656 return vlib_process_get_events_helper (p, with_type_index, data_vector);
657}
658
659always_inline uword
660vlib_process_wait_for_event_with_type (vlib_main_t * vm,
661 uword ** data_vector,
662 uword with_type_opaque)
663{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400664 vlib_node_main_t *nm = &vm->node_main;
665 vlib_process_t *p;
666 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
668 p = vec_elt (nm->processes, nm->current_process_index);
669 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400670 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671 {
672 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673 r =
674 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676 clib_longjmp (&p->return_longjmp,
677 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678
679 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400680 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
682 }
683
684 return vlib_process_get_events_helper (p, h[0], data_vector);
685}
686
Dave Barach2ab470a2016-08-10 18:38:36 -0400687/** Suspend a cooperative multi-tasking thread
688 Waits for an event, or for the indicated number of seconds to elapse
689 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200690 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400691 @returns the remaining time interval
692*/
693
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694always_inline f64
695vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
696{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 vlib_node_main_t *nm = &vm->node_main;
698 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699 f64 wakeup_time;
700 uword r;
701
702 p = vec_elt (nm->processes, nm->current_process_index);
703
704 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 return dt;
707
708 wakeup_time = vlib_time_now (vm) + dt;
709
710 /* Suspend waiting for both clock and event to occur. */
711 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
712 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
713
714 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
715 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
716 {
Dave Barach5c20a012017-06-13 08:48:31 -0400717 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
719 }
720
721 /* Return amount of time still left to sleep.
722 If <= 0 then we've been waken up by the clock (and not an event). */
723 return wakeup_time - vlib_time_now (vm);
724}
725
726always_inline vlib_process_event_type_t *
727vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
728{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 pool_get (p->event_type_pool, et);
731 et->opaque = with_type_opaque;
732 return et;
733}
734
735always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
737 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400739 vlib_node_main_t *nm = &vm->node_main;
740 vlib_node_t *n = vlib_get_node (vm, node_index);
741 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
742 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743 uword t;
744
745 et = vlib_process_new_event_type (p, with_type_opaque);
746 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 p->one_time_event_type_bitmap =
748 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749 return t;
750}
751
752always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400753vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
754 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400756 vlib_node_main_t *nm = &vm->node_main;
757 vlib_node_t *n = vlib_get_node (vm, node_index);
758 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
760 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
761 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
762}
763
764always_inline void *
765vlib_process_signal_event_helper (vlib_node_main_t * nm,
766 vlib_node_t * n,
767 vlib_process_t * p,
768 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770{
771 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
Dave Barach1403fcd2018-02-05 09:45:43 -0500774 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
775
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700777
778 vec_validate (p->pending_event_data_by_type_index, t);
779
780 /* Resize data vector and return caller's data to be written. */
781 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 uword l;
784
Dave Barach9b8ffd92016-07-08 08:13:45 -0400785 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786 {
787 data_vec = vec_pop (nm->recycled_event_data_vectors);
788 _vec_len (data_vec) = 0;
789 }
790
791 l = vec_len (data_vec);
792
793 data_vec = _vec_resize (data_vec,
794 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400795 /* total size after increment */
796 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 /* header_bytes */ 0, /* data_align */ 0);
798
799 p->pending_event_data_by_type_index[t] = data_vec;
800 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
801 }
802
Dave Barach9b8ffd92016-07-08 08:13:45 -0400803 p->non_empty_event_type_bitmap =
804 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700805
806 p_flags = p->flags;
807
808 /* Event was already signalled? */
809 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
810
811 /* Process will resume when suspend time elapses? */
812 delete_from_wheel = 0;
813 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
814 {
815 /* Waiting for both event and clock? */
816 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700817 {
818 if (!TW (tw_timer_handle_is_free)
819 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
820 p->stop_timer_handle))
821 delete_from_wheel = 1;
822 else
823 /* timer just popped so process should already be on the list */
824 add_to_pending = 0;
825 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700826 else
827 /* Waiting only for clock. Event will be queue and may be
828 handled when timer expires. */
829 add_to_pending = 0;
830 }
831
832 /* Never add current process to pending vector since current process is
833 already running. */
834 add_to_pending &= nm->current_process_index != n->runtime_index;
835
836 if (add_to_pending)
837 {
838 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
839 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
840 vec_add1 (nm->data_from_advancing_timing_wheel, x);
841 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400842 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
843 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844 }
845
846 return data_to_be_written_by_caller;
847}
848
849always_inline void *
850vlib_process_signal_event_data (vlib_main_t * vm,
851 uword node_index,
852 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400853 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 vlib_node_main_t *nm = &vm->node_main;
856 vlib_node_t *n = vlib_get_node (vm, node_index);
857 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
858 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859
John Lo609707e2017-09-19 21:45:10 -0400860 /* Must be in main thread */
861 ASSERT (vlib_get_thread_index () == 0);
862
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400864 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 vlib_process_event_type_t *et =
867 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 t = et - p->event_type_pool;
869 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
870 }
871 else
872 t = h[0];
873
Dave Barach9b8ffd92016-07-08 08:13:45 -0400874 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
875 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876}
877
878always_inline void *
879vlib_process_signal_event_at_time (vlib_main_t * vm,
880 f64 dt,
881 uword node_index,
882 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400883 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400885 vlib_node_main_t *nm = &vm->node_main;
886 vlib_node_t *n = vlib_get_node (vm, node_index);
887 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
888 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
890 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400891 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700892 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400893 vlib_process_event_type_t *et =
894 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 t = et - p->event_type_pool;
896 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
897 }
898 else
899 t = h[0];
900
901 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400902 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
903 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 else
905 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400906 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907
908 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
909
910 te->n_data_elts = n_data_elts;
911 te->n_data_elt_bytes = n_data_elt_bytes;
912 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
913
914 /* Assert that structure fields are big enough. */
915 ASSERT (te->n_data_elts == n_data_elts);
916 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
917 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
918
919 te->process_node_index = n->runtime_index;
920 te->event_type_index = t;
921
Dave Barach5c20a012017-06-13 08:48:31 -0400922 p->stop_timer_handle =
923 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
924 vlib_timing_wheel_data_set_timed_event
925 (te - nm->signal_timed_event_data_pool),
926 0 /* timer_id */ ,
927 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
929 /* Inline data big enough to hold event? */
930 if (te->n_data_bytes < sizeof (te->inline_event_data))
931 return te->inline_event_data;
932 else
933 {
934 te->event_data_as_vector = 0;
935 vec_resize (te->event_data_as_vector, te->n_data_bytes);
936 return te->event_data_as_vector;
937 }
938 }
939}
940
941always_inline void *
942vlib_process_signal_one_time_event_data (vlib_main_t * vm,
943 uword node_index,
944 uword type_index,
945 uword n_data_elts,
946 uword n_data_elt_bytes)
947{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400948 vlib_node_main_t *nm = &vm->node_main;
949 vlib_node_t *n = vlib_get_node (vm, node_index);
950 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
951 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
952 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953}
954
955always_inline void
956vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400957 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700958{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400959 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
960 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 d[0] = data;
962}
963
964always_inline void
965vlib_process_signal_event_pointer (vlib_main_t * vm,
966 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400967 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400969 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
970 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971 d[0] = data;
972}
973
Dave Barach69128d02017-09-26 10:54:34 -0400974/**
975 * Signal event to process from any thread.
976 *
977 * When in doubt, use this.
978 */
979always_inline void
980vlib_process_signal_event_mt (vlib_main_t * vm,
981 uword node_index, uword type_opaque, uword data)
982{
983 if (vlib_get_thread_index () != 0)
984 {
985 vlib_process_signal_event_mt_args_t args = {
986 .node_index = node_index,
987 .type_opaque = type_opaque,
988 .data = data,
989 };
990 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
991 (u8 *) & args, sizeof (args));
992 }
993 else
994 vlib_process_signal_event (vm, node_index, type_opaque, data);
995}
996
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997always_inline void
998vlib_process_signal_one_time_event (vlib_main_t * vm,
999 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001000 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001002 uword *d =
1003 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
1004 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005 d[0] = data;
1006}
1007
1008always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001009vlib_signal_one_time_waiting_process (vlib_main_t * vm,
1010 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001012 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
1013 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -04001014 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015}
1016
1017always_inline void
1018vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001019 vlib_one_time_waiting_process_t
1020 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001021{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 vlib_one_time_waiting_process_t *wp;
1023 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 vec_free (*wps);
1025}
1026
1027always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001028vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1029 vlib_one_time_waiting_process_t
1030 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001031{
1032 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1034 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 vlib_process_wait_for_one_time_event (vm,
1036 /* don't care about data */ 0,
1037 p->one_time_event);
1038}
1039
1040always_inline void
1041vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001042 vlib_one_time_waiting_process_t
1043 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001044{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001045 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001046 vec_add2 (*wps, wp, 1);
1047 vlib_current_process_wait_for_one_time_event (vm, wp);
1048}
1049
1050always_inline u32
1051vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1052 vlib_node_runtime_t * node,
1053 uword n_vectors)
1054{
1055 u32 i, d, vi0, vi1;
1056 u32 i0, i1;
1057
1058 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1059 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1060 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1061 i0 = i ^ 0;
1062 i1 = i ^ 1;
1063 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001064 -
1065 (node->main_loop_count_last_dispatch >>
1066 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001067 vi0 = node->main_loop_vector_stats[i0];
1068 vi1 = node->main_loop_vector_stats[i1];
1069 vi0 = d == 0 ? vi0 : 0;
1070 vi1 = d <= 1 ? vi1 : 0;
1071 vi0 += n_vectors;
1072 node->main_loop_vector_stats[i0] = vi0;
1073 node->main_loop_vector_stats[i1] = vi1;
1074 node->main_loop_count_last_dispatch = vm->main_loop_count;
1075 /* Return previous counter. */
1076 return node->main_loop_vector_stats[i1];
1077}
1078
1079always_inline f64
1080vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1081{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001082 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 u32 v;
1084
Dave Barach9b8ffd92016-07-08 08:13:45 -04001085 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1086 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1088}
1089
1090always_inline u32
1091vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1092{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001093 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001094 u32 v;
1095
Dave Barach9b8ffd92016-07-08 08:13:45 -04001096 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1097 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1099}
1100
1101void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001102vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001103
Neale Rannsbb620d72017-06-29 00:19:08 -07001104/* Return the edge index if present, ~0 otherwise */
1105uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1106
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107/* Add next node to given node in given slot. */
1108uword
1109vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001110 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111
1112/* As above but adds to end of node's next vector. */
1113always_inline uword
1114vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001115{
1116 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1117}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001118
1119/* Add next node to given node in given slot. */
1120uword
1121vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001122 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001123
1124/* As above but adds to end of node's next vector. */
1125always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001126vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1127{
1128 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1129}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130
Florin Corase86a8ed2018-01-05 03:20:25 -08001131/**
1132 * Get list of nodes
1133 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001134void
1135vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1136 int barrier_sync, vlib_node_t **** node_dupsp,
1137 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001138
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001140vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001141
1142/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001143void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001144
1145/* Register new packet processing node. Nodes can be registered
1146 dynamically via this call or statically via the VLIB_REGISTER_NODE
1147 macro. */
1148u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1149
1150/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1151void vlib_register_all_static_nodes (vlib_main_t * vm);
1152
1153/* Start a process. */
1154void vlib_start_process (vlib_main_t * vm, uword process_index);
1155
1156/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001157void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001158
1159/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001160clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001161
1162format_function_t format_vlib_node_graph;
1163format_function_t format_vlib_node_name;
1164format_function_t format_vlib_next_node_name;
1165format_function_t format_vlib_node_and_next;
1166format_function_t format_vlib_cpu_time;
1167format_function_t format_vlib_time;
1168/* Parse node name -> node index. */
1169unformat_function_t unformat_vlib_node;
1170
Dave Barach9b8ffd92016-07-08 08:13:45 -04001171always_inline void
1172vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1173 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001174{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001175 vlib_node_t *n = vlib_get_node (vm, node_index);
1176 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177 u32 node_counter_base_index = n->error_heap_index;
1178 em->counters[node_counter_base_index + counter_index] += increment;
1179}
1180
Dave Barach11965c72019-05-28 16:31:05 -04001181/** @brief Create a vlib process
1182 * @param vm &vlib_global_main
1183 * @param f the process node function
1184 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1185 * @return newly-create node index
1186 * @warning call only on the main thread. Barrier sync required
1187 */
1188u32 vlib_process_create (vlib_main_t * vm, char *name,
1189 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1190
Ed Warnickecb9cada2015-12-08 15:45:58 -07001191#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001192
1193/*
1194 * fd.io coding-style-patch-verification: ON
1195 *
1196 * Local Variables:
1197 * eval: (c-set-style "gnu")
1198 * End:
1199 */