Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 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 Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 40 | /** \file |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 41 | vlib node functions |
| 42 | */ |
| 43 | |
| 44 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | #ifndef included_vlib_node_funcs_h |
| 46 | #define included_vlib_node_funcs_h |
| 47 | |
BenoƮt Ganne | 6531cf5 | 2022-09-30 17:13:33 +0200 | [diff] [blame] | 48 | #include <vppinfra/clib.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | #include <vppinfra/fifo.h> |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 50 | #include <vppinfra/tw_timer_1t_3w_1024sl_ov.h> |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 51 | #include <vppinfra/interrupt.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 53 | #ifdef CLIB_SANITIZE_ADDR |
| 54 | #include <sanitizer/asan_interface.h> |
| 55 | #endif |
| 56 | |
| 57 | static_always_inline void |
| 58 | vlib_process_start_switch_stack (vlib_main_t * vm, vlib_process_t * p) |
| 59 | { |
| 60 | #ifdef CLIB_SANITIZE_ADDR |
| 61 | void *stack = p ? (void *) p->stack : vlib_thread_stacks[vm->thread_index]; |
Xiaoming Jiang | 4646cd4 | 2022-12-10 03:44:16 +0000 | [diff] [blame] | 62 | u32 stack_bytes = |
| 63 | p ? (1ULL < p->log2_n_stack_bytes) : VLIB_THREAD_STACK_SIZE; |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 64 | __sanitizer_start_switch_fiber (&vm->asan_stack_save, stack, stack_bytes); |
| 65 | #endif |
| 66 | } |
| 67 | |
| 68 | static_always_inline void |
| 69 | vlib_process_finish_switch_stack (vlib_main_t * vm) |
| 70 | { |
| 71 | #ifdef CLIB_SANITIZE_ADDR |
| 72 | const void *bottom_old; |
| 73 | size_t size_old; |
| 74 | |
| 75 | __sanitizer_finish_switch_fiber (&vm->asan_stack_save, &bottom_old, |
| 76 | &size_old); |
| 77 | #endif |
| 78 | } |
| 79 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 80 | /** \brief Get vlib node by index. |
| 81 | @warning This function will ASSERT if @c i is out of range. |
| 82 | @param vm vlib_main_t pointer, varies by thread |
| 83 | @param i node index. |
| 84 | @return pointer to the requested vlib_node_t. |
| 85 | */ |
| 86 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | always_inline vlib_node_t * |
| 88 | vlib_get_node (vlib_main_t * vm, u32 i) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 89 | { |
| 90 | return vec_elt (vm->node_main.nodes, i); |
| 91 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 93 | /** \brief Get vlib node by graph arc (next) index. |
| 94 | @param vm vlib_main_t pointer, varies by thread |
| 95 | @param node_index index of original node |
| 96 | @param next_index graph arc index |
| 97 | @return pointer to the vlib_node_t at the end of the indicated arc |
| 98 | */ |
| 99 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | always_inline vlib_node_t * |
| 101 | vlib_get_next_node (vlib_main_t * vm, u32 node_index, u32 next_index) |
| 102 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 103 | vlib_node_main_t *nm = &vm->node_main; |
| 104 | vlib_node_t *n; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | |
| 106 | n = vec_elt (nm->nodes, node_index); |
| 107 | ASSERT (next_index < vec_len (n->next_nodes)); |
| 108 | return vlib_get_node (vm, n->next_nodes[next_index]); |
| 109 | } |
| 110 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 111 | /** \brief Get node runtime by node index. |
| 112 | @param vm vlib_main_t pointer, varies by thread |
| 113 | @param node_index index of node |
| 114 | @return pointer to the indicated vlib_node_runtime_t |
| 115 | */ |
| 116 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 117 | always_inline vlib_node_runtime_t * |
| 118 | vlib_node_get_runtime (vlib_main_t * vm, u32 node_index) |
| 119 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 120 | vlib_node_main_t *nm = &vm->node_main; |
| 121 | vlib_node_t *n = vec_elt (nm->nodes, node_index); |
| 122 | vlib_process_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | if (n->type != VLIB_NODE_TYPE_PROCESS) |
| 124 | return vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index); |
| 125 | else |
| 126 | { |
| 127 | p = vec_elt (nm->processes, n->runtime_index); |
| 128 | return &p->node_runtime; |
| 129 | } |
| 130 | } |
| 131 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 132 | /** \brief Get node runtime private data by node index. |
| 133 | @param vm vlib_main_t pointer, varies by thread |
| 134 | @param node_index index of the node |
| 135 | @return pointer to the indicated vlib_node_runtime_t private data |
| 136 | */ |
| 137 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 138 | always_inline void * |
| 139 | vlib_node_get_runtime_data (vlib_main_t * vm, u32 node_index) |
| 140 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 141 | vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | return r->runtime_data; |
| 143 | } |
| 144 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 145 | /** \brief Set node runtime private data. |
| 146 | @param vm vlib_main_t pointer, varies by thread |
| 147 | @param node_index index of the node |
| 148 | @param runtime_data arbitrary runtime private data |
| 149 | @param n_runtime_data_bytes size of runtime private data |
| 150 | */ |
| 151 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | always_inline void |
| 153 | vlib_node_set_runtime_data (vlib_main_t * vm, u32 node_index, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 154 | void *runtime_data, u32 n_runtime_data_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 155 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 156 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 157 | vlib_node_runtime_t *r = vlib_node_get_runtime (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | |
| 159 | n->runtime_data_bytes = n_runtime_data_bytes; |
| 160 | vec_free (n->runtime_data); |
| 161 | vec_add (n->runtime_data, runtime_data, n_runtime_data_bytes); |
| 162 | |
Damjan Marion | eb90b7f | 2016-11-01 01:26:01 +0100 | [diff] [blame] | 163 | ASSERT (vec_len (n->runtime_data) <= sizeof (vlib_node_runtime_t) - |
| 164 | STRUCT_OFFSET_OF (vlib_node_runtime_t, runtime_data)); |
| 165 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | if (vec_len (n->runtime_data) > 0) |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 167 | clib_memcpy_fast (r->runtime_data, n->runtime_data, |
| 168 | vec_len (n->runtime_data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 171 | /** \brief Set node dispatch state. |
| 172 | @param vm vlib_main_t pointer, varies by thread |
| 173 | @param node_index index of the node |
| 174 | @param new_state new state for node, see vlib_node_state_t |
| 175 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 177 | vlib_node_set_state (vlib_main_t * vm, u32 node_index, |
| 178 | vlib_node_state_t new_state) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 179 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 180 | vlib_node_main_t *nm = &vm->node_main; |
| 181 | vlib_node_t *n; |
| 182 | vlib_node_runtime_t *r; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 183 | |
| 184 | n = vec_elt (nm->nodes, node_index); |
| 185 | if (n->type == VLIB_NODE_TYPE_PROCESS) |
| 186 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 187 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 188 | r = &p->node_runtime; |
| 189 | |
| 190 | /* When disabling make sure flags are cleared. */ |
| 191 | p->flags &= ~(VLIB_PROCESS_RESUME_PENDING |
| 192 | | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK |
| 193 | | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT); |
| 194 | } |
| 195 | else |
| 196 | r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index); |
| 197 | |
| 198 | ASSERT (new_state < VLIB_N_NODE_STATE); |
| 199 | |
| 200 | if (n->type == VLIB_NODE_TYPE_INPUT) |
| 201 | { |
| 202 | ASSERT (nm->input_node_counts_by_state[n->state] > 0); |
| 203 | nm->input_node_counts_by_state[n->state] -= 1; |
| 204 | nm->input_node_counts_by_state[new_state] += 1; |
| 205 | } |
| 206 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 207 | if (PREDICT_FALSE (r->state == VLIB_NODE_STATE_DISABLED)) |
| 208 | vlib_node_runtime_perf_counter (vm, r, 0, 0, 0, |
| 209 | VLIB_NODE_RUNTIME_PERF_RESET); |
| 210 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | n->state = new_state; |
| 212 | r->state = new_state; |
| 213 | } |
| 214 | |
Damjan Marion | 153646e | 2017-04-05 18:15:45 +0200 | [diff] [blame] | 215 | /** \brief Get node dispatch state. |
| 216 | @param vm vlib_main_t pointer, varies by thread |
| 217 | @param node_index index of the node |
| 218 | @return state for node, see vlib_node_state_t |
| 219 | */ |
| 220 | always_inline vlib_node_state_t |
| 221 | vlib_node_get_state (vlib_main_t * vm, u32 node_index) |
| 222 | { |
| 223 | vlib_node_main_t *nm = &vm->node_main; |
| 224 | vlib_node_t *n; |
| 225 | n = vec_elt (nm->nodes, node_index); |
| 226 | return n->state; |
| 227 | } |
| 228 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | always_inline void |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 230 | vlib_node_set_flag (vlib_main_t *vm, u32 node_index, u16 flag, u8 enable) |
| 231 | { |
| 232 | vlib_node_runtime_t *r; |
| 233 | vlib_node_t *n; |
| 234 | |
| 235 | n = vlib_get_node (vm, node_index); |
| 236 | r = vlib_node_get_runtime (vm, node_index); |
| 237 | |
| 238 | if (enable) |
| 239 | { |
| 240 | n->flags |= flag; |
| 241 | r->flags |= flag; |
| 242 | } |
| 243 | else |
| 244 | { |
| 245 | n->flags &= ~flag; |
| 246 | r->flags &= ~flag; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | always_inline void |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 251 | vlib_node_set_interrupt_pending (vlib_main_t *vm, u32 node_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 253 | vlib_node_main_t *nm = &vm->node_main; |
| 254 | vlib_node_t *n = vec_elt (nm->nodes, node_index); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 255 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 256 | ASSERT (n->type == VLIB_NODE_TYPE_INPUT); |
Damjan Marion | 1033b49 | 2020-06-03 12:20:41 +0200 | [diff] [blame] | 257 | |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 258 | if (vm != vlib_get_main ()) |
| 259 | clib_interrupt_set_atomic (nm->interrupts, n->runtime_index); |
Damjan Marion | 1033b49 | 2020-06-03 12:20:41 +0200 | [diff] [blame] | 260 | else |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 261 | clib_interrupt_set (nm->interrupts, n->runtime_index); |
Damjan Marion | 1033b49 | 2020-06-03 12:20:41 +0200 | [diff] [blame] | 262 | |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 263 | __atomic_store_n (nm->pending_interrupts, 1, __ATOMIC_RELEASE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | always_inline vlib_process_t * |
| 267 | vlib_get_process_from_node (vlib_main_t * vm, vlib_node_t * node) |
| 268 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 269 | vlib_node_main_t *nm = &vm->node_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 270 | ASSERT (node->type == VLIB_NODE_TYPE_PROCESS); |
| 271 | return vec_elt (nm->processes, node->runtime_index); |
| 272 | } |
| 273 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 274 | always_inline vlib_frame_t * |
Andreas Schultz | 58b2eb1 | 2019-07-15 15:40:56 +0200 | [diff] [blame] | 275 | vlib_get_frame (vlib_main_t * vm, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | { |
Andreas Schultz | 58b2eb1 | 2019-07-15 15:40:56 +0200 | [diff] [blame] | 277 | ASSERT (f != NULL); |
Damjan Marion | 633b6fd | 2018-09-14 14:38:53 +0200 | [diff] [blame] | 278 | ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | return f; |
| 280 | } |
| 281 | |
Damjan Marion | 296988d | 2019-02-21 20:24:54 +0100 | [diff] [blame] | 282 | always_inline void |
| 283 | vlib_frame_no_append (vlib_frame_t * f) |
| 284 | { |
| 285 | f->frame_flags |= VLIB_FRAME_NO_APPEND; |
| 286 | } |
| 287 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 288 | /** \brief Get pointer to frame vector data. |
| 289 | @param f vlib_frame_t pointer |
| 290 | @return pointer to first vector element in frame |
| 291 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | always_inline void * |
| 293 | vlib_frame_vector_args (vlib_frame_t * f) |
| 294 | { |
Damjan Marion | b32bd70 | 2021-12-23 17:05:02 +0100 | [diff] [blame] | 295 | ASSERT (f->vector_offset); |
| 296 | return (void *) f + f->vector_offset; |
| 297 | } |
| 298 | |
| 299 | /** \brief Get pointer to frame vector aux data. |
| 300 | @param f vlib_frame_t pointer |
| 301 | @return pointer to first vector aux data element in frame |
| 302 | */ |
| 303 | always_inline void * |
| 304 | vlib_frame_aux_args (vlib_frame_t *f) |
| 305 | { |
| 306 | ASSERT (f->aux_offset); |
| 307 | return (void *) f + f->aux_offset; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 310 | /** \brief Get pointer to frame scalar data. |
| 311 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 312 | @param f vlib_frame_t pointer |
| 313 | |
| 314 | @return arbitrary node scalar data |
| 315 | |
| 316 | @sa vlib_frame_vector_args |
| 317 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | always_inline void * |
Damjan Marion | a3d5986 | 2018-11-10 10:23:00 +0100 | [diff] [blame] | 319 | vlib_frame_scalar_args (vlib_frame_t * f) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 320 | { |
Damjan Marion | b32bd70 | 2021-12-23 17:05:02 +0100 | [diff] [blame] | 321 | ASSERT (f->scalar_offset); |
| 322 | return (void *) f + f->scalar_offset; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 323 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | |
| 325 | always_inline vlib_next_frame_t * |
| 326 | vlib_node_runtime_get_next_frame (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 327 | vlib_node_runtime_t * n, u32 next_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 328 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 329 | vlib_node_main_t *nm = &vm->node_main; |
| 330 | vlib_next_frame_t *nf; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 331 | |
| 332 | ASSERT (next_index < n->n_next_nodes); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 333 | nf = vec_elt_at_index (nm->next_frames, n->next_frame_index + next_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 334 | |
| 335 | if (CLIB_DEBUG > 0) |
| 336 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 337 | vlib_node_t *node, *next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 338 | node = vec_elt (nm->nodes, n->node_index); |
| 339 | next = vec_elt (nm->nodes, node->next_nodes[next_index]); |
| 340 | ASSERT (nf->node_runtime_index == next->runtime_index); |
| 341 | } |
| 342 | |
| 343 | return nf; |
| 344 | } |
| 345 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 346 | /** \brief Get pointer to frame by (@c node_index, @c next_index). |
| 347 | |
| 348 | @warning This is not a function that you should call directly. |
| 349 | See @ref vlib_get_next_frame instead. |
| 350 | |
| 351 | @param vm vlib_main_t pointer, varies by thread |
| 352 | @param node_index index of the node |
| 353 | @param next_index graph arc index |
| 354 | |
| 355 | @return pointer to the requested vlib_next_frame_t |
| 356 | |
| 357 | @sa vlib_get_next_frame |
| 358 | */ |
| 359 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 360 | always_inline vlib_next_frame_t * |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 361 | vlib_node_get_next_frame (vlib_main_t * vm, u32 node_index, u32 next_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 363 | vlib_node_main_t *nm = &vm->node_main; |
| 364 | vlib_node_t *n; |
| 365 | vlib_node_runtime_t *r; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 366 | |
| 367 | n = vec_elt (nm->nodes, node_index); |
| 368 | r = vec_elt_at_index (nm->nodes_by_type[n->type], n->runtime_index); |
| 369 | return vlib_node_runtime_get_next_frame (vm, r, next_index); |
| 370 | } |
| 371 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 372 | vlib_frame_t *vlib_get_next_frame_internal (vlib_main_t * vm, |
| 373 | vlib_node_runtime_t * node, |
| 374 | u32 next_index, |
| 375 | u32 alloc_new_frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | |
Mohammed Hawari | cd758e6 | 2022-05-31 18:11:05 +0200 | [diff] [blame] | 377 | #define vlib_get_next_frame_macro(vm, node, next_index, vectors, \ |
| 378 | n_vectors_left, alloc_new_frame) \ |
| 379 | do \ |
| 380 | { \ |
| 381 | vlib_frame_t *_f = vlib_get_next_frame_internal ( \ |
| 382 | (vm), (node), (next_index), (alloc_new_frame)); \ |
| 383 | u32 _n = _f->n_vectors; \ |
| 384 | (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \ |
| 385 | (n_vectors_left) = VLIB_FRAME_SIZE - _n; \ |
| 386 | } \ |
| 387 | while (0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 388 | |
Mohammed Hawari | cd758e6 | 2022-05-31 18:11:05 +0200 | [diff] [blame] | 389 | #define vlib_get_next_frame_macro_with_aux(vm, node, next_index, vectors, \ |
| 390 | n_vectors_left, alloc_new_frame, \ |
| 391 | aux_data, maybe_no_aux) \ |
| 392 | do \ |
| 393 | { \ |
| 394 | vlib_frame_t *_f = vlib_get_next_frame_internal ( \ |
| 395 | (vm), (node), (next_index), (alloc_new_frame)); \ |
| 396 | u32 _n = _f->n_vectors; \ |
| 397 | (vectors) = vlib_frame_vector_args (_f) + _n * sizeof ((vectors)[0]); \ |
| 398 | if ((maybe_no_aux) && (_f)->aux_offset == 0) \ |
| 399 | (aux_data) = NULL; \ |
| 400 | else \ |
| 401 | (aux_data) = vlib_frame_aux_args (_f) + _n * sizeof ((aux_data)[0]); \ |
| 402 | (n_vectors_left) = VLIB_FRAME_SIZE - _n; \ |
| 403 | } \ |
| 404 | while (0) |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 405 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 406 | /** \brief Get pointer to next frame vector data by |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 407 | (@c vlib_node_runtime_t, @c next_index). |
| 408 | Standard single/dual loop boilerplate element. |
| 409 | @attention This is a MACRO, with SIDE EFFECTS. |
| 410 | |
| 411 | @param vm vlib_main_t pointer, varies by thread |
| 412 | @param node current node vlib_node_runtime_t pointer |
| 413 | @param next_index requested graph arc index |
| 414 | |
| 415 | @return @c vectors -- pointer to next available vector slot |
| 416 | @return @c n_vectors_left -- number of vector slots available |
| 417 | */ |
Mohammed Hawari | cd758e6 | 2022-05-31 18:11:05 +0200 | [diff] [blame] | 418 | #define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left) \ |
| 419 | vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 420 | /* alloc new frame */ 0) |
| 421 | |
Mohammed Hawari | cd758e6 | 2022-05-31 18:11:05 +0200 | [diff] [blame] | 422 | #define vlib_get_new_next_frame(vm, node, next_index, vectors, \ |
| 423 | n_vectors_left) \ |
| 424 | vlib_get_next_frame_macro (vm, node, next_index, vectors, n_vectors_left, \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 425 | /* alloc new frame */ 1) |
| 426 | |
Mohammed Hawari | cd758e6 | 2022-05-31 18:11:05 +0200 | [diff] [blame] | 427 | /** \brief Get pointer to next frame vector data and next frame aux data by |
| 428 | (@c vlib_node_runtime_t, @c next_index). |
| 429 | Standard single/dual loop boilerplate element. |
| 430 | @attention This is a MACRO, with SIDE EFFECTS. |
| 431 | @attention This MACRO is unsafe in case the next node does not support |
| 432 | aux_data |
| 433 | |
| 434 | @param vm vlib_main_t pointer, varies by thread |
| 435 | @param node current node vlib_node_runtime_t pointer |
| 436 | @param next_index requested graph arc index |
| 437 | |
| 438 | @return @c vectors -- pointer to next available vector slot |
| 439 | @return @c aux_data -- pointer to next available aux data slot |
| 440 | @return @c n_vectors_left -- number of vector slots available |
| 441 | */ |
| 442 | #define vlib_get_next_frame_with_aux(vm, node, next_index, vectors, aux_data, \ |
| 443 | n_vectors_left) \ |
| 444 | vlib_get_next_frame_macro_with_aux ( \ |
| 445 | vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \ |
| 446 | aux_data, /* maybe_no_aux */ 0) |
| 447 | |
| 448 | #define vlib_get_new_next_frame_with_aux(vm, node, next_index, vectors, \ |
| 449 | aux_data, n_vectors_left) \ |
| 450 | vlib_get_next_frame_macro_with_aux ( \ |
| 451 | vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \ |
| 452 | aux_data, /* maybe_no_aux */ 0) |
| 453 | |
| 454 | /** \brief Get pointer to next frame vector data and next frame aux data by |
| 455 | (@c vlib_node_runtime_t, @c next_index). |
| 456 | Standard single/dual loop boilerplate element. |
| 457 | @attention This is a MACRO, with SIDE EFFECTS. |
| 458 | @attention This MACRO is safe in case the next node does not support aux_data. |
| 459 | In that case aux_data is set to NULL. |
| 460 | |
| 461 | @param vm vlib_main_t pointer, varies by thread |
| 462 | @param node current node vlib_node_runtime_t pointer |
| 463 | @param next_index requested graph arc index |
| 464 | |
| 465 | @return @c vectors -- pointer to next available vector slot |
| 466 | @return @c aux_data -- pointer to next available aux data slot |
| 467 | @return @c n_vectors_left -- number of vector slots available |
| 468 | */ |
| 469 | #define vlib_get_next_frame_with_aux_safe(vm, node, next_index, vectors, \ |
| 470 | aux_data, n_vectors_left) \ |
| 471 | vlib_get_next_frame_macro_with_aux ( \ |
| 472 | vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 0, \ |
| 473 | aux_data, /* maybe_no_aux */ 1) |
| 474 | |
| 475 | #define vlib_get_new_next_frame_with_aux_safe(vm, node, next_index, vectors, \ |
| 476 | aux_data, n_vectors_left) \ |
| 477 | vlib_get_next_frame_macro_with_aux ( \ |
| 478 | vm, node, next_index, vectors, n_vectors_left, /* alloc new frame */ 1, \ |
| 479 | aux_data, /* maybe_no_aux */ 1) |
| 480 | |
Dave Barach | 9770e20 | 2016-07-06 10:29:27 -0400 | [diff] [blame] | 481 | /** \brief Release pointer to next frame vector data. |
| 482 | Standard single/dual loop boilerplate element. |
| 483 | @param vm vlib_main_t pointer, varies by thread |
| 484 | @param r current node vlib_node_runtime_t pointer |
| 485 | @param next_index graph arc index |
| 486 | @param n_packets_left number of slots still available in vector |
| 487 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 488 | void |
| 489 | vlib_put_next_frame (vlib_main_t * vm, |
| 490 | vlib_node_runtime_t * r, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 491 | u32 next_index, u32 n_packets_left); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 492 | |
| 493 | /* Combination get plus put. Returns vector argument just added. */ |
| 494 | #define vlib_set_next_frame(vm,node,next_index,v) \ |
| 495 | ({ \ |
| 496 | uword _n_left; \ |
| 497 | vlib_get_next_frame ((vm), (node), (next_index), (v), _n_left); \ |
| 498 | ASSERT (_n_left > 0); \ |
| 499 | vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \ |
| 500 | (v); \ |
| 501 | }) |
| 502 | |
Mohammed Hawari | 1605248 | 2022-06-02 13:55:36 +0200 | [diff] [blame] | 503 | #define vlib_set_next_frame_with_aux_safe(vm, node, next_index, v, aux) \ |
| 504 | ({ \ |
| 505 | uword _n_left; \ |
| 506 | vlib_get_next_frame_with_aux_safe ((vm), (node), (next_index), (v), \ |
| 507 | (aux), _n_left); \ |
| 508 | ASSERT (_n_left > 0); \ |
| 509 | vlib_put_next_frame ((vm), (node), (next_index), _n_left - 1); \ |
| 510 | (v); \ |
| 511 | }) |
| 512 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 513 | always_inline void |
| 514 | vlib_set_next_frame_buffer (vlib_main_t * vm, |
| 515 | vlib_node_runtime_t * node, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 516 | u32 next_index, u32 buffer_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 517 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 518 | u32 *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 519 | p = vlib_set_next_frame (vm, node, next_index, p); |
| 520 | p[0] = buffer_index; |
| 521 | } |
| 522 | |
Mohammed Hawari | 1605248 | 2022-06-02 13:55:36 +0200 | [diff] [blame] | 523 | always_inline void |
| 524 | vlib_set_next_frame_buffer_with_aux_safe (vlib_main_t *vm, |
| 525 | vlib_node_runtime_t *node, |
| 526 | u32 next_index, u32 buffer_index, |
| 527 | u32 aux) |
| 528 | { |
| 529 | u32 *p; |
| 530 | u32 *a; |
| 531 | p = vlib_set_next_frame_with_aux_safe (vm, node, next_index, p, a); |
| 532 | p[0] = buffer_index; |
| 533 | if (a) |
| 534 | a[0] = aux; |
| 535 | } |
| 536 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 537 | vlib_frame_t *vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index); |
| 538 | void vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, |
| 539 | vlib_frame_t * f); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 540 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 541 | always_inline uword |
| 542 | vlib_in_process_context (vlib_main_t * vm) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 543 | { |
| 544 | return vm->node_main.current_process_index != ~0; |
| 545 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 546 | |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 547 | always_inline vlib_process_t * |
| 548 | vlib_get_current_process (vlib_main_t * vm) |
| 549 | { |
| 550 | vlib_node_main_t *nm = &vm->node_main; |
| 551 | if (vlib_in_process_context (vm)) |
| 552 | return vec_elt (nm->processes, nm->current_process_index); |
| 553 | return 0; |
| 554 | } |
| 555 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 556 | always_inline uword |
| 557 | vlib_current_process (vlib_main_t * vm) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 558 | { |
| 559 | return vlib_get_current_process (vm)->node_runtime.node_index; |
| 560 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 561 | |
Damjan Marion | 698eeb1 | 2020-09-11 14:11:11 +0200 | [diff] [blame] | 562 | always_inline u32 |
| 563 | vlib_get_current_process_node_index (vlib_main_t * vm) |
| 564 | { |
| 565 | vlib_process_t *process = vlib_get_current_process (vm); |
| 566 | return process->node_runtime.node_index; |
| 567 | } |
| 568 | |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 569 | /** Returns TRUE if a process suspend time is less than 10us |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 570 | @param dt - remaining poll time in seconds |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 571 | @returns 1 if dt < 10e-6, 0 otherwise |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 572 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 573 | always_inline uword |
| 574 | vlib_process_suspend_time_is_zero (f64 dt) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 575 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 576 | return dt < 10e-6; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 577 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 578 | |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 579 | /** Suspend a vlib cooperative multi-tasking thread for a period of time |
| 580 | @param vm - vlib_main_t * |
| 581 | @param dt - suspend interval in seconds |
| 582 | @returns VLIB_PROCESS_RESUME_LONGJMP_RESUME, routinely ignored |
| 583 | */ |
| 584 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 585 | always_inline uword |
| 586 | vlib_process_suspend (vlib_main_t * vm, f64 dt) |
| 587 | { |
| 588 | uword r; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 589 | vlib_node_main_t *nm = &vm->node_main; |
| 590 | vlib_process_t *p = vec_elt (nm->processes, nm->current_process_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 591 | |
| 592 | if (vlib_process_suspend_time_is_zero (dt)) |
| 593 | return VLIB_PROCESS_RESUME_LONGJMP_RESUME; |
| 594 | |
| 595 | p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK; |
| 596 | r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND); |
| 597 | if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND) |
| 598 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 599 | /* expiration time in 10us ticks */ |
| 600 | p->resume_clock_interval = dt * 1e5; |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 601 | vlib_process_start_switch_stack (vm, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 602 | clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND); |
| 603 | } |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 604 | else |
| 605 | vlib_process_finish_switch_stack (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | |
| 607 | return r; |
| 608 | } |
| 609 | |
| 610 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 611 | vlib_process_free_event_type (vlib_process_t * p, uword t, |
| 612 | uword is_one_time_event) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 613 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 614 | ASSERT (!pool_is_free_index (p->event_type_pool, t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 615 | pool_put_index (p->event_type_pool, t); |
| 616 | if (is_one_time_event) |
| 617 | p->one_time_event_type_bitmap = |
| 618 | clib_bitmap_andnoti (p->one_time_event_type_bitmap, t); |
| 619 | } |
| 620 | |
| 621 | always_inline void |
| 622 | vlib_process_maybe_free_event_type (vlib_process_t * p, uword t) |
| 623 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 624 | ASSERT (!pool_is_free_index (p->event_type_pool, t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 625 | if (clib_bitmap_get (p->one_time_event_type_bitmap, t)) |
| 626 | vlib_process_free_event_type (p, t, /* is_one_time_event */ 1); |
| 627 | } |
| 628 | |
| 629 | always_inline void * |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 630 | vlib_process_get_event_data (vlib_main_t * vm, |
| 631 | uword * return_event_type_opaque) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 632 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 633 | vlib_node_main_t *nm = &vm->node_main; |
| 634 | vlib_process_t *p; |
| 635 | vlib_process_event_type_t *et; |
Gabriel Ganne | 71d73fe | 2017-02-04 10:51:04 +0100 | [diff] [blame] | 636 | uword t; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 637 | void *event_data_vector; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 638 | |
| 639 | p = vec_elt (nm->processes, nm->current_process_index); |
| 640 | |
| 641 | /* Find first type with events ready. |
| 642 | Return invalid type when there's nothing there. */ |
| 643 | t = clib_bitmap_first_set (p->non_empty_event_type_bitmap); |
| 644 | if (t == ~0) |
| 645 | return 0; |
| 646 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 647 | p->non_empty_event_type_bitmap = |
| 648 | clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 649 | |
Gabriel Ganne | 71d73fe | 2017-02-04 10:51:04 +0100 | [diff] [blame] | 650 | ASSERT (_vec_len (p->pending_event_data_by_type_index[t]) > 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 651 | event_data_vector = p->pending_event_data_by_type_index[t]; |
| 652 | p->pending_event_data_by_type_index[t] = 0; |
| 653 | |
| 654 | et = pool_elt_at_index (p->event_type_pool, t); |
| 655 | |
| 656 | /* Return user's opaque value and possibly index. */ |
| 657 | *return_event_type_opaque = et->opaque; |
| 658 | |
| 659 | vlib_process_maybe_free_event_type (p, t); |
| 660 | |
| 661 | return event_data_vector; |
| 662 | } |
| 663 | |
| 664 | /* Return event data vector for later reuse. We reuse event data to avoid |
| 665 | repeatedly allocating event vectors in cases where we care about speed. */ |
| 666 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 667 | vlib_process_put_event_data (vlib_main_t * vm, void *event_data) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 668 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 669 | vlib_node_main_t *nm = &vm->node_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 670 | vec_add1 (nm->recycled_event_data_vectors, event_data); |
| 671 | } |
| 672 | |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 673 | /** Return the first event type which has occurred and a vector of per-event |
| 674 | data of that type, or a timeout indication |
| 675 | |
| 676 | @param vm - vlib_main_t pointer |
| 677 | @param data_vector - pointer to a (uword *) vector to receive event data |
| 678 | @returns either an event type and a vector of per-event instance data, |
| 679 | or ~0 to indicate a timeout. |
| 680 | */ |
| 681 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 682 | always_inline uword |
| 683 | vlib_process_get_events (vlib_main_t * vm, uword ** data_vector) |
| 684 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 685 | vlib_node_main_t *nm = &vm->node_main; |
| 686 | vlib_process_t *p; |
| 687 | vlib_process_event_type_t *et; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 688 | uword r, t, l; |
| 689 | |
| 690 | p = vec_elt (nm->processes, nm->current_process_index); |
| 691 | |
| 692 | /* Find first type with events ready. |
| 693 | Return invalid type when there's nothing there. */ |
| 694 | t = clib_bitmap_first_set (p->non_empty_event_type_bitmap); |
| 695 | if (t == ~0) |
| 696 | return t; |
| 697 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 698 | p->non_empty_event_type_bitmap = |
| 699 | clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 700 | |
| 701 | l = _vec_len (p->pending_event_data_by_type_index[t]); |
| 702 | if (data_vector) |
| 703 | vec_add (*data_vector, p->pending_event_data_by_type_index[t], l); |
Damjan Marion | 8bea589 | 2022-04-04 22:40:45 +0200 | [diff] [blame] | 704 | vec_set_len (p->pending_event_data_by_type_index[t], 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 705 | |
| 706 | et = pool_elt_at_index (p->event_type_pool, t); |
| 707 | |
| 708 | /* Return user's opaque value. */ |
| 709 | r = et->opaque; |
| 710 | |
| 711 | vlib_process_maybe_free_event_type (p, t); |
| 712 | |
| 713 | return r; |
| 714 | } |
| 715 | |
| 716 | always_inline uword |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 717 | vlib_process_get_events_helper (vlib_process_t * p, uword t, |
| 718 | uword ** data_vector) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 719 | { |
| 720 | uword l; |
| 721 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 722 | p->non_empty_event_type_bitmap = |
| 723 | clib_bitmap_andnoti (p->non_empty_event_type_bitmap, t); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 724 | |
| 725 | l = _vec_len (p->pending_event_data_by_type_index[t]); |
| 726 | if (data_vector) |
| 727 | vec_add (*data_vector, p->pending_event_data_by_type_index[t], l); |
Damjan Marion | 8bea589 | 2022-04-04 22:40:45 +0200 | [diff] [blame] | 728 | vec_set_len (p->pending_event_data_by_type_index[t], 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 729 | |
| 730 | vlib_process_maybe_free_event_type (p, t); |
| 731 | |
| 732 | return l; |
| 733 | } |
| 734 | |
| 735 | /* As above but query as specified type of event. Returns number of |
| 736 | events found. */ |
| 737 | always_inline uword |
| 738 | vlib_process_get_events_with_type (vlib_main_t * vm, uword ** data_vector, |
| 739 | uword with_type_opaque) |
| 740 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 741 | vlib_node_main_t *nm = &vm->node_main; |
| 742 | vlib_process_t *p; |
| 743 | uword t, *h; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 744 | |
| 745 | p = vec_elt (nm->processes, nm->current_process_index); |
| 746 | h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 747 | if (!h) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 748 | /* This can happen when an event has not yet been |
| 749 | signaled with given opaque type. */ |
| 750 | return 0; |
| 751 | |
| 752 | t = h[0]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 753 | if (!clib_bitmap_get (p->non_empty_event_type_bitmap, t)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 754 | return 0; |
| 755 | |
| 756 | return vlib_process_get_events_helper (p, t, data_vector); |
| 757 | } |
| 758 | |
| 759 | always_inline uword * |
| 760 | vlib_process_wait_for_event (vlib_main_t * vm) |
| 761 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 762 | vlib_node_main_t *nm = &vm->node_main; |
| 763 | vlib_process_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 764 | uword r; |
| 765 | |
| 766 | p = vec_elt (nm->processes, nm->current_process_index); |
| 767 | if (clib_bitmap_is_zero (p->non_empty_event_type_bitmap)) |
| 768 | { |
| 769 | p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 770 | r = |
| 771 | clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 772 | if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND) |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 773 | { |
| 774 | vlib_process_start_switch_stack (vm, 0); |
| 775 | clib_longjmp (&p->return_longjmp, |
| 776 | VLIB_PROCESS_RETURN_LONGJMP_SUSPEND); |
| 777 | } |
| 778 | else |
| 779 | vlib_process_finish_switch_stack (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | return p->non_empty_event_type_bitmap; |
| 783 | } |
| 784 | |
| 785 | always_inline uword |
| 786 | vlib_process_wait_for_one_time_event (vlib_main_t * vm, |
| 787 | uword ** data_vector, |
| 788 | uword with_type_index) |
| 789 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 790 | vlib_node_main_t *nm = &vm->node_main; |
| 791 | vlib_process_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 792 | uword r; |
| 793 | |
| 794 | p = vec_elt (nm->processes, nm->current_process_index); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 795 | ASSERT (!pool_is_free_index (p->event_type_pool, with_type_index)); |
| 796 | while (!clib_bitmap_get (p->non_empty_event_type_bitmap, with_type_index)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 797 | { |
| 798 | p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 799 | r = |
| 800 | clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 801 | if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND) |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 802 | { |
| 803 | vlib_process_start_switch_stack (vm, 0); |
| 804 | clib_longjmp (&p->return_longjmp, |
| 805 | VLIB_PROCESS_RETURN_LONGJMP_SUSPEND); |
| 806 | } |
| 807 | else |
| 808 | vlib_process_finish_switch_stack (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | return vlib_process_get_events_helper (p, with_type_index, data_vector); |
| 812 | } |
| 813 | |
| 814 | always_inline uword |
| 815 | vlib_process_wait_for_event_with_type (vlib_main_t * vm, |
| 816 | uword ** data_vector, |
| 817 | uword with_type_opaque) |
| 818 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 819 | vlib_node_main_t *nm = &vm->node_main; |
| 820 | vlib_process_t *p; |
| 821 | uword r, *h; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 822 | |
| 823 | p = vec_elt (nm->processes, nm->current_process_index); |
| 824 | h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 825 | while (!h || !clib_bitmap_get (p->non_empty_event_type_bitmap, h[0])) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 826 | { |
| 827 | p->flags |= VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 828 | r = |
| 829 | clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 830 | if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND) |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 831 | { |
| 832 | vlib_process_start_switch_stack (vm, 0); |
| 833 | clib_longjmp (&p->return_longjmp, |
| 834 | VLIB_PROCESS_RETURN_LONGJMP_SUSPEND); |
| 835 | } |
| 836 | else |
| 837 | vlib_process_finish_switch_stack (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 838 | |
| 839 | /* See if unknown event type has been signaled now. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 840 | if (!h) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 841 | h = hash_get (p->event_type_index_by_type_opaque, with_type_opaque); |
| 842 | } |
| 843 | |
| 844 | return vlib_process_get_events_helper (p, h[0], data_vector); |
| 845 | } |
| 846 | |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 847 | /** Suspend a cooperative multi-tasking thread |
| 848 | Waits for an event, or for the indicated number of seconds to elapse |
| 849 | @param vm - vlib_main_t pointer |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 850 | @param dt - timeout, in seconds. |
Dave Barach | 2ab470a | 2016-08-10 18:38:36 -0400 | [diff] [blame] | 851 | @returns the remaining time interval |
| 852 | */ |
| 853 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 854 | always_inline f64 |
| 855 | vlib_process_wait_for_event_or_clock (vlib_main_t * vm, f64 dt) |
| 856 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 857 | vlib_node_main_t *nm = &vm->node_main; |
| 858 | vlib_process_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 859 | f64 wakeup_time; |
| 860 | uword r; |
| 861 | |
| 862 | p = vec_elt (nm->processes, nm->current_process_index); |
| 863 | |
| 864 | if (vlib_process_suspend_time_is_zero (dt) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 865 | || !clib_bitmap_is_zero (p->non_empty_event_type_bitmap)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 866 | return dt; |
| 867 | |
| 868 | wakeup_time = vlib_time_now (vm) + dt; |
| 869 | |
| 870 | /* Suspend waiting for both clock and event to occur. */ |
| 871 | p->flags |= (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT |
| 872 | | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK); |
| 873 | |
| 874 | r = clib_setjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_SUSPEND); |
| 875 | if (r == VLIB_PROCESS_RESUME_LONGJMP_SUSPEND) |
| 876 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 877 | p->resume_clock_interval = dt * 1e5; |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 878 | vlib_process_start_switch_stack (vm, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 879 | clib_longjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_SUSPEND); |
| 880 | } |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 881 | else |
| 882 | vlib_process_finish_switch_stack (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 883 | |
| 884 | /* Return amount of time still left to sleep. |
| 885 | If <= 0 then we've been waken up by the clock (and not an event). */ |
| 886 | return wakeup_time - vlib_time_now (vm); |
| 887 | } |
| 888 | |
| 889 | always_inline vlib_process_event_type_t * |
| 890 | vlib_process_new_event_type (vlib_process_t * p, uword with_type_opaque) |
| 891 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 892 | vlib_process_event_type_t *et; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 893 | pool_get (p->event_type_pool, et); |
| 894 | et->opaque = with_type_opaque; |
| 895 | return et; |
| 896 | } |
| 897 | |
| 898 | always_inline uword |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 899 | vlib_process_create_one_time_event (vlib_main_t * vm, uword node_index, |
| 900 | uword with_type_opaque) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 901 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 902 | vlib_node_main_t *nm = &vm->node_main; |
| 903 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 904 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
| 905 | vlib_process_event_type_t *et; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 906 | uword t; |
| 907 | |
| 908 | et = vlib_process_new_event_type (p, with_type_opaque); |
| 909 | t = et - p->event_type_pool; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 910 | p->one_time_event_type_bitmap = |
| 911 | clib_bitmap_ori (p->one_time_event_type_bitmap, t); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 912 | return t; |
| 913 | } |
| 914 | |
| 915 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 916 | vlib_process_delete_one_time_event (vlib_main_t * vm, uword node_index, |
| 917 | uword t) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 918 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 919 | vlib_node_main_t *nm = &vm->node_main; |
| 920 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 921 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 922 | |
| 923 | ASSERT (clib_bitmap_get (p->one_time_event_type_bitmap, t)); |
| 924 | vlib_process_free_event_type (p, t, /* is_one_time_event */ 1); |
| 925 | } |
| 926 | |
| 927 | always_inline void * |
| 928 | vlib_process_signal_event_helper (vlib_node_main_t * nm, |
| 929 | vlib_node_t * n, |
| 930 | vlib_process_t * p, |
| 931 | uword t, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 932 | uword n_data_elts, uword n_data_elt_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 933 | { |
| 934 | uword p_flags, add_to_pending, delete_from_wheel; |
Damjan Marion | d24b86e | 2022-03-23 16:59:23 +0100 | [diff] [blame] | 935 | u8 *data_to_be_written_by_caller; |
Damjan Marion | e4fa1d2 | 2022-04-11 18:41:49 +0200 | [diff] [blame] | 936 | vec_attr_t va = { .elt_sz = n_data_elt_bytes }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 937 | |
Dave Barach | 1403fcd | 2018-02-05 09:45:43 -0500 | [diff] [blame] | 938 | ASSERT (n->type == VLIB_NODE_TYPE_PROCESS); |
| 939 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 940 | ASSERT (!pool_is_free_index (p->event_type_pool, t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 941 | |
| 942 | vec_validate (p->pending_event_data_by_type_index, t); |
| 943 | |
| 944 | /* Resize data vector and return caller's data to be written. */ |
| 945 | { |
Damjan Marion | d24b86e | 2022-03-23 16:59:23 +0100 | [diff] [blame] | 946 | u8 *data_vec = p->pending_event_data_by_type_index[t]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 947 | uword l; |
| 948 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 949 | if (!data_vec && vec_len (nm->recycled_event_data_vectors)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 950 | { |
| 951 | data_vec = vec_pop (nm->recycled_event_data_vectors); |
fangtong | 33b18d4 | 2021-07-24 14:55:02 +0800 | [diff] [blame] | 952 | vec_reset_length (data_vec); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | l = vec_len (data_vec); |
| 956 | |
Damjan Marion | e4fa1d2 | 2022-04-11 18:41:49 +0200 | [diff] [blame] | 957 | data_vec = _vec_realloc_internal (data_vec, l + n_data_elts, &va); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 958 | |
| 959 | p->pending_event_data_by_type_index[t] = data_vec; |
| 960 | data_to_be_written_by_caller = data_vec + l * n_data_elt_bytes; |
| 961 | } |
| 962 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 963 | p->non_empty_event_type_bitmap = |
| 964 | clib_bitmap_ori (p->non_empty_event_type_bitmap, t); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 965 | |
| 966 | p_flags = p->flags; |
| 967 | |
| 968 | /* Event was already signalled? */ |
| 969 | add_to_pending = (p_flags & VLIB_PROCESS_RESUME_PENDING) == 0; |
| 970 | |
| 971 | /* Process will resume when suspend time elapses? */ |
| 972 | delete_from_wheel = 0; |
| 973 | if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK) |
| 974 | { |
| 975 | /* Waiting for both event and clock? */ |
| 976 | if (p_flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT) |
Florin Coras | 40f9246 | 2018-08-01 16:25:45 -0700 | [diff] [blame] | 977 | { |
| 978 | if (!TW (tw_timer_handle_is_free) |
| 979 | ((TWT (tw_timer_wheel) *) nm->timing_wheel, |
| 980 | p->stop_timer_handle)) |
| 981 | delete_from_wheel = 1; |
| 982 | else |
| 983 | /* timer just popped so process should already be on the list */ |
| 984 | add_to_pending = 0; |
| 985 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 986 | else |
| 987 | /* Waiting only for clock. Event will be queue and may be |
| 988 | handled when timer expires. */ |
| 989 | add_to_pending = 0; |
| 990 | } |
| 991 | |
| 992 | /* Never add current process to pending vector since current process is |
| 993 | already running. */ |
| 994 | add_to_pending &= nm->current_process_index != n->runtime_index; |
| 995 | |
| 996 | if (add_to_pending) |
| 997 | { |
| 998 | u32 x = vlib_timing_wheel_data_set_suspended_process (n->runtime_index); |
| 999 | p->flags = p_flags | VLIB_PROCESS_RESUME_PENDING; |
| 1000 | vec_add1 (nm->data_from_advancing_timing_wheel, x); |
| 1001 | if (delete_from_wheel) |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 1002 | TW (tw_timer_stop) ((TWT (tw_timer_wheel) *) nm->timing_wheel, |
| 1003 | p->stop_timer_handle); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | return data_to_be_written_by_caller; |
| 1007 | } |
| 1008 | |
| 1009 | always_inline void * |
| 1010 | vlib_process_signal_event_data (vlib_main_t * vm, |
| 1011 | uword node_index, |
| 1012 | uword type_opaque, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1013 | uword n_data_elts, uword n_data_elt_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1014 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1015 | vlib_node_main_t *nm = &vm->node_main; |
| 1016 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 1017 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
| 1018 | uword *h, t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1019 | |
John Lo | 609707e | 2017-09-19 21:45:10 -0400 | [diff] [blame] | 1020 | /* Must be in main thread */ |
| 1021 | ASSERT (vlib_get_thread_index () == 0); |
| 1022 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1023 | h = hash_get (p->event_type_index_by_type_opaque, type_opaque); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1024 | if (!h) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1025 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1026 | vlib_process_event_type_t *et = |
| 1027 | vlib_process_new_event_type (p, type_opaque); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1028 | t = et - p->event_type_pool; |
| 1029 | hash_set (p->event_type_index_by_type_opaque, type_opaque, t); |
| 1030 | } |
| 1031 | else |
| 1032 | t = h[0]; |
| 1033 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1034 | return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts, |
| 1035 | n_data_elt_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | always_inline void * |
| 1039 | vlib_process_signal_event_at_time (vlib_main_t * vm, |
| 1040 | f64 dt, |
| 1041 | uword node_index, |
| 1042 | uword type_opaque, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1043 | uword n_data_elts, uword n_data_elt_bytes) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1044 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1045 | vlib_node_main_t *nm = &vm->node_main; |
| 1046 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 1047 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
| 1048 | uword *h, t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1049 | |
| 1050 | h = hash_get (p->event_type_index_by_type_opaque, type_opaque); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1051 | if (!h) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1052 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1053 | vlib_process_event_type_t *et = |
| 1054 | vlib_process_new_event_type (p, type_opaque); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1055 | t = et - p->event_type_pool; |
| 1056 | hash_set (p->event_type_index_by_type_opaque, type_opaque, t); |
| 1057 | } |
| 1058 | else |
| 1059 | t = h[0]; |
| 1060 | |
| 1061 | if (vlib_process_suspend_time_is_zero (dt)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1062 | return vlib_process_signal_event_helper (nm, n, p, t, n_data_elts, |
| 1063 | n_data_elt_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1064 | else |
| 1065 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1066 | vlib_signal_timed_event_data_t *te; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1067 | |
| 1068 | pool_get_aligned (nm->signal_timed_event_data_pool, te, sizeof (te[0])); |
| 1069 | |
| 1070 | te->n_data_elts = n_data_elts; |
| 1071 | te->n_data_elt_bytes = n_data_elt_bytes; |
| 1072 | te->n_data_bytes = n_data_elts * n_data_elt_bytes; |
| 1073 | |
| 1074 | /* Assert that structure fields are big enough. */ |
| 1075 | ASSERT (te->n_data_elts == n_data_elts); |
| 1076 | ASSERT (te->n_data_elt_bytes == n_data_elt_bytes); |
| 1077 | ASSERT (te->n_data_bytes == n_data_elts * n_data_elt_bytes); |
| 1078 | |
| 1079 | te->process_node_index = n->runtime_index; |
| 1080 | te->event_type_index = t; |
| 1081 | |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 1082 | p->stop_timer_handle = |
| 1083 | TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel, |
| 1084 | vlib_timing_wheel_data_set_timed_event |
| 1085 | (te - nm->signal_timed_event_data_pool), |
| 1086 | 0 /* timer_id */ , |
| 1087 | (vlib_time_now (vm) + dt) * 1e5); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1088 | |
| 1089 | /* Inline data big enough to hold event? */ |
| 1090 | if (te->n_data_bytes < sizeof (te->inline_event_data)) |
| 1091 | return te->inline_event_data; |
| 1092 | else |
| 1093 | { |
| 1094 | te->event_data_as_vector = 0; |
| 1095 | vec_resize (te->event_data_as_vector, te->n_data_bytes); |
| 1096 | return te->event_data_as_vector; |
| 1097 | } |
| 1098 | } |
| 1099 | } |
| 1100 | |
| 1101 | always_inline void * |
| 1102 | vlib_process_signal_one_time_event_data (vlib_main_t * vm, |
| 1103 | uword node_index, |
| 1104 | uword type_index, |
| 1105 | uword n_data_elts, |
| 1106 | uword n_data_elt_bytes) |
| 1107 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1108 | vlib_node_main_t *nm = &vm->node_main; |
| 1109 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 1110 | vlib_process_t *p = vec_elt (nm->processes, n->runtime_index); |
| 1111 | return vlib_process_signal_event_helper (nm, n, p, type_index, n_data_elts, |
| 1112 | n_data_elt_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1113 | } |
| 1114 | |
| 1115 | always_inline void |
| 1116 | vlib_process_signal_event (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1117 | uword node_index, uword type_opaque, uword data) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1118 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1119 | uword *d = vlib_process_signal_event_data (vm, node_index, type_opaque, |
| 1120 | 1 /* elts */ , sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1121 | d[0] = data; |
| 1122 | } |
| 1123 | |
| 1124 | always_inline void |
| 1125 | vlib_process_signal_event_pointer (vlib_main_t * vm, |
| 1126 | uword node_index, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1127 | uword type_opaque, void *data) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1128 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1129 | void **d = vlib_process_signal_event_data (vm, node_index, type_opaque, |
| 1130 | 1 /* elts */ , sizeof (data)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1131 | d[0] = data; |
| 1132 | } |
| 1133 | |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 1134 | /** |
| 1135 | * Signal event to process from any thread. |
| 1136 | * |
| 1137 | * When in doubt, use this. |
| 1138 | */ |
| 1139 | always_inline void |
| 1140 | vlib_process_signal_event_mt (vlib_main_t * vm, |
| 1141 | uword node_index, uword type_opaque, uword data) |
| 1142 | { |
| 1143 | if (vlib_get_thread_index () != 0) |
| 1144 | { |
| 1145 | vlib_process_signal_event_mt_args_t args = { |
| 1146 | .node_index = node_index, |
| 1147 | .type_opaque = type_opaque, |
| 1148 | .data = data, |
| 1149 | }; |
| 1150 | vlib_rpc_call_main_thread (vlib_process_signal_event_mt_helper, |
| 1151 | (u8 *) & args, sizeof (args)); |
| 1152 | } |
| 1153 | else |
| 1154 | vlib_process_signal_event (vm, node_index, type_opaque, data); |
| 1155 | } |
| 1156 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1157 | always_inline void |
| 1158 | vlib_process_signal_one_time_event (vlib_main_t * vm, |
| 1159 | uword node_index, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1160 | uword type_index, uword data) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1161 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1162 | uword *d = |
| 1163 | vlib_process_signal_one_time_event_data (vm, node_index, type_index, |
| 1164 | 1 /* elts */ , sizeof (uword)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1165 | d[0] = data; |
| 1166 | } |
| 1167 | |
| 1168 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1169 | vlib_signal_one_time_waiting_process (vlib_main_t * vm, |
| 1170 | vlib_one_time_waiting_process_t * p) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1171 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1172 | vlib_process_signal_one_time_event (vm, p->node_index, p->one_time_event, |
| 1173 | /* data */ ~0); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 1174 | clib_memset (p, ~0, sizeof (p[0])); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
| 1177 | always_inline void |
| 1178 | vlib_signal_one_time_waiting_process_vector (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1179 | vlib_one_time_waiting_process_t |
| 1180 | ** wps) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1181 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1182 | vlib_one_time_waiting_process_t *wp; |
| 1183 | vec_foreach (wp, *wps) vlib_signal_one_time_waiting_process (vm, wp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1184 | vec_free (*wps); |
| 1185 | } |
| 1186 | |
| 1187 | always_inline void |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1188 | vlib_current_process_wait_for_one_time_event (vlib_main_t * vm, |
| 1189 | vlib_one_time_waiting_process_t |
| 1190 | * p) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1191 | { |
| 1192 | p->node_index = vlib_current_process (vm); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1193 | p->one_time_event = vlib_process_create_one_time_event (vm, p->node_index, /* type opaque */ |
| 1194 | ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1195 | vlib_process_wait_for_one_time_event (vm, |
| 1196 | /* don't care about data */ 0, |
| 1197 | p->one_time_event); |
| 1198 | } |
| 1199 | |
| 1200 | always_inline void |
| 1201 | vlib_current_process_wait_for_one_time_event_vector (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1202 | vlib_one_time_waiting_process_t |
| 1203 | ** wps) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1204 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1205 | vlib_one_time_waiting_process_t *wp; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1206 | vec_add2 (*wps, wp, 1); |
| 1207 | vlib_current_process_wait_for_one_time_event (vm, wp); |
| 1208 | } |
| 1209 | |
| 1210 | always_inline u32 |
| 1211 | vlib_node_runtime_update_main_loop_vector_stats (vlib_main_t * vm, |
| 1212 | vlib_node_runtime_t * node, |
| 1213 | uword n_vectors) |
| 1214 | { |
| 1215 | u32 i, d, vi0, vi1; |
| 1216 | u32 i0, i1; |
| 1217 | |
| 1218 | ASSERT (is_pow2 (ARRAY_LEN (node->main_loop_vector_stats))); |
| 1219 | i = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE) |
| 1220 | & (ARRAY_LEN (node->main_loop_vector_stats) - 1)); |
| 1221 | i0 = i ^ 0; |
| 1222 | i1 = i ^ 1; |
| 1223 | d = ((vm->main_loop_count >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1224 | - |
| 1225 | (node->main_loop_count_last_dispatch >> |
| 1226 | VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1227 | vi0 = node->main_loop_vector_stats[i0]; |
| 1228 | vi1 = node->main_loop_vector_stats[i1]; |
| 1229 | vi0 = d == 0 ? vi0 : 0; |
| 1230 | vi1 = d <= 1 ? vi1 : 0; |
| 1231 | vi0 += n_vectors; |
| 1232 | node->main_loop_vector_stats[i0] = vi0; |
| 1233 | node->main_loop_vector_stats[i1] = vi1; |
| 1234 | node->main_loop_count_last_dispatch = vm->main_loop_count; |
| 1235 | /* Return previous counter. */ |
| 1236 | return node->main_loop_vector_stats[i1]; |
| 1237 | } |
| 1238 | |
| 1239 | always_inline f64 |
| 1240 | vlib_node_vectors_per_main_loop_as_float (vlib_main_t * vm, u32 node_index) |
| 1241 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1242 | vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1243 | u32 v; |
| 1244 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1245 | v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */ |
| 1246 | 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1247 | return (f64) v / (1 << VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE); |
| 1248 | } |
| 1249 | |
| 1250 | always_inline u32 |
| 1251 | vlib_node_vectors_per_main_loop_as_integer (vlib_main_t * vm, u32 node_index) |
| 1252 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1253 | vlib_node_runtime_t *rt = vlib_node_get_runtime (vm, node_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1254 | u32 v; |
| 1255 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1256 | v = vlib_node_runtime_update_main_loop_vector_stats (vm, rt, /* n_vectors */ |
| 1257 | 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1258 | return v >> VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE; |
| 1259 | } |
| 1260 | |
Dmitry Valter | 9f5b369 | 2022-09-05 15:30:18 +0000 | [diff] [blame] | 1261 | void vlib_frame_free (vlib_main_t *vm, vlib_frame_t *f); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1262 | |
Neale Ranns | bb620d7 | 2017-06-29 00:19:08 -0700 | [diff] [blame] | 1263 | /* Return the edge index if present, ~0 otherwise */ |
| 1264 | uword vlib_node_get_next (vlib_main_t * vm, uword node, uword next_node); |
| 1265 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1266 | /* Add next node to given node in given slot. */ |
| 1267 | uword |
| 1268 | vlib_node_add_next_with_slot (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1269 | uword node, uword next_node, uword slot); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1270 | |
| 1271 | /* As above but adds to end of node's next vector. */ |
| 1272 | always_inline uword |
| 1273 | vlib_node_add_next (vlib_main_t * vm, uword node, uword next_node) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1274 | { |
| 1275 | return vlib_node_add_next_with_slot (vm, node, next_node, ~0); |
| 1276 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1277 | |
| 1278 | /* Add next node to given node in given slot. */ |
| 1279 | uword |
| 1280 | vlib_node_add_named_next_with_slot (vlib_main_t * vm, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1281 | uword node, char *next_name, uword slot); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1282 | |
| 1283 | /* As above but adds to end of node's next vector. */ |
| 1284 | always_inline uword |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1285 | vlib_node_add_named_next (vlib_main_t * vm, uword node, char *name) |
| 1286 | { |
| 1287 | return vlib_node_add_named_next_with_slot (vm, node, name, ~0); |
| 1288 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1289 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 1290 | /** |
| 1291 | * Get list of nodes |
| 1292 | */ |
Dave Barach | 1ddbc01 | 2018-06-13 09:26:05 -0400 | [diff] [blame] | 1293 | void |
| 1294 | vlib_node_get_nodes (vlib_main_t * vm, u32 max_threads, int include_stats, |
| 1295 | int barrier_sync, vlib_node_t **** node_dupsp, |
| 1296 | vlib_main_t *** stat_vmsp); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 1297 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1298 | /* Query node given name. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1299 | vlib_node_t *vlib_get_node_by_name (vlib_main_t * vm, u8 * name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1300 | |
| 1301 | /* Rename a node. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1302 | void vlib_node_rename (vlib_main_t * vm, u32 node_index, char *fmt, ...); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1303 | |
| 1304 | /* Register new packet processing node. Nodes can be registered |
| 1305 | dynamically via this call or statically via the VLIB_REGISTER_NODE |
| 1306 | macro. */ |
Damjan Marion | f87acfa | 2022-03-23 17:36:56 +0100 | [diff] [blame] | 1307 | u32 vlib_register_node (vlib_main_t *vm, vlib_node_registration_t *r, |
| 1308 | char *fmt, ...); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1309 | |
Damjan Marion | a31698b | 2021-03-10 14:35:28 +0100 | [diff] [blame] | 1310 | /* Register all node function variants */ |
| 1311 | void vlib_register_all_node_march_variants (vlib_main_t *vm); |
| 1312 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1313 | /* Register all static nodes registered via VLIB_REGISTER_NODE. */ |
| 1314 | void vlib_register_all_static_nodes (vlib_main_t * vm); |
| 1315 | |
| 1316 | /* Start a process. */ |
| 1317 | void vlib_start_process (vlib_main_t * vm, uword process_index); |
| 1318 | |
| 1319 | /* Sync up runtime and main node stats. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1320 | void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n); |
Arthur de Kerhor | 156158f | 2021-02-18 03:09:42 -0800 | [diff] [blame] | 1321 | void vlib_node_runtime_sync_stats (vlib_main_t *vm, vlib_node_runtime_t *r, |
| 1322 | uword n_calls, uword n_vectors, |
| 1323 | uword n_clocks); |
| 1324 | void vlib_node_runtime_sync_stats_node (vlib_node_t *n, vlib_node_runtime_t *r, |
| 1325 | uword n_calls, uword n_vectors, |
| 1326 | uword n_clocks); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1327 | |
| 1328 | /* Node graph initialization function. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1329 | clib_error_t *vlib_node_main_init (vlib_main_t * vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1330 | |
| 1331 | format_function_t format_vlib_node_graph; |
| 1332 | format_function_t format_vlib_node_name; |
| 1333 | format_function_t format_vlib_next_node_name; |
| 1334 | format_function_t format_vlib_node_and_next; |
| 1335 | format_function_t format_vlib_cpu_time; |
| 1336 | format_function_t format_vlib_time; |
| 1337 | /* Parse node name -> node index. */ |
| 1338 | unformat_function_t unformat_vlib_node; |
| 1339 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1340 | always_inline void |
| 1341 | vlib_node_increment_counter (vlib_main_t * vm, u32 node_index, |
| 1342 | u32 counter_index, u64 increment) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1343 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1344 | vlib_node_t *n = vlib_get_node (vm, node_index); |
| 1345 | vlib_error_main_t *em = &vm->error_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1346 | u32 node_counter_base_index = n->error_heap_index; |
| 1347 | em->counters[node_counter_base_index + counter_index] += increment; |
| 1348 | } |
| 1349 | |
Dave Barach | 11965c7 | 2019-05-28 16:31:05 -0400 | [diff] [blame] | 1350 | /** @brief Create a vlib process |
| 1351 | * @param vm &vlib_global_main |
| 1352 | * @param f the process node function |
| 1353 | * @param log2_n_stack_bytes size of the process stack, defaults to 16K |
| 1354 | * @return newly-create node index |
| 1355 | * @warning call only on the main thread. Barrier sync required |
| 1356 | */ |
| 1357 | u32 vlib_process_create (vlib_main_t * vm, char *name, |
| 1358 | vlib_node_function_t * f, u32 log2_n_stack_bytes); |
| 1359 | |
Damjan Marion | 8b60fb0 | 2020-11-27 20:15:17 +0100 | [diff] [blame] | 1360 | always_inline int |
| 1361 | vlib_node_set_dispatch_wrapper (vlib_main_t *vm, vlib_node_function_t *fn) |
| 1362 | { |
| 1363 | if (fn && vm->dispatch_wrapper_fn) |
| 1364 | return 1; |
| 1365 | vm->dispatch_wrapper_fn = fn; |
| 1366 | return 0; |
| 1367 | } |
| 1368 | |
Damjan Marion | a31698b | 2021-03-10 14:35:28 +0100 | [diff] [blame] | 1369 | int vlib_node_set_march_variant (vlib_main_t *vm, u32 node_index, |
| 1370 | clib_march_variant_type_t march_variant); |
| 1371 | |
| 1372 | vlib_node_function_t * |
| 1373 | vlib_node_get_preferred_node_fn_variant (vlib_main_t *vm, |
| 1374 | vlib_node_fn_registration_t *regs); |
| 1375 | |
Damjan Marion | efeea5b | 2022-02-10 15:01:03 +0100 | [diff] [blame] | 1376 | /* |
| 1377 | * vlib_frame_bitmap functions |
| 1378 | */ |
| 1379 | |
| 1380 | #define VLIB_FRAME_BITMAP_N_UWORDS \ |
| 1381 | (((VLIB_FRAME_SIZE + uword_bits - 1) & ~(uword_bits - 1)) / uword_bits) |
| 1382 | |
| 1383 | typedef uword vlib_frame_bitmap_t[VLIB_FRAME_BITMAP_N_UWORDS]; |
| 1384 | |
| 1385 | static_always_inline void |
| 1386 | vlib_frame_bitmap_init (uword *bmp, u32 n_first_bits_set) |
| 1387 | { |
| 1388 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1389 | while (n_first_bits_set >= (sizeof (uword) * 8) && n_left) |
| 1390 | { |
| 1391 | bmp++[0] = ~0; |
| 1392 | n_first_bits_set -= sizeof (uword) * 8; |
| 1393 | n_left--; |
| 1394 | } |
| 1395 | |
| 1396 | if (n_first_bits_set && n_left) |
| 1397 | { |
| 1398 | bmp++[0] = pow2_mask (n_first_bits_set); |
| 1399 | n_left--; |
| 1400 | } |
| 1401 | |
| 1402 | while (n_left--) |
| 1403 | bmp++[0] = 0; |
| 1404 | } |
| 1405 | |
| 1406 | static_always_inline void |
Damjan Marion | 156d452 | 2023-03-31 12:14:41 +0000 | [diff] [blame^] | 1407 | vlib_frame_bitmap_set_bit_at_index (uword *bmp, uword bit_index) |
| 1408 | { |
| 1409 | bmp += bit_index / uword_bits; |
| 1410 | bit_index %= uword_bits; |
| 1411 | bmp[0] |= 1 << bit_index; |
| 1412 | } |
| 1413 | |
| 1414 | static_always_inline void |
| 1415 | _vlib_frame_bitmap_clear_bit_at_index (uword *bmp, uword bit_index) |
| 1416 | { |
| 1417 | bmp += bit_index / uword_bits; |
| 1418 | bit_index %= uword_bits; |
| 1419 | bmp[0] &= ~((uword) 1 << bit_index); |
| 1420 | } |
| 1421 | |
| 1422 | static_always_inline void |
Damjan Marion | efeea5b | 2022-02-10 15:01:03 +0100 | [diff] [blame] | 1423 | vlib_frame_bitmap_clear (uword *bmp) |
| 1424 | { |
| 1425 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1426 | while (n_left--) |
| 1427 | bmp++[0] = 0; |
| 1428 | } |
| 1429 | |
| 1430 | static_always_inline void |
| 1431 | vlib_frame_bitmap_xor (uword *bmp, uword *bmp2) |
| 1432 | { |
| 1433 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1434 | while (n_left--) |
| 1435 | bmp++[0] ^= bmp2++[0]; |
| 1436 | } |
| 1437 | |
| 1438 | static_always_inline void |
| 1439 | vlib_frame_bitmap_or (uword *bmp, uword *bmp2) |
| 1440 | { |
| 1441 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1442 | while (n_left--) |
| 1443 | bmp++[0] |= bmp2++[0]; |
| 1444 | } |
| 1445 | |
Damjan Marion | 218e4ec | 2022-03-15 16:16:55 +0100 | [diff] [blame] | 1446 | static_always_inline void |
| 1447 | vlib_frame_bitmap_and (uword *bmp, uword *bmp2) |
| 1448 | { |
| 1449 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1450 | while (n_left--) |
| 1451 | bmp++[0] &= bmp2++[0]; |
| 1452 | } |
| 1453 | |
Damjan Marion | efeea5b | 2022-02-10 15:01:03 +0100 | [diff] [blame] | 1454 | static_always_inline u32 |
| 1455 | vlib_frame_bitmap_count_set_bits (uword *bmp) |
| 1456 | { |
| 1457 | u32 n_left = VLIB_FRAME_BITMAP_N_UWORDS; |
| 1458 | u32 count = 0; |
| 1459 | while (n_left--) |
| 1460 | count += count_set_bits (bmp++[0]); |
| 1461 | return count; |
| 1462 | } |
| 1463 | |
Damjan Marion | 51a7e44 | 2022-09-08 18:59:03 +0200 | [diff] [blame] | 1464 | static_always_inline uword |
| 1465 | vlib_frame_bitmap_is_bit_set (uword *bmp, uword bit_index) |
| 1466 | { |
| 1467 | bmp += bit_index / uword_bits; |
| 1468 | bit_index %= uword_bits; |
| 1469 | return (bmp[0] >> bit_index) & 1; |
| 1470 | } |
| 1471 | |
Damjan Marion | efeea5b | 2022-02-10 15:01:03 +0100 | [diff] [blame] | 1472 | static_always_inline int |
| 1473 | vlib_frame_bitmap_find_first_set (uword *bmp) |
| 1474 | { |
| 1475 | uword *b = bmp; |
| 1476 | while (b[0] == 0) |
| 1477 | { |
| 1478 | ASSERT (b - bmp < VLIB_FRAME_BITMAP_N_UWORDS); |
| 1479 | b++; |
| 1480 | } |
| 1481 | |
| 1482 | return (b - bmp) * uword_bits + get_lowest_set_bit_index (b[0]); |
| 1483 | } |
| 1484 | |
| 1485 | #define foreach_vlib_frame_bitmap_set_bit_index(i, v) \ |
| 1486 | for (uword _off = 0; _off < ARRAY_LEN (v); _off++) \ |
| 1487 | for (uword _tmp = \ |
| 1488 | (v[_off]) + 0 * (uword) (i = _off * uword_bits + \ |
| 1489 | get_lowest_set_bit_index (v[_off])); \ |
| 1490 | _tmp; i = _off * uword_bits + get_lowest_set_bit_index ( \ |
| 1491 | _tmp = clear_lowest_set_bit (_tmp))) |
| 1492 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1493 | #endif /* included_vlib_node_funcs_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 1494 | |
| 1495 | /* |
| 1496 | * fd.io coding-style-patch-verification: ON |
| 1497 | * |
| 1498 | * Local Variables: |
| 1499 | * eval: (c-set-style "gnu") |
| 1500 | * End: |
| 1501 | */ |