blob: 45ec1d2e06f0d7af6bb1ee887bce4b2fd5a95a1e [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
David Carliera92c5ce2019-09-13 05:03:12 +010041/* thread info flags, for ha_thread_info[].flags */
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020042#define TI_FL_STUCK 0x00000001
43
44
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020045#ifndef USE_THREAD
46
Willy Tarreau5778fea2020-05-09 09:08:09 +020047#define THREAD_LOCAL /* empty */
Willy Tarreau421f02e2018-01-20 18:19:22 +010048#define MAX_THREADS 1
Willy Tarreau0c026f42018-08-01 19:12:20 +020049#define MAX_THREADS_MASK 1
50
51/* Only way found to replace variables with constants that are optimized away
52 * at build time.
53 */
54enum { all_threads_mask = 1UL };
Willy Tarreau441259c2019-05-22 07:48:18 +020055enum { threads_harmless_mask = 0 };
56enum { threads_want_rdv_mask = 0 };
Willy Tarreau9a1f5732019-06-09 12:20:02 +020057enum { threads_sync_mask = 0 };
Willy Tarreau0c026f42018-08-01 19:12:20 +020058enum { tid_bit = 1UL };
59enum { tid = 0 };
Willy Tarreau421f02e2018-01-20 18:19:22 +010060
Willy Tarreau5a6e2242019-05-20 18:56:48 +020061extern struct thread_info {
Willy Tarreau624dcbf2019-05-20 20:23:06 +020062 clockid_t clock_id;
Willy Tarreau430f5902019-05-21 20:01:26 +020063 timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */
Willy Tarreau81036f22019-05-20 19:24:50 +020064 uint64_t prev_cpu_time; /* previous per thread CPU time */
65 uint64_t prev_mono_time; /* previous system wide monotonic time */
66 unsigned int idle_pct; /* idle to total ratio over last sample (percent) */
Willy Tarreaue6a02fa2019-05-22 07:06:44 +020067 unsigned int flags; /* thread info flags, TI_FL_* */
Willy Tarreau5a6e2242019-05-20 18:56:48 +020068 /* pad to cache line (64B) */
69 char __pad[0]; /* unused except to check remaining room */
70 char __end[0] __attribute__((aligned(64)));
David Carliera92c5ce2019-09-13 05:03:12 +010071} ha_thread_info[MAX_THREADS];
Willy Tarreau5a6e2242019-05-20 18:56:48 +020072
Willy Tarreau8323a372019-05-20 18:57:53 +020073extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */
74
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010075#define __decl_hathreads(decl)
Willy Tarreau90fa97b2018-11-25 19:46:08 +010076#define __decl_spinlock(lock)
77#define __decl_aligned_spinlock(lock)
78#define __decl_rwlock(lock)
79#define __decl_aligned_rwlock(lock)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010080
Willy Tarreaud66345d2020-05-05 15:58:00 +020081#define HA_ATOMIC_CAS(val, old, new) \
82 ({ \
83 typeof(val) _v = (val); \
84 typeof(old) _o = (old); \
85 (*_v == *_o) ? ((*_v = (new)), 1) : ((*_o = *_v), 0); \
86 })
Willy Tarreauc3b59582019-05-27 17:37:20 +020087
88/* warning, n is a pointer to the double value for dwcas */
89#define HA_ATOMIC_DWCAS(val, o, n) \
90 ({ \
91 long *_v = (long*)(val); \
92 long *_o = (long*)(o); \
93 long *_n = (long*)(n); \
94 long _v0 = _v[0], _v1 = _v[1]; \
95 (_v0 == _o[0] && _v1 == _o[1]) ? \
96 (_v[0] = _n[0], _v[1] = _n[1], 1) : \
97 (_o[0] = _v0, _o[1] = _v1, 0); \
98 })
99
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200100#define HA_ATOMIC_ADD(val, i) ({*(val) += (i);})
101#define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);})
Willy Tarreau9378df82018-09-05 16:11:03 +0200102#define HA_ATOMIC_XADD(val, i) \
103 ({ \
104 typeof((val)) __p_xadd = (val); \
105 typeof(*(val)) __old_xadd = *__p_xadd; \
106 *__p_xadd += i; \
107 __old_xadd; \
108 })
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200109#define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);})
110#define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);})
111#define HA_ATOMIC_XCHG(val, new) \
112 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200113 typeof(*(val)) __old_xchg = *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200114 *(val) = new; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200115 __old_xchg; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200116 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100117#define HA_ATOMIC_BTS(val, bit) \
118 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200119 typeof((val)) __p_bts = (val); \
120 typeof(*__p_bts) __b_bts = (1UL << (bit)); \
121 typeof(*__p_bts) __t_bts = *__p_bts & __b_bts; \
122 if (!__t_bts) \
123 *__p_bts |= __b_bts; \
124 __t_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100125 })
126#define HA_ATOMIC_BTR(val, bit) \
127 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200128 typeof((val)) __p_btr = (val); \
129 typeof(*__p_btr) __b_btr = (1UL << (bit)); \
130 typeof(*__p_btr) __t_btr = *__p_btr & __b_btr; \
131 if (__t_btr) \
132 *__p_btr &= ~__b_btr; \
133 __t_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100134 })
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200135#define HA_ATOMIC_LOAD(val) *(val)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200136#define HA_ATOMIC_STORE(val, new) ({*(val) = new;})
137#define HA_ATOMIC_UPDATE_MAX(val, new) \
138 ({ \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200139 typeof(val) __val = (val); \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200140 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200141 \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200142 if (*__val < __new_max) \
143 *__val = __new_max; \
144 *__val; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200145 })
146
147#define HA_ATOMIC_UPDATE_MIN(val, new) \
148 ({ \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200149 typeof(val) __val = (val); \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200150 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200151 \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200152 if (*__val > __new_min) \
153 *__val = __new_min; \
154 *__val; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200155 })
156
Willy Tarreaub29dc952017-10-31 18:00:20 +0100157#define HA_BARRIER() do { } while (0)
Christopher Faulet339fff82017-10-19 11:59:15 +0200158
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100159#define HA_SPIN_INIT(l) do { /* do nothing */ } while(0)
160#define HA_SPIN_DESTROY(l) do { /* do nothing */ } while(0)
161#define HA_SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0)
162#define HA_SPIN_TRYLOCK(lbl, l) ({ 0; })
163#define HA_SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200164
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100165#define HA_RWLOCK_INIT(l) do { /* do nothing */ } while(0)
166#define HA_RWLOCK_DESTROY(l) do { /* do nothing */ } while(0)
167#define HA_RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0)
168#define HA_RWLOCK_TRYWRLOCK(lbl, l) ({ 0; })
169#define HA_RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0)
170#define HA_RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0)
171#define HA_RWLOCK_TRYRDLOCK(lbl, l) ({ 0; })
172#define HA_RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200173
William Lallemand6e1796e2018-06-07 11:23:40 +0200174#define ha_sigmask(how, set, oldset) sigprocmask(how, set, oldset)
175
Willy Tarreau0c026f42018-08-01 19:12:20 +0200176static inline void ha_set_tid(unsigned int tid)
177{
David Carliera92c5ce2019-09-13 05:03:12 +0100178 ti = &ha_thread_info[tid];
Willy Tarreau38171da2019-05-17 16:33:13 +0200179}
180
Willy Tarreauf0e5da22020-05-01 12:26:03 +0200181static inline unsigned long long ha_get_pthread_id(unsigned int thr)
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200182{
183 return 0;
184}
185
Willy Tarreau38171da2019-05-17 16:33:13 +0200186static inline void ha_thread_relax(void)
187{
188#if _POSIX_PRIORITY_SCHEDULING
189 sched_yield();
190#endif
Willy Tarreau0c026f42018-08-01 19:12:20 +0200191}
William Lallemand6e1796e2018-06-07 11:23:40 +0200192
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200193/* send signal <sig> to thread <thr> */
194static inline void ha_tkill(unsigned int thr, int sig)
195{
196 raise(sig);
197}
198
199/* send signal <sig> to all threads */
200static inline void ha_tkillall(int sig)
201{
202 raise(sig);
203}
204
Olivier Houchard9abcf6e2019-03-07 18:45:00 +0100205static inline void __ha_barrier_atomic_load(void)
206{
207}
208
209static inline void __ha_barrier_atomic_store(void)
210{
211}
212
213static inline void __ha_barrier_atomic_full(void)
214{
215}
216
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100217static inline void __ha_barrier_load(void)
218{
219}
220
221static inline void __ha_barrier_store(void)
222{
223}
224
225static inline void __ha_barrier_full(void)
226{
227}
228
Willy Tarreau60b639c2018-08-02 10:16:17 +0200229static inline void thread_harmless_now()
230{
231}
232
233static inline void thread_harmless_end()
234{
235}
236
237static inline void thread_isolate()
238{
239}
240
241static inline void thread_release()
242{
243}
244
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200245static inline void thread_sync_release()
246{
247}
248
Willy Tarreau60b639c2018-08-02 10:16:17 +0200249static inline unsigned long thread_isolated()
250{
251 return 1;
252}
253
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200254#else /* USE_THREAD */
255
256#include <stdio.h>
257#include <stdlib.h>
258#include <string.h>
259#include <pthread.h>
260#include <import/plock.h>
261
Willy Tarreau5778fea2020-05-09 09:08:09 +0200262#define THREAD_LOCAL __thread
263
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100264#ifndef MAX_THREADS
Willy Tarreau421f02e2018-01-20 18:19:22 +0100265#define MAX_THREADS LONGBITS
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100266#endif
267
268#define MAX_THREADS_MASK (~0UL >> (LONGBITS - MAX_THREADS))
Willy Tarreau421f02e2018-01-20 18:19:22 +0100269
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100270#define __decl_hathreads(decl) decl
271
Willy Tarreau90fa97b2018-11-25 19:46:08 +0100272/* declare a self-initializing spinlock */
273#define __decl_spinlock(lock) \
274 HA_SPINLOCK_T (lock); \
275 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
276
277/* declare a self-initializing spinlock, aligned on a cache line */
278#define __decl_aligned_spinlock(lock) \
279 HA_SPINLOCK_T (lock) __attribute__((aligned(64))); \
280 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
281
282/* declare a self-initializing rwlock */
283#define __decl_rwlock(lock) \
284 HA_RWLOCK_T (lock); \
285 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
286
287/* declare a self-initializing rwlock, aligned on a cache line */
288#define __decl_aligned_rwlock(lock) \
289 HA_RWLOCK_T (lock) __attribute__((aligned(64))); \
290 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
291
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200292/* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to
293 * have a header file regrouping all functions dealing with threads. */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100294
David Carlierec5e8452018-01-11 14:20:43 +0000295#if defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 7) && !defined(__clang__)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100296/* gcc < 4.7 */
297
298#define HA_ATOMIC_ADD(val, i) __sync_add_and_fetch(val, i)
299#define HA_ATOMIC_SUB(val, i) __sync_sub_and_fetch(val, i)
Willy Tarreau9378df82018-09-05 16:11:03 +0200300#define HA_ATOMIC_XADD(val, i) __sync_fetch_and_add(val, i)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100301#define HA_ATOMIC_AND(val, flags) __sync_and_and_fetch(val, flags)
302#define HA_ATOMIC_OR(val, flags) __sync_or_and_fetch(val, flags)
303
304/* the CAS is a bit complicated. The older API doesn't support returning the
305 * value and the swap's result at the same time. So here we take what looks
306 * like the safest route, consisting in using the boolean version guaranteeing
307 * that the operation was performed or not, and we snoop a previous value. If
308 * the compare succeeds, we return. If it fails, we return the previous value,
309 * but only if it differs from the expected one. If it's the same it's a race
310 * thus we try again to avoid confusing a possibly sensitive caller.
311 */
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200312#define HA_ATOMIC_CAS(val, old, new) \
313 ({ \
314 typeof((val)) __val_cas = (val); \
315 typeof((old)) __oldp_cas = (old); \
316 typeof(*(old)) __oldv_cas; \
317 typeof((new)) __new_cas = (new); \
318 int __ret_cas; \
319 do { \
320 __oldv_cas = *__val_cas; \
321 __ret_cas = __sync_bool_compare_and_swap(__val_cas, *__oldp_cas, __new_cas); \
322 } while (!__ret_cas && *__oldp_cas == __oldv_cas); \
323 if (!__ret_cas) \
324 *__oldp_cas = __oldv_cas; \
325 __ret_cas; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100326 })
327
Willy Tarreauc3b59582019-05-27 17:37:20 +0200328/* warning, n is a pointer to the double value for dwcas */
Willy Tarreau6a38b322019-05-11 18:04:24 +0200329#define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
330
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200331#define HA_ATOMIC_XCHG(val, new) \
332 ({ \
333 typeof((val)) __val_xchg = (val); \
334 typeof(*(val)) __old_xchg; \
335 typeof((new)) __new_xchg = (new); \
336 do { __old_xchg = *__val_xchg; \
337 } while (!__sync_bool_compare_and_swap(__val_xchg, __old_xchg, __new_xchg)); \
338 __old_xchg; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100339 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100340
341#define HA_ATOMIC_BTS(val, bit) \
342 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200343 typeof(*(val)) __b_bts = (1UL << (bit)); \
344 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100345 })
346
347#define HA_ATOMIC_BTR(val, bit) \
348 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200349 typeof(*(val)) __b_btr = (1UL << (bit)); \
350 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100351 })
352
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200353#define HA_ATOMIC_LOAD(val) \
354 ({ \
355 typeof(*(val)) ret; \
356 __sync_synchronize(); \
357 ret = *(volatile typeof(val))val; \
358 __sync_synchronize(); \
359 ret; \
360 })
361
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200362#define HA_ATOMIC_STORE(val, new) \
363 ({ \
364 typeof((val)) __val_store = (val); \
365 typeof(*(val)) __old_store; \
366 typeof((new)) __new_store = (new); \
367 do { __old_store = *__val_store; \
368 } while (!__sync_bool_compare_and_swap(__val_store, __old_store, __new_store)); \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100369 })
370#else
371/* gcc >= 4.7 */
Olivier Houchard11353792019-03-07 18:48:22 +0100372#define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
Willy Tarreauc3b59582019-05-27 17:37:20 +0200373/* warning, n is a pointer to the double value for dwcas */
Willy Tarreau6a38b322019-05-11 18:04:24 +0200374#define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
Olivier Houchard11353792019-03-07 18:48:22 +0100375#define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_SEQ_CST)
376#define HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_SEQ_CST)
377#define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_SEQ_CST)
378#define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_SEQ_CST)
379#define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_SEQ_CST)
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100380#define HA_ATOMIC_BTS(val, bit) \
381 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200382 typeof(*(val)) __b_bts = (1UL << (bit)); \
383 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100384 })
385
386#define HA_ATOMIC_BTR(val, bit) \
387 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200388 typeof(*(val)) __b_btr = (1UL << (bit)); \
389 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100390 })
391
Olivier Houchard11353792019-03-07 18:48:22 +0100392#define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_SEQ_CST)
393#define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_SEQ_CST)
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200394#define HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_SEQ_CST)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200395
396/* Variants that don't generate any memory barrier.
397 * If you're unsure how to deal with barriers, just use the HA_ATOMIC_* version,
398 * that will always generate correct code.
399 * Usually it's fine to use those when updating data that have no dependency,
400 * ie updating a counter. Otherwise a barrier is required.
401 */
402#define _HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED)
Willy Tarreauc3b59582019-05-27 17:37:20 +0200403/* warning, n is a pointer to the double value for dwcas */
Willy Tarreau6a38b322019-05-11 18:04:24 +0200404#define _HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200405#define _HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_RELAXED)
406#define _HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_RELAXED)
407#define _HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_RELAXED)
408#define _HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_RELAXED)
409#define _HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_RELAXED)
410#define _HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_RELAXED)
411#define _HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_RELAXED)
Olivier Houchard9ce62b52019-04-30 13:38:02 +0200412#define _HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_RELAXED)
Olivier Houchard3212a2c2019-04-15 21:14:25 +0200413
414#endif /* gcc >= 4.7 */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100415
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200416#define HA_ATOMIC_UPDATE_MAX(val, new) \
417 ({ \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200418 typeof(val) __val = (val); \
419 typeof(*(val)) __old_max = *__val; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200420 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200421 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200422 while (__old_max < __new_max && \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200423 !HA_ATOMIC_CAS(__val, &__old_max, __new_max)); \
424 *__val; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200425 })
426#define HA_ATOMIC_UPDATE_MIN(val, new) \
427 ({ \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200428 typeof(val) __val = (val); \
429 typeof(*(val)) __old_min = *__val; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200430 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200431 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200432 while (__old_min > __new_min && \
Willy Tarreaua4d9ee32020-05-05 16:13:36 +0200433 !HA_ATOMIC_CAS(__val, &__old_min, __new_min)); \
434 *__val; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200435 })
436
Willy Tarreaub29dc952017-10-31 18:00:20 +0100437#define HA_BARRIER() pl_barrier()
438
Willy Tarreau60b639c2018-08-02 10:16:17 +0200439void thread_harmless_till_end();
440void thread_isolate();
441void thread_release();
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200442void thread_sync_release();
Willy Tarreau2beaaf72019-05-22 08:43:34 +0200443void ha_tkill(unsigned int thr, int sig);
444void ha_tkillall(int sig);
Christopher Faulet339fff82017-10-19 11:59:15 +0200445
Willy Tarreau5a6e2242019-05-20 18:56:48 +0200446extern struct thread_info {
447 pthread_t pthread;
448 clockid_t clock_id;
Willy Tarreau430f5902019-05-21 20:01:26 +0200449 timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */
Willy Tarreau81036f22019-05-20 19:24:50 +0200450 uint64_t prev_cpu_time; /* previous per thread CPU time */
451 uint64_t prev_mono_time; /* previous system wide monotonic time */
452 unsigned int idle_pct; /* idle to total ratio over last sample (percent) */
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200453 unsigned int flags; /* thread info flags, TI_FL_* */
Willy Tarreau5a6e2242019-05-20 18:56:48 +0200454 /* pad to cache line (64B) */
455 char __pad[0]; /* unused except to check remaining room */
456 char __end[0] __attribute__((aligned(64)));
David Carliera92c5ce2019-09-13 05:03:12 +0100457} ha_thread_info[MAX_THREADS];
Willy Tarreau5a6e2242019-05-20 18:56:48 +0200458
Willy Tarreau0c026f42018-08-01 19:12:20 +0200459extern THREAD_LOCAL unsigned int tid; /* The thread id */
460extern THREAD_LOCAL unsigned long tid_bit; /* The bit corresponding to the thread id */
Willy Tarreau8323a372019-05-20 18:57:53 +0200461extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */
Christopher Fauletddb6c162018-07-20 09:31:53 +0200462extern volatile unsigned long all_threads_mask;
Willy Tarreau60b639c2018-08-02 10:16:17 +0200463extern volatile unsigned long threads_want_rdv_mask;
464extern volatile unsigned long threads_harmless_mask;
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200465extern volatile unsigned long threads_sync_mask;
Willy Tarreau60b639c2018-08-02 10:16:17 +0200466
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200467/* explanation for threads_want_rdv_mask, threads_harmless_mask, and
468 * threads_sync_mask :
Willy Tarreau60b639c2018-08-02 10:16:17 +0200469 * - threads_want_rdv_mask is a bit field indicating all threads that have
470 * requested a rendez-vous of other threads using thread_isolate().
471 * - threads_harmless_mask is a bit field indicating all threads that are
472 * currently harmless in that they promise not to access a shared resource.
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200473 * - threads_sync_mask is a bit field indicating that a thread waiting for
474 * others to finish wants to leave synchronized with others and as such
475 * promises to do so as well using thread_sync_release().
Willy Tarreau60b639c2018-08-02 10:16:17 +0200476 *
477 * For a given thread, its bits in want_rdv and harmless can be translated like
478 * this :
479 *
480 * ----------+----------+----------------------------------------------------
481 * want_rdv | harmless | description
482 * ----------+----------+----------------------------------------------------
483 * 0 | 0 | thread not interested in RDV, possibly harmful
484 * 0 | 1 | thread not interested in RDV but harmless
485 * 1 | 1 | thread interested in RDV and waiting for its turn
486 * 1 | 0 | thread currently working isolated from others
487 * ----------+----------+----------------------------------------------------
Willy Tarreau9a1f5732019-06-09 12:20:02 +0200488 *
489 * thread_sync_mask only delays the leaving of threads_sync_release() to make
490 * sure that each thread's harmless bit is cleared before leaving the function.
Willy Tarreau60b639c2018-08-02 10:16:17 +0200491 */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200492
William Lallemand6e1796e2018-06-07 11:23:40 +0200493#define ha_sigmask(how, set, oldset) pthread_sigmask(how, set, oldset)
494
Willy Tarreau0c026f42018-08-01 19:12:20 +0200495/* sets the thread ID and the TID bit for the current thread */
496static inline void ha_set_tid(unsigned int data)
497{
498 tid = data;
499 tid_bit = (1UL << tid);
David Carliera92c5ce2019-09-13 05:03:12 +0100500 ti = &ha_thread_info[tid];
Willy Tarreau0c026f42018-08-01 19:12:20 +0200501}
502
Willy Tarreauff64d3b2020-05-01 11:28:49 +0200503/* Retrieves the opaque pthread_t of thread <thr> cast to an unsigned long long
504 * since POSIX took great care of not specifying its representation, making it
505 * hard to export for post-mortem analysis. For this reason we copy it into a
506 * union and will use the smallest scalar type at least as large as its size,
507 * which will keep endianness and alignment for all regular sizes. As a last
508 * resort we end up with a long long ligned to the first bytes in memory, which
509 * will be endian-dependent if pthread_t is larger than a long long (not seen
510 * yet).
511 */
512static inline unsigned long long ha_get_pthread_id(unsigned int thr)
513{
514 union {
515 pthread_t t;
516 unsigned long long ll;
517 unsigned int i;
518 unsigned short s;
519 unsigned char c;
520 } u;
521
522 memset(&u, 0, sizeof(u));
523 u.t = ha_thread_info[thr].pthread;
524
525 if (sizeof(u.t) <= sizeof(u.c))
526 return u.c;
527 else if (sizeof(u.t) <= sizeof(u.s))
528 return u.s;
529 else if (sizeof(u.t) <= sizeof(u.i))
530 return u.i;
531 return u.ll;
532}
533
Willy Tarreau38171da2019-05-17 16:33:13 +0200534static inline void ha_thread_relax(void)
535{
536#if _POSIX_PRIORITY_SCHEDULING
537 sched_yield();
538#else
539 pl_cpu_relax();
540#endif
541}
542
Willy Tarreau60b639c2018-08-02 10:16:17 +0200543/* Marks the thread as harmless. Note: this must be true, i.e. the thread must
544 * not be touching any unprotected shared resource during this period. Usually
545 * this is called before poll(), but it may also be placed around very slow
546 * calls (eg: some crypto operations). Needs to be terminated using
547 * thread_harmless_end().
548 */
549static inline void thread_harmless_now()
550{
551 HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
552}
553
554/* Ends the harmless period started by thread_harmless_now(). Usually this is
555 * placed after the poll() call. If it is discovered that a job was running and
556 * is relying on the thread still being harmless, the thread waits for the
557 * other one to finish.
558 */
559static inline void thread_harmless_end()
560{
561 while (1) {
562 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
563 if (likely((threads_want_rdv_mask & all_threads_mask) == 0))
564 break;
565 thread_harmless_till_end();
566 }
567}
568
569/* an isolated thread has harmless cleared and want_rdv set */
570static inline unsigned long thread_isolated()
571{
572 return threads_want_rdv_mask & ~threads_harmless_mask & tid_bit;
573}
574
William Lallemand6e1796e2018-06-07 11:23:40 +0200575
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200576#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
577
Christopher Fauletf51bac22018-01-30 11:04:29 +0100578/* WARNING!!! if you update this enum, please also keep lock_label() up to date below */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200579enum lock_label {
Emeric Brunc60def82017-09-27 14:59:38 +0200580 TASK_RQ_LOCK,
581 TASK_WQ_LOCK,
Christopher Fauletb349e482017-08-29 09:52:38 +0200582 POOL_LOCK,
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200583 LISTENER_LOCK,
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200584 PROXY_LOCK,
Christopher Faulet29f77e82017-06-08 14:04:45 +0200585 SERVER_LOCK,
Christopher Faulet5b517552017-06-09 14:17:53 +0200586 LBPRM_LOCK,
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200587 SIGNALS_LOCK,
Emeric Brun819fc6f2017-06-13 19:37:32 +0200588 STK_TABLE_LOCK,
589 STK_SESS_LOCK,
Emeric Brun1138fd02017-06-19 12:38:55 +0200590 APPLETS_LOCK,
Emeric Brun80527f52017-06-19 17:46:37 +0200591 PEER_LOCK,
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200592 STRMS_LOCK,
Emeric Brun821bb9b2017-06-15 16:37:39 +0200593 SSL_LOCK,
594 SSL_GEN_CERTS_LOCK,
Emeric Brunb5997f72017-07-03 11:34:05 +0200595 PATREF_LOCK,
596 PATEXP_LOCK,
Christopher Faulete95f2c32017-07-24 16:30:34 +0200597 VARS_LOCK,
Christopher Faulet8ca3b4b2017-07-25 11:07:15 +0200598 COMP_POOL_LOCK,
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200599 LUA_LOCK,
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200600 NOTIF_LOCK,
Christopher Faulet24289f22017-09-25 14:48:02 +0200601 SPOE_APPLET_LOCK,
Christopher Fauletb2812a62017-10-04 16:17:58 +0200602 DNS_LOCK,
Christopher Fauletcfda8472017-10-20 15:40:23 +0200603 PID_LIST_LOCK,
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200604 EMAIL_ALERTS_LOCK,
Emeric Brund8b3b652017-11-07 11:19:48 +0100605 PIPES_LOCK,
Christopher Faulet16f45c82018-02-16 11:23:49 +0100606 TLSKEYS_REF_LOCK,
Willy Tarreau34d4b522018-10-29 18:02:54 +0100607 AUTH_LOCK,
Frédéric Lécailled803e472019-04-25 07:42:09 +0200608 LOGSRV_LOCK,
Frédéric Lécaille4a3fef82019-05-28 14:47:17 +0200609 DICT_LOCK,
Willy Tarreaud6e0c032019-07-25 07:53:56 +0200610 PROTO_LOCK,
William Lallemand150bfa82019-09-19 17:12:49 +0200611 CKCH_LOCK,
612 SNI_LOCK,
Emeric Brun494c5052020-05-28 11:13:15 +0200613 SFT_LOCK, /* sink forward target */
Ben51Degrees4ddf59d2019-02-05 13:24:00 +0000614 OTHER_LOCK,
Christopher Faulet339fff82017-10-19 11:59:15 +0200615 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200616};
617struct lock_stat {
618 uint64_t nsec_wait_for_write;
619 uint64_t nsec_wait_for_read;
620 uint64_t num_write_locked;
621 uint64_t num_write_unlocked;
622 uint64_t num_read_locked;
623 uint64_t num_read_unlocked;
624};
625
626extern struct lock_stat lock_stats[LOCK_LABELS];
627
628#define __HA_SPINLOCK_T unsigned long
629
630#define __SPIN_INIT(l) ({ (*l) = 0; })
631#define __SPIN_DESTROY(l) ({ (*l) = 0; })
Willy Tarreau88ac59b2017-11-06 01:03:26 +0100632#define __SPIN_LOCK(l) pl_take_s(l)
633#define __SPIN_TRYLOCK(l) !pl_try_s(l)
634#define __SPIN_UNLOCK(l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200635
636#define __HA_RWLOCK_T unsigned long
637
638#define __RWLOCK_INIT(l) ({ (*l) = 0; })
639#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
640#define __RWLOCK_WRLOCK(l) pl_take_w(l)
641#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
642#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
643#define __RWLOCK_RDLOCK(l) pl_take_r(l)
644#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
645#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
646
647#define HA_SPINLOCK_T struct ha_spinlock
648
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100649#define HA_SPIN_INIT(l) __spin_init(l)
650#define HA_SPIN_DESTROY(l) __spin_destroy(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200651
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100652#define HA_SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
653#define HA_SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
654#define HA_SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200655
656#define HA_RWLOCK_T struct ha_rwlock
657
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100658#define HA_RWLOCK_INIT(l) __ha_rwlock_init((l))
659#define HA_RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
660#define HA_RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
661#define HA_RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
662#define HA_RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
663#define HA_RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
664#define HA_RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
665#define HA_RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200666
667struct ha_spinlock {
668 __HA_SPINLOCK_T lock;
669 struct {
670 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
671 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
672 struct {
673 const char *function;
674 const char *file;
675 int line;
676 } last_location; /* location of the last owner */
677 } info;
678};
679
680struct ha_rwlock {
681 __HA_RWLOCK_T lock;
682 struct {
683 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
684 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
685 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
686 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
687 struct {
688 const char *function;
689 const char *file;
690 int line;
691 } last_location; /* location of the last write owner */
692 } info;
693};
694
Christopher Fauletf51bac22018-01-30 11:04:29 +0100695static inline const char *lock_label(enum lock_label label)
696{
697 switch (label) {
Christopher Fauletf51bac22018-01-30 11:04:29 +0100698 case TASK_RQ_LOCK: return "TASK_RQ";
699 case TASK_WQ_LOCK: return "TASK_WQ";
700 case POOL_LOCK: return "POOL";
701 case LISTENER_LOCK: return "LISTENER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100702 case PROXY_LOCK: return "PROXY";
703 case SERVER_LOCK: return "SERVER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100704 case LBPRM_LOCK: return "LBPRM";
705 case SIGNALS_LOCK: return "SIGNALS";
706 case STK_TABLE_LOCK: return "STK_TABLE";
707 case STK_SESS_LOCK: return "STK_SESS";
708 case APPLETS_LOCK: return "APPLETS";
709 case PEER_LOCK: return "PEER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100710 case STRMS_LOCK: return "STRMS";
711 case SSL_LOCK: return "SSL";
712 case SSL_GEN_CERTS_LOCK: return "SSL_GEN_CERTS";
713 case PATREF_LOCK: return "PATREF";
714 case PATEXP_LOCK: return "PATEXP";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100715 case VARS_LOCK: return "VARS";
716 case COMP_POOL_LOCK: return "COMP_POOL";
717 case LUA_LOCK: return "LUA";
718 case NOTIF_LOCK: return "NOTIF";
719 case SPOE_APPLET_LOCK: return "SPOE_APPLET";
720 case DNS_LOCK: return "DNS";
721 case PID_LIST_LOCK: return "PID_LIST";
722 case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS";
723 case PIPES_LOCK: return "PIPES";
Christopher Faulet16f45c82018-02-16 11:23:49 +0100724 case TLSKEYS_REF_LOCK: return "TLSKEYS_REF";
Willy Tarreau34d4b522018-10-29 18:02:54 +0100725 case AUTH_LOCK: return "AUTH";
Frédéric Lécailled803e472019-04-25 07:42:09 +0200726 case LOGSRV_LOCK: return "LOGSRV";
Frédéric Lécaille4a3fef82019-05-28 14:47:17 +0200727 case DICT_LOCK: return "DICT";
Willy Tarreaud6e0c032019-07-25 07:53:56 +0200728 case PROTO_LOCK: return "PROTO";
William Lallemand150bfa82019-09-19 17:12:49 +0200729 case CKCH_LOCK: return "CKCH";
730 case SNI_LOCK: return "SNI";
Emeric Brun494c5052020-05-28 11:13:15 +0200731 case SFT_LOCK: return "SFT";
Ben51Degrees4ddf59d2019-02-05 13:24:00 +0000732 case OTHER_LOCK: return "OTHER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100733 case LOCK_LABELS: break; /* keep compiler happy */
734 };
735 /* only way to come here is consecutive to an internal bug */
736 abort();
737}
738
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200739static inline void show_lock_stats()
740{
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200741 int lbl;
742
743 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
744 fprintf(stderr,
745 "Stats about Lock %s: \n"
746 "\t # write lock : %lu\n"
747 "\t # write unlock: %lu (%ld)\n"
748 "\t # wait time for write : %.3f msec\n"
749 "\t # wait time for write/lock: %.3f nsec\n"
750 "\t # read lock : %lu\n"
751 "\t # read unlock : %lu (%ld)\n"
752 "\t # wait time for read : %.3f msec\n"
753 "\t # wait time for read/lock : %.3f nsec\n",
Christopher Fauletf51bac22018-01-30 11:04:29 +0100754 lock_label(lbl),
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200755 lock_stats[lbl].num_write_locked,
756 lock_stats[lbl].num_write_unlocked,
757 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
758 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
759 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
760 lock_stats[lbl].num_read_locked,
761 lock_stats[lbl].num_read_unlocked,
762 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
763 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
764 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
765 }
766}
767
768/* Following functions are used to collect some stats about locks. We wrap
769 * pthread functions to known how much time we wait in a lock. */
770
771static uint64_t nsec_now(void) {
772 struct timespec ts;
773
774 clock_gettime(CLOCK_MONOTONIC, &ts);
775 return ((uint64_t) ts.tv_sec * 1000000000ULL +
776 (uint64_t) ts.tv_nsec);
777}
778
779static inline void __ha_rwlock_init(struct ha_rwlock *l)
780{
781 memset(l, 0, sizeof(struct ha_rwlock));
782 __RWLOCK_INIT(&l->lock);
783}
784
785static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
786{
787 __RWLOCK_DESTROY(&l->lock);
788 memset(l, 0, sizeof(struct ha_rwlock));
789}
790
791
792static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
793 const char *func, const char *file, int line)
794{
795 uint64_t start_time;
796
797 if (unlikely(l->info.cur_writer & tid_bit)) {
798 /* the thread is already owning the lock for write */
799 abort();
800 }
801
802 if (unlikely(l->info.cur_readers & tid_bit)) {
803 /* the thread is already owning the lock for read */
804 abort();
805 }
806
807 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
808
809 start_time = nsec_now();
810 __RWLOCK_WRLOCK(&l->lock);
811 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
812
813 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
814
815 l->info.cur_writer = tid_bit;
816 l->info.last_location.function = func;
817 l->info.last_location.file = file;
818 l->info.last_location.line = line;
819
820 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
821}
822
823static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
824 const char *func, const char *file, int line)
825{
826 uint64_t start_time;
827 int r;
828
829 if (unlikely(l->info.cur_writer & tid_bit)) {
830 /* the thread is already owning the lock for write */
831 abort();
832 }
833
834 if (unlikely(l->info.cur_readers & tid_bit)) {
835 /* the thread is already owning the lock for read */
836 abort();
837 }
838
839 /* We set waiting writer because trywrlock could wait for readers to quit */
840 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
841
842 start_time = nsec_now();
843 r = __RWLOCK_TRYWRLOCK(&l->lock);
844 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
845 if (unlikely(r)) {
846 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
847 return r;
848 }
849 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
850
851 l->info.cur_writer = tid_bit;
852 l->info.last_location.function = func;
853 l->info.last_location.file = file;
854 l->info.last_location.line = line;
855
856 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
857
858 return 0;
859}
860
861static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
862 const char *func, const char *file, int line)
863{
864 if (unlikely(!(l->info.cur_writer & tid_bit))) {
865 /* the thread is not owning the lock for write */
866 abort();
867 }
868
869 l->info.cur_writer = 0;
870 l->info.last_location.function = func;
871 l->info.last_location.file = file;
872 l->info.last_location.line = line;
873
874 __RWLOCK_WRUNLOCK(&l->lock);
875
876 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
877}
878
879static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
880{
881 uint64_t start_time;
882
883 if (unlikely(l->info.cur_writer & tid_bit)) {
884 /* the thread is already owning the lock for write */
885 abort();
886 }
887
888 if (unlikely(l->info.cur_readers & tid_bit)) {
889 /* the thread is already owning the lock for read */
890 abort();
891 }
892
893 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
894
895 start_time = nsec_now();
896 __RWLOCK_RDLOCK(&l->lock);
897 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
898 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
899
900 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
901
902 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
903}
904
905static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
906{
907 int r;
908
909 if (unlikely(l->info.cur_writer & tid_bit)) {
910 /* the thread is already owning the lock for write */
911 abort();
912 }
913
914 if (unlikely(l->info.cur_readers & tid_bit)) {
915 /* the thread is already owning the lock for read */
916 abort();
917 }
918
919 /* try read should never wait */
920 r = __RWLOCK_TRYRDLOCK(&l->lock);
921 if (unlikely(r))
922 return r;
923 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
924
925 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
926
927 return 0;
928}
929
930static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
931{
932 if (unlikely(!(l->info.cur_readers & tid_bit))) {
933 /* the thread is not owning the lock for read */
934 abort();
935 }
936
937 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
938
939 __RWLOCK_RDUNLOCK(&l->lock);
940
941 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
942}
943
944static inline void __spin_init(struct ha_spinlock *l)
945{
946 memset(l, 0, sizeof(struct ha_spinlock));
947 __SPIN_INIT(&l->lock);
948}
949
950static inline void __spin_destroy(struct ha_spinlock *l)
951{
952 __SPIN_DESTROY(&l->lock);
953 memset(l, 0, sizeof(struct ha_spinlock));
954}
955
956static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
957 const char *func, const char *file, int line)
958{
959 uint64_t start_time;
960
961 if (unlikely(l->info.owner & tid_bit)) {
962 /* the thread is already owning the lock */
963 abort();
964 }
965
966 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
967
968 start_time = nsec_now();
969 __SPIN_LOCK(&l->lock);
970 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
971
972 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
973
974
975 l->info.owner = tid_bit;
976 l->info.last_location.function = func;
977 l->info.last_location.file = file;
978 l->info.last_location.line = line;
979
980 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
981}
982
983static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
984 const char *func, const char *file, int line)
985{
986 int r;
987
988 if (unlikely(l->info.owner & tid_bit)) {
989 /* the thread is already owning the lock */
990 abort();
991 }
992
993 /* try read should never wait */
994 r = __SPIN_TRYLOCK(&l->lock);
995 if (unlikely(r))
996 return r;
997 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
998
999 l->info.owner = tid_bit;
1000 l->info.last_location.function = func;
1001 l->info.last_location.file = file;
1002 l->info.last_location.line = line;
1003
1004 return 0;
1005}
1006
1007static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
1008 const char *func, const char *file, int line)
1009{
1010 if (unlikely(!(l->info.owner & tid_bit))) {
1011 /* the thread is not owning the lock */
1012 abort();
1013 }
1014
1015 l->info.owner = 0;
1016 l->info.last_location.function = func;
1017 l->info.last_location.file = file;
1018 l->info.last_location.line = line;
1019
Willy Tarreau7c2a2ad2017-11-02 16:26:02 +01001020 __SPIN_UNLOCK(&l->lock);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001021 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
1022}
1023
1024#else /* DEBUG_THREAD */
1025
1026#define HA_SPINLOCK_T unsigned long
1027
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001028#define HA_SPIN_INIT(l) ({ (*l) = 0; })
1029#define HA_SPIN_DESTROY(l) ({ (*l) = 0; })
1030#define HA_SPIN_LOCK(lbl, l) pl_take_s(l)
1031#define HA_SPIN_TRYLOCK(lbl, l) !pl_try_s(l)
1032#define HA_SPIN_UNLOCK(lbl, l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001033
1034#define HA_RWLOCK_T unsigned long
1035
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001036#define HA_RWLOCK_INIT(l) ({ (*l) = 0; })
1037#define HA_RWLOCK_DESTROY(l) ({ (*l) = 0; })
1038#define HA_RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
1039#define HA_RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
1040#define HA_RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
1041#define HA_RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
1042#define HA_RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
1043#define HA_RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001044
1045#endif /* DEBUG_THREAD */
1046
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001047#ifdef __x86_64__
Willy Tarreau2325d8a2018-10-10 18:29:23 +02001048
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001049static __inline int
1050__ha_cas_dw(void *target, void *compare, const void *set)
1051{
1052 char ret;
1053
1054 __asm __volatile("lock cmpxchg16b %0; setz %3"
1055 : "+m" (*(void **)target),
1056 "=a" (((void **)compare)[0]),
1057 "=d" (((void **)compare)[1]),
1058 "=q" (ret)
1059 : "a" (((void **)compare)[0]),
1060 "d" (((void **)compare)[1]),
1061 "b" (((const void **)set)[0]),
1062 "c" (((const void **)set)[1])
1063 : "memory", "cc");
1064 return (ret);
1065}
1066
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001067/* Use __ha_barrier_atomic* when you're trying to protect data that are
1068 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
1069 */
1070static __inline void
1071__ha_barrier_atomic_load(void)
1072{
1073 __asm __volatile("" ::: "memory");
1074}
1075
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001076static __inline void
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001077__ha_barrier_atomic_store(void)
1078{
1079 __asm __volatile("" ::: "memory");
1080}
1081
1082static __inline void
1083__ha_barrier_atomic_full(void)
1084{
1085 __asm __volatile("" ::: "memory");
1086}
1087
1088static __inline void
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001089__ha_barrier_load(void)
1090{
1091 __asm __volatile("lfence" ::: "memory");
1092}
1093
1094static __inline void
1095__ha_barrier_store(void)
1096{
1097 __asm __volatile("sfence" ::: "memory");
1098}
1099
1100static __inline void
1101__ha_barrier_full(void)
1102{
1103 __asm __volatile("mfence" ::: "memory");
1104}
1105
1106#elif defined(__arm__) && (defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__))
Willy Tarreau2325d8a2018-10-10 18:29:23 +02001107
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001108/* Use __ha_barrier_atomic* when you're trying to protect data that are
1109 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
1110 */
1111static __inline void
1112__ha_barrier_atomic_load(void)
1113{
1114 __asm __volatile("dmb" ::: "memory");
1115}
1116
1117static __inline void
1118__ha_barrier_atomic_store(void)
1119{
1120 __asm __volatile("dsb" ::: "memory");
1121}
1122
1123static __inline void
1124__ha_barrier_atomic_full(void)
1125{
1126 __asm __volatile("dmb" ::: "memory");
1127}
1128
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001129static __inline void
1130__ha_barrier_load(void)
1131{
1132 __asm __volatile("dmb" ::: "memory");
1133}
1134
1135static __inline void
1136__ha_barrier_store(void)
1137{
1138 __asm __volatile("dsb" ::: "memory");
1139}
1140
1141static __inline void
1142__ha_barrier_full(void)
1143{
1144 __asm __volatile("dmb" ::: "memory");
1145}
1146
Willy Tarreau41ccb192018-02-14 14:16:28 +01001147static __inline int __ha_cas_dw(void *target, void *compare, const void *set)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001148{
1149 uint64_t previous;
1150 int tmp;
1151
1152 __asm __volatile("1:"
1153 "ldrexd %0, [%4];"
1154 "cmp %Q0, %Q2;"
1155 "ittt eq;"
1156 "cmpeq %R0, %R2;"
1157 "strexdeq %1, %3, [%4];"
1158 "cmpeq %1, #1;"
1159 "beq 1b;"
1160 : "=&r" (previous), "=&r" (tmp)
Willy Tarreau41ccb192018-02-14 14:16:28 +01001161 : "r" (*(uint64_t *)compare), "r" (*(uint64_t *)set), "r" (target)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001162 : "memory", "cc");
1163 tmp = (previous == *(uint64_t *)compare);
1164 *(uint64_t *)compare = previous;
1165 return (tmp);
1166}
1167
1168#elif defined (__aarch64__)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001169
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001170/* Use __ha_barrier_atomic* when you're trying to protect data that are
1171 * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE)
1172 */
1173static __inline void
1174__ha_barrier_atomic_load(void)
1175{
1176 __asm __volatile("dmb ishld" ::: "memory");
1177}
1178
1179static __inline void
1180__ha_barrier_atomic_store(void)
1181{
1182 __asm __volatile("dmb ishst" ::: "memory");
1183}
1184
1185static __inline void
1186__ha_barrier_atomic_full(void)
1187{
1188 __asm __volatile("dmb ish" ::: "memory");
1189}
1190
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001191static __inline void
1192__ha_barrier_load(void)
1193{
1194 __asm __volatile("dmb ishld" ::: "memory");
1195}
1196
1197static __inline void
1198__ha_barrier_store(void)
1199{
1200 __asm __volatile("dmb ishst" ::: "memory");
1201}
1202
1203static __inline void
1204__ha_barrier_full(void)
1205{
1206 __asm __volatile("dmb ish" ::: "memory");
1207}
1208
1209static __inline int __ha_cas_dw(void *target, void *compare, void *set)
1210{
1211 void *value[2];
1212 uint64_t tmp1, tmp2;
1213
1214 __asm__ __volatile__("1:"
1215 "ldxp %0, %1, [%4];"
1216 "mov %2, %0;"
1217 "mov %3, %1;"
1218 "eor %0, %0, %5;"
1219 "eor %1, %1, %6;"
1220 "orr %1, %0, %1;"
1221 "mov %w0, #0;"
1222 "cbnz %1, 2f;"
1223 "stxp %w0, %7, %8, [%4];"
1224 "cbnz %w0, 1b;"
1225 "mov %w0, #1;"
1226 "2:"
1227 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (value[0]), "=&r" (value[1])
1228 : "r" (target), "r" (((void **)(compare))[0]), "r" (((void **)(compare))[1]), "r" (((void **)(set))[0]), "r" (((void **)(set))[1])
1229 : "cc", "memory");
1230
1231 memcpy(compare, &value, sizeof(value));
1232 return (tmp1);
1233}
1234
1235#else
Olivier Houchard9abcf6e2019-03-07 18:45:00 +01001236#define __ha_barrier_atomic_load __sync_synchronize
1237#define __ha_barrier_atomic_store __sync_synchronize
1238#define __ha_barrier_atomic_full __sync_synchronize
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001239#define __ha_barrier_load __sync_synchronize
1240#define __ha_barrier_store __sync_synchronize
1241#define __ha_barrier_full __sync_synchronize
1242#endif
1243
Willy Tarreaua8ae77d2018-11-25 19:28:23 +01001244void ha_spin_init(HA_SPINLOCK_T *l);
1245void ha_rwlock_init(HA_RWLOCK_T *l);
1246
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001247#endif /* USE_THREAD */
1248
Willy Tarreau149ab772019-01-26 14:27:06 +01001249extern int thread_cpus_enabled_at_boot;
1250
Olivier Houchardf61f0cb2017-12-21 17:13:05 +01001251static inline void __ha_compiler_barrier(void)
1252{
1253 __asm __volatile("" ::: "memory");
1254}
1255
Willy Tarreau0ccd3222018-07-30 10:34:35 +02001256int parse_nbthread(const char *arg, char **err);
Willy Tarreau149ab772019-01-26 14:27:06 +01001257int thread_get_default_count();
Willy Tarreau4037a3f2018-03-28 18:06:47 +02001258
Olivier Houchardd0c3b882019-03-07 18:55:31 +01001259#ifndef _HA_ATOMIC_CAS
1260#define _HA_ATOMIC_CAS HA_ATOMIC_CAS
1261#endif /* !_HA_ATOMIC_CAS */
1262
Willy Tarreau6a38b322019-05-11 18:04:24 +02001263#ifndef _HA_ATOMIC_DWCAS
1264#define _HA_ATOMIC_DWCAS HA_ATOMIC_DWCAS
1265#endif /* !_HA_ATOMIC_CAS */
1266
Olivier Houchardd0c3b882019-03-07 18:55:31 +01001267#ifndef _HA_ATOMIC_ADD
1268#define _HA_ATOMIC_ADD HA_ATOMIC_ADD
1269#endif /* !_HA_ATOMIC_ADD */
1270
1271#ifndef _HA_ATOMIC_XADD
1272#define _HA_ATOMIC_XADD HA_ATOMIC_XADD
1273#endif /* !_HA_ATOMIC_SUB */
1274
1275#ifndef _HA_ATOMIC_SUB
1276#define _HA_ATOMIC_SUB HA_ATOMIC_SUB
1277#endif /* !_HA_ATOMIC_SUB */
1278
1279#ifndef _HA_ATOMIC_AND
1280#define _HA_ATOMIC_AND HA_ATOMIC_AND
1281#endif /* !_HA_ATOMIC_AND */
1282
1283#ifndef _HA_ATOMIC_OR
1284#define _HA_ATOMIC_OR HA_ATOMIC_OR
1285#endif /* !_HA_ATOMIC_OR */
1286
1287#ifndef _HA_ATOMIC_XCHG
1288#define _HA_ATOMIC_XCHG HA_ATOMIC_XCHG
1289#endif /* !_HA_ATOMIC_XCHG */
1290
1291#ifndef _HA_ATOMIC_STORE
1292#define _HA_ATOMIC_STORE HA_ATOMIC_STORE
1293#endif /* !_HA_ATOMIC_STORE */
Olivier Houchard9ce62b52019-04-30 13:38:02 +02001294
1295#ifndef _HA_ATOMIC_LOAD
1296#define _HA_ATOMIC_LOAD HA_ATOMIC_LOAD
1297#endif /* !_HA_ATOMIC_LOAD */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +02001298#endif /* _COMMON_HATHREADS_H */