blob: fc17318672bd56a0e7c894e99cc29149568d8461 [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 Tarreau04931492017-11-03 23:39:25 +010026#include <common/cfgparse.h>
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020027#include <common/hathreads.h>
Christopher Faulet339fff82017-10-19 11:59:15 +020028#include <common/standard.h>
Willy Tarreau80713382018-11-26 10:19:54 +010029#include <types/global.h>
Christopher Faulet339fff82017-10-19 11:59:15 +020030#include <proto/fd.h>
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020031
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020032
33#ifdef USE_THREAD
34
Willy Tarreau60b639c2018-08-02 10:16:17 +020035volatile unsigned long threads_want_rdv_mask = 0;
36volatile unsigned long threads_harmless_mask = 0;
Willy Tarreau0ccd3222018-07-30 10:34:35 +020037volatile unsigned long all_threads_mask = 1; // nbthread 1 assumed by default
Willy Tarreau0c026f42018-08-01 19:12:20 +020038THREAD_LOCAL unsigned int tid = 0;
39THREAD_LOCAL unsigned long tid_bit = (1UL << 0);
Willy Tarreau149ab772019-01-26 14:27:06 +010040int thread_cpus_enabled_at_boot = 1;
Willy Tarreau0c026f42018-08-01 19:12:20 +020041
Christopher Faulet339fff82017-10-19 11:59:15 +020042
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020043#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
44struct lock_stat lock_stats[LOCK_LABELS];
45#endif
46
Willy Tarreau60b639c2018-08-02 10:16:17 +020047/* Marks the thread as harmless until the last thread using the rendez-vous
48 * point quits. Given that we can wait for a long time, sched_yield() is used
49 * when available to offer the CPU resources to competing threads if needed.
50 */
51void thread_harmless_till_end()
52{
Olivier Houchardb23a61f2019-03-08 18:51:17 +010053 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +020054 while (threads_want_rdv_mask & all_threads_mask) {
Willy Tarreau38171da2019-05-17 16:33:13 +020055 ha_thread_relax();
Willy Tarreau60b639c2018-08-02 10:16:17 +020056 }
57}
58
59/* Isolates the current thread : request the ability to work while all other
60 * threads are harmless. Only returns once all of them are harmless, with the
61 * current thread's bit in threads_harmless_mask cleared. Needs to be completed
62 * using thread_release().
63 */
64void thread_isolate()
65{
66 unsigned long old;
67
Olivier Houchardb23a61f2019-03-08 18:51:17 +010068 _HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
69 __ha_barrier_atomic_store();
70 _HA_ATOMIC_OR(&threads_want_rdv_mask, tid_bit);
Willy Tarreau60b639c2018-08-02 10:16:17 +020071
72 /* wait for all threads to become harmless */
73 old = threads_harmless_mask;
74 while (1) {
75 if (unlikely((old & all_threads_mask) != all_threads_mask))
76 old = threads_harmless_mask;
Olivier Houchardb23a61f2019-03-08 18:51:17 +010077 else if (_HA_ATOMIC_CAS(&threads_harmless_mask, &old, old & ~tid_bit))
Willy Tarreau60b639c2018-08-02 10:16:17 +020078 break;
79
Willy Tarreau38171da2019-05-17 16:33:13 +020080 ha_thread_relax();
Willy Tarreau60b639c2018-08-02 10:16:17 +020081 }
82 /* one thread gets released at a time here, with its harmess bit off.
83 * The loss of this bit makes the other one continue to spin while the
84 * thread is working alone.
85 */
86}
87
88/* Cancels the effect of thread_isolate() by releasing the current thread's bit
89 * in threads_want_rdv_mask and by marking this thread as harmless until the
90 * last worker finishes.
91 */
92void thread_release()
93{
Olivier Houchardb23a61f2019-03-08 18:51:17 +010094 _HA_ATOMIC_AND(&threads_want_rdv_mask, ~tid_bit);
Willy Tarreaua9c02522018-10-16 16:11:56 +020095 thread_harmless_end();
Willy Tarreau60b639c2018-08-02 10:16:17 +020096}
Christopher Faulet339fff82017-10-19 11:59:15 +020097
Willy Tarreaua8ae77d2018-11-25 19:28:23 +010098/* these calls are used as callbacks at init time */
99void ha_spin_init(HA_SPINLOCK_T *l)
100{
101 HA_SPIN_INIT(l);
102}
103
104/* these calls are used as callbacks at init time */
105void ha_rwlock_init(HA_RWLOCK_T *l)
106{
107 HA_RWLOCK_INIT(l);
108}
109
Willy Tarreau149ab772019-01-26 14:27:06 +0100110/* returns the number of CPUs the current process is enabled to run on */
111static int thread_cpus_enabled()
112{
113 int ret = 1;
114
115#ifdef USE_CPU_AFFINITY
116#if defined(__linux__) && defined(CPU_COUNT)
117 cpu_set_t mask;
118
119 if (sched_getaffinity(0, sizeof(mask), &mask) == 0)
120 ret = CPU_COUNT(&mask);
Olivier Houchard46453d32019-04-11 00:06:47 +0200121#elif defined(__FreeBSD__) && defined(USE_CPU_AFFINITY)
122 cpuset_t cpuset;
123 if (cpuset_getaffinity(CPU_LEVEL_CPUSET, CPU_WHICH_PID, -1,
124 sizeof(cpuset), &cpuset) == 0)
125 ret = CPU_COUNT(&cpuset);
Willy Tarreau149ab772019-01-26 14:27:06 +0100126#endif
127#endif
128 ret = MAX(ret, 1);
129 ret = MIN(ret, MAX_THREADS);
130 return ret;
131}
132
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200133__attribute__((constructor))
134static void __hathreads_init(void)
135{
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100136 char *ptr = NULL;
137
138 if (MAX_THREADS < 1 || MAX_THREADS > LONGBITS) {
139 ha_alert("MAX_THREADS value must be between 1 and %d inclusive; "
140 "HAProxy was built with value %d, please fix it and rebuild.\n",
141 LONGBITS, MAX_THREADS);
142 exit(1);
143 }
Willy Tarreau149ab772019-01-26 14:27:06 +0100144
145 thread_cpus_enabled_at_boot = thread_cpus_enabled();
146
147 memprintf(&ptr, "Built with multi-threading support (MAX_THREADS=%d, default=%d).",
148 MAX_THREADS, thread_cpus_enabled_at_boot);
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100149 hap_register_build_opts(ptr, 1);
150
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200151#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
152 memset(lock_stats, 0, sizeof(lock_stats));
153#endif
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200154}
155
Willy Tarreau8459f252018-12-15 16:48:14 +0100156#else
157
158REGISTER_BUILD_OPTS("Built without multi-threading support (USE_THREAD not set).");
159
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200160#endif // USE_THREAD
161
162
163/* Parse the number of threads in argument <arg>, returns it and adjusts a few
164 * internal variables accordingly, or fails and returns zero with an error
165 * reason in <errmsg>. May be called multiple times while parsing.
166 */
167int parse_nbthread(const char *arg, char **err)
168{
169 long nbthread;
170 char *errptr;
171
172 nbthread = strtol(arg, &errptr, 10);
173 if (!*arg || *errptr) {
174 memprintf(err, "passed a missing or unparsable integer value in '%s'", arg);
175 return 0;
176 }
177
178#ifndef USE_THREAD
179 if (nbthread != 1) {
180 memprintf(err, "specified with a value other than 1 while HAProxy is not compiled with threads support. Please check build options for USE_THREAD");
181 return 0;
182 }
183#else
184 if (nbthread < 1 || nbthread > MAX_THREADS) {
185 memprintf(err, "value must be between 1 and %d (was %ld)", MAX_THREADS, nbthread);
186 return 0;
187 }
188
Willy Tarreaufc647362019-02-02 17:05:03 +0100189 all_threads_mask = nbits(nbthread);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200190#endif
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200191 return nbthread;
192}