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 | #ifndef included_vlib_threads_h |
| 16 | #define included_vlib_threads_h |
| 17 | |
| 18 | #include <vlib/main.h> |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 19 | #include <linux/sched.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 20 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 21 | extern vlib_main_t **vlib_mains; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 22 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 23 | void vlib_set_thread_name (char *name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 24 | |
| 25 | /* arg is actually a vlib__thread_t * */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 26 | typedef void (vlib_thread_function_t) (void *arg); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 28 | typedef struct vlib_thread_registration_ |
| 29 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 30 | /* constructor generated list of thread registrations */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 31 | struct vlib_thread_registration_ *next; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 32 | |
| 33 | /* config parameters */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 34 | char *name; |
| 35 | char *short_name; |
| 36 | vlib_thread_function_t *function; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 37 | uword mheap_size; |
| 38 | int fixed_count; |
| 39 | u32 count; |
| 40 | int no_data_structure_clone; |
Bud Grise | 68adab9 | 2016-02-12 10:36:11 -0500 | [diff] [blame] | 41 | u32 frame_queue_nelts; |
| 42 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 43 | /* All threads of this type run on pthreads */ |
| 44 | int use_pthreads; |
| 45 | u32 first_index; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 46 | uword *coremask; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 47 | } vlib_thread_registration_t; |
| 48 | |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 49 | /* |
| 50 | * Frames have their cpu / vlib_main_t index in the low-order N bits |
| 51 | * Make VLIB_MAX_CPUS a power-of-two, please... |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | */ |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 53 | |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 54 | #ifndef VLIB_MAX_CPUS |
Damjan Marion | 3f46baf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 55 | #define VLIB_MAX_CPUS 256 |
Christophe Fontaine | fef15b4 | 2016-04-09 12:38:49 +0900 | [diff] [blame] | 56 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | |
Damjan Marion | ce8debf | 2016-02-06 19:16:21 +0100 | [diff] [blame] | 58 | #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS |
| 59 | #error Please increase number of per-cpu mheaps |
| 60 | #endif |
| 61 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 62 | #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 63 | #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK) |
| 64 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 65 | #define VLIB_LOG2_THREAD_STACK_SIZE (21) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE) |
| 67 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 68 | typedef enum |
| 69 | { |
| 70 | VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 71 | } vlib_frame_queue_msg_type_t; |
| 72 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 73 | typedef struct |
| 74 | { |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 75 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | volatile u32 valid; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 77 | u32 msg_type; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | u32 n_vectors; |
| 79 | u32 last_n_vectors; |
| 80 | |
| 81 | /* 256 * 4 = 1024 bytes, even mult of cache line size */ |
| 82 | u32 buffer_index[VLIB_FRAME_SIZE]; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 83 | } |
| 84 | vlib_frame_queue_elt_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 85 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 86 | typedef struct |
| 87 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | /* First cache line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 89 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | volatile u32 *wait_at_barrier; |
| 91 | volatile u32 *workers_at_barrier; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 92 | |
| 93 | /* Second Cache Line */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 94 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | void *thread_mheap; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 96 | u8 *thread_stack; |
| 97 | void (*thread_function) (void *); |
| 98 | void *thread_function_arg; |
| 99 | i64 recursion_level; |
| 100 | elog_track_t elog_track; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | u32 instance_id; |
| 102 | vlib_thread_registration_t *registration; |
| 103 | u8 *name; |
Bud Grise | 42f2006 | 2016-03-16 13:09:46 -0400 | [diff] [blame] | 104 | u64 barrier_sync_count; |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 105 | u8 barrier_elog_enabled; |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 106 | const char *barrier_caller; |
| 107 | const char *barrier_context; |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 108 | volatile u32 *node_reforks_required; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | |
| 110 | long lwp; |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 111 | int cpu_id; |
| 112 | int core_id; |
| 113 | int socket_id; |
Pavel Kotucek | 9876520 | 2016-10-07 08:37:28 +0200 | [diff] [blame] | 114 | pthread_t thread_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | } vlib_worker_thread_t; |
| 116 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 117 | extern vlib_worker_thread_t *vlib_worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 119 | typedef struct |
| 120 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | /* enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 122 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | volatile u64 tail; |
| 124 | u64 enqueues; |
| 125 | u64 enqueue_ticks; |
| 126 | u64 enqueue_vectors; |
| 127 | u32 enqueue_full_events; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 128 | |
| 129 | /* dequeue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 130 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | volatile u64 head; |
| 132 | u64 dequeues; |
| 133 | u64 dequeue_ticks; |
| 134 | u64 dequeue_vectors; |
| 135 | u64 trace; |
| 136 | u64 vector_threshold; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | |
| 138 | /* dequeue hint to enqueue side */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 139 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | volatile u64 head_hint; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | |
| 142 | /* read-only, constant, shared */ |
Damjan Marion | b0d680b | 2016-11-04 14:41:44 +0100 | [diff] [blame] | 143 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline3); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | vlib_frame_queue_elt_t *elts; |
| 145 | u32 nelts; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 146 | } |
| 147 | vlib_frame_queue_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 149 | typedef struct |
| 150 | { |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 151 | vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index; |
| 152 | vlib_frame_queue_t **congested_handoff_queue_by_thread_index; |
| 153 | } vlib_frame_queue_per_thread_data_t; |
| 154 | |
| 155 | typedef struct |
| 156 | { |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 157 | u32 node_index; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 158 | u32 frame_queue_nelts; |
| 159 | u32 queue_hi_thresh; |
| 160 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 161 | vlib_frame_queue_t **vlib_frame_queues; |
Damjan Marion | 78fd7e8 | 2018-07-20 18:47:05 +0200 | [diff] [blame] | 162 | vlib_frame_queue_per_thread_data_t *per_thread_data; |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 163 | |
| 164 | /* for frame queue tracing */ |
| 165 | frame_queue_trace_t *frame_queue_traces; |
| 166 | frame_queue_nelt_counter_t *frame_queue_histogram; |
| 167 | } vlib_frame_queue_main_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 169 | typedef struct |
| 170 | { |
| 171 | uword node_index; |
| 172 | uword type_opaque; |
| 173 | uword data; |
| 174 | } vlib_process_signal_event_mt_args_t; |
| 175 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 176 | /* Called early, in thread 0's context */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 177 | clib_error_t *vlib_thread_init (vlib_main_t * vm); |
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 | int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index, |
| 180 | u32 frame_queue_index, vlib_frame_t * frame, |
| 181 | vlib_frame_queue_msg_type_t type); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 182 | |
Damjan Marion | e9d52d5 | 2017-03-09 15:42:26 +0100 | [diff] [blame] | 183 | int |
| 184 | vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 185 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 186 | void vlib_worker_thread_node_runtime_update (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 188 | void vlib_create_worker_threads (vlib_main_t * vm, int n, |
| 189 | void (*thread_function) (void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
| 191 | void vlib_worker_thread_init (vlib_worker_thread_t * w); |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 192 | u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
| 194 | /* Check for a barrier sync request every 30ms */ |
| 195 | #define BARRIER_SYNC_DELAY (0.030000) |
| 196 | |
| 197 | #if CLIB_DEBUG > 0 |
| 198 | /* long barrier timeout, for gdb... */ |
| 199 | #define BARRIER_SYNC_TIMEOUT (600.1) |
| 200 | #else |
| 201 | #define BARRIER_SYNC_TIMEOUT (1.0) |
| 202 | #endif |
| 203 | |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 204 | #define vlib_worker_thread_barrier_sync(X) {vlib_worker_threads[0].barrier_caller=__FUNCTION__;vlib_worker_thread_barrier_sync_int(X);} |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 205 | |
| 206 | void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 207 | void vlib_worker_thread_barrier_release (vlib_main_t * vm); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 208 | void vlib_worker_thread_node_refork (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 210 | static_always_inline uword |
| 211 | vlib_get_thread_index (void) |
| 212 | { |
Damjan Marion | f55f9b8 | 2017-05-10 21:06:28 +0200 | [diff] [blame] | 213 | return __os_thread_index; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 214 | } |
| 215 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 216 | always_inline void |
| 217 | vlib_smp_unsafe_warning (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | { |
| 219 | if (CLIB_DEBUG > 0) |
| 220 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 221 | if (vlib_get_thread_index ()) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 222 | fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 226 | typedef enum |
| 227 | { |
| 228 | VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0, |
| 229 | VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | } vlib_fork_fixup_t; |
| 231 | |
| 232 | void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which); |
| 233 | |
Dave Barach | 80f54e2 | 2017-03-08 19:08:56 -0500 | [diff] [blame] | 234 | #define foreach_vlib_main(body) \ |
| 235 | do { \ |
| 236 | vlib_main_t ** __vlib_mains = 0, *this_vlib_main; \ |
| 237 | int ii; \ |
| 238 | \ |
| 239 | for (ii = 0; ii < vec_len (vlib_mains); ii++) \ |
| 240 | { \ |
| 241 | this_vlib_main = vlib_mains[ii]; \ |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 242 | ASSERT (ii == 0 || \ |
| 243 | this_vlib_main->parked_at_barrier == 1); \ |
Dave Barach | 80f54e2 | 2017-03-08 19:08:56 -0500 | [diff] [blame] | 244 | if (this_vlib_main) \ |
| 245 | vec_add1 (__vlib_mains, this_vlib_main); \ |
| 246 | } \ |
| 247 | \ |
| 248 | for (ii = 0; ii < vec_len (__vlib_mains); ii++) \ |
| 249 | { \ |
| 250 | this_vlib_main = __vlib_mains[ii]; \ |
| 251 | /* body uses this_vlib_main... */ \ |
| 252 | (body); \ |
| 253 | } \ |
| 254 | vec_free (__vlib_mains); \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | } while (0); |
| 256 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 257 | #define foreach_sched_policy \ |
| 258 | _(SCHED_OTHER, OTHER, "other") \ |
| 259 | _(SCHED_BATCH, BATCH, "batch") \ |
| 260 | _(SCHED_IDLE, IDLE, "idle") \ |
| 261 | _(SCHED_FIFO, FIFO, "fifo") \ |
| 262 | _(SCHED_RR, RR, "rr") |
| 263 | |
| 264 | typedef enum |
| 265 | { |
| 266 | #define _(v,f,s) SCHED_POLICY_##f = v, |
| 267 | foreach_sched_policy |
| 268 | #undef _ |
| 269 | SCHED_POLICY_N, |
| 270 | } sched_policy_t; |
| 271 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 272 | typedef struct |
| 273 | { |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 274 | clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w, |
Mohsin Kazmi | 5d64c78 | 2018-09-11 20:27:09 +0200 | [diff] [blame] | 275 | unsigned cpu_id); |
| 276 | clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 277 | } vlib_thread_callbacks_t; |
| 278 | |
| 279 | typedef struct |
| 280 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | /* Link list of registrations, built by constructors */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 282 | vlib_thread_registration_t *next; |
| 283 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 284 | /* Vector of registrations, w/ non-data-structure clones at the top */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 285 | vlib_thread_registration_t **registrations; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 286 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 287 | uword *thread_registrations_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 288 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 289 | vlib_worker_thread_t *worker_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 290 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 291 | /* |
| 292 | * Launch all threads as pthreads, |
| 293 | * not eal_rte_launch (strict affinity) threads |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 294 | */ |
| 295 | int use_pthreads; |
| 296 | |
| 297 | /* Number of vlib_main / vnet_main clones */ |
| 298 | u32 n_vlib_mains; |
| 299 | |
| 300 | /* Number of thread stacks to create */ |
| 301 | u32 n_thread_stacks; |
| 302 | |
| 303 | /* Number of pthreads */ |
| 304 | u32 n_pthreads; |
| 305 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 306 | /* Number of threads */ |
| 307 | u32 n_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | |
| 309 | /* Number of cores to skip, must match the core mask */ |
| 310 | u32 skip_cores; |
| 311 | |
| 312 | /* Thread prefix name */ |
| 313 | u8 *thread_prefix; |
| 314 | |
| 315 | /* main thread lcore */ |
Damjan Marion | 858151f | 2018-07-11 10:51:00 +0200 | [diff] [blame] | 316 | u32 main_lcore; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 317 | |
| 318 | /* Bitmap of available CPU cores */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 319 | uword *cpu_core_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 320 | |
| 321 | /* Bitmap of available CPU sockets (NUMA nodes) */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 322 | uword *cpu_socket_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 323 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 324 | /* Worker handoff queues */ |
| 325 | vlib_frame_queue_main_t *frame_queue_mains; |
Damjan Marion | 0f8ecf0 | 2016-06-27 08:30:30 +0200 | [diff] [blame] | 326 | |
| 327 | /* worker thread initialization barrier */ |
| 328 | volatile u32 worker_thread_release; |
| 329 | |
Pavel Kotucek | 1e76583 | 2016-09-23 08:54:14 +0200 | [diff] [blame] | 330 | /* scheduling policy */ |
| 331 | u32 sched_policy; |
| 332 | |
| 333 | /* scheduling policy priority */ |
| 334 | u32 sched_priority; |
| 335 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 336 | /* callbacks */ |
| 337 | vlib_thread_callbacks_t cb; |
| 338 | int extern_thread_mgmt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 339 | } vlib_thread_main_t; |
| 340 | |
Damjan Marion | 6a7acc2 | 2016-12-19 16:28:36 +0100 | [diff] [blame] | 341 | extern vlib_thread_main_t vlib_thread_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 342 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 343 | #include <vlib/global_funcs.h> |
| 344 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 345 | #define VLIB_REGISTER_THREAD(x,...) \ |
| 346 | __VA_ARGS__ vlib_thread_registration_t x; \ |
| 347 | static void __vlib_add_thread_registration_##x (void) \ |
| 348 | __attribute__((__constructor__)) ; \ |
| 349 | static void __vlib_add_thread_registration_##x (void) \ |
| 350 | { \ |
| 351 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 352 | x.next = tm->next; \ |
| 353 | tm->next = &x; \ |
| 354 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 355 | static void __vlib_rm_thread_registration_##x (void) \ |
| 356 | __attribute__((__destructor__)) ; \ |
| 357 | static void __vlib_rm_thread_registration_##x (void) \ |
| 358 | { \ |
| 359 | vlib_thread_main_t * tm = &vlib_thread_main; \ |
| 360 | VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \ |
| 361 | } \ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 362 | __VA_ARGS__ vlib_thread_registration_t x |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 363 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 364 | always_inline u32 |
| 365 | vlib_num_workers () |
| 366 | { |
| 367 | return vlib_thread_main.n_vlib_mains - 1; |
| 368 | } |
| 369 | |
| 370 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 371 | vlib_get_worker_thread_index (u32 worker_index) |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 372 | { |
| 373 | return worker_index + 1; |
| 374 | } |
| 375 | |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 376 | always_inline u32 |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 377 | vlib_get_worker_index (u32 thread_index) |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 378 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 379 | return thread_index - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | always_inline u32 |
| 383 | vlib_get_current_worker_index () |
| 384 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 385 | return vlib_get_thread_index () - 1; |
Damjan Marion | 3a4ed39 | 2016-11-08 13:20:42 +0100 | [diff] [blame] | 386 | } |
| 387 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 388 | static inline void |
| 389 | vlib_worker_thread_barrier_check (void) |
| 390 | { |
| 391 | if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier)) |
| 392 | { |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 393 | vlib_main_t *vm = vlib_get_main (); |
| 394 | u32 thread_index = vm->thread_index; |
| 395 | f64 t = vlib_time_now (vm); |
| 396 | |
| 397 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 398 | { |
| 399 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 400 | /* *INDENT-OFF* */ |
| 401 | ELOG_TYPE_DECLARE (e) = { |
| 402 | .format = "barrier-wait-thread-%d", |
| 403 | .format_args = "i4", |
| 404 | }; |
| 405 | /* *INDENT-ON* */ |
| 406 | |
| 407 | struct |
| 408 | { |
| 409 | u32 thread_index; |
| 410 | } __clib_packed *ed; |
| 411 | |
| 412 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 413 | w->elog_track); |
| 414 | ed->thread_index = thread_index; |
| 415 | } |
| 416 | |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 417 | clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1); |
| 418 | if (CLIB_DEBUG > 0) |
| 419 | { |
| 420 | vm = vlib_get_main (); |
| 421 | vm->parked_at_barrier = 1; |
| 422 | } |
| 423 | while (*vlib_worker_threads->wait_at_barrier) |
| 424 | ; |
| 425 | if (CLIB_DEBUG > 0) |
| 426 | vm->parked_at_barrier = 0; |
| 427 | clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1); |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 428 | |
| 429 | if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required)) |
| 430 | { |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 431 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 432 | { |
| 433 | t = vlib_time_now (vm) - t; |
| 434 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 435 | /* *INDENT-OFF* */ |
| 436 | ELOG_TYPE_DECLARE (e) = { |
| 437 | .format = "barrier-refork-thread-%d", |
| 438 | .format_args = "i4", |
| 439 | }; |
| 440 | /* *INDENT-ON* */ |
| 441 | |
| 442 | struct |
| 443 | { |
| 444 | u32 thread_index; |
| 445 | } __clib_packed *ed; |
| 446 | |
| 447 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 448 | w->elog_track); |
| 449 | ed->thread_index = thread_index; |
| 450 | } |
| 451 | |
Colin Tregenza Dancer | 2159618 | 2017-09-04 15:27:49 +0100 | [diff] [blame] | 452 | vlib_worker_thread_node_refork (); |
| 453 | clib_smp_atomic_add (vlib_worker_threads->node_reforks_required, |
| 454 | -1); |
| 455 | while (*vlib_worker_threads->node_reforks_required) |
| 456 | ; |
| 457 | } |
Dave Barach | 88c6e00 | 2018-09-30 15:54:06 -0400 | [diff] [blame] | 458 | if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled)) |
| 459 | { |
| 460 | t = vlib_time_now (vm) - t; |
| 461 | vlib_worker_thread_t *w = vlib_worker_threads + thread_index; |
| 462 | /* *INDENT-OFF* */ |
| 463 | ELOG_TYPE_DECLARE (e) = { |
| 464 | .format = "barrier-released-thread-%d: %dus", |
| 465 | .format_args = "i4i4", |
| 466 | }; |
| 467 | /* *INDENT-ON* */ |
| 468 | |
| 469 | struct |
| 470 | { |
| 471 | u32 thread_index; |
| 472 | u32 duration; |
| 473 | } __clib_packed *ed; |
| 474 | |
| 475 | ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, |
| 476 | w->elog_track); |
| 477 | ed->thread_index = thread_index; |
| 478 | ed->duration = (int) (1000000.0 * t); |
| 479 | } |
Damjan Marion | ce359db | 2017-03-16 16:15:38 +0100 | [diff] [blame] | 480 | } |
| 481 | } |
| 482 | |
Damjan Marion | 6403436 | 2016-11-07 22:19:55 +0100 | [diff] [blame] | 483 | always_inline vlib_main_t * |
| 484 | vlib_get_worker_vlib_main (u32 worker_index) |
| 485 | { |
| 486 | vlib_main_t *vm; |
| 487 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 488 | ASSERT (worker_index < tm->n_vlib_mains - 1); |
| 489 | vm = vlib_mains[worker_index + 1]; |
| 490 | ASSERT (vm); |
| 491 | return vm; |
| 492 | } |
| 493 | |
Florin Coras | 568ebc7 | 2018-09-18 16:12:50 -0700 | [diff] [blame] | 494 | static inline u8 |
| 495 | vlib_thread_is_main_w_barrier (void) |
| 496 | { |
| 497 | return (!vlib_num_workers () |
| 498 | || ((vlib_get_thread_index () == 0 |
| 499 | && vlib_worker_threads->wait_at_barrier[0]))); |
| 500 | } |
| 501 | |
Damjan Marion | aaef1eb | 2016-11-08 17:37:01 +0100 | [diff] [blame] | 502 | static inline void |
| 503 | vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf) |
| 504 | { |
| 505 | CLIB_MEMORY_BARRIER (); |
| 506 | hf->valid = 1; |
| 507 | } |
| 508 | |
| 509 | static inline vlib_frame_queue_elt_t * |
| 510 | vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index) |
| 511 | { |
| 512 | vlib_frame_queue_t *fq; |
| 513 | vlib_frame_queue_elt_t *elt; |
| 514 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 515 | vlib_frame_queue_main_t *fqm = |
| 516 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 517 | u64 new_tail; |
| 518 | |
| 519 | fq = fqm->vlib_frame_queues[index]; |
| 520 | ASSERT (fq); |
| 521 | |
| 522 | new_tail = __sync_add_and_fetch (&fq->tail, 1); |
| 523 | |
| 524 | /* Wait until a ring slot is available */ |
| 525 | while (new_tail >= fq->head_hint + fq->nelts) |
| 526 | vlib_worker_thread_barrier_check (); |
| 527 | |
| 528 | elt = fq->elts + (new_tail & (fq->nelts - 1)); |
| 529 | |
| 530 | /* this would be very bad... */ |
| 531 | while (elt->valid) |
| 532 | ; |
| 533 | |
| 534 | elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME; |
| 535 | elt->last_n_vectors = elt->n_vectors = 0; |
| 536 | |
| 537 | return elt; |
| 538 | } |
| 539 | |
| 540 | static inline vlib_frame_queue_t * |
| 541 | is_vlib_frame_queue_congested (u32 frame_queue_index, |
| 542 | u32 index, |
| 543 | u32 queue_hi_thresh, |
| 544 | vlib_frame_queue_t ** |
| 545 | handoff_queue_by_worker_index) |
| 546 | { |
| 547 | vlib_frame_queue_t *fq; |
| 548 | vlib_thread_main_t *tm = &vlib_thread_main; |
| 549 | vlib_frame_queue_main_t *fqm = |
| 550 | vec_elt_at_index (tm->frame_queue_mains, frame_queue_index); |
| 551 | |
| 552 | fq = handoff_queue_by_worker_index[index]; |
| 553 | if (fq != (vlib_frame_queue_t *) (~0)) |
| 554 | return fq; |
| 555 | |
| 556 | fq = fqm->vlib_frame_queues[index]; |
| 557 | ASSERT (fq); |
| 558 | |
| 559 | if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh))) |
| 560 | { |
| 561 | /* a valid entry in the array will indicate the queue has reached |
| 562 | * the specified threshold and is congested |
| 563 | */ |
| 564 | handoff_queue_by_worker_index[index] = fq; |
| 565 | fq->enqueue_full_events++; |
| 566 | return fq; |
| 567 | } |
| 568 | |
| 569 | return NULL; |
| 570 | } |
| 571 | |
| 572 | static inline vlib_frame_queue_elt_t * |
| 573 | vlib_get_worker_handoff_queue_elt (u32 frame_queue_index, |
| 574 | u32 vlib_worker_index, |
| 575 | vlib_frame_queue_elt_t ** |
| 576 | handoff_queue_elt_by_worker_index) |
| 577 | { |
| 578 | vlib_frame_queue_elt_t *elt; |
| 579 | |
| 580 | if (handoff_queue_elt_by_worker_index[vlib_worker_index]) |
| 581 | return handoff_queue_elt_by_worker_index[vlib_worker_index]; |
| 582 | |
| 583 | elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index); |
| 584 | |
| 585 | handoff_queue_elt_by_worker_index[vlib_worker_index] = elt; |
| 586 | |
| 587 | return elt; |
| 588 | } |
| 589 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 590 | u8 *vlib_thread_stack_init (uword thread_index); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 591 | int vlib_thread_cb_register (struct vlib_main_t *vm, |
| 592 | vlib_thread_callbacks_t * cb); |
Dave Barach | 69128d0 | 2017-09-26 10:54:34 -0400 | [diff] [blame] | 593 | extern void *rpc_call_main_thread_cb_fn; |
| 594 | |
| 595 | void |
| 596 | vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t * |
| 597 | args); |
| 598 | void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 599 | |
Dave Barach | c3a0655 | 2018-10-01 09:25:32 -0400 | [diff] [blame^] | 600 | u32 elog_global_id_for_msg_name (const char *msg_name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 601 | #endif /* included_vlib_threads_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 602 | |
| 603 | /* |
| 604 | * fd.io coding-style-patch-verification: ON |
| 605 | * |
| 606 | * Local Variables: |
| 607 | * eval: (c-set-style "gnu") |
| 608 | * End: |
| 609 | */ |