blob: 019d749703b56a9420875b3d5278ceffaefa4659 [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
25#include <common/config.h>
Willy Tarreau90fa97b2018-11-25 19:46:08 +010026#include <common/initcall.h>
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020027
Willy Tarreau0ccd3222018-07-30 10:34:35 +020028/* Note about all_threads_mask :
29 * - with threads support disabled, this symbol is defined as zero (0UL).
30 * - with threads enabled, this variable is never zero, it contains the mask
31 * of enabled threads. Thus if only one thread is enabled, it equals 1.
32 */
33
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020034#ifndef USE_THREAD
35
Willy Tarreau421f02e2018-01-20 18:19:22 +010036#define MAX_THREADS 1
Willy Tarreau0c026f42018-08-01 19:12:20 +020037#define MAX_THREADS_MASK 1
38
39/* Only way found to replace variables with constants that are optimized away
40 * at build time.
41 */
42enum { all_threads_mask = 1UL };
43enum { tid_bit = 1UL };
44enum { tid = 0 };
Willy Tarreau421f02e2018-01-20 18:19:22 +010045
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010046#define __decl_hathreads(decl)
Willy Tarreau90fa97b2018-11-25 19:46:08 +010047#define __decl_spinlock(lock)
48#define __decl_aligned_spinlock(lock)
49#define __decl_rwlock(lock)
50#define __decl_aligned_rwlock(lock)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010051
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020052#define HA_ATOMIC_CAS(val, old, new) ({((*val) == (*old)) ? (*(val) = (new) , 1) : (*(old) = *(val), 0);})
53#define HA_ATOMIC_ADD(val, i) ({*(val) += (i);})
54#define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);})
Willy Tarreau9378df82018-09-05 16:11:03 +020055#define HA_ATOMIC_XADD(val, i) \
56 ({ \
57 typeof((val)) __p_xadd = (val); \
58 typeof(*(val)) __old_xadd = *__p_xadd; \
59 *__p_xadd += i; \
60 __old_xadd; \
61 })
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020062#define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);})
63#define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);})
64#define HA_ATOMIC_XCHG(val, new) \
65 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020066 typeof(*(val)) __old_xchg = *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020067 *(val) = new; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020068 __old_xchg; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020069 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +010070#define HA_ATOMIC_BTS(val, bit) \
71 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020072 typeof((val)) __p_bts = (val); \
73 typeof(*__p_bts) __b_bts = (1UL << (bit)); \
74 typeof(*__p_bts) __t_bts = *__p_bts & __b_bts; \
75 if (!__t_bts) \
76 *__p_bts |= __b_bts; \
77 __t_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +010078 })
79#define HA_ATOMIC_BTR(val, bit) \
80 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020081 typeof((val)) __p_btr = (val); \
82 typeof(*__p_btr) __b_btr = (1UL << (bit)); \
83 typeof(*__p_btr) __t_btr = *__p_btr & __b_btr; \
84 if (__t_btr) \
85 *__p_btr &= ~__b_btr; \
86 __t_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +010087 })
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020088#define HA_ATOMIC_STORE(val, new) ({*(val) = new;})
89#define HA_ATOMIC_UPDATE_MAX(val, new) \
90 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020091 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020092 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020093 if (*(val) < __new_max) \
94 *(val) = __new_max; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020095 *(val); \
96 })
97
98#define HA_ATOMIC_UPDATE_MIN(val, new) \
99 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200100 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200101 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200102 if (*(val) > __new_min) \
103 *(val) = __new_min; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200104 *(val); \
105 })
106
Willy Tarreaub29dc952017-10-31 18:00:20 +0100107#define HA_BARRIER() do { } while (0)
Christopher Faulet339fff82017-10-19 11:59:15 +0200108
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100109#define HA_SPIN_INIT(l) do { /* do nothing */ } while(0)
110#define HA_SPIN_DESTROY(l) do { /* do nothing */ } while(0)
111#define HA_SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0)
112#define HA_SPIN_TRYLOCK(lbl, l) ({ 0; })
113#define HA_SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200114
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100115#define HA_RWLOCK_INIT(l) do { /* do nothing */ } while(0)
116#define HA_RWLOCK_DESTROY(l) do { /* do nothing */ } while(0)
117#define HA_RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0)
118#define HA_RWLOCK_TRYWRLOCK(lbl, l) ({ 0; })
119#define HA_RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0)
120#define HA_RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0)
121#define HA_RWLOCK_TRYRDLOCK(lbl, l) ({ 0; })
122#define HA_RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200123
William Lallemand6e1796e2018-06-07 11:23:40 +0200124#define ha_sigmask(how, set, oldset) sigprocmask(how, set, oldset)
125
Willy Tarreau0c026f42018-08-01 19:12:20 +0200126static inline void ha_set_tid(unsigned int tid)
127{
128}
William Lallemand6e1796e2018-06-07 11:23:40 +0200129
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100130static inline void __ha_barrier_load(void)
131{
132}
133
134static inline void __ha_barrier_store(void)
135{
136}
137
138static inline void __ha_barrier_full(void)
139{
140}
141
Willy Tarreau60b639c2018-08-02 10:16:17 +0200142static inline void thread_harmless_now()
143{
144}
145
146static inline void thread_harmless_end()
147{
148}
149
150static inline void thread_isolate()
151{
152}
153
154static inline void thread_release()
155{
156}
157
158static inline unsigned long thread_isolated()
159{
160 return 1;
161}
162
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200163#else /* USE_THREAD */
164
165#include <stdio.h>
166#include <stdlib.h>
167#include <string.h>
168#include <pthread.h>
169#include <import/plock.h>
170
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100171#ifndef MAX_THREADS
Willy Tarreau421f02e2018-01-20 18:19:22 +0100172#define MAX_THREADS LONGBITS
Willy Tarreauf5809cd2019-01-26 13:35:03 +0100173#endif
174
175#define MAX_THREADS_MASK (~0UL >> (LONGBITS - MAX_THREADS))
Willy Tarreau421f02e2018-01-20 18:19:22 +0100176
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100177#define __decl_hathreads(decl) decl
178
Willy Tarreau90fa97b2018-11-25 19:46:08 +0100179/* declare a self-initializing spinlock */
180#define __decl_spinlock(lock) \
181 HA_SPINLOCK_T (lock); \
182 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
183
184/* declare a self-initializing spinlock, aligned on a cache line */
185#define __decl_aligned_spinlock(lock) \
186 HA_SPINLOCK_T (lock) __attribute__((aligned(64))); \
187 INITCALL1(STG_LOCK, ha_spin_init, &(lock))
188
189/* declare a self-initializing rwlock */
190#define __decl_rwlock(lock) \
191 HA_RWLOCK_T (lock); \
192 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
193
194/* declare a self-initializing rwlock, aligned on a cache line */
195#define __decl_aligned_rwlock(lock) \
196 HA_RWLOCK_T (lock) __attribute__((aligned(64))); \
197 INITCALL1(STG_LOCK, ha_rwlock_init, &(lock))
198
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200199/* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to
200 * have a header file regrouping all functions dealing with threads. */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100201
David Carlierec5e8452018-01-11 14:20:43 +0000202#if defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 7) && !defined(__clang__)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100203/* gcc < 4.7 */
204
205#define HA_ATOMIC_ADD(val, i) __sync_add_and_fetch(val, i)
206#define HA_ATOMIC_SUB(val, i) __sync_sub_and_fetch(val, i)
Willy Tarreau9378df82018-09-05 16:11:03 +0200207#define HA_ATOMIC_XADD(val, i) __sync_fetch_and_add(val, i)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100208#define HA_ATOMIC_AND(val, flags) __sync_and_and_fetch(val, flags)
209#define HA_ATOMIC_OR(val, flags) __sync_or_and_fetch(val, flags)
210
211/* the CAS is a bit complicated. The older API doesn't support returning the
212 * value and the swap's result at the same time. So here we take what looks
213 * like the safest route, consisting in using the boolean version guaranteeing
214 * that the operation was performed or not, and we snoop a previous value. If
215 * the compare succeeds, we return. If it fails, we return the previous value,
216 * but only if it differs from the expected one. If it's the same it's a race
217 * thus we try again to avoid confusing a possibly sensitive caller.
218 */
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200219#define HA_ATOMIC_CAS(val, old, new) \
220 ({ \
221 typeof((val)) __val_cas = (val); \
222 typeof((old)) __oldp_cas = (old); \
223 typeof(*(old)) __oldv_cas; \
224 typeof((new)) __new_cas = (new); \
225 int __ret_cas; \
226 do { \
227 __oldv_cas = *__val_cas; \
228 __ret_cas = __sync_bool_compare_and_swap(__val_cas, *__oldp_cas, __new_cas); \
229 } while (!__ret_cas && *__oldp_cas == __oldv_cas); \
230 if (!__ret_cas) \
231 *__oldp_cas = __oldv_cas; \
232 __ret_cas; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100233 })
234
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200235#define HA_ATOMIC_XCHG(val, new) \
236 ({ \
237 typeof((val)) __val_xchg = (val); \
238 typeof(*(val)) __old_xchg; \
239 typeof((new)) __new_xchg = (new); \
240 do { __old_xchg = *__val_xchg; \
241 } while (!__sync_bool_compare_and_swap(__val_xchg, __old_xchg, __new_xchg)); \
242 __old_xchg; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100243 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100244
245#define HA_ATOMIC_BTS(val, bit) \
246 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200247 typeof(*(val)) __b_bts = (1UL << (bit)); \
248 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100249 })
250
251#define HA_ATOMIC_BTR(val, bit) \
252 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200253 typeof(*(val)) __b_btr = (1UL << (bit)); \
254 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100255 })
256
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200257#define HA_ATOMIC_STORE(val, new) \
258 ({ \
259 typeof((val)) __val_store = (val); \
260 typeof(*(val)) __old_store; \
261 typeof((new)) __new_store = (new); \
262 do { __old_store = *__val_store; \
263 } while (!__sync_bool_compare_and_swap(__val_store, __old_store, __new_store)); \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100264 })
265#else
266/* gcc >= 4.7 */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200267#define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, 0, 0)
268#define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, 0)
Willy Tarreau9378df82018-09-05 16:11:03 +0200269#define HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, 0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200270#define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, 0)
271#define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, 0)
272#define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, 0)
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100273#define HA_ATOMIC_BTS(val, bit) \
274 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200275 typeof(*(val)) __b_bts = (1UL << (bit)); \
276 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100277 })
278
279#define HA_ATOMIC_BTR(val, bit) \
280 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200281 typeof(*(val)) __b_btr = (1UL << (bit)); \
282 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100283 })
284
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200285#define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, 0)
286#define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, 0)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100287#endif
288
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200289#define HA_ATOMIC_UPDATE_MAX(val, new) \
290 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200291 typeof(*(val)) __old_max = *(val); \
292 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200293 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200294 while (__old_max < __new_max && \
295 !HA_ATOMIC_CAS(val, &__old_max, __new_max)); \
296 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200297 })
298#define HA_ATOMIC_UPDATE_MIN(val, new) \
299 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200300 typeof(*(val)) __old_min = *(val); \
301 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200302 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200303 while (__old_min > __new_min && \
304 !HA_ATOMIC_CAS(val, &__old_min, __new_min)); \
305 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200306 })
307
Willy Tarreaub29dc952017-10-31 18:00:20 +0100308#define HA_BARRIER() pl_barrier()
309
Willy Tarreau60b639c2018-08-02 10:16:17 +0200310void thread_harmless_till_end();
311void thread_isolate();
312void thread_release();
Christopher Faulet339fff82017-10-19 11:59:15 +0200313
Willy Tarreau0c026f42018-08-01 19:12:20 +0200314extern THREAD_LOCAL unsigned int tid; /* The thread id */
315extern THREAD_LOCAL unsigned long tid_bit; /* The bit corresponding to the thread id */
Christopher Fauletddb6c162018-07-20 09:31:53 +0200316extern volatile unsigned long all_threads_mask;
Willy Tarreau60b639c2018-08-02 10:16:17 +0200317extern volatile unsigned long threads_want_rdv_mask;
318extern volatile unsigned long threads_harmless_mask;
319
320/* explanation for threads_want_rdv_mask and threads_harmless_mask :
321 * - threads_want_rdv_mask is a bit field indicating all threads that have
322 * requested a rendez-vous of other threads using thread_isolate().
323 * - threads_harmless_mask is a bit field indicating all threads that are
324 * currently harmless in that they promise not to access a shared resource.
325 *
326 * For a given thread, its bits in want_rdv and harmless can be translated like
327 * this :
328 *
329 * ----------+----------+----------------------------------------------------
330 * want_rdv | harmless | description
331 * ----------+----------+----------------------------------------------------
332 * 0 | 0 | thread not interested in RDV, possibly harmful
333 * 0 | 1 | thread not interested in RDV but harmless
334 * 1 | 1 | thread interested in RDV and waiting for its turn
335 * 1 | 0 | thread currently working isolated from others
336 * ----------+----------+----------------------------------------------------
337 */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200338
William Lallemand6e1796e2018-06-07 11:23:40 +0200339#define ha_sigmask(how, set, oldset) pthread_sigmask(how, set, oldset)
340
Willy Tarreau0c026f42018-08-01 19:12:20 +0200341/* sets the thread ID and the TID bit for the current thread */
342static inline void ha_set_tid(unsigned int data)
343{
344 tid = data;
345 tid_bit = (1UL << tid);
346}
347
Willy Tarreau60b639c2018-08-02 10:16:17 +0200348/* Marks the thread as harmless. Note: this must be true, i.e. the thread must
349 * not be touching any unprotected shared resource during this period. Usually
350 * this is called before poll(), but it may also be placed around very slow
351 * calls (eg: some crypto operations). Needs to be terminated using
352 * thread_harmless_end().
353 */
354static inline void thread_harmless_now()
355{
356 HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
357}
358
359/* Ends the harmless period started by thread_harmless_now(). Usually this is
360 * placed after the poll() call. If it is discovered that a job was running and
361 * is relying on the thread still being harmless, the thread waits for the
362 * other one to finish.
363 */
364static inline void thread_harmless_end()
365{
366 while (1) {
367 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
368 if (likely((threads_want_rdv_mask & all_threads_mask) == 0))
369 break;
370 thread_harmless_till_end();
371 }
372}
373
374/* an isolated thread has harmless cleared and want_rdv set */
375static inline unsigned long thread_isolated()
376{
377 return threads_want_rdv_mask & ~threads_harmless_mask & tid_bit;
378}
379
William Lallemand6e1796e2018-06-07 11:23:40 +0200380
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200381#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
382
Christopher Fauletf51bac22018-01-30 11:04:29 +0100383/* WARNING!!! if you update this enum, please also keep lock_label() up to date below */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200384enum lock_label {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200385 FD_LOCK,
Emeric Brunc60def82017-09-27 14:59:38 +0200386 TASK_RQ_LOCK,
387 TASK_WQ_LOCK,
Christopher Fauletb349e482017-08-29 09:52:38 +0200388 POOL_LOCK,
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200389 LISTENER_LOCK,
390 LISTENER_QUEUE_LOCK,
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200391 PROXY_LOCK,
Christopher Faulet29f77e82017-06-08 14:04:45 +0200392 SERVER_LOCK,
Christopher Faulet5b517552017-06-09 14:17:53 +0200393 LBPRM_LOCK,
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200394 SIGNALS_LOCK,
Emeric Brun819fc6f2017-06-13 19:37:32 +0200395 STK_TABLE_LOCK,
396 STK_SESS_LOCK,
Emeric Brun1138fd02017-06-19 12:38:55 +0200397 APPLETS_LOCK,
Emeric Brun80527f52017-06-19 17:46:37 +0200398 PEER_LOCK,
Emeric Bruna1dd2432017-06-21 15:42:52 +0200399 BUF_WQ_LOCK,
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200400 STRMS_LOCK,
Emeric Brun821bb9b2017-06-15 16:37:39 +0200401 SSL_LOCK,
402 SSL_GEN_CERTS_LOCK,
Emeric Brunb5997f72017-07-03 11:34:05 +0200403 PATREF_LOCK,
404 PATEXP_LOCK,
405 PATLRU_LOCK,
Christopher Faulete95f2c32017-07-24 16:30:34 +0200406 VARS_LOCK,
Christopher Faulet8ca3b4b2017-07-25 11:07:15 +0200407 COMP_POOL_LOCK,
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200408 LUA_LOCK,
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200409 NOTIF_LOCK,
Christopher Faulet24289f22017-09-25 14:48:02 +0200410 SPOE_APPLET_LOCK,
Christopher Fauletb2812a62017-10-04 16:17:58 +0200411 DNS_LOCK,
Christopher Fauletcfda8472017-10-20 15:40:23 +0200412 PID_LIST_LOCK,
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200413 EMAIL_ALERTS_LOCK,
Emeric Brund8b3b652017-11-07 11:19:48 +0100414 PIPES_LOCK,
Willy Tarreau1605c7a2018-01-23 19:01:49 +0100415 START_LOCK,
Christopher Faulet16f45c82018-02-16 11:23:49 +0100416 TLSKEYS_REF_LOCK,
Willy Tarreau34d4b522018-10-29 18:02:54 +0100417 AUTH_LOCK,
Christopher Faulet339fff82017-10-19 11:59:15 +0200418 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200419};
420struct lock_stat {
421 uint64_t nsec_wait_for_write;
422 uint64_t nsec_wait_for_read;
423 uint64_t num_write_locked;
424 uint64_t num_write_unlocked;
425 uint64_t num_read_locked;
426 uint64_t num_read_unlocked;
427};
428
429extern struct lock_stat lock_stats[LOCK_LABELS];
430
431#define __HA_SPINLOCK_T unsigned long
432
433#define __SPIN_INIT(l) ({ (*l) = 0; })
434#define __SPIN_DESTROY(l) ({ (*l) = 0; })
Willy Tarreau88ac59b2017-11-06 01:03:26 +0100435#define __SPIN_LOCK(l) pl_take_s(l)
436#define __SPIN_TRYLOCK(l) !pl_try_s(l)
437#define __SPIN_UNLOCK(l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200438
439#define __HA_RWLOCK_T unsigned long
440
441#define __RWLOCK_INIT(l) ({ (*l) = 0; })
442#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
443#define __RWLOCK_WRLOCK(l) pl_take_w(l)
444#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
445#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
446#define __RWLOCK_RDLOCK(l) pl_take_r(l)
447#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
448#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
449
450#define HA_SPINLOCK_T struct ha_spinlock
451
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100452#define HA_SPIN_INIT(l) __spin_init(l)
453#define HA_SPIN_DESTROY(l) __spin_destroy(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200454
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100455#define HA_SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
456#define HA_SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
457#define HA_SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200458
459#define HA_RWLOCK_T struct ha_rwlock
460
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100461#define HA_RWLOCK_INIT(l) __ha_rwlock_init((l))
462#define HA_RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
463#define HA_RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
464#define HA_RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
465#define HA_RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
466#define HA_RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
467#define HA_RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
468#define HA_RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200469
470struct ha_spinlock {
471 __HA_SPINLOCK_T lock;
472 struct {
473 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
474 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
475 struct {
476 const char *function;
477 const char *file;
478 int line;
479 } last_location; /* location of the last owner */
480 } info;
481};
482
483struct ha_rwlock {
484 __HA_RWLOCK_T lock;
485 struct {
486 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
487 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
488 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
489 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
490 struct {
491 const char *function;
492 const char *file;
493 int line;
494 } last_location; /* location of the last write owner */
495 } info;
496};
497
Christopher Fauletf51bac22018-01-30 11:04:29 +0100498static inline const char *lock_label(enum lock_label label)
499{
500 switch (label) {
Christopher Fauletf51bac22018-01-30 11:04:29 +0100501 case FD_LOCK: return "FD";
502 case TASK_RQ_LOCK: return "TASK_RQ";
503 case TASK_WQ_LOCK: return "TASK_WQ";
504 case POOL_LOCK: return "POOL";
505 case LISTENER_LOCK: return "LISTENER";
506 case LISTENER_QUEUE_LOCK: return "LISTENER_QUEUE";
507 case PROXY_LOCK: return "PROXY";
508 case SERVER_LOCK: return "SERVER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100509 case LBPRM_LOCK: return "LBPRM";
510 case SIGNALS_LOCK: return "SIGNALS";
511 case STK_TABLE_LOCK: return "STK_TABLE";
512 case STK_SESS_LOCK: return "STK_SESS";
513 case APPLETS_LOCK: return "APPLETS";
514 case PEER_LOCK: return "PEER";
515 case BUF_WQ_LOCK: return "BUF_WQ";
516 case STRMS_LOCK: return "STRMS";
517 case SSL_LOCK: return "SSL";
518 case SSL_GEN_CERTS_LOCK: return "SSL_GEN_CERTS";
519 case PATREF_LOCK: return "PATREF";
520 case PATEXP_LOCK: return "PATEXP";
521 case PATLRU_LOCK: return "PATLRU";
522 case VARS_LOCK: return "VARS";
523 case COMP_POOL_LOCK: return "COMP_POOL";
524 case LUA_LOCK: return "LUA";
525 case NOTIF_LOCK: return "NOTIF";
526 case SPOE_APPLET_LOCK: return "SPOE_APPLET";
527 case DNS_LOCK: return "DNS";
528 case PID_LIST_LOCK: return "PID_LIST";
529 case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS";
530 case PIPES_LOCK: return "PIPES";
531 case START_LOCK: return "START";
Christopher Faulet16f45c82018-02-16 11:23:49 +0100532 case TLSKEYS_REF_LOCK: return "TLSKEYS_REF";
Willy Tarreau34d4b522018-10-29 18:02:54 +0100533 case AUTH_LOCK: return "AUTH";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100534 case LOCK_LABELS: break; /* keep compiler happy */
535 };
536 /* only way to come here is consecutive to an internal bug */
537 abort();
538}
539
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200540static inline void show_lock_stats()
541{
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200542 int lbl;
543
544 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
545 fprintf(stderr,
546 "Stats about Lock %s: \n"
547 "\t # write lock : %lu\n"
548 "\t # write unlock: %lu (%ld)\n"
549 "\t # wait time for write : %.3f msec\n"
550 "\t # wait time for write/lock: %.3f nsec\n"
551 "\t # read lock : %lu\n"
552 "\t # read unlock : %lu (%ld)\n"
553 "\t # wait time for read : %.3f msec\n"
554 "\t # wait time for read/lock : %.3f nsec\n",
Christopher Fauletf51bac22018-01-30 11:04:29 +0100555 lock_label(lbl),
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200556 lock_stats[lbl].num_write_locked,
557 lock_stats[lbl].num_write_unlocked,
558 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
559 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
560 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
561 lock_stats[lbl].num_read_locked,
562 lock_stats[lbl].num_read_unlocked,
563 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
564 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
565 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
566 }
567}
568
569/* Following functions are used to collect some stats about locks. We wrap
570 * pthread functions to known how much time we wait in a lock. */
571
572static uint64_t nsec_now(void) {
573 struct timespec ts;
574
575 clock_gettime(CLOCK_MONOTONIC, &ts);
576 return ((uint64_t) ts.tv_sec * 1000000000ULL +
577 (uint64_t) ts.tv_nsec);
578}
579
580static inline void __ha_rwlock_init(struct ha_rwlock *l)
581{
582 memset(l, 0, sizeof(struct ha_rwlock));
583 __RWLOCK_INIT(&l->lock);
584}
585
586static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
587{
588 __RWLOCK_DESTROY(&l->lock);
589 memset(l, 0, sizeof(struct ha_rwlock));
590}
591
592
593static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
594 const char *func, const char *file, int line)
595{
596 uint64_t start_time;
597
598 if (unlikely(l->info.cur_writer & tid_bit)) {
599 /* the thread is already owning the lock for write */
600 abort();
601 }
602
603 if (unlikely(l->info.cur_readers & tid_bit)) {
604 /* the thread is already owning the lock for read */
605 abort();
606 }
607
608 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
609
610 start_time = nsec_now();
611 __RWLOCK_WRLOCK(&l->lock);
612 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
613
614 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
615
616 l->info.cur_writer = tid_bit;
617 l->info.last_location.function = func;
618 l->info.last_location.file = file;
619 l->info.last_location.line = line;
620
621 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
622}
623
624static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
625 const char *func, const char *file, int line)
626{
627 uint64_t start_time;
628 int r;
629
630 if (unlikely(l->info.cur_writer & tid_bit)) {
631 /* the thread is already owning the lock for write */
632 abort();
633 }
634
635 if (unlikely(l->info.cur_readers & tid_bit)) {
636 /* the thread is already owning the lock for read */
637 abort();
638 }
639
640 /* We set waiting writer because trywrlock could wait for readers to quit */
641 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
642
643 start_time = nsec_now();
644 r = __RWLOCK_TRYWRLOCK(&l->lock);
645 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
646 if (unlikely(r)) {
647 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
648 return r;
649 }
650 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
651
652 l->info.cur_writer = tid_bit;
653 l->info.last_location.function = func;
654 l->info.last_location.file = file;
655 l->info.last_location.line = line;
656
657 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
658
659 return 0;
660}
661
662static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
663 const char *func, const char *file, int line)
664{
665 if (unlikely(!(l->info.cur_writer & tid_bit))) {
666 /* the thread is not owning the lock for write */
667 abort();
668 }
669
670 l->info.cur_writer = 0;
671 l->info.last_location.function = func;
672 l->info.last_location.file = file;
673 l->info.last_location.line = line;
674
675 __RWLOCK_WRUNLOCK(&l->lock);
676
677 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
678}
679
680static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
681{
682 uint64_t start_time;
683
684 if (unlikely(l->info.cur_writer & tid_bit)) {
685 /* the thread is already owning the lock for write */
686 abort();
687 }
688
689 if (unlikely(l->info.cur_readers & tid_bit)) {
690 /* the thread is already owning the lock for read */
691 abort();
692 }
693
694 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
695
696 start_time = nsec_now();
697 __RWLOCK_RDLOCK(&l->lock);
698 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
699 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
700
701 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
702
703 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
704}
705
706static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
707{
708 int r;
709
710 if (unlikely(l->info.cur_writer & tid_bit)) {
711 /* the thread is already owning the lock for write */
712 abort();
713 }
714
715 if (unlikely(l->info.cur_readers & tid_bit)) {
716 /* the thread is already owning the lock for read */
717 abort();
718 }
719
720 /* try read should never wait */
721 r = __RWLOCK_TRYRDLOCK(&l->lock);
722 if (unlikely(r))
723 return r;
724 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
725
726 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
727
728 return 0;
729}
730
731static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
732{
733 if (unlikely(!(l->info.cur_readers & tid_bit))) {
734 /* the thread is not owning the lock for read */
735 abort();
736 }
737
738 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
739
740 __RWLOCK_RDUNLOCK(&l->lock);
741
742 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
743}
744
745static inline void __spin_init(struct ha_spinlock *l)
746{
747 memset(l, 0, sizeof(struct ha_spinlock));
748 __SPIN_INIT(&l->lock);
749}
750
751static inline void __spin_destroy(struct ha_spinlock *l)
752{
753 __SPIN_DESTROY(&l->lock);
754 memset(l, 0, sizeof(struct ha_spinlock));
755}
756
757static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
758 const char *func, const char *file, int line)
759{
760 uint64_t start_time;
761
762 if (unlikely(l->info.owner & tid_bit)) {
763 /* the thread is already owning the lock */
764 abort();
765 }
766
767 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
768
769 start_time = nsec_now();
770 __SPIN_LOCK(&l->lock);
771 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
772
773 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
774
775
776 l->info.owner = tid_bit;
777 l->info.last_location.function = func;
778 l->info.last_location.file = file;
779 l->info.last_location.line = line;
780
781 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
782}
783
784static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
785 const char *func, const char *file, int line)
786{
787 int r;
788
789 if (unlikely(l->info.owner & tid_bit)) {
790 /* the thread is already owning the lock */
791 abort();
792 }
793
794 /* try read should never wait */
795 r = __SPIN_TRYLOCK(&l->lock);
796 if (unlikely(r))
797 return r;
798 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
799
800 l->info.owner = tid_bit;
801 l->info.last_location.function = func;
802 l->info.last_location.file = file;
803 l->info.last_location.line = line;
804
805 return 0;
806}
807
808static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
809 const char *func, const char *file, int line)
810{
811 if (unlikely(!(l->info.owner & tid_bit))) {
812 /* the thread is not owning the lock */
813 abort();
814 }
815
816 l->info.owner = 0;
817 l->info.last_location.function = func;
818 l->info.last_location.file = file;
819 l->info.last_location.line = line;
820
Willy Tarreau7c2a2ad2017-11-02 16:26:02 +0100821 __SPIN_UNLOCK(&l->lock);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200822 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
823}
824
825#else /* DEBUG_THREAD */
826
827#define HA_SPINLOCK_T unsigned long
828
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100829#define HA_SPIN_INIT(l) ({ (*l) = 0; })
830#define HA_SPIN_DESTROY(l) ({ (*l) = 0; })
831#define HA_SPIN_LOCK(lbl, l) pl_take_s(l)
832#define HA_SPIN_TRYLOCK(lbl, l) !pl_try_s(l)
833#define HA_SPIN_UNLOCK(lbl, l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200834
835#define HA_RWLOCK_T unsigned long
836
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100837#define HA_RWLOCK_INIT(l) ({ (*l) = 0; })
838#define HA_RWLOCK_DESTROY(l) ({ (*l) = 0; })
839#define HA_RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
840#define HA_RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
841#define HA_RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
842#define HA_RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
843#define HA_RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
844#define HA_RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200845
846#endif /* DEBUG_THREAD */
847
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100848#ifdef __x86_64__
Willy Tarreau2325d8a2018-10-10 18:29:23 +0200849
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100850static __inline int
851__ha_cas_dw(void *target, void *compare, const void *set)
852{
853 char ret;
854
855 __asm __volatile("lock cmpxchg16b %0; setz %3"
856 : "+m" (*(void **)target),
857 "=a" (((void **)compare)[0]),
858 "=d" (((void **)compare)[1]),
859 "=q" (ret)
860 : "a" (((void **)compare)[0]),
861 "d" (((void **)compare)[1]),
862 "b" (((const void **)set)[0]),
863 "c" (((const void **)set)[1])
864 : "memory", "cc");
865 return (ret);
866}
867
868static __inline void
869__ha_barrier_load(void)
870{
871 __asm __volatile("lfence" ::: "memory");
872}
873
874static __inline void
875__ha_barrier_store(void)
876{
877 __asm __volatile("sfence" ::: "memory");
878}
879
880static __inline void
881__ha_barrier_full(void)
882{
883 __asm __volatile("mfence" ::: "memory");
884}
885
886#elif defined(__arm__) && (defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__))
Willy Tarreau2325d8a2018-10-10 18:29:23 +0200887
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100888static __inline void
889__ha_barrier_load(void)
890{
891 __asm __volatile("dmb" ::: "memory");
892}
893
894static __inline void
895__ha_barrier_store(void)
896{
897 __asm __volatile("dsb" ::: "memory");
898}
899
900static __inline void
901__ha_barrier_full(void)
902{
903 __asm __volatile("dmb" ::: "memory");
904}
905
Willy Tarreau41ccb192018-02-14 14:16:28 +0100906static __inline int __ha_cas_dw(void *target, void *compare, const void *set)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100907{
908 uint64_t previous;
909 int tmp;
910
911 __asm __volatile("1:"
912 "ldrexd %0, [%4];"
913 "cmp %Q0, %Q2;"
914 "ittt eq;"
915 "cmpeq %R0, %R2;"
916 "strexdeq %1, %3, [%4];"
917 "cmpeq %1, #1;"
918 "beq 1b;"
919 : "=&r" (previous), "=&r" (tmp)
Willy Tarreau41ccb192018-02-14 14:16:28 +0100920 : "r" (*(uint64_t *)compare), "r" (*(uint64_t *)set), "r" (target)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100921 : "memory", "cc");
922 tmp = (previous == *(uint64_t *)compare);
923 *(uint64_t *)compare = previous;
924 return (tmp);
925}
926
927#elif defined (__aarch64__)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100928
929static __inline void
930__ha_barrier_load(void)
931{
932 __asm __volatile("dmb ishld" ::: "memory");
933}
934
935static __inline void
936__ha_barrier_store(void)
937{
938 __asm __volatile("dmb ishst" ::: "memory");
939}
940
941static __inline void
942__ha_barrier_full(void)
943{
944 __asm __volatile("dmb ish" ::: "memory");
945}
946
947static __inline int __ha_cas_dw(void *target, void *compare, void *set)
948{
949 void *value[2];
950 uint64_t tmp1, tmp2;
951
952 __asm__ __volatile__("1:"
953 "ldxp %0, %1, [%4];"
954 "mov %2, %0;"
955 "mov %3, %1;"
956 "eor %0, %0, %5;"
957 "eor %1, %1, %6;"
958 "orr %1, %0, %1;"
959 "mov %w0, #0;"
960 "cbnz %1, 2f;"
961 "stxp %w0, %7, %8, [%4];"
962 "cbnz %w0, 1b;"
963 "mov %w0, #1;"
964 "2:"
965 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (value[0]), "=&r" (value[1])
966 : "r" (target), "r" (((void **)(compare))[0]), "r" (((void **)(compare))[1]), "r" (((void **)(set))[0]), "r" (((void **)(set))[1])
967 : "cc", "memory");
968
969 memcpy(compare, &value, sizeof(value));
970 return (tmp1);
971}
972
973#else
974#define __ha_barrier_load __sync_synchronize
975#define __ha_barrier_store __sync_synchronize
976#define __ha_barrier_full __sync_synchronize
977#endif
978
Willy Tarreaua8ae77d2018-11-25 19:28:23 +0100979void ha_spin_init(HA_SPINLOCK_T *l);
980void ha_rwlock_init(HA_RWLOCK_T *l);
981
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200982#endif /* USE_THREAD */
983
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100984static inline void __ha_compiler_barrier(void)
985{
986 __asm __volatile("" ::: "memory");
987}
988
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200989int parse_nbthread(const char *arg, char **err);
Willy Tarreau4037a3f2018-03-28 18:06:47 +0200990
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200991#endif /* _COMMON_HATHREADS_H */