Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 13 | #define _GNU_SOURCE |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 14 | #include <unistd.h> |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 15 | #include <stdlib.h> |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 16 | #include <fcntl.h> |
| 17 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 18 | #ifdef USE_CPU_AFFINITY |
| 19 | #include <sched.h> |
| 20 | #endif |
| 21 | |
Olivier Houchard | 46453d3 | 2019-04-11 00:06:47 +0200 | [diff] [blame] | 22 | #ifdef __FreeBSD__ |
| 23 | #include <sys/cpuset.h> |
| 24 | #endif |
| 25 | |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 26 | #include <haproxy/cfgparse.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 27 | #include <haproxy/fd.h> |
| 28 | #include <haproxy/global.h> |
Willy Tarreau | 3f567e4 | 2020-05-28 15:29:19 +0200 | [diff] [blame] | 29 | #include <haproxy/thread.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 30 | #include <haproxy/tools.h> |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 31 | |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 32 | struct thread_info ha_thread_info[MAX_THREADS] = { }; |
| 33 | THREAD_LOCAL struct thread_info *ti = &ha_thread_info[0]; |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 34 | |
| 35 | #ifdef USE_THREAD |
| 36 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 37 | volatile unsigned long threads_want_rdv_mask = 0; |
| 38 | volatile unsigned long threads_harmless_mask = 0; |
Willy Tarreau | 9a1f573 | 2019-06-09 12:20:02 +0200 | [diff] [blame] | 39 | volatile unsigned long threads_sync_mask = 0; |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 40 | volatile unsigned long all_threads_mask = 1; // nbthread 1 assumed by default |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 41 | THREAD_LOCAL unsigned int tid = 0; |
| 42 | THREAD_LOCAL unsigned long tid_bit = (1UL << 0); |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 43 | int thread_cpus_enabled_at_boot = 1; |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 44 | |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 45 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 46 | #if defined(DEBUG_THREAD) || defined(DEBUG_FULL) |
| 47 | struct lock_stat lock_stats[LOCK_LABELS]; |
| 48 | #endif |
| 49 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 50 | /* 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 | */ |
| 54 | void thread_harmless_till_end() |
| 55 | { |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 56 | _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit); |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 57 | while (threads_want_rdv_mask & all_threads_mask) { |
Willy Tarreau | 38171da | 2019-05-17 16:33:13 +0200 | [diff] [blame] | 58 | ha_thread_relax(); |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 59 | } |
| 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 | */ |
| 67 | void thread_isolate() |
| 68 | { |
| 69 | unsigned long old; |
| 70 | |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 71 | _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit); |
| 72 | __ha_barrier_atomic_store(); |
| 73 | _HA_ATOMIC_OR(&threads_want_rdv_mask, tid_bit); |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 74 | |
| 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 Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 80 | else if (_HA_ATOMIC_CAS(&threads_harmless_mask, &old, old & ~tid_bit)) |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 81 | break; |
| 82 | |
Willy Tarreau | 38171da | 2019-05-17 16:33:13 +0200 | [diff] [blame] | 83 | ha_thread_relax(); |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 84 | } |
| 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 | */ |
| 95 | void thread_release() |
| 96 | { |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 97 | _HA_ATOMIC_AND(&threads_want_rdv_mask, ~tid_bit); |
Willy Tarreau | 31cba0d | 2019-06-09 08:44:19 +0200 | [diff] [blame] | 98 | 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 Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 104 | } |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 105 | |
Willy Tarreau | 9a1f573 | 2019-06-09 12:20:02 +0200 | [diff] [blame] | 106 | /* 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 | */ |
| 113 | void 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 Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 134 | /* send signal <sig> to thread <thr> */ |
| 135 | void ha_tkill(unsigned int thr, int sig) |
| 136 | { |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 137 | pthread_kill(ha_thread_info[thr].pthread, sig); |
Willy Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 138 | } |
| 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 | */ |
| 143 | void 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 Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 152 | pthread_kill(ha_thread_info[thr].pthread, sig); |
Willy Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 153 | } |
| 154 | raise(sig); |
| 155 | } |
| 156 | |
Willy Tarreau | 3d18498 | 2020-10-18 10:20:59 +0200 | [diff] [blame] | 157 | /* these calls are used as callbacks at init time when debugging is on */ |
Willy Tarreau | a8ae77d | 2018-11-25 19:28:23 +0100 | [diff] [blame] | 158 | void ha_spin_init(HA_SPINLOCK_T *l) |
| 159 | { |
| 160 | HA_SPIN_INIT(l); |
| 161 | } |
| 162 | |
Willy Tarreau | 3d18498 | 2020-10-18 10:20:59 +0200 | [diff] [blame] | 163 | /* these calls are used as callbacks at init time when debugging is on */ |
Willy Tarreau | a8ae77d | 2018-11-25 19:28:23 +0100 | [diff] [blame] | 164 | void ha_rwlock_init(HA_RWLOCK_T *l) |
| 165 | { |
| 166 | HA_RWLOCK_INIT(l); |
| 167 | } |
| 168 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 169 | /* returns the number of CPUs the current process is enabled to run on */ |
| 170 | static 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 Houchard | 46453d3 | 2019-04-11 00:06:47 +0200 | [diff] [blame] | 180 | #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 Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 185 | #endif |
| 186 | #endif |
| 187 | ret = MAX(ret, 1); |
| 188 | ret = MIN(ret, MAX_THREADS); |
| 189 | return ret; |
| 190 | } |
| 191 | |
Willy Tarreau | f734ebf | 2020-09-09 17:07:54 +0200 | [diff] [blame] | 192 | /* 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 | */ |
| 200 | static void *dummy_thread_function(void *data) |
| 201 | { |
| 202 | pthread_exit(NULL); |
| 203 | return NULL; |
| 204 | } |
| 205 | |
| 206 | static 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 Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 213 | __attribute__((constructor)) |
Willy Tarreau | 3f567e4 | 2020-05-28 15:29:19 +0200 | [diff] [blame] | 214 | static void __thread_init(void) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 215 | { |
Willy Tarreau | f5809cd | 2019-01-26 13:35:03 +0100 | [diff] [blame] | 216 | 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 Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 224 | |
Willy Tarreau | f734ebf | 2020-09-09 17:07:54 +0200 | [diff] [blame] | 225 | preload_libgcc_s(); |
Willy Tarreau | 77b9822 | 2020-09-02 08:04:35 +0200 | [diff] [blame] | 226 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 227 | 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 Tarreau | f5809cd | 2019-01-26 13:35:03 +0100 | [diff] [blame] | 231 | hap_register_build_opts(ptr, 1); |
| 232 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 233 | #if defined(DEBUG_THREAD) || defined(DEBUG_FULL) |
| 234 | memset(lock_stats, 0, sizeof(lock_stats)); |
| 235 | #endif |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 236 | } |
| 237 | |
Willy Tarreau | 8459f25 | 2018-12-15 16:48:14 +0100 | [diff] [blame] | 238 | #else |
| 239 | |
| 240 | REGISTER_BUILD_OPTS("Built without multi-threading support (USE_THREAD not set)."); |
| 241 | |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 242 | #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 | */ |
| 249 | int 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 Tarreau | fc64736 | 2019-02-02 17:05:03 +0100 | [diff] [blame] | 271 | all_threads_mask = nbits(nbthread); |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 272 | #endif |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 273 | return nbthread; |
| 274 | } |