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 | * main.h: VLIB main data structure |
| 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 | |
| 40 | #ifndef included_vlib_main_h |
| 41 | #define included_vlib_main_h |
| 42 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 43 | #include <vppinfra/callback_data.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | #include <vppinfra/elog.h> |
| 45 | #include <vppinfra/format.h> |
| 46 | #include <vppinfra/longjmp.h> |
| 47 | #include <vppinfra/pool.h> |
| 48 | #include <vppinfra/random_buffer.h> |
| 49 | #include <vppinfra/time.h> |
| 50 | |
| 51 | #include <pthread.h> |
| 52 | |
| 53 | |
| 54 | /* By default turn off node/error event logging. |
| 55 | Override with -DVLIB_ELOG_MAIN_LOOP */ |
| 56 | #ifndef VLIB_ELOG_MAIN_LOOP |
| 57 | #define VLIB_ELOG_MAIN_LOOP 0 |
| 58 | #endif |
| 59 | |
Dave Barach | 5ecd5a5 | 2019-02-25 15:27:28 -0500 | [diff] [blame] | 60 | typedef struct |
| 61 | { |
Dave Barach | 87d24db | 2019-12-04 17:19:12 -0500 | [diff] [blame] | 62 | u8 trace_filter_enable; |
Jon Loeliger | 5c1e48c | 2020-10-15 14:41:36 -0400 | [diff] [blame] | 63 | u32 classify_table_index; |
Dave Barach | 87d24db | 2019-12-04 17:19:12 -0500 | [diff] [blame] | 64 | } vlib_trace_filter_t; |
| 65 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 66 | typedef enum |
| 67 | { |
| 68 | VLIB_NODE_RUNTIME_PERF_BEFORE, |
| 69 | VLIB_NODE_RUNTIME_PERF_AFTER, |
| 70 | VLIB_NODE_RUNTIME_PERF_RESET, |
| 71 | } vlib_node_runtime_perf_call_type_t; |
| 72 | |
| 73 | typedef struct |
| 74 | { |
| 75 | struct vlib_main_t *vm; |
| 76 | vlib_node_runtime_t *node; |
| 77 | vlib_frame_t *frame; |
| 78 | uword packets; |
| 79 | u64 cpu_time_now; |
| 80 | vlib_node_runtime_perf_call_type_t call_type; |
| 81 | } vlib_node_runtime_perf_callback_args_t; |
| 82 | |
| 83 | struct vlib_node_runtime_perf_callback_data_t; |
| 84 | |
| 85 | typedef void (*vlib_node_runtime_perf_callback_fp_t) |
| 86 | (struct vlib_node_runtime_perf_callback_data_t * data, |
| 87 | vlib_node_runtime_perf_callback_args_t * args); |
| 88 | |
| 89 | typedef struct vlib_node_runtime_perf_callback_data_t |
| 90 | { |
| 91 | vlib_node_runtime_perf_callback_fp_t fp; |
| 92 | union |
| 93 | { |
| 94 | void *v; |
| 95 | u64 u; |
| 96 | } u[3]; |
| 97 | } vlib_node_runtime_perf_callback_data_t; |
| 98 | |
| 99 | clib_callback_data_typedef (vlib_node_runtime_perf_callback_set_t, |
| 100 | vlib_node_runtime_perf_callback_data_t); |
| 101 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 102 | typedef struct vlib_main_t |
| 103 | { |
Damjan Marion | be3f4d5 | 2018-03-27 21:06:10 +0200 | [diff] [blame] | 104 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 105 | /* Instruction level timing state. */ |
| 106 | clib_time_t clib_time; |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 107 | /* Offset from main thread time */ |
| 108 | f64 time_offset; |
| 109 | f64 time_last_barrier_release; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | |
| 111 | /* Time stamp of last node dispatch. */ |
| 112 | u64 cpu_time_last_node_dispatch; |
| 113 | |
| 114 | /* Time stamp when main loop was entered (time 0). */ |
| 115 | u64 cpu_time_main_loop_start; |
| 116 | |
| 117 | /* Incremented once for each main loop. */ |
Neale Ranns | 42845dd | 2020-05-26 13:12:17 +0000 | [diff] [blame] | 118 | volatile u32 main_loop_count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | |
| 120 | /* Count of vectors processed this main loop. */ |
| 121 | u32 main_loop_vectors_processed; |
| 122 | u32 main_loop_nodes_processed; |
| 123 | |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 124 | /* Internal node vectors, calls */ |
| 125 | u64 internal_node_vectors; |
| 126 | u64 internal_node_calls; |
| 127 | u64 internal_node_vectors_last_clear; |
| 128 | u64 internal_node_calls_last_clear; |
| 129 | |
| 130 | /* Instantaneous vector rate */ |
| 131 | u32 internal_node_last_vectors_per_main_loop; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 133 | /* Main loop hw / sw performance counters */ |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 134 | vlib_node_runtime_perf_callback_set_t vlib_node_runtime_perf_callbacks; |
| 135 | |
Damjan Marion | 8b60fb0 | 2020-11-27 20:15:17 +0100 | [diff] [blame] | 136 | /* dispatch wrapper function */ |
| 137 | vlib_node_function_t *dispatch_wrapper_fn; |
| 138 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | /* Every so often we switch to the next counter. */ |
| 140 | #define VLIB_LOG2_MAIN_LOOPS_PER_STATS_UPDATE 7 |
| 141 | |
| 142 | /* Jump target to exit main loop with given code. */ |
| 143 | u32 main_loop_exit_set; |
Dave Barach | 903651c | 2017-10-13 19:16:56 -0400 | [diff] [blame] | 144 | /* Set e.g. in the SIGTERM signal handler, checked in a safe place... */ |
| 145 | volatile u32 main_loop_exit_now; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | clib_longjmp_t main_loop_exit; |
| 147 | #define VLIB_MAIN_LOOP_EXIT_NONE 0 |
| 148 | #define VLIB_MAIN_LOOP_EXIT_PANIC 1 |
| 149 | /* Exit via CLI. */ |
| 150 | #define VLIB_MAIN_LOOP_EXIT_CLI 2 |
| 151 | |
| 152 | /* Error marker to use when exiting main loop. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 153 | clib_error_t *main_loop_error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | |
| 155 | /* Name for e.g. syslog. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 156 | char *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | |
Dave Barach | 6a5adc3 | 2018-07-04 10:56:23 -0400 | [diff] [blame] | 158 | /* Start of the heap. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 159 | void *heap_base; |
Dave Barach | 6a5adc3 | 2018-07-04 10:56:23 -0400 | [diff] [blame] | 160 | |
| 161 | /* Truncated version, to create frame indices */ |
| 162 | void *heap_aligned_base; |
| 163 | |
| 164 | /* Size of the heap */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 165 | uword heap_size; |
| 166 | |
Damjan Marion | d50e347 | 2019-01-20 00:03:56 +0100 | [diff] [blame] | 167 | /* buffer main structure. */ |
| 168 | vlib_buffer_main_t *buffer_main; |
| 169 | |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 170 | /* physical memory main structure. */ |
| 171 | vlib_physmem_main_t physmem_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | |
| 173 | /* Node graph main structure. */ |
| 174 | vlib_node_main_t node_main; |
| 175 | |
| 176 | /* Command line interface. */ |
| 177 | vlib_cli_main_t cli_main; |
| 178 | |
| 179 | /* Packet trace buffer. */ |
| 180 | vlib_trace_main_t trace_main; |
| 181 | |
Dave Barach | 87d24db | 2019-12-04 17:19:12 -0500 | [diff] [blame] | 182 | /* Packet trace capture filter */ |
| 183 | vlib_trace_filter_t trace_filter; |
| 184 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 185 | /* Error handling. */ |
| 186 | vlib_error_main_t error_main; |
| 187 | |
| 188 | /* Punt packets to underlying operating system for when fast switching |
| 189 | code does not know what to do. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 190 | void (*os_punt_frame) (struct vlib_main_t * vm, |
| 191 | struct vlib_node_runtime_t * node, |
| 192 | vlib_frame_t * frame); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | /* Stream index to use for distribution when MC is enabled. */ |
| 195 | u32 mc_stream_index; |
| 196 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 197 | vlib_one_time_waiting_process_t *procs_waiting_for_mc_stream_join; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | |
| 199 | /* Event logger. */ |
| 200 | elog_main_t elog_main; |
Dave Barach | bc867c3 | 2020-11-25 10:07:09 -0500 | [diff] [blame] | 201 | u32 configured_elog_ring_size; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | |
Dave Barach | c3a0655 | 2018-10-01 09:25:32 -0400 | [diff] [blame] | 203 | /* Event logger trace flags */ |
| 204 | int elog_trace_api_messages; |
| 205 | int elog_trace_cli_commands; |
Dave Barach | 900cbad | 2019-01-31 19:12:51 -0500 | [diff] [blame] | 206 | int elog_trace_graph_dispatch; |
| 207 | int elog_trace_graph_circuit; |
| 208 | u32 elog_trace_graph_circuit_node_index; |
Dave Barach | c3a0655 | 2018-10-01 09:25:32 -0400 | [diff] [blame] | 209 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | /* Node call and return event types. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 211 | elog_event_type_t *node_call_elog_event_types; |
| 212 | elog_event_type_t *node_return_elog_event_types; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 213 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 214 | elog_event_type_t *error_elog_event_types; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | |
| 216 | /* Seed for random number generator. */ |
| 217 | uword random_seed; |
| 218 | |
| 219 | /* Buffer of random data for various uses. */ |
| 220 | clib_random_buffer_t random_buffer; |
| 221 | |
| 222 | /* Hash table to record which init functions have been called. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 223 | uword *init_functions_called; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | |
Damjan Marion | 0a78fa1 | 2019-01-19 23:45:36 +0100 | [diff] [blame] | 225 | /* thread, cpu and numa_node indices */ |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 226 | u32 thread_index; |
Damjan Marion | ee72141 | 2019-01-27 17:54:11 +0100 | [diff] [blame] | 227 | u32 cpu_id; |
Damjan Marion | 0a78fa1 | 2019-01-19 23:45:36 +0100 | [diff] [blame] | 228 | u32 numa_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | /* List of init functions to call, setup by constructors */ |
| 231 | _vlib_init_function_list_elt_t *init_function_registrations; |
Damjan Marion | e9f929b | 2017-03-16 11:32:09 +0100 | [diff] [blame] | 232 | _vlib_init_function_list_elt_t *worker_init_function_registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | _vlib_init_function_list_elt_t *main_loop_enter_function_registrations; |
| 234 | _vlib_init_function_list_elt_t *main_loop_exit_function_registrations; |
| 235 | _vlib_init_function_list_elt_t *api_init_function_registrations; |
| 236 | vlib_config_function_runtime_t *config_function_registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 237 | |
Dave Barach | dae88b9 | 2016-04-19 09:38:35 -0400 | [diff] [blame] | 238 | /* control-plane API queue signal pending, length indication */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | volatile u32 queue_signal_pending; |
Dave Barach | dae88b9 | 2016-04-19 09:38:35 -0400 | [diff] [blame] | 240 | volatile u32 api_queue_nonempty; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 241 | void (*queue_signal_callback) (struct vlib_main_t *); |
Dave Barach | bfdedbd | 2016-01-20 09:11:55 -0500 | [diff] [blame] | 242 | u8 **argv; |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 243 | |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 244 | /* Top of (worker) dispatch loop callback */ |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 245 | void (**volatile worker_thread_main_loop_callbacks) |
| 246 | (struct vlib_main_t *, u64 t); |
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 247 | void (**volatile worker_thread_main_loop_callback_tmp) |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 248 | (struct vlib_main_t *, u64 t); |
Dave Barach | 5f2cfb2 | 2019-05-20 10:28:57 -0400 | [diff] [blame] | 249 | clib_spinlock_t worker_thread_main_loop_callback_lock; |
Dave Barach | 4d1a866 | 2018-09-10 12:31:15 -0400 | [diff] [blame] | 250 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 251 | /* debugging */ |
| 252 | volatile int parked_at_barrier; |
Dave Barach | 8148131 | 2017-05-16 09:08:14 -0400 | [diff] [blame] | 253 | |
Damjan Marion | 25ab6c5 | 2021-03-05 14:41:25 +0100 | [diff] [blame^] | 254 | /* post-mortem callbacks */ |
| 255 | void (**post_mortem_callbacks) (void); |
Dave Barach | 8148131 | 2017-05-16 09:08:14 -0400 | [diff] [blame] | 256 | |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 257 | /* |
| 258 | * Need to call vlib_worker_thread_node_runtime_update before |
| 259 | * releasing worker thread barrier. Only valid in vlib_global_main. |
| 260 | */ |
| 261 | int need_vlib_worker_thread_node_runtime_update; |
| 262 | |
Dave Barach | 000a029 | 2020-02-17 17:07:12 -0500 | [diff] [blame] | 263 | /* Dispatch loop time accounting */ |
| 264 | u64 loops_this_reporting_interval; |
| 265 | f64 loop_interval_end; |
| 266 | f64 loop_interval_start; |
| 267 | f64 loops_per_second; |
| 268 | f64 seconds_per_loop; |
| 269 | f64 damping_constant; |
| 270 | |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 271 | /* |
| 272 | * Barrier epoch - Set to current time, each time barrier_sync or |
| 273 | * barrier_release is called with zero recursion. |
| 274 | */ |
| 275 | f64 barrier_epoch; |
| 276 | |
| 277 | /* Earliest barrier can be closed again */ |
| 278 | f64 barrier_no_close_before; |
| 279 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 280 | /* Barrier counter callback */ |
| 281 | void (**volatile barrier_perf_callbacks) |
| 282 | (struct vlib_main_t *, u64 t, int leave); |
| 283 | void (**volatile barrier_perf_callbacks_tmp) |
| 284 | (struct vlib_main_t *, u64 t, int leave); |
| 285 | |
Dave Barach | 80965f5 | 2019-03-11 09:57:38 -0400 | [diff] [blame] | 286 | /* Need to check the frame queues */ |
| 287 | volatile uword check_frame_queues; |
| 288 | |
Dave Barach | f6c68d7 | 2018-11-01 08:12:52 -0400 | [diff] [blame] | 289 | /* RPC requests, main thread only */ |
Dave Barach | 2877eee | 2017-12-15 12:22:57 -0500 | [diff] [blame] | 290 | uword *pending_rpc_requests; |
Dave Barach | f6c68d7 | 2018-11-01 08:12:52 -0400 | [diff] [blame] | 291 | uword *processing_rpc_requests; |
| 292 | clib_spinlock_t pending_rpc_lock; |
Dave Barach | 2877eee | 2017-12-15 12:22:57 -0500 | [diff] [blame] | 293 | |
Dave Barach | c74b43c | 2020-04-09 17:24:07 -0400 | [diff] [blame] | 294 | /* buffer fault injector */ |
| 295 | u32 buffer_alloc_success_seed; |
| 296 | f64 buffer_alloc_success_rate; |
| 297 | |
Damjan Marion | cea4652 | 2020-05-21 16:47:05 +0200 | [diff] [blame] | 298 | #ifdef CLIB_SANITIZE_ADDR |
| 299 | /* address sanitizer stack save */ |
| 300 | void *asan_stack_save; |
| 301 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | } vlib_main_t; |
| 303 | |
| 304 | /* Global main structure. */ |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 305 | extern vlib_main_t vlib_global_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 306 | |
Damjan Marion | e9d52d5 | 2017-03-09 15:42:26 +0100 | [diff] [blame] | 307 | void vlib_worker_loop (vlib_main_t * vm); |
| 308 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 309 | always_inline f64 |
| 310 | vlib_time_now (vlib_main_t * vm) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 311 | { |
Dave Barach | 77d9838 | 2020-04-28 18:00:21 -0400 | [diff] [blame] | 312 | #if CLIB_DEBUG > 0 |
| 313 | extern __thread uword __os_thread_index; |
| 314 | #endif |
| 315 | /* |
| 316 | * Make sure folks don't pass &vlib_global_main from a worker thread. |
| 317 | */ |
| 318 | ASSERT (vm->thread_index == __os_thread_index); |
Dave Barach | a4324a9 | 2019-02-19 17:05:30 -0500 | [diff] [blame] | 319 | return clib_time_now (&vm->clib_time) + vm->time_offset; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 320 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 321 | |
| 322 | always_inline f64 |
| 323 | vlib_time_now_ticks (vlib_main_t * vm, u64 n) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 324 | { |
| 325 | return clib_time_now_internal (&vm->clib_time, n); |
| 326 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 327 | |
| 328 | /* Busy wait for specified time. */ |
| 329 | always_inline void |
| 330 | vlib_time_wait (vlib_main_t * vm, f64 wait) |
| 331 | { |
| 332 | f64 t = vlib_time_now (vm); |
| 333 | f64 limit = t + wait; |
| 334 | while (t < limit) |
| 335 | t = vlib_time_now (vm); |
| 336 | } |
| 337 | |
| 338 | /* Time a piece of code. */ |
| 339 | #define vlib_time_code(vm,body) \ |
| 340 | do { \ |
| 341 | f64 _t[2]; \ |
| 342 | _t[0] = vlib_time_now (vm); \ |
| 343 | do { body; } while (0); \ |
| 344 | _t[1] = vlib_time_now (vm); \ |
| 345 | clib_warning ("%.7e", _t[1] - _t[0]); \ |
| 346 | } while (0) |
| 347 | |
| 348 | #define vlib_wait_with_timeout(vm,suspend_time,timeout_time,test) \ |
| 349 | ({ \ |
| 350 | uword __vlib_wait_with_timeout = 0; \ |
| 351 | f64 __vlib_wait_time = 0; \ |
| 352 | while (! (__vlib_wait_with_timeout = (test)) \ |
| 353 | && __vlib_wait_time < (timeout_time)) \ |
| 354 | { \ |
| 355 | vlib_process_suspend (vm, suspend_time); \ |
| 356 | __vlib_wait_time += suspend_time; \ |
| 357 | } \ |
| 358 | __vlib_wait_with_timeout; \ |
| 359 | }) |
| 360 | |
| 361 | always_inline void |
| 362 | vlib_panic_with_error (vlib_main_t * vm, clib_error_t * error) |
| 363 | { |
| 364 | vm->main_loop_error = error; |
| 365 | clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_PANIC); |
| 366 | } |
| 367 | |
| 368 | #define vlib_panic_with_msg(vm,args...) \ |
| 369 | vlib_panic_with_error (vm, clib_error_return (0, args)) |
| 370 | |
| 371 | always_inline void |
| 372 | vlib_panic (vlib_main_t * vm) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 373 | { |
| 374 | vlib_panic_with_error (vm, 0); |
| 375 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 377 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 378 | always_inline f64 |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 379 | vlib_internal_node_vector_rate (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 380 | { |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 381 | u64 vectors; |
| 382 | u64 calls; |
| 383 | |
| 384 | calls = vm->internal_node_calls - vm->internal_node_calls_last_clear; |
| 385 | |
| 386 | if (PREDICT_FALSE (calls == 0)) |
| 387 | return 0.0; |
| 388 | |
| 389 | vectors = vm->internal_node_vectors - vm->internal_node_vectors_last_clear; |
| 390 | |
| 391 | return (f64) vectors / (f64) calls; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 392 | } |
| 393 | |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 394 | always_inline void |
| 395 | vlib_clear_internal_node_vector_rate (vlib_main_t * vm) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 396 | { |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 397 | vm->internal_node_calls_last_clear = vm->internal_node_calls; |
| 398 | vm->internal_node_vectors_last_clear = vm->internal_node_vectors; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 399 | } |
| 400 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 401 | always_inline void |
| 402 | vlib_increment_main_loop_counter (vlib_main_t * vm) |
| 403 | { |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 404 | vm->main_loop_count++; |
| 405 | vm->internal_node_last_vectors_per_main_loop = 0; |
Dave Barach | 903651c | 2017-10-13 19:16:56 -0400 | [diff] [blame] | 406 | |
| 407 | if (PREDICT_FALSE (vm->main_loop_exit_now)) |
| 408 | clib_longjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 409 | } |
| 410 | |
Dave Barach | a8df85c | 2019-10-01 13:34:23 -0400 | [diff] [blame] | 411 | always_inline u32 |
| 412 | vlib_last_vectors_per_main_loop (vlib_main_t * vm) |
| 413 | { |
| 414 | return vm->internal_node_last_vectors_per_main_loop; |
| 415 | } |
| 416 | |
Tom Seidenberg | 6c81f5a | 2020-07-10 15:49:03 +0000 | [diff] [blame] | 417 | always_inline void |
| 418 | vlib_node_runtime_perf_counter (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 419 | vlib_frame_t * frame, uword n, u64 t, |
| 420 | vlib_node_runtime_perf_call_type_t call_type) |
| 421 | { |
| 422 | vlib_node_runtime_perf_callback_data_t *v = |
| 423 | clib_callback_data_check_and_get (&vm->vlib_node_runtime_perf_callbacks); |
| 424 | if (vec_len (v)) |
| 425 | { |
| 426 | vlib_node_runtime_perf_callback_args_t args = { |
| 427 | .vm = vm, |
| 428 | .node = node, |
| 429 | .frame = frame, |
| 430 | .packets = n, |
| 431 | .cpu_time_now = t, |
| 432 | .call_type = call_type, |
| 433 | }; |
| 434 | clib_callback_data_call_vec (v, &args); |
| 435 | } |
| 436 | } |
| 437 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 438 | always_inline void vlib_set_queue_signal_callback |
| 439 | (vlib_main_t * vm, void (*fp) (vlib_main_t *)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 440 | { |
| 441 | vm->queue_signal_callback = fp; |
| 442 | } |
| 443 | |
| 444 | /* Main routine. */ |
| 445 | int vlib_main (vlib_main_t * vm, unformat_input_t * input); |
| 446 | |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 447 | /* Thread stacks, for os_get_thread_index */ |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 448 | extern u8 **vlib_thread_stacks; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 449 | |
| 450 | /* Number of thread stacks that the application needs */ |
| 451 | u32 vlib_app_num_thread_stacks_needed (void) __attribute__ ((weak)); |
| 452 | |
Dave Barach | 6931f59 | 2016-05-13 12:55:01 -0400 | [diff] [blame] | 453 | extern void vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n); |
Damjan Marion | 25ab6c5 | 2021-03-05 14:41:25 +0100 | [diff] [blame^] | 454 | void vlib_add_del_post_mortem_callback (void *cb, int is_add); |
Dave Barach | 6931f59 | 2016-05-13 12:55:01 -0400 | [diff] [blame] | 455 | |
Dave Barach | ab1a50c | 2020-10-06 14:08:16 -0400 | [diff] [blame] | 456 | vlib_main_t *vlib_get_main_not_inline (void); |
| 457 | elog_main_t *vlib_get_elog_main_not_inline (); |
Dave Barach | e5948fb | 2019-08-29 18:01:30 -0400 | [diff] [blame] | 458 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 459 | #endif /* included_vlib_main_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 460 | |
| 461 | /* |
| 462 | * fd.io coding-style-patch-verification: ON |
| 463 | * |
| 464 | * Local Variables: |
| 465 | * eval: (c-set-style "gnu") |
| 466 | * End: |
| 467 | */ |