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