]> git.proxmox.com Git - mirror_qemu.git/blame - util/async.c
Merge tag 'pull-aspeed-20240201' of https://github.com/legoater/qemu into staging
[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"
737e150e 28#include "block/aio.h"
9b34277d 29#include "block/thread-pool.h"
587d82fa 30#include "block/graph-lock.h"
1de7afc9 31#include "qemu/main-loop.h"
0ceb849b 32#include "qemu/atomic.h"
8c6b0356 33#include "qemu/rcu_queue.h"
0187f5c9 34#include "block/raw-aio.h"
0c330a73 35#include "qemu/coroutine_int.h"
47b74464 36#include "qemu/coroutine-tls.h"
75bbe5e5 37#include "sysemu/cpu-timers.h"
0c330a73 38#include "trace.h"
9a1e9481 39
4f999d05
KW
40/***********************************************************/
41/* bottom halves (can be seen as timers which expire ASAP) */
42
8c6b0356
SH
43/* QEMUBH::flags values */
44enum {
45 /* Already enqueued and waiting for aio_bh_poll() */
46 BH_PENDING = (1 << 0),
47
48 /* Invoke the callback */
49 BH_SCHEDULED = (1 << 1),
50
51 /* Delete without invoking callback */
52 BH_DELETED = (1 << 2),
53
54 /* Delete after invoking callback */
55 BH_ONESHOT = (1 << 3),
56
57 /* Schedule periodically when the event loop is idle */
58 BH_IDLE = (1 << 4),
59};
60
4f999d05 61struct QEMUBH {
2f4dc3c1 62 AioContext *ctx;
0f08586c 63 const char *name;
4f999d05
KW
64 QEMUBHFunc *cb;
65 void *opaque;
8c6b0356
SH
66 QSLIST_ENTRY(QEMUBH) next;
67 unsigned flags;
9c86c97f 68 MemReentrancyGuard *reentrancy_guard;
4f999d05
KW
69};
70
8c6b0356
SH
71/* Called concurrently from any thread */
72static void aio_bh_enqueue(QEMUBH *bh, unsigned new_flags)
73{
74 AioContext *ctx = bh->ctx;
75 unsigned old_flags;
76
77 /*
8dd48650
PB
78 * Synchronizes with atomic_fetch_and() in aio_bh_dequeue(), ensuring that
79 * insertion starts after BH_PENDING is set.
8c6b0356 80 */
d73415a3 81 old_flags = qatomic_fetch_or(&bh->flags, BH_PENDING | new_flags);
8dd48650 82
8c6b0356 83 if (!(old_flags & BH_PENDING)) {
8dd48650
PB
84 /*
85 * At this point the bottom half becomes visible to aio_bh_poll().
86 * This insertion thus synchronizes with QSLIST_MOVE_ATOMIC in
87 * aio_bh_poll(), ensuring that:
88 * 1. any writes needed by the callback are visible from the callback
89 * after aio_bh_dequeue() returns bh.
90 * 2. ctx is loaded before the callback has a chance to execute and bh
91 * could be freed.
92 */
8c6b0356
SH
93 QSLIST_INSERT_HEAD_ATOMIC(&ctx->bh_list, bh, next);
94 }
95
96 aio_notify(ctx);
72c603f8
PMD
97 if (unlikely(icount_enabled())) {
98 /*
99 * Workaround for record/replay.
100 * vCPU execution should be suspended when new BH is set.
101 * This is needed to avoid guest timeouts caused
102 * by the long cycles of the execution.
103 */
104 icount_notify_exit();
105 }
8c6b0356
SH
106}
107
108/* Only called from aio_bh_poll() and aio_ctx_finalize() */
109static QEMUBH *aio_bh_dequeue(BHList *head, unsigned *flags)
110{
111 QEMUBH *bh = QSLIST_FIRST_RCU(head);
112
113 if (!bh) {
114 return NULL;
115 }
116
117 QSLIST_REMOVE_HEAD(head, next);
118
119 /*
8dd48650
PB
120 * Synchronizes with qatomic_fetch_or() in aio_bh_enqueue(), ensuring that
121 * the removal finishes before BH_PENDING is reset.
8c6b0356 122 */
d73415a3 123 *flags = qatomic_fetch_and(&bh->flags,
8c6b0356
SH
124 ~(BH_PENDING | BH_SCHEDULED | BH_IDLE));
125 return bh;
126}
127
0f08586c
SH
128void aio_bh_schedule_oneshot_full(AioContext *ctx, QEMUBHFunc *cb,
129 void *opaque, const char *name)
5b8bb359
PB
130{
131 QEMUBH *bh;
132 bh = g_new(QEMUBH, 1);
133 *bh = (QEMUBH){
134 .ctx = ctx,
135 .cb = cb,
136 .opaque = opaque,
0f08586c 137 .name = name,
5b8bb359 138 };
8c6b0356 139 aio_bh_enqueue(bh, BH_SCHEDULED | BH_ONESHOT);
5b8bb359
PB
140}
141
0f08586c 142QEMUBH *aio_bh_new_full(AioContext *ctx, QEMUBHFunc *cb, void *opaque,
9c86c97f 143 const char *name, MemReentrancyGuard *reentrancy_guard)
4f999d05
KW
144{
145 QEMUBH *bh;
ee82310f
PB
146 bh = g_new(QEMUBH, 1);
147 *bh = (QEMUBH){
148 .ctx = ctx,
149 .cb = cb,
150 .opaque = opaque,
0f08586c 151 .name = name,
9c86c97f 152 .reentrancy_guard = reentrancy_guard,
ee82310f 153 };
4f999d05
KW
154 return bh;
155}
156
df281b80
PD
157void aio_bh_call(QEMUBH *bh)
158{
9c86c97f
AB
159 bool last_engaged_in_io = false;
160
7915bd06
AB
161 /* Make a copy of the guard-pointer as cb may free the bh */
162 MemReentrancyGuard *reentrancy_guard = bh->reentrancy_guard;
163 if (reentrancy_guard) {
164 last_engaged_in_io = reentrancy_guard->engaged_in_io;
165 if (reentrancy_guard->engaged_in_io) {
9c86c97f
AB
166 trace_reentrant_aio(bh->ctx, bh->name);
167 }
7915bd06 168 reentrancy_guard->engaged_in_io = true;
9c86c97f
AB
169 }
170
df281b80 171 bh->cb(bh->opaque);
9c86c97f 172
7915bd06
AB
173 if (reentrancy_guard) {
174 reentrancy_guard->engaged_in_io = last_engaged_in_io;
9c86c97f 175 }
df281b80
PD
176}
177
8c6b0356 178/* Multiple occurrences of aio_bh_poll cannot be called concurrently. */
f627aab1 179int aio_bh_poll(AioContext *ctx)
4f999d05 180{
8c6b0356
SH
181 BHListSlice slice;
182 BHListSlice *s;
183 int ret = 0;
184
8dd48650 185 /* Synchronizes with QSLIST_INSERT_HEAD_ATOMIC in aio_bh_enqueue(). */
8c6b0356 186 QSLIST_MOVE_ATOMIC(&slice.bh_list, &ctx->bh_list);
d66ba6dc
CLG
187
188 /*
189 * GCC13 [-Werror=dangling-pointer=] complains that the local variable
190 * 'slice' is being stored in the global 'ctx->bh_slice_list' but the
191 * list is emptied before this function returns.
192 */
193#if !defined(__clang__)
194#pragma GCC diagnostic push
195#pragma GCC diagnostic ignored "-Wpragmas"
196#pragma GCC diagnostic ignored "-Wdangling-pointer="
197#endif
8c6b0356 198 QSIMPLEQ_INSERT_TAIL(&ctx->bh_slice_list, &slice, next);
d66ba6dc
CLG
199#if !defined(__clang__)
200#pragma GCC diagnostic pop
201#endif
8c6b0356
SH
202
203 while ((s = QSIMPLEQ_FIRST(&ctx->bh_slice_list))) {
204 QEMUBH *bh;
205 unsigned flags;
206
207 bh = aio_bh_dequeue(&s->bh_list, &flags);
208 if (!bh) {
209 QSIMPLEQ_REMOVE_HEAD(&ctx->bh_slice_list, next);
210 continue;
211 }
212
213 if ((flags & (BH_SCHEDULED | BH_DELETED)) == BH_SCHEDULED) {
65c1b5b6 214 /* Idle BHs don't count as progress */
8c6b0356 215 if (!(flags & BH_IDLE)) {
4f999d05 216 ret = 1;
ca96ac44 217 }
df281b80 218 aio_bh_call(bh);
4f999d05 219 }
8c6b0356
SH
220 if (flags & (BH_DELETED | BH_ONESHOT)) {
221 g_free(bh);
7d506c90 222 }
4f999d05
KW
223 }
224
4f999d05
KW
225 return ret;
226}
227
228void qemu_bh_schedule_idle(QEMUBH *bh)
229{
8c6b0356 230 aio_bh_enqueue(bh, BH_SCHEDULED | BH_IDLE);
4f999d05
KW
231}
232
233void qemu_bh_schedule(QEMUBH *bh)
234{
8c6b0356 235 aio_bh_enqueue(bh, BH_SCHEDULED);
4f999d05
KW
236}
237
dcc772e2
LPF
238/* This func is async.
239 */
4f999d05
KW
240void qemu_bh_cancel(QEMUBH *bh)
241{
d73415a3 242 qatomic_and(&bh->flags, ~BH_SCHEDULED);
4f999d05
KW
243}
244
dcc772e2
LPF
245/* This func is async.The bottom half will do the delete action at the finial
246 * end.
247 */
4f999d05
KW
248void qemu_bh_delete(QEMUBH *bh)
249{
8c6b0356 250 aio_bh_enqueue(bh, BH_DELETED);
4f999d05
KW
251}
252
8c6b0356 253static int64_t aio_compute_bh_timeout(BHList *head, int timeout)
4f999d05
KW
254{
255 QEMUBH *bh;
256
8c6b0356
SH
257 QSLIST_FOREACH_RCU(bh, head, next) {
258 if ((bh->flags & (BH_SCHEDULED | BH_DELETED)) == BH_SCHEDULED) {
259 if (bh->flags & BH_IDLE) {
4f999d05
KW
260 /* idle bottom halves will be polled at least
261 * every 10ms */
845ca10d 262 timeout = 10000000;
4f999d05
KW
263 } else {
264 /* non-idle bottom halves will be executed
265 * immediately */
845ca10d 266 return 0;
4f999d05
KW
267 }
268 }
269 }
e3713e00 270
8c6b0356
SH
271 return timeout;
272}
273
274int64_t
275aio_compute_timeout(AioContext *ctx)
276{
277 BHListSlice *s;
278 int64_t deadline;
279 int timeout = -1;
280
281 timeout = aio_compute_bh_timeout(&ctx->bh_list, timeout);
282 if (timeout == 0) {
283 return 0;
284 }
285
286 QSIMPLEQ_FOREACH(s, &ctx->bh_slice_list, next) {
287 timeout = aio_compute_bh_timeout(&s->bh_list, timeout);
288 if (timeout == 0) {
289 return 0;
290 }
291 }
292
845ca10d 293 deadline = timerlistgroup_deadline_ns(&ctx->tlg);
533a8cf3 294 if (deadline == 0) {
845ca10d 295 return 0;
533a8cf3 296 } else {
845ca10d 297 return qemu_soonest_timeout(timeout, deadline);
533a8cf3 298 }
845ca10d 299}
533a8cf3 300
845ca10d
PB
301static gboolean
302aio_ctx_prepare(GSource *source, gint *timeout)
303{
304 AioContext *ctx = (AioContext *) source;
305
d73415a3 306 qatomic_set(&ctx->notify_me, qatomic_read(&ctx->notify_me) | 1);
5710a3e0
PB
307
308 /*
309 * Write ctx->notify_me before computing the timeout
310 * (reading bottom half flags, etc.). Pairs with
311 * smp_mb in aio_notify().
312 */
313 smp_mb();
eabc9779 314
845ca10d
PB
315 /* We assume there is no timeout already supplied */
316 *timeout = qemu_timeout_ns_to_ms(aio_compute_timeout(ctx));
a3462c65
PB
317
318 if (aio_prepare(ctx)) {
319 *timeout = 0;
320 }
321
845ca10d 322 return *timeout == 0;
e3713e00
PB
323}
324
325static gboolean
326aio_ctx_check(GSource *source)
327{
328 AioContext *ctx = (AioContext *) source;
329 QEMUBH *bh;
8c6b0356 330 BHListSlice *s;
e3713e00 331
5710a3e0 332 /* Finish computing the timeout before clearing the flag. */
d73415a3 333 qatomic_store_release(&ctx->notify_me, qatomic_read(&ctx->notify_me) & ~1);
05e514b1 334 aio_notify_accept(ctx);
21a03d17 335
8c6b0356
SH
336 QSLIST_FOREACH_RCU(bh, &ctx->bh_list, next) {
337 if ((bh->flags & (BH_SCHEDULED | BH_DELETED)) == BH_SCHEDULED) {
e3713e00 338 return true;
6977d901 339 }
e3713e00 340 }
8c6b0356
SH
341
342 QSIMPLEQ_FOREACH(s, &ctx->bh_slice_list, next) {
343 QSLIST_FOREACH_RCU(bh, &s->bh_list, next) {
344 if ((bh->flags & (BH_SCHEDULED | BH_DELETED)) == BH_SCHEDULED) {
345 return true;
346 }
347 }
348 }
533a8cf3 349 return aio_pending(ctx) || (timerlistgroup_deadline_ns(&ctx->tlg) == 0);
e3713e00
PB
350}
351
352static gboolean
353aio_ctx_dispatch(GSource *source,
354 GSourceFunc callback,
355 gpointer user_data)
356{
357 AioContext *ctx = (AioContext *) source;
358
359 assert(callback == NULL);
a153bf52 360 aio_dispatch(ctx);
e3713e00
PB
361 return true;
362}
363
2f4dc3c1
PB
364static void
365aio_ctx_finalize(GSource *source)
366{
367 AioContext *ctx = (AioContext *) source;
8c6b0356
SH
368 QEMUBH *bh;
369 unsigned flags;
2f4dc3c1 370
9b34277d 371 thread_pool_free(ctx->thread_pool);
a076972a 372
0187f5c9
PB
373#ifdef CONFIG_LINUX_AIO
374 if (ctx->linux_aio) {
375 laio_detach_aio_context(ctx->linux_aio, ctx);
376 laio_cleanup(ctx->linux_aio);
377 ctx->linux_aio = NULL;
378 }
379#endif
380
fcb7a4a4
AM
381#ifdef CONFIG_LINUX_IO_URING
382 if (ctx->linux_io_uring) {
383 luring_detach_aio_context(ctx->linux_io_uring, ctx);
384 luring_cleanup(ctx->linux_io_uring);
385 ctx->linux_io_uring = NULL;
386 }
387#endif
388
0c330a73
PB
389 assert(QSLIST_EMPTY(&ctx->scheduled_coroutines));
390 qemu_bh_delete(ctx->co_schedule_bh);
391
8c6b0356
SH
392 /* There must be no aio_bh_poll() calls going on */
393 assert(QSIMPLEQ_EMPTY(&ctx->bh_slice_list));
a076972a 394
8c6b0356 395 while ((bh = aio_bh_dequeue(&ctx->bh_list, &flags))) {
023ca420
SH
396 /*
397 * qemu_bh_delete() must have been called on BHs in this AioContext. In
398 * many cases memory leaks, hangs, or inconsistent state occur when a
399 * BH is leaked because something still expects it to run.
400 *
401 * If you hit this, fix the lifecycle of the BH so that
402 * qemu_bh_delete() and any associated cleanup is called before the
403 * AioContext is finalized.
404 */
405 if (unlikely(!(flags & BH_DELETED))) {
406 fprintf(stderr, "%s: BH '%s' leaked, aborting...\n",
407 __func__, bh->name);
408 abort();
409 }
a076972a 410
8c6b0356 411 g_free(bh);
a076972a 412 }
a076972a 413
60f782b6 414 aio_set_event_notifier(ctx, &ctx->notifier, NULL, NULL, NULL);
2f4dc3c1 415 event_notifier_cleanup(&ctx->notifier);
3fe71223 416 qemu_rec_mutex_destroy(&ctx->lock);
d7c99a12 417 qemu_lockcnt_destroy(&ctx->list_lock);
dae21b98 418 timerlistgroup_deinit(&ctx->tlg);
587d82fa 419 unregister_aiocontext(ctx);
cd0a6d2b 420 aio_context_destroy(ctx);
2f4dc3c1
PB
421}
422
e3713e00
PB
423static GSourceFuncs aio_source_funcs = {
424 aio_ctx_prepare,
425 aio_ctx_check,
426 aio_ctx_dispatch,
2f4dc3c1 427 aio_ctx_finalize
e3713e00
PB
428};
429
430GSource *aio_get_g_source(AioContext *ctx)
431{
ba607ca8 432 aio_context_use_g_source(ctx);
e3713e00
PB
433 g_source_ref(&ctx->source);
434 return &ctx->source;
435}
a915f4bc 436
9b34277d
SH
437ThreadPool *aio_get_thread_pool(AioContext *ctx)
438{
439 if (!ctx->thread_pool) {
440 ctx->thread_pool = thread_pool_new(ctx);
441 }
442 return ctx->thread_pool;
443}
444
0187f5c9 445#ifdef CONFIG_LINUX_AIO
ed6e2161 446LinuxAioState *aio_setup_linux_aio(AioContext *ctx, Error **errp)
0187f5c9
PB
447{
448 if (!ctx->linux_aio) {
ed6e2161
NA
449 ctx->linux_aio = laio_init(errp);
450 if (ctx->linux_aio) {
451 laio_attach_aio_context(ctx->linux_aio, ctx);
452 }
0187f5c9
PB
453 }
454 return ctx->linux_aio;
455}
ed6e2161
NA
456
457LinuxAioState *aio_get_linux_aio(AioContext *ctx)
458{
459 assert(ctx->linux_aio);
460 return ctx->linux_aio;
461}
0187f5c9
PB
462#endif
463
fcb7a4a4
AM
464#ifdef CONFIG_LINUX_IO_URING
465LuringState *aio_setup_linux_io_uring(AioContext *ctx, Error **errp)
466{
467 if (ctx->linux_io_uring) {
468 return ctx->linux_io_uring;
469 }
470
471 ctx->linux_io_uring = luring_init(errp);
472 if (!ctx->linux_io_uring) {
473 return NULL;
474 }
475
476 luring_attach_aio_context(ctx->linux_io_uring, ctx);
477 return ctx->linux_io_uring;
478}
479
480LuringState *aio_get_linux_io_uring(AioContext *ctx)
481{
482 assert(ctx->linux_io_uring);
483 return ctx->linux_io_uring;
484}
485#endif
486
2f4dc3c1
PB
487void aio_notify(AioContext *ctx)
488{
601829f8 489 /*
8dd48650
PB
490 * Write e.g. ctx->bh_list before writing ctx->notified. Pairs with
491 * smp_mb() in aio_notify_accept().
601829f8
SH
492 */
493 smp_wmb();
d73415a3 494 qatomic_set(&ctx->notified, true);
601829f8
SH
495
496 /*
8dd48650
PB
497 * Write ctx->notified (and also ctx->bh_list) before reading ctx->notify_me.
498 * Pairs with smp_mb() in aio_ctx_prepare or aio_poll.
eabc9779 499 */
0ceb849b 500 smp_mb();
d73415a3 501 if (qatomic_read(&ctx->notify_me)) {
0ceb849b 502 event_notifier_set(&ctx->notifier);
05e514b1
PB
503 }
504}
505
506void aio_notify_accept(AioContext *ctx)
507{
d73415a3 508 qatomic_set(&ctx->notified, false);
601829f8
SH
509
510 /*
6229438c
PB
511 * Order reads of ctx->notified (in aio_context_notifier_poll()) and the
512 * above clearing of ctx->notified before reads of e.g. bh->flags. Pairs
513 * with smp_wmb() in aio_notify.
601829f8
SH
514 */
515 smp_mb();
2f4dc3c1
PB
516}
517
3f53bc61 518static void aio_timerlist_notify(void *opaque, QEMUClockType type)
d5541d86
AB
519{
520 aio_notify(opaque);
521}
522
601829f8 523static void aio_context_notifier_cb(EventNotifier *e)
21a03d17 524{
601829f8
SH
525 AioContext *ctx = container_of(e, AioContext, notifier);
526
527 event_notifier_test_and_clear(&ctx->notifier);
21a03d17
PB
528}
529
4a1cba38 530/* Returns true if aio_notify() was called (e.g. a BH was scheduled) */
c13be5a1 531static bool aio_context_notifier_poll(void *opaque)
4a1cba38
SH
532{
533 EventNotifier *e = opaque;
534 AioContext *ctx = container_of(e, AioContext, notifier);
535
6229438c
PB
536 /*
537 * No need for load-acquire because we just want to kick the
538 * event loop. aio_notify_accept() takes care of synchronizing
539 * the event loop with the producers.
540 */
d73415a3 541 return qatomic_read(&ctx->notified);
4a1cba38
SH
542}
543
826cc324
SH
544static void aio_context_notifier_poll_ready(EventNotifier *e)
545{
546 /* Do nothing, we just wanted to kick the event loop */
547}
548
0c330a73
PB
549static void co_schedule_bh_cb(void *opaque)
550{
551 AioContext *ctx = opaque;
552 QSLIST_HEAD(, Coroutine) straight, reversed;
553
554 QSLIST_MOVE_ATOMIC(&reversed, &ctx->scheduled_coroutines);
555 QSLIST_INIT(&straight);
556
557 while (!QSLIST_EMPTY(&reversed)) {
558 Coroutine *co = QSLIST_FIRST(&reversed);
559 QSLIST_REMOVE_HEAD(&reversed, co_scheduled_next);
560 QSLIST_INSERT_HEAD(&straight, co, co_scheduled_next);
561 }
562
563 while (!QSLIST_EMPTY(&straight)) {
564 Coroutine *co = QSLIST_FIRST(&straight);
565 QSLIST_REMOVE_HEAD(&straight, co_scheduled_next);
566 trace_aio_co_schedule_bh_cb(ctx, co);
6133b39f
JC
567
568 /* Protected by write barrier in qemu_aio_coroutine_enter */
d73415a3 569 qatomic_set(&co->scheduled, NULL);
6808ae04 570 qemu_aio_coroutine_enter(ctx, co);
0c330a73
PB
571 }
572}
573
2f78e491 574AioContext *aio_context_new(Error **errp)
f627aab1 575{
2f78e491 576 int ret;
2f4dc3c1 577 AioContext *ctx;
37fcee5d 578
2f4dc3c1 579 ctx = (AioContext *) g_source_new(&aio_source_funcs, sizeof(AioContext));
8c6b0356
SH
580 QSLIST_INIT(&ctx->bh_list);
581 QSIMPLEQ_INIT(&ctx->bh_slice_list);
7e003465
C
582 aio_context_setup(ctx);
583
2f78e491
CN
584 ret = event_notifier_init(&ctx->notifier, false);
585 if (ret < 0) {
2f78e491 586 error_setg_errno(errp, -ret, "Failed to initialize event notifier");
37fcee5d 587 goto fail;
2f78e491 588 }
fcf5def1 589 g_source_set_can_recurse(&ctx->source, true);
d7c99a12 590 qemu_lockcnt_init(&ctx->list_lock);
0c330a73
PB
591
592 ctx->co_schedule_bh = aio_bh_new(ctx, co_schedule_bh_cb, ctx);
593 QSLIST_INIT(&ctx->scheduled_coroutines);
594
2f78e491 595 aio_set_event_notifier(ctx, &ctx->notifier,
601829f8 596 aio_context_notifier_cb,
826cc324
SH
597 aio_context_notifier_poll,
598 aio_context_notifier_poll_ready);
0187f5c9
PB
599#ifdef CONFIG_LINUX_AIO
600 ctx->linux_aio = NULL;
601#endif
fcb7a4a4
AM
602
603#ifdef CONFIG_LINUX_IO_URING
604 ctx->linux_io_uring = NULL;
605#endif
606
9b34277d 607 ctx->thread_pool = NULL;
3fe71223 608 qemu_rec_mutex_init(&ctx->lock);
d5541d86 609 timerlistgroup_init(&ctx->tlg, aio_timerlist_notify, ctx);
2f4dc3c1 610
82a41186 611 ctx->poll_ns = 0;
4a1cba38 612 ctx->poll_max_ns = 0;
82a41186
SH
613 ctx->poll_grow = 0;
614 ctx->poll_shrink = 0;
4a1cba38 615
1793ad02
SG
616 ctx->aio_max_batch = 0;
617
71ad4713
NSJ
618 ctx->thread_pool_min = 0;
619 ctx->thread_pool_max = THREAD_POOL_MAX_THREADS_DEFAULT;
620
587d82fa
EGE
621 register_aiocontext(ctx);
622
2f4dc3c1 623 return ctx;
37fcee5d
FZ
624fail:
625 g_source_destroy(&ctx->source);
626 return NULL;
e3713e00
PB
627}
628
0c330a73
PB
629void aio_co_schedule(AioContext *ctx, Coroutine *co)
630{
631 trace_aio_co_schedule(ctx, co);
d73415a3 632 const char *scheduled = qatomic_cmpxchg(&co->scheduled, NULL,
6133b39f
JC
633 __func__);
634
635 if (scheduled) {
636 fprintf(stderr,
637 "%s: Co-routine was already scheduled in '%s'\n",
638 __func__, scheduled);
639 abort();
640 }
641
f0f81002
SH
642 /* The coroutine might run and release the last ctx reference before we
643 * invoke qemu_bh_schedule(). Take a reference to keep ctx alive until
644 * we're done.
645 */
646 aio_context_ref(ctx);
647
0c330a73
PB
648 QSLIST_INSERT_HEAD_ATOMIC(&ctx->scheduled_coroutines,
649 co, co_scheduled_next);
650 qemu_bh_schedule(ctx->co_schedule_bh);
f0f81002
SH
651
652 aio_context_unref(ctx);
0c330a73
PB
653}
654
26b0b698
KW
655typedef struct AioCoRescheduleSelf {
656 Coroutine *co;
657 AioContext *new_ctx;
658} AioCoRescheduleSelf;
659
660static void aio_co_reschedule_self_bh(void *opaque)
661{
662 AioCoRescheduleSelf *data = opaque;
663 aio_co_schedule(data->new_ctx, data->co);
664}
665
666void coroutine_fn aio_co_reschedule_self(AioContext *new_ctx)
667{
668 AioContext *old_ctx = qemu_get_current_aio_context();
669
670 if (old_ctx != new_ctx) {
671 AioCoRescheduleSelf data = {
672 .co = qemu_coroutine_self(),
673 .new_ctx = new_ctx,
674 };
675 /*
676 * We can't directly schedule the coroutine in the target context
677 * because this would be racy: The other thread could try to enter the
678 * coroutine before it has yielded in this one.
679 */
680 aio_bh_schedule_oneshot(old_ctx, aio_co_reschedule_self_bh, &data);
681 qemu_coroutine_yield();
682 }
683}
684
43695601 685void aio_co_wake(Coroutine *co)
0c330a73
PB
686{
687 AioContext *ctx;
688
689 /* Read coroutine before co->ctx. Matches smp_wmb in
690 * qemu_coroutine_enter.
691 */
692 smp_read_barrier_depends();
d73415a3 693 ctx = qatomic_read(&co->ctx);
0c330a73 694
8865852e
FZ
695 aio_co_enter(ctx, co);
696}
697
43695601 698void aio_co_enter(AioContext *ctx, Coroutine *co)
8865852e 699{
0c330a73
PB
700 if (ctx != qemu_get_current_aio_context()) {
701 aio_co_schedule(ctx, co);
702 return;
703 }
704
705 if (qemu_in_coroutine()) {
706 Coroutine *self = qemu_coroutine_self();
707 assert(self != co);
708 QSIMPLEQ_INSERT_TAIL(&self->co_queue_wakeup, co, co_queue_next);
709 } else {
8865852e 710 qemu_aio_coroutine_enter(ctx, co);
0c330a73
PB
711 }
712}
713
e3713e00
PB
714void aio_context_ref(AioContext *ctx)
715{
716 g_source_ref(&ctx->source);
717}
718
719void aio_context_unref(AioContext *ctx)
720{
721 g_source_unref(&ctx->source);
f627aab1 722}
98563fc3 723
47b74464 724QEMU_DEFINE_STATIC_CO_TLS(AioContext *, my_aiocontext)
5f50be9b
PB
725
726AioContext *qemu_get_current_aio_context(void)
727{
47b74464
SH
728 AioContext *ctx = get_my_aiocontext();
729 if (ctx) {
730 return ctx;
5f50be9b 731 }
195801d7 732 if (bql_locked()) {
5f50be9b
PB
733 /* Possibly in a vCPU thread. */
734 return qemu_get_aio_context();
735 }
736 return NULL;
737}
738
739void qemu_set_current_aio_context(AioContext *ctx)
740{
47b74464
SH
741 assert(!get_my_aiocontext());
742 set_my_aiocontext(ctx);
5f50be9b 743}
71ad4713
NSJ
744
745void aio_context_set_thread_pool_params(AioContext *ctx, int64_t min,
746 int64_t max, Error **errp)
747{
748
749 if (min > max || !max || min > INT_MAX || max > INT_MAX) {
750 error_setg(errp, "bad thread-pool-min/thread-pool-max values");
751 return;
752 }
753
754 ctx->thread_pool_min = min;
755 ctx->thread_pool_max = max;
756
757 if (ctx->thread_pool) {
758 thread_pool_update_params(ctx->thread_pool, ctx);
759 }
760}