blob: d6d04fb16c2a5cb5c1168bc8c3d9c61f78ee1f08 [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
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215always_inline vlib_frame_t *
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200216vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217{
Andreas Schultz58b2eb12019-07-15 15:40:56 +0200218 ASSERT (f != NULL);
Damjan Marion633b6fd2018-09-14 14:38:53 +0200219 ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 return f;
221}
222
Damjan Marion296988d2019-02-21 20:24:54 +0100223always_inline void
224vlib_frame_no_append (vlib_frame_t * f)
225{
226 f->frame_flags |= VLIB_FRAME_NO_APPEND;
227}
228
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229/* Byte alignment for vector arguments. */
230#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
231
232always_inline u32
233vlib_frame_vector_byte_offset (u32 scalar_size)
234{
235 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
236 VLIB_FRAME_VECTOR_ALIGN);
237}
238
Dave Barach9770e202016-07-06 10:29:27 -0400239/** \brief Get pointer to frame vector data.
240 @param f vlib_frame_t pointer
241 @return pointer to first vector element in frame
242*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243always_inline void *
244vlib_frame_vector_args (vlib_frame_t * f)
245{
246 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
247}
248
Dave Barach9770e202016-07-06 10:29:27 -0400249/** \brief Get pointer to frame scalar data.
250
Dave Barach9770e202016-07-06 10:29:27 -0400251 @param f vlib_frame_t pointer
252
253 @return arbitrary node scalar data
254
255 @sa vlib_frame_vector_args
256*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257always_inline void *
Damjan Mariona3d59862018-11-10 10:23:00 +0100258vlib_frame_scalar_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400259{
260 return vlib_frame_vector_args (f) - f->scalar_size;
261}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262
263always_inline vlib_next_frame_t *
264vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400265 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 vlib_node_main_t *nm = &vm->node_main;
268 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269
270 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400271 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
273 if (CLIB_DEBUG > 0)
274 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 node = vec_elt (nm->nodes, n->node_index);
277 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
278 ASSERT (nf->node_runtime_index == next->runtime_index);
279 }
280
281 return nf;
282}
283
Dave Barach9770e202016-07-06 10:29:27 -0400284/** \brief Get pointer to frame by (@c node_index, @c next_index).
285
286 @warning This is not a function that you should call directly.
287 See @ref vlib_get_next_frame instead.
288
289 @param vm vlib_main_t pointer, varies by thread
290 @param node_index index of the node
291 @param next_index graph arc index
292
293 @return pointer to the requested vlib_next_frame_t
294
295 @sa vlib_get_next_frame
296*/
297
Ed Warnickecb9cada2015-12-08 15:45:58 -0700298always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400299vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400301 vlib_node_main_t *nm = &vm->node_main;
302 vlib_node_t *n;
303 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700304
305 n = vec_elt (nm->nodes, node_index);
306 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
307 return vlib_node_runtime_get_next_frame (vm, r, next_index);
308}
309
Dave Barach9b8ffd92016-07-08 08:13:45 -0400310vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
311 vlib_node_runtime_t * node,
312 u32 next_index,
313 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314
315#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
316do { \
317 vlib_frame_t * _f \
318 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
319 (alloc_new_frame)); \
320 u32 _n = _f->n_vectors; \
321 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
322 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
323} while (0)
324
Dave Barach9770e202016-07-06 10:29:27 -0400325
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400327 (@c vlib_node_runtime_t, @c next_index).
328 Standard single/dual loop boilerplate element.
329 @attention This is a MACRO, with SIDE EFFECTS.
330
331 @param vm vlib_main_t pointer, varies by thread
332 @param node current node vlib_node_runtime_t pointer
333 @param next_index requested graph arc index
334
335 @return @c vectors -- pointer to next available vector slot
336 @return @c n_vectors_left -- number of vector slots available
337*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
339 vlib_get_next_frame_macro (vm, node, next_index, \
340 vectors, n_vectors_left, \
341 /* alloc new frame */ 0)
342
343#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
344 vlib_get_next_frame_macro (vm, node, next_index, \
345 vectors, n_vectors_left, \
346 /* alloc new frame */ 1)
347
Dave Barach9770e202016-07-06 10:29:27 -0400348/** \brief Release pointer to next frame vector data.
349 Standard single/dual loop boilerplate element.
350 @param vm vlib_main_t pointer, varies by thread
351 @param r current node vlib_node_runtime_t pointer
352 @param next_index graph arc index
353 @param n_packets_left number of slots still available in vector
354*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355void
356vlib_put_next_frame (vlib_main_t * vm,
357 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
360/* Combination get plus put. Returns vector argument just added. */
361#define vlib_set_next_frame(vm,node,next_index,v) \
362({ \
363 uword _n_left; \
364 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
365 ASSERT (_n_left > 0); \
366 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
367 (v); \
368})
369
370always_inline void
371vlib_set_next_frame_buffer (vlib_main_t * vm,
372 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 p = vlib_set_next_frame (vm, node, next_index, p);
377 p[0] = buffer_index;
378}
379
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
381void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
382 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384always_inline uword
385vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400386{
387 return vm->node_main.current_process_index != ~0;
388}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389
Florin Coras66b11312017-07-31 17:18:03 -0700390always_inline vlib_process_t *
391vlib_get_current_process (vlib_main_t * vm)
392{
393 vlib_node_main_t *nm = &vm->node_main;
394 if (vlib_in_process_context (vm))
395 return vec_elt (nm->processes, nm->current_process_index);
396 return 0;
397}
398
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399always_inline uword
400vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400401{
402 return vlib_get_current_process (vm)->node_runtime.node_index;
403}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404
Dave Barach5c20a012017-06-13 08:48:31 -0400405/** Returns TRUE if a process suspend time is less than 10us
Dave Barach2ab470a2016-08-10 18:38:36 -0400406 @param dt - remaining poll time in seconds
Dave Barach5c20a012017-06-13 08:48:31 -0400407 @returns 1 if dt < 10e-6, 0 otherwise
Dave Barach2ab470a2016-08-10 18:38:36 -0400408*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409always_inline uword
410vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411{
Dave Barach5c20a012017-06-13 08:48:31 -0400412 return dt < 10e-6;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400413}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
Dave Barach2ab470a2016-08-10 18:38:36 -0400415/** Suspend a vlib cooperative multi-tasking thread for a period of time
416 @param vm - vlib_main_t *
417 @param dt - suspend interval in seconds
418 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
419*/
420
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421always_inline uword
422vlib_process_suspend (vlib_main_t * vm, f64 dt)
423{
424 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400425 vlib_node_main_t *nm = &vm->node_main;
426 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427
428 if (vlib_process_suspend_time_is_zero (dt))
429 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
430
431 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
432 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
433 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
434 {
Dave Barach5c20a012017-06-13 08:48:31 -0400435 /* expiration time in 10us ticks */
436 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
438 }
439
440 return r;
441}
442
443always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444vlib_process_free_event_type (vlib_process_t * p, uword t,
445 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 pool_put_index (p->event_type_pool, t);
449 if (is_one_time_event)
450 p->one_time_event_type_bitmap =
451 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
452}
453
454always_inline void
455vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
456{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400457 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
459 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
460}
461
462always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400463vlib_process_get_event_data (vlib_main_t * vm,
464 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 vlib_node_main_t *nm = &vm->node_main;
467 vlib_process_t *p;
468 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100469 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400470 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471
472 p = vec_elt (nm->processes, nm->current_process_index);
473
474 /* Find first type with events ready.
475 Return invalid type when there's nothing there. */
476 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
477 if (t == ~0)
478 return 0;
479
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480 p->non_empty_event_type_bitmap =
481 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100483 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484 event_data_vector = p->pending_event_data_by_type_index[t];
485 p->pending_event_data_by_type_index[t] = 0;
486
487 et = pool_elt_at_index (p->event_type_pool, t);
488
489 /* Return user's opaque value and possibly index. */
490 *return_event_type_opaque = et->opaque;
491
492 vlib_process_maybe_free_event_type (p, t);
493
494 return event_data_vector;
495}
496
497/* Return event data vector for later reuse. We reuse event data to avoid
498 repeatedly allocating event vectors in cases where we care about speed. */
499always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400502 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503 vec_add1 (nm->recycled_event_data_vectors, event_data);
504}
505
Dave Barach2ab470a2016-08-10 18:38:36 -0400506/** Return the first event type which has occurred and a vector of per-event
507 data of that type, or a timeout indication
508
509 @param vm - vlib_main_t pointer
510 @param data_vector - pointer to a (uword *) vector to receive event data
511 @returns either an event type and a vector of per-event instance data,
512 or ~0 to indicate a timeout.
513*/
514
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515always_inline uword
516vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
517{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400518 vlib_node_main_t *nm = &vm->node_main;
519 vlib_process_t *p;
520 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521 uword r, t, l;
522
523 p = vec_elt (nm->processes, nm->current_process_index);
524
525 /* Find first type with events ready.
526 Return invalid type when there's nothing there. */
527 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
528 if (t == ~0)
529 return t;
530
Dave Barach9b8ffd92016-07-08 08:13:45 -0400531 p->non_empty_event_type_bitmap =
532 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533
534 l = _vec_len (p->pending_event_data_by_type_index[t]);
535 if (data_vector)
536 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
537 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
538
539 et = pool_elt_at_index (p->event_type_pool, t);
540
541 /* Return user's opaque value. */
542 r = et->opaque;
543
544 vlib_process_maybe_free_event_type (p, t);
545
546 return r;
547}
548
549always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400550vlib_process_get_events_helper (vlib_process_t * p, uword t,
551 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552{
553 uword l;
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 vlib_process_maybe_free_event_type (p, t);
564
565 return l;
566}
567
568/* As above but query as specified type of event. Returns number of
569 events found. */
570always_inline uword
571vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
572 uword with_type_opaque)
573{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574 vlib_node_main_t *nm = &vm->node_main;
575 vlib_process_t *p;
576 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577
578 p = vec_elt (nm->processes, nm->current_process_index);
579 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400580 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581 /* This can happen when an event has not yet been
582 signaled with given opaque type. */
583 return 0;
584
585 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400586 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587 return 0;
588
589 return vlib_process_get_events_helper (p, t, data_vector);
590}
591
592always_inline uword *
593vlib_process_wait_for_event (vlib_main_t * vm)
594{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400595 vlib_node_main_t *nm = &vm->node_main;
596 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 uword r;
598
599 p = vec_elt (nm->processes, nm->current_process_index);
600 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
601 {
602 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400603 r =
604 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400606 clib_longjmp (&p->return_longjmp,
607 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700608 }
609
610 return p->non_empty_event_type_bitmap;
611}
612
613always_inline uword
614vlib_process_wait_for_one_time_event (vlib_main_t * vm,
615 uword ** data_vector,
616 uword with_type_index)
617{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400618 vlib_node_main_t *nm = &vm->node_main;
619 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 uword r;
621
622 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400623 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
624 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 {
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 vlib_process_get_events_helper (p, with_type_index, data_vector);
635}
636
637always_inline uword
638vlib_process_wait_for_event_with_type (vlib_main_t * vm,
639 uword ** data_vector,
640 uword with_type_opaque)
641{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 vlib_node_main_t *nm = &vm->node_main;
643 vlib_process_t *p;
644 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
646 p = vec_elt (nm->processes, nm->current_process_index);
647 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400648 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
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 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400658 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
660 }
661
662 return vlib_process_get_events_helper (p, h[0], data_vector);
663}
664
Dave Barach2ab470a2016-08-10 18:38:36 -0400665/** Suspend a cooperative multi-tasking thread
666 Waits for an event, or for the indicated number of seconds to elapse
667 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200668 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400669 @returns the remaining time interval
670*/
671
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672always_inline f64
673vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
674{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 vlib_node_main_t *nm = &vm->node_main;
676 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 f64 wakeup_time;
678 uword r;
679
680 p = vec_elt (nm->processes, nm->current_process_index);
681
682 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400683 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 return dt;
685
686 wakeup_time = vlib_time_now (vm) + dt;
687
688 /* Suspend waiting for both clock and event to occur. */
689 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
690 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
691
692 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
693 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
694 {
Dave Barach5c20a012017-06-13 08:48:31 -0400695 p->resume_clock_interval = dt * 1e5;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700696 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
697 }
698
699 /* Return amount of time still left to sleep.
700 If <= 0 then we've been waken up by the clock (and not an event). */
701 return wakeup_time - vlib_time_now (vm);
702}
703
704always_inline vlib_process_event_type_t *
705vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
706{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 pool_get (p->event_type_pool, et);
709 et->opaque = with_type_opaque;
710 return et;
711}
712
713always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400714vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
715 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400717 vlib_node_main_t *nm = &vm->node_main;
718 vlib_node_t *n = vlib_get_node (vm, node_index);
719 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
720 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721 uword t;
722
723 et = vlib_process_new_event_type (p, with_type_opaque);
724 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725 p->one_time_event_type_bitmap =
726 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727 return t;
728}
729
730always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
732 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734 vlib_node_main_t *nm = &vm->node_main;
735 vlib_node_t *n = vlib_get_node (vm, node_index);
736 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
738 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
739 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
740}
741
742always_inline void *
743vlib_process_signal_event_helper (vlib_node_main_t * nm,
744 vlib_node_t * n,
745 vlib_process_t * p,
746 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748{
749 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400750 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
Dave Barach1403fcd2018-02-05 09:45:43 -0500752 ASSERT (n->type == VLIB_NODE_TYPE_PROCESS);
753
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
756 vec_validate (p->pending_event_data_by_type_index, t);
757
758 /* Resize data vector and return caller's data to be written. */
759 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761 uword l;
762
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764 {
765 data_vec = vec_pop (nm->recycled_event_data_vectors);
766 _vec_len (data_vec) = 0;
767 }
768
769 l = vec_len (data_vec);
770
771 data_vec = _vec_resize (data_vec,
772 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400773 /* total size after increment */
774 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775 /* header_bytes */ 0, /* data_align */ 0);
776
777 p->pending_event_data_by_type_index[t] = data_vec;
778 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
779 }
780
Dave Barach9b8ffd92016-07-08 08:13:45 -0400781 p->non_empty_event_type_bitmap =
782 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
784 p_flags = p->flags;
785
786 /* Event was already signalled? */
787 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
788
789 /* Process will resume when suspend time elapses? */
790 delete_from_wheel = 0;
791 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
792 {
793 /* Waiting for both event and clock? */
794 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
Florin Coras40f92462018-08-01 16:25:45 -0700795 {
796 if (!TW (tw_timer_handle_is_free)
797 ((TWT (tw_timer_wheel) *) nm->timing_wheel,
798 p->stop_timer_handle))
799 delete_from_wheel = 1;
800 else
801 /* timer just popped so process should already be on the list */
802 add_to_pending = 0;
803 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 else
805 /* Waiting only for clock. Event will be queue and may be
806 handled when timer expires. */
807 add_to_pending = 0;
808 }
809
810 /* Never add current process to pending vector since current process is
811 already running. */
812 add_to_pending &= nm->current_process_index != n->runtime_index;
813
814 if (add_to_pending)
815 {
816 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
817 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
818 vec_add1 (nm->data_from_advancing_timing_wheel, x);
819 if (delete_from_wheel)
Dave Barach5c20a012017-06-13 08:48:31 -0400820 TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
821 p->stop_timer_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822 }
823
824 return data_to_be_written_by_caller;
825}
826
827always_inline void *
828vlib_process_signal_event_data (vlib_main_t * vm,
829 uword node_index,
830 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400831 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400833 vlib_node_main_t *nm = &vm->node_main;
834 vlib_node_t *n = vlib_get_node (vm, node_index);
835 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
836 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837
John Lo609707e2017-09-19 21:45:10 -0400838 /* Must be in main thread */
839 ASSERT (vlib_get_thread_index () == 0);
840
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400842 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400844 vlib_process_event_type_t *et =
845 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700846 t = et - p->event_type_pool;
847 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
848 }
849 else
850 t = h[0];
851
Dave Barach9b8ffd92016-07-08 08:13:45 -0400852 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
853 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854}
855
856always_inline void *
857vlib_process_signal_event_at_time (vlib_main_t * vm,
858 f64 dt,
859 uword node_index,
860 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400861 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863 vlib_node_main_t *nm = &vm->node_main;
864 vlib_node_t *n = vlib_get_node (vm, node_index);
865 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
866 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867
868 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400871 vlib_process_event_type_t *et =
872 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700873 t = et - p->event_type_pool;
874 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
875 }
876 else
877 t = h[0];
878
879 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400880 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
881 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882 else
883 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400884 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885
886 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
887
888 te->n_data_elts = n_data_elts;
889 te->n_data_elt_bytes = n_data_elt_bytes;
890 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
891
892 /* Assert that structure fields are big enough. */
893 ASSERT (te->n_data_elts == n_data_elts);
894 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
895 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
896
897 te->process_node_index = n->runtime_index;
898 te->event_type_index = t;
899
Dave Barach5c20a012017-06-13 08:48:31 -0400900 p->stop_timer_handle =
901 TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
902 vlib_timing_wheel_data_set_timed_event
903 (te - nm->signal_timed_event_data_pool),
904 0 /* timer_id */ ,
905 (vlib_time_now (vm) + dt) * 1e5);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
907 /* Inline data big enough to hold event? */
908 if (te->n_data_bytes < sizeof (te->inline_event_data))
909 return te->inline_event_data;
910 else
911 {
912 te->event_data_as_vector = 0;
913 vec_resize (te->event_data_as_vector, te->n_data_bytes);
914 return te->event_data_as_vector;
915 }
916 }
917}
918
919always_inline void *
920vlib_process_signal_one_time_event_data (vlib_main_t * vm,
921 uword node_index,
922 uword type_index,
923 uword n_data_elts,
924 uword n_data_elt_bytes)
925{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926 vlib_node_main_t *nm = &vm->node_main;
927 vlib_node_t *n = vlib_get_node (vm, node_index);
928 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
929 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
930 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931}
932
933always_inline void
934vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400935 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700936{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
938 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 d[0] = data;
940}
941
942always_inline void
943vlib_process_signal_event_pointer (vlib_main_t * vm,
944 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400945 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400947 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
948 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949 d[0] = data;
950}
951
Dave Barach69128d02017-09-26 10:54:34 -0400952/**
953 * Signal event to process from any thread.
954 *
955 * When in doubt, use this.
956 */
957always_inline void
958vlib_process_signal_event_mt (vlib_main_t * vm,
959 uword node_index, uword type_opaque, uword data)
960{
961 if (vlib_get_thread_index () != 0)
962 {
963 vlib_process_signal_event_mt_args_t args = {
964 .node_index = node_index,
965 .type_opaque = type_opaque,
966 .data = data,
967 };
968 vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper,
969 (u8 *) & args, sizeof (args));
970 }
971 else
972 vlib_process_signal_event (vm, node_index, type_opaque, data);
973}
974
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975always_inline void
976vlib_process_signal_one_time_event (vlib_main_t * vm,
977 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400978 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700979{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400980 uword *d =
981 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
982 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983 d[0] = data;
984}
985
986always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400987vlib_signal_one_time_waiting_process (vlib_main_t * vm,
988 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400990 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
991 /* data */ ~0);
Dave Barachb7b92992018-10-17 10:38:51 -0400992 clib_memset (p, ~0, sizeof (p[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993}
994
995always_inline void
996vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400997 vlib_one_time_waiting_process_t
998 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001000 vlib_one_time_waiting_process_t *wp;
1001 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002 vec_free (*wps);
1003}
1004
1005always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001006vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
1007 vlib_one_time_waiting_process_t
1008 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009{
1010 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001011 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
1012 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 vlib_process_wait_for_one_time_event (vm,
1014 /* don't care about data */ 0,
1015 p->one_time_event);
1016}
1017
1018always_inline void
1019vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001020 vlib_one_time_waiting_process_t
1021 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 vec_add2 (*wps, wp, 1);
1025 vlib_current_process_wait_for_one_time_event (vm, wp);
1026}
1027
1028always_inline u32
1029vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1030 vlib_node_runtime_t * node,
1031 uword n_vectors)
1032{
1033 u32 i, d, vi0, vi1;
1034 u32 i0, i1;
1035
1036 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1037 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1038 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1039 i0 = i ^ 0;
1040 i1 = i ^ 1;
1041 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001042 -
1043 (node->main_loop_count_last_dispatch >>
1044 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 vi0 = node->main_loop_vector_stats[i0];
1046 vi1 = node->main_loop_vector_stats[i1];
1047 vi0 = d == 0 ? vi0 : 0;
1048 vi1 = d <= 1 ? vi1 : 0;
1049 vi0 += n_vectors;
1050 node->main_loop_vector_stats[i0] = vi0;
1051 node->main_loop_vector_stats[i1] = vi1;
1052 node->main_loop_count_last_dispatch = vm->main_loop_count;
1053 /* Return previous counter. */
1054 return node->main_loop_vector_stats[i1];
1055}
1056
1057always_inline f64
1058vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1059{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001060 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 u32 v;
1062
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1064 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1066}
1067
1068always_inline u32
1069vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1070{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001071 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072 u32 v;
1073
Dave Barach9b8ffd92016-07-08 08:13:45 -04001074 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1075 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1077}
1078
1079void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001080vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081
Neale Rannsbb620d72017-06-29 00:19:08 -07001082/* Return the edge index if present, ~0 otherwise */
1083uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node);
1084
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085/* Add next node to given node in given slot. */
1086uword
1087vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001088 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001089
1090/* As above but adds to end of node's next vector. */
1091always_inline uword
1092vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001093{
1094 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1095}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001096
1097/* Add next node to given node in given slot. */
1098uword
1099vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001100 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101
1102/* As above but adds to end of node's next vector. */
1103always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001104vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1105{
1106 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1107}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001108
Florin Corase86a8ed2018-01-05 03:20:25 -08001109/**
1110 * Get list of nodes
1111 */
Dave Barach1ddbc012018-06-13 09:26:05 -04001112void
1113vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats,
1114 int barrier_sync, vlib_node_t **** node_dupsp,
1115 vlib_main_t *** stat_vmsp);
Florin Corase86a8ed2018-01-05 03:20:25 -08001116
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001118vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001119
1120/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001121void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001122
1123/* Register new packet processing node. Nodes can be registered
1124 dynamically via this call or statically via the VLIB_REGISTER_NODE
1125 macro. */
1126u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1127
1128/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1129void vlib_register_all_static_nodes (vlib_main_t * vm);
1130
1131/* Start a process. */
1132void vlib_start_process (vlib_main_t * vm, uword process_index);
1133
1134/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001135void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136
1137/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001138clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001139
1140format_function_t format_vlib_node_graph;
1141format_function_t format_vlib_node_name;
1142format_function_t format_vlib_next_node_name;
1143format_function_t format_vlib_node_and_next;
1144format_function_t format_vlib_cpu_time;
1145format_function_t format_vlib_time;
1146/* Parse node name -> node index. */
1147unformat_function_t unformat_vlib_node;
1148
Dave Barach9b8ffd92016-07-08 08:13:45 -04001149always_inline void
1150vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1151 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001152{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001153 vlib_node_t *n = vlib_get_node (vm, node_index);
1154 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001155 u32 node_counter_base_index = n->error_heap_index;
1156 em->counters[node_counter_base_index + counter_index] += increment;
1157}
1158
Dave Barach11965c72019-05-28 16:31:05 -04001159/** @brief Create a vlib process
1160 * @param vm &vlib_global_main
1161 * @param f the process node function
1162 * @param log2_n_stack_bytes size of the process stack, defaults to 16K
1163 * @return newly-create node index
1164 * @warning call only on the main thread. Barrier sync required
1165 */
1166u32 vlib_process_create (vlib_main_t * vm, char *name,
1167 vlib_node_function_t * f, u32 log2_n_stack_bytes);
1168
Ed Warnickecb9cada2015-12-08 15:45:58 -07001169#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001170
1171/*
1172 * fd.io coding-style-patch-verification: ON
1173 *
1174 * Local Variables:
1175 * eval: (c-set-style "gnu")
1176 * End:
1177 */