Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 25 | #include <signal.h> |
Willy Tarreau | 38171da | 2019-05-17 16:33:13 +0200 | [diff] [blame] | 26 | #include <unistd.h> |
| 27 | #ifdef _POSIX_PRIORITY_SCHEDULING |
| 28 | #include <sched.h> |
| 29 | #endif |
| 30 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 31 | #include <common/config.h> |
Willy Tarreau | 90fa97b | 2018-11-25 19:46:08 +0100 | [diff] [blame] | 32 | #include <common/initcall.h> |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 33 | |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 34 | /* Note about all_threads_mask : |
Willy Tarreau | da9e939 | 2019-02-02 17:03:41 +0100 | [diff] [blame] | 35 | * - 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 Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 39 | */ |
| 40 | |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 41 | /* thread info flags, for thread_info[].flags */ |
| 42 | #define TI_FL_STUCK 0x00000001 |
| 43 | |
| 44 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 45 | #ifndef USE_THREAD |
| 46 | |
Willy Tarreau | 421f02e | 2018-01-20 18:19:22 +0100 | [diff] [blame] | 47 | #define MAX_THREADS 1 |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 48 | #define MAX_THREADS_MASK 1 |
| 49 | |
| 50 | /* Only way found to replace variables with constants that are optimized away |
| 51 | * at build time. |
| 52 | */ |
| 53 | enum { all_threads_mask = 1UL }; |
Willy Tarreau | 441259c | 2019-05-22 07:48:18 +0200 | [diff] [blame] | 54 | enum { threads_harmless_mask = 0 }; |
| 55 | enum { threads_want_rdv_mask = 0 }; |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 56 | enum { tid_bit = 1UL }; |
| 57 | enum { tid = 0 }; |
Willy Tarreau | 421f02e | 2018-01-20 18:19:22 +0100 | [diff] [blame] | 58 | |
Willy Tarreau | 5a6e224 | 2019-05-20 18:56:48 +0200 | [diff] [blame] | 59 | extern struct thread_info { |
Willy Tarreau | 624dcbf | 2019-05-20 20:23:06 +0200 | [diff] [blame] | 60 | clockid_t clock_id; |
Willy Tarreau | 430f590 | 2019-05-21 20:01:26 +0200 | [diff] [blame] | 61 | timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */ |
Willy Tarreau | 81036f2 | 2019-05-20 19:24:50 +0200 | [diff] [blame] | 62 | uint64_t prev_cpu_time; /* previous per thread CPU time */ |
| 63 | uint64_t prev_mono_time; /* previous system wide monotonic time */ |
| 64 | unsigned int idle_pct; /* idle to total ratio over last sample (percent) */ |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 65 | unsigned int flags; /* thread info flags, TI_FL_* */ |
Willy Tarreau | 5a6e224 | 2019-05-20 18:56:48 +0200 | [diff] [blame] | 66 | /* pad to cache line (64B) */ |
| 67 | char __pad[0]; /* unused except to check remaining room */ |
| 68 | char __end[0] __attribute__((aligned(64))); |
| 69 | } thread_info[MAX_THREADS]; |
| 70 | |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 71 | extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */ |
| 72 | |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 73 | #define __decl_hathreads(decl) |
Willy Tarreau | 90fa97b | 2018-11-25 19:46:08 +0100 | [diff] [blame] | 74 | #define __decl_spinlock(lock) |
| 75 | #define __decl_aligned_spinlock(lock) |
| 76 | #define __decl_rwlock(lock) |
| 77 | #define __decl_aligned_rwlock(lock) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 78 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 79 | #define HA_ATOMIC_CAS(val, old, new) ({((*val) == (*old)) ? (*(val) = (new) , 1) : (*(old) = *(val), 0);}) |
Willy Tarreau | c3b5958 | 2019-05-27 17:37:20 +0200 | [diff] [blame] | 80 | |
| 81 | /* warning, n is a pointer to the double value for dwcas */ |
| 82 | #define HA_ATOMIC_DWCAS(val, o, n) \ |
| 83 | ({ \ |
| 84 | long *_v = (long*)(val); \ |
| 85 | long *_o = (long*)(o); \ |
| 86 | long *_n = (long*)(n); \ |
| 87 | long _v0 = _v[0], _v1 = _v[1]; \ |
| 88 | (_v0 == _o[0] && _v1 == _o[1]) ? \ |
| 89 | (_v[0] = _n[0], _v[1] = _n[1], 1) : \ |
| 90 | (_o[0] = _v0, _o[1] = _v1, 0); \ |
| 91 | }) |
| 92 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 93 | #define HA_ATOMIC_ADD(val, i) ({*(val) += (i);}) |
| 94 | #define HA_ATOMIC_SUB(val, i) ({*(val) -= (i);}) |
Willy Tarreau | 9378df8 | 2018-09-05 16:11:03 +0200 | [diff] [blame] | 95 | #define HA_ATOMIC_XADD(val, i) \ |
| 96 | ({ \ |
| 97 | typeof((val)) __p_xadd = (val); \ |
| 98 | typeof(*(val)) __old_xadd = *__p_xadd; \ |
| 99 | *__p_xadd += i; \ |
| 100 | __old_xadd; \ |
| 101 | }) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 102 | #define HA_ATOMIC_AND(val, flags) ({*(val) &= (flags);}) |
| 103 | #define HA_ATOMIC_OR(val, flags) ({*(val) |= (flags);}) |
| 104 | #define HA_ATOMIC_XCHG(val, new) \ |
| 105 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 106 | typeof(*(val)) __old_xchg = *(val); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 107 | *(val) = new; \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 108 | __old_xchg; \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 109 | }) |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 110 | #define HA_ATOMIC_BTS(val, bit) \ |
| 111 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 112 | typeof((val)) __p_bts = (val); \ |
| 113 | typeof(*__p_bts) __b_bts = (1UL << (bit)); \ |
| 114 | typeof(*__p_bts) __t_bts = *__p_bts & __b_bts; \ |
| 115 | if (!__t_bts) \ |
| 116 | *__p_bts |= __b_bts; \ |
| 117 | __t_bts; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 118 | }) |
| 119 | #define HA_ATOMIC_BTR(val, bit) \ |
| 120 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 121 | typeof((val)) __p_btr = (val); \ |
| 122 | typeof(*__p_btr) __b_btr = (1UL << (bit)); \ |
| 123 | typeof(*__p_btr) __t_btr = *__p_btr & __b_btr; \ |
| 124 | if (__t_btr) \ |
| 125 | *__p_btr &= ~__b_btr; \ |
| 126 | __t_btr; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 127 | }) |
Olivier Houchard | 9ce62b5 | 2019-04-30 13:38:02 +0200 | [diff] [blame] | 128 | #define HA_ATOMIC_LOAD(val) *(val) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 129 | #define HA_ATOMIC_STORE(val, new) ({*(val) = new;}) |
| 130 | #define HA_ATOMIC_UPDATE_MAX(val, new) \ |
| 131 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 132 | typeof(*(val)) __new_max = (new); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 133 | \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 134 | if (*(val) < __new_max) \ |
| 135 | *(val) = __new_max; \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 136 | *(val); \ |
| 137 | }) |
| 138 | |
| 139 | #define HA_ATOMIC_UPDATE_MIN(val, new) \ |
| 140 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 141 | typeof(*(val)) __new_min = (new); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 142 | \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 143 | if (*(val) > __new_min) \ |
| 144 | *(val) = __new_min; \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 145 | *(val); \ |
| 146 | }) |
| 147 | |
Willy Tarreau | b29dc95 | 2017-10-31 18:00:20 +0100 | [diff] [blame] | 148 | #define HA_BARRIER() do { } while (0) |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 149 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 150 | #define HA_SPIN_INIT(l) do { /* do nothing */ } while(0) |
| 151 | #define HA_SPIN_DESTROY(l) do { /* do nothing */ } while(0) |
| 152 | #define HA_SPIN_LOCK(lbl, l) do { /* do nothing */ } while(0) |
| 153 | #define HA_SPIN_TRYLOCK(lbl, l) ({ 0; }) |
| 154 | #define HA_SPIN_UNLOCK(lbl, l) do { /* do nothing */ } while(0) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 155 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 156 | #define HA_RWLOCK_INIT(l) do { /* do nothing */ } while(0) |
| 157 | #define HA_RWLOCK_DESTROY(l) do { /* do nothing */ } while(0) |
| 158 | #define HA_RWLOCK_WRLOCK(lbl, l) do { /* do nothing */ } while(0) |
| 159 | #define HA_RWLOCK_TRYWRLOCK(lbl, l) ({ 0; }) |
| 160 | #define HA_RWLOCK_WRUNLOCK(lbl, l) do { /* do nothing */ } while(0) |
| 161 | #define HA_RWLOCK_RDLOCK(lbl, l) do { /* do nothing */ } while(0) |
| 162 | #define HA_RWLOCK_TRYRDLOCK(lbl, l) ({ 0; }) |
| 163 | #define HA_RWLOCK_RDUNLOCK(lbl, l) do { /* do nothing */ } while(0) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 164 | |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 165 | #define ha_sigmask(how, set, oldset) sigprocmask(how, set, oldset) |
| 166 | |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 167 | static inline void ha_set_tid(unsigned int tid) |
| 168 | { |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 169 | ti = &thread_info[tid]; |
Willy Tarreau | 38171da | 2019-05-17 16:33:13 +0200 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void ha_thread_relax(void) |
| 173 | { |
| 174 | #if _POSIX_PRIORITY_SCHEDULING |
| 175 | sched_yield(); |
| 176 | #endif |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 177 | } |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 178 | |
Willy Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 179 | /* send signal <sig> to thread <thr> */ |
| 180 | static inline void ha_tkill(unsigned int thr, int sig) |
| 181 | { |
| 182 | raise(sig); |
| 183 | } |
| 184 | |
| 185 | /* send signal <sig> to all threads */ |
| 186 | static inline void ha_tkillall(int sig) |
| 187 | { |
| 188 | raise(sig); |
| 189 | } |
| 190 | |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 191 | static inline void __ha_barrier_atomic_load(void) |
| 192 | { |
| 193 | } |
| 194 | |
| 195 | static inline void __ha_barrier_atomic_store(void) |
| 196 | { |
| 197 | } |
| 198 | |
| 199 | static inline void __ha_barrier_atomic_full(void) |
| 200 | { |
| 201 | } |
| 202 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 203 | static inline void __ha_barrier_load(void) |
| 204 | { |
| 205 | } |
| 206 | |
| 207 | static inline void __ha_barrier_store(void) |
| 208 | { |
| 209 | } |
| 210 | |
| 211 | static inline void __ha_barrier_full(void) |
| 212 | { |
| 213 | } |
| 214 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 215 | static inline void thread_harmless_now() |
| 216 | { |
| 217 | } |
| 218 | |
| 219 | static inline void thread_harmless_end() |
| 220 | { |
| 221 | } |
| 222 | |
| 223 | static inline void thread_isolate() |
| 224 | { |
| 225 | } |
| 226 | |
| 227 | static inline void thread_release() |
| 228 | { |
| 229 | } |
| 230 | |
| 231 | static inline unsigned long thread_isolated() |
| 232 | { |
| 233 | return 1; |
| 234 | } |
| 235 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 236 | #else /* USE_THREAD */ |
| 237 | |
| 238 | #include <stdio.h> |
| 239 | #include <stdlib.h> |
| 240 | #include <string.h> |
| 241 | #include <pthread.h> |
| 242 | #include <import/plock.h> |
| 243 | |
Willy Tarreau | f5809cd | 2019-01-26 13:35:03 +0100 | [diff] [blame] | 244 | #ifndef MAX_THREADS |
Willy Tarreau | 421f02e | 2018-01-20 18:19:22 +0100 | [diff] [blame] | 245 | #define MAX_THREADS LONGBITS |
Willy Tarreau | f5809cd | 2019-01-26 13:35:03 +0100 | [diff] [blame] | 246 | #endif |
| 247 | |
| 248 | #define MAX_THREADS_MASK (~0UL >> (LONGBITS - MAX_THREADS)) |
Willy Tarreau | 421f02e | 2018-01-20 18:19:22 +0100 | [diff] [blame] | 249 | |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 250 | #define __decl_hathreads(decl) decl |
| 251 | |
Willy Tarreau | 90fa97b | 2018-11-25 19:46:08 +0100 | [diff] [blame] | 252 | /* declare a self-initializing spinlock */ |
| 253 | #define __decl_spinlock(lock) \ |
| 254 | HA_SPINLOCK_T (lock); \ |
| 255 | INITCALL1(STG_LOCK, ha_spin_init, &(lock)) |
| 256 | |
| 257 | /* declare a self-initializing spinlock, aligned on a cache line */ |
| 258 | #define __decl_aligned_spinlock(lock) \ |
| 259 | HA_SPINLOCK_T (lock) __attribute__((aligned(64))); \ |
| 260 | INITCALL1(STG_LOCK, ha_spin_init, &(lock)) |
| 261 | |
| 262 | /* declare a self-initializing rwlock */ |
| 263 | #define __decl_rwlock(lock) \ |
| 264 | HA_RWLOCK_T (lock); \ |
| 265 | INITCALL1(STG_LOCK, ha_rwlock_init, &(lock)) |
| 266 | |
| 267 | /* declare a self-initializing rwlock, aligned on a cache line */ |
| 268 | #define __decl_aligned_rwlock(lock) \ |
| 269 | HA_RWLOCK_T (lock) __attribute__((aligned(64))); \ |
| 270 | INITCALL1(STG_LOCK, ha_rwlock_init, &(lock)) |
| 271 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 272 | /* TODO: thread: For now, we rely on GCC builtins but it could be a good idea to |
| 273 | * have a header file regrouping all functions dealing with threads. */ |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 274 | |
David Carlier | ec5e845 | 2018-01-11 14:20:43 +0000 | [diff] [blame] | 275 | #if defined(__GNUC__) && (__GNUC__ < 4 || __GNUC__ == 4 && __GNUC_MINOR__ < 7) && !defined(__clang__) |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 276 | /* gcc < 4.7 */ |
| 277 | |
| 278 | #define HA_ATOMIC_ADD(val, i) __sync_add_and_fetch(val, i) |
| 279 | #define HA_ATOMIC_SUB(val, i) __sync_sub_and_fetch(val, i) |
Willy Tarreau | 9378df8 | 2018-09-05 16:11:03 +0200 | [diff] [blame] | 280 | #define HA_ATOMIC_XADD(val, i) __sync_fetch_and_add(val, i) |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 281 | #define HA_ATOMIC_AND(val, flags) __sync_and_and_fetch(val, flags) |
| 282 | #define HA_ATOMIC_OR(val, flags) __sync_or_and_fetch(val, flags) |
| 283 | |
| 284 | /* the CAS is a bit complicated. The older API doesn't support returning the |
| 285 | * value and the swap's result at the same time. So here we take what looks |
| 286 | * like the safest route, consisting in using the boolean version guaranteeing |
| 287 | * that the operation was performed or not, and we snoop a previous value. If |
| 288 | * the compare succeeds, we return. If it fails, we return the previous value, |
| 289 | * but only if it differs from the expected one. If it's the same it's a race |
| 290 | * thus we try again to avoid confusing a possibly sensitive caller. |
| 291 | */ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 292 | #define HA_ATOMIC_CAS(val, old, new) \ |
| 293 | ({ \ |
| 294 | typeof((val)) __val_cas = (val); \ |
| 295 | typeof((old)) __oldp_cas = (old); \ |
| 296 | typeof(*(old)) __oldv_cas; \ |
| 297 | typeof((new)) __new_cas = (new); \ |
| 298 | int __ret_cas; \ |
| 299 | do { \ |
| 300 | __oldv_cas = *__val_cas; \ |
| 301 | __ret_cas = __sync_bool_compare_and_swap(__val_cas, *__oldp_cas, __new_cas); \ |
| 302 | } while (!__ret_cas && *__oldp_cas == __oldv_cas); \ |
| 303 | if (!__ret_cas) \ |
| 304 | *__oldp_cas = __oldv_cas; \ |
| 305 | __ret_cas; \ |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 306 | }) |
| 307 | |
Willy Tarreau | c3b5958 | 2019-05-27 17:37:20 +0200 | [diff] [blame] | 308 | /* warning, n is a pointer to the double value for dwcas */ |
Willy Tarreau | 6a38b32 | 2019-05-11 18:04:24 +0200 | [diff] [blame] | 309 | #define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n) |
| 310 | |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 311 | #define HA_ATOMIC_XCHG(val, new) \ |
| 312 | ({ \ |
| 313 | typeof((val)) __val_xchg = (val); \ |
| 314 | typeof(*(val)) __old_xchg; \ |
| 315 | typeof((new)) __new_xchg = (new); \ |
| 316 | do { __old_xchg = *__val_xchg; \ |
| 317 | } while (!__sync_bool_compare_and_swap(__val_xchg, __old_xchg, __new_xchg)); \ |
| 318 | __old_xchg; \ |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 319 | }) |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 320 | |
| 321 | #define HA_ATOMIC_BTS(val, bit) \ |
| 322 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 323 | typeof(*(val)) __b_bts = (1UL << (bit)); \ |
| 324 | __sync_fetch_and_or((val), __b_bts) & __b_bts; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 325 | }) |
| 326 | |
| 327 | #define HA_ATOMIC_BTR(val, bit) \ |
| 328 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 329 | typeof(*(val)) __b_btr = (1UL << (bit)); \ |
| 330 | __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 331 | }) |
| 332 | |
Olivier Houchard | 9ce62b5 | 2019-04-30 13:38:02 +0200 | [diff] [blame] | 333 | #define HA_ATOMIC_LOAD(val) \ |
| 334 | ({ \ |
| 335 | typeof(*(val)) ret; \ |
| 336 | __sync_synchronize(); \ |
| 337 | ret = *(volatile typeof(val))val; \ |
| 338 | __sync_synchronize(); \ |
| 339 | ret; \ |
| 340 | }) |
| 341 | |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 342 | #define HA_ATOMIC_STORE(val, new) \ |
| 343 | ({ \ |
| 344 | typeof((val)) __val_store = (val); \ |
| 345 | typeof(*(val)) __old_store; \ |
| 346 | typeof((new)) __new_store = (new); \ |
| 347 | do { __old_store = *__val_store; \ |
| 348 | } while (!__sync_bool_compare_and_swap(__val_store, __old_store, __new_store)); \ |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 349 | }) |
| 350 | #else |
| 351 | /* gcc >= 4.7 */ |
Olivier Houchard | 1135379 | 2019-03-07 18:48:22 +0100 | [diff] [blame] | 352 | #define HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) |
Willy Tarreau | c3b5958 | 2019-05-27 17:37:20 +0200 | [diff] [blame] | 353 | /* warning, n is a pointer to the double value for dwcas */ |
Willy Tarreau | 6a38b32 | 2019-05-11 18:04:24 +0200 | [diff] [blame] | 354 | #define HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n) |
Olivier Houchard | 1135379 | 2019-03-07 18:48:22 +0100 | [diff] [blame] | 355 | #define HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_SEQ_CST) |
| 356 | #define HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_SEQ_CST) |
| 357 | #define HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_SEQ_CST) |
| 358 | #define HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_SEQ_CST) |
| 359 | #define HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_SEQ_CST) |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 360 | #define HA_ATOMIC_BTS(val, bit) \ |
| 361 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 362 | typeof(*(val)) __b_bts = (1UL << (bit)); \ |
| 363 | __sync_fetch_and_or((val), __b_bts) & __b_bts; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 364 | }) |
| 365 | |
| 366 | #define HA_ATOMIC_BTR(val, bit) \ |
| 367 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 368 | typeof(*(val)) __b_btr = (1UL << (bit)); \ |
| 369 | __sync_fetch_and_and((val), ~__b_btr) & __b_btr; \ |
Willy Tarreau | 5266b3e | 2018-01-25 17:43:58 +0100 | [diff] [blame] | 370 | }) |
| 371 | |
Olivier Houchard | 1135379 | 2019-03-07 18:48:22 +0100 | [diff] [blame] | 372 | #define HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_SEQ_CST) |
| 373 | #define HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_SEQ_CST) |
Olivier Houchard | 9ce62b5 | 2019-04-30 13:38:02 +0200 | [diff] [blame] | 374 | #define HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_SEQ_CST) |
Olivier Houchard | 3212a2c | 2019-04-15 21:14:25 +0200 | [diff] [blame] | 375 | |
| 376 | /* Variants that don't generate any memory barrier. |
| 377 | * If you're unsure how to deal with barriers, just use the HA_ATOMIC_* version, |
| 378 | * that will always generate correct code. |
| 379 | * Usually it's fine to use those when updating data that have no dependency, |
| 380 | * ie updating a counter. Otherwise a barrier is required. |
| 381 | */ |
| 382 | #define _HA_ATOMIC_CAS(val, old, new) __atomic_compare_exchange_n(val, old, new, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED) |
Willy Tarreau | c3b5958 | 2019-05-27 17:37:20 +0200 | [diff] [blame] | 383 | /* warning, n is a pointer to the double value for dwcas */ |
Willy Tarreau | 6a38b32 | 2019-05-11 18:04:24 +0200 | [diff] [blame] | 384 | #define _HA_ATOMIC_DWCAS(val, o, n) __ha_cas_dw(val, o, n) |
Olivier Houchard | 3212a2c | 2019-04-15 21:14:25 +0200 | [diff] [blame] | 385 | #define _HA_ATOMIC_ADD(val, i) __atomic_add_fetch(val, i, __ATOMIC_RELAXED) |
| 386 | #define _HA_ATOMIC_XADD(val, i) __atomic_fetch_add(val, i, __ATOMIC_RELAXED) |
| 387 | #define _HA_ATOMIC_SUB(val, i) __atomic_sub_fetch(val, i, __ATOMIC_RELAXED) |
| 388 | #define _HA_ATOMIC_AND(val, flags) __atomic_and_fetch(val, flags, __ATOMIC_RELAXED) |
| 389 | #define _HA_ATOMIC_OR(val, flags) __atomic_or_fetch(val, flags, __ATOMIC_RELAXED) |
| 390 | #define _HA_ATOMIC_XCHG(val, new) __atomic_exchange_n(val, new, __ATOMIC_RELAXED) |
| 391 | #define _HA_ATOMIC_STORE(val, new) __atomic_store_n(val, new, __ATOMIC_RELAXED) |
Olivier Houchard | 9ce62b5 | 2019-04-30 13:38:02 +0200 | [diff] [blame] | 392 | #define _HA_ATOMIC_LOAD(val) __atomic_load_n(val, __ATOMIC_RELAXED) |
Olivier Houchard | 3212a2c | 2019-04-15 21:14:25 +0200 | [diff] [blame] | 393 | |
| 394 | #endif /* gcc >= 4.7 */ |
Willy Tarreau | 1a69af6 | 2018-01-04 18:49:31 +0100 | [diff] [blame] | 395 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 396 | #define HA_ATOMIC_UPDATE_MAX(val, new) \ |
| 397 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 398 | typeof(*(val)) __old_max = *(val); \ |
| 399 | typeof(*(val)) __new_max = (new); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 400 | \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 401 | while (__old_max < __new_max && \ |
| 402 | !HA_ATOMIC_CAS(val, &__old_max, __new_max)); \ |
| 403 | *(val); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 404 | }) |
| 405 | #define HA_ATOMIC_UPDATE_MIN(val, new) \ |
| 406 | ({ \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 407 | typeof(*(val)) __old_min = *(val); \ |
| 408 | typeof(*(val)) __new_min = (new); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 409 | \ |
Christopher Faulet | 48aa13f | 2018-04-09 08:45:43 +0200 | [diff] [blame] | 410 | while (__old_min > __new_min && \ |
| 411 | !HA_ATOMIC_CAS(val, &__old_min, __new_min)); \ |
| 412 | *(val); \ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 413 | }) |
| 414 | |
Willy Tarreau | b29dc95 | 2017-10-31 18:00:20 +0100 | [diff] [blame] | 415 | #define HA_BARRIER() pl_barrier() |
| 416 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 417 | void thread_harmless_till_end(); |
| 418 | void thread_isolate(); |
| 419 | void thread_release(); |
Willy Tarreau | 2beaaf7 | 2019-05-22 08:43:34 +0200 | [diff] [blame] | 420 | void ha_tkill(unsigned int thr, int sig); |
| 421 | void ha_tkillall(int sig); |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 422 | |
Willy Tarreau | 5a6e224 | 2019-05-20 18:56:48 +0200 | [diff] [blame] | 423 | extern struct thread_info { |
| 424 | pthread_t pthread; |
| 425 | clockid_t clock_id; |
Willy Tarreau | 430f590 | 2019-05-21 20:01:26 +0200 | [diff] [blame] | 426 | timer_t wd_timer; /* valid timer or TIMER_INVALID if not set */ |
Willy Tarreau | 81036f2 | 2019-05-20 19:24:50 +0200 | [diff] [blame] | 427 | uint64_t prev_cpu_time; /* previous per thread CPU time */ |
| 428 | uint64_t prev_mono_time; /* previous system wide monotonic time */ |
| 429 | unsigned int idle_pct; /* idle to total ratio over last sample (percent) */ |
Willy Tarreau | e6a02fa | 2019-05-22 07:06:44 +0200 | [diff] [blame] | 430 | unsigned int flags; /* thread info flags, TI_FL_* */ |
Willy Tarreau | 5a6e224 | 2019-05-20 18:56:48 +0200 | [diff] [blame] | 431 | /* pad to cache line (64B) */ |
| 432 | char __pad[0]; /* unused except to check remaining room */ |
| 433 | char __end[0] __attribute__((aligned(64))); |
| 434 | } thread_info[MAX_THREADS]; |
| 435 | |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 436 | extern THREAD_LOCAL unsigned int tid; /* The thread id */ |
| 437 | extern THREAD_LOCAL unsigned long tid_bit; /* The bit corresponding to the thread id */ |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 438 | extern THREAD_LOCAL struct thread_info *ti; /* thread_info for the current thread */ |
Christopher Faulet | ddb6c16 | 2018-07-20 09:31:53 +0200 | [diff] [blame] | 439 | extern volatile unsigned long all_threads_mask; |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 440 | extern volatile unsigned long threads_want_rdv_mask; |
| 441 | extern volatile unsigned long threads_harmless_mask; |
| 442 | |
| 443 | /* explanation for threads_want_rdv_mask and threads_harmless_mask : |
| 444 | * - threads_want_rdv_mask is a bit field indicating all threads that have |
| 445 | * requested a rendez-vous of other threads using thread_isolate(). |
| 446 | * - threads_harmless_mask is a bit field indicating all threads that are |
| 447 | * currently harmless in that they promise not to access a shared resource. |
| 448 | * |
| 449 | * For a given thread, its bits in want_rdv and harmless can be translated like |
| 450 | * this : |
| 451 | * |
| 452 | * ----------+----------+---------------------------------------------------- |
| 453 | * want_rdv | harmless | description |
| 454 | * ----------+----------+---------------------------------------------------- |
| 455 | * 0 | 0 | thread not interested in RDV, possibly harmful |
| 456 | * 0 | 1 | thread not interested in RDV but harmless |
| 457 | * 1 | 1 | thread interested in RDV and waiting for its turn |
| 458 | * 1 | 0 | thread currently working isolated from others |
| 459 | * ----------+----------+---------------------------------------------------- |
| 460 | */ |
Olivier Houchard | 6b96f72 | 2018-04-25 16:58:25 +0200 | [diff] [blame] | 461 | |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 462 | #define ha_sigmask(how, set, oldset) pthread_sigmask(how, set, oldset) |
| 463 | |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 464 | /* sets the thread ID and the TID bit for the current thread */ |
| 465 | static inline void ha_set_tid(unsigned int data) |
| 466 | { |
| 467 | tid = data; |
| 468 | tid_bit = (1UL << tid); |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 469 | ti = &thread_info[tid]; |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 470 | } |
| 471 | |
Willy Tarreau | 38171da | 2019-05-17 16:33:13 +0200 | [diff] [blame] | 472 | static inline void ha_thread_relax(void) |
| 473 | { |
| 474 | #if _POSIX_PRIORITY_SCHEDULING |
| 475 | sched_yield(); |
| 476 | #else |
| 477 | pl_cpu_relax(); |
| 478 | #endif |
| 479 | } |
| 480 | |
Willy Tarreau | 60b639c | 2018-08-02 10:16:17 +0200 | [diff] [blame] | 481 | /* Marks the thread as harmless. Note: this must be true, i.e. the thread must |
| 482 | * not be touching any unprotected shared resource during this period. Usually |
| 483 | * this is called before poll(), but it may also be placed around very slow |
| 484 | * calls (eg: some crypto operations). Needs to be terminated using |
| 485 | * thread_harmless_end(). |
| 486 | */ |
| 487 | static inline void thread_harmless_now() |
| 488 | { |
| 489 | HA_ATOMIC_OR(&threads_harmless_mask, tid_bit); |
| 490 | } |
| 491 | |
| 492 | /* Ends the harmless period started by thread_harmless_now(). Usually this is |
| 493 | * placed after the poll() call. If it is discovered that a job was running and |
| 494 | * is relying on the thread still being harmless, the thread waits for the |
| 495 | * other one to finish. |
| 496 | */ |
| 497 | static inline void thread_harmless_end() |
| 498 | { |
| 499 | while (1) { |
| 500 | HA_ATOMIC_AND(&threads_harmless_mask, ~tid_bit); |
| 501 | if (likely((threads_want_rdv_mask & all_threads_mask) == 0)) |
| 502 | break; |
| 503 | thread_harmless_till_end(); |
| 504 | } |
| 505 | } |
| 506 | |
| 507 | /* an isolated thread has harmless cleared and want_rdv set */ |
| 508 | static inline unsigned long thread_isolated() |
| 509 | { |
| 510 | return threads_want_rdv_mask & ~threads_harmless_mask & tid_bit; |
| 511 | } |
| 512 | |
William Lallemand | 6e1796e | 2018-06-07 11:23:40 +0200 | [diff] [blame] | 513 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 514 | #if defined(DEBUG_THREAD) || defined(DEBUG_FULL) |
| 515 | |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 516 | /* WARNING!!! if you update this enum, please also keep lock_label() up to date below */ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 517 | enum lock_label { |
Christopher Faulet | d4604ad | 2017-05-29 10:40:41 +0200 | [diff] [blame] | 518 | FD_LOCK, |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 519 | TASK_RQ_LOCK, |
| 520 | TASK_WQ_LOCK, |
Christopher Faulet | b349e48 | 2017-08-29 09:52:38 +0200 | [diff] [blame] | 521 | POOL_LOCK, |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 522 | LISTENER_LOCK, |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 523 | PROXY_LOCK, |
Christopher Faulet | 29f77e8 | 2017-06-08 14:04:45 +0200 | [diff] [blame] | 524 | SERVER_LOCK, |
Christopher Faulet | 5b51755 | 2017-06-09 14:17:53 +0200 | [diff] [blame] | 525 | LBPRM_LOCK, |
Christopher Faulet | b79a94c | 2017-05-30 15:34:30 +0200 | [diff] [blame] | 526 | SIGNALS_LOCK, |
Emeric Brun | 819fc6f | 2017-06-13 19:37:32 +0200 | [diff] [blame] | 527 | STK_TABLE_LOCK, |
| 528 | STK_SESS_LOCK, |
Emeric Brun | 1138fd0 | 2017-06-19 12:38:55 +0200 | [diff] [blame] | 529 | APPLETS_LOCK, |
Emeric Brun | 80527f5 | 2017-06-19 17:46:37 +0200 | [diff] [blame] | 530 | PEER_LOCK, |
Emeric Brun | a1dd243 | 2017-06-21 15:42:52 +0200 | [diff] [blame] | 531 | BUF_WQ_LOCK, |
Emeric Brun | 6b35e9b | 2017-06-30 16:23:45 +0200 | [diff] [blame] | 532 | STRMS_LOCK, |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 533 | SSL_LOCK, |
| 534 | SSL_GEN_CERTS_LOCK, |
Emeric Brun | b5997f7 | 2017-07-03 11:34:05 +0200 | [diff] [blame] | 535 | PATREF_LOCK, |
| 536 | PATEXP_LOCK, |
| 537 | PATLRU_LOCK, |
Christopher Faulet | e95f2c3 | 2017-07-24 16:30:34 +0200 | [diff] [blame] | 538 | VARS_LOCK, |
Christopher Faulet | 8ca3b4b | 2017-07-25 11:07:15 +0200 | [diff] [blame] | 539 | COMP_POOL_LOCK, |
Thierry FOURNIER | 61ba0e2 | 2017-07-12 11:41:21 +0200 | [diff] [blame] | 540 | LUA_LOCK, |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 541 | NOTIF_LOCK, |
Christopher Faulet | 24289f2 | 2017-09-25 14:48:02 +0200 | [diff] [blame] | 542 | SPOE_APPLET_LOCK, |
Christopher Faulet | b2812a6 | 2017-10-04 16:17:58 +0200 | [diff] [blame] | 543 | DNS_LOCK, |
Christopher Faulet | cfda847 | 2017-10-20 15:40:23 +0200 | [diff] [blame] | 544 | PID_LIST_LOCK, |
Christopher Faulet | c2a89a6 | 2017-10-23 15:54:24 +0200 | [diff] [blame] | 545 | EMAIL_ALERTS_LOCK, |
Emeric Brun | d8b3b65 | 2017-11-07 11:19:48 +0100 | [diff] [blame] | 546 | PIPES_LOCK, |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 547 | TLSKEYS_REF_LOCK, |
Willy Tarreau | 34d4b52 | 2018-10-29 18:02:54 +0100 | [diff] [blame] | 548 | AUTH_LOCK, |
Frédéric Lécaille | d803e47 | 2019-04-25 07:42:09 +0200 | [diff] [blame] | 549 | LOGSRV_LOCK, |
Frédéric Lécaille | 4a3fef8 | 2019-05-28 14:47:17 +0200 | [diff] [blame] | 550 | DICT_LOCK, |
Ben51Degrees | 4ddf59d | 2019-02-05 13:24:00 +0000 | [diff] [blame] | 551 | OTHER_LOCK, |
Christopher Faulet | 339fff8 | 2017-10-19 11:59:15 +0200 | [diff] [blame] | 552 | LOCK_LABELS |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 553 | }; |
| 554 | struct lock_stat { |
| 555 | uint64_t nsec_wait_for_write; |
| 556 | uint64_t nsec_wait_for_read; |
| 557 | uint64_t num_write_locked; |
| 558 | uint64_t num_write_unlocked; |
| 559 | uint64_t num_read_locked; |
| 560 | uint64_t num_read_unlocked; |
| 561 | }; |
| 562 | |
| 563 | extern struct lock_stat lock_stats[LOCK_LABELS]; |
| 564 | |
| 565 | #define __HA_SPINLOCK_T unsigned long |
| 566 | |
| 567 | #define __SPIN_INIT(l) ({ (*l) = 0; }) |
| 568 | #define __SPIN_DESTROY(l) ({ (*l) = 0; }) |
Willy Tarreau | 88ac59b | 2017-11-06 01:03:26 +0100 | [diff] [blame] | 569 | #define __SPIN_LOCK(l) pl_take_s(l) |
| 570 | #define __SPIN_TRYLOCK(l) !pl_try_s(l) |
| 571 | #define __SPIN_UNLOCK(l) pl_drop_s(l) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 572 | |
| 573 | #define __HA_RWLOCK_T unsigned long |
| 574 | |
| 575 | #define __RWLOCK_INIT(l) ({ (*l) = 0; }) |
| 576 | #define __RWLOCK_DESTROY(l) ({ (*l) = 0; }) |
| 577 | #define __RWLOCK_WRLOCK(l) pl_take_w(l) |
| 578 | #define __RWLOCK_TRYWRLOCK(l) !pl_try_w(l) |
| 579 | #define __RWLOCK_WRUNLOCK(l) pl_drop_w(l) |
| 580 | #define __RWLOCK_RDLOCK(l) pl_take_r(l) |
| 581 | #define __RWLOCK_TRYRDLOCK(l) !pl_try_r(l) |
| 582 | #define __RWLOCK_RDUNLOCK(l) pl_drop_r(l) |
| 583 | |
| 584 | #define HA_SPINLOCK_T struct ha_spinlock |
| 585 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 586 | #define HA_SPIN_INIT(l) __spin_init(l) |
| 587 | #define HA_SPIN_DESTROY(l) __spin_destroy(l) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 588 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 589 | #define HA_SPIN_LOCK(lbl, l) __spin_lock(lbl, l, __func__, __FILE__, __LINE__) |
| 590 | #define HA_SPIN_TRYLOCK(lbl, l) __spin_trylock(lbl, l, __func__, __FILE__, __LINE__) |
| 591 | #define HA_SPIN_UNLOCK(lbl, l) __spin_unlock(lbl, l, __func__, __FILE__, __LINE__) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 592 | |
| 593 | #define HA_RWLOCK_T struct ha_rwlock |
| 594 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 595 | #define HA_RWLOCK_INIT(l) __ha_rwlock_init((l)) |
| 596 | #define HA_RWLOCK_DESTROY(l) __ha_rwlock_destroy((l)) |
| 597 | #define HA_RWLOCK_WRLOCK(lbl,l) __ha_rwlock_wrlock(lbl, l, __func__, __FILE__, __LINE__) |
| 598 | #define HA_RWLOCK_TRYWRLOCK(lbl,l) __ha_rwlock_trywrlock(lbl, l, __func__, __FILE__, __LINE__) |
| 599 | #define HA_RWLOCK_WRUNLOCK(lbl,l) __ha_rwlock_wrunlock(lbl, l, __func__, __FILE__, __LINE__) |
| 600 | #define HA_RWLOCK_RDLOCK(lbl,l) __ha_rwlock_rdlock(lbl, l) |
| 601 | #define HA_RWLOCK_TRYRDLOCK(lbl,l) __ha_rwlock_tryrdlock(lbl, l) |
| 602 | #define HA_RWLOCK_RDUNLOCK(lbl,l) __ha_rwlock_rdunlock(lbl, l) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 603 | |
| 604 | struct ha_spinlock { |
| 605 | __HA_SPINLOCK_T lock; |
| 606 | struct { |
| 607 | unsigned long owner; /* a bit is set to 1 << tid for the lock owner */ |
| 608 | unsigned long waiters; /* a bit is set to 1 << tid for waiting threads */ |
| 609 | struct { |
| 610 | const char *function; |
| 611 | const char *file; |
| 612 | int line; |
| 613 | } last_location; /* location of the last owner */ |
| 614 | } info; |
| 615 | }; |
| 616 | |
| 617 | struct ha_rwlock { |
| 618 | __HA_RWLOCK_T lock; |
| 619 | struct { |
| 620 | unsigned long cur_writer; /* a bit is set to 1 << tid for the lock owner */ |
| 621 | unsigned long wait_writers; /* a bit is set to 1 << tid for waiting writers */ |
| 622 | unsigned long cur_readers; /* a bit is set to 1 << tid for current readers */ |
| 623 | unsigned long wait_readers; /* a bit is set to 1 << tid for waiting waiters */ |
| 624 | struct { |
| 625 | const char *function; |
| 626 | const char *file; |
| 627 | int line; |
| 628 | } last_location; /* location of the last write owner */ |
| 629 | } info; |
| 630 | }; |
| 631 | |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 632 | static inline const char *lock_label(enum lock_label label) |
| 633 | { |
| 634 | switch (label) { |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 635 | case FD_LOCK: return "FD"; |
| 636 | case TASK_RQ_LOCK: return "TASK_RQ"; |
| 637 | case TASK_WQ_LOCK: return "TASK_WQ"; |
| 638 | case POOL_LOCK: return "POOL"; |
| 639 | case LISTENER_LOCK: return "LISTENER"; |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 640 | case PROXY_LOCK: return "PROXY"; |
| 641 | case SERVER_LOCK: return "SERVER"; |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 642 | case LBPRM_LOCK: return "LBPRM"; |
| 643 | case SIGNALS_LOCK: return "SIGNALS"; |
| 644 | case STK_TABLE_LOCK: return "STK_TABLE"; |
| 645 | case STK_SESS_LOCK: return "STK_SESS"; |
| 646 | case APPLETS_LOCK: return "APPLETS"; |
| 647 | case PEER_LOCK: return "PEER"; |
| 648 | case BUF_WQ_LOCK: return "BUF_WQ"; |
| 649 | case STRMS_LOCK: return "STRMS"; |
| 650 | case SSL_LOCK: return "SSL"; |
| 651 | case SSL_GEN_CERTS_LOCK: return "SSL_GEN_CERTS"; |
| 652 | case PATREF_LOCK: return "PATREF"; |
| 653 | case PATEXP_LOCK: return "PATEXP"; |
| 654 | case PATLRU_LOCK: return "PATLRU"; |
| 655 | case VARS_LOCK: return "VARS"; |
| 656 | case COMP_POOL_LOCK: return "COMP_POOL"; |
| 657 | case LUA_LOCK: return "LUA"; |
| 658 | case NOTIF_LOCK: return "NOTIF"; |
| 659 | case SPOE_APPLET_LOCK: return "SPOE_APPLET"; |
| 660 | case DNS_LOCK: return "DNS"; |
| 661 | case PID_LIST_LOCK: return "PID_LIST"; |
| 662 | case EMAIL_ALERTS_LOCK: return "EMAIL_ALERTS"; |
| 663 | case PIPES_LOCK: return "PIPES"; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 664 | case TLSKEYS_REF_LOCK: return "TLSKEYS_REF"; |
Willy Tarreau | 34d4b52 | 2018-10-29 18:02:54 +0100 | [diff] [blame] | 665 | case AUTH_LOCK: return "AUTH"; |
Frédéric Lécaille | d803e47 | 2019-04-25 07:42:09 +0200 | [diff] [blame] | 666 | case LOGSRV_LOCK: return "LOGSRV"; |
Frédéric Lécaille | 4a3fef8 | 2019-05-28 14:47:17 +0200 | [diff] [blame] | 667 | case DICT_LOCK: return "DICT"; |
Ben51Degrees | 4ddf59d | 2019-02-05 13:24:00 +0000 | [diff] [blame] | 668 | case OTHER_LOCK: return "OTHER"; |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 669 | case LOCK_LABELS: break; /* keep compiler happy */ |
| 670 | }; |
| 671 | /* only way to come here is consecutive to an internal bug */ |
| 672 | abort(); |
| 673 | } |
| 674 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 675 | static inline void show_lock_stats() |
| 676 | { |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 677 | int lbl; |
| 678 | |
| 679 | for (lbl = 0; lbl < LOCK_LABELS; lbl++) { |
| 680 | fprintf(stderr, |
| 681 | "Stats about Lock %s: \n" |
| 682 | "\t # write lock : %lu\n" |
| 683 | "\t # write unlock: %lu (%ld)\n" |
| 684 | "\t # wait time for write : %.3f msec\n" |
| 685 | "\t # wait time for write/lock: %.3f nsec\n" |
| 686 | "\t # read lock : %lu\n" |
| 687 | "\t # read unlock : %lu (%ld)\n" |
| 688 | "\t # wait time for read : %.3f msec\n" |
| 689 | "\t # wait time for read/lock : %.3f nsec\n", |
Christopher Faulet | f51bac2 | 2018-01-30 11:04:29 +0100 | [diff] [blame] | 690 | lock_label(lbl), |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 691 | lock_stats[lbl].num_write_locked, |
| 692 | lock_stats[lbl].num_write_unlocked, |
| 693 | lock_stats[lbl].num_write_unlocked - lock_stats[lbl].num_write_locked, |
| 694 | (double)lock_stats[lbl].nsec_wait_for_write / 1000000.0, |
| 695 | lock_stats[lbl].num_write_locked ? ((double)lock_stats[lbl].nsec_wait_for_write / (double)lock_stats[lbl].num_write_locked) : 0, |
| 696 | lock_stats[lbl].num_read_locked, |
| 697 | lock_stats[lbl].num_read_unlocked, |
| 698 | lock_stats[lbl].num_read_unlocked - lock_stats[lbl].num_read_locked, |
| 699 | (double)lock_stats[lbl].nsec_wait_for_read / 1000000.0, |
| 700 | lock_stats[lbl].num_read_locked ? ((double)lock_stats[lbl].nsec_wait_for_read / (double)lock_stats[lbl].num_read_locked) : 0); |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | /* Following functions are used to collect some stats about locks. We wrap |
| 705 | * pthread functions to known how much time we wait in a lock. */ |
| 706 | |
| 707 | static uint64_t nsec_now(void) { |
| 708 | struct timespec ts; |
| 709 | |
| 710 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 711 | return ((uint64_t) ts.tv_sec * 1000000000ULL + |
| 712 | (uint64_t) ts.tv_nsec); |
| 713 | } |
| 714 | |
| 715 | static inline void __ha_rwlock_init(struct ha_rwlock *l) |
| 716 | { |
| 717 | memset(l, 0, sizeof(struct ha_rwlock)); |
| 718 | __RWLOCK_INIT(&l->lock); |
| 719 | } |
| 720 | |
| 721 | static inline void __ha_rwlock_destroy(struct ha_rwlock *l) |
| 722 | { |
| 723 | __RWLOCK_DESTROY(&l->lock); |
| 724 | memset(l, 0, sizeof(struct ha_rwlock)); |
| 725 | } |
| 726 | |
| 727 | |
| 728 | static inline void __ha_rwlock_wrlock(enum lock_label lbl, struct ha_rwlock *l, |
| 729 | const char *func, const char *file, int line) |
| 730 | { |
| 731 | uint64_t start_time; |
| 732 | |
| 733 | if (unlikely(l->info.cur_writer & tid_bit)) { |
| 734 | /* the thread is already owning the lock for write */ |
| 735 | abort(); |
| 736 | } |
| 737 | |
| 738 | if (unlikely(l->info.cur_readers & tid_bit)) { |
| 739 | /* the thread is already owning the lock for read */ |
| 740 | abort(); |
| 741 | } |
| 742 | |
| 743 | HA_ATOMIC_OR(&l->info.wait_writers, tid_bit); |
| 744 | |
| 745 | start_time = nsec_now(); |
| 746 | __RWLOCK_WRLOCK(&l->lock); |
| 747 | HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time)); |
| 748 | |
| 749 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1); |
| 750 | |
| 751 | l->info.cur_writer = tid_bit; |
| 752 | l->info.last_location.function = func; |
| 753 | l->info.last_location.file = file; |
| 754 | l->info.last_location.line = line; |
| 755 | |
| 756 | HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit); |
| 757 | } |
| 758 | |
| 759 | static inline int __ha_rwlock_trywrlock(enum lock_label lbl, struct ha_rwlock *l, |
| 760 | const char *func, const char *file, int line) |
| 761 | { |
| 762 | uint64_t start_time; |
| 763 | int r; |
| 764 | |
| 765 | if (unlikely(l->info.cur_writer & tid_bit)) { |
| 766 | /* the thread is already owning the lock for write */ |
| 767 | abort(); |
| 768 | } |
| 769 | |
| 770 | if (unlikely(l->info.cur_readers & tid_bit)) { |
| 771 | /* the thread is already owning the lock for read */ |
| 772 | abort(); |
| 773 | } |
| 774 | |
| 775 | /* We set waiting writer because trywrlock could wait for readers to quit */ |
| 776 | HA_ATOMIC_OR(&l->info.wait_writers, tid_bit); |
| 777 | |
| 778 | start_time = nsec_now(); |
| 779 | r = __RWLOCK_TRYWRLOCK(&l->lock); |
| 780 | HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time)); |
| 781 | if (unlikely(r)) { |
| 782 | HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit); |
| 783 | return r; |
| 784 | } |
| 785 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1); |
| 786 | |
| 787 | l->info.cur_writer = tid_bit; |
| 788 | l->info.last_location.function = func; |
| 789 | l->info.last_location.file = file; |
| 790 | l->info.last_location.line = line; |
| 791 | |
| 792 | HA_ATOMIC_AND(&l->info.wait_writers, ~tid_bit); |
| 793 | |
| 794 | return 0; |
| 795 | } |
| 796 | |
| 797 | static inline void __ha_rwlock_wrunlock(enum lock_label lbl,struct ha_rwlock *l, |
| 798 | const char *func, const char *file, int line) |
| 799 | { |
| 800 | if (unlikely(!(l->info.cur_writer & tid_bit))) { |
| 801 | /* the thread is not owning the lock for write */ |
| 802 | abort(); |
| 803 | } |
| 804 | |
| 805 | l->info.cur_writer = 0; |
| 806 | l->info.last_location.function = func; |
| 807 | l->info.last_location.file = file; |
| 808 | l->info.last_location.line = line; |
| 809 | |
| 810 | __RWLOCK_WRUNLOCK(&l->lock); |
| 811 | |
| 812 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1); |
| 813 | } |
| 814 | |
| 815 | static inline void __ha_rwlock_rdlock(enum lock_label lbl,struct ha_rwlock *l) |
| 816 | { |
| 817 | uint64_t start_time; |
| 818 | |
| 819 | if (unlikely(l->info.cur_writer & tid_bit)) { |
| 820 | /* the thread is already owning the lock for write */ |
| 821 | abort(); |
| 822 | } |
| 823 | |
| 824 | if (unlikely(l->info.cur_readers & tid_bit)) { |
| 825 | /* the thread is already owning the lock for read */ |
| 826 | abort(); |
| 827 | } |
| 828 | |
| 829 | HA_ATOMIC_OR(&l->info.wait_readers, tid_bit); |
| 830 | |
| 831 | start_time = nsec_now(); |
| 832 | __RWLOCK_RDLOCK(&l->lock); |
| 833 | HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_read, (nsec_now() - start_time)); |
| 834 | HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1); |
| 835 | |
| 836 | HA_ATOMIC_OR(&l->info.cur_readers, tid_bit); |
| 837 | |
| 838 | HA_ATOMIC_AND(&l->info.wait_readers, ~tid_bit); |
| 839 | } |
| 840 | |
| 841 | static inline int __ha_rwlock_tryrdlock(enum lock_label lbl,struct ha_rwlock *l) |
| 842 | { |
| 843 | int r; |
| 844 | |
| 845 | if (unlikely(l->info.cur_writer & tid_bit)) { |
| 846 | /* the thread is already owning the lock for write */ |
| 847 | abort(); |
| 848 | } |
| 849 | |
| 850 | if (unlikely(l->info.cur_readers & tid_bit)) { |
| 851 | /* the thread is already owning the lock for read */ |
| 852 | abort(); |
| 853 | } |
| 854 | |
| 855 | /* try read should never wait */ |
| 856 | r = __RWLOCK_TRYRDLOCK(&l->lock); |
| 857 | if (unlikely(r)) |
| 858 | return r; |
| 859 | HA_ATOMIC_ADD(&lock_stats[lbl].num_read_locked, 1); |
| 860 | |
| 861 | HA_ATOMIC_OR(&l->info.cur_readers, tid_bit); |
| 862 | |
| 863 | return 0; |
| 864 | } |
| 865 | |
| 866 | static inline void __ha_rwlock_rdunlock(enum lock_label lbl,struct ha_rwlock *l) |
| 867 | { |
| 868 | if (unlikely(!(l->info.cur_readers & tid_bit))) { |
| 869 | /* the thread is not owning the lock for read */ |
| 870 | abort(); |
| 871 | } |
| 872 | |
| 873 | HA_ATOMIC_AND(&l->info.cur_readers, ~tid_bit); |
| 874 | |
| 875 | __RWLOCK_RDUNLOCK(&l->lock); |
| 876 | |
| 877 | HA_ATOMIC_ADD(&lock_stats[lbl].num_read_unlocked, 1); |
| 878 | } |
| 879 | |
| 880 | static inline void __spin_init(struct ha_spinlock *l) |
| 881 | { |
| 882 | memset(l, 0, sizeof(struct ha_spinlock)); |
| 883 | __SPIN_INIT(&l->lock); |
| 884 | } |
| 885 | |
| 886 | static inline void __spin_destroy(struct ha_spinlock *l) |
| 887 | { |
| 888 | __SPIN_DESTROY(&l->lock); |
| 889 | memset(l, 0, sizeof(struct ha_spinlock)); |
| 890 | } |
| 891 | |
| 892 | static inline void __spin_lock(enum lock_label lbl, struct ha_spinlock *l, |
| 893 | const char *func, const char *file, int line) |
| 894 | { |
| 895 | uint64_t start_time; |
| 896 | |
| 897 | if (unlikely(l->info.owner & tid_bit)) { |
| 898 | /* the thread is already owning the lock */ |
| 899 | abort(); |
| 900 | } |
| 901 | |
| 902 | HA_ATOMIC_OR(&l->info.waiters, tid_bit); |
| 903 | |
| 904 | start_time = nsec_now(); |
| 905 | __SPIN_LOCK(&l->lock); |
| 906 | HA_ATOMIC_ADD(&lock_stats[lbl].nsec_wait_for_write, (nsec_now() - start_time)); |
| 907 | |
| 908 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1); |
| 909 | |
| 910 | |
| 911 | l->info.owner = tid_bit; |
| 912 | l->info.last_location.function = func; |
| 913 | l->info.last_location.file = file; |
| 914 | l->info.last_location.line = line; |
| 915 | |
| 916 | HA_ATOMIC_AND(&l->info.waiters, ~tid_bit); |
| 917 | } |
| 918 | |
| 919 | static inline int __spin_trylock(enum lock_label lbl, struct ha_spinlock *l, |
| 920 | const char *func, const char *file, int line) |
| 921 | { |
| 922 | int r; |
| 923 | |
| 924 | if (unlikely(l->info.owner & tid_bit)) { |
| 925 | /* the thread is already owning the lock */ |
| 926 | abort(); |
| 927 | } |
| 928 | |
| 929 | /* try read should never wait */ |
| 930 | r = __SPIN_TRYLOCK(&l->lock); |
| 931 | if (unlikely(r)) |
| 932 | return r; |
| 933 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_locked, 1); |
| 934 | |
| 935 | l->info.owner = tid_bit; |
| 936 | l->info.last_location.function = func; |
| 937 | l->info.last_location.file = file; |
| 938 | l->info.last_location.line = line; |
| 939 | |
| 940 | return 0; |
| 941 | } |
| 942 | |
| 943 | static inline void __spin_unlock(enum lock_label lbl, struct ha_spinlock *l, |
| 944 | const char *func, const char *file, int line) |
| 945 | { |
| 946 | if (unlikely(!(l->info.owner & tid_bit))) { |
| 947 | /* the thread is not owning the lock */ |
| 948 | abort(); |
| 949 | } |
| 950 | |
| 951 | l->info.owner = 0; |
| 952 | l->info.last_location.function = func; |
| 953 | l->info.last_location.file = file; |
| 954 | l->info.last_location.line = line; |
| 955 | |
Willy Tarreau | 7c2a2ad | 2017-11-02 16:26:02 +0100 | [diff] [blame] | 956 | __SPIN_UNLOCK(&l->lock); |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 957 | HA_ATOMIC_ADD(&lock_stats[lbl].num_write_unlocked, 1); |
| 958 | } |
| 959 | |
| 960 | #else /* DEBUG_THREAD */ |
| 961 | |
| 962 | #define HA_SPINLOCK_T unsigned long |
| 963 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 964 | #define HA_SPIN_INIT(l) ({ (*l) = 0; }) |
| 965 | #define HA_SPIN_DESTROY(l) ({ (*l) = 0; }) |
| 966 | #define HA_SPIN_LOCK(lbl, l) pl_take_s(l) |
| 967 | #define HA_SPIN_TRYLOCK(lbl, l) !pl_try_s(l) |
| 968 | #define HA_SPIN_UNLOCK(lbl, l) pl_drop_s(l) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 969 | |
| 970 | #define HA_RWLOCK_T unsigned long |
| 971 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 972 | #define HA_RWLOCK_INIT(l) ({ (*l) = 0; }) |
| 973 | #define HA_RWLOCK_DESTROY(l) ({ (*l) = 0; }) |
| 974 | #define HA_RWLOCK_WRLOCK(lbl,l) pl_take_w(l) |
| 975 | #define HA_RWLOCK_TRYWRLOCK(lbl,l) !pl_try_w(l) |
| 976 | #define HA_RWLOCK_WRUNLOCK(lbl,l) pl_drop_w(l) |
| 977 | #define HA_RWLOCK_RDLOCK(lbl,l) pl_take_r(l) |
| 978 | #define HA_RWLOCK_TRYRDLOCK(lbl,l) !pl_try_r(l) |
| 979 | #define HA_RWLOCK_RDUNLOCK(lbl,l) pl_drop_r(l) |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 980 | |
| 981 | #endif /* DEBUG_THREAD */ |
| 982 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 983 | #ifdef __x86_64__ |
Willy Tarreau | 2325d8a | 2018-10-10 18:29:23 +0200 | [diff] [blame] | 984 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 985 | static __inline int |
| 986 | __ha_cas_dw(void *target, void *compare, const void *set) |
| 987 | { |
| 988 | char ret; |
| 989 | |
| 990 | __asm __volatile("lock cmpxchg16b %0; setz %3" |
| 991 | : "+m" (*(void **)target), |
| 992 | "=a" (((void **)compare)[0]), |
| 993 | "=d" (((void **)compare)[1]), |
| 994 | "=q" (ret) |
| 995 | : "a" (((void **)compare)[0]), |
| 996 | "d" (((void **)compare)[1]), |
| 997 | "b" (((const void **)set)[0]), |
| 998 | "c" (((const void **)set)[1]) |
| 999 | : "memory", "cc"); |
| 1000 | return (ret); |
| 1001 | } |
| 1002 | |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 1003 | /* Use __ha_barrier_atomic* when you're trying to protect data that are |
| 1004 | * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE) |
| 1005 | */ |
| 1006 | static __inline void |
| 1007 | __ha_barrier_atomic_load(void) |
| 1008 | { |
| 1009 | __asm __volatile("" ::: "memory"); |
| 1010 | } |
| 1011 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1012 | static __inline void |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 1013 | __ha_barrier_atomic_store(void) |
| 1014 | { |
| 1015 | __asm __volatile("" ::: "memory"); |
| 1016 | } |
| 1017 | |
| 1018 | static __inline void |
| 1019 | __ha_barrier_atomic_full(void) |
| 1020 | { |
| 1021 | __asm __volatile("" ::: "memory"); |
| 1022 | } |
| 1023 | |
| 1024 | static __inline void |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1025 | __ha_barrier_load(void) |
| 1026 | { |
| 1027 | __asm __volatile("lfence" ::: "memory"); |
| 1028 | } |
| 1029 | |
| 1030 | static __inline void |
| 1031 | __ha_barrier_store(void) |
| 1032 | { |
| 1033 | __asm __volatile("sfence" ::: "memory"); |
| 1034 | } |
| 1035 | |
| 1036 | static __inline void |
| 1037 | __ha_barrier_full(void) |
| 1038 | { |
| 1039 | __asm __volatile("mfence" ::: "memory"); |
| 1040 | } |
| 1041 | |
| 1042 | #elif defined(__arm__) && (defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__)) |
Willy Tarreau | 2325d8a | 2018-10-10 18:29:23 +0200 | [diff] [blame] | 1043 | |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 1044 | /* Use __ha_barrier_atomic* when you're trying to protect data that are |
| 1045 | * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE) |
| 1046 | */ |
| 1047 | static __inline void |
| 1048 | __ha_barrier_atomic_load(void) |
| 1049 | { |
| 1050 | __asm __volatile("dmb" ::: "memory"); |
| 1051 | } |
| 1052 | |
| 1053 | static __inline void |
| 1054 | __ha_barrier_atomic_store(void) |
| 1055 | { |
| 1056 | __asm __volatile("dsb" ::: "memory"); |
| 1057 | } |
| 1058 | |
| 1059 | static __inline void |
| 1060 | __ha_barrier_atomic_full(void) |
| 1061 | { |
| 1062 | __asm __volatile("dmb" ::: "memory"); |
| 1063 | } |
| 1064 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1065 | static __inline void |
| 1066 | __ha_barrier_load(void) |
| 1067 | { |
| 1068 | __asm __volatile("dmb" ::: "memory"); |
| 1069 | } |
| 1070 | |
| 1071 | static __inline void |
| 1072 | __ha_barrier_store(void) |
| 1073 | { |
| 1074 | __asm __volatile("dsb" ::: "memory"); |
| 1075 | } |
| 1076 | |
| 1077 | static __inline void |
| 1078 | __ha_barrier_full(void) |
| 1079 | { |
| 1080 | __asm __volatile("dmb" ::: "memory"); |
| 1081 | } |
| 1082 | |
Willy Tarreau | 41ccb19 | 2018-02-14 14:16:28 +0100 | [diff] [blame] | 1083 | static __inline int __ha_cas_dw(void *target, void *compare, const void *set) |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1084 | { |
| 1085 | uint64_t previous; |
| 1086 | int tmp; |
| 1087 | |
| 1088 | __asm __volatile("1:" |
| 1089 | "ldrexd %0, [%4];" |
| 1090 | "cmp %Q0, %Q2;" |
| 1091 | "ittt eq;" |
| 1092 | "cmpeq %R0, %R2;" |
| 1093 | "strexdeq %1, %3, [%4];" |
| 1094 | "cmpeq %1, #1;" |
| 1095 | "beq 1b;" |
| 1096 | : "=&r" (previous), "=&r" (tmp) |
Willy Tarreau | 41ccb19 | 2018-02-14 14:16:28 +0100 | [diff] [blame] | 1097 | : "r" (*(uint64_t *)compare), "r" (*(uint64_t *)set), "r" (target) |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1098 | : "memory", "cc"); |
| 1099 | tmp = (previous == *(uint64_t *)compare); |
| 1100 | *(uint64_t *)compare = previous; |
| 1101 | return (tmp); |
| 1102 | } |
| 1103 | |
| 1104 | #elif defined (__aarch64__) |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1105 | |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 1106 | /* Use __ha_barrier_atomic* when you're trying to protect data that are |
| 1107 | * are modified using HA_ATOMIC* (except HA_ATOMIC_STORE) |
| 1108 | */ |
| 1109 | static __inline void |
| 1110 | __ha_barrier_atomic_load(void) |
| 1111 | { |
| 1112 | __asm __volatile("dmb ishld" ::: "memory"); |
| 1113 | } |
| 1114 | |
| 1115 | static __inline void |
| 1116 | __ha_barrier_atomic_store(void) |
| 1117 | { |
| 1118 | __asm __volatile("dmb ishst" ::: "memory"); |
| 1119 | } |
| 1120 | |
| 1121 | static __inline void |
| 1122 | __ha_barrier_atomic_full(void) |
| 1123 | { |
| 1124 | __asm __volatile("dmb ish" ::: "memory"); |
| 1125 | } |
| 1126 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1127 | static __inline void |
| 1128 | __ha_barrier_load(void) |
| 1129 | { |
| 1130 | __asm __volatile("dmb ishld" ::: "memory"); |
| 1131 | } |
| 1132 | |
| 1133 | static __inline void |
| 1134 | __ha_barrier_store(void) |
| 1135 | { |
| 1136 | __asm __volatile("dmb ishst" ::: "memory"); |
| 1137 | } |
| 1138 | |
| 1139 | static __inline void |
| 1140 | __ha_barrier_full(void) |
| 1141 | { |
| 1142 | __asm __volatile("dmb ish" ::: "memory"); |
| 1143 | } |
| 1144 | |
| 1145 | static __inline int __ha_cas_dw(void *target, void *compare, void *set) |
| 1146 | { |
| 1147 | void *value[2]; |
| 1148 | uint64_t tmp1, tmp2; |
| 1149 | |
| 1150 | __asm__ __volatile__("1:" |
| 1151 | "ldxp %0, %1, [%4];" |
| 1152 | "mov %2, %0;" |
| 1153 | "mov %3, %1;" |
| 1154 | "eor %0, %0, %5;" |
| 1155 | "eor %1, %1, %6;" |
| 1156 | "orr %1, %0, %1;" |
| 1157 | "mov %w0, #0;" |
| 1158 | "cbnz %1, 2f;" |
| 1159 | "stxp %w0, %7, %8, [%4];" |
| 1160 | "cbnz %w0, 1b;" |
| 1161 | "mov %w0, #1;" |
| 1162 | "2:" |
| 1163 | : "=&r" (tmp1), "=&r" (tmp2), "=&r" (value[0]), "=&r" (value[1]) |
| 1164 | : "r" (target), "r" (((void **)(compare))[0]), "r" (((void **)(compare))[1]), "r" (((void **)(set))[0]), "r" (((void **)(set))[1]) |
| 1165 | : "cc", "memory"); |
| 1166 | |
| 1167 | memcpy(compare, &value, sizeof(value)); |
| 1168 | return (tmp1); |
| 1169 | } |
| 1170 | |
| 1171 | #else |
Olivier Houchard | 9abcf6e | 2019-03-07 18:45:00 +0100 | [diff] [blame] | 1172 | #define __ha_barrier_atomic_load __sync_synchronize |
| 1173 | #define __ha_barrier_atomic_store __sync_synchronize |
| 1174 | #define __ha_barrier_atomic_full __sync_synchronize |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1175 | #define __ha_barrier_load __sync_synchronize |
| 1176 | #define __ha_barrier_store __sync_synchronize |
| 1177 | #define __ha_barrier_full __sync_synchronize |
| 1178 | #endif |
| 1179 | |
Willy Tarreau | a8ae77d | 2018-11-25 19:28:23 +0100 | [diff] [blame] | 1180 | void ha_spin_init(HA_SPINLOCK_T *l); |
| 1181 | void ha_rwlock_init(HA_RWLOCK_T *l); |
| 1182 | |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 1183 | #endif /* USE_THREAD */ |
| 1184 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 1185 | extern int thread_cpus_enabled_at_boot; |
| 1186 | |
Olivier Houchard | f61f0cb | 2017-12-21 17:13:05 +0100 | [diff] [blame] | 1187 | static inline void __ha_compiler_barrier(void) |
| 1188 | { |
| 1189 | __asm __volatile("" ::: "memory"); |
| 1190 | } |
| 1191 | |
Willy Tarreau | 0ccd322 | 2018-07-30 10:34:35 +0200 | [diff] [blame] | 1192 | int parse_nbthread(const char *arg, char **err); |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 1193 | int thread_get_default_count(); |
Willy Tarreau | 4037a3f | 2018-03-28 18:06:47 +0200 | [diff] [blame] | 1194 | |
Olivier Houchard | d0c3b88 | 2019-03-07 18:55:31 +0100 | [diff] [blame] | 1195 | #ifndef _HA_ATOMIC_CAS |
| 1196 | #define _HA_ATOMIC_CAS HA_ATOMIC_CAS |
| 1197 | #endif /* !_HA_ATOMIC_CAS */ |
| 1198 | |
Willy Tarreau | 6a38b32 | 2019-05-11 18:04:24 +0200 | [diff] [blame] | 1199 | #ifndef _HA_ATOMIC_DWCAS |
| 1200 | #define _HA_ATOMIC_DWCAS HA_ATOMIC_DWCAS |
| 1201 | #endif /* !_HA_ATOMIC_CAS */ |
| 1202 | |
Olivier Houchard | d0c3b88 | 2019-03-07 18:55:31 +0100 | [diff] [blame] | 1203 | #ifndef _HA_ATOMIC_ADD |
| 1204 | #define _HA_ATOMIC_ADD HA_ATOMIC_ADD |
| 1205 | #endif /* !_HA_ATOMIC_ADD */ |
| 1206 | |
| 1207 | #ifndef _HA_ATOMIC_XADD |
| 1208 | #define _HA_ATOMIC_XADD HA_ATOMIC_XADD |
| 1209 | #endif /* !_HA_ATOMIC_SUB */ |
| 1210 | |
| 1211 | #ifndef _HA_ATOMIC_SUB |
| 1212 | #define _HA_ATOMIC_SUB HA_ATOMIC_SUB |
| 1213 | #endif /* !_HA_ATOMIC_SUB */ |
| 1214 | |
| 1215 | #ifndef _HA_ATOMIC_AND |
| 1216 | #define _HA_ATOMIC_AND HA_ATOMIC_AND |
| 1217 | #endif /* !_HA_ATOMIC_AND */ |
| 1218 | |
| 1219 | #ifndef _HA_ATOMIC_OR |
| 1220 | #define _HA_ATOMIC_OR HA_ATOMIC_OR |
| 1221 | #endif /* !_HA_ATOMIC_OR */ |
| 1222 | |
| 1223 | #ifndef _HA_ATOMIC_XCHG |
| 1224 | #define _HA_ATOMIC_XCHG HA_ATOMIC_XCHG |
| 1225 | #endif /* !_HA_ATOMIC_XCHG */ |
| 1226 | |
| 1227 | #ifndef _HA_ATOMIC_STORE |
| 1228 | #define _HA_ATOMIC_STORE HA_ATOMIC_STORE |
| 1229 | #endif /* !_HA_ATOMIC_STORE */ |
Olivier Houchard | 9ce62b5 | 2019-04-30 13:38:02 +0200 | [diff] [blame] | 1230 | |
| 1231 | #ifndef _HA_ATOMIC_LOAD |
| 1232 | #define _HA_ATOMIC_LOAD HA_ATOMIC_LOAD |
| 1233 | #endif /* !_HA_ATOMIC_LOAD */ |
Christopher Faulet | 1a2b56e | 2017-10-12 16:09:09 +0200 | [diff] [blame] | 1234 | #endif /* _COMMON_HATHREADS_H */ |