blob: 8ccfc43802053287360b7aed365d94f946733537 [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>
49
Dave Barach9770e202016-07-06 10:29:27 -040050/** \brief Get vlib node by index.
51 @warning This function will ASSERT if @c i is out of range.
52 @param vm vlib_main_t pointer, varies by thread
53 @param i node index.
54 @return pointer to the requested vlib_node_t.
55*/
56
Ed Warnickecb9cada2015-12-08 15:45:58 -070057always_inline vlib_node_t *
58vlib_get_node (vlib_main_t * vm, u32 i)
Dave Barach9b8ffd92016-07-08 08:13:45 -040059{
60 return vec_elt (vm->node_main.nodes, i);
61}
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Dave Barach9770e202016-07-06 10:29:27 -040063/** \brief Get vlib node by graph arc (next) index.
64 @param vm vlib_main_t pointer, varies by thread
65 @param node_index index of original node
66 @param next_index graph arc index
67 @return pointer to the vlib_node_t at the end of the indicated arc
68*/
69
Ed Warnickecb9cada2015-12-08 15:45:58 -070070always_inline vlib_node_t *
71vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index)
72{
Dave Barach9b8ffd92016-07-08 08:13:45 -040073 vlib_node_main_t *nm = &vm->node_main;
74 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070075
76 n = vec_elt (nm->nodes, node_index);
77 ASSERT (next_index < vec_len (n->next_nodes));
78 return vlib_get_node (vm, n->next_nodes[next_index]);
79}
80
Dave Barach9770e202016-07-06 10:29:27 -040081/** \brief Get node runtime by node index.
82 @param vm vlib_main_t pointer, varies by thread
83 @param node_index index of node
84 @return pointer to the indicated vlib_node_runtime_t
85*/
86
Ed Warnickecb9cada2015-12-08 15:45:58 -070087always_inline vlib_node_runtime_t *
88vlib_node_get_runtime (vlib_main_t * vm, u32 node_index)
89{
Dave Barach9b8ffd92016-07-08 08:13:45 -040090 vlib_node_main_t *nm = &vm->node_main;
91 vlib_node_t *n = vec_elt (nm->nodes, node_index);
92 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 if (n->type != VLIB_NODE_TYPE_PROCESS)
94 return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
95 else
96 {
97 p = vec_elt (nm->processes, n->runtime_index);
98 return &p->node_runtime;
99 }
100}
101
Dave Barach9770e202016-07-06 10:29:27 -0400102/** \brief Get node runtime private data by node index.
103 @param vm vlib_main_t pointer, varies by thread
104 @param node_index index of the node
105 @return pointer to the indicated vlib_node_runtime_t private data
106*/
107
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108always_inline void *
109vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index)
110{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400111 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 return r->runtime_data;
113}
114
Dave Barach9770e202016-07-06 10:29:27 -0400115/** \brief Set node runtime private data.
116 @param vm vlib_main_t pointer, varies by thread
117 @param node_index index of the node
118 @param runtime_data arbitrary runtime private data
119 @param n_runtime_data_bytes size of runtime private data
120*/
121
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122always_inline void
123vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400124 void *runtime_data, u32 n_runtime_data_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400126 vlib_node_t *n = vlib_get_node (vm, node_index);
127 vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128
129 n->runtime_data_bytes = n_runtime_data_bytes;
130 vec_free (n->runtime_data);
131 vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes);
132
Damjan Marioneb90b7f2016-11-01 01:26:01 +0100133 ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) -
134 STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data));
135
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 if (vec_len (n->runtime_data) > 0)
Damjan Marionf1213b82016-03-13 02:22:06 +0100137 clib_memcpy (r->runtime_data, n->runtime_data, vec_len (n->runtime_data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138}
139
Dave Barach9770e202016-07-06 10:29:27 -0400140/** \brief Set node dispatch state.
141 @param vm vlib_main_t pointer, varies by thread
142 @param node_index index of the node
143 @param new_state new state for node, see vlib_node_state_t
144*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400146vlib_node_set_state (vlib_main_t * vm, u32 node_index,
147 vlib_node_state_t new_state)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400149 vlib_node_main_t *nm = &vm->node_main;
150 vlib_node_t *n;
151 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 n = vec_elt (nm->nodes, node_index);
154 if (n->type == VLIB_NODE_TYPE_PROCESS)
155 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157 r = &p->node_runtime;
158
159 /* When disabling make sure flags are cleared. */
160 p->flags &= ~(VLIB_PROCESS_RESUME_PENDING
161 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
162 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT);
163 }
164 else
165 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
166
167 ASSERT (new_state < VLIB_N_NODE_STATE);
168
169 if (n->type == VLIB_NODE_TYPE_INPUT)
170 {
171 ASSERT (nm->input_node_counts_by_state[n->state] > 0);
172 nm->input_node_counts_by_state[n->state] -= 1;
173 nm->input_node_counts_by_state[new_state] += 1;
174 }
175
176 n->state = new_state;
177 r->state = new_state;
178}
179
180always_inline void
181vlib_node_set_interrupt_pending (vlib_main_t * vm, u32 node_index)
182{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400183 vlib_node_main_t *nm = &vm->node_main;
184 vlib_node_t *n = vec_elt (nm->nodes, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185 ASSERT (n->type == VLIB_NODE_TYPE_INPUT);
186 vec_add1 (nm->pending_interrupt_node_runtime_indices, n->runtime_index);
187}
188
189always_inline vlib_process_t *
190vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node)
191{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400192 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 ASSERT (node->type == VLIB_NODE_TYPE_PROCESS);
194 return vec_elt (nm->processes, node->runtime_index);
195}
196
197/* Fetches frame with given handle. */
198always_inline vlib_frame_t *
199vlib_get_frame_no_check (vlib_main_t * vm, uword frame_index)
200{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400201 vlib_frame_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 u32 cpu_index = frame_index & VLIB_CPU_MASK;
203 u32 offset = frame_index & VLIB_OFFSET_MASK;
Dave Barach80f54e22017-03-08 19:08:56 -0500204 vm = vlib_mains[cpu_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205 f = vm->heap_base + offset;
206 return f;
207}
208
209always_inline u32
210vlib_frame_index_no_check (vlib_main_t * vm, vlib_frame_t * f)
211{
212 u32 i;
213
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 ASSERT (((uword) f & VLIB_CPU_MASK) == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215
Dave Barach80f54e22017-03-08 19:08:56 -0500216 vm = vlib_mains[f->cpu_index];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 i = ((u8 *) f - (u8 *) vm->heap_base);
219 return i | f->cpu_index;
220}
221
222always_inline vlib_frame_t *
223vlib_get_frame (vlib_main_t * vm, uword frame_index)
224{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 vlib_frame_t *f = vlib_get_frame_no_check (vm, frame_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 ASSERT (f->flags & VLIB_FRAME_IS_ALLOCATED);
227 return f;
228}
229
230always_inline u32
231vlib_frame_index (vlib_main_t * vm, vlib_frame_t * f)
232{
233 uword i = vlib_frame_index_no_check (vm, f);
234 ASSERT (vlib_get_frame (vm, i) == f);
235 return i;
236}
237
238/* Byte alignment for vector arguments. */
239#define VLIB_FRAME_VECTOR_ALIGN (1 << 4)
240
241always_inline u32
242vlib_frame_vector_byte_offset (u32 scalar_size)
243{
244 return round_pow2 (sizeof (vlib_frame_t) + scalar_size,
245 VLIB_FRAME_VECTOR_ALIGN);
246}
247
Dave Barach9770e202016-07-06 10:29:27 -0400248/** \brief Get pointer to frame vector data.
249 @param f vlib_frame_t pointer
250 @return pointer to first vector element in frame
251*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252always_inline void *
253vlib_frame_vector_args (vlib_frame_t * f)
254{
255 return (void *) f + vlib_frame_vector_byte_offset (f->scalar_size);
256}
257
Dave Barach9770e202016-07-06 10:29:27 -0400258/** \brief Get pointer to frame scalar data.
259
260 @warning This is almost certainly not the function you wish to call.
261 See @ref vlib_frame_vector_args instead.
262
263 @param f vlib_frame_t pointer
264
265 @return arbitrary node scalar data
266
267 @sa vlib_frame_vector_args
268*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269always_inline void *
270vlib_frame_args (vlib_frame_t * f)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400271{
272 return vlib_frame_vector_args (f) - f->scalar_size;
273}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
275always_inline vlib_next_frame_t *
276vlib_node_runtime_get_next_frame (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 vlib_node_runtime_t * n, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400279 vlib_node_main_t *nm = &vm->node_main;
280 vlib_next_frame_t *nf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
282 ASSERT (next_index < n->n_next_nodes);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400283 nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
285 if (CLIB_DEBUG > 0)
286 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400287 vlib_node_t *node, *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288 node = vec_elt (nm->nodes, n->node_index);
289 next = vec_elt (nm->nodes, node->next_nodes[next_index]);
290 ASSERT (nf->node_runtime_index == next->runtime_index);
291 }
292
293 return nf;
294}
295
Dave Barach9770e202016-07-06 10:29:27 -0400296/** \brief Get pointer to frame by (@c node_index, @c next_index).
297
298 @warning This is not a function that you should call directly.
299 See @ref vlib_get_next_frame instead.
300
301 @param vm vlib_main_t pointer, varies by thread
302 @param node_index index of the node
303 @param next_index graph arc index
304
305 @return pointer to the requested vlib_next_frame_t
306
307 @sa vlib_get_next_frame
308*/
309
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310always_inline vlib_next_frame_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400311vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400313 vlib_node_main_t *nm = &vm->node_main;
314 vlib_node_t *n;
315 vlib_node_runtime_t *r;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
317 n = vec_elt (nm->nodes, node_index);
318 r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index);
319 return vlib_node_runtime_get_next_frame (vm, r, next_index);
320}
321
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm,
323 vlib_node_runtime_t * node,
324 u32 next_index,
325 u32 alloc_new_frame);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327#define vlib_get_next_frame_macro(vm,node,next_index,vectors,n_vectors_left,alloc_new_frame) \
328do { \
329 vlib_frame_t * _f \
330 = vlib_get_next_frame_internal ((vm), (node), (next_index), \
331 (alloc_new_frame)); \
332 u32 _n = _f->n_vectors; \
333 (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \
334 (n_vectors_left) = VLIB_FRAME_SIZE - _n; \
335} while (0)
336
Dave Barach9770e202016-07-06 10:29:27 -0400337
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338/** \brief Get pointer to next frame vector data by
Dave Barach9770e202016-07-06 10:29:27 -0400339 (@c vlib_node_runtime_t, @c next_index).
340 Standard single/dual loop boilerplate element.
341 @attention This is a MACRO, with SIDE EFFECTS.
342
343 @param vm vlib_main_t pointer, varies by thread
344 @param node current node vlib_node_runtime_t pointer
345 @param next_index requested graph arc index
346
347 @return @c vectors -- pointer to next available vector slot
348 @return @c n_vectors_left -- number of vector slots available
349*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350#define vlib_get_next_frame(vm,node,next_index,vectors,n_vectors_left) \
351 vlib_get_next_frame_macro (vm, node, next_index, \
352 vectors, n_vectors_left, \
353 /* alloc new frame */ 0)
354
355#define vlib_get_new_next_frame(vm,node,next_index,vectors,n_vectors_left) \
356 vlib_get_next_frame_macro (vm, node, next_index, \
357 vectors, n_vectors_left, \
358 /* alloc new frame */ 1)
359
Dave Barach9770e202016-07-06 10:29:27 -0400360/** \brief Release pointer to next frame vector data.
361 Standard single/dual loop boilerplate element.
362 @param vm vlib_main_t pointer, varies by thread
363 @param r current node vlib_node_runtime_t pointer
364 @param next_index graph arc index
365 @param n_packets_left number of slots still available in vector
366*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367void
368vlib_put_next_frame (vlib_main_t * vm,
369 vlib_node_runtime_t * r,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400370 u32 next_index, u32 n_packets_left);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
372/* Combination get plus put. Returns vector argument just added. */
373#define vlib_set_next_frame(vm,node,next_index,v) \
374({ \
375 uword _n_left; \
376 vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \
377 ASSERT (_n_left > 0); \
378 vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \
379 (v); \
380})
381
382always_inline void
383vlib_set_next_frame_buffer (vlib_main_t * vm,
384 vlib_node_runtime_t * node,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400385 u32 next_index, u32 buffer_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 u32 *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 p = vlib_set_next_frame (vm, node, next_index, p);
389 p[0] = buffer_index;
390}
391
Dave Barach9b8ffd92016-07-08 08:13:45 -0400392vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index);
393void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index,
394 vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
396always_inline vlib_process_t *
397vlib_get_current_process (vlib_main_t * vm)
398{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 return vec_elt (nm->processes, nm->current_process_index);
401}
402
403always_inline uword
404vlib_in_process_context (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405{
406 return vm->node_main.current_process_index != ~0;
407}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408
409always_inline uword
410vlib_current_process (vlib_main_t * vm)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411{
412 return vlib_get_current_process (vm)->node_runtime.node_index;
413}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700414
Dave Barach2ab470a2016-08-10 18:38:36 -0400415/** Returns TRUE if a process suspend time is less than 1us
416 @param dt - remaining poll time in seconds
417 @returns 1 if dt < 1e-6, 0 otherwise
418*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419always_inline uword
420vlib_process_suspend_time_is_zero (f64 dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400421{
422 return dt < 1e-6;
423}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424
Dave Barach2ab470a2016-08-10 18:38:36 -0400425/** Suspend a vlib cooperative multi-tasking thread for a period of time
426 @param vm - vlib_main_t *
427 @param dt - suspend interval in seconds
428 @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored
429*/
430
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431always_inline uword
432vlib_process_suspend (vlib_main_t * vm, f64 dt)
433{
434 uword r;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435 vlib_node_main_t *nm = &vm->node_main;
436 vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437 u64 dt_cpu = dt * vm->clib_time.clocks_per_second;
438
439 if (vlib_process_suspend_time_is_zero (dt))
440 return VLIB_PROCESS_RESUME_LONGJMP_RESUME;
441
442 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK;
443 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
444 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
445 {
446 p->resume_cpu_time = clib_cpu_time_now () + dt_cpu;
447 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
448 }
449
450 return r;
451}
452
453always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454vlib_process_free_event_type (vlib_process_t * p, uword t,
455 uword is_one_time_event)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456{
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 pool_put_index (p->event_type_pool, t);
459 if (is_one_time_event)
460 p->one_time_event_type_bitmap =
461 clib_bitmap_andnoti (p->one_time_event_type_bitmap, t);
462}
463
464always_inline void
465vlib_process_maybe_free_event_type (vlib_process_t * p, uword t)
466{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400467 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468 if (clib_bitmap_get (p->one_time_event_type_bitmap, t))
469 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
470}
471
472always_inline void *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400473vlib_process_get_event_data (vlib_main_t * vm,
474 uword * return_event_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400476 vlib_node_main_t *nm = &vm->node_main;
477 vlib_process_t *p;
478 vlib_process_event_type_t *et;
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100479 uword t;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480 void *event_data_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
482 p = vec_elt (nm->processes, nm->current_process_index);
483
484 /* Find first type with events ready.
485 Return invalid type when there's nothing there. */
486 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
487 if (t == ~0)
488 return 0;
489
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490 p->non_empty_event_type_bitmap =
491 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492
Gabriel Ganne71d73fe2017-02-04 10:51:04 +0100493 ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 event_data_vector = p->pending_event_data_by_type_index[t];
495 p->pending_event_data_by_type_index[t] = 0;
496
497 et = pool_elt_at_index (p->event_type_pool, t);
498
499 /* Return user's opaque value and possibly index. */
500 *return_event_type_opaque = et->opaque;
501
502 vlib_process_maybe_free_event_type (p, t);
503
504 return event_data_vector;
505}
506
507/* Return event data vector for later reuse. We reuse event data to avoid
508 repeatedly allocating event vectors in cases where we care about speed. */
509always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400510vlib_process_put_event_data (vlib_main_t * vm, void *event_data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400512 vlib_node_main_t *nm = &vm->node_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513 vec_add1 (nm->recycled_event_data_vectors, event_data);
514}
515
Dave Barach2ab470a2016-08-10 18:38:36 -0400516/** Return the first event type which has occurred and a vector of per-event
517 data of that type, or a timeout indication
518
519 @param vm - vlib_main_t pointer
520 @param data_vector - pointer to a (uword *) vector to receive event data
521 @returns either an event type and a vector of per-event instance data,
522 or ~0 to indicate a timeout.
523*/
524
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525always_inline uword
526vlib_process_get_events (vlib_main_t * vm, uword ** data_vector)
527{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 vlib_node_main_t *nm = &vm->node_main;
529 vlib_process_t *p;
530 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 uword r, t, l;
532
533 p = vec_elt (nm->processes, nm->current_process_index);
534
535 /* Find first type with events ready.
536 Return invalid type when there's nothing there. */
537 t = clib_bitmap_first_set (p->non_empty_event_type_bitmap);
538 if (t == ~0)
539 return t;
540
Dave Barach9b8ffd92016-07-08 08:13:45 -0400541 p->non_empty_event_type_bitmap =
542 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
544 l = _vec_len (p->pending_event_data_by_type_index[t]);
545 if (data_vector)
546 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
547 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
548
549 et = pool_elt_at_index (p->event_type_pool, t);
550
551 /* Return user's opaque value. */
552 r = et->opaque;
553
554 vlib_process_maybe_free_event_type (p, t);
555
556 return r;
557}
558
559always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560vlib_process_get_events_helper (vlib_process_t * p, uword t,
561 uword ** data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562{
563 uword l;
564
Dave Barach9b8ffd92016-07-08 08:13:45 -0400565 p->non_empty_event_type_bitmap =
566 clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
568 l = _vec_len (p->pending_event_data_by_type_index[t]);
569 if (data_vector)
570 vec_add (*data_vector, p->pending_event_data_by_type_index[t], l);
571 _vec_len (p->pending_event_data_by_type_index[t]) = 0;
572
573 vlib_process_maybe_free_event_type (p, t);
574
575 return l;
576}
577
578/* As above but query as specified type of event. Returns number of
579 events found. */
580always_inline uword
581vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector,
582 uword with_type_opaque)
583{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584 vlib_node_main_t *nm = &vm->node_main;
585 vlib_process_t *p;
586 uword t, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
588 p = vec_elt (nm->processes, nm->current_process_index);
589 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400590 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700591 /* This can happen when an event has not yet been
592 signaled with given opaque type. */
593 return 0;
594
595 t = h[0];
Dave Barach9b8ffd92016-07-08 08:13:45 -0400596 if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 return 0;
598
599 return vlib_process_get_events_helper (p, t, data_vector);
600}
601
602always_inline uword *
603vlib_process_wait_for_event (vlib_main_t * vm)
604{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400605 vlib_node_main_t *nm = &vm->node_main;
606 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700607 uword r;
608
609 p = vec_elt (nm->processes, nm->current_process_index);
610 if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
611 {
612 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 r =
614 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400616 clib_longjmp (&p->return_longjmp,
617 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 }
619
620 return p->non_empty_event_type_bitmap;
621}
622
623always_inline uword
624vlib_process_wait_for_one_time_event (vlib_main_t * vm,
625 uword ** data_vector,
626 uword with_type_index)
627{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628 vlib_node_main_t *nm = &vm->node_main;
629 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 uword r;
631
632 p = vec_elt (nm->processes, nm->current_process_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400633 ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index));
634 while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700635 {
636 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637 r =
638 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640 clib_longjmp (&p->return_longjmp,
641 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642 }
643
644 return vlib_process_get_events_helper (p, with_type_index, data_vector);
645}
646
647always_inline uword
648vlib_process_wait_for_event_with_type (vlib_main_t * vm,
649 uword ** data_vector,
650 uword with_type_opaque)
651{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400652 vlib_node_main_t *nm = &vm->node_main;
653 vlib_process_t *p;
654 uword r, *h;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700655
656 p = vec_elt (nm->processes, nm->current_process_index);
657 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400658 while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 {
660 p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 r =
662 clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400664 clib_longjmp (&p->return_longjmp,
665 VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700666
667 /* See if unknown event type has been signaled now. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400668 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700669 h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque);
670 }
671
672 return vlib_process_get_events_helper (p, h[0], data_vector);
673}
674
Dave Barach2ab470a2016-08-10 18:38:36 -0400675/** Suspend a cooperative multi-tasking thread
676 Waits for an event, or for the indicated number of seconds to elapse
677 @param vm - vlib_main_t pointer
Damjan Marion607de1a2016-08-16 22:53:54 +0200678 @param dt - timeout, in seconds.
Dave Barach2ab470a2016-08-10 18:38:36 -0400679 @returns the remaining time interval
680*/
681
Ed Warnickecb9cada2015-12-08 15:45:58 -0700682always_inline f64
683vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt)
684{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400685 vlib_node_main_t *nm = &vm->node_main;
686 vlib_process_t *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 f64 wakeup_time;
688 uword r;
689
690 p = vec_elt (nm->processes, nm->current_process_index);
691
692 if (vlib_process_suspend_time_is_zero (dt)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 return dt;
695
696 wakeup_time = vlib_time_now (vm) + dt;
697
698 /* Suspend waiting for both clock and event to occur. */
699 p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
700 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK);
701
702 r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND);
703 if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND)
704 {
705 p->resume_cpu_time = (clib_cpu_time_now ()
706 + (dt * vm->clib_time.clocks_per_second));
707 clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND);
708 }
709
710 /* Return amount of time still left to sleep.
711 If <= 0 then we've been waken up by the clock (and not an event). */
712 return wakeup_time - vlib_time_now (vm);
713}
714
715always_inline vlib_process_event_type_t *
716vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque)
717{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400718 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700719 pool_get (p->event_type_pool, et);
720 et->opaque = with_type_opaque;
721 return et;
722}
723
724always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -0400725vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index,
726 uword with_type_opaque)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700727{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 vlib_node_main_t *nm = &vm->node_main;
729 vlib_node_t *n = vlib_get_node (vm, node_index);
730 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
731 vlib_process_event_type_t *et;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 uword t;
733
734 et = vlib_process_new_event_type (p, with_type_opaque);
735 t = et - p->event_type_pool;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 p->one_time_event_type_bitmap =
737 clib_bitmap_ori (p->one_time_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700738 return t;
739}
740
741always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400742vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index,
743 uword t)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 vlib_node_main_t *nm = &vm->node_main;
746 vlib_node_t *n = vlib_get_node (vm, node_index);
747 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
749 ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t));
750 vlib_process_free_event_type (p, t, /* is_one_time_event */ 1);
751}
752
753always_inline void *
754vlib_process_signal_event_helper (vlib_node_main_t * nm,
755 vlib_node_t * n,
756 vlib_process_t * p,
757 uword t,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759{
760 uword p_flags, add_to_pending, delete_from_wheel;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400761 void *data_to_be_written_by_caller;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700762
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 ASSERT (!pool_is_free_index (p->event_type_pool, t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700764
765 vec_validate (p->pending_event_data_by_type_index, t);
766
767 /* Resize data vector and return caller's data to be written. */
768 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 void *data_vec = p->pending_event_data_by_type_index[t];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700770 uword l;
771
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 if (!data_vec && vec_len (nm->recycled_event_data_vectors))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773 {
774 data_vec = vec_pop (nm->recycled_event_data_vectors);
775 _vec_len (data_vec) = 0;
776 }
777
778 l = vec_len (data_vec);
779
780 data_vec = _vec_resize (data_vec,
781 /* length_increment */ n_data_elts,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400782 /* total size after increment */
783 (l + n_data_elts) * n_data_elt_bytes,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784 /* header_bytes */ 0, /* data_align */ 0);
785
786 p->pending_event_data_by_type_index[t] = data_vec;
787 data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes;
788 }
789
Dave Barach9b8ffd92016-07-08 08:13:45 -0400790 p->non_empty_event_type_bitmap =
791 clib_bitmap_ori (p->non_empty_event_type_bitmap, t);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792
793 p_flags = p->flags;
794
795 /* Event was already signalled? */
796 add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0;
797
798 /* Process will resume when suspend time elapses? */
799 delete_from_wheel = 0;
800 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
801 {
802 /* Waiting for both event and clock? */
803 if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)
804 delete_from_wheel = 1;
805 else
806 /* Waiting only for clock. Event will be queue and may be
807 handled when timer expires. */
808 add_to_pending = 0;
809 }
810
811 /* Never add current process to pending vector since current process is
812 already running. */
813 add_to_pending &= nm->current_process_index != n->runtime_index;
814
815 if (add_to_pending)
816 {
817 u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index);
818 p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING;
819 vec_add1 (nm->data_from_advancing_timing_wheel, x);
820 if (delete_from_wheel)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400821 timing_wheel_delete (&nm->timing_wheel, x);
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
838 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700840 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400841 vlib_process_event_type_t *et =
842 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843 t = et - p->event_type_pool;
844 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
845 }
846 else
847 t = h[0];
848
Dave Barach9b8ffd92016-07-08 08:13:45 -0400849 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
850 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851}
852
853always_inline void *
854vlib_process_signal_event_at_time (vlib_main_t * vm,
855 f64 dt,
856 uword node_index,
857 uword type_opaque,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400858 uword n_data_elts, uword n_data_elt_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400860 vlib_node_main_t *nm = &vm->node_main;
861 vlib_node_t *n = vlib_get_node (vm, node_index);
862 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
863 uword *h, t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
865 h = hash_get (p->event_type_index_by_type_opaque, type_opaque);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 if (!h)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400868 vlib_process_event_type_t *et =
869 vlib_process_new_event_type (p, type_opaque);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700870 t = et - p->event_type_pool;
871 hash_set (p->event_type_index_by_type_opaque, type_opaque, t);
872 }
873 else
874 t = h[0];
875
876 if (vlib_process_suspend_time_is_zero (dt))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400877 return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts,
878 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879 else
880 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400881 vlib_signal_timed_event_data_t *te;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882 u64 dt_cpu = dt * vm->clib_time.clocks_per_second;
883
884 pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0]));
885
886 te->n_data_elts = n_data_elts;
887 te->n_data_elt_bytes = n_data_elt_bytes;
888 te->n_data_bytes = n_data_elts * n_data_elt_bytes;
889
890 /* Assert that structure fields are big enough. */
891 ASSERT (te->n_data_elts == n_data_elts);
892 ASSERT (te->n_data_elt_bytes == n_data_elt_bytes);
893 ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes);
894
895 te->process_node_index = n->runtime_index;
896 te->event_type_index = t;
897
898 timing_wheel_insert (&nm->timing_wheel, clib_cpu_time_now () + dt_cpu,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400899 vlib_timing_wheel_data_set_timed_event (te -
900 nm->
901 signal_timed_event_data_pool));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700902
903 /* Inline data big enough to hold event? */
904 if (te->n_data_bytes < sizeof (te->inline_event_data))
905 return te->inline_event_data;
906 else
907 {
908 te->event_data_as_vector = 0;
909 vec_resize (te->event_data_as_vector, te->n_data_bytes);
910 return te->event_data_as_vector;
911 }
912 }
913}
914
915always_inline void *
916vlib_process_signal_one_time_event_data (vlib_main_t * vm,
917 uword node_index,
918 uword type_index,
919 uword n_data_elts,
920 uword n_data_elt_bytes)
921{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400922 vlib_node_main_t *nm = &vm->node_main;
923 vlib_node_t *n = vlib_get_node (vm, node_index);
924 vlib_process_t *p = vec_elt (nm->processes, n->runtime_index);
925 return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts,
926 n_data_elt_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700927}
928
929always_inline void
930vlib_process_signal_event (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400931 uword node_index, uword type_opaque, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700932{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400933 uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque,
934 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935 d[0] = data;
936}
937
938always_inline void
939vlib_process_signal_event_pointer (vlib_main_t * vm,
940 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400941 uword type_opaque, void *data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700942{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 void **d = vlib_process_signal_event_data (vm, node_index, type_opaque,
944 1 /* elts */ , sizeof (data));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945 d[0] = data;
946}
947
948always_inline void
949vlib_process_signal_one_time_event (vlib_main_t * vm,
950 uword node_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400951 uword type_index, uword data)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400953 uword *d =
954 vlib_process_signal_one_time_event_data (vm, node_index, type_index,
955 1 /* elts */ , sizeof (uword));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700956 d[0] = data;
957}
958
959always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400960vlib_signal_one_time_waiting_process (vlib_main_t * vm,
961 vlib_one_time_waiting_process_t * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400963 vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event,
964 /* data */ ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 memset (p, ~0, sizeof (p[0]));
966}
967
968always_inline void
969vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400970 vlib_one_time_waiting_process_t
971 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 vlib_one_time_waiting_process_t *wp;
974 vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975 vec_free (*wps);
976}
977
978always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400979vlib_current_process_wait_for_one_time_event (vlib_main_t * vm,
980 vlib_one_time_waiting_process_t
981 * p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700982{
983 p->node_index = vlib_current_process (vm);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400984 p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */
985 ~0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700986 vlib_process_wait_for_one_time_event (vm,
987 /* don't care about data */ 0,
988 p->one_time_event);
989}
990
991always_inline void
992vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400993 vlib_one_time_waiting_process_t
994 ** wps)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400996 vlib_one_time_waiting_process_t *wp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700997 vec_add2 (*wps, wp, 1);
998 vlib_current_process_wait_for_one_time_event (vm, wp);
999}
1000
1001always_inline u32
1002vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm,
1003 vlib_node_runtime_t * node,
1004 uword n_vectors)
1005{
1006 u32 i, d, vi0, vi1;
1007 u32 i0, i1;
1008
1009 ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats)));
1010 i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
1011 & (ARRAY_LEN (node->main_loop_vector_stats) - 1));
1012 i0 = i ^ 0;
1013 i1 = i ^ 1;
1014 d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001015 -
1016 (node->main_loop_count_last_dispatch >>
1017 VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE));
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018 vi0 = node->main_loop_vector_stats[i0];
1019 vi1 = node->main_loop_vector_stats[i1];
1020 vi0 = d == 0 ? vi0 : 0;
1021 vi1 = d <= 1 ? vi1 : 0;
1022 vi0 += n_vectors;
1023 node->main_loop_vector_stats[i0] = vi0;
1024 node->main_loop_vector_stats[i1] = vi1;
1025 node->main_loop_count_last_dispatch = vm->main_loop_count;
1026 /* Return previous counter. */
1027 return node->main_loop_vector_stats[i1];
1028}
1029
1030always_inline f64
1031vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index)
1032{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 u32 v;
1035
Dave Barach9b8ffd92016-07-08 08:13:45 -04001036 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1037 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038 return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE);
1039}
1040
1041always_inline u32
1042vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index)
1043{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001044 vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 u32 v;
1046
Dave Barach9b8ffd92016-07-08 08:13:45 -04001047 v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */
1048 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049 return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE;
1050}
1051
1052void
Dave Barach9b8ffd92016-07-08 08:13:45 -04001053vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054
1055/* Add next node to given node in given slot. */
1056uword
1057vlib_node_add_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001058 uword node, uword next_node, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
1060/* As above but adds to end of node's next vector. */
1061always_inline uword
1062vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001063{
1064 return vlib_node_add_next_with_slot (vm, node, next_node, ~0);
1065}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001066
1067/* Add next node to given node in given slot. */
1068uword
1069vlib_node_add_named_next_with_slot (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001070 uword node, char *next_name, uword slot);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001071
1072/* As above but adds to end of node's next vector. */
1073always_inline uword
Dave Barach9b8ffd92016-07-08 08:13:45 -04001074vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name)
1075{
1076 return vlib_node_add_named_next_with_slot (vm, node, name, ~0);
1077}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001078
1079/* Query node given name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001080vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081
1082/* Rename a node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001083void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001084
1085/* Register new packet processing node. Nodes can be registered
1086 dynamically via this call or statically via the VLIB_REGISTER_NODE
1087 macro. */
1088u32 vlib_register_node (vlib_main_t * vm, vlib_node_registration_t * r);
1089
1090/* Register all static nodes registered via VLIB_REGISTER_NODE. */
1091void vlib_register_all_static_nodes (vlib_main_t * vm);
1092
1093/* Start a process. */
1094void vlib_start_process (vlib_main_t * vm, uword process_index);
1095
1096/* Sync up runtime and main node stats. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001097void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001098
1099/* Node graph initialization function. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001100clib_error_t *vlib_node_main_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101
1102format_function_t format_vlib_node_graph;
1103format_function_t format_vlib_node_name;
1104format_function_t format_vlib_next_node_name;
1105format_function_t format_vlib_node_and_next;
1106format_function_t format_vlib_cpu_time;
1107format_function_t format_vlib_time;
1108/* Parse node name -> node index. */
1109unformat_function_t unformat_vlib_node;
1110
Dave Barach9b8ffd92016-07-08 08:13:45 -04001111always_inline void
1112vlib_node_increment_counter (vlib_main_t * vm, u32 node_index,
1113 u32 counter_index, u64 increment)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001114{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001115 vlib_node_t *n = vlib_get_node (vm, node_index);
1116 vlib_error_main_t *em = &vm->error_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001117 u32 node_counter_base_index = n->error_heap_index;
1118 em->counters[node_counter_base_index + counter_index] += increment;
1119}
1120
1121#endif /* included_vlib_node_funcs_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001122
1123/*
1124 * fd.io coding-style-patch-verification: ON
1125 *
1126 * Local Variables:
1127 * eval: (c-set-style "gnu")
1128 * End:
1129 */