2 * Linux native AIO support.
4 * Copyright (C) 2009 IBM, Corp.
5 * Copyright (C) 2009 Red Hat, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
10 #include "qemu-common.h"
12 #include "block/raw-posix-aio.h"
14 #include <sys/eventfd.h>
18 * Queue size (per-device).
20 * XXX: eventually we need to communicate this to the guest and/or make it
21 * tunable by the guest. If we get more outstanding requests at a time
22 * than this we will get EAGAIN from io_submit which is communicated to
23 * the guest as an I/O error.
25 #define MAX_EVENTS 128
28 BlockDriverAIOCB common;
29 struct qemu_laio_state *ctx;
35 QLIST_ENTRY(qemu_laiocb) node;
38 struct qemu_laio_state {
44 static inline ssize_t io_event_ret(struct io_event *ev)
46 return (ssize_t)(((uint64_t)ev->res2 << 32) | ev->res);
50 * Completes an AIO request (calls the callback and frees the ACB).
52 static void qemu_laio_process_completion(struct qemu_laio_state *s,
53 struct qemu_laiocb *laiocb)
60 if (ret != -ECANCELED) {
61 if (ret == laiocb->nbytes) {
63 } else if (ret >= 0) {
64 /* Short reads mean EOF, pad with zeros. */
65 if (laiocb->is_read) {
66 qemu_iovec_memset_skip(laiocb->qiov, 0,
67 laiocb->qiov->size - ret, ret);
73 laiocb->common.cb(laiocb->common.opaque, ret);
76 qemu_aio_release(laiocb);
79 static void qemu_laio_completion_cb(void *opaque)
81 struct qemu_laio_state *s = opaque;
84 struct io_event events[MAX_EVENTS];
87 struct timespec ts = { 0 };
91 ret = read(s->efd, &val, sizeof(val));
92 } while (ret == -1 && errno == EINTR);
94 if (ret == -1 && errno == EAGAIN)
101 nevents = io_getevents(s->ctx, val, MAX_EVENTS, events, &ts);
102 } while (nevents == -EINTR);
104 for (i = 0; i < nevents; i++) {
105 struct iocb *iocb = events[i].obj;
106 struct qemu_laiocb *laiocb =
107 container_of(iocb, struct qemu_laiocb, iocb);
109 laiocb->ret = io_event_ret(&events[i]);
110 qemu_laio_process_completion(s, laiocb);
115 static int qemu_laio_flush_cb(void *opaque)
117 struct qemu_laio_state *s = opaque;
119 return (s->count > 0) ? 1 : 0;
122 static void laio_cancel(BlockDriverAIOCB *blockacb)
124 struct qemu_laiocb *laiocb = (struct qemu_laiocb *)blockacb;
125 struct io_event event;
128 if (laiocb->ret != -EINPROGRESS)
132 * Note that as of Linux 2.6.31 neither the block device code nor any
133 * filesystem implements cancellation of AIO request.
134 * Thus the polling loop below is the normal code path.
136 ret = io_cancel(laiocb->ctx->ctx, &laiocb->iocb, &event);
138 laiocb->ret = -ECANCELED;
143 * We have to wait for the iocb to finish.
145 * The only way to get the iocb status update is by polling the io context.
146 * We might be able to do this slightly more optimal by removing the
149 while (laiocb->ret == -EINPROGRESS)
150 qemu_laio_completion_cb(laiocb->ctx);
153 static AIOPool laio_pool = {
154 .aiocb_size = sizeof(struct qemu_laiocb),
155 .cancel = laio_cancel,
158 BlockDriverAIOCB *laio_submit(BlockDriverState *bs, void *aio_ctx, int fd,
159 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
160 BlockDriverCompletionFunc *cb, void *opaque, int type)
162 struct qemu_laio_state *s = aio_ctx;
163 struct qemu_laiocb *laiocb;
165 off_t offset = sector_num * 512;
167 laiocb = qemu_aio_get(&laio_pool, bs, cb, opaque);
168 laiocb->nbytes = nb_sectors * 512;
170 laiocb->ret = -EINPROGRESS;
171 laiocb->is_read = (type == QEMU_AIO_READ);
174 iocbs = &laiocb->iocb;
178 io_prep_pwritev(iocbs, fd, qiov->iov, qiov->niov, offset);
181 io_prep_preadv(iocbs, fd, qiov->iov, qiov->niov, offset);
183 /* Currently Linux kernel does not support other operations */
185 fprintf(stderr, "%s: invalid AIO request type 0x%x.\n",
189 io_set_eventfd(&laiocb->iocb, s->efd);
192 if (io_submit(s->ctx, 1, &iocbs) < 0)
194 return &laiocb->common;
199 qemu_aio_release(laiocb);
203 void *laio_init(void)
205 struct qemu_laio_state *s;
207 s = g_malloc0(sizeof(*s));
208 s->efd = eventfd(0, 0);
211 fcntl(s->efd, F_SETFL, O_NONBLOCK);
213 if (io_setup(MAX_EVENTS, &s->ctx) != 0)
216 qemu_aio_set_fd_handler(s->efd, qemu_laio_completion_cb, NULL,
217 qemu_laio_flush_cb, s);