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