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