2 * QEMU aio implementation
4 * Copyright IBM Corp., 2008
5 * Copyright Red Hat Inc., 2012
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
18 #include "qemu/osdep.h"
19 #include "qemu-common.h"
20 #include "block/block.h"
21 #include "qemu/queue.h"
22 #include "qemu/sockets.h"
23 #include "qapi/error.h"
24 #include "qemu/rcu_queue.h"
30 EventNotifierHandler
*io_notify
;
35 QLIST_ENTRY(AioHandler
) node
;
38 static void aio_remove_fd_handler(AioContext
*ctx
, AioHandler
*node
)
41 * If the GSource is in the process of being destroyed then
42 * g_source_remove_poll() causes an assertion failure. Skip
43 * removal in that case, because glib cleans up its state during
46 if (!g_source_is_destroyed(&ctx
->source
)) {
47 g_source_remove_poll(&ctx
->source
, &node
->pfd
);
50 /* If aio_poll is in progress, just mark the node as deleted */
51 if (qemu_lockcnt_count(&ctx
->list_lock
)) {
53 node
->pfd
.revents
= 0;
55 /* Otherwise, delete it for real. We can't just mark it as
56 * deleted because deleted nodes are only cleaned up after
57 * releasing the list_lock.
59 QLIST_REMOVE(node
, node
);
64 void aio_set_fd_handler(AioContext
*ctx
,
72 /* fd is a SOCKET in our case */
74 AioHandler
*node
= NULL
;
76 qemu_lockcnt_lock(&ctx
->list_lock
);
77 QLIST_FOREACH(old_node
, &ctx
->aio_handlers
, node
) {
78 if (old_node
->pfd
.fd
== fd
&& !old_node
->deleted
) {
83 if (io_read
|| io_write
) {
87 /* Alloc and insert if it's not already there */
88 node
= g_new0(AioHandler
, 1);
93 node
->pfd
.events
|= G_IO_IN
;
96 node
->pfd
.events
|= G_IO_OUT
;
99 node
->e
= &ctx
->notifier
;
101 /* Update handler with latest information */
102 node
->opaque
= opaque
;
103 node
->io_read
= io_read
;
104 node
->io_write
= io_write
;
105 node
->is_external
= is_external
;
108 bitmask
|= FD_READ
| FD_ACCEPT
| FD_CLOSE
;
112 bitmask
|= FD_WRITE
| FD_CONNECT
;
115 QLIST_INSERT_HEAD_RCU(&ctx
->aio_handlers
, node
, node
);
116 event
= event_notifier_get_handle(&ctx
->notifier
);
117 WSAEventSelect(node
->pfd
.fd
, event
, bitmask
);
120 aio_remove_fd_handler(ctx
, old_node
);
123 qemu_lockcnt_unlock(&ctx
->list_lock
);
127 void aio_set_fd_poll(AioContext
*ctx
, int fd
,
128 IOHandler
*io_poll_begin
,
129 IOHandler
*io_poll_end
)
131 /* Not implemented */
134 void aio_set_event_notifier(AioContext
*ctx
,
137 EventNotifierHandler
*io_notify
,
142 qemu_lockcnt_lock(&ctx
->list_lock
);
143 QLIST_FOREACH(node
, &ctx
->aio_handlers
, node
) {
144 if (node
->e
== e
&& !node
->deleted
) {
149 /* Are we deleting the fd handler? */
152 aio_remove_fd_handler(ctx
, node
);
156 /* Alloc and insert if it's not already there */
157 node
= g_new0(AioHandler
, 1);
159 node
->pfd
.fd
= (uintptr_t)event_notifier_get_handle(e
);
160 node
->pfd
.events
= G_IO_IN
;
161 node
->is_external
= is_external
;
162 QLIST_INSERT_HEAD_RCU(&ctx
->aio_handlers
, node
, node
);
164 g_source_add_poll(&ctx
->source
, &node
->pfd
);
166 /* Update handler with latest information */
167 node
->io_notify
= io_notify
;
170 qemu_lockcnt_unlock(&ctx
->list_lock
);
174 void aio_set_event_notifier_poll(AioContext
*ctx
,
175 EventNotifier
*notifier
,
176 EventNotifierHandler
*io_poll_begin
,
177 EventNotifierHandler
*io_poll_end
)
179 /* Not implemented */
182 bool aio_prepare(AioContext
*ctx
)
184 static struct timeval tv0
;
186 bool have_select_revents
= false;
190 * We have to walk very carefully in case aio_set_fd_handler is
191 * called while we're walking.
193 qemu_lockcnt_inc(&ctx
->list_lock
);
198 QLIST_FOREACH_RCU(node
, &ctx
->aio_handlers
, node
) {
200 FD_SET ((SOCKET
)node
->pfd
.fd
, &rfds
);
202 if (node
->io_write
) {
203 FD_SET ((SOCKET
)node
->pfd
.fd
, &wfds
);
207 if (select(0, &rfds
, &wfds
, NULL
, &tv0
) > 0) {
208 QLIST_FOREACH_RCU(node
, &ctx
->aio_handlers
, node
) {
209 node
->pfd
.revents
= 0;
210 if (FD_ISSET(node
->pfd
.fd
, &rfds
)) {
211 node
->pfd
.revents
|= G_IO_IN
;
212 have_select_revents
= true;
215 if (FD_ISSET(node
->pfd
.fd
, &wfds
)) {
216 node
->pfd
.revents
|= G_IO_OUT
;
217 have_select_revents
= true;
222 qemu_lockcnt_dec(&ctx
->list_lock
);
223 return have_select_revents
;
226 bool aio_pending(AioContext
*ctx
)
232 * We have to walk very carefully in case aio_set_fd_handler is
233 * called while we're walking.
235 qemu_lockcnt_inc(&ctx
->list_lock
);
236 QLIST_FOREACH_RCU(node
, &ctx
->aio_handlers
, node
) {
237 if (node
->pfd
.revents
&& node
->io_notify
) {
242 if ((node
->pfd
.revents
& G_IO_IN
) && node
->io_read
) {
246 if ((node
->pfd
.revents
& G_IO_OUT
) && node
->io_write
) {
252 qemu_lockcnt_dec(&ctx
->list_lock
);
256 static bool aio_dispatch_handlers(AioContext
*ctx
, HANDLE event
)
259 bool progress
= false;
263 * We have to walk very carefully in case aio_set_fd_handler is
264 * called while we're walking.
266 QLIST_FOREACH_SAFE_RCU(node
, &ctx
->aio_handlers
, node
, tmp
) {
267 int revents
= node
->pfd
.revents
;
269 if (!node
->deleted
&&
270 (revents
|| event_notifier_get_handle(node
->e
) == event
) &&
272 node
->pfd
.revents
= 0;
273 node
->io_notify(node
->e
);
275 /* aio_notify() does not count as progress */
276 if (node
->e
!= &ctx
->notifier
) {
281 if (!node
->deleted
&&
282 (node
->io_read
|| node
->io_write
)) {
283 node
->pfd
.revents
= 0;
284 if ((revents
& G_IO_IN
) && node
->io_read
) {
285 node
->io_read(node
->opaque
);
288 if ((revents
& G_IO_OUT
) && node
->io_write
) {
289 node
->io_write(node
->opaque
);
293 /* if the next select() will return an event, we have progressed */
294 if (event
== event_notifier_get_handle(&ctx
->notifier
)) {
296 WSAEnumNetworkEvents(node
->pfd
.fd
, event
, &ev
);
297 if (ev
.lNetworkEvents
) {
304 if (qemu_lockcnt_dec_if_lock(&ctx
->list_lock
)) {
305 QLIST_REMOVE(node
, node
);
307 qemu_lockcnt_inc_and_unlock(&ctx
->list_lock
);
315 void aio_dispatch(AioContext
*ctx
)
317 qemu_lockcnt_inc(&ctx
->list_lock
);
319 aio_dispatch_handlers(ctx
, INVALID_HANDLE_VALUE
);
320 qemu_lockcnt_dec(&ctx
->list_lock
);
321 timerlistgroup_run_timers(&ctx
->tlg
);
324 bool aio_poll(AioContext
*ctx
, bool blocking
)
327 HANDLE events
[MAXIMUM_WAIT_OBJECTS
+ 1];
328 bool progress
, have_select_revents
, first
;
333 * There cannot be two concurrent aio_poll calls for the same AioContext (or
334 * an aio_poll concurrent with a GSource prepare/check/dispatch callback).
335 * We rely on this below to avoid slow locked accesses to ctx->notify_me.
337 assert(in_aio_context_home_thread(ctx
));
340 /* aio_notify can avoid the expensive event_notifier_set if
341 * everything (file descriptors, bottom halves, timers) will
342 * be re-evaluated before the next blocking poll(). This is
343 * already true when aio_poll is called with blocking == false;
344 * if blocking == true, it is only true after poll() returns,
345 * so disable the optimization now.
348 qatomic_set(&ctx
->notify_me
, qatomic_read(&ctx
->notify_me
) + 2);
350 * Write ctx->notify_me before computing the timeout
351 * (reading bottom half flags, etc.). Pairs with
352 * smp_mb in aio_notify().
357 qemu_lockcnt_inc(&ctx
->list_lock
);
358 have_select_revents
= aio_prepare(ctx
);
362 QLIST_FOREACH_RCU(node
, &ctx
->aio_handlers
, node
) {
363 if (!node
->deleted
&& node
->io_notify
364 && aio_node_check(ctx
, node
->is_external
)) {
365 events
[count
++] = event_notifier_get_handle(node
->e
);
371 /* ctx->notifier is always registered. */
374 /* Multiple iterations, all of them non-blocking except the first,
375 * may be necessary to process all pending events. After the first
376 * WaitForMultipleObjects call ctx->notify_me will be decremented.
382 timeout
= blocking
&& !have_select_revents
383 ? qemu_timeout_ns_to_ms(aio_compute_timeout(ctx
)) : 0;
384 ret
= WaitForMultipleObjects(count
, events
, FALSE
, timeout
);
387 qatomic_store_release(&ctx
->notify_me
,
388 qatomic_read(&ctx
->notify_me
) - 2);
389 aio_notify_accept(ctx
);
393 progress
|= aio_bh_poll(ctx
);
397 /* if we have any signaled events, dispatch event */
399 if ((DWORD
) (ret
- WAIT_OBJECT_0
) < count
) {
400 event
= events
[ret
- WAIT_OBJECT_0
];
401 events
[ret
- WAIT_OBJECT_0
] = events
[--count
];
402 } else if (!have_select_revents
) {
406 have_select_revents
= false;
409 progress
|= aio_dispatch_handlers(ctx
, event
);
412 qemu_lockcnt_dec(&ctx
->list_lock
);
414 progress
|= timerlistgroup_run_timers(&ctx
->tlg
);
418 void aio_context_setup(AioContext
*ctx
)
422 void aio_context_destroy(AioContext
*ctx
)
426 void aio_context_use_g_source(AioContext
*ctx
)
430 void aio_context_set_poll_params(AioContext
*ctx
, int64_t max_ns
,
431 int64_t grow
, int64_t shrink
, Error
**errp
)
434 error_setg(errp
, "AioContext polling is not implemented on Windows");