]> git.proxmox.com Git - mirror_qemu.git/blame - util/async.c
compiler: add a sizeof_field() macro
[mirror_qemu.git] / util / async.c
CommitLineData
4f999d05 1/*
c2b38b27 2 * Data plane event loop
4f999d05
KW
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
c2b38b27 5 * Copyright (c) 2009-2017 QEMU contributors
4f999d05
KW
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
d38ea87a 26#include "qemu/osdep.h"
da34e65c 27#include "qapi/error.h"
4f999d05 28#include "qemu-common.h"
737e150e 29#include "block/aio.h"
9b34277d 30#include "block/thread-pool.h"
1de7afc9 31#include "qemu/main-loop.h"
0ceb849b 32#include "qemu/atomic.h"
0187f5c9 33#include "block/raw-aio.h"
0c330a73
PB
34#include "qemu/coroutine_int.h"
35#include "trace.h"
9a1e9481 36
4f999d05
KW
37/***********************************************************/
38/* bottom halves (can be seen as timers which expire ASAP) */
39
40struct QEMUBH {
2f4dc3c1 41 AioContext *ctx;
4f999d05
KW
42 QEMUBHFunc *cb;
43 void *opaque;
4f999d05 44 QEMUBH *next;
9b47b17e
SW
45 bool scheduled;
46 bool idle;
47 bool deleted;
4f999d05
KW
48};
49
5b8bb359
PB
50void aio_bh_schedule_oneshot(AioContext *ctx, QEMUBHFunc *cb, void *opaque)
51{
52 QEMUBH *bh;
53 bh = g_new(QEMUBH, 1);
54 *bh = (QEMUBH){
55 .ctx = ctx,
56 .cb = cb,
57 .opaque = opaque,
58 };
d7c99a12 59 qemu_lockcnt_lock(&ctx->list_lock);
5b8bb359
PB
60 bh->next = ctx->first_bh;
61 bh->scheduled = 1;
62 bh->deleted = 1;
63 /* Make sure that the members are ready before putting bh into list */
64 smp_wmb();
65 ctx->first_bh = bh;
d7c99a12 66 qemu_lockcnt_unlock(&ctx->list_lock);
c9d1a561 67 aio_notify(ctx);
5b8bb359
PB
68}
69
f627aab1 70QEMUBH *aio_bh_new(AioContext *ctx, QEMUBHFunc *cb, void *opaque)
4f999d05
KW
71{
72 QEMUBH *bh;
ee82310f
PB
73 bh = g_new(QEMUBH, 1);
74 *bh = (QEMUBH){
75 .ctx = ctx,
76 .cb = cb,
77 .opaque = opaque,
78 };
d7c99a12 79 qemu_lockcnt_lock(&ctx->list_lock);
f627aab1 80 bh->next = ctx->first_bh;
dcc772e2
LPF
81 /* Make sure that the members are ready before putting bh into list */
82 smp_wmb();
f627aab1 83 ctx->first_bh = bh;
d7c99a12 84 qemu_lockcnt_unlock(&ctx->list_lock);
4f999d05
KW
85 return bh;
86}
87
df281b80
PD
88void aio_bh_call(QEMUBH *bh)
89{
90 bh->cb(bh->opaque);
91}
92
bd451435
PB
93/* Multiple occurrences of aio_bh_poll cannot be called concurrently.
94 * The count in ctx->list_lock is incremented before the call, and is
95 * not affected by the call.
96 */
f627aab1 97int aio_bh_poll(AioContext *ctx)
4f999d05 98{
7887f620 99 QEMUBH *bh, **bhp, *next;
4f999d05 100 int ret;
7d506c90 101 bool deleted = false;
648fb0ea 102
4f999d05 103 ret = 0;
d7c99a12
PB
104 for (bh = atomic_rcu_read(&ctx->first_bh); bh; bh = next) {
105 next = atomic_rcu_read(&bh->next);
e8d3b1a2
PB
106 /* The atomic_xchg is paired with the one in qemu_bh_schedule. The
107 * implicit memory barrier ensures that the callback sees all writes
108 * done by the scheduling thread. It also ensures that the scheduling
109 * thread sees the zero before bh->cb has run, and thus will call
110 * aio_notify again if necessary.
111 */
5b8bb359 112 if (atomic_xchg(&bh->scheduled, 0)) {
65c1b5b6
PB
113 /* Idle BHs don't count as progress */
114 if (!bh->idle) {
4f999d05 115 ret = 1;
ca96ac44 116 }
4f999d05 117 bh->idle = 0;
df281b80 118 aio_bh_call(bh);
4f999d05 119 }
7d506c90
PB
120 if (bh->deleted) {
121 deleted = true;
122 }
4f999d05
KW
123 }
124
125 /* remove deleted bhs */
7d506c90 126 if (!deleted) {
7d506c90
PB
127 return ret;
128 }
129
bd451435 130 if (qemu_lockcnt_dec_if_lock(&ctx->list_lock)) {
f627aab1 131 bhp = &ctx->first_bh;
648fb0ea
KW
132 while (*bhp) {
133 bh = *bhp;
5b8bb359 134 if (bh->deleted && !bh->scheduled) {
648fb0ea
KW
135 *bhp = bh->next;
136 g_free(bh);
137 } else {
138 bhp = &bh->next;
139 }
140 }
bd451435 141 qemu_lockcnt_inc_and_unlock(&ctx->list_lock);
4f999d05 142 }
4f999d05
KW
143 return ret;
144}
145
146void qemu_bh_schedule_idle(QEMUBH *bh)
147{
4f999d05 148 bh->idle = 1;
dcc772e2
LPF
149 /* Make sure that idle & any writes needed by the callback are done
150 * before the locations are read in the aio_bh_poll.
151 */
e8d3b1a2 152 atomic_mb_set(&bh->scheduled, 1);
4f999d05
KW
153}
154
155void qemu_bh_schedule(QEMUBH *bh)
156{
924fe129
SH
157 AioContext *ctx;
158
924fe129 159 ctx = bh->ctx;
4f999d05 160 bh->idle = 0;
e8d3b1a2 161 /* The memory barrier implicit in atomic_xchg makes sure that:
924fe129
SH
162 * 1. idle & any writes needed by the callback are done before the
163 * locations are read in the aio_bh_poll.
164 * 2. ctx is loaded before scheduled is set and the callback has a chance
165 * to execute.
dcc772e2 166 */
e8d3b1a2
PB
167 if (atomic_xchg(&bh->scheduled, 1) == 0) {
168 aio_notify(ctx);
169 }
4f999d05
KW
170}
171
dcc772e2
LPF
172
173/* This func is async.
174 */
4f999d05
KW
175void qemu_bh_cancel(QEMUBH *bh)
176{
ef6dada8 177 atomic_mb_set(&bh->scheduled, 0);
4f999d05
KW
178}
179
dcc772e2
LPF
180/* This func is async.The bottom half will do the delete action at the finial
181 * end.
182 */
4f999d05
KW
183void qemu_bh_delete(QEMUBH *bh)
184{
185 bh->scheduled = 0;
186 bh->deleted = 1;
187}
188
845ca10d
PB
189int64_t
190aio_compute_timeout(AioContext *ctx)
4f999d05 191{
845ca10d
PB
192 int64_t deadline;
193 int timeout = -1;
4f999d05
KW
194 QEMUBH *bh;
195
d7c99a12
PB
196 for (bh = atomic_rcu_read(&ctx->first_bh); bh;
197 bh = atomic_rcu_read(&bh->next)) {
5b8bb359 198 if (bh->scheduled) {
4f999d05
KW
199 if (bh->idle) {
200 /* idle bottom halves will be polled at least
201 * every 10ms */
845ca10d 202 timeout = 10000000;
4f999d05
KW
203 } else {
204 /* non-idle bottom halves will be executed
205 * immediately */
845ca10d 206 return 0;
4f999d05
KW
207 }
208 }
209 }
e3713e00 210
845ca10d 211 deadline = timerlistgroup_deadline_ns(&ctx->tlg);
533a8cf3 212 if (deadline == 0) {
845ca10d 213 return 0;
533a8cf3 214 } else {
845ca10d 215 return qemu_soonest_timeout(timeout, deadline);
533a8cf3 216 }
845ca10d 217}
533a8cf3 218
845ca10d
PB
219static gboolean
220aio_ctx_prepare(GSource *source, gint *timeout)
221{
222 AioContext *ctx = (AioContext *) source;
223
eabc9779
PB
224 atomic_or(&ctx->notify_me, 1);
225
845ca10d
PB
226 /* We assume there is no timeout already supplied */
227 *timeout = qemu_timeout_ns_to_ms(aio_compute_timeout(ctx));
a3462c65
PB
228
229 if (aio_prepare(ctx)) {
230 *timeout = 0;
231 }
232
845ca10d 233 return *timeout == 0;
e3713e00
PB
234}
235
236static gboolean
237aio_ctx_check(GSource *source)
238{
239 AioContext *ctx = (AioContext *) source;
240 QEMUBH *bh;
241
eabc9779 242 atomic_and(&ctx->notify_me, ~1);
05e514b1 243 aio_notify_accept(ctx);
21a03d17 244
e3713e00 245 for (bh = ctx->first_bh; bh; bh = bh->next) {
5b8bb359 246 if (bh->scheduled) {
e3713e00 247 return true;
6977d901 248 }
e3713e00 249 }
533a8cf3 250 return aio_pending(ctx) || (timerlistgroup_deadline_ns(&ctx->tlg) == 0);
e3713e00
PB
251}
252
253static gboolean
254aio_ctx_dispatch(GSource *source,
255 GSourceFunc callback,
256 gpointer user_data)
257{
258 AioContext *ctx = (AioContext *) source;
259
260 assert(callback == NULL);
a153bf52 261 aio_dispatch(ctx);
e3713e00
PB
262 return true;
263}
264
2f4dc3c1
PB
265static void
266aio_ctx_finalize(GSource *source)
267{
268 AioContext *ctx = (AioContext *) source;
269
9b34277d 270 thread_pool_free(ctx->thread_pool);
a076972a 271
0187f5c9
PB
272#ifdef CONFIG_LINUX_AIO
273 if (ctx->linux_aio) {
274 laio_detach_aio_context(ctx->linux_aio, ctx);
275 laio_cleanup(ctx->linux_aio);
276 ctx->linux_aio = NULL;
277 }
278#endif
279
0c330a73
PB
280 assert(QSLIST_EMPTY(&ctx->scheduled_coroutines));
281 qemu_bh_delete(ctx->co_schedule_bh);
282
d7c99a12
PB
283 qemu_lockcnt_lock(&ctx->list_lock);
284 assert(!qemu_lockcnt_count(&ctx->list_lock));
a076972a
SH
285 while (ctx->first_bh) {
286 QEMUBH *next = ctx->first_bh->next;
287
288 /* qemu_bh_delete() must have been called on BHs in this AioContext */
289 assert(ctx->first_bh->deleted);
290
291 g_free(ctx->first_bh);
292 ctx->first_bh = next;
293 }
d7c99a12 294 qemu_lockcnt_unlock(&ctx->list_lock);
a076972a 295
f6a51c84 296 aio_set_event_notifier(ctx, &ctx->notifier, false, NULL, NULL);
2f4dc3c1 297 event_notifier_cleanup(&ctx->notifier);
3fe71223 298 qemu_rec_mutex_destroy(&ctx->lock);
d7c99a12 299 qemu_lockcnt_destroy(&ctx->list_lock);
dae21b98 300 timerlistgroup_deinit(&ctx->tlg);
cd0a6d2b 301 aio_context_destroy(ctx);
2f4dc3c1
PB
302}
303
e3713e00
PB
304static GSourceFuncs aio_source_funcs = {
305 aio_ctx_prepare,
306 aio_ctx_check,
307 aio_ctx_dispatch,
2f4dc3c1 308 aio_ctx_finalize
e3713e00
PB
309};
310
311GSource *aio_get_g_source(AioContext *ctx)
312{
313 g_source_ref(&ctx->source);
314 return &ctx->source;
315}
a915f4bc 316
9b34277d
SH
317ThreadPool *aio_get_thread_pool(AioContext *ctx)
318{
319 if (!ctx->thread_pool) {
320 ctx->thread_pool = thread_pool_new(ctx);
321 }
322 return ctx->thread_pool;
323}
324
0187f5c9
PB
325#ifdef CONFIG_LINUX_AIO
326LinuxAioState *aio_get_linux_aio(AioContext *ctx)
327{
328 if (!ctx->linux_aio) {
329 ctx->linux_aio = laio_init();
330 laio_attach_aio_context(ctx->linux_aio, ctx);
331 }
332 return ctx->linux_aio;
333}
334#endif
335
2f4dc3c1
PB
336void aio_notify(AioContext *ctx)
337{
eabc9779
PB
338 /* Write e.g. bh->scheduled before reading ctx->notify_me. Pairs
339 * with atomic_or in aio_ctx_prepare or atomic_add in aio_poll.
340 */
0ceb849b 341 smp_mb();
eabc9779 342 if (ctx->notify_me) {
0ceb849b 343 event_notifier_set(&ctx->notifier);
05e514b1
PB
344 atomic_mb_set(&ctx->notified, true);
345 }
346}
347
348void aio_notify_accept(AioContext *ctx)
349{
350 if (atomic_xchg(&ctx->notified, false)) {
351 event_notifier_test_and_clear(&ctx->notifier);
0ceb849b 352 }
2f4dc3c1
PB
353}
354
3f53bc61 355static void aio_timerlist_notify(void *opaque, QEMUClockType type)
d5541d86
AB
356{
357 aio_notify(opaque);
358}
359
21a03d17
PB
360static void event_notifier_dummy_cb(EventNotifier *e)
361{
362}
363
4a1cba38
SH
364/* Returns true if aio_notify() was called (e.g. a BH was scheduled) */
365static bool event_notifier_poll(void *opaque)
366{
367 EventNotifier *e = opaque;
368 AioContext *ctx = container_of(e, AioContext, notifier);
369
370 return atomic_read(&ctx->notified);
371}
372
0c330a73
PB
373static void co_schedule_bh_cb(void *opaque)
374{
375 AioContext *ctx = opaque;
376 QSLIST_HEAD(, Coroutine) straight, reversed;
377
378 QSLIST_MOVE_ATOMIC(&reversed, &ctx->scheduled_coroutines);
379 QSLIST_INIT(&straight);
380
381 while (!QSLIST_EMPTY(&reversed)) {
382 Coroutine *co = QSLIST_FIRST(&reversed);
383 QSLIST_REMOVE_HEAD(&reversed, co_scheduled_next);
384 QSLIST_INSERT_HEAD(&straight, co, co_scheduled_next);
385 }
386
387 while (!QSLIST_EMPTY(&straight)) {
388 Coroutine *co = QSLIST_FIRST(&straight);
389 QSLIST_REMOVE_HEAD(&straight, co_scheduled_next);
390 trace_aio_co_schedule_bh_cb(ctx, co);
1919631e 391 aio_context_acquire(ctx);
6133b39f
JC
392
393 /* Protected by write barrier in qemu_aio_coroutine_enter */
394 atomic_set(&co->scheduled, NULL);
0c330a73 395 qemu_coroutine_enter(co);
1919631e 396 aio_context_release(ctx);
0c330a73
PB
397 }
398}
399
2f78e491 400AioContext *aio_context_new(Error **errp)
f627aab1 401{
2f78e491 402 int ret;
2f4dc3c1 403 AioContext *ctx;
37fcee5d 404
2f4dc3c1 405 ctx = (AioContext *) g_source_new(&aio_source_funcs, sizeof(AioContext));
7e003465
C
406 aio_context_setup(ctx);
407
2f78e491
CN
408 ret = event_notifier_init(&ctx->notifier, false);
409 if (ret < 0) {
2f78e491 410 error_setg_errno(errp, -ret, "Failed to initialize event notifier");
37fcee5d 411 goto fail;
2f78e491 412 }
fcf5def1 413 g_source_set_can_recurse(&ctx->source, true);
d7c99a12 414 qemu_lockcnt_init(&ctx->list_lock);
0c330a73
PB
415
416 ctx->co_schedule_bh = aio_bh_new(ctx, co_schedule_bh_cb, ctx);
417 QSLIST_INIT(&ctx->scheduled_coroutines);
418
2f78e491 419 aio_set_event_notifier(ctx, &ctx->notifier,
dca21ef2 420 false,
2f78e491 421 (EventNotifierHandler *)
f6a51c84 422 event_notifier_dummy_cb,
4a1cba38 423 event_notifier_poll);
0187f5c9
PB
424#ifdef CONFIG_LINUX_AIO
425 ctx->linux_aio = NULL;
426#endif
9b34277d 427 ctx->thread_pool = NULL;
3fe71223 428 qemu_rec_mutex_init(&ctx->lock);
d5541d86 429 timerlistgroup_init(&ctx->tlg, aio_timerlist_notify, ctx);
2f4dc3c1 430
82a41186 431 ctx->poll_ns = 0;
4a1cba38 432 ctx->poll_max_ns = 0;
82a41186
SH
433 ctx->poll_grow = 0;
434 ctx->poll_shrink = 0;
4a1cba38 435
2f4dc3c1 436 return ctx;
37fcee5d
FZ
437fail:
438 g_source_destroy(&ctx->source);
439 return NULL;
e3713e00
PB
440}
441
0c330a73
PB
442void aio_co_schedule(AioContext *ctx, Coroutine *co)
443{
444 trace_aio_co_schedule(ctx, co);
6133b39f
JC
445 const char *scheduled = atomic_cmpxchg(&co->scheduled, NULL,
446 __func__);
447
448 if (scheduled) {
449 fprintf(stderr,
450 "%s: Co-routine was already scheduled in '%s'\n",
451 __func__, scheduled);
452 abort();
453 }
454
0c330a73
PB
455 QSLIST_INSERT_HEAD_ATOMIC(&ctx->scheduled_coroutines,
456 co, co_scheduled_next);
457 qemu_bh_schedule(ctx->co_schedule_bh);
458}
459
460void aio_co_wake(struct Coroutine *co)
461{
462 AioContext *ctx;
463
464 /* Read coroutine before co->ctx. Matches smp_wmb in
465 * qemu_coroutine_enter.
466 */
467 smp_read_barrier_depends();
468 ctx = atomic_read(&co->ctx);
469
8865852e
FZ
470 aio_co_enter(ctx, co);
471}
472
473void aio_co_enter(AioContext *ctx, struct Coroutine *co)
474{
0c330a73
PB
475 if (ctx != qemu_get_current_aio_context()) {
476 aio_co_schedule(ctx, co);
477 return;
478 }
479
480 if (qemu_in_coroutine()) {
481 Coroutine *self = qemu_coroutine_self();
482 assert(self != co);
483 QSIMPLEQ_INSERT_TAIL(&self->co_queue_wakeup, co, co_queue_next);
484 } else {
485 aio_context_acquire(ctx);
8865852e 486 qemu_aio_coroutine_enter(ctx, co);
0c330a73
PB
487 aio_context_release(ctx);
488 }
489}
490
e3713e00
PB
491void aio_context_ref(AioContext *ctx)
492{
493 g_source_ref(&ctx->source);
494}
495
496void aio_context_unref(AioContext *ctx)
497{
498 g_source_unref(&ctx->source);
f627aab1 499}
98563fc3
SH
500
501void aio_context_acquire(AioContext *ctx)
502{
3fe71223 503 qemu_rec_mutex_lock(&ctx->lock);
98563fc3
SH
504}
505
506void aio_context_release(AioContext *ctx)
507{
3fe71223 508 qemu_rec_mutex_unlock(&ctx->lock);
98563fc3 509}