async: Remove AsyncContext

The purpose of AsyncContexts was to protect qcow and qcow2 against reentrancy
during an emulated bdrv_read/write (which includes a qemu_aio_wait() call and
can run AIO callbacks of different requests if it weren't for AsyncContexts).

Now both qcow and qcow2 are protected by CoMutexes and AsyncContexts can be
removed.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Kevin Wolf 2011-07-15 16:36:40 +02:00
parent 52b8eb6013
commit 384acbf46b
7 changed files with 11 additions and 169 deletions

98
async.c
View File

@ -25,92 +25,8 @@
#include "qemu-common.h" #include "qemu-common.h"
#include "qemu-aio.h" #include "qemu-aio.h"
/* /* Anchor of the list of Bottom Halves belonging to the context */
* An AsyncContext protects the callbacks of AIO requests and Bottom Halves static struct QEMUBH *first_bh;
* against interfering with each other. A typical example is qcow2 that accepts
* asynchronous requests, but relies for manipulation of its metadata on
* synchronous bdrv_read/write that doesn't trigger any callbacks.
*
* However, these functions are often emulated using AIO which means that AIO
* callbacks must be run - but at the same time we must not run callbacks of
* other requests as they might start to modify metadata and corrupt the
* internal state of the caller of bdrv_read/write.
*
* To achieve the desired semantics we switch into a new AsyncContext.
* Callbacks must only be run if they belong to the current AsyncContext.
* Otherwise they need to be queued until their own context is active again.
* This is how you can make qemu_aio_wait() wait only for your own callbacks.
*
* The AsyncContexts form a stack. When you leave a AsyncContexts, you always
* return to the old ("parent") context.
*/
struct AsyncContext {
/* Consecutive number of the AsyncContext (position in the stack) */
int id;
/* Anchor of the list of Bottom Halves belonging to the context */
struct QEMUBH *first_bh;
/* Link to parent context */
struct AsyncContext *parent;
};
/* The currently active AsyncContext */
static struct AsyncContext *async_context = &(struct AsyncContext) { 0 };
/*
* Enter a new AsyncContext. Already scheduled Bottom Halves and AIO callbacks
* won't be called until this context is left again.
*/
void async_context_push(void)
{
struct AsyncContext *new = qemu_mallocz(sizeof(*new));
new->parent = async_context;
new->id = async_context->id + 1;
async_context = new;
}
/* Run queued AIO completions and destroy Bottom Half */
static void bh_run_aio_completions(void *opaque)
{
QEMUBH **bh = opaque;
qemu_bh_delete(*bh);
qemu_free(bh);
qemu_aio_process_queue();
}
/*
* Leave the currently active AsyncContext. All Bottom Halves belonging to the
* old context are executed before changing the context.
*/
void async_context_pop(void)
{
struct AsyncContext *old = async_context;
QEMUBH **bh;
/* Flush the bottom halves, we don't want to lose them */
while (qemu_bh_poll());
/* Switch back to the parent context */
async_context = async_context->parent;
qemu_free(old);
if (async_context == NULL) {
abort();
}
/* Schedule BH to run any queued AIO completions as soon as possible */
bh = qemu_malloc(sizeof(*bh));
*bh = qemu_bh_new(bh_run_aio_completions, bh);
qemu_bh_schedule(*bh);
}
/*
* Returns the ID of the currently active AsyncContext
*/
int get_async_context_id(void)
{
return async_context->id;
}
/***********************************************************/ /***********************************************************/
/* bottom halves (can be seen as timers which expire ASAP) */ /* bottom halves (can be seen as timers which expire ASAP) */
@ -130,8 +46,8 @@ QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque)
bh = qemu_mallocz(sizeof(QEMUBH)); bh = qemu_mallocz(sizeof(QEMUBH));
bh->cb = cb; bh->cb = cb;
bh->opaque = opaque; bh->opaque = opaque;
bh->next = async_context->first_bh; bh->next = first_bh;
async_context->first_bh = bh; first_bh = bh;
return bh; return bh;
} }
@ -141,7 +57,7 @@ int qemu_bh_poll(void)
int ret; int ret;
ret = 0; ret = 0;
for (bh = async_context->first_bh; bh; bh = next) { for (bh = first_bh; bh; bh = next) {
next = bh->next; next = bh->next;
if (!bh->deleted && bh->scheduled) { if (!bh->deleted && bh->scheduled) {
bh->scheduled = 0; bh->scheduled = 0;
@ -153,7 +69,7 @@ int qemu_bh_poll(void)
} }
/* remove deleted bhs */ /* remove deleted bhs */
bhp = &async_context->first_bh; bhp = &first_bh;
while (*bhp) { while (*bhp) {
bh = *bhp; bh = *bhp;
if (bh->deleted) { if (bh->deleted) {
@ -199,7 +115,7 @@ void qemu_bh_update_timeout(int *timeout)
{ {
QEMUBH *bh; QEMUBH *bh;
for (bh = async_context->first_bh; bh; bh = bh->next) { for (bh = first_bh; bh; bh = bh->next) {
if (!bh->deleted && bh->scheduled) { if (!bh->deleted && bh->scheduled) {
if (bh->idle) { if (bh->idle) {
/* idle bottom halves will be polled at least /* idle bottom halves will be polled at least

View File

@ -2777,8 +2777,6 @@ static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
struct iovec iov; struct iovec iov;
QEMUIOVector qiov; QEMUIOVector qiov;
async_context_push();
async_ret = NOT_DONE; async_ret = NOT_DONE;
iov.iov_base = (void *)buf; iov.iov_base = (void *)buf;
iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
@ -2796,7 +2794,6 @@ static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
fail: fail:
async_context_pop();
return async_ret; return async_ret;
} }
@ -2808,8 +2805,6 @@ static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
struct iovec iov; struct iovec iov;
QEMUIOVector qiov; QEMUIOVector qiov;
async_context_push();
async_ret = NOT_DONE; async_ret = NOT_DONE;
iov.iov_base = (void *)buf; iov.iov_base = (void *)buf;
iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
@ -2825,7 +2820,6 @@ static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
} }
fail: fail:
async_context_pop();
return async_ret; return async_ret;
} }

View File

@ -179,16 +179,12 @@ int qed_read_l1_table_sync(BDRVQEDState *s)
{ {
int ret = -EINPROGRESS; int ret = -EINPROGRESS;
async_context_push();
qed_read_table(s, s->header.l1_table_offset, qed_read_table(s, s->header.l1_table_offset,
s->l1_table, qed_sync_cb, &ret); s->l1_table, qed_sync_cb, &ret);
while (ret == -EINPROGRESS) { while (ret == -EINPROGRESS) {
qemu_aio_wait(); qemu_aio_wait();
} }
async_context_pop();
return ret; return ret;
} }
@ -205,15 +201,11 @@ int qed_write_l1_table_sync(BDRVQEDState *s, unsigned int index,
{ {
int ret = -EINPROGRESS; int ret = -EINPROGRESS;
async_context_push();
qed_write_l1_table(s, index, n, qed_sync_cb, &ret); qed_write_l1_table(s, index, n, qed_sync_cb, &ret);
while (ret == -EINPROGRESS) { while (ret == -EINPROGRESS) {
qemu_aio_wait(); qemu_aio_wait();
} }
async_context_pop();
return ret; return ret;
} }
@ -282,14 +274,11 @@ int qed_read_l2_table_sync(BDRVQEDState *s, QEDRequest *request, uint64_t offset
{ {
int ret = -EINPROGRESS; int ret = -EINPROGRESS;
async_context_push();
qed_read_l2_table(s, request, offset, qed_sync_cb, &ret); qed_read_l2_table(s, request, offset, qed_sync_cb, &ret);
while (ret == -EINPROGRESS) { while (ret == -EINPROGRESS) {
qemu_aio_wait(); qemu_aio_wait();
} }
async_context_pop();
return ret; return ret;
} }
@ -307,13 +296,10 @@ int qed_write_l2_table_sync(BDRVQEDState *s, QEDRequest *request,
{ {
int ret = -EINPROGRESS; int ret = -EINPROGRESS;
async_context_push();
qed_write_l2_table(s, request, index, n, flush, qed_sync_cb, &ret); qed_write_l2_table(s, request, index, n, flush, qed_sync_cb, &ret);
while (ret == -EINPROGRESS) { while (ret == -EINPROGRESS) {
qemu_aio_wait(); qemu_aio_wait();
} }
async_context_pop();
return ret; return ret;
} }

View File

@ -680,16 +680,12 @@ static int bdrv_qed_is_allocated(BlockDriverState *bs, int64_t sector_num,
}; };
QEDRequest request = { .l2_table = NULL }; QEDRequest request = { .l2_table = NULL };
async_context_push();
qed_find_cluster(s, &request, pos, len, qed_is_allocated_cb, &cb); qed_find_cluster(s, &request, pos, len, qed_is_allocated_cb, &cb);
while (cb.is_allocated == -1) { while (cb.is_allocated == -1) {
qemu_aio_wait(); qemu_aio_wait();
} }
async_context_pop();
qed_unref_l2_cache_entry(request.l2_table); qed_unref_l2_cache_entry(request.l2_table);
return cb.is_allocated; return cb.is_allocated;

View File

@ -31,7 +31,6 @@ struct qemu_laiocb {
struct iocb iocb; struct iocb iocb;
ssize_t ret; ssize_t ret;
size_t nbytes; size_t nbytes;
int async_context_id;
QLIST_ENTRY(qemu_laiocb) node; QLIST_ENTRY(qemu_laiocb) node;
}; };
@ -39,7 +38,6 @@ struct qemu_laio_state {
io_context_t ctx; io_context_t ctx;
int efd; int efd;
int count; int count;
QLIST_HEAD(, qemu_laiocb) completed_reqs;
}; };
static inline ssize_t io_event_ret(struct io_event *ev) static inline ssize_t io_event_ret(struct io_event *ev)
@ -49,7 +47,6 @@ static inline ssize_t io_event_ret(struct io_event *ev)
/* /*
* Completes an AIO request (calls the callback and frees the ACB). * Completes an AIO request (calls the callback and frees the ACB).
* Be sure to be in the right AsyncContext before calling this function.
*/ */
static void qemu_laio_process_completion(struct qemu_laio_state *s, static void qemu_laio_process_completion(struct qemu_laio_state *s,
struct qemu_laiocb *laiocb) struct qemu_laiocb *laiocb)
@ -72,42 +69,12 @@ static void qemu_laio_process_completion(struct qemu_laio_state *s,
} }
/* /*
* Processes all queued AIO requests, i.e. requests that have return from OS * All requests are directly processed when they complete, so there's nothing
* but their callback was not called yet. Requests that cannot have their * left to do during qemu_aio_wait().
* callback called in the current AsyncContext, remain in the queue.
*
* Returns 1 if at least one request could be completed, 0 otherwise.
*/ */
static int qemu_laio_process_requests(void *opaque) static int qemu_laio_process_requests(void *opaque)
{ {
struct qemu_laio_state *s = opaque; return 0;
struct qemu_laiocb *laiocb, *next;
int res = 0;
QLIST_FOREACH_SAFE (laiocb, &s->completed_reqs, node, next) {
if (laiocb->async_context_id == get_async_context_id()) {
qemu_laio_process_completion(s, laiocb);
QLIST_REMOVE(laiocb, node);
res = 1;
}
}
return res;
}
/*
* Puts a request in the completion queue so that its callback is called the
* next time when it's possible. If we already are in the right AsyncContext,
* the request is completed immediately instead.
*/
static void qemu_laio_enqueue_completed(struct qemu_laio_state *s,
struct qemu_laiocb* laiocb)
{
if (laiocb->async_context_id == get_async_context_id()) {
qemu_laio_process_completion(s, laiocb);
} else {
QLIST_INSERT_HEAD(&s->completed_reqs, laiocb, node);
}
} }
static void qemu_laio_completion_cb(void *opaque) static void qemu_laio_completion_cb(void *opaque)
@ -141,7 +108,7 @@ static void qemu_laio_completion_cb(void *opaque)
container_of(iocb, struct qemu_laiocb, iocb); container_of(iocb, struct qemu_laiocb, iocb);
laiocb->ret = io_event_ret(&events[i]); laiocb->ret = io_event_ret(&events[i]);
qemu_laio_enqueue_completed(s, laiocb); qemu_laio_process_completion(s, laiocb);
} }
} }
} }
@ -204,7 +171,6 @@ BlockDriverAIOCB *laio_submit(BlockDriverState *bs, void *aio_ctx, int fd,
laiocb->nbytes = nb_sectors * 512; laiocb->nbytes = nb_sectors * 512;
laiocb->ctx = s; laiocb->ctx = s;
laiocb->ret = -EINPROGRESS; laiocb->ret = -EINPROGRESS;
laiocb->async_context_id = get_async_context_id();
iocbs = &laiocb->iocb; iocbs = &laiocb->iocb;
@ -239,7 +205,6 @@ void *laio_init(void)
struct qemu_laio_state *s; struct qemu_laio_state *s;
s = qemu_mallocz(sizeof(*s)); s = qemu_mallocz(sizeof(*s));
QLIST_INIT(&s->completed_reqs);
s->efd = eventfd(0, 0); s->efd = eventfd(0, 0);
if (s->efd == -1) if (s->efd == -1)
goto out_free_state; goto out_free_state;

View File

@ -49,8 +49,6 @@ struct qemu_paiocb {
ssize_t ret; ssize_t ret;
int active; int active;
struct qemu_paiocb *next; struct qemu_paiocb *next;
int async_context_id;
}; };
typedef struct PosixAioState { typedef struct PosixAioState {
@ -420,7 +418,6 @@ static int posix_aio_process_queue(void *opaque)
struct qemu_paiocb *acb, **pacb; struct qemu_paiocb *acb, **pacb;
int ret; int ret;
int result = 0; int result = 0;
int async_context_id = get_async_context_id();
for(;;) { for(;;) {
pacb = &s->first_aio; pacb = &s->first_aio;
@ -429,12 +426,6 @@ static int posix_aio_process_queue(void *opaque)
if (!acb) if (!acb)
return result; return result;
/* we're only interested in requests in the right context */
if (acb->async_context_id != async_context_id) {
pacb = &acb->next;
continue;
}
ret = qemu_paio_error(acb); ret = qemu_paio_error(acb);
if (ret == ECANCELED) { if (ret == ECANCELED) {
/* remove the request */ /* remove the request */
@ -575,7 +566,6 @@ BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
acb->aio_type = type; acb->aio_type = type;
acb->aio_fildes = fd; acb->aio_fildes = fd;
acb->ev_signo = SIGUSR2; acb->ev_signo = SIGUSR2;
acb->async_context_id = get_async_context_id();
if (qiov) { if (qiov) {
acb->aio_iov = qiov->iov; acb->aio_iov = qiov->iov;
@ -604,7 +594,6 @@ BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd,
acb->aio_type = QEMU_AIO_IOCTL; acb->aio_type = QEMU_AIO_IOCTL;
acb->aio_fildes = fd; acb->aio_fildes = fd;
acb->ev_signo = SIGUSR2; acb->ev_signo = SIGUSR2;
acb->async_context_id = get_async_context_id();
acb->aio_offset = 0; acb->aio_offset = 0;
acb->aio_ioctl_buf = buf; acb->aio_ioctl_buf = buf;
acb->aio_ioctl_cmd = req; acb->aio_ioctl_cmd = req;

View File

@ -115,10 +115,6 @@ int qemu_main(int argc, char **argv, char **envp);
/* bottom halves */ /* bottom halves */
typedef void QEMUBHFunc(void *opaque); typedef void QEMUBHFunc(void *opaque);
void async_context_push(void);
void async_context_pop(void);
int get_async_context_id(void);
QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque); QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque);
void qemu_bh_schedule(QEMUBH *bh); void qemu_bh_schedule(QEMUBH *bh);
/* Bottom halfs that are scheduled from a bottom half handler are instantly /* Bottom halfs that are scheduled from a bottom half handler are instantly