blob: 370c0b15da5c4454626d0ca58bdc051fbca583fc [file] [log] [blame]
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001/*
2 * functions about threads.
3 *
4 * Copyright (C) 2017 Christopher Fauet - cfaulet@haproxy.com
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau149ab772019-01-26 14:27:06 +010013#define _GNU_SOURCE
Christopher Faulet339fff82017-10-19 11:59:15 +020014#include <unistd.h>
Willy Tarreau0ccd3222018-07-30 10:34:35 +020015#include <stdlib.h>
Christopher Faulet339fff82017-10-19 11:59:15 +020016#include <fcntl.h>
17
Willy Tarreau149ab772019-01-26 14:27:06 +010018#ifdef USE_CPU_AFFINITY
19#include <sched.h>
20#endif
21
Olivier Houchard46453d32019-04-11 00:06:47 +020022#ifdef __FreeBSD__
23#include <sys/cpuset.h>
24#endif
25
Willy Tarreau6be78492020-06-05 00:00:29 +020026#include <haproxy/cfgparse.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/fd.h>
28#include <haproxy/global.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020029#include <haproxy/thread.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020030#include <haproxy/tools.h>
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020031
David Carliera92c5ce2019-09-13 05:03:12 +010032struct thread_info ha_thread_info[MAX_THREADS] = { };
33THREAD_LOCAL struct thread_info *ti = &ha_thread_info[0];
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020034
35#ifdef USE_THREAD
36
Willy Tarreau60b639c2018-08-02 10:16:17 +020037volatile unsigned long threads_want_rdv_mask = 0;
38volatile unsigned long threads_harmless_mask = 0;
Willy Tarreau9a1f5732019-06-09 12:20:02 +020039volatile unsigned long threads_sync_mask = 0;
Willy Tarreau0ccd3222018-07-30 10:34:35 +020040volatile unsigned long all_threads_mask = 1; // nbthread 1 assumed by default
Willy Tarreau0c026f42018-08-01 19:12:20 +020041THREAD_LOCAL unsigned int tid = 0;
42THREAD_LOCAL unsigned long tid_bit = (1UL << 0);
Willy Tarreau149ab772019-01-26 14:27:06 +010043int thread_cpus_enabled_at_boot = 1;
Willy Tarreau0c026f42018-08-01 19:12:20 +020044
Christopher Faulet339fff82017-10-19 11:59:15 +020045
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020046#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
47struct lock_stat lock_stats[LOCK_LABELS];
48#endif
49
Willy Tarreau60b639c2018-08-02 10:16:17 +020050/* Marks the thread as harmless until the last thread using the rendez-vous
51 * point quits. Given that we can wait for a long time, sched_yield() is used
52 * when available to offer the CPU resources to competing threads if needed.
53 */
54void thread_harmless_till_end()
55{
Olivier Houchardb23a61f2019-03-08 18:51:17 +010056 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +020057 while (threads_want_rdv_mask & all_threads_mask) {
Willy Tarreau38171da2019-05-17 16:33:13 +020058 ha_thread_relax();
Willy Tarreau60b639c2018-08-02 10:16:17 +020059 }
60}
61
62/* Isolates the current thread : request the ability to work while all other
63 * threads are harmless. Only returns once all of them are harmless, with the
64 * current thread's bit in threads_harmless_mask cleared. Needs to be completed
65 * using thread_release().
66 */
67void thread_isolate()
68{
69 unsigned long old;
70
Olivier Houchardb23a61f2019-03-08 18:51:17 +010071 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
72 __ha_barrier_atomic_store();
73 _HA_ATOMIC_OR(&threads_want_rdv_mask, tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +020074
75 /* wait for all threads to become harmless */
76 old = threads_harmless_mask;
77 while (1) {
78 if (unlikely((old & all_threads_mask) != all_threads_mask))
79 old = threads_harmless_mask;
Olivier Houchardb23a61f2019-03-08 18:51:17 +010080 else if (_HA_ATOMIC_CAS(&threads_harmless_mask, &old, old & ~tid_bit))
Willy Tarreau60b639c2018-08-02 10:16:17 +020081 break;
82
Willy Tarreau38171da2019-05-17 16:33:13 +020083 ha_thread_relax();
Willy Tarreau60b639c2018-08-02 10:16:17 +020084 }
85 /* one thread gets released at a time here, with its harmess bit off.
86 * The loss of this bit makes the other one continue to spin while the
87 * thread is working alone.
88 */
89}
90
91/* Cancels the effect of thread_isolate() by releasing the current thread's bit
92 * in threads_want_rdv_mask and by marking this thread as harmless until the
93 * last worker finishes.
94 */
95void thread_release()
96{
Olivier Houchardb23a61f2019-03-08 18:51:17 +010097 _HA_ATOMIC_AND(&threads_want_rdv_mask, ~tid_bit);
Willy Tarreau31cba0d2019-06-09 08:44:19 +020098 while (threads_want_rdv_mask & all_threads_mask) {
99 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
100 while (threads_want_rdv_mask & all_threads_mask)
101 ha_thread_relax();
102 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
103 }
Willy Tarreau60b639c2018-08-02 10:16:17 +0200104}
Christopher Faulet339fff82017-10-19 11:59:15 +0200105
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200106/* Cancels the effect of thread_isolate() by releasing the current thread's bit
107 * in threads_want_rdv_mask and by marking this thread as harmless until the
108 * last worker finishes. The difference with thread_release() is that this one
109 * will not leave the function before others are notified to do the same, so it
110 * guarantees that the current thread will not pass through a subsequent call
111 * to thread_isolate() before others finish.
112 */
113void thread_sync_release()
114{
115 _HA_ATOMIC_OR(&threads_sync_mask, tid_bit);
116 __ha_barrier_atomic_store();
117 _HA_ATOMIC_AND(&threads_want_rdv_mask, ~tid_bit);
118
119 while (threads_want_rdv_mask & all_threads_mask) {
120 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
121 while (threads_want_rdv_mask & all_threads_mask)
122 ha_thread_relax();
123 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
124 }
125
126 /* the current thread is not harmless anymore, thread_isolate()
127 * is forced to wait till all waiters finish.
128 */
129 _HA_ATOMIC_AND(&threads_sync_mask, ~tid_bit);
130 while (threads_sync_mask & all_threads_mask)
131 ha_thread_relax();
132}
133
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200134/* send signal <sig> to thread <thr> */
135void ha_tkill(unsigned int thr, int sig)
136{
David Carliera92c5ce2019-09-13 05:03:12 +0100137 pthread_kill(ha_thread_info[thr].pthread, sig);
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200138}
139
140/* send signal <sig> to all threads. The calling thread is signaled last in
141 * order to allow all threads to synchronize in the handler.
142 */
143void ha_tkillall(int sig)
144{
145 unsigned int thr;
146
147 for (thr = 0; thr < global.nbthread; thr++) {
148 if (!(all_threads_mask & (1UL << thr)))
149 continue;
150 if (thr == tid)
151 continue;
David Carliera92c5ce2019-09-13 05:03:12 +0100152 pthread_kill(ha_thread_info[thr].pthread, sig);
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200153 }
154 raise(sig);
155}
156
Willy Tarreau3d184982020-10-18 10:20:59 +0200157/* these calls are used as callbacks at init time when debugging is on */
Willy Tarreaua8ae77d2018-11-25 19:28:23 +0100158void ha_spin_init(HA_SPINLOCK_T *l)
159{
160 HA_SPIN_INIT(l);
161}
162
Willy Tarreau3d184982020-10-18 10:20:59 +0200163/* these calls are used as callbacks at init time when debugging is on */
Willy Tarreaua8ae77d2018-11-25 19:28:23 +0100164void ha_rwlock_init(HA_RWLOCK_T *l)
165{
166 HA_RWLOCK_INIT(l);
167}
168
Willy Tarreau149ab772019-01-26 14:27:06 +0100169/* returns the number of CPUs the current process is enabled to run on */
170static int thread_cpus_enabled()
171{
172 int ret = 1;
173
174#ifdef USE_CPU_AFFINITY
175#if defined(__linux__) && defined(CPU_COUNT)
176 cpu_set_t mask;
177
178 if (sched_getaffinity(0, sizeof(mask), &mask) == 0)
179 ret = CPU_COUNT(&mask);
Olivier Houchard46453d32019-04-11 00:06:47 +0200180#elif defined(__FreeBSD__) && defined(USE_CPU_AFFINITY)
181 cpuset_t cpuset;
182 if (cpuset_getaffinity(CPU_LEVEL_CPUSET, CPU_WHICH_PID, -1,
183 sizeof(cpuset), &cpuset) == 0)
184 ret = CPU_COUNT(&cpuset);
Willy Tarreau149ab772019-01-26 14:27:06 +0100185#endif
186#endif
187 ret = MAX(ret, 1);
188 ret = MIN(ret, MAX_THREADS);
189 return ret;
190}
191
Willy Tarreauf734ebf2020-09-09 17:07:54 +0200192/* Depending on the platform and how libpthread was built, pthread_exit() may
193 * involve some code in libgcc_s that would be loaded on exit for the first
194 * time, causing aborts if the process is chrooted. It's harmless bit very
195 * dirty. There isn't much we can do to make sure libgcc_s is loaded only if
196 * needed, so what we do here is that during early boot we create a dummy
197 * thread that immediately exits. This will lead to libgcc_s being loaded
198 * during boot on the platforms where it's required.
199 */
200static void *dummy_thread_function(void *data)
201{
202 pthread_exit(NULL);
203 return NULL;
204}
205
206static inline void preload_libgcc_s(void)
207{
208 pthread_t dummy_thread;
209 pthread_create(&dummy_thread, NULL, dummy_thread_function, NULL);
210 pthread_join(dummy_thread, NULL);
211}
212
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200213__attribute__((constructor))
Willy Tarreau3f567e42020-05-28 15:29:19 +0200214static void __thread_init(void)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200215{
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100216 char *ptr = NULL;
217
218 if (MAX_THREADS < 1 || MAX_THREADS > LONGBITS) {
219 ha_alert("MAX_THREADS value must be between 1 and %d inclusive; "
220 "HAProxy was built with value %d, please fix it and rebuild.\n",
221 LONGBITS, MAX_THREADS);
222 exit(1);
223 }
Willy Tarreau149ab772019-01-26 14:27:06 +0100224
Willy Tarreauf734ebf2020-09-09 17:07:54 +0200225 preload_libgcc_s();
Willy Tarreau77b98222020-09-02 08:04:35 +0200226
Willy Tarreau149ab772019-01-26 14:27:06 +0100227 thread_cpus_enabled_at_boot = thread_cpus_enabled();
228
229 memprintf(&ptr, "Built with multi-threading support (MAX_THREADS=%d, default=%d).",
230 MAX_THREADS, thread_cpus_enabled_at_boot);
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100231 hap_register_build_opts(ptr, 1);
232
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200233#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
234 memset(lock_stats, 0, sizeof(lock_stats));
235#endif
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200236}
237
Willy Tarreau8459f252018-12-15 16:48:14 +0100238#else
239
240REGISTER_BUILD_OPTS("Built without multi-threading support (USE_THREAD not set).");
241
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200242#endif // USE_THREAD
243
244
245/* Parse the number of threads in argument <arg>, returns it and adjusts a few
246 * internal variables accordingly, or fails and returns zero with an error
247 * reason in <errmsg>. May be called multiple times while parsing.
248 */
249int parse_nbthread(const char *arg, char **err)
250{
251 long nbthread;
252 char *errptr;
253
254 nbthread = strtol(arg, &errptr, 10);
255 if (!*arg || *errptr) {
256 memprintf(err, "passed a missing or unparsable integer value in '%s'", arg);
257 return 0;
258 }
259
260#ifndef USE_THREAD
261 if (nbthread != 1) {
262 memprintf(err, "specified with a value other than 1 while HAProxy is not compiled with threads support. Please check build options for USE_THREAD");
263 return 0;
264 }
265#else
266 if (nbthread < 1 || nbthread > MAX_THREADS) {
267 memprintf(err, "value must be between 1 and %d (was %ld)", MAX_THREADS, nbthread);
268 return 0;
269 }
270
Willy Tarreaufc647362019-02-02 17:05:03 +0100271 all_threads_mask = nbits(nbthread);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200272#endif
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200273 return nbthread;
274}