aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Wrappers around mutex/cond/thread functions |
| 3 | * |
| 4 | * Copyright Red Hat, Inc. 2009 |
| 5 | * |
| 6 | * Author: |
| 7 | * Marcelo Tosatti <mtosatti@redhat.com> |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 10 | * See the COPYING file in the top-level directory. |
| 11 | * |
| 12 | */ |
Peter Maydell | aafd758 | 2016-01-29 17:49:55 +0000 | [diff] [blame] | 13 | #include "qemu/osdep.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 14 | #include "qemu/thread.h" |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 15 | #include "qemu/atomic.h" |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 16 | #include "qemu/notify.h" |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 17 | #include "qemu-thread-common.h" |
Robert Foley | ce9f0e5 | 2020-06-12 20:02:33 +0100 | [diff] [blame] | 18 | #include "qemu/tsan.h" |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 19 | |
Dr. David Alan Gilbert | 8f480de | 2014-01-30 10:20:31 +0000 | [diff] [blame] | 20 | static bool name_threads; |
| 21 | |
| 22 | void qemu_thread_naming(bool enable) |
| 23 | { |
| 24 | name_threads = enable; |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 25 | |
| 26 | #ifndef CONFIG_THREAD_SETNAME_BYTHREAD |
| 27 | /* This is a debugging option, not fatal */ |
| 28 | if (enable) { |
| 29 | fprintf(stderr, "qemu: thread naming not supported on this host\n"); |
| 30 | } |
| 31 | #endif |
Dr. David Alan Gilbert | 8f480de | 2014-01-30 10:20:31 +0000 | [diff] [blame] | 32 | } |
| 33 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 34 | static void error_exit(int err, const char *msg) |
| 35 | { |
| 36 | fprintf(stderr, "qemu: %s: %s\n", msg, strerror(err)); |
Jan Kiszka | 53380ac | 2011-09-21 09:28:31 +0200 | [diff] [blame] | 37 | abort(); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Yury Kotov | 3dcc9c6 | 2019-09-09 16:13:33 +0300 | [diff] [blame] | 40 | static void compute_abs_deadline(struct timespec *ts, int ms) |
| 41 | { |
| 42 | struct timeval tv; |
| 43 | gettimeofday(&tv, NULL); |
| 44 | ts->tv_nsec = tv.tv_usec * 1000 + (ms % 1000) * 1000000; |
| 45 | ts->tv_sec = tv.tv_sec + ms / 1000; |
| 46 | if (ts->tv_nsec >= 1000000000) { |
| 47 | ts->tv_sec++; |
| 48 | ts->tv_nsec -= 1000000000; |
| 49 | } |
| 50 | } |
| 51 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 52 | void qemu_mutex_init(QemuMutex *mutex) |
| 53 | { |
| 54 | int err; |
| 55 | |
Paolo Bonzini | 24fa904 | 2015-03-05 16:47:14 +0100 | [diff] [blame] | 56 | err = pthread_mutex_init(&mutex->lock, NULL); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 57 | if (err) |
| 58 | error_exit(err, __func__); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 59 | qemu_mutex_post_init(mutex); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Corentin Chary | 313b1d6 | 2010-07-07 20:58:01 +0200 | [diff] [blame] | 62 | void qemu_mutex_destroy(QemuMutex *mutex) |
| 63 | { |
| 64 | int err; |
| 65 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 66 | assert(mutex->initialized); |
| 67 | mutex->initialized = false; |
Corentin Chary | 313b1d6 | 2010-07-07 20:58:01 +0200 | [diff] [blame] | 68 | err = pthread_mutex_destroy(&mutex->lock); |
| 69 | if (err) |
| 70 | error_exit(err, __func__); |
| 71 | } |
| 72 | |
Alex Bennée | 6c27a0d | 2018-01-11 11:27:16 +0300 | [diff] [blame] | 73 | void qemu_mutex_lock_impl(QemuMutex *mutex, const char *file, const int line) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 74 | { |
| 75 | int err; |
| 76 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 77 | assert(mutex->initialized); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 78 | qemu_mutex_pre_lock(mutex, file, line); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 79 | err = pthread_mutex_lock(&mutex->lock); |
| 80 | if (err) |
| 81 | error_exit(err, __func__); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 82 | qemu_mutex_post_lock(mutex, file, line); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Alex Bennée | 6c27a0d | 2018-01-11 11:27:16 +0300 | [diff] [blame] | 85 | int qemu_mutex_trylock_impl(QemuMutex *mutex, const char *file, const int line) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 86 | { |
Jose Ricardo Ziviani | 31f5a72 | 2017-04-24 14:19:58 -0300 | [diff] [blame] | 87 | int err; |
| 88 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 89 | assert(mutex->initialized); |
Jose Ricardo Ziviani | 31f5a72 | 2017-04-24 14:19:58 -0300 | [diff] [blame] | 90 | err = pthread_mutex_trylock(&mutex->lock); |
| 91 | if (err == 0) { |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 92 | qemu_mutex_post_lock(mutex, file, line); |
Jose Ricardo Ziviani | 31f5a72 | 2017-04-24 14:19:58 -0300 | [diff] [blame] | 93 | return 0; |
| 94 | } |
| 95 | if (err != EBUSY) { |
| 96 | error_exit(err, __func__); |
| 97 | } |
| 98 | return -EBUSY; |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Alex Bennée | 6c27a0d | 2018-01-11 11:27:16 +0300 | [diff] [blame] | 101 | void qemu_mutex_unlock_impl(QemuMutex *mutex, const char *file, const int line) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 102 | { |
| 103 | int err; |
| 104 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 105 | assert(mutex->initialized); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 106 | qemu_mutex_pre_unlock(mutex, file, line); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 107 | err = pthread_mutex_unlock(&mutex->lock); |
| 108 | if (err) |
| 109 | error_exit(err, __func__); |
| 110 | } |
| 111 | |
Paolo Bonzini | feadec6 | 2016-10-27 12:49:07 +0200 | [diff] [blame] | 112 | void qemu_rec_mutex_init(QemuRecMutex *mutex) |
| 113 | { |
| 114 | int err; |
| 115 | pthread_mutexattr_t attr; |
| 116 | |
| 117 | pthread_mutexattr_init(&attr); |
| 118 | pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 119 | err = pthread_mutex_init(&mutex->m.lock, &attr); |
Paolo Bonzini | feadec6 | 2016-10-27 12:49:07 +0200 | [diff] [blame] | 120 | pthread_mutexattr_destroy(&attr); |
| 121 | if (err) { |
| 122 | error_exit(err, __func__); |
| 123 | } |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 124 | mutex->m.initialized = true; |
Paolo Bonzini | feadec6 | 2016-10-27 12:49:07 +0200 | [diff] [blame] | 125 | } |
| 126 | |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 127 | void qemu_rec_mutex_destroy(QemuRecMutex *mutex) |
| 128 | { |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 129 | qemu_mutex_destroy(&mutex->m); |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | void qemu_rec_mutex_lock_impl(QemuRecMutex *mutex, const char *file, int line) |
| 133 | { |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 134 | qemu_mutex_lock_impl(&mutex->m, file, line); |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | int qemu_rec_mutex_trylock_impl(QemuRecMutex *mutex, const char *file, int line) |
| 138 | { |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 139 | return qemu_mutex_trylock_impl(&mutex->m, file, line); |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Richard Henderson | 9c75bae | 2021-06-14 16:31:39 -0700 | [diff] [blame] | 142 | void qemu_rec_mutex_unlock_impl(QemuRecMutex *mutex, const char *file, int line) |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 143 | { |
Richard Henderson | 6c98635 | 2021-06-14 16:31:40 -0700 | [diff] [blame^] | 144 | qemu_mutex_unlock_impl(&mutex->m, file, line); |
Richard Henderson | 4b193bb | 2021-06-14 16:31:38 -0700 | [diff] [blame] | 145 | } |
| 146 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 147 | void qemu_cond_init(QemuCond *cond) |
| 148 | { |
| 149 | int err; |
| 150 | |
| 151 | err = pthread_cond_init(&cond->cond, NULL); |
| 152 | if (err) |
| 153 | error_exit(err, __func__); |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 154 | cond->initialized = true; |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Corentin Chary | 313b1d6 | 2010-07-07 20:58:01 +0200 | [diff] [blame] | 157 | void qemu_cond_destroy(QemuCond *cond) |
| 158 | { |
| 159 | int err; |
| 160 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 161 | assert(cond->initialized); |
| 162 | cond->initialized = false; |
Corentin Chary | 313b1d6 | 2010-07-07 20:58:01 +0200 | [diff] [blame] | 163 | err = pthread_cond_destroy(&cond->cond); |
| 164 | if (err) |
| 165 | error_exit(err, __func__); |
| 166 | } |
| 167 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 168 | void qemu_cond_signal(QemuCond *cond) |
| 169 | { |
| 170 | int err; |
| 171 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 172 | assert(cond->initialized); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 173 | err = pthread_cond_signal(&cond->cond); |
| 174 | if (err) |
| 175 | error_exit(err, __func__); |
| 176 | } |
| 177 | |
| 178 | void qemu_cond_broadcast(QemuCond *cond) |
| 179 | { |
| 180 | int err; |
| 181 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 182 | assert(cond->initialized); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 183 | err = pthread_cond_broadcast(&cond->cond); |
| 184 | if (err) |
| 185 | error_exit(err, __func__); |
| 186 | } |
| 187 | |
Alex Bennée | 6c27a0d | 2018-01-11 11:27:16 +0300 | [diff] [blame] | 188 | void qemu_cond_wait_impl(QemuCond *cond, QemuMutex *mutex, const char *file, const int line) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 189 | { |
| 190 | int err; |
| 191 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 192 | assert(cond->initialized); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 193 | qemu_mutex_pre_unlock(mutex, file, line); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 194 | err = pthread_cond_wait(&cond->cond, &mutex->lock); |
Peter Xu | f1aff7a | 2018-04-25 10:54:57 +0800 | [diff] [blame] | 195 | qemu_mutex_post_lock(mutex, file, line); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 196 | if (err) |
| 197 | error_exit(err, __func__); |
| 198 | } |
| 199 | |
Yury Kotov | 3dcc9c6 | 2019-09-09 16:13:33 +0300 | [diff] [blame] | 200 | bool qemu_cond_timedwait_impl(QemuCond *cond, QemuMutex *mutex, int ms, |
| 201 | const char *file, const int line) |
| 202 | { |
| 203 | int err; |
| 204 | struct timespec ts; |
| 205 | |
| 206 | assert(cond->initialized); |
| 207 | trace_qemu_mutex_unlock(mutex, file, line); |
| 208 | compute_abs_deadline(&ts, ms); |
| 209 | err = pthread_cond_timedwait(&cond->cond, &mutex->lock, &ts); |
| 210 | trace_qemu_mutex_locked(mutex, file, line); |
| 211 | if (err && err != ETIMEDOUT) { |
| 212 | error_exit(err, __func__); |
| 213 | } |
| 214 | return err != ETIMEDOUT; |
| 215 | } |
| 216 | |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 217 | void qemu_sem_init(QemuSemaphore *sem, int init) |
| 218 | { |
| 219 | int rc; |
| 220 | |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 221 | #ifndef CONFIG_SEM_TIMEDWAIT |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 222 | rc = pthread_mutex_init(&sem->lock, NULL); |
| 223 | if (rc != 0) { |
| 224 | error_exit(rc, __func__); |
| 225 | } |
| 226 | rc = pthread_cond_init(&sem->cond, NULL); |
| 227 | if (rc != 0) { |
| 228 | error_exit(rc, __func__); |
| 229 | } |
| 230 | if (init < 0) { |
| 231 | error_exit(EINVAL, __func__); |
| 232 | } |
| 233 | sem->count = init; |
| 234 | #else |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 235 | rc = sem_init(&sem->sem, 0, init); |
| 236 | if (rc < 0) { |
| 237 | error_exit(errno, __func__); |
| 238 | } |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 239 | #endif |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 240 | sem->initialized = true; |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | void qemu_sem_destroy(QemuSemaphore *sem) |
| 244 | { |
| 245 | int rc; |
| 246 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 247 | assert(sem->initialized); |
| 248 | sem->initialized = false; |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 249 | #ifndef CONFIG_SEM_TIMEDWAIT |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 250 | rc = pthread_cond_destroy(&sem->cond); |
| 251 | if (rc < 0) { |
| 252 | error_exit(rc, __func__); |
| 253 | } |
| 254 | rc = pthread_mutex_destroy(&sem->lock); |
| 255 | if (rc < 0) { |
| 256 | error_exit(rc, __func__); |
| 257 | } |
| 258 | #else |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 259 | rc = sem_destroy(&sem->sem); |
| 260 | if (rc < 0) { |
| 261 | error_exit(errno, __func__); |
| 262 | } |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 263 | #endif |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | void qemu_sem_post(QemuSemaphore *sem) |
| 267 | { |
| 268 | int rc; |
| 269 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 270 | assert(sem->initialized); |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 271 | #ifndef CONFIG_SEM_TIMEDWAIT |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 272 | pthread_mutex_lock(&sem->lock); |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 273 | if (sem->count == UINT_MAX) { |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 274 | rc = EINVAL; |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 275 | } else { |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 276 | sem->count++; |
| 277 | rc = pthread_cond_signal(&sem->cond); |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 278 | } |
| 279 | pthread_mutex_unlock(&sem->lock); |
| 280 | if (rc != 0) { |
| 281 | error_exit(rc, __func__); |
| 282 | } |
| 283 | #else |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 284 | rc = sem_post(&sem->sem); |
| 285 | if (rc < 0) { |
| 286 | error_exit(errno, __func__); |
| 287 | } |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 288 | #endif |
| 289 | } |
| 290 | |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 291 | int qemu_sem_timedwait(QemuSemaphore *sem, int ms) |
| 292 | { |
| 293 | int rc; |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 294 | struct timespec ts; |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 295 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 296 | assert(sem->initialized); |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 297 | #ifndef CONFIG_SEM_TIMEDWAIT |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 298 | rc = 0; |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 299 | compute_abs_deadline(&ts, ms); |
| 300 | pthread_mutex_lock(&sem->lock); |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 301 | while (sem->count == 0) { |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 302 | rc = pthread_cond_timedwait(&sem->cond, &sem->lock, &ts); |
| 303 | if (rc == ETIMEDOUT) { |
| 304 | break; |
| 305 | } |
| 306 | if (rc != 0) { |
| 307 | error_exit(rc, __func__); |
| 308 | } |
| 309 | } |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 310 | if (rc != ETIMEDOUT) { |
| 311 | --sem->count; |
| 312 | } |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 313 | pthread_mutex_unlock(&sem->lock); |
| 314 | return (rc == ETIMEDOUT ? -1 : 0); |
| 315 | #else |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 316 | if (ms <= 0) { |
| 317 | /* This is cheaper than sem_timedwait. */ |
| 318 | do { |
| 319 | rc = sem_trywait(&sem->sem); |
| 320 | } while (rc == -1 && errno == EINTR); |
| 321 | if (rc == -1 && errno == EAGAIN) { |
| 322 | return -1; |
| 323 | } |
| 324 | } else { |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 325 | compute_abs_deadline(&ts, ms); |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 326 | do { |
| 327 | rc = sem_timedwait(&sem->sem, &ts); |
| 328 | } while (rc == -1 && errno == EINTR); |
| 329 | if (rc == -1 && errno == ETIMEDOUT) { |
| 330 | return -1; |
| 331 | } |
| 332 | } |
| 333 | if (rc < 0) { |
| 334 | error_exit(errno, __func__); |
| 335 | } |
| 336 | return 0; |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 337 | #endif |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | void qemu_sem_wait(QemuSemaphore *sem) |
| 341 | { |
| 342 | int rc; |
| 343 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 344 | assert(sem->initialized); |
Peter Maydell | 401bc05 | 2017-09-05 13:19:32 +0100 | [diff] [blame] | 345 | #ifndef CONFIG_SEM_TIMEDWAIT |
Izumi Tsutsui | 79761c6 | 2013-07-03 17:58:14 +0900 | [diff] [blame] | 346 | pthread_mutex_lock(&sem->lock); |
| 347 | while (sem->count == 0) { |
| 348 | rc = pthread_cond_wait(&sem->cond, &sem->lock); |
| 349 | if (rc != 0) { |
| 350 | error_exit(rc, __func__); |
| 351 | } |
| 352 | } |
| 353 | --sem->count; |
| 354 | pthread_mutex_unlock(&sem->lock); |
| 355 | #else |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 356 | do { |
| 357 | rc = sem_wait(&sem->sem); |
| 358 | } while (rc == -1 && errno == EINTR); |
| 359 | if (rc < 0) { |
| 360 | error_exit(errno, __func__); |
| 361 | } |
Paolo Bonzini | c166cb7 | 2012-11-02 15:43:21 +0100 | [diff] [blame] | 362 | #endif |
Paolo Bonzini | 38b14db | 2011-08-08 14:36:41 +0200 | [diff] [blame] | 363 | } |
| 364 | |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 365 | #ifdef __linux__ |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 366 | #include "qemu/futex.h" |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 367 | #else |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 368 | static inline void qemu_futex_wake(QemuEvent *ev, int n) |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 369 | { |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 370 | assert(ev->initialized); |
Paolo Bonzini | 158ef8c | 2015-02-02 16:36:51 +0100 | [diff] [blame] | 371 | pthread_mutex_lock(&ev->lock); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 372 | if (n == 1) { |
| 373 | pthread_cond_signal(&ev->cond); |
| 374 | } else { |
| 375 | pthread_cond_broadcast(&ev->cond); |
| 376 | } |
Paolo Bonzini | 158ef8c | 2015-02-02 16:36:51 +0100 | [diff] [blame] | 377 | pthread_mutex_unlock(&ev->lock); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 378 | } |
| 379 | |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 380 | static inline void qemu_futex_wait(QemuEvent *ev, unsigned val) |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 381 | { |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 382 | assert(ev->initialized); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 383 | pthread_mutex_lock(&ev->lock); |
| 384 | if (ev->value == val) { |
| 385 | pthread_cond_wait(&ev->cond, &ev->lock); |
| 386 | } |
| 387 | pthread_mutex_unlock(&ev->lock); |
| 388 | } |
| 389 | #endif |
| 390 | |
| 391 | /* Valid transitions: |
| 392 | * - free->set, when setting the event |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 393 | * - busy->set, when setting the event, followed by qemu_futex_wake |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 394 | * - set->free, when resetting the event |
| 395 | * - free->busy, when waiting |
| 396 | * |
| 397 | * set->busy does not happen (it can be observed from the outside but |
| 398 | * it really is set->free->busy). |
| 399 | * |
| 400 | * busy->free provably cannot happen; to enforce it, the set->free transition |
| 401 | * is done with an OR, which becomes a no-op if the event has concurrently |
| 402 | * transitioned to free or busy. |
| 403 | */ |
| 404 | |
| 405 | #define EV_SET 0 |
| 406 | #define EV_FREE 1 |
| 407 | #define EV_BUSY -1 |
| 408 | |
| 409 | void qemu_event_init(QemuEvent *ev, bool init) |
| 410 | { |
| 411 | #ifndef __linux__ |
| 412 | pthread_mutex_init(&ev->lock, NULL); |
| 413 | pthread_cond_init(&ev->cond, NULL); |
| 414 | #endif |
| 415 | |
| 416 | ev->value = (init ? EV_SET : EV_FREE); |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 417 | ev->initialized = true; |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | void qemu_event_destroy(QemuEvent *ev) |
| 421 | { |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 422 | assert(ev->initialized); |
| 423 | ev->initialized = false; |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 424 | #ifndef __linux__ |
| 425 | pthread_mutex_destroy(&ev->lock); |
| 426 | pthread_cond_destroy(&ev->cond); |
| 427 | #endif |
| 428 | } |
| 429 | |
| 430 | void qemu_event_set(QemuEvent *ev) |
| 431 | { |
Paolo Bonzini | 374293c | 2016-09-19 11:10:57 +0200 | [diff] [blame] | 432 | /* qemu_event_set has release semantics, but because it *loads* |
| 433 | * ev->value we need a full memory barrier here. |
| 434 | */ |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 435 | assert(ev->initialized); |
Paolo Bonzini | 374293c | 2016-09-19 11:10:57 +0200 | [diff] [blame] | 436 | smp_mb(); |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 437 | if (qatomic_read(&ev->value) != EV_SET) { |
| 438 | if (qatomic_xchg(&ev->value, EV_SET) == EV_BUSY) { |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 439 | /* There were waiters, wake them up. */ |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 440 | qemu_futex_wake(ev, INT_MAX); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 441 | } |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | void qemu_event_reset(QemuEvent *ev) |
| 446 | { |
Paolo Bonzini | 374293c | 2016-09-19 11:10:57 +0200 | [diff] [blame] | 447 | unsigned value; |
| 448 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 449 | assert(ev->initialized); |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 450 | value = qatomic_read(&ev->value); |
Paolo Bonzini | 374293c | 2016-09-19 11:10:57 +0200 | [diff] [blame] | 451 | smp_mb_acquire(); |
| 452 | if (value == EV_SET) { |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 453 | /* |
| 454 | * If there was a concurrent reset (or even reset+wait), |
| 455 | * do nothing. Otherwise change EV_SET->EV_FREE. |
| 456 | */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 457 | qatomic_or(&ev->value, EV_FREE); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
| 461 | void qemu_event_wait(QemuEvent *ev) |
| 462 | { |
| 463 | unsigned value; |
| 464 | |
Fam Zheng | c096358 | 2017-07-04 20:23:25 +0800 | [diff] [blame] | 465 | assert(ev->initialized); |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 466 | value = qatomic_read(&ev->value); |
Paolo Bonzini | 374293c | 2016-09-19 11:10:57 +0200 | [diff] [blame] | 467 | smp_mb_acquire(); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 468 | if (value != EV_SET) { |
| 469 | if (value == EV_FREE) { |
| 470 | /* |
| 471 | * Leave the event reset and tell qemu_event_set that there |
| 472 | * are waiters. No need to retry, because there cannot be |
Veres Lajos | 67cc32e | 2015-09-08 22:45:14 +0100 | [diff] [blame] | 473 | * a concurrent busy->free transition. After the CAS, the |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 474 | * event will be either set or busy. |
| 475 | */ |
Stefan Hajnoczi | d73415a | 2020-09-23 11:56:46 +0100 | [diff] [blame] | 476 | if (qatomic_cmpxchg(&ev->value, EV_FREE, EV_BUSY) == EV_SET) { |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 477 | return; |
| 478 | } |
| 479 | } |
Paolo Bonzini | fbcc3e5 | 2017-01-12 19:07:54 +0100 | [diff] [blame] | 480 | qemu_futex_wait(ev, EV_BUSY); |
Paolo Bonzini | c7c4d06 | 2013-09-25 14:20:59 +0800 | [diff] [blame] | 481 | } |
| 482 | } |
| 483 | |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 484 | static __thread NotifierList thread_exit; |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 485 | |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 486 | /* |
| 487 | * Note that in this implementation you can register a thread-exit |
| 488 | * notifier for the main thread, but it will never be called. |
| 489 | * This is OK because main thread exit can only happen when the |
| 490 | * entire process is exiting, and the API allows notifiers to not |
| 491 | * be called on process exit. |
| 492 | */ |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 493 | void qemu_thread_atexit_add(Notifier *notifier) |
| 494 | { |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 495 | notifier_list_add(&thread_exit, notifier); |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | void qemu_thread_atexit_remove(Notifier *notifier) |
| 499 | { |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 500 | notifier_remove(notifier); |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 501 | } |
| 502 | |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 503 | static void qemu_thread_atexit_notify(void *arg) |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 504 | { |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 505 | /* |
| 506 | * Called when non-main thread exits (via qemu_thread_exit() |
| 507 | * or by returning from its start routine.) |
| 508 | */ |
| 509 | notifier_list_notify(&thread_exit, NULL); |
Paolo Bonzini | ef57137 | 2014-12-02 12:05:45 +0100 | [diff] [blame] | 510 | } |
| 511 | |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 512 | typedef struct { |
| 513 | void *(*start_routine)(void *); |
| 514 | void *arg; |
| 515 | char *name; |
| 516 | } QemuThreadArgs; |
| 517 | |
| 518 | static void *qemu_thread_start(void *args) |
| 519 | { |
| 520 | QemuThreadArgs *qemu_thread_args = args; |
| 521 | void *(*start_routine)(void *) = qemu_thread_args->start_routine; |
| 522 | void *arg = qemu_thread_args->arg; |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 523 | void *r; |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 524 | |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 525 | #ifdef CONFIG_THREAD_SETNAME_BYTHREAD |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 526 | /* Attempt to set the threads name; note that this is for debug, so |
| 527 | * we're not going to fail if we can't set it. |
| 528 | */ |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 529 | if (name_threads && qemu_thread_args->name) { |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 530 | # if defined(CONFIG_PTHREAD_SETNAME_NP_W_TID) |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 531 | pthread_setname_np(pthread_self(), qemu_thread_args->name); |
Roman Bolshakov | 479a574 | 2018-12-17 23:26:01 +0300 | [diff] [blame] | 532 | # elif defined(CONFIG_PTHREAD_SETNAME_NP_WO_TID) |
| 533 | pthread_setname_np(qemu_thread_args->name); |
| 534 | # endif |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 535 | } |
| 536 | #endif |
Robert Foley | ce9f0e5 | 2020-06-12 20:02:33 +0100 | [diff] [blame] | 537 | QEMU_TSAN_ANNOTATE_THREAD_NAME(qemu_thread_args->name); |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 538 | g_free(qemu_thread_args->name); |
| 539 | g_free(qemu_thread_args); |
Peter Maydell | a458774 | 2018-11-05 13:55:38 +0000 | [diff] [blame] | 540 | pthread_cleanup_push(qemu_thread_atexit_notify, NULL); |
| 541 | r = start_routine(arg); |
| 542 | pthread_cleanup_pop(1); |
| 543 | return r; |
Dr. David Alan Gilbert | 5c31207 | 2014-03-12 11:48:18 +0000 | [diff] [blame] | 544 | } |
| 545 | |
Dr. David Alan Gilbert | 4900116 | 2014-01-30 10:20:32 +0000 | [diff] [blame] | 546 | void qemu_thread_create(QemuThread *thread, const char *name, |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 547 | void *(*start_routine)(void*), |
Jan Kiszka | cf21871 | 2011-12-12 17:21:31 +0100 | [diff] [blame] | 548 | void *arg, int mode) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 549 | { |
Jan Kiszka | cf21871 | 2011-12-12 17:21:31 +0100 | [diff] [blame] | 550 | sigset_t set, oldset; |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 551 | int err; |
Jan Kiszka | 8763046 | 2011-12-12 17:21:32 +0100 | [diff] [blame] | 552 | pthread_attr_t attr; |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 553 | QemuThreadArgs *qemu_thread_args; |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 554 | |
Jan Kiszka | 8763046 | 2011-12-12 17:21:32 +0100 | [diff] [blame] | 555 | err = pthread_attr_init(&attr); |
| 556 | if (err) { |
| 557 | error_exit(err, __func__); |
| 558 | } |
Paolo Bonzini | 55541c8 | 2010-06-03 15:20:32 +0200 | [diff] [blame] | 559 | |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 560 | if (mode == QEMU_THREAD_DETACHED) { |
| 561 | pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); |
| 562 | } |
| 563 | |
Jan Kiszka | cf21871 | 2011-12-12 17:21:31 +0100 | [diff] [blame] | 564 | /* Leave signal handling to the iothread. */ |
Paolo Bonzini | 55541c8 | 2010-06-03 15:20:32 +0200 | [diff] [blame] | 565 | sigfillset(&set); |
Roman Bolshakov | 21a43af | 2018-12-17 23:26:02 +0300 | [diff] [blame] | 566 | /* Blocking the signals can result in undefined behaviour. */ |
| 567 | sigdelset(&set, SIGSEGV); |
| 568 | sigdelset(&set, SIGFPE); |
| 569 | sigdelset(&set, SIGILL); |
| 570 | /* TODO avoid SIGBUS loss on macOS */ |
Paolo Bonzini | 55541c8 | 2010-06-03 15:20:32 +0200 | [diff] [blame] | 571 | pthread_sigmask(SIG_SETMASK, &set, &oldset); |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 572 | |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 573 | qemu_thread_args = g_new0(QemuThreadArgs, 1); |
| 574 | qemu_thread_args->name = g_strdup(name); |
| 575 | qemu_thread_args->start_routine = start_routine; |
| 576 | qemu_thread_args->arg = arg; |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 577 | |
Peter Xu | d820fa5 | 2018-04-12 13:34:44 +0800 | [diff] [blame] | 578 | err = pthread_create(&thread->thread, &attr, |
| 579 | qemu_thread_start, qemu_thread_args); |
linzhecheng | 68a9398 | 2017-11-28 12:46:56 +0800 | [diff] [blame] | 580 | |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 581 | if (err) |
| 582 | error_exit(err, __func__); |
Paolo Bonzini | 55541c8 | 2010-06-03 15:20:32 +0200 | [diff] [blame] | 583 | |
| 584 | pthread_sigmask(SIG_SETMASK, &oldset, NULL); |
Jan Kiszka | 8763046 | 2011-12-12 17:21:32 +0100 | [diff] [blame] | 585 | |
| 586 | pthread_attr_destroy(&attr); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 587 | } |
| 588 | |
Jan Kiszka | b7680cb | 2011-03-12 17:43:51 +0100 | [diff] [blame] | 589 | void qemu_thread_get_self(QemuThread *thread) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 590 | { |
| 591 | thread->thread = pthread_self(); |
| 592 | } |
| 593 | |
Andreas Färber | 2d797b6 | 2012-05-02 17:21:31 +0200 | [diff] [blame] | 594 | bool qemu_thread_is_self(QemuThread *thread) |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 595 | { |
Jan Kiszka | b7680cb | 2011-03-12 17:43:51 +0100 | [diff] [blame] | 596 | return pthread_equal(pthread_self(), thread->thread); |
aliguori | e5d355d | 2009-04-24 18:03:15 +0000 | [diff] [blame] | 597 | } |
| 598 | |
Corentin Chary | 313b1d6 | 2010-07-07 20:58:01 +0200 | [diff] [blame] | 599 | void qemu_thread_exit(void *retval) |
| 600 | { |
| 601 | pthread_exit(retval); |
| 602 | } |
Jan Kiszka | 8763046 | 2011-12-12 17:21:32 +0100 | [diff] [blame] | 603 | |
| 604 | void *qemu_thread_join(QemuThread *thread) |
| 605 | { |
| 606 | int err; |
| 607 | void *ret; |
| 608 | |
| 609 | err = pthread_join(thread->thread, &ret); |
| 610 | if (err) { |
| 611 | error_exit(err, __func__); |
| 612 | } |
| 613 | return ret; |
| 614 | } |