Merge commit 'afb63ebd0a9599312c27ecceb839a399740e00ef' into upstream-merge
[qemu-kvm.git] / posix-aio-compat.c
blob96e4daf5059fedae6ca8f4d6ed8292562e0ce4a5
1 /*
2 * QEMU posix-aio emulation
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
16 #include <sys/ioctl.h>
17 #include <sys/types.h>
18 #include <pthread.h>
19 #include <unistd.h>
20 #include <errno.h>
21 #include <time.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <stdio.h>
26 #include "qemu-queue.h"
27 #include "osdep.h"
28 #include "sysemu.h"
29 #include "qemu-common.h"
30 #include "trace.h"
31 #include "block_int.h"
32 #include "iov.h"
34 #include "block/raw-posix-aio.h"
36 static void do_spawn_thread(void);
38 struct qemu_paiocb {
39 BlockDriverAIOCB common;
40 int aio_fildes;
41 union {
42 struct iovec *aio_iov;
43 void *aio_ioctl_buf;
45 int aio_niov;
46 size_t aio_nbytes;
47 #define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
48 off_t aio_offset;
50 QTAILQ_ENTRY(qemu_paiocb) node;
51 int aio_type;
52 ssize_t ret;
53 int active;
54 struct qemu_paiocb *next;
57 typedef struct PosixAioState {
58 int rfd, wfd;
59 struct qemu_paiocb *first_aio;
60 } PosixAioState;
63 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
64 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
65 static pthread_t thread_id;
66 static pthread_attr_t attr;
67 static int max_threads = 64;
68 static int cur_threads = 0;
69 static int idle_threads = 0;
70 static int new_threads = 0; /* backlog of threads we need to create */
71 static int pending_threads = 0; /* threads created but not running yet */
72 static QEMUBH *new_thread_bh;
73 static QTAILQ_HEAD(, qemu_paiocb) request_list;
75 #ifdef CONFIG_PREADV
76 static int preadv_present = 1;
77 #else
78 static int preadv_present = 0;
79 #endif
81 static void die2(int err, const char *what)
83 fprintf(stderr, "%s failed: %s\n", what, strerror(err));
84 abort();
87 static void die(const char *what)
89 die2(errno, what);
92 static void mutex_lock(pthread_mutex_t *mutex)
94 int ret = pthread_mutex_lock(mutex);
95 if (ret) die2(ret, "pthread_mutex_lock");
98 static void mutex_unlock(pthread_mutex_t *mutex)
100 int ret = pthread_mutex_unlock(mutex);
101 if (ret) die2(ret, "pthread_mutex_unlock");
104 static int cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
105 struct timespec *ts)
107 int ret = pthread_cond_timedwait(cond, mutex, ts);
108 if (ret && ret != ETIMEDOUT) die2(ret, "pthread_cond_timedwait");
109 return ret;
112 static void cond_signal(pthread_cond_t *cond)
114 int ret = pthread_cond_signal(cond);
115 if (ret) die2(ret, "pthread_cond_signal");
118 static void thread_create(pthread_t *thread, pthread_attr_t *attr,
119 void *(*start_routine)(void*), void *arg)
121 int ret = pthread_create(thread, attr, start_routine, arg);
122 if (ret) die2(ret, "pthread_create");
125 static ssize_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb)
127 int ret;
129 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
130 if (ret == -1)
131 return -errno;
134 * This looks weird, but the aio code only considers a request
135 * successful if it has written the full number of bytes.
137 * Now we overload aio_nbytes as aio_ioctl_cmd for the ioctl command,
138 * so in fact we return the ioctl command here to make posix_aio_read()
139 * happy..
141 return aiocb->aio_nbytes;
144 static ssize_t handle_aiocb_flush(struct qemu_paiocb *aiocb)
146 int ret;
148 ret = qemu_fdatasync(aiocb->aio_fildes);
149 if (ret == -1)
150 return -errno;
151 return 0;
154 #ifdef CONFIG_PREADV
156 static ssize_t
157 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
159 return preadv(fd, iov, nr_iov, offset);
162 static ssize_t
163 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
165 return pwritev(fd, iov, nr_iov, offset);
168 #else
170 static ssize_t
171 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
173 return -ENOSYS;
176 static ssize_t
177 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
179 return -ENOSYS;
182 #endif
184 static ssize_t handle_aiocb_rw_vector(struct qemu_paiocb *aiocb)
186 ssize_t len;
188 do {
189 if (aiocb->aio_type & QEMU_AIO_WRITE)
190 len = qemu_pwritev(aiocb->aio_fildes,
191 aiocb->aio_iov,
192 aiocb->aio_niov,
193 aiocb->aio_offset);
194 else
195 len = qemu_preadv(aiocb->aio_fildes,
196 aiocb->aio_iov,
197 aiocb->aio_niov,
198 aiocb->aio_offset);
199 } while (len == -1 && errno == EINTR);
201 if (len == -1)
202 return -errno;
203 return len;
207 * Read/writes the data to/from a given linear buffer.
209 * Returns the number of bytes handles or -errno in case of an error. Short
210 * reads are only returned if the end of the file is reached.
212 static ssize_t handle_aiocb_rw_linear(struct qemu_paiocb *aiocb, char *buf)
214 ssize_t offset = 0;
215 ssize_t len;
217 while (offset < aiocb->aio_nbytes) {
218 if (aiocb->aio_type & QEMU_AIO_WRITE)
219 len = pwrite(aiocb->aio_fildes,
220 (const char *)buf + offset,
221 aiocb->aio_nbytes - offset,
222 aiocb->aio_offset + offset);
223 else
224 len = pread(aiocb->aio_fildes,
225 buf + offset,
226 aiocb->aio_nbytes - offset,
227 aiocb->aio_offset + offset);
229 if (len == -1 && errno == EINTR)
230 continue;
231 else if (len == -1) {
232 offset = -errno;
233 break;
234 } else if (len == 0)
235 break;
237 offset += len;
240 return offset;
243 static ssize_t handle_aiocb_rw(struct qemu_paiocb *aiocb)
245 ssize_t nbytes;
246 char *buf;
248 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
250 * If there is just a single buffer, and it is properly aligned
251 * we can just use plain pread/pwrite without any problems.
253 if (aiocb->aio_niov == 1)
254 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
257 * We have more than one iovec, and all are properly aligned.
259 * Try preadv/pwritev first and fall back to linearizing the
260 * buffer if it's not supported.
262 if (preadv_present) {
263 nbytes = handle_aiocb_rw_vector(aiocb);
264 if (nbytes == aiocb->aio_nbytes)
265 return nbytes;
266 if (nbytes < 0 && nbytes != -ENOSYS)
267 return nbytes;
268 preadv_present = 0;
272 * XXX(hch): short read/write. no easy way to handle the reminder
273 * using these interfaces. For now retry using plain
274 * pread/pwrite?
279 * Ok, we have to do it the hard way, copy all segments into
280 * a single aligned buffer.
282 buf = qemu_blockalign(aiocb->common.bs, aiocb->aio_nbytes);
283 if (aiocb->aio_type & QEMU_AIO_WRITE) {
284 char *p = buf;
285 int i;
287 for (i = 0; i < aiocb->aio_niov; ++i) {
288 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
289 p += aiocb->aio_iov[i].iov_len;
293 nbytes = handle_aiocb_rw_linear(aiocb, buf);
294 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
295 char *p = buf;
296 size_t count = aiocb->aio_nbytes, copy;
297 int i;
299 for (i = 0; i < aiocb->aio_niov && count; ++i) {
300 copy = count;
301 if (copy > aiocb->aio_iov[i].iov_len)
302 copy = aiocb->aio_iov[i].iov_len;
303 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
304 p += copy;
305 count -= copy;
308 qemu_vfree(buf);
310 return nbytes;
313 static void posix_aio_notify_event(void);
315 static void *aio_thread(void *unused)
317 mutex_lock(&lock);
318 pending_threads--;
319 mutex_unlock(&lock);
320 do_spawn_thread();
322 while (1) {
323 struct qemu_paiocb *aiocb;
324 ssize_t ret = 0;
325 qemu_timeval tv;
326 struct timespec ts;
328 qemu_gettimeofday(&tv);
329 ts.tv_sec = tv.tv_sec + 10;
330 ts.tv_nsec = 0;
332 mutex_lock(&lock);
334 while (QTAILQ_EMPTY(&request_list) &&
335 !(ret == ETIMEDOUT)) {
336 idle_threads++;
337 ret = cond_timedwait(&cond, &lock, &ts);
338 idle_threads--;
341 if (QTAILQ_EMPTY(&request_list))
342 break;
344 aiocb = QTAILQ_FIRST(&request_list);
345 QTAILQ_REMOVE(&request_list, aiocb, node);
346 aiocb->active = 1;
347 mutex_unlock(&lock);
349 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
350 case QEMU_AIO_READ:
351 ret = handle_aiocb_rw(aiocb);
352 if (ret >= 0 && ret < aiocb->aio_nbytes && aiocb->common.bs->growable) {
353 /* A short read means that we have reached EOF. Pad the buffer
354 * with zeros for bytes after EOF. */
355 iov_memset(aiocb->aio_iov, aiocb->aio_niov, ret,
356 0, aiocb->aio_nbytes - ret);
358 ret = aiocb->aio_nbytes;
360 break;
361 case QEMU_AIO_WRITE:
362 ret = handle_aiocb_rw(aiocb);
363 break;
364 case QEMU_AIO_FLUSH:
365 ret = handle_aiocb_flush(aiocb);
366 break;
367 case QEMU_AIO_IOCTL:
368 ret = handle_aiocb_ioctl(aiocb);
369 break;
370 default:
371 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
372 ret = -EINVAL;
373 break;
376 mutex_lock(&lock);
377 aiocb->ret = ret;
378 mutex_unlock(&lock);
380 posix_aio_notify_event();
383 cur_threads--;
384 mutex_unlock(&lock);
386 return NULL;
389 static void do_spawn_thread(void)
391 sigset_t set, oldset;
393 mutex_lock(&lock);
394 if (!new_threads) {
395 mutex_unlock(&lock);
396 return;
399 new_threads--;
400 pending_threads++;
402 mutex_unlock(&lock);
404 /* block all signals */
405 if (sigfillset(&set)) die("sigfillset");
406 if (sigprocmask(SIG_SETMASK, &set, &oldset)) die("sigprocmask");
408 thread_create(&thread_id, &attr, aio_thread, NULL);
410 if (sigprocmask(SIG_SETMASK, &oldset, NULL)) die("sigprocmask restore");
413 static void spawn_thread_bh_fn(void *opaque)
415 do_spawn_thread();
418 static void spawn_thread(void)
420 cur_threads++;
421 new_threads++;
422 /* If there are threads being created, they will spawn new workers, so
423 * we don't spend time creating many threads in a loop holding a mutex or
424 * starving the current vcpu.
426 * If there are no idle threads, ask the main thread to create one, so we
427 * inherit the correct affinity instead of the vcpu affinity.
429 if (!pending_threads) {
430 qemu_bh_schedule(new_thread_bh);
434 static void qemu_paio_submit(struct qemu_paiocb *aiocb)
436 aiocb->ret = -EINPROGRESS;
437 aiocb->active = 0;
438 mutex_lock(&lock);
439 if (idle_threads == 0 && cur_threads < max_threads)
440 spawn_thread();
441 QTAILQ_INSERT_TAIL(&request_list, aiocb, node);
442 mutex_unlock(&lock);
443 cond_signal(&cond);
446 static ssize_t qemu_paio_return(struct qemu_paiocb *aiocb)
448 ssize_t ret;
450 mutex_lock(&lock);
451 ret = aiocb->ret;
452 mutex_unlock(&lock);
454 return ret;
457 static int qemu_paio_error(struct qemu_paiocb *aiocb)
459 ssize_t ret = qemu_paio_return(aiocb);
461 if (ret < 0)
462 ret = -ret;
463 else
464 ret = 0;
466 return ret;
469 static void posix_aio_read(void *opaque)
471 PosixAioState *s = opaque;
472 struct qemu_paiocb *acb, **pacb;
473 int ret;
474 ssize_t len;
476 /* read all bytes from signal pipe */
477 for (;;) {
478 char bytes[16];
480 len = read(s->rfd, bytes, sizeof(bytes));
481 if (len == -1 && errno == EINTR)
482 continue; /* try again */
483 if (len == sizeof(bytes))
484 continue; /* more to read */
485 break;
488 for(;;) {
489 pacb = &s->first_aio;
490 for(;;) {
491 acb = *pacb;
492 if (!acb)
493 return;
495 ret = qemu_paio_error(acb);
496 if (ret == ECANCELED) {
497 /* remove the request */
498 *pacb = acb->next;
499 qemu_aio_release(acb);
500 } else if (ret != EINPROGRESS) {
501 /* end of aio */
502 if (ret == 0) {
503 ret = qemu_paio_return(acb);
504 if (ret == acb->aio_nbytes)
505 ret = 0;
506 else
507 ret = -EINVAL;
508 } else {
509 ret = -ret;
512 trace_paio_complete(acb, acb->common.opaque, ret);
514 /* remove the request */
515 *pacb = acb->next;
516 /* call the callback */
517 acb->common.cb(acb->common.opaque, ret);
518 qemu_aio_release(acb);
519 break;
520 } else {
521 pacb = &acb->next;
527 static int posix_aio_flush(void *opaque)
529 PosixAioState *s = opaque;
530 return !!s->first_aio;
533 static PosixAioState *posix_aio_state;
535 static void posix_aio_notify_event(void)
537 char byte = 0;
538 ssize_t ret;
540 ret = write(posix_aio_state->wfd, &byte, sizeof(byte));
541 if (ret < 0 && errno != EAGAIN)
542 die("write()");
545 static void paio_remove(struct qemu_paiocb *acb)
547 struct qemu_paiocb **pacb;
549 /* remove the callback from the queue */
550 pacb = &posix_aio_state->first_aio;
551 for(;;) {
552 if (*pacb == NULL) {
553 fprintf(stderr, "paio_remove: aio request not found!\n");
554 break;
555 } else if (*pacb == acb) {
556 *pacb = acb->next;
557 qemu_aio_release(acb);
558 break;
560 pacb = &(*pacb)->next;
564 static void paio_cancel(BlockDriverAIOCB *blockacb)
566 struct qemu_paiocb *acb = (struct qemu_paiocb *)blockacb;
567 int active = 0;
569 trace_paio_cancel(acb, acb->common.opaque);
571 mutex_lock(&lock);
572 if (!acb->active) {
573 QTAILQ_REMOVE(&request_list, acb, node);
574 acb->ret = -ECANCELED;
575 } else if (acb->ret == -EINPROGRESS) {
576 active = 1;
578 mutex_unlock(&lock);
580 if (active) {
581 /* fail safe: if the aio could not be canceled, we wait for
582 it */
583 while (qemu_paio_error(acb) == EINPROGRESS)
587 paio_remove(acb);
590 static AIOPool raw_aio_pool = {
591 .aiocb_size = sizeof(struct qemu_paiocb),
592 .cancel = paio_cancel,
595 BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
596 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
597 BlockDriverCompletionFunc *cb, void *opaque, int type)
599 struct qemu_paiocb *acb;
601 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
602 acb->aio_type = type;
603 acb->aio_fildes = fd;
605 if (qiov) {
606 acb->aio_iov = qiov->iov;
607 acb->aio_niov = qiov->niov;
609 acb->aio_nbytes = nb_sectors * 512;
610 acb->aio_offset = sector_num * 512;
612 acb->next = posix_aio_state->first_aio;
613 posix_aio_state->first_aio = acb;
615 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
616 qemu_paio_submit(acb);
617 return &acb->common;
620 BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd,
621 unsigned long int req, void *buf,
622 BlockDriverCompletionFunc *cb, void *opaque)
624 struct qemu_paiocb *acb;
626 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
627 acb->aio_type = QEMU_AIO_IOCTL;
628 acb->aio_fildes = fd;
629 acb->aio_offset = 0;
630 acb->aio_ioctl_buf = buf;
631 acb->aio_ioctl_cmd = req;
633 acb->next = posix_aio_state->first_aio;
634 posix_aio_state->first_aio = acb;
636 qemu_paio_submit(acb);
637 return &acb->common;
640 int paio_init(void)
642 PosixAioState *s;
643 int fds[2];
644 int ret;
646 if (posix_aio_state)
647 return 0;
649 s = g_malloc(sizeof(PosixAioState));
651 s->first_aio = NULL;
652 if (qemu_pipe(fds) == -1) {
653 fprintf(stderr, "failed to create pipe\n");
654 g_free(s);
655 return -1;
658 s->rfd = fds[0];
659 s->wfd = fds[1];
661 fcntl(s->rfd, F_SETFL, O_NONBLOCK);
662 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
664 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush, s);
666 ret = pthread_attr_init(&attr);
667 if (ret)
668 die2(ret, "pthread_attr_init");
670 ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
671 if (ret)
672 die2(ret, "pthread_attr_setdetachstate");
674 QTAILQ_INIT(&request_list);
675 new_thread_bh = qemu_bh_new(spawn_thread_bh_fn, NULL);
677 posix_aio_state = s;
678 return 0;