]> git.ipfire.org Git - thirdparty/qemu.git/blame - util/qemu-thread-posix.c
timer: protect timers_state's clock with seqlock
[thirdparty/qemu.git] / util / qemu-thread-posix.c
CommitLineData
e5d355d1
AL
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 */
13#include <stdlib.h>
14#include <stdio.h>
15#include <errno.h>
16#include <time.h>
17#include <signal.h>
18#include <stdint.h>
19#include <string.h>
38b14db3
PB
20#include <limits.h>
21#include <unistd.h>
22#include <sys/time.h>
1de7afc9 23#include "qemu/thread.h"
e5d355d1
AL
24
25static void error_exit(int err, const char *msg)
26{
27 fprintf(stderr, "qemu: %s: %s\n", msg, strerror(err));
53380ac3 28 abort();
e5d355d1
AL
29}
30
31void qemu_mutex_init(QemuMutex *mutex)
32{
33 int err;
89b48b56 34 pthread_mutexattr_t mutexattr;
e5d355d1 35
89b48b56
PB
36 pthread_mutexattr_init(&mutexattr);
37 pthread_mutexattr_settype(&mutexattr, PTHREAD_MUTEX_ERRORCHECK);
38 err = pthread_mutex_init(&mutex->lock, &mutexattr);
39 pthread_mutexattr_destroy(&mutexattr);
e5d355d1
AL
40 if (err)
41 error_exit(err, __func__);
42}
43
313b1d69
CC
44void qemu_mutex_destroy(QemuMutex *mutex)
45{
46 int err;
47
48 err = pthread_mutex_destroy(&mutex->lock);
49 if (err)
50 error_exit(err, __func__);
51}
52
e5d355d1
AL
53void qemu_mutex_lock(QemuMutex *mutex)
54{
55 int err;
56
57 err = pthread_mutex_lock(&mutex->lock);
58 if (err)
59 error_exit(err, __func__);
60}
61
62int qemu_mutex_trylock(QemuMutex *mutex)
63{
64 return pthread_mutex_trylock(&mutex->lock);
65}
66
e5d355d1
AL
67void qemu_mutex_unlock(QemuMutex *mutex)
68{
69 int err;
70
71 err = pthread_mutex_unlock(&mutex->lock);
72 if (err)
73 error_exit(err, __func__);
74}
75
76void qemu_cond_init(QemuCond *cond)
77{
78 int err;
79
80 err = pthread_cond_init(&cond->cond, NULL);
81 if (err)
82 error_exit(err, __func__);
83}
84
313b1d69
CC
85void qemu_cond_destroy(QemuCond *cond)
86{
87 int err;
88
89 err = pthread_cond_destroy(&cond->cond);
90 if (err)
91 error_exit(err, __func__);
92}
93
e5d355d1
AL
94void qemu_cond_signal(QemuCond *cond)
95{
96 int err;
97
98 err = pthread_cond_signal(&cond->cond);
99 if (err)
100 error_exit(err, __func__);
101}
102
103void qemu_cond_broadcast(QemuCond *cond)
104{
105 int err;
106
107 err = pthread_cond_broadcast(&cond->cond);
108 if (err)
109 error_exit(err, __func__);
110}
111
112void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex)
113{
114 int err;
115
116 err = pthread_cond_wait(&cond->cond, &mutex->lock);
117 if (err)
118 error_exit(err, __func__);
119}
120
38b14db3
PB
121void qemu_sem_init(QemuSemaphore *sem, int init)
122{
123 int rc;
124
927fa909 125#if defined(__APPLE__) || defined(__NetBSD__)
c166cb72
PB
126 rc = pthread_mutex_init(&sem->lock, NULL);
127 if (rc != 0) {
128 error_exit(rc, __func__);
129 }
130 rc = pthread_cond_init(&sem->cond, NULL);
131 if (rc != 0) {
132 error_exit(rc, __func__);
133 }
134 if (init < 0) {
135 error_exit(EINVAL, __func__);
136 }
137 sem->count = init;
138#else
38b14db3
PB
139 rc = sem_init(&sem->sem, 0, init);
140 if (rc < 0) {
141 error_exit(errno, __func__);
142 }
c166cb72 143#endif
38b14db3
PB
144}
145
146void qemu_sem_destroy(QemuSemaphore *sem)
147{
148 int rc;
149
927fa909 150#if defined(__APPLE__) || defined(__NetBSD__)
c166cb72
PB
151 rc = pthread_cond_destroy(&sem->cond);
152 if (rc < 0) {
153 error_exit(rc, __func__);
154 }
155 rc = pthread_mutex_destroy(&sem->lock);
156 if (rc < 0) {
157 error_exit(rc, __func__);
158 }
159#else
38b14db3
PB
160 rc = sem_destroy(&sem->sem);
161 if (rc < 0) {
162 error_exit(errno, __func__);
163 }
c166cb72 164#endif
38b14db3
PB
165}
166
167void qemu_sem_post(QemuSemaphore *sem)
168{
169 int rc;
170
927fa909 171#if defined(__APPLE__) || defined(__NetBSD__)
c166cb72 172 pthread_mutex_lock(&sem->lock);
79761c66 173 if (sem->count == UINT_MAX) {
c166cb72 174 rc = EINVAL;
c166cb72 175 } else {
79761c66
IT
176 sem->count++;
177 rc = pthread_cond_signal(&sem->cond);
c166cb72
PB
178 }
179 pthread_mutex_unlock(&sem->lock);
180 if (rc != 0) {
181 error_exit(rc, __func__);
182 }
183#else
38b14db3
PB
184 rc = sem_post(&sem->sem);
185 if (rc < 0) {
186 error_exit(errno, __func__);
187 }
c166cb72
PB
188#endif
189}
190
191static void compute_abs_deadline(struct timespec *ts, int ms)
192{
193 struct timeval tv;
194 gettimeofday(&tv, NULL);
195 ts->tv_nsec = tv.tv_usec * 1000 + (ms % 1000) * 1000000;
196 ts->tv_sec = tv.tv_sec + ms / 1000;
197 if (ts->tv_nsec >= 1000000000) {
198 ts->tv_sec++;
199 ts->tv_nsec -= 1000000000;
200 }
38b14db3
PB
201}
202
203int qemu_sem_timedwait(QemuSemaphore *sem, int ms)
204{
205 int rc;
c166cb72
PB
206 struct timespec ts;
207
927fa909 208#if defined(__APPLE__) || defined(__NetBSD__)
79761c66 209 rc = 0;
c166cb72
PB
210 compute_abs_deadline(&ts, ms);
211 pthread_mutex_lock(&sem->lock);
79761c66 212 while (sem->count == 0) {
c166cb72
PB
213 rc = pthread_cond_timedwait(&sem->cond, &sem->lock, &ts);
214 if (rc == ETIMEDOUT) {
215 break;
216 }
217 if (rc != 0) {
218 error_exit(rc, __func__);
219 }
220 }
79761c66
IT
221 if (rc != ETIMEDOUT) {
222 --sem->count;
223 }
c166cb72
PB
224 pthread_mutex_unlock(&sem->lock);
225 return (rc == ETIMEDOUT ? -1 : 0);
226#else
38b14db3
PB
227 if (ms <= 0) {
228 /* This is cheaper than sem_timedwait. */
229 do {
230 rc = sem_trywait(&sem->sem);
231 } while (rc == -1 && errno == EINTR);
232 if (rc == -1 && errno == EAGAIN) {
233 return -1;
234 }
235 } else {
c166cb72 236 compute_abs_deadline(&ts, ms);
38b14db3
PB
237 do {
238 rc = sem_timedwait(&sem->sem, &ts);
239 } while (rc == -1 && errno == EINTR);
240 if (rc == -1 && errno == ETIMEDOUT) {
241 return -1;
242 }
243 }
244 if (rc < 0) {
245 error_exit(errno, __func__);
246 }
247 return 0;
c166cb72 248#endif
38b14db3
PB
249}
250
251void qemu_sem_wait(QemuSemaphore *sem)
252{
79761c66
IT
253 int rc;
254
927fa909 255#if defined(__APPLE__) || defined(__NetBSD__)
c166cb72 256 pthread_mutex_lock(&sem->lock);
79761c66
IT
257 while (sem->count == 0) {
258 rc = pthread_cond_wait(&sem->cond, &sem->lock);
259 if (rc != 0) {
260 error_exit(rc, __func__);
261 }
c166cb72 262 }
79761c66 263 --sem->count;
c166cb72
PB
264 pthread_mutex_unlock(&sem->lock);
265#else
38b14db3
PB
266 do {
267 rc = sem_wait(&sem->sem);
268 } while (rc == -1 && errno == EINTR);
269 if (rc < 0) {
270 error_exit(errno, __func__);
271 }
c166cb72 272#endif
38b14db3
PB
273}
274
e5d355d1
AL
275void qemu_thread_create(QemuThread *thread,
276 void *(*start_routine)(void*),
cf218714 277 void *arg, int mode)
e5d355d1 278{
cf218714 279 sigset_t set, oldset;
e5d355d1 280 int err;
8763046b 281 pthread_attr_t attr;
e5d355d1 282
8763046b
JK
283 err = pthread_attr_init(&attr);
284 if (err) {
285 error_exit(err, __func__);
286 }
287 if (mode == QEMU_THREAD_DETACHED) {
288 err = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
289 if (err) {
290 error_exit(err, __func__);
291 }
292 }
55541c8a 293
cf218714 294 /* Leave signal handling to the iothread. */
55541c8a
PB
295 sigfillset(&set);
296 pthread_sigmask(SIG_SETMASK, &set, &oldset);
8763046b 297 err = pthread_create(&thread->thread, &attr, start_routine, arg);
e5d355d1
AL
298 if (err)
299 error_exit(err, __func__);
55541c8a
PB
300
301 pthread_sigmask(SIG_SETMASK, &oldset, NULL);
8763046b
JK
302
303 pthread_attr_destroy(&attr);
e5d355d1
AL
304}
305
b7680cb6 306void qemu_thread_get_self(QemuThread *thread)
e5d355d1
AL
307{
308 thread->thread = pthread_self();
309}
310
2d797b65 311bool qemu_thread_is_self(QemuThread *thread)
e5d355d1 312{
b7680cb6 313 return pthread_equal(pthread_self(), thread->thread);
e5d355d1
AL
314}
315
313b1d69
CC
316void qemu_thread_exit(void *retval)
317{
318 pthread_exit(retval);
319}
8763046b
JK
320
321void *qemu_thread_join(QemuThread *thread)
322{
323 int err;
324 void *ret;
325
326 err = pthread_join(thread->thread, &ret);
327 if (err) {
328 error_exit(err, __func__);
329 }
330 return ret;
331}