2008-09-22 21:17:18 +02:00
|
|
|
/*
|
|
|
|
* QEMU aio implementation
|
|
|
|
*
|
2012-06-09 04:01:51 +02:00
|
|
|
* Copyright IBM Corp., 2008
|
|
|
|
* Copyright Red Hat Inc., 2012
|
2008-09-22 21:17:18 +02:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
2012-06-09 04:01:51 +02:00
|
|
|
* Paolo Bonzini <pbonzini@redhat.com>
|
2008-09-22 21:17:18 +02:00
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2008-09-22 21:17:18 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/queue.h"
|
|
|
|
#include "qemu/sockets.h"
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2012-06-09 04:01:51 +02:00
|
|
|
struct AioHandler {
|
|
|
|
EventNotifier *e;
|
|
|
|
EventNotifierHandler *io_notify;
|
2012-09-24 14:57:22 +02:00
|
|
|
GPollFD pfd;
|
2008-09-22 21:17:18 +02:00
|
|
|
int deleted;
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_ENTRY(AioHandler) node;
|
2008-09-22 21:17:18 +02:00
|
|
|
};
|
|
|
|
|
2012-06-09 04:01:51 +02:00
|
|
|
void aio_set_event_notifier(AioContext *ctx,
|
|
|
|
EventNotifier *e,
|
2013-04-11 17:26:25 +02:00
|
|
|
EventNotifierHandler *io_notify)
|
2008-09-22 21:17:18 +02:00
|
|
|
{
|
|
|
|
AioHandler *node;
|
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
QLIST_FOREACH(node, &ctx->aio_handlers, node) {
|
2012-06-09 04:01:51 +02:00
|
|
|
if (node->e == e && !node->deleted) {
|
|
|
|
break;
|
|
|
|
}
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Are we deleting the fd handler? */
|
2012-06-09 04:01:51 +02:00
|
|
|
if (!io_notify) {
|
2008-09-22 21:17:18 +02:00
|
|
|
if (node) {
|
2012-09-24 14:57:41 +02:00
|
|
|
g_source_remove_poll(&ctx->source, &node->pfd);
|
|
|
|
|
2008-09-22 21:17:18 +02:00
|
|
|
/* If the lock is held, just mark the node as deleted */
|
2012-09-24 14:57:22 +02:00
|
|
|
if (ctx->walking_handlers) {
|
2008-09-22 21:17:18 +02:00
|
|
|
node->deleted = 1;
|
2012-09-24 14:57:22 +02:00
|
|
|
node->pfd.revents = 0;
|
|
|
|
} else {
|
2008-09-22 21:17:18 +02:00
|
|
|
/* Otherwise, delete it for real. We can't just mark it as
|
|
|
|
* deleted because deleted nodes are only cleaned up after
|
|
|
|
* releasing the walking_handlers lock.
|
|
|
|
*/
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_REMOVE(node, node);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(node);
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (node == NULL) {
|
|
|
|
/* Alloc and insert if it's not already there */
|
2011-08-21 05:09:37 +02:00
|
|
|
node = g_malloc0(sizeof(AioHandler));
|
2012-06-09 04:01:51 +02:00
|
|
|
node->e = e;
|
|
|
|
node->pfd.fd = (uintptr_t)event_notifier_get_handle(e);
|
|
|
|
node->pfd.events = G_IO_IN;
|
2012-09-13 12:28:51 +02:00
|
|
|
QLIST_INSERT_HEAD(&ctx->aio_handlers, node, node);
|
2012-09-24 14:57:41 +02:00
|
|
|
|
|
|
|
g_source_add_poll(&ctx->source, &node->pfd);
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
|
|
|
/* Update handler with latest information */
|
2012-06-09 04:01:51 +02:00
|
|
|
node->io_notify = io_notify;
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
2012-09-25 10:22:39 +02:00
|
|
|
|
|
|
|
aio_notify(ctx);
|
2012-06-09 03:44:00 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 14:57:22 +02:00
|
|
|
bool aio_pending(AioContext *ctx)
|
|
|
|
{
|
|
|
|
AioHandler *node;
|
|
|
|
|
|
|
|
QLIST_FOREACH(node, &ctx->aio_handlers, node) {
|
2012-06-09 04:01:51 +02:00
|
|
|
if (node->pfd.revents && node->io_notify) {
|
2012-09-24 14:57:22 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-24 14:37:53 +02:00
|
|
|
bool aio_poll(AioContext *ctx, bool blocking)
|
2008-09-22 21:17:18 +02:00
|
|
|
{
|
2012-04-12 14:00:56 +02:00
|
|
|
AioHandler *node;
|
2012-06-09 04:01:51 +02:00
|
|
|
HANDLE events[MAXIMUM_WAIT_OBJECTS + 1];
|
2013-04-11 16:56:50 +02:00
|
|
|
bool progress;
|
2012-06-09 04:01:51 +02:00
|
|
|
int count;
|
2013-08-21 17:02:53 +02:00
|
|
|
int timeout;
|
2012-09-24 14:37:53 +02:00
|
|
|
|
|
|
|
progress = false;
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2009-10-22 17:54:36 +02:00
|
|
|
/*
|
|
|
|
* If there are callbacks left that have been queued, we need to call then.
|
2012-04-12 14:00:55 +02:00
|
|
|
* Do not call select in this case, because it is possible that the caller
|
|
|
|
* does not need a complete flush (as is the case for qemu_aio_wait loops).
|
2009-10-22 17:54:36 +02:00
|
|
|
*/
|
2012-09-13 12:28:51 +02:00
|
|
|
if (aio_bh_poll(ctx)) {
|
2012-09-24 14:37:53 +02:00
|
|
|
blocking = false;
|
|
|
|
progress = true;
|
|
|
|
}
|
|
|
|
|
2013-08-21 17:02:53 +02:00
|
|
|
/* Run timers */
|
|
|
|
progress |= timerlistgroup_run_timers(&ctx->tlg);
|
|
|
|
|
2012-09-24 14:57:22 +02:00
|
|
|
/*
|
|
|
|
* Then dispatch any pending callbacks from the GSource.
|
|
|
|
*
|
|
|
|
* We have to walk very carefully in case qemu_aio_set_fd_handler is
|
|
|
|
* called while we're walking.
|
|
|
|
*/
|
|
|
|
node = QLIST_FIRST(&ctx->aio_handlers);
|
|
|
|
while (node) {
|
|
|
|
AioHandler *tmp;
|
|
|
|
|
|
|
|
ctx->walking_handlers++;
|
|
|
|
|
2012-06-09 04:01:51 +02:00
|
|
|
if (node->pfd.revents && node->io_notify) {
|
|
|
|
node->pfd.revents = 0;
|
|
|
|
node->io_notify(node->e);
|
2013-04-11 16:56:50 +02:00
|
|
|
|
|
|
|
/* aio_notify() does not count as progress */
|
2013-08-22 15:28:35 +02:00
|
|
|
if (node->e != &ctx->notifier) {
|
2013-04-11 16:56:50 +02:00
|
|
|
progress = true;
|
|
|
|
}
|
2012-09-24 14:57:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
tmp = node;
|
|
|
|
node = QLIST_NEXT(node, node);
|
|
|
|
|
|
|
|
ctx->walking_handlers--;
|
|
|
|
|
|
|
|
if (!ctx->walking_handlers && tmp->deleted) {
|
|
|
|
QLIST_REMOVE(tmp, node);
|
|
|
|
g_free(tmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-24 14:37:53 +02:00
|
|
|
if (progress && !blocking) {
|
2012-04-12 14:00:55 +02:00
|
|
|
return true;
|
2012-04-12 14:00:54 +02:00
|
|
|
}
|
2009-10-22 17:54:36 +02:00
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
ctx->walking_handlers++;
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2012-04-12 14:00:56 +02:00
|
|
|
/* fill fd sets */
|
2012-06-09 04:01:51 +02:00
|
|
|
count = 0;
|
2012-09-13 12:28:51 +02:00
|
|
|
QLIST_FOREACH(node, &ctx->aio_handlers, node) {
|
2012-06-09 04:01:51 +02:00
|
|
|
if (!node->deleted && node->io_notify) {
|
|
|
|
events[count++] = event_notifier_get_handle(node->e);
|
2012-04-12 14:00:56 +02:00
|
|
|
}
|
|
|
|
}
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
ctx->walking_handlers--;
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2013-04-11 16:56:50 +02:00
|
|
|
/* early return if we only have the aio_notify() fd */
|
|
|
|
if (count == 1) {
|
2012-09-24 14:37:53 +02:00
|
|
|
return progress;
|
2012-04-12 14:00:56 +02:00
|
|
|
}
|
2008-09-22 21:17:18 +02:00
|
|
|
|
2012-04-12 14:00:56 +02:00
|
|
|
/* wait until next event */
|
2012-11-23 15:59:43 +01:00
|
|
|
while (count > 0) {
|
2013-08-21 17:02:53 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
timeout = blocking ?
|
|
|
|
qemu_timeout_ns_to_ms(timerlistgroup_deadline_ns(&ctx->tlg)) : 0;
|
|
|
|
ret = WaitForMultipleObjects(count, events, FALSE, timeout);
|
2012-06-09 04:01:51 +02:00
|
|
|
|
|
|
|
/* if we have any signaled events, dispatch event */
|
|
|
|
if ((DWORD) (ret - WAIT_OBJECT_0) >= count) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
blocking = false;
|
2012-04-12 14:00:56 +02:00
|
|
|
|
|
|
|
/* we have to walk very carefully in case
|
|
|
|
* qemu_aio_set_fd_handler is called while we're walking */
|
2012-09-13 12:28:51 +02:00
|
|
|
node = QLIST_FIRST(&ctx->aio_handlers);
|
2012-04-12 14:00:56 +02:00
|
|
|
while (node) {
|
|
|
|
AioHandler *tmp;
|
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
ctx->walking_handlers++;
|
2012-09-27 15:57:43 +02:00
|
|
|
|
2012-04-12 14:00:56 +02:00
|
|
|
if (!node->deleted &&
|
2012-06-09 04:01:51 +02:00
|
|
|
event_notifier_get_handle(node->e) == events[ret - WAIT_OBJECT_0] &&
|
|
|
|
node->io_notify) {
|
|
|
|
node->io_notify(node->e);
|
2013-04-11 16:56:50 +02:00
|
|
|
|
|
|
|
/* aio_notify() does not count as progress */
|
2013-08-22 15:28:35 +02:00
|
|
|
if (node->e != &ctx->notifier) {
|
2013-04-11 16:56:50 +02:00
|
|
|
progress = true;
|
|
|
|
}
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
|
|
|
|
2012-04-12 14:00:56 +02:00
|
|
|
tmp = node;
|
|
|
|
node = QLIST_NEXT(node, node);
|
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
ctx->walking_handlers--;
|
2012-09-27 15:57:43 +02:00
|
|
|
|
2012-09-13 12:28:51 +02:00
|
|
|
if (!ctx->walking_handlers && tmp->deleted) {
|
2012-04-12 14:00:56 +02:00
|
|
|
QLIST_REMOVE(tmp, node);
|
|
|
|
g_free(tmp);
|
|
|
|
}
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|
2012-11-23 15:59:43 +01:00
|
|
|
|
|
|
|
/* Try again, but only call each handler once. */
|
|
|
|
events[ret - WAIT_OBJECT_0] = events[--count];
|
2012-04-12 14:00:56 +02:00
|
|
|
}
|
2012-04-12 14:00:55 +02:00
|
|
|
|
2013-08-21 17:02:53 +02:00
|
|
|
if (blocking) {
|
|
|
|
/* Run the timers a second time. We do this because otherwise aio_wait
|
|
|
|
* will not note progress - and will stop a drain early - if we have
|
|
|
|
* a timer that was not ready to run entering g_poll but is ready
|
|
|
|
* after g_poll. This will only do anything if a timer has expired.
|
|
|
|
*/
|
|
|
|
progress |= timerlistgroup_run_timers(&ctx->tlg);
|
|
|
|
}
|
|
|
|
|
2013-04-11 16:56:50 +02:00
|
|
|
return progress;
|
2008-09-22 21:17:18 +02:00
|
|
|
}
|