blob: 268dd6349f429b9edfbbd6fbc5cf5ac59d571009 [file] [log] [blame]
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001/*
2 * include/common/hathreads.h
3 * definitions, macros and inline functions about threads.
4 *
5 * Copyright (C) 2017 Christopher Fauet - cfaulet@haproxy.com
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _COMMON_HATHREADS_H
23#define _COMMON_HATHREADS_H
24
Willy Tarreau2beaaf72019-05-22 08:43:34 +020025#include <signal.h>
Willy Tarreau38171da2019-05-17 16:33:13 +020026#include <unistd.h>
27#ifdef _POSIX_PRIORITY_SCHEDULING
28#include <sched.h>
29#endif
30
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020031#include <common/config.h>
Willy Tarreau90fa97b2018-11-25 19:46:08 +010032#include <common/initcall.h>
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020033
Willy Tarreau0ccd3222018-07-30 10:34:35 +020034/* Note about all_threads_mask :
Willy Tarreauda9e9392019-02-02 17:03:41 +010035 * - this variable is comprised between 1 and LONGBITS.
36 * - with threads support disabled, this symbol is defined as constant 1UL.
37 * - with threads enabled, it contains the mask of enabled threads. Thus if
38 * only one thread is enabled, it equals 1.
Willy Tarreau0ccd3222018-07-30 10:34:35 +020039 */
40
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020041/* thread info flags, for thread_info[].flags */
42#define TI_FL_STUCK 0x00000001
43
44
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020045#ifndef USE_THREAD
46
Willy Tarreau421f02e2018-01-20 18:19:22 +010047#define MAX_THREADS 1
Willy Tarreau0c026f42018-08-01 19:12:20 +020048#define MAX_THREADS_MASK 1
49
50/* Only way found to replace variables with constants that are optimized away
51 * at build time.
52 */
53enum { all_threads_mask = 1UL };
Willy Tarreau441259c2019-05-22 07:48:18 +020054enum { threads_harmless_mask = 0 };
55enum { threads_want_rdv_mask = 0 };
Willy Tarreau0c026f42018-08-01 19:12:20 +020056enum { tid_bit = 1UL };
57enum { tid = 0 };
Willy Tarreau421f02e2018-01-20 18:19:22 +010058
Willy Tarreau5a6e2242019-05-20 18:56:48 +020059extern struct thread_info {
Willy Tarreau624dcbf2019-05-20 20:23:06 +020060 clockid_t clock_id;
Willy Tarreau430f5902019-05-21 20:01:26 +020061 timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */
Willy Tarreau81036f22019-05-20 19:24:50 +020062 uint64_t prev_cpu_time; /* previous per thread CPU time */
63 uint64_t prev_mono_time; /* previous system wide monotonic time */
64 unsigned int idle_pct; /* idle to total ratio over last sample (percent) */
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020065 unsigned int flags; /* thread info flags, TI_FL_* */
Willy Tarreau5a6e2242019-05-20 18:56:48 +020066 /* pad to cache line (64B) */
67 char __pad[0]; /* unused except to check remaining room */
68 char __end[0] __attribute__((aligned(64)));
69} thread_info[MAX_THREADS];
70
Willy Tarreau8323a372019-05-20 18:57:53 +020071extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */
72
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010073#define __decl_hathreads(decl)
Willy Tarreau90fa97b2018-11-25 19:46:08 +010074#define __decl_spinlock(lock)
75#define __decl_aligned_spinlock(lock)
76#define __decl_rwlock(lock)
77#define __decl_aligned_rwlock(lock)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010078
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020079#define HA_ATOMIC_CAS(val, old, new) ({((*val) == (*old)) ? (*(val) = (new) , 1) : (*(old) = *(val), 0);})
Willy Tarreau6a38b322019-05-11 18:04:24 +020080#define HA_ATOMIC_DWCAS(val, o, n) ({((*val) == (*o)) ? (*(val) = (n) , 1) : (*(o) = *(val), 0);})
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020081#define HA_ATOMIC_ADD(val, i) ({*(val) += (i);})
82#define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);})
Willy Tarreau9378df82018-09-05 16:11:03 +020083#define HA_ATOMIC_XADD(val, i) \
84 ({ \
85 typeof((val)) __p_xadd = (val); \
86 typeof(*(val)) __old_xadd = *__p_xadd; \
87 *__p_xadd += i; \
88 __old_xadd; \
89 })
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020090#define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);})
91#define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);})
92#define HA_ATOMIC_XCHG(val, new) \
93 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020094 typeof(*(val)) __old_xchg = *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020095 *(val) = new; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020096 __old_xchg; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020097 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +010098#define HA_ATOMIC_BTS(val, bit) \
99 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200100 typeof((val)) __p_bts = (val); \
101 typeof(*__p_bts) __b_bts = (1UL << (bit)); \
102 typeof(*__p_bts) __t_bts = *__p_bts & __b_bts; \
103 if (!__t_bts) \
104 *__p_bts |= __b_bts; \
105 __t_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100106 })
107#define HA_ATOMIC_BTR(val, bit) \
108 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200109 typeof((val)) __p_btr = (val); \
110 typeof(*__p_btr) __b_btr = (1UL << (bit)); \
111 typeof(*__p_btr) __t_btr = *__p_btr & __b_btr; \
112 if (__t_btr) \
113 *__p_btr &= ~__b_btr; \
114 __t_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100115 })
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200116#define HA_ATOMIC_LOAD(val) *(val)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200117#define HA_ATOMIC_STORE(val, new) ({*(val) = new;})
118#define HA_ATOMIC_UPDATE_MAX(val, new) \
119 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200120 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200121 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200122 if (*(val) < __new_max) \
123 *(val) = __new_max; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200124 *(val); \
125 })
126
127#define HA_ATOMIC_UPDATE_MIN(val, new) \
128 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200129 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200130 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200131 if (*(val) > __new_min) \
132 *(val) = __new_min; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200133 *(val); \
134 })
135
Willy Tarreaub29dc952017-10-31 18:00:20 +0100136#define HA_BARRIER() do { } while (0)
Christopher Faulet339fff82017-10-19 11:59:15 +0200137
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100138#define HA_SPIN_INIT(l) do { /* do nothing */ } while(0)
139#define HA_SPIN_DESTROY(l) do { /* do nothing */ } while(0)
140#define HA_SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0)
141#define HA_SPIN_TRYLOCK(lbl, l) ({ 0; })
142#define HA_SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200143
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100144#define HA_RWLOCK_INIT(l) do { /* do nothing */ } while(0)
145#define HA_RWLOCK_DESTROY(l) do { /* do nothing */ } while(0)
146#define HA_RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0)
147#define HA_RWLOCK_TRYWRLOCK(lbl, l) ({ 0; })
148#define HA_RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0)
149#define HA_RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0)
150#define HA_RWLOCK_TRYRDLOCK(lbl, l) ({ 0; })
151#define HA_RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200152
William Lallemand6e1796e2018-06-07 11:23:40 +0200153#define ha_sigmask(how, set, oldset) sigprocmask(how, set, oldset)
154
Willy Tarreau0c026f42018-08-01 19:12:20 +0200155static inline void ha_set_tid(unsigned int tid)
156{
Willy Tarreau8323a372019-05-20 18:57:53 +0200157 ti = &thread_info[tid];
Willy Tarreau38171da2019-05-17 16:33:13 +0200158}
159
160static inline void ha_thread_relax(void)
161{
162#if _POSIX_PRIORITY_SCHEDULING
163 sched_yield();
164#endif
Willy Tarreau0c026f42018-08-01 19:12:20 +0200165}
William Lallemand6e1796e2018-06-07 11:23:40 +0200166
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200167/* send signal <sig> to thread <thr> */
168static inline void ha_tkill(unsigned int thr, int sig)
169{
170 raise(sig);
171}
172
173/* send signal <sig> to all threads */
174static inline void ha_tkillall(int sig)
175{
176 raise(sig);
177}
178
Olivier Houchard9abcf6e2019-03-07 18:45:00 +0100179static inline void __ha_barrier_atomic_load(void)
180{
181}
182
183static inline void __ha_barrier_atomic_store(void)
184{
185}
186
187static inline void __ha_barrier_atomic_full(void)
188{
189}
190
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100191static inline void __ha_barrier_load(void)
192{
193}
194
195static inline void __ha_barrier_store(void)
196{
197}
198
199static inline void __ha_barrier_full(void)
200{
201}
202
Willy Tarreau60b639c2018-08-02 10:16:17 +0200203static inline void thread_harmless_now()
204{
205}
206
207static inline void thread_harmless_end()
208{
209}
210
211static inline void thread_isolate()
212{
213}
214
215static inline void thread_release()
216{
217}
218
219static inline unsigned long thread_isolated()
220{
221 return 1;
222}
223
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200224#else /* USE_THREAD */
225
226#include <stdio.h>
227#include <stdlib.h>
228#include <string.h>
229#include <pthread.h>
230#include <import/plock.h>
231
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100232#ifndef MAX_THREADS
Willy Tarreau421f02e2018-01-20 18:19:22 +0100233#define MAX_THREADS LONGBITS
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100234#endif
235
236#define MAX_THREADS_MASK (~0UL >> (LONGBITS - MAX_THREADS))
Willy Tarreau421f02e2018-01-20 18:19:22 +0100237
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100238#define __decl_hathreads(decl) decl
239
Willy Tarreau90fa97b2018-11-25 19:46:08 +0100240/* declare a self-initializing spinlock */
241#define __decl_spinlock(lock) \
242 HA_SPINLOCK_T (lock); \
243 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
244
245/* declare a self-initializing spinlock, aligned on a cache line */
246#define __decl_aligned_spinlock(lock) \
247 HA_SPINLOCK_T (lock) __attribute__((aligned(64))); \
248 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
249
250/* declare a self-initializing rwlock */
251#define __decl_rwlock(lock) \
252 HA_RWLOCK_T (lock); \
253 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
254
255/* declare a self-initializing rwlock, aligned on a cache line */
256#define __decl_aligned_rwlock(lock) \
257 HA_RWLOCK_T (lock) __attribute__((aligned(64))); \
258 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
259
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200260/* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to
261 * have a header file regrouping all functions dealing with threads. */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100262
David Carlierec5e8452018-01-11 14:20:43 +0000263#if defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 7) && !defined(__clang__)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100264/* gcc < 4.7 */
265
266#define HA_ATOMIC_ADD(val, i) __sync_add_and_fetch(val, i)
267#define HA_ATOMIC_SUB(val, i) __sync_sub_and_fetch(val, i)
Willy Tarreau9378df82018-09-05 16:11:03 +0200268#define HA_ATOMIC_XADD(val, i) __sync_fetch_and_add(val, i)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100269#define HA_ATOMIC_AND(val, flags) __sync_and_and_fetch(val, flags)
270#define HA_ATOMIC_OR(val, flags) __sync_or_and_fetch(val, flags)
271
272/* the CAS is a bit complicated. The older API doesn't support returning the
273 * value and the swap's result at the same time. So here we take what looks
274 * like the safest route, consisting in using the boolean version guaranteeing
275 * that the operation was performed or not, and we snoop a previous value. If
276 * the compare succeeds, we return. If it fails, we return the previous value,
277 * but only if it differs from the expected one. If it's the same it's a race
278 * thus we try again to avoid confusing a possibly sensitive caller.
279 */
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200280#define HA_ATOMIC_CAS(val, old, new) \
281 ({ \
282 typeof((val)) __val_cas = (val); \
283 typeof((old)) __oldp_cas = (old); \
284 typeof(*(old)) __oldv_cas; \
285 typeof((new)) __new_cas = (new); \
286 int __ret_cas; \
287 do { \
288 __oldv_cas = *__val_cas; \
289 __ret_cas = __sync_bool_compare_and_swap(__val_cas, *__oldp_cas, __new_cas); \
290 } while (!__ret_cas && *__oldp_cas == __oldv_cas); \
291 if (!__ret_cas) \
292 *__oldp_cas = __oldv_cas; \
293 __ret_cas; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100294 })
295
Willy Tarreau6a38b322019-05-11 18:04:24 +0200296#define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
297
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200298#define HA_ATOMIC_XCHG(val, new) \
299 ({ \
300 typeof((val)) __val_xchg = (val); \
301 typeof(*(val)) __old_xchg; \
302 typeof((new)) __new_xchg = (new); \
303 do { __old_xchg = *__val_xchg; \
304 } while (!__sync_bool_compare_and_swap(__val_xchg, __old_xchg, __new_xchg)); \
305 __old_xchg; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100306 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100307
308#define HA_ATOMIC_BTS(val, bit) \
309 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200310 typeof(*(val)) __b_bts = (1UL << (bit)); \
311 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100312 })
313
314#define HA_ATOMIC_BTR(val, bit) \
315 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200316 typeof(*(val)) __b_btr = (1UL << (bit)); \
317 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100318 })
319
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200320#define HA_ATOMIC_LOAD(val) \
321 ({ \
322 typeof(*(val)) ret; \
323 __sync_synchronize(); \
324 ret = *(volatile typeof(val))val; \
325 __sync_synchronize(); \
326 ret; \
327 })
328
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200329#define HA_ATOMIC_STORE(val, new) \
330 ({ \
331 typeof((val)) __val_store = (val); \
332 typeof(*(val)) __old_store; \
333 typeof((new)) __new_store = (new); \
334 do { __old_store = *__val_store; \
335 } while (!__sync_bool_compare_and_swap(__val_store, __old_store, __new_store)); \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100336 })
337#else
338/* gcc >= 4.7 */
Olivier Houchard11353792019-03-07 18:48:22 +0100339#define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
Willy Tarreau6a38b322019-05-11 18:04:24 +0200340#define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
Olivier Houchard11353792019-03-07 18:48:22 +0100341#define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_SEQ_CST)
342#define HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_SEQ_CST)
343#define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_SEQ_CST)
344#define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_SEQ_CST)
345#define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_SEQ_CST)
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100346#define HA_ATOMIC_BTS(val, bit) \
347 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200348 typeof(*(val)) __b_bts = (1UL << (bit)); \
349 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100350 })
351
352#define HA_ATOMIC_BTR(val, bit) \
353 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200354 typeof(*(val)) __b_btr = (1UL << (bit)); \
355 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100356 })
357
Olivier Houchard11353792019-03-07 18:48:22 +0100358#define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_SEQ_CST)
359#define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_SEQ_CST)
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200360#define HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_SEQ_CST)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200361
362/* Variants that don't generate any memory barrier.
363 * If you're unsure how to deal with barriers, just use the HA_ATOMIC_* version,
364 * that will always generate correct code.
365 * Usually it's fine to use those when updating data that have no dependency,
366 * ie updating a counter. Otherwise a barrier is required.
367 */
368#define _HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED)
Willy Tarreau6a38b322019-05-11 18:04:24 +0200369#define _HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200370#define _HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_RELAXED)
371#define _HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_RELAXED)
372#define _HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_RELAXED)
373#define _HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_RELAXED)
374#define _HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_RELAXED)
375#define _HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_RELAXED)
376#define _HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_RELAXED)
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200377#define _HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_RELAXED)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200378
379#endif /* gcc >= 4.7 */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100380
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200381#define HA_ATOMIC_UPDATE_MAX(val, new) \
382 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200383 typeof(*(val)) __old_max = *(val); \
384 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200385 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200386 while (__old_max < __new_max && \
387 !HA_ATOMIC_CAS(val, &__old_max, __new_max)); \
388 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200389 })
390#define HA_ATOMIC_UPDATE_MIN(val, new) \
391 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200392 typeof(*(val)) __old_min = *(val); \
393 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200394 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200395 while (__old_min > __new_min && \
396 !HA_ATOMIC_CAS(val, &__old_min, __new_min)); \
397 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200398 })
399
Willy Tarreaub29dc952017-10-31 18:00:20 +0100400#define HA_BARRIER() pl_barrier()
401
Willy Tarreau60b639c2018-08-02 10:16:17 +0200402void thread_harmless_till_end();
403void thread_isolate();
404void thread_release();
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200405void ha_tkill(unsigned int thr, int sig);
406void ha_tkillall(int sig);
Christopher Faulet339fff82017-10-19 11:59:15 +0200407
Willy Tarreau5a6e2242019-05-20 18:56:48 +0200408extern struct thread_info {
409 pthread_t pthread;
410 clockid_t clock_id;
Willy Tarreau430f5902019-05-21 20:01:26 +0200411 timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */
Willy Tarreau81036f22019-05-20 19:24:50 +0200412 uint64_t prev_cpu_time; /* previous per thread CPU time */
413 uint64_t prev_mono_time; /* previous system wide monotonic time */
414 unsigned int idle_pct; /* idle to total ratio over last sample (percent) */
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200415 unsigned int flags; /* thread info flags, TI_FL_* */
Willy Tarreau5a6e2242019-05-20 18:56:48 +0200416 /* pad to cache line (64B) */
417 char __pad[0]; /* unused except to check remaining room */
418 char __end[0] __attribute__((aligned(64)));
419} thread_info[MAX_THREADS];
420
Willy Tarreau0c026f42018-08-01 19:12:20 +0200421extern THREAD_LOCAL unsigned int tid; /* The thread id */
422extern THREAD_LOCAL unsigned long tid_bit; /* The bit corresponding to the thread id */
Willy Tarreau8323a372019-05-20 18:57:53 +0200423extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */
Christopher Fauletddb6c162018-07-20 09:31:53 +0200424extern volatile unsigned long all_threads_mask;
Willy Tarreau60b639c2018-08-02 10:16:17 +0200425extern volatile unsigned long threads_want_rdv_mask;
426extern volatile unsigned long threads_harmless_mask;
427
428/* explanation for threads_want_rdv_mask and threads_harmless_mask :
429 * - threads_want_rdv_mask is a bit field indicating all threads that have
430 * requested a rendez-vous of other threads using thread_isolate().
431 * - threads_harmless_mask is a bit field indicating all threads that are
432 * currently harmless in that they promise not to access a shared resource.
433 *
434 * For a given thread, its bits in want_rdv and harmless can be translated like
435 * this :
436 *
437 * ----------+----------+----------------------------------------------------
438 * want_rdv | harmless | description
439 * ----------+----------+----------------------------------------------------
440 * 0 | 0 | thread not interested in RDV, possibly harmful
441 * 0 | 1 | thread not interested in RDV but harmless
442 * 1 | 1 | thread interested in RDV and waiting for its turn
443 * 1 | 0 | thread currently working isolated from others
444 * ----------+----------+----------------------------------------------------
445 */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200446
William Lallemand6e1796e2018-06-07 11:23:40 +0200447#define ha_sigmask(how, set, oldset) pthread_sigmask(how, set, oldset)
448
Willy Tarreau0c026f42018-08-01 19:12:20 +0200449/* sets the thread ID and the TID bit for the current thread */
450static inline void ha_set_tid(unsigned int data)
451{
452 tid = data;
453 tid_bit = (1UL << tid);
Willy Tarreau8323a372019-05-20 18:57:53 +0200454 ti = &thread_info[tid];
Willy Tarreau0c026f42018-08-01 19:12:20 +0200455}
456
Willy Tarreau38171da2019-05-17 16:33:13 +0200457static inline void ha_thread_relax(void)
458{
459#if _POSIX_PRIORITY_SCHEDULING
460 sched_yield();
461#else
462 pl_cpu_relax();
463#endif
464}
465
Willy Tarreau60b639c2018-08-02 10:16:17 +0200466/* Marks the thread as harmless. Note: this must be true, i.e. the thread must
467 * not be touching any unprotected shared resource during this period. Usually
468 * this is called before poll(), but it may also be placed around very slow
469 * calls (eg: some crypto operations). Needs to be terminated using
470 * thread_harmless_end().
471 */
472static inline void thread_harmless_now()
473{
474 HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
475}
476
477/* Ends the harmless period started by thread_harmless_now(). Usually this is
478 * placed after the poll() call. If it is discovered that a job was running and
479 * is relying on the thread still being harmless, the thread waits for the
480 * other one to finish.
481 */
482static inline void thread_harmless_end()
483{
484 while (1) {
485 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
486 if (likely((threads_want_rdv_mask & all_threads_mask) == 0))
487 break;
488 thread_harmless_till_end();
489 }
490}
491
492/* an isolated thread has harmless cleared and want_rdv set */
493static inline unsigned long thread_isolated()
494{
495 return threads_want_rdv_mask & ~threads_harmless_mask & tid_bit;
496}
497
William Lallemand6e1796e2018-06-07 11:23:40 +0200498
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200499#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
500
Christopher Fauletf51bac22018-01-30 11:04:29 +0100501/* WARNING!!! if you update this enum, please also keep lock_label() up to date below */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200502enum lock_label {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200503 FD_LOCK,
Emeric Brunc60def82017-09-27 14:59:38 +0200504 TASK_RQ_LOCK,
505 TASK_WQ_LOCK,
Christopher Fauletb349e482017-08-29 09:52:38 +0200506 POOL_LOCK,
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200507 LISTENER_LOCK,
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200508 PROXY_LOCK,
Christopher Faulet29f77e82017-06-08 14:04:45 +0200509 SERVER_LOCK,
Christopher Faulet5b517552017-06-09 14:17:53 +0200510 LBPRM_LOCK,
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200511 SIGNALS_LOCK,
Emeric Brun819fc6f2017-06-13 19:37:32 +0200512 STK_TABLE_LOCK,
513 STK_SESS_LOCK,
Emeric Brun1138fd02017-06-19 12:38:55 +0200514 APPLETS_LOCK,
Emeric Brun80527f52017-06-19 17:46:37 +0200515 PEER_LOCK,
Emeric Bruna1dd2432017-06-21 15:42:52 +0200516 BUF_WQ_LOCK,
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200517 STRMS_LOCK,
Emeric Brun821bb9b2017-06-15 16:37:39 +0200518 SSL_LOCK,
519 SSL_GEN_CERTS_LOCK,
Emeric Brunb5997f72017-07-03 11:34:05 +0200520 PATREF_LOCK,
521 PATEXP_LOCK,
522 PATLRU_LOCK,
Christopher Faulete95f2c32017-07-24 16:30:34 +0200523 VARS_LOCK,
Christopher Faulet8ca3b4b2017-07-25 11:07:15 +0200524 COMP_POOL_LOCK,
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200525 LUA_LOCK,
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200526 NOTIF_LOCK,
Christopher Faulet24289f22017-09-25 14:48:02 +0200527 SPOE_APPLET_LOCK,
Christopher Fauletb2812a62017-10-04 16:17:58 +0200528 DNS_LOCK,
Christopher Fauletcfda8472017-10-20 15:40:23 +0200529 PID_LIST_LOCK,
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200530 EMAIL_ALERTS_LOCK,
Emeric Brund8b3b652017-11-07 11:19:48 +0100531 PIPES_LOCK,
Christopher Faulet16f45c82018-02-16 11:23:49 +0100532 TLSKEYS_REF_LOCK,
Willy Tarreau34d4b522018-10-29 18:02:54 +0100533 AUTH_LOCK,
Frédéric Lécailled803e472019-04-25 07:42:09 +0200534 LOGSRV_LOCK,
Ben51Degrees4ddf59d2019-02-05 13:24:00 +0000535 OTHER_LOCK,
Christopher Faulet339fff82017-10-19 11:59:15 +0200536 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200537};
538struct lock_stat {
539 uint64_t nsec_wait_for_write;
540 uint64_t nsec_wait_for_read;
541 uint64_t num_write_locked;
542 uint64_t num_write_unlocked;
543 uint64_t num_read_locked;
544 uint64_t num_read_unlocked;
545};
546
547extern struct lock_stat lock_stats[LOCK_LABELS];
548
549#define __HA_SPINLOCK_T unsigned long
550
551#define __SPIN_INIT(l) ({ (*l) = 0; })
552#define __SPIN_DESTROY(l) ({ (*l) = 0; })
Willy Tarreau88ac59b2017-11-06 01:03:26 +0100553#define __SPIN_LOCK(l) pl_take_s(l)
554#define __SPIN_TRYLOCK(l) !pl_try_s(l)
555#define __SPIN_UNLOCK(l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200556
557#define __HA_RWLOCK_T unsigned long
558
559#define __RWLOCK_INIT(l) ({ (*l) = 0; })
560#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
561#define __RWLOCK_WRLOCK(l) pl_take_w(l)
562#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
563#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
564#define __RWLOCK_RDLOCK(l) pl_take_r(l)
565#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
566#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
567
568#define HA_SPINLOCK_T struct ha_spinlock
569
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100570#define HA_SPIN_INIT(l) __spin_init(l)
571#define HA_SPIN_DESTROY(l) __spin_destroy(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200572
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100573#define HA_SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
574#define HA_SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
575#define HA_SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200576
577#define HA_RWLOCK_T struct ha_rwlock
578
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100579#define HA_RWLOCK_INIT(l) __ha_rwlock_init((l))
580#define HA_RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
581#define HA_RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
582#define HA_RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
583#define HA_RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
584#define HA_RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
585#define HA_RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
586#define HA_RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200587
588struct ha_spinlock {
589 __HA_SPINLOCK_T lock;
590 struct {
591 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
592 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
593 struct {
594 const char *function;
595 const char *file;
596 int line;
597 } last_location; /* location of the last owner */
598 } info;
599};
600
601struct ha_rwlock {
602 __HA_RWLOCK_T lock;
603 struct {
604 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
605 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
606 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
607 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
608 struct {
609 const char *function;
610 const char *file;
611 int line;
612 } last_location; /* location of the last write owner */
613 } info;
614};
615
Christopher Fauletf51bac22018-01-30 11:04:29 +0100616static inline const char *lock_label(enum lock_label label)
617{
618 switch (label) {
Christopher Fauletf51bac22018-01-30 11:04:29 +0100619 case FD_LOCK: return "FD";
620 case TASK_RQ_LOCK: return "TASK_RQ";
621 case TASK_WQ_LOCK: return "TASK_WQ";
622 case POOL_LOCK: return "POOL";
623 case LISTENER_LOCK: return "LISTENER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100624 case PROXY_LOCK: return "PROXY";
625 case SERVER_LOCK: return "SERVER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100626 case LBPRM_LOCK: return "LBPRM";
627 case SIGNALS_LOCK: return "SIGNALS";
628 case STK_TABLE_LOCK: return "STK_TABLE";
629 case STK_SESS_LOCK: return "STK_SESS";
630 case APPLETS_LOCK: return "APPLETS";
631 case PEER_LOCK: return "PEER";
632 case BUF_WQ_LOCK: return "BUF_WQ";
633 case STRMS_LOCK: return "STRMS";
634 case SSL_LOCK: return "SSL";
635 case SSL_GEN_CERTS_LOCK: return "SSL_GEN_CERTS";
636 case PATREF_LOCK: return "PATREF";
637 case PATEXP_LOCK: return "PATEXP";
638 case PATLRU_LOCK: return "PATLRU";
639 case VARS_LOCK: return "VARS";
640 case COMP_POOL_LOCK: return "COMP_POOL";
641 case LUA_LOCK: return "LUA";
642 case NOTIF_LOCK: return "NOTIF";
643 case SPOE_APPLET_LOCK: return "SPOE_APPLET";
644 case DNS_LOCK: return "DNS";
645 case PID_LIST_LOCK: return "PID_LIST";
646 case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS";
647 case PIPES_LOCK: return "PIPES";
Christopher Faulet16f45c82018-02-16 11:23:49 +0100648 case TLSKEYS_REF_LOCK: return "TLSKEYS_REF";
Willy Tarreau34d4b522018-10-29 18:02:54 +0100649 case AUTH_LOCK: return "AUTH";
Frédéric Lécailled803e472019-04-25 07:42:09 +0200650 case LOGSRV_LOCK: return "LOGSRV";
Ben51Degrees4ddf59d2019-02-05 13:24:00 +0000651 case OTHER_LOCK: return "OTHER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100652 case LOCK_LABELS: break; /* keep compiler happy */
653 };
654 /* only way to come here is consecutive to an internal bug */
655 abort();
656}
657
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200658static inline void show_lock_stats()
659{
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200660 int lbl;
661
662 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
663 fprintf(stderr,
664 "Stats about Lock %s: \n"
665 "\t # write lock : %lu\n"
666 "\t # write unlock: %lu (%ld)\n"
667 "\t # wait time for write : %.3f msec\n"
668 "\t # wait time for write/lock: %.3f nsec\n"
669 "\t # read lock : %lu\n"
670 "\t # read unlock : %lu (%ld)\n"
671 "\t # wait time for read : %.3f msec\n"
672 "\t # wait time for read/lock : %.3f nsec\n",
Christopher Fauletf51bac22018-01-30 11:04:29 +0100673 lock_label(lbl),
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200674 lock_stats[lbl].num_write_locked,
675 lock_stats[lbl].num_write_unlocked,
676 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
677 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
678 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
679 lock_stats[lbl].num_read_locked,
680 lock_stats[lbl].num_read_unlocked,
681 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
682 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
683 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
684 }
685}
686
687/* Following functions are used to collect some stats about locks. We wrap
688 * pthread functions to known how much time we wait in a lock. */
689
690static uint64_t nsec_now(void) {
691 struct timespec ts;
692
693 clock_gettime(CLOCK_MONOTONIC, &ts);
694 return ((uint64_t) ts.tv_sec * 1000000000ULL +
695 (uint64_t) ts.tv_nsec);
696}
697
698static inline void __ha_rwlock_init(struct ha_rwlock *l)
699{
700 memset(l, 0, sizeof(struct ha_rwlock));
701 __RWLOCK_INIT(&l->lock);
702}
703
704static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
705{
706 __RWLOCK_DESTROY(&l->lock);
707 memset(l, 0, sizeof(struct ha_rwlock));
708}
709
710
711static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
712 const char *func, const char *file, int line)
713{
714 uint64_t start_time;
715
716 if (unlikely(l->info.cur_writer & tid_bit)) {
717 /* the thread is already owning the lock for write */
718 abort();
719 }
720
721 if (unlikely(l->info.cur_readers & tid_bit)) {
722 /* the thread is already owning the lock for read */
723 abort();
724 }
725
726 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
727
728 start_time = nsec_now();
729 __RWLOCK_WRLOCK(&l->lock);
730 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
731
732 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
733
734 l->info.cur_writer = tid_bit;
735 l->info.last_location.function = func;
736 l->info.last_location.file = file;
737 l->info.last_location.line = line;
738
739 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
740}
741
742static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
743 const char *func, const char *file, int line)
744{
745 uint64_t start_time;
746 int r;
747
748 if (unlikely(l->info.cur_writer & tid_bit)) {
749 /* the thread is already owning the lock for write */
750 abort();
751 }
752
753 if (unlikely(l->info.cur_readers & tid_bit)) {
754 /* the thread is already owning the lock for read */
755 abort();
756 }
757
758 /* We set waiting writer because trywrlock could wait for readers to quit */
759 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
760
761 start_time = nsec_now();
762 r = __RWLOCK_TRYWRLOCK(&l->lock);
763 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
764 if (unlikely(r)) {
765 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
766 return r;
767 }
768 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
769
770 l->info.cur_writer = tid_bit;
771 l->info.last_location.function = func;
772 l->info.last_location.file = file;
773 l->info.last_location.line = line;
774
775 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
776
777 return 0;
778}
779
780static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
781 const char *func, const char *file, int line)
782{
783 if (unlikely(!(l->info.cur_writer & tid_bit))) {
784 /* the thread is not owning the lock for write */
785 abort();
786 }
787
788 l->info.cur_writer = 0;
789 l->info.last_location.function = func;
790 l->info.last_location.file = file;
791 l->info.last_location.line = line;
792
793 __RWLOCK_WRUNLOCK(&l->lock);
794
795 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
796}
797
798static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
799{
800 uint64_t start_time;
801
802 if (unlikely(l->info.cur_writer & tid_bit)) {
803 /* the thread is already owning the lock for write */
804 abort();
805 }
806
807 if (unlikely(l->info.cur_readers & tid_bit)) {
808 /* the thread is already owning the lock for read */
809 abort();
810 }
811
812 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
813
814 start_time = nsec_now();
815 __RWLOCK_RDLOCK(&l->lock);
816 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
817 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
818
819 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
820
821 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
822}
823
824static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
825{
826 int r;
827
828 if (unlikely(l->info.cur_writer & tid_bit)) {
829 /* the thread is already owning the lock for write */
830 abort();
831 }
832
833 if (unlikely(l->info.cur_readers & tid_bit)) {
834 /* the thread is already owning the lock for read */
835 abort();
836 }
837
838 /* try read should never wait */
839 r = __RWLOCK_TRYRDLOCK(&l->lock);
840 if (unlikely(r))
841 return r;
842 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
843
844 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
845
846 return 0;
847}
848
849static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
850{
851 if (unlikely(!(l->info.cur_readers & tid_bit))) {
852 /* the thread is not owning the lock for read */
853 abort();
854 }
855
856 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
857
858 __RWLOCK_RDUNLOCK(&l->lock);
859
860 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
861}
862
863static inline void __spin_init(struct ha_spinlock *l)
864{
865 memset(l, 0, sizeof(struct ha_spinlock));
866 __SPIN_INIT(&l->lock);
867}
868
869static inline void __spin_destroy(struct ha_spinlock *l)
870{
871 __SPIN_DESTROY(&l->lock);
872 memset(l, 0, sizeof(struct ha_spinlock));
873}
874
875static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
876 const char *func, const char *file, int line)
877{
878 uint64_t start_time;
879
880 if (unlikely(l->info.owner & tid_bit)) {
881 /* the thread is already owning the lock */
882 abort();
883 }
884
885 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
886
887 start_time = nsec_now();
888 __SPIN_LOCK(&l->lock);
889 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
890
891 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
892
893
894 l->info.owner = tid_bit;
895 l->info.last_location.function = func;
896 l->info.last_location.file = file;
897 l->info.last_location.line = line;
898
899 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
900}
901
902static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
903 const char *func, const char *file, int line)
904{
905 int r;
906
907 if (unlikely(l->info.owner & tid_bit)) {
908 /* the thread is already owning the lock */
909 abort();
910 }
911
912 /* try read should never wait */
913 r = __SPIN_TRYLOCK(&l->lock);
914 if (unlikely(r))
915 return r;
916 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
917
918 l->info.owner = tid_bit;
919 l->info.last_location.function = func;
920 l->info.last_location.file = file;
921 l->info.last_location.line = line;
922
923 return 0;
924}
925
926static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
927 const char *func, const char *file, int line)
928{
929 if (unlikely(!(l->info.owner & tid_bit))) {
930 /* the thread is not owning the lock */
931 abort();
932 }
933
934 l->info.owner = 0;
935 l->info.last_location.function = func;
936 l->info.last_location.file = file;
937 l->info.last_location.line = line;
938
Willy Tarreau7c2a2ad2017-11-02 16:26:02 +0100939 __SPIN_UNLOCK(&l->lock);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200940 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
941}
942
943#else /* DEBUG_THREAD */
944
945#define HA_SPINLOCK_T unsigned long
946
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100947#define HA_SPIN_INIT(l) ({ (*l) = 0; })
948#define HA_SPIN_DESTROY(l) ({ (*l) = 0; })
949#define HA_SPIN_LOCK(lbl, l) pl_take_s(l)
950#define HA_SPIN_TRYLOCK(lbl, l) !pl_try_s(l)
951#define HA_SPIN_UNLOCK(lbl, l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200952
953#define HA_RWLOCK_T unsigned long
954
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100955#define HA_RWLOCK_INIT(l) ({ (*l) = 0; })
956#define HA_RWLOCK_DESTROY(l) ({ (*l) = 0; })
957#define HA_RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
958#define HA_RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
959#define HA_RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
960#define HA_RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
961#define HA_RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
962#define HA_RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200963
964#endif /* DEBUG_THREAD */
965
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100966#ifdef __x86_64__
Willy Tarreau2325d8a2018-10-10 18:29:23 +0200967
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100968static __inline int
969__ha_cas_dw(void *target, void *compare, const void *set)
970{
971 char ret;
972
973 __asm __volatile("lock cmpxchg16b %0; setz %3"
974 : "+m" (*(void **)target),
975 "=a" (((void **)compare)[0]),
976 "=d" (((void **)compare)[1]),
977 "=q" (ret)
978 : "a" (((void **)compare)[0]),
979 "d" (((void **)compare)[1]),
980 "b" (((const void **)set)[0]),
981 "c" (((const void **)set)[1])
982 : "memory", "cc");
983 return (ret);
984}
985
Olivier Houchard9abcf6e2019-03-07 18:45:00 +0100986/* Use __ha_barrier_atomic* when you're trying to protect data that are
987 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
988 */
989static __inline void
990__ha_barrier_atomic_load(void)
991{
992 __asm __volatile("" ::: "memory");
993}
994
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100995static __inline void
Olivier Houchard9abcf6e2019-03-07 18:45:00 +0100996__ha_barrier_atomic_store(void)
997{
998 __asm __volatile("" ::: "memory");
999}
1000
1001static __inline void
1002__ha_barrier_atomic_full(void)
1003{
1004 __asm __volatile("" ::: "memory");
1005}
1006
1007static __inline void
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001008__ha_barrier_load(void)
1009{
1010 __asm __volatile("lfence" ::: "memory");
1011}
1012
1013static __inline void
1014__ha_barrier_store(void)
1015{
1016 __asm __volatile("sfence" ::: "memory");
1017}
1018
1019static __inline void
1020__ha_barrier_full(void)
1021{
1022 __asm __volatile("mfence" ::: "memory");
1023}
1024
1025#elif defined(__arm__) && (defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__))
Willy Tarreau2325d8a2018-10-10 18:29:23 +02001026
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001027/* Use __ha_barrier_atomic* when you're trying to protect data that are
1028 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
1029 */
1030static __inline void
1031__ha_barrier_atomic_load(void)
1032{
1033 __asm __volatile("dmb" ::: "memory");
1034}
1035
1036static __inline void
1037__ha_barrier_atomic_store(void)
1038{
1039 __asm __volatile("dsb" ::: "memory");
1040}
1041
1042static __inline void
1043__ha_barrier_atomic_full(void)
1044{
1045 __asm __volatile("dmb" ::: "memory");
1046}
1047
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001048static __inline void
1049__ha_barrier_load(void)
1050{
1051 __asm __volatile("dmb" ::: "memory");
1052}
1053
1054static __inline void
1055__ha_barrier_store(void)
1056{
1057 __asm __volatile("dsb" ::: "memory");
1058}
1059
1060static __inline void
1061__ha_barrier_full(void)
1062{
1063 __asm __volatile("dmb" ::: "memory");
1064}
1065
Willy Tarreau41ccb192018-02-14 14:16:28 +01001066static __inline int __ha_cas_dw(void *target, void *compare, const void *set)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001067{
1068 uint64_t previous;
1069 int tmp;
1070
1071 __asm __volatile("1:"
1072 "ldrexd %0, [%4];"
1073 "cmp %Q0, %Q2;"
1074 "ittt eq;"
1075 "cmpeq %R0, %R2;"
1076 "strexdeq %1, %3, [%4];"
1077 "cmpeq %1, #1;"
1078 "beq 1b;"
1079 : "=&r" (previous), "=&r" (tmp)
Willy Tarreau41ccb192018-02-14 14:16:28 +01001080 : "r" (*(uint64_t *)compare), "r" (*(uint64_t *)set), "r" (target)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001081 : "memory", "cc");
1082 tmp = (previous == *(uint64_t *)compare);
1083 *(uint64_t *)compare = previous;
1084 return (tmp);
1085}
1086
1087#elif defined (__aarch64__)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001088
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001089/* Use __ha_barrier_atomic* when you're trying to protect data that are
1090 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
1091 */
1092static __inline void
1093__ha_barrier_atomic_load(void)
1094{
1095 __asm __volatile("dmb ishld" ::: "memory");
1096}
1097
1098static __inline void
1099__ha_barrier_atomic_store(void)
1100{
1101 __asm __volatile("dmb ishst" ::: "memory");
1102}
1103
1104static __inline void
1105__ha_barrier_atomic_full(void)
1106{
1107 __asm __volatile("dmb ish" ::: "memory");
1108}
1109
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001110static __inline void
1111__ha_barrier_load(void)
1112{
1113 __asm __volatile("dmb ishld" ::: "memory");
1114}
1115
1116static __inline void
1117__ha_barrier_store(void)
1118{
1119 __asm __volatile("dmb ishst" ::: "memory");
1120}
1121
1122static __inline void
1123__ha_barrier_full(void)
1124{
1125 __asm __volatile("dmb ish" ::: "memory");
1126}
1127
1128static __inline int __ha_cas_dw(void *target, void *compare, void *set)
1129{
1130 void *value[2];
1131 uint64_t tmp1, tmp2;
1132
1133 __asm__ __volatile__("1:"
1134 "ldxp %0, %1, [%4];"
1135 "mov %2, %0;"
1136 "mov %3, %1;"
1137 "eor %0, %0, %5;"
1138 "eor %1, %1, %6;"
1139 "orr %1, %0, %1;"
1140 "mov %w0, #0;"
1141 "cbnz %1, 2f;"
1142 "stxp %w0, %7, %8, [%4];"
1143 "cbnz %w0, 1b;"
1144 "mov %w0, #1;"
1145 "2:"
1146 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (value[0]), "=&r" (value[1])
1147 : "r" (target), "r" (((void **)(compare))[0]), "r" (((void **)(compare))[1]), "r" (((void **)(set))[0]), "r" (((void **)(set))[1])
1148 : "cc", "memory");
1149
1150 memcpy(compare, &value, sizeof(value));
1151 return (tmp1);
1152}
1153
1154#else
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001155#define __ha_barrier_atomic_load __sync_synchronize
1156#define __ha_barrier_atomic_store __sync_synchronize
1157#define __ha_barrier_atomic_full __sync_synchronize
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001158#define __ha_barrier_load __sync_synchronize
1159#define __ha_barrier_store __sync_synchronize
1160#define __ha_barrier_full __sync_synchronize
1161#endif
1162
Willy Tarreaua8ae77d2018-11-25 19:28:23 +01001163void ha_spin_init(HA_SPINLOCK_T *l);
1164void ha_rwlock_init(HA_RWLOCK_T *l);
1165
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001166#endif /* USE_THREAD */
1167
Willy Tarreau149ab772019-01-26 14:27:06 +01001168extern int thread_cpus_enabled_at_boot;
1169
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001170static inline void __ha_compiler_barrier(void)
1171{
1172 __asm __volatile("" ::: "memory");
1173}
1174
Willy Tarreau0ccd3222018-07-30 10:34:35 +02001175int parse_nbthread(const char *arg, char **err);
Willy Tarreau149ab772019-01-26 14:27:06 +01001176int thread_get_default_count();
Willy Tarreau4037a3f2018-03-28 18:06:47 +02001177
Olivier Houchardd0c3b882019-03-07 18:55:31 +01001178#ifndef _HA_ATOMIC_CAS
1179#define _HA_ATOMIC_CAS HA_ATOMIC_CAS
1180#endif /* !_HA_ATOMIC_CAS */
1181
Willy Tarreau6a38b322019-05-11 18:04:24 +02001182#ifndef _HA_ATOMIC_DWCAS
1183#define _HA_ATOMIC_DWCAS HA_ATOMIC_DWCAS
1184#endif /* !_HA_ATOMIC_CAS */
1185
Olivier Houchardd0c3b882019-03-07 18:55:31 +01001186#ifndef _HA_ATOMIC_ADD
1187#define _HA_ATOMIC_ADD HA_ATOMIC_ADD
1188#endif /* !_HA_ATOMIC_ADD */
1189
1190#ifndef _HA_ATOMIC_XADD
1191#define _HA_ATOMIC_XADD HA_ATOMIC_XADD
1192#endif /* !_HA_ATOMIC_SUB */
1193
1194#ifndef _HA_ATOMIC_SUB
1195#define _HA_ATOMIC_SUB HA_ATOMIC_SUB
1196#endif /* !_HA_ATOMIC_SUB */
1197
1198#ifndef _HA_ATOMIC_AND
1199#define _HA_ATOMIC_AND HA_ATOMIC_AND
1200#endif /* !_HA_ATOMIC_AND */
1201
1202#ifndef _HA_ATOMIC_OR
1203#define _HA_ATOMIC_OR HA_ATOMIC_OR
1204#endif /* !_HA_ATOMIC_OR */
1205
1206#ifndef _HA_ATOMIC_XCHG
1207#define _HA_ATOMIC_XCHG HA_ATOMIC_XCHG
1208#endif /* !_HA_ATOMIC_XCHG */
1209
1210#ifndef _HA_ATOMIC_STORE
1211#define _HA_ATOMIC_STORE HA_ATOMIC_STORE
1212#endif /* !_HA_ATOMIC_STORE */
Olivier Houchard9ce62b52019-04-30 13:38:02 +02001213
1214#ifndef _HA_ATOMIC_LOAD
1215#define _HA_ATOMIC_LOAD HA_ATOMIC_LOAD
1216#endif /* !_HA_ATOMIC_LOAD */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001217#endif /* _COMMON_HATHREADS_H */