blob: b53cd77e95008cfa2617c3a6dfc88973d3a12e6e [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>
26
Willy Tarreau0ccd3222018-07-30 10:34:35 +020027/* Note about all_threads_mask :
28 * - with threads support disabled, this symbol is defined as zero (0UL).
29 * - with threads enabled, this variable is never zero, it contains the mask
30 * of enabled threads. Thus if only one thread is enabled, it equals 1.
31 */
32
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020033#ifndef USE_THREAD
34
Willy Tarreau421f02e2018-01-20 18:19:22 +010035#define MAX_THREADS 1
Willy Tarreau0c026f42018-08-01 19:12:20 +020036#define MAX_THREADS_MASK 1
37
38/* Only way found to replace variables with constants that are optimized away
39 * at build time.
40 */
41enum { all_threads_mask = 1UL };
42enum { tid_bit = 1UL };
43enum { tid = 0 };
Willy Tarreau421f02e2018-01-20 18:19:22 +010044
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010045#define __decl_hathreads(decl)
46
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020047#define HA_ATOMIC_CAS(val, old, new) ({((*val) == (*old)) ? (*(val) = (new) , 1) : (*(old) = *(val), 0);})
48#define HA_ATOMIC_ADD(val, i) ({*(val) += (i);})
49#define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);})
50#define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);})
51#define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);})
52#define HA_ATOMIC_XCHG(val, new) \
53 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020054 typeof(*(val)) __old_xchg = *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020055 *(val) = new; \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020056 __old_xchg; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020057 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +010058#define HA_ATOMIC_BTS(val, bit) \
59 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020060 typeof((val)) __p_bts = (val); \
61 typeof(*__p_bts) __b_bts = (1UL << (bit)); \
62 typeof(*__p_bts) __t_bts = *__p_bts & __b_bts; \
63 if (!__t_bts) \
64 *__p_bts |= __b_bts; \
65 __t_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +010066 })
67#define HA_ATOMIC_BTR(val, bit) \
68 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020069 typeof((val)) __p_btr = (val); \
70 typeof(*__p_btr) __b_btr = (1UL << (bit)); \
71 typeof(*__p_btr) __t_btr = *__p_btr & __b_btr; \
72 if (__t_btr) \
73 *__p_btr &= ~__b_btr; \
74 __t_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +010075 })
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020076#define HA_ATOMIC_STORE(val, new) ({*(val) = new;})
77#define HA_ATOMIC_UPDATE_MAX(val, new) \
78 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020079 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020080 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020081 if (*(val) < __new_max) \
82 *(val) = __new_max; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020083 *(val); \
84 })
85
86#define HA_ATOMIC_UPDATE_MIN(val, new) \
87 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020088 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020089 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +020090 if (*(val) > __new_min) \
91 *(val) = __new_min; \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +020092 *(val); \
93 })
94
Willy Tarreaub29dc952017-10-31 18:00:20 +010095#define HA_BARRIER() do { } while (0)
Christopher Faulet339fff82017-10-19 11:59:15 +020096
Christopher Faulet2a944ee2017-11-07 10:42:54 +010097#define HA_SPIN_INIT(l) do { /* do nothing */ } while(0)
98#define HA_SPIN_DESTROY(l) do { /* do nothing */ } while(0)
99#define HA_SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0)
100#define HA_SPIN_TRYLOCK(lbl, l) ({ 0; })
101#define HA_SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200102
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100103#define HA_RWLOCK_INIT(l) do { /* do nothing */ } while(0)
104#define HA_RWLOCK_DESTROY(l) do { /* do nothing */ } while(0)
105#define HA_RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0)
106#define HA_RWLOCK_TRYWRLOCK(lbl, l) ({ 0; })
107#define HA_RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0)
108#define HA_RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0)
109#define HA_RWLOCK_TRYRDLOCK(lbl, l) ({ 0; })
110#define HA_RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200111
William Lallemand6e1796e2018-06-07 11:23:40 +0200112#define ha_sigmask(how, set, oldset) sigprocmask(how, set, oldset)
113
Willy Tarreau0c026f42018-08-01 19:12:20 +0200114static inline void ha_set_tid(unsigned int tid)
115{
116}
William Lallemand6e1796e2018-06-07 11:23:40 +0200117
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100118static inline void __ha_barrier_load(void)
119{
120}
121
122static inline void __ha_barrier_store(void)
123{
124}
125
126static inline void __ha_barrier_full(void)
127{
128}
129
Willy Tarreau60b639c2018-08-02 10:16:17 +0200130static inline void thread_harmless_now()
131{
132}
133
134static inline void thread_harmless_end()
135{
136}
137
138static inline void thread_isolate()
139{
140}
141
142static inline void thread_release()
143{
144}
145
146static inline unsigned long thread_isolated()
147{
148 return 1;
149}
150
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200151#else /* USE_THREAD */
152
153#include <stdio.h>
154#include <stdlib.h>
155#include <string.h>
156#include <pthread.h>
157#include <import/plock.h>
158
Willy Tarreau421f02e2018-01-20 18:19:22 +0100159#define MAX_THREADS LONGBITS
Willy Tarreau0c026f42018-08-01 19:12:20 +0200160#define MAX_THREADS_MASK ((unsigned long)-1)
Willy Tarreau421f02e2018-01-20 18:19:22 +0100161
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100162#define __decl_hathreads(decl) decl
163
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200164/* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to
165 * have a header file regrouping all functions dealing with threads. */
Willy Tarreau1a69af62018-01-04 18:49:31 +0100166
David Carlierec5e8452018-01-11 14:20:43 +0000167#if defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 7) && !defined(__clang__)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100168/* gcc < 4.7 */
169
170#define HA_ATOMIC_ADD(val, i) __sync_add_and_fetch(val, i)
171#define HA_ATOMIC_SUB(val, i) __sync_sub_and_fetch(val, i)
172#define HA_ATOMIC_AND(val, flags) __sync_and_and_fetch(val, flags)
173#define HA_ATOMIC_OR(val, flags) __sync_or_and_fetch(val, flags)
174
175/* the CAS is a bit complicated. The older API doesn't support returning the
176 * value and the swap's result at the same time. So here we take what looks
177 * like the safest route, consisting in using the boolean version guaranteeing
178 * that the operation was performed or not, and we snoop a previous value. If
179 * the compare succeeds, we return. If it fails, we return the previous value,
180 * but only if it differs from the expected one. If it's the same it's a race
181 * thus we try again to avoid confusing a possibly sensitive caller.
182 */
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200183#define HA_ATOMIC_CAS(val, old, new) \
184 ({ \
185 typeof((val)) __val_cas = (val); \
186 typeof((old)) __oldp_cas = (old); \
187 typeof(*(old)) __oldv_cas; \
188 typeof((new)) __new_cas = (new); \
189 int __ret_cas; \
190 do { \
191 __oldv_cas = *__val_cas; \
192 __ret_cas = __sync_bool_compare_and_swap(__val_cas, *__oldp_cas, __new_cas); \
193 } while (!__ret_cas && *__oldp_cas == __oldv_cas); \
194 if (!__ret_cas) \
195 *__oldp_cas = __oldv_cas; \
196 __ret_cas; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100197 })
198
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200199#define HA_ATOMIC_XCHG(val, new) \
200 ({ \
201 typeof((val)) __val_xchg = (val); \
202 typeof(*(val)) __old_xchg; \
203 typeof((new)) __new_xchg = (new); \
204 do { __old_xchg = *__val_xchg; \
205 } while (!__sync_bool_compare_and_swap(__val_xchg, __old_xchg, __new_xchg)); \
206 __old_xchg; \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100207 })
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100208
209#define HA_ATOMIC_BTS(val, bit) \
210 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200211 typeof(*(val)) __b_bts = (1UL << (bit)); \
212 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100213 })
214
215#define HA_ATOMIC_BTR(val, bit) \
216 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200217 typeof(*(val)) __b_btr = (1UL << (bit)); \
218 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100219 })
220
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200221#define HA_ATOMIC_STORE(val, new) \
222 ({ \
223 typeof((val)) __val_store = (val); \
224 typeof(*(val)) __old_store; \
225 typeof((new)) __new_store = (new); \
226 do { __old_store = *__val_store; \
227 } while (!__sync_bool_compare_and_swap(__val_store, __old_store, __new_store)); \
Willy Tarreau1a69af62018-01-04 18:49:31 +0100228 })
229#else
230/* gcc >= 4.7 */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200231#define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, 0, 0)
232#define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, 0)
233#define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, 0)
234#define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, 0)
235#define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, 0)
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100236#define HA_ATOMIC_BTS(val, bit) \
237 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200238 typeof(*(val)) __b_bts = (1UL << (bit)); \
239 __sync_fetch_and_or((val), __b_bts) & __b_bts; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100240 })
241
242#define HA_ATOMIC_BTR(val, bit) \
243 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200244 typeof(*(val)) __b_btr = (1UL << (bit)); \
245 __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \
Willy Tarreau5266b3e2018-01-25 17:43:58 +0100246 })
247
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200248#define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, 0)
249#define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, 0)
Willy Tarreau1a69af62018-01-04 18:49:31 +0100250#endif
251
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200252#define HA_ATOMIC_UPDATE_MAX(val, new) \
253 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200254 typeof(*(val)) __old_max = *(val); \
255 typeof(*(val)) __new_max = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200256 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200257 while (__old_max < __new_max && \
258 !HA_ATOMIC_CAS(val, &__old_max, __new_max)); \
259 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200260 })
261#define HA_ATOMIC_UPDATE_MIN(val, new) \
262 ({ \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200263 typeof(*(val)) __old_min = *(val); \
264 typeof(*(val)) __new_min = (new); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200265 \
Christopher Faulet48aa13f2018-04-09 08:45:43 +0200266 while (__old_min > __new_min && \
267 !HA_ATOMIC_CAS(val, &__old_min, __new_min)); \
268 *(val); \
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200269 })
270
Willy Tarreaub29dc952017-10-31 18:00:20 +0100271#define HA_BARRIER() pl_barrier()
272
Willy Tarreau60b639c2018-08-02 10:16:17 +0200273void thread_harmless_till_end();
274void thread_isolate();
275void thread_release();
Christopher Faulet339fff82017-10-19 11:59:15 +0200276
Willy Tarreau0c026f42018-08-01 19:12:20 +0200277extern THREAD_LOCAL unsigned int tid; /* The thread id */
278extern THREAD_LOCAL unsigned long tid_bit; /* The bit corresponding to the thread id */
Christopher Fauletddb6c162018-07-20 09:31:53 +0200279extern volatile unsigned long all_threads_mask;
Willy Tarreau60b639c2018-08-02 10:16:17 +0200280extern volatile unsigned long threads_want_rdv_mask;
281extern volatile unsigned long threads_harmless_mask;
282
283/* explanation for threads_want_rdv_mask and threads_harmless_mask :
284 * - threads_want_rdv_mask is a bit field indicating all threads that have
285 * requested a rendez-vous of other threads using thread_isolate().
286 * - threads_harmless_mask is a bit field indicating all threads that are
287 * currently harmless in that they promise not to access a shared resource.
288 *
289 * For a given thread, its bits in want_rdv and harmless can be translated like
290 * this :
291 *
292 * ----------+----------+----------------------------------------------------
293 * want_rdv | harmless | description
294 * ----------+----------+----------------------------------------------------
295 * 0 | 0 | thread not interested in RDV, possibly harmful
296 * 0 | 1 | thread not interested in RDV but harmless
297 * 1 | 1 | thread interested in RDV and waiting for its turn
298 * 1 | 0 | thread currently working isolated from others
299 * ----------+----------+----------------------------------------------------
300 */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200301
William Lallemand6e1796e2018-06-07 11:23:40 +0200302#define ha_sigmask(how, set, oldset) pthread_sigmask(how, set, oldset)
303
Willy Tarreau0c026f42018-08-01 19:12:20 +0200304/* sets the thread ID and the TID bit for the current thread */
305static inline void ha_set_tid(unsigned int data)
306{
307 tid = data;
308 tid_bit = (1UL << tid);
309}
310
Willy Tarreau60b639c2018-08-02 10:16:17 +0200311/* Marks the thread as harmless. Note: this must be true, i.e. the thread must
312 * not be touching any unprotected shared resource during this period. Usually
313 * this is called before poll(), but it may also be placed around very slow
314 * calls (eg: some crypto operations). Needs to be terminated using
315 * thread_harmless_end().
316 */
317static inline void thread_harmless_now()
318{
319 HA_ATOMIC_OR(&threads_harmless_mask, tid_bit);
320}
321
322/* Ends the harmless period started by thread_harmless_now(). Usually this is
323 * placed after the poll() call. If it is discovered that a job was running and
324 * is relying on the thread still being harmless, the thread waits for the
325 * other one to finish.
326 */
327static inline void thread_harmless_end()
328{
329 while (1) {
330 HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit);
331 if (likely((threads_want_rdv_mask & all_threads_mask) == 0))
332 break;
333 thread_harmless_till_end();
334 }
335}
336
337/* an isolated thread has harmless cleared and want_rdv set */
338static inline unsigned long thread_isolated()
339{
340 return threads_want_rdv_mask & ~threads_harmless_mask & tid_bit;
341}
342
William Lallemand6e1796e2018-06-07 11:23:40 +0200343
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200344#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
345
Christopher Fauletf51bac22018-01-30 11:04:29 +0100346/* WARNING!!! if you update this enum, please also keep lock_label() up to date below */
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200347enum lock_label {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200348 FD_LOCK,
Emeric Brunc60def82017-09-27 14:59:38 +0200349 TASK_RQ_LOCK,
350 TASK_WQ_LOCK,
Christopher Fauletb349e482017-08-29 09:52:38 +0200351 POOL_LOCK,
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200352 LISTENER_LOCK,
353 LISTENER_QUEUE_LOCK,
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200354 PROXY_LOCK,
Christopher Faulet29f77e82017-06-08 14:04:45 +0200355 SERVER_LOCK,
Christopher Faulet5b517552017-06-09 14:17:53 +0200356 LBPRM_LOCK,
Christopher Fauletb79a94c2017-05-30 15:34:30 +0200357 SIGNALS_LOCK,
Emeric Brun819fc6f2017-06-13 19:37:32 +0200358 STK_TABLE_LOCK,
359 STK_SESS_LOCK,
Emeric Brun1138fd02017-06-19 12:38:55 +0200360 APPLETS_LOCK,
Emeric Brun80527f52017-06-19 17:46:37 +0200361 PEER_LOCK,
Emeric Bruna1dd2432017-06-21 15:42:52 +0200362 BUF_WQ_LOCK,
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200363 STRMS_LOCK,
Emeric Brun821bb9b2017-06-15 16:37:39 +0200364 SSL_LOCK,
365 SSL_GEN_CERTS_LOCK,
Emeric Brunb5997f72017-07-03 11:34:05 +0200366 PATREF_LOCK,
367 PATEXP_LOCK,
368 PATLRU_LOCK,
Christopher Faulete95f2c32017-07-24 16:30:34 +0200369 VARS_LOCK,
Christopher Faulet8ca3b4b2017-07-25 11:07:15 +0200370 COMP_POOL_LOCK,
Thierry FOURNIER61ba0e22017-07-12 11:41:21 +0200371 LUA_LOCK,
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200372 NOTIF_LOCK,
Christopher Faulet24289f22017-09-25 14:48:02 +0200373 SPOE_APPLET_LOCK,
Christopher Fauletb2812a62017-10-04 16:17:58 +0200374 DNS_LOCK,
Christopher Fauletcfda8472017-10-20 15:40:23 +0200375 PID_LIST_LOCK,
Christopher Fauletc2a89a62017-10-23 15:54:24 +0200376 EMAIL_ALERTS_LOCK,
Emeric Brund8b3b652017-11-07 11:19:48 +0100377 PIPES_LOCK,
Willy Tarreau1605c7a2018-01-23 19:01:49 +0100378 START_LOCK,
Christopher Faulet16f45c82018-02-16 11:23:49 +0100379 TLSKEYS_REF_LOCK,
Christopher Faulet339fff82017-10-19 11:59:15 +0200380 LOCK_LABELS
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200381};
382struct lock_stat {
383 uint64_t nsec_wait_for_write;
384 uint64_t nsec_wait_for_read;
385 uint64_t num_write_locked;
386 uint64_t num_write_unlocked;
387 uint64_t num_read_locked;
388 uint64_t num_read_unlocked;
389};
390
391extern struct lock_stat lock_stats[LOCK_LABELS];
392
393#define __HA_SPINLOCK_T unsigned long
394
395#define __SPIN_INIT(l) ({ (*l) = 0; })
396#define __SPIN_DESTROY(l) ({ (*l) = 0; })
Willy Tarreau88ac59b2017-11-06 01:03:26 +0100397#define __SPIN_LOCK(l) pl_take_s(l)
398#define __SPIN_TRYLOCK(l) !pl_try_s(l)
399#define __SPIN_UNLOCK(l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200400
401#define __HA_RWLOCK_T unsigned long
402
403#define __RWLOCK_INIT(l) ({ (*l) = 0; })
404#define __RWLOCK_DESTROY(l) ({ (*l) = 0; })
405#define __RWLOCK_WRLOCK(l) pl_take_w(l)
406#define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l)
407#define __RWLOCK_WRUNLOCK(l) pl_drop_w(l)
408#define __RWLOCK_RDLOCK(l) pl_take_r(l)
409#define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l)
410#define __RWLOCK_RDUNLOCK(l) pl_drop_r(l)
411
412#define HA_SPINLOCK_T struct ha_spinlock
413
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100414#define HA_SPIN_INIT(l) __spin_init(l)
415#define HA_SPIN_DESTROY(l) __spin_destroy(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200416
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100417#define HA_SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__)
418#define HA_SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__)
419#define HA_SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200420
421#define HA_RWLOCK_T struct ha_rwlock
422
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100423#define HA_RWLOCK_INIT(l) __ha_rwlock_init((l))
424#define HA_RWLOCK_DESTROY(l) __ha_rwlock_destroy((l))
425#define HA_RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__)
426#define HA_RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__)
427#define HA_RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__)
428#define HA_RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l)
429#define HA_RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l)
430#define HA_RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200431
432struct ha_spinlock {
433 __HA_SPINLOCK_T lock;
434 struct {
435 unsigned long owner; /* a bit is set to 1 << tid for the lock owner */
436 unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */
437 struct {
438 const char *function;
439 const char *file;
440 int line;
441 } last_location; /* location of the last owner */
442 } info;
443};
444
445struct ha_rwlock {
446 __HA_RWLOCK_T lock;
447 struct {
448 unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */
449 unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */
450 unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */
451 unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */
452 struct {
453 const char *function;
454 const char *file;
455 int line;
456 } last_location; /* location of the last write owner */
457 } info;
458};
459
Christopher Fauletf51bac22018-01-30 11:04:29 +0100460static inline const char *lock_label(enum lock_label label)
461{
462 switch (label) {
Christopher Fauletf51bac22018-01-30 11:04:29 +0100463 case FD_LOCK: return "FD";
464 case TASK_RQ_LOCK: return "TASK_RQ";
465 case TASK_WQ_LOCK: return "TASK_WQ";
466 case POOL_LOCK: return "POOL";
467 case LISTENER_LOCK: return "LISTENER";
468 case LISTENER_QUEUE_LOCK: return "LISTENER_QUEUE";
469 case PROXY_LOCK: return "PROXY";
470 case SERVER_LOCK: return "SERVER";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100471 case LBPRM_LOCK: return "LBPRM";
472 case SIGNALS_LOCK: return "SIGNALS";
473 case STK_TABLE_LOCK: return "STK_TABLE";
474 case STK_SESS_LOCK: return "STK_SESS";
475 case APPLETS_LOCK: return "APPLETS";
476 case PEER_LOCK: return "PEER";
477 case BUF_WQ_LOCK: return "BUF_WQ";
478 case STRMS_LOCK: return "STRMS";
479 case SSL_LOCK: return "SSL";
480 case SSL_GEN_CERTS_LOCK: return "SSL_GEN_CERTS";
481 case PATREF_LOCK: return "PATREF";
482 case PATEXP_LOCK: return "PATEXP";
483 case PATLRU_LOCK: return "PATLRU";
484 case VARS_LOCK: return "VARS";
485 case COMP_POOL_LOCK: return "COMP_POOL";
486 case LUA_LOCK: return "LUA";
487 case NOTIF_LOCK: return "NOTIF";
488 case SPOE_APPLET_LOCK: return "SPOE_APPLET";
489 case DNS_LOCK: return "DNS";
490 case PID_LIST_LOCK: return "PID_LIST";
491 case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS";
492 case PIPES_LOCK: return "PIPES";
493 case START_LOCK: return "START";
Christopher Faulet16f45c82018-02-16 11:23:49 +0100494 case TLSKEYS_REF_LOCK: return "TLSKEYS_REF";
Christopher Fauletf51bac22018-01-30 11:04:29 +0100495 case LOCK_LABELS: break; /* keep compiler happy */
496 };
497 /* only way to come here is consecutive to an internal bug */
498 abort();
499}
500
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200501static inline void show_lock_stats()
502{
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200503 int lbl;
504
505 for (lbl = 0; lbl < LOCK_LABELS; lbl++) {
506 fprintf(stderr,
507 "Stats about Lock %s: \n"
508 "\t # write lock : %lu\n"
509 "\t # write unlock: %lu (%ld)\n"
510 "\t # wait time for write : %.3f msec\n"
511 "\t # wait time for write/lock: %.3f nsec\n"
512 "\t # read lock : %lu\n"
513 "\t # read unlock : %lu (%ld)\n"
514 "\t # wait time for read : %.3f msec\n"
515 "\t # wait time for read/lock : %.3f nsec\n",
Christopher Fauletf51bac22018-01-30 11:04:29 +0100516 lock_label(lbl),
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200517 lock_stats[lbl].num_write_locked,
518 lock_stats[lbl].num_write_unlocked,
519 lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked,
520 (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0,
521 lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0,
522 lock_stats[lbl].num_read_locked,
523 lock_stats[lbl].num_read_unlocked,
524 lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked,
525 (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0,
526 lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0);
527 }
528}
529
530/* Following functions are used to collect some stats about locks. We wrap
531 * pthread functions to known how much time we wait in a lock. */
532
533static uint64_t nsec_now(void) {
534 struct timespec ts;
535
536 clock_gettime(CLOCK_MONOTONIC, &ts);
537 return ((uint64_t) ts.tv_sec * 1000000000ULL +
538 (uint64_t) ts.tv_nsec);
539}
540
541static inline void __ha_rwlock_init(struct ha_rwlock *l)
542{
543 memset(l, 0, sizeof(struct ha_rwlock));
544 __RWLOCK_INIT(&l->lock);
545}
546
547static inline void __ha_rwlock_destroy(struct ha_rwlock *l)
548{
549 __RWLOCK_DESTROY(&l->lock);
550 memset(l, 0, sizeof(struct ha_rwlock));
551}
552
553
554static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l,
555 const char *func, const char *file, int line)
556{
557 uint64_t start_time;
558
559 if (unlikely(l->info.cur_writer & tid_bit)) {
560 /* the thread is already owning the lock for write */
561 abort();
562 }
563
564 if (unlikely(l->info.cur_readers & tid_bit)) {
565 /* the thread is already owning the lock for read */
566 abort();
567 }
568
569 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
570
571 start_time = nsec_now();
572 __RWLOCK_WRLOCK(&l->lock);
573 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
574
575 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
576
577 l->info.cur_writer = tid_bit;
578 l->info.last_location.function = func;
579 l->info.last_location.file = file;
580 l->info.last_location.line = line;
581
582 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
583}
584
585static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l,
586 const char *func, const char *file, int line)
587{
588 uint64_t start_time;
589 int r;
590
591 if (unlikely(l->info.cur_writer & tid_bit)) {
592 /* the thread is already owning the lock for write */
593 abort();
594 }
595
596 if (unlikely(l->info.cur_readers & tid_bit)) {
597 /* the thread is already owning the lock for read */
598 abort();
599 }
600
601 /* We set waiting writer because trywrlock could wait for readers to quit */
602 HA_ATOMIC_OR(&l->info.wait_writers, tid_bit);
603
604 start_time = nsec_now();
605 r = __RWLOCK_TRYWRLOCK(&l->lock);
606 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
607 if (unlikely(r)) {
608 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
609 return r;
610 }
611 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
612
613 l->info.cur_writer = tid_bit;
614 l->info.last_location.function = func;
615 l->info.last_location.file = file;
616 l->info.last_location.line = line;
617
618 HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit);
619
620 return 0;
621}
622
623static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l,
624 const char *func, const char *file, int line)
625{
626 if (unlikely(!(l->info.cur_writer & tid_bit))) {
627 /* the thread is not owning the lock for write */
628 abort();
629 }
630
631 l->info.cur_writer = 0;
632 l->info.last_location.function = func;
633 l->info.last_location.file = file;
634 l->info.last_location.line = line;
635
636 __RWLOCK_WRUNLOCK(&l->lock);
637
638 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
639}
640
641static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l)
642{
643 uint64_t start_time;
644
645 if (unlikely(l->info.cur_writer & tid_bit)) {
646 /* the thread is already owning the lock for write */
647 abort();
648 }
649
650 if (unlikely(l->info.cur_readers & tid_bit)) {
651 /* the thread is already owning the lock for read */
652 abort();
653 }
654
655 HA_ATOMIC_OR(&l->info.wait_readers, tid_bit);
656
657 start_time = nsec_now();
658 __RWLOCK_RDLOCK(&l->lock);
659 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time));
660 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
661
662 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
663
664 HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit);
665}
666
667static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l)
668{
669 int r;
670
671 if (unlikely(l->info.cur_writer & tid_bit)) {
672 /* the thread is already owning the lock for write */
673 abort();
674 }
675
676 if (unlikely(l->info.cur_readers & tid_bit)) {
677 /* the thread is already owning the lock for read */
678 abort();
679 }
680
681 /* try read should never wait */
682 r = __RWLOCK_TRYRDLOCK(&l->lock);
683 if (unlikely(r))
684 return r;
685 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1);
686
687 HA_ATOMIC_OR(&l->info.cur_readers, tid_bit);
688
689 return 0;
690}
691
692static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l)
693{
694 if (unlikely(!(l->info.cur_readers & tid_bit))) {
695 /* the thread is not owning the lock for read */
696 abort();
697 }
698
699 HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit);
700
701 __RWLOCK_RDUNLOCK(&l->lock);
702
703 HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1);
704}
705
706static inline void __spin_init(struct ha_spinlock *l)
707{
708 memset(l, 0, sizeof(struct ha_spinlock));
709 __SPIN_INIT(&l->lock);
710}
711
712static inline void __spin_destroy(struct ha_spinlock *l)
713{
714 __SPIN_DESTROY(&l->lock);
715 memset(l, 0, sizeof(struct ha_spinlock));
716}
717
718static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l,
719 const char *func, const char *file, int line)
720{
721 uint64_t start_time;
722
723 if (unlikely(l->info.owner & tid_bit)) {
724 /* the thread is already owning the lock */
725 abort();
726 }
727
728 HA_ATOMIC_OR(&l->info.waiters, tid_bit);
729
730 start_time = nsec_now();
731 __SPIN_LOCK(&l->lock);
732 HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time));
733
734 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
735
736
737 l->info.owner = tid_bit;
738 l->info.last_location.function = func;
739 l->info.last_location.file = file;
740 l->info.last_location.line = line;
741
742 HA_ATOMIC_AND(&l->info.waiters, ~tid_bit);
743}
744
745static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l,
746 const char *func, const char *file, int line)
747{
748 int r;
749
750 if (unlikely(l->info.owner & tid_bit)) {
751 /* the thread is already owning the lock */
752 abort();
753 }
754
755 /* try read should never wait */
756 r = __SPIN_TRYLOCK(&l->lock);
757 if (unlikely(r))
758 return r;
759 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1);
760
761 l->info.owner = tid_bit;
762 l->info.last_location.function = func;
763 l->info.last_location.file = file;
764 l->info.last_location.line = line;
765
766 return 0;
767}
768
769static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l,
770 const char *func, const char *file, int line)
771{
772 if (unlikely(!(l->info.owner & tid_bit))) {
773 /* the thread is not owning the lock */
774 abort();
775 }
776
777 l->info.owner = 0;
778 l->info.last_location.function = func;
779 l->info.last_location.file = file;
780 l->info.last_location.line = line;
781
Willy Tarreau7c2a2ad2017-11-02 16:26:02 +0100782 __SPIN_UNLOCK(&l->lock);
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200783 HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1);
784}
785
786#else /* DEBUG_THREAD */
787
788#define HA_SPINLOCK_T unsigned long
789
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100790#define HA_SPIN_INIT(l) ({ (*l) = 0; })
791#define HA_SPIN_DESTROY(l) ({ (*l) = 0; })
792#define HA_SPIN_LOCK(lbl, l) pl_take_s(l)
793#define HA_SPIN_TRYLOCK(lbl, l) !pl_try_s(l)
794#define HA_SPIN_UNLOCK(lbl, l) pl_drop_s(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200795
796#define HA_RWLOCK_T unsigned long
797
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100798#define HA_RWLOCK_INIT(l) ({ (*l) = 0; })
799#define HA_RWLOCK_DESTROY(l) ({ (*l) = 0; })
800#define HA_RWLOCK_WRLOCK(lbl,l) pl_take_w(l)
801#define HA_RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l)
802#define HA_RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l)
803#define HA_RWLOCK_RDLOCK(lbl,l) pl_take_r(l)
804#define HA_RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l)
805#define HA_RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l)
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200806
807#endif /* DEBUG_THREAD */
808
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100809#ifdef __x86_64__
810#define HA_HAVE_CAS_DW 1
811#define HA_CAS_IS_8B
812static __inline int
813__ha_cas_dw(void *target, void *compare, const void *set)
814{
815 char ret;
816
817 __asm __volatile("lock cmpxchg16b %0; setz %3"
818 : "+m" (*(void **)target),
819 "=a" (((void **)compare)[0]),
820 "=d" (((void **)compare)[1]),
821 "=q" (ret)
822 : "a" (((void **)compare)[0]),
823 "d" (((void **)compare)[1]),
824 "b" (((const void **)set)[0]),
825 "c" (((const void **)set)[1])
826 : "memory", "cc");
827 return (ret);
828}
829
830static __inline void
831__ha_barrier_load(void)
832{
833 __asm __volatile("lfence" ::: "memory");
834}
835
836static __inline void
837__ha_barrier_store(void)
838{
839 __asm __volatile("sfence" ::: "memory");
840}
841
842static __inline void
843__ha_barrier_full(void)
844{
845 __asm __volatile("mfence" ::: "memory");
846}
847
848#elif defined(__arm__) && (defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__))
849#define HA_HAVE_CAS_DW 1
850static __inline void
851__ha_barrier_load(void)
852{
853 __asm __volatile("dmb" ::: "memory");
854}
855
856static __inline void
857__ha_barrier_store(void)
858{
859 __asm __volatile("dsb" ::: "memory");
860}
861
862static __inline void
863__ha_barrier_full(void)
864{
865 __asm __volatile("dmb" ::: "memory");
866}
867
Willy Tarreau41ccb192018-02-14 14:16:28 +0100868static __inline int __ha_cas_dw(void *target, void *compare, const void *set)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100869{
870 uint64_t previous;
871 int tmp;
872
873 __asm __volatile("1:"
874 "ldrexd %0, [%4];"
875 "cmp %Q0, %Q2;"
876 "ittt eq;"
877 "cmpeq %R0, %R2;"
878 "strexdeq %1, %3, [%4];"
879 "cmpeq %1, #1;"
880 "beq 1b;"
881 : "=&r" (previous), "=&r" (tmp)
Willy Tarreau41ccb192018-02-14 14:16:28 +0100882 : "r" (*(uint64_t *)compare), "r" (*(uint64_t *)set), "r" (target)
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100883 : "memory", "cc");
884 tmp = (previous == *(uint64_t *)compare);
885 *(uint64_t *)compare = previous;
886 return (tmp);
887}
888
889#elif defined (__aarch64__)
890#define HA_HAVE_CAS_DW 1
891#define HA_CAS_IS_8B
892
893static __inline void
894__ha_barrier_load(void)
895{
896 __asm __volatile("dmb ishld" ::: "memory");
897}
898
899static __inline void
900__ha_barrier_store(void)
901{
902 __asm __volatile("dmb ishst" ::: "memory");
903}
904
905static __inline void
906__ha_barrier_full(void)
907{
908 __asm __volatile("dmb ish" ::: "memory");
909}
910
911static __inline int __ha_cas_dw(void *target, void *compare, void *set)
912{
913 void *value[2];
914 uint64_t tmp1, tmp2;
915
916 __asm__ __volatile__("1:"
917 "ldxp %0, %1, [%4];"
918 "mov %2, %0;"
919 "mov %3, %1;"
920 "eor %0, %0, %5;"
921 "eor %1, %1, %6;"
922 "orr %1, %0, %1;"
923 "mov %w0, #0;"
924 "cbnz %1, 2f;"
925 "stxp %w0, %7, %8, [%4];"
926 "cbnz %w0, 1b;"
927 "mov %w0, #1;"
928 "2:"
929 : "=&r" (tmp1), "=&r" (tmp2), "=&r" (value[0]), "=&r" (value[1])
930 : "r" (target), "r" (((void **)(compare))[0]), "r" (((void **)(compare))[1]), "r" (((void **)(set))[0]), "r" (((void **)(set))[1])
931 : "cc", "memory");
932
933 memcpy(compare, &value, sizeof(value));
934 return (tmp1);
935}
936
937#else
938#define __ha_barrier_load __sync_synchronize
939#define __ha_barrier_store __sync_synchronize
940#define __ha_barrier_full __sync_synchronize
941#endif
942
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200943#endif /* USE_THREAD */
944
Olivier Houchardf61f0cb2017-12-21 17:13:05 +0100945static inline void __ha_compiler_barrier(void)
946{
947 __asm __volatile("" ::: "memory");
948}
949
Willy Tarreau0ccd3222018-07-30 10:34:35 +0200950int parse_nbthread(const char *arg, char **err);
Willy Tarreau4037a3f2018-03-28 18:06:47 +0200951
Christopher Faulet1a2b56e2017-10-12 16:09:09 +0200952#endif /* _COMMON_HATHREADS_H */