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