blob: e8d416997b0beb1ca99075ee453d6181582bc1f3 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +000019#include <vppinfra/callback.h>
Pavel Kotucek1e765832016-09-23 08:54:14 +020020#include <linux/sched.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021
Damjan Marion6a7acc22016-12-19 16:28:36 +010022extern vlib_main_t **vlib_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -070023
Dave Barach9b8ffd92016-07-08 08:13:45 -040024void vlib_set_thread_name (char *name);
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
26/* arg is actually a vlib__thread_t * */
Dave Barach9b8ffd92016-07-08 08:13:45 -040027typedef void (vlib_thread_function_t) (void *arg);
Ed Warnickecb9cada2015-12-08 15:45:58 -070028
Dave Barach9b8ffd92016-07-08 08:13:45 -040029typedef struct vlib_thread_registration_
30{
Ed Warnickecb9cada2015-12-08 15:45:58 -070031 /* constructor generated list of thread registrations */
Dave Barach9b8ffd92016-07-08 08:13:45 -040032 struct vlib_thread_registration_ *next;
Ed Warnickecb9cada2015-12-08 15:45:58 -070033
34 /* config parameters */
Dave Barach9b8ffd92016-07-08 08:13:45 -040035 char *name;
36 char *short_name;
37 vlib_thread_function_t *function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070038 uword mheap_size;
39 int fixed_count;
40 u32 count;
41 int no_data_structure_clone;
Bud Grise68adab92016-02-12 10:36:11 -050042 u32 frame_queue_nelts;
43
Ed Warnickecb9cada2015-12-08 15:45:58 -070044 /* All threads of this type run on pthreads */
45 int use_pthreads;
46 u32 first_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -040047 uword *coremask;
Ed Warnickecb9cada2015-12-08 15:45:58 -070048} vlib_thread_registration_t;
49
Damjan Marion3f46baf2016-02-06 19:16:21 +010050/*
51 * Frames have their cpu / vlib_main_t index in the low-order N bits
52 * Make VLIB_MAX_CPUS a power-of-two, please...
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 */
Damjan Marion3f46baf2016-02-06 19:16:21 +010054
Christophe Fontainefef15b42016-04-09 12:38:49 +090055#ifndef VLIB_MAX_CPUS
Damjan Marion3f46baf2016-02-06 19:16:21 +010056#define VLIB_MAX_CPUS 256
Christophe Fontainefef15b42016-04-09 12:38:49 +090057#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Damjan Marionce8debf2016-02-06 19:16:21 +010059#if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
60#error Please increase number of per-cpu mheaps
61#endif
62
Dave Barach9b8ffd92016-07-08 08:13:45 -040063#define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
Ed Warnickecb9cada2015-12-08 15:45:58 -070064#define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
65
Florin Coras93992a92017-05-24 18:03:56 -070066#define VLIB_LOG2_THREAD_STACK_SIZE (21)
Ed Warnickecb9cada2015-12-08 15:45:58 -070067#define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
68
Dave Barach9b8ffd92016-07-08 08:13:45 -040069typedef enum
70{
71 VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME,
Ed Warnickecb9cada2015-12-08 15:45:58 -070072} vlib_frame_queue_msg_type_t;
73
Dave Barach9b8ffd92016-07-08 08:13:45 -040074typedef struct
75{
Damjan Marionb0d680b2016-11-04 14:41:44 +010076 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077 volatile u32 valid;
Dave Barach9b8ffd92016-07-08 08:13:45 -040078 u32 msg_type;
Ed Warnickecb9cada2015-12-08 15:45:58 -070079 u32 n_vectors;
80 u32 last_n_vectors;
81
82 /* 256 * 4 = 1024 bytes, even mult of cache line size */
83 u32 buffer_index[VLIB_FRAME_SIZE];
Dave Barach9b8ffd92016-07-08 08:13:45 -040084}
85vlib_frame_queue_elt_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Dave Barach9b8ffd92016-07-08 08:13:45 -040087typedef struct
88{
Ed Warnickecb9cada2015-12-08 15:45:58 -070089 /* First cache line */
Damjan Marionb0d680b2016-11-04 14:41:44 +010090 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 volatile u32 *wait_at_barrier;
92 volatile u32 *workers_at_barrier;
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
94 /* Second Cache Line */
Damjan Marionb0d680b2016-11-04 14:41:44 +010095 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 void *thread_mheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -040097 u8 *thread_stack;
98 void (*thread_function) (void *);
99 void *thread_function_arg;
100 i64 recursion_level;
101 elog_track_t elog_track;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 u32 instance_id;
103 vlib_thread_registration_t *registration;
104 u8 *name;
Bud Grise42f20062016-03-16 13:09:46 -0400105 u64 barrier_sync_count;
Dave Barach88c6e002018-09-30 15:54:06 -0400106 u8 barrier_elog_enabled;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100107 const char *barrier_caller;
108 const char *barrier_context;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100109 volatile u32 *node_reforks_required;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
111 long lwp;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200112 int cpu_id;
113 int core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500114 int numa_id;
Pavel Kotucek98765202016-10-07 08:37:28 +0200115 pthread_t thread_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116} vlib_worker_thread_t;
117
Damjan Marion6a7acc22016-12-19 16:28:36 +0100118extern vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119
Dave Barach9b8ffd92016-07-08 08:13:45 -0400120typedef struct
121{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100123 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 volatile u64 tail;
125 u64 enqueues;
126 u64 enqueue_ticks;
127 u64 enqueue_vectors;
128 u32 enqueue_full_events;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129
130 /* dequeue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100131 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 volatile u64 head;
133 u64 dequeues;
134 u64 dequeue_ticks;
135 u64 dequeue_vectors;
136 u64 trace;
137 u64 vector_threshold;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
139 /* dequeue hint to enqueue side */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100140 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141 volatile u64 head_hint;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
143 /* read-only, constant, shared */
Damjan Marionb0d680b2016-11-04 14:41:44 +0100144 CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 vlib_frame_queue_elt_t *elts;
146 u32 nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400147}
148vlib_frame_queue_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100150typedef struct
151{
Damjan Marion78fd7e82018-07-20 18:47:05 +0200152 vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index;
153 vlib_frame_queue_t **congested_handoff_queue_by_thread_index;
154} vlib_frame_queue_per_thread_data_t;
155
156typedef struct
157{
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100158 u32 node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200159 u32 frame_queue_nelts;
160 u32 queue_hi_thresh;
161
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100162 vlib_frame_queue_t **vlib_frame_queues;
Damjan Marion78fd7e82018-07-20 18:47:05 +0200163 vlib_frame_queue_per_thread_data_t *per_thread_data;
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100164
165 /* for frame queue tracing */
166 frame_queue_trace_t *frame_queue_traces;
167 frame_queue_nelt_counter_t *frame_queue_histogram;
168} vlib_frame_queue_main_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
Dave Barach69128d02017-09-26 10:54:34 -0400170typedef struct
171{
172 uword node_index;
173 uword type_opaque;
174 uword data;
175} vlib_process_signal_event_mt_args_t;
176
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177/* Called early, in thread 0's context */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178clib_error_t *vlib_thread_init (vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
181 u32 frame_queue_index, vlib_frame_t * frame,
182 vlib_frame_queue_msg_type_t type);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183
Damjan Marione9d52d52017-03-09 15:42:26 +0100184int
185vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Dave Barach9b8ffd92016-07-08 08:13:45 -0400187void vlib_worker_thread_node_runtime_update (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189void vlib_create_worker_threads (vlib_main_t * vm, int n,
190 void (*thread_function) (void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
192void vlib_worker_thread_init (vlib_worker_thread_t * w);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100193u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194
195/* Check for a barrier sync request every 30ms */
196#define BARRIER_SYNC_DELAY (0.030000)
197
198#if CLIB_DEBUG > 0
199/* long barrier timeout, for gdb... */
200#define BARRIER_SYNC_TIMEOUT (600.1)
201#else
202#define BARRIER_SYNC_TIMEOUT (1.0)
203#endif
204
Damjan Marion8343ee52019-02-26 17:15:48 +0100205#define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100206
Damjan Marion8343ee52019-02-26 17:15:48 +0100207void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm,
208 const char *func_name);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209void vlib_worker_thread_barrier_release (vlib_main_t * vm);
Dave Barachc602b382019-06-03 19:48:22 -0400210void vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100211void vlib_worker_thread_node_refork (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Damjan Marion586afd72017-04-05 19:18:20 +0200213static_always_inline uword
214vlib_get_thread_index (void)
215{
Damjan Marionf55f9b82017-05-10 21:06:28 +0200216 return __os_thread_index;
Damjan Marion586afd72017-04-05 19:18:20 +0200217}
218
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219always_inline void
220vlib_smp_unsafe_warning (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221{
222 if (CLIB_DEBUG > 0)
223 {
Damjan Marion586afd72017-04-05 19:18:20 +0200224 if (vlib_get_thread_index ())
Dave Barach9b8ffd92016-07-08 08:13:45 -0400225 fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 }
227}
228
Dave Barach9b8ffd92016-07-08 08:13:45 -0400229typedef enum
230{
231 VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
232 VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233} vlib_fork_fixup_t;
234
235void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
236
Dave Barach80f54e22017-03-08 19:08:56 -0500237#define foreach_vlib_main(body) \
238do { \
239 vlib_main_t ** __vlib_mains = 0, *this_vlib_main; \
240 int ii; \
241 \
242 for (ii = 0; ii < vec_len (vlib_mains); ii++) \
243 { \
244 this_vlib_main = vlib_mains[ii]; \
Damjan Marionce359db2017-03-16 16:15:38 +0100245 ASSERT (ii == 0 || \
246 this_vlib_main->parked_at_barrier == 1); \
Dave Barach80f54e22017-03-08 19:08:56 -0500247 if (this_vlib_main) \
248 vec_add1 (__vlib_mains, this_vlib_main); \
249 } \
250 \
251 for (ii = 0; ii < vec_len (__vlib_mains); ii++) \
252 { \
253 this_vlib_main = __vlib_mains[ii]; \
254 /* body uses this_vlib_main... */ \
255 (body); \
256 } \
257 vec_free (__vlib_mains); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258} while (0);
259
Pavel Kotucek1e765832016-09-23 08:54:14 +0200260#define foreach_sched_policy \
261 _(SCHED_OTHER, OTHER, "other") \
262 _(SCHED_BATCH, BATCH, "batch") \
263 _(SCHED_IDLE, IDLE, "idle") \
264 _(SCHED_FIFO, FIFO, "fifo") \
265 _(SCHED_RR, RR, "rr")
266
267typedef enum
268{
269#define _(v,f,s) SCHED_POLICY_##f = v,
270 foreach_sched_policy
271#undef _
272 SCHED_POLICY_N,
273} sched_policy_t;
274
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275typedef struct
276{
Damjan Marion878c6092017-01-04 13:19:27 +0100277 clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200278 unsigned cpu_id);
279 clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu);
Damjan Marion878c6092017-01-04 13:19:27 +0100280} vlib_thread_callbacks_t;
281
282typedef struct
283{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 /* Link list of registrations, built by constructors */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285 vlib_thread_registration_t *next;
286
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 /* Vector of registrations, w/ non-data-structure clones at the top */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400288 vlib_thread_registration_t **registrations;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
Dave Barach9b8ffd92016-07-08 08:13:45 -0400290 uword *thread_registrations_by_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292 vlib_worker_thread_t *worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293
Dave Barach9b8ffd92016-07-08 08:13:45 -0400294 /*
295 * Launch all threads as pthreads,
296 * not eal_rte_launch (strict affinity) threads
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 */
298 int use_pthreads;
299
300 /* Number of vlib_main / vnet_main clones */
301 u32 n_vlib_mains;
302
303 /* Number of thread stacks to create */
304 u32 n_thread_stacks;
305
306 /* Number of pthreads */
307 u32 n_pthreads;
308
Damjan Marion878c6092017-01-04 13:19:27 +0100309 /* Number of threads */
310 u32 n_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311
312 /* Number of cores to skip, must match the core mask */
313 u32 skip_cores;
314
315 /* Thread prefix name */
316 u8 *thread_prefix;
317
318 /* main thread lcore */
Damjan Marion858151f2018-07-11 10:51:00 +0200319 u32 main_lcore;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
321 /* Bitmap of available CPU cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322 uword *cpu_core_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
324 /* Bitmap of available CPU sockets (NUMA nodes) */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325 uword *cpu_socket_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100327 /* Worker handoff queues */
328 vlib_frame_queue_main_t *frame_queue_mains;
Damjan Marion0f8ecf02016-06-27 08:30:30 +0200329
330 /* worker thread initialization barrier */
331 volatile u32 worker_thread_release;
332
Pavel Kotucek1e765832016-09-23 08:54:14 +0200333 /* scheduling policy */
334 u32 sched_policy;
335
336 /* scheduling policy priority */
337 u32 sched_priority;
338
Damjan Marion878c6092017-01-04 13:19:27 +0100339 /* callbacks */
340 vlib_thread_callbacks_t cb;
341 int extern_thread_mgmt;
Dave Baracha690fdb2020-01-21 12:34:55 -0500342
343 /* NUMA-bound heap size */
344 uword numa_heap_size;
345
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346} vlib_thread_main_t;
347
Damjan Marion6a7acc22016-12-19 16:28:36 +0100348extern vlib_thread_main_t vlib_thread_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
Damjan Marionce359db2017-03-16 16:15:38 +0100350#include <vlib/global_funcs.h>
351
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352#define VLIB_REGISTER_THREAD(x,...) \
353 __VA_ARGS__ vlib_thread_registration_t x; \
354static void __vlib_add_thread_registration_##x (void) \
355 __attribute__((__constructor__)) ; \
356static void __vlib_add_thread_registration_##x (void) \
357{ \
358 vlib_thread_main_t * tm = &vlib_thread_main; \
359 x.next = tm->next; \
360 tm->next = &x; \
361} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200362static void __vlib_rm_thread_registration_##x (void) \
363 __attribute__((__destructor__)) ; \
364static void __vlib_rm_thread_registration_##x (void) \
365{ \
366 vlib_thread_main_t * tm = &vlib_thread_main; \
367 VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next); \
368} \
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369__VA_ARGS__ vlib_thread_registration_t x
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
Damjan Marion64034362016-11-07 22:19:55 +0100371always_inline u32
372vlib_num_workers ()
373{
374 return vlib_thread_main.n_vlib_mains - 1;
375}
376
377always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200378vlib_get_worker_thread_index (u32 worker_index)
Damjan Marion64034362016-11-07 22:19:55 +0100379{
380 return worker_index + 1;
381}
382
Damjan Marion3a4ed392016-11-08 13:20:42 +0100383always_inline u32
Damjan Marion586afd72017-04-05 19:18:20 +0200384vlib_get_worker_index (u32 thread_index)
Damjan Marion3a4ed392016-11-08 13:20:42 +0100385{
Damjan Marion586afd72017-04-05 19:18:20 +0200386 return thread_index - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100387}
388
389always_inline u32
390vlib_get_current_worker_index ()
391{
Damjan Marion586afd72017-04-05 19:18:20 +0200392 return vlib_get_thread_index () - 1;
Damjan Marion3a4ed392016-11-08 13:20:42 +0100393}
394
Damjan Marionce359db2017-03-16 16:15:38 +0100395static inline void
396vlib_worker_thread_barrier_check (void)
397{
398 if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier))
399 {
Dave Barach88c6e002018-09-30 15:54:06 -0400400 vlib_main_t *vm = vlib_get_main ();
401 u32 thread_index = vm->thread_index;
402 f64 t = vlib_time_now (vm);
403
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000404 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
405 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
406 vm->clib_time.last_cpu_time, 0 /* enter */ );
407
Dave Barach88c6e002018-09-30 15:54:06 -0400408 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
409 {
410 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
411 /* *INDENT-OFF* */
412 ELOG_TYPE_DECLARE (e) = {
413 .format = "barrier-wait-thread-%d",
414 .format_args = "i4",
415 };
416 /* *INDENT-ON* */
417
418 struct
419 {
420 u32 thread_index;
421 } __clib_packed *ed;
422
423 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
424 w->elog_track);
425 ed->thread_index = thread_index;
426 }
427
Damjan Marionce359db2017-03-16 16:15:38 +0100428 if (CLIB_DEBUG > 0)
429 {
430 vm = vlib_get_main ();
431 vm->parked_at_barrier = 1;
432 }
Alexander Kabaevfeda5452019-11-01 18:26:20 -0400433 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Damjan Marionce359db2017-03-16 16:15:38 +0100434 while (*vlib_worker_threads->wait_at_barrier)
435 ;
Dave Baracha4324a92019-02-19 17:05:30 -0500436
437 /*
438 * Recompute the offset from thread-0 time.
439 * Note that vlib_time_now adds vm->time_offset, so
440 * clear it first. Save the resulting idea of "now", to
441 * see how well we're doing. See show_clock_command_fn(...)
442 */
443 {
444 f64 now;
445 vm->time_offset = 0.0;
446 now = vlib_time_now (vm);
447 vm->time_offset = vlib_global_main.time_last_barrier_release - now;
448 vm->time_last_barrier_release = vlib_time_now (vm);
449 }
450
Damjan Marionce359db2017-03-16 16:15:38 +0100451 if (CLIB_DEBUG > 0)
452 vm->parked_at_barrier = 0;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000453 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100454
455 if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required))
456 {
Dave Barach88c6e002018-09-30 15:54:06 -0400457 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
458 {
459 t = vlib_time_now (vm) - t;
460 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
461 /* *INDENT-OFF* */
462 ELOG_TYPE_DECLARE (e) = {
463 .format = "barrier-refork-thread-%d",
464 .format_args = "i4",
465 };
466 /* *INDENT-ON* */
467
468 struct
469 {
470 u32 thread_index;
471 } __clib_packed *ed;
472
473 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
474 w->elog_track);
475 ed->thread_index = thread_index;
476 }
477
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100478 vlib_worker_thread_node_refork ();
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000479 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
480 -1);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100481 while (*vlib_worker_threads->node_reforks_required)
482 ;
483 }
Dave Barach88c6e002018-09-30 15:54:06 -0400484 if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
485 {
486 t = vlib_time_now (vm) - t;
487 vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
488 /* *INDENT-OFF* */
489 ELOG_TYPE_DECLARE (e) = {
490 .format = "barrier-released-thread-%d: %dus",
491 .format_args = "i4i4",
492 };
493 /* *INDENT-ON* */
494
495 struct
496 {
497 u32 thread_index;
498 u32 duration;
499 } __clib_packed *ed;
500
501 ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
502 w->elog_track);
503 ed->thread_index = thread_index;
504 ed->duration = (int) (1000000.0 * t);
505 }
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000506
507 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
508 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
509 vm->clib_time.last_cpu_time, 1 /* leave */ );
Damjan Marionce359db2017-03-16 16:15:38 +0100510 }
511}
512
Damjan Marion64034362016-11-07 22:19:55 +0100513always_inline vlib_main_t *
514vlib_get_worker_vlib_main (u32 worker_index)
515{
516 vlib_main_t *vm;
517 vlib_thread_main_t *tm = &vlib_thread_main;
518 ASSERT (worker_index < tm->n_vlib_mains - 1);
519 vm = vlib_mains[worker_index + 1];
520 ASSERT (vm);
521 return vm;
522}
523
Florin Coras568ebc72018-09-18 16:12:50 -0700524static inline u8
525vlib_thread_is_main_w_barrier (void)
526{
527 return (!vlib_num_workers ()
528 || ((vlib_get_thread_index () == 0
529 && vlib_worker_threads->wait_at_barrier[0])));
530}
531
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100532static inline void
533vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf)
534{
535 CLIB_MEMORY_BARRIER ();
536 hf->valid = 1;
537}
538
539static inline vlib_frame_queue_elt_t *
540vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
541{
542 vlib_frame_queue_t *fq;
543 vlib_frame_queue_elt_t *elt;
544 vlib_thread_main_t *tm = &vlib_thread_main;
545 vlib_frame_queue_main_t *fqm =
546 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
547 u64 new_tail;
548
549 fq = fqm->vlib_frame_queues[index];
550 ASSERT (fq);
551
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000552 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +0100553
554 /* Wait until a ring slot is available */
555 while (new_tail >= fq->head_hint + fq->nelts)
556 vlib_worker_thread_barrier_check ();
557
558 elt = fq->elts + (new_tail & (fq->nelts - 1));
559
560 /* this would be very bad... */
561 while (elt->valid)
562 ;
563
564 elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME;
565 elt->last_n_vectors = elt->n_vectors = 0;
566
567 return elt;
568}
569
570static inline vlib_frame_queue_t *
571is_vlib_frame_queue_congested (u32 frame_queue_index,
572 u32 index,
573 u32 queue_hi_thresh,
574 vlib_frame_queue_t **
575 handoff_queue_by_worker_index)
576{
577 vlib_frame_queue_t *fq;
578 vlib_thread_main_t *tm = &vlib_thread_main;
579 vlib_frame_queue_main_t *fqm =
580 vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
581
582 fq = handoff_queue_by_worker_index[index];
583 if (fq != (vlib_frame_queue_t *) (~0))
584 return fq;
585
586 fq = fqm->vlib_frame_queues[index];
587 ASSERT (fq);
588
589 if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
590 {
591 /* a valid entry in the array will indicate the queue has reached
592 * the specified threshold and is congested
593 */
594 handoff_queue_by_worker_index[index] = fq;
595 fq->enqueue_full_events++;
596 return fq;
597 }
598
599 return NULL;
600}
601
602static inline vlib_frame_queue_elt_t *
603vlib_get_worker_handoff_queue_elt (u32 frame_queue_index,
604 u32 vlib_worker_index,
605 vlib_frame_queue_elt_t **
606 handoff_queue_elt_by_worker_index)
607{
608 vlib_frame_queue_elt_t *elt;
609
610 if (handoff_queue_elt_by_worker_index[vlib_worker_index])
611 return handoff_queue_elt_by_worker_index[vlib_worker_index];
612
613 elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
614
615 handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
616
617 return elt;
618}
619
Damjan Marion586afd72017-04-05 19:18:20 +0200620u8 *vlib_thread_stack_init (uword thread_index);
Damjan Marion878c6092017-01-04 13:19:27 +0100621int vlib_thread_cb_register (struct vlib_main_t *vm,
622 vlib_thread_callbacks_t * cb);
Dave Barach69128d02017-09-26 10:54:34 -0400623extern void *rpc_call_main_thread_cb_fn;
624
625void
626vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
627 args);
628void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size);
Dave Baracha690fdb2020-01-21 12:34:55 -0500629void vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id);
630
631
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632#endif /* included_vlib_threads_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400633
634/*
635 * fd.io coding-style-patch-verification: ON
636 *
637 * Local Variables:
638 * eval: (c-set-style "gnu")
639 * End:
640 */