qemu-kvm: Remove obsolete current_env
[qemu-kvm.git] / posix-aio-compat.c
blobd3b5b6de54a74b769041b695ec54d1409bcc6b79
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.
14 #include <sys/ioctl.h>
15 #include <sys/types.h>
16 #include <pthread.h>
17 #include <unistd.h>
18 #include <errno.h>
19 #include <time.h>
20 #include <signal.h>
21 #include <string.h>
22 #include <stdlib.h>
23 #include <stdio.h>
25 #include "qemu-queue.h"
26 #include "osdep.h"
27 #include "sysemu.h"
28 #include "qemu-common.h"
29 #include "trace.h"
30 #include "block_int.h"
31 #include "compatfd.h"
33 #include "block/raw-posix-aio.h"
36 struct qemu_paiocb {
37 BlockDriverAIOCB common;
38 int aio_fildes;
39 union {
40 struct iovec *aio_iov;
41 void *aio_ioctl_buf;
43 int aio_niov;
44 size_t aio_nbytes;
45 #define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
46 int ev_signo;
47 off_t aio_offset;
49 QTAILQ_ENTRY(qemu_paiocb) node;
50 int aio_type;
51 ssize_t ret;
52 int active;
53 struct qemu_paiocb *next;
55 int async_context_id;
58 typedef struct PosixAioState {
59 int fd;
60 struct qemu_paiocb *first_aio;
61 } PosixAioState;
64 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
65 static pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
66 static pthread_t thread_id;
67 static pthread_attr_t attr;
68 static int max_threads = 64;
69 static int cur_threads = 0;
70 static int idle_threads = 0;
71 static QTAILQ_HEAD(, qemu_paiocb) request_list;
73 #ifdef CONFIG_PREADV
74 static int preadv_present = 1;
75 #else
76 static int preadv_present = 0;
77 #endif
79 static void die2(int err, const char *what)
81 fprintf(stderr, "%s failed: %s\n", what, strerror(err));
82 abort();
85 static void die(const char *what)
87 die2(errno, what);
90 static void mutex_lock(pthread_mutex_t *mutex)
92 int ret = pthread_mutex_lock(mutex);
93 if (ret) die2(ret, "pthread_mutex_lock");
96 static void mutex_unlock(pthread_mutex_t *mutex)
98 int ret = pthread_mutex_unlock(mutex);
99 if (ret) die2(ret, "pthread_mutex_unlock");
102 static int cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
103 struct timespec *ts)
105 int ret = pthread_cond_timedwait(cond, mutex, ts);
106 if (ret && ret != ETIMEDOUT) die2(ret, "pthread_cond_timedwait");
107 return ret;
110 static void cond_signal(pthread_cond_t *cond)
112 int ret = pthread_cond_signal(cond);
113 if (ret) die2(ret, "pthread_cond_signal");
116 static void thread_create(pthread_t *thread, pthread_attr_t *attr,
117 void *(*start_routine)(void*), void *arg)
119 int ret = pthread_create(thread, attr, start_routine, arg);
120 if (ret) die2(ret, "pthread_create");
123 static ssize_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb)
125 int ret;
127 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
128 if (ret == -1)
129 return -errno;
132 * This looks weird, but the aio code only consideres a request
133 * successful if it has written the number full number of bytes.
135 * Now we overload aio_nbytes as aio_ioctl_cmd for the ioctl command,
136 * so in fact we return the ioctl command here to make posix_aio_read()
137 * happy..
139 return aiocb->aio_nbytes;
142 static ssize_t handle_aiocb_flush(struct qemu_paiocb *aiocb)
144 int ret;
146 ret = qemu_fdatasync(aiocb->aio_fildes);
147 if (ret == -1)
148 return -errno;
149 return 0;
152 #ifdef CONFIG_PREADV
154 static ssize_t
155 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
157 return preadv(fd, iov, nr_iov, offset);
160 static ssize_t
161 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
163 return pwritev(fd, iov, nr_iov, offset);
166 #else
168 static ssize_t
169 qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
171 return -ENOSYS;
174 static ssize_t
175 qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
177 return -ENOSYS;
180 #endif
182 static ssize_t handle_aiocb_rw_vector(struct qemu_paiocb *aiocb)
184 size_t offset = 0;
185 ssize_t len;
187 do {
188 if (aiocb->aio_type & QEMU_AIO_WRITE)
189 len = qemu_pwritev(aiocb->aio_fildes,
190 aiocb->aio_iov,
191 aiocb->aio_niov,
192 aiocb->aio_offset + offset);
193 else
194 len = qemu_preadv(aiocb->aio_fildes,
195 aiocb->aio_iov,
196 aiocb->aio_niov,
197 aiocb->aio_offset + offset);
198 } while (len == -1 && errno == EINTR);
200 if (len == -1)
201 return -errno;
202 return len;
205 static ssize_t handle_aiocb_rw_linear(struct qemu_paiocb *aiocb, char *buf)
207 ssize_t offset = 0;
208 ssize_t len;
210 while (offset < aiocb->aio_nbytes) {
211 if (aiocb->aio_type & QEMU_AIO_WRITE)
212 len = pwrite(aiocb->aio_fildes,
213 (const char *)buf + offset,
214 aiocb->aio_nbytes - offset,
215 aiocb->aio_offset + offset);
216 else
217 len = pread(aiocb->aio_fildes,
218 buf + offset,
219 aiocb->aio_nbytes - offset,
220 aiocb->aio_offset + offset);
222 if (len == -1 && errno == EINTR)
223 continue;
224 else if (len == -1) {
225 offset = -errno;
226 break;
227 } else if (len == 0)
228 break;
230 offset += len;
233 return offset;
236 static ssize_t handle_aiocb_rw(struct qemu_paiocb *aiocb)
238 ssize_t nbytes;
239 char *buf;
241 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
243 * If there is just a single buffer, and it is properly aligned
244 * we can just use plain pread/pwrite without any problems.
246 if (aiocb->aio_niov == 1)
247 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
250 * We have more than one iovec, and all are properly aligned.
252 * Try preadv/pwritev first and fall back to linearizing the
253 * buffer if it's not supported.
255 if (preadv_present) {
256 nbytes = handle_aiocb_rw_vector(aiocb);
257 if (nbytes == aiocb->aio_nbytes)
258 return nbytes;
259 if (nbytes < 0 && nbytes != -ENOSYS)
260 return nbytes;
261 preadv_present = 0;
265 * XXX(hch): short read/write. no easy way to handle the reminder
266 * using these interfaces. For now retry using plain
267 * pread/pwrite?
272 * Ok, we have to do it the hard way, copy all segments into
273 * a single aligned buffer.
275 buf = qemu_blockalign(aiocb->common.bs, aiocb->aio_nbytes);
276 if (aiocb->aio_type & QEMU_AIO_WRITE) {
277 char *p = buf;
278 int i;
280 for (i = 0; i < aiocb->aio_niov; ++i) {
281 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
282 p += aiocb->aio_iov[i].iov_len;
286 nbytes = handle_aiocb_rw_linear(aiocb, buf);
287 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
288 char *p = buf;
289 size_t count = aiocb->aio_nbytes, copy;
290 int i;
292 for (i = 0; i < aiocb->aio_niov && count; ++i) {
293 copy = count;
294 if (copy > aiocb->aio_iov[i].iov_len)
295 copy = aiocb->aio_iov[i].iov_len;
296 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
297 p += copy;
298 count -= copy;
301 qemu_vfree(buf);
303 return nbytes;
306 static void *aio_thread(void *unused)
308 pid_t pid;
310 pid = getpid();
312 while (1) {
313 struct qemu_paiocb *aiocb;
314 ssize_t ret = 0;
315 qemu_timeval tv;
316 struct timespec ts;
318 qemu_gettimeofday(&tv);
319 ts.tv_sec = tv.tv_sec + 10;
320 ts.tv_nsec = 0;
322 mutex_lock(&lock);
324 while (QTAILQ_EMPTY(&request_list) &&
325 !(ret == ETIMEDOUT)) {
326 ret = cond_timedwait(&cond, &lock, &ts);
329 if (QTAILQ_EMPTY(&request_list))
330 break;
332 aiocb = QTAILQ_FIRST(&request_list);
333 QTAILQ_REMOVE(&request_list, aiocb, node);
334 aiocb->active = 1;
335 idle_threads--;
336 mutex_unlock(&lock);
338 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
339 case QEMU_AIO_READ:
340 case QEMU_AIO_WRITE:
341 ret = handle_aiocb_rw(aiocb);
342 break;
343 case QEMU_AIO_FLUSH:
344 ret = handle_aiocb_flush(aiocb);
345 break;
346 case QEMU_AIO_IOCTL:
347 ret = handle_aiocb_ioctl(aiocb);
348 break;
349 default:
350 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
351 ret = -EINVAL;
352 break;
355 mutex_lock(&lock);
356 aiocb->ret = ret;
357 idle_threads++;
358 mutex_unlock(&lock);
360 if (kill(pid, aiocb->ev_signo)) die("kill failed");
363 idle_threads--;
364 cur_threads--;
365 mutex_unlock(&lock);
367 return NULL;
370 static void spawn_thread(void)
372 sigset_t set, oldset;
374 cur_threads++;
375 idle_threads++;
377 /* block all signals */
378 if (sigfillset(&set)) die("sigfillset");
379 if (sigprocmask(SIG_SETMASK, &set, &oldset)) die("sigprocmask");
381 thread_create(&thread_id, &attr, aio_thread, NULL);
383 if (sigprocmask(SIG_SETMASK, &oldset, NULL)) die("sigprocmask restore");
386 static void qemu_paio_submit(struct qemu_paiocb *aiocb)
388 aiocb->ret = -EINPROGRESS;
389 aiocb->active = 0;
390 mutex_lock(&lock);
391 if (idle_threads == 0 && cur_threads < max_threads)
392 spawn_thread();
393 QTAILQ_INSERT_TAIL(&request_list, aiocb, node);
394 mutex_unlock(&lock);
395 cond_signal(&cond);
398 static ssize_t qemu_paio_return(struct qemu_paiocb *aiocb)
400 ssize_t ret;
402 mutex_lock(&lock);
403 ret = aiocb->ret;
404 mutex_unlock(&lock);
406 return ret;
409 static int qemu_paio_error(struct qemu_paiocb *aiocb)
411 ssize_t ret = qemu_paio_return(aiocb);
413 if (ret < 0)
414 ret = -ret;
415 else
416 ret = 0;
418 return ret;
421 static int posix_aio_process_queue(void *opaque)
423 PosixAioState *s = opaque;
424 struct qemu_paiocb *acb, **pacb;
425 int ret;
426 int result = 0;
427 int async_context_id = get_async_context_id();
429 for(;;) {
430 pacb = &s->first_aio;
431 for(;;) {
432 acb = *pacb;
433 if (!acb)
434 return result;
436 /* we're only interested in requests in the right context */
437 if (acb->async_context_id != async_context_id) {
438 pacb = &acb->next;
439 continue;
442 ret = qemu_paio_error(acb);
443 if (ret == ECANCELED) {
444 /* remove the request */
445 *pacb = acb->next;
446 qemu_aio_release(acb);
447 result = 1;
448 } else if (ret != EINPROGRESS) {
449 /* end of aio */
450 if (ret == 0) {
451 ret = qemu_paio_return(acb);
452 if (ret == acb->aio_nbytes)
453 ret = 0;
454 else
455 ret = -EINVAL;
456 } else {
457 ret = -ret;
460 trace_paio_complete(acb, acb->common.opaque, ret);
462 /* remove the request */
463 *pacb = acb->next;
464 /* call the callback */
465 acb->common.cb(acb->common.opaque, ret);
466 qemu_aio_release(acb);
467 result = 1;
468 break;
469 } else {
470 pacb = &acb->next;
475 return result;
478 static void posix_aio_read(void *opaque)
480 PosixAioState *s = opaque;
481 union {
482 struct qemu_signalfd_siginfo siginfo;
483 char buf[128];
484 } sig;
485 size_t offset;
487 /* try to read from signalfd, don't freak out if we can't read anything */
488 offset = 0;
489 while (offset < 128) {
490 ssize_t len;
492 len = read(s->fd, sig.buf + offset, 128 - offset);
493 if (len == -1 && errno == EINTR)
494 continue;
495 if (len == -1 && errno == EAGAIN) {
496 /* there is no natural reason for this to happen,
497 * so we'll spin hard until we get everything just
498 * to be on the safe side. */
499 if (offset > 0)
500 continue;
503 offset += len;
506 posix_aio_process_queue(s);
509 static int posix_aio_flush(void *opaque)
511 PosixAioState *s = opaque;
512 return !!s->first_aio;
515 static PosixAioState *posix_aio_state;
517 static void paio_remove(struct qemu_paiocb *acb)
519 struct qemu_paiocb **pacb;
521 /* remove the callback from the queue */
522 pacb = &posix_aio_state->first_aio;
523 for(;;) {
524 if (*pacb == NULL) {
525 fprintf(stderr, "paio_remove: aio request not found!\n");
526 break;
527 } else if (*pacb == acb) {
528 *pacb = acb->next;
529 qemu_aio_release(acb);
530 break;
532 pacb = &(*pacb)->next;
536 static void paio_cancel(BlockDriverAIOCB *blockacb)
538 struct qemu_paiocb *acb = (struct qemu_paiocb *)blockacb;
539 int active = 0;
541 trace_paio_cancel(acb, acb->common.opaque);
543 mutex_lock(&lock);
544 if (!acb->active) {
545 QTAILQ_REMOVE(&request_list, acb, node);
546 acb->ret = -ECANCELED;
547 } else if (acb->ret == -EINPROGRESS) {
548 active = 1;
550 mutex_unlock(&lock);
552 if (active) {
553 /* fail safe: if the aio could not be canceled, we wait for
554 it */
555 while (qemu_paio_error(acb) == EINPROGRESS)
559 paio_remove(acb);
562 static AIOPool raw_aio_pool = {
563 .aiocb_size = sizeof(struct qemu_paiocb),
564 .cancel = paio_cancel,
567 BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
568 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
569 BlockDriverCompletionFunc *cb, void *opaque, int type)
571 struct qemu_paiocb *acb;
573 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
574 if (!acb)
575 return NULL;
576 acb->aio_type = type;
577 acb->aio_fildes = fd;
578 acb->ev_signo = SIGUSR2;
579 acb->async_context_id = get_async_context_id();
581 if (qiov) {
582 acb->aio_iov = qiov->iov;
583 acb->aio_niov = qiov->niov;
585 acb->aio_nbytes = nb_sectors * 512;
586 acb->aio_offset = sector_num * 512;
588 acb->next = posix_aio_state->first_aio;
589 posix_aio_state->first_aio = acb;
591 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
592 qemu_paio_submit(acb);
593 return &acb->common;
596 BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd,
597 unsigned long int req, void *buf,
598 BlockDriverCompletionFunc *cb, void *opaque)
600 struct qemu_paiocb *acb;
602 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
603 if (!acb)
604 return NULL;
605 acb->aio_type = QEMU_AIO_IOCTL;
606 acb->aio_fildes = fd;
607 acb->ev_signo = SIGUSR2;
608 acb->async_context_id = get_async_context_id();
609 acb->aio_offset = 0;
610 acb->aio_ioctl_buf = buf;
611 acb->aio_ioctl_cmd = req;
613 acb->next = posix_aio_state->first_aio;
614 posix_aio_state->first_aio = acb;
616 qemu_paio_submit(acb);
617 return &acb->common;
620 int paio_init(void)
622 sigset_t mask;
623 PosixAioState *s;
624 int ret;
626 if (posix_aio_state)
627 return 0;
629 s = qemu_malloc(sizeof(PosixAioState));
631 /* Make sure to block AIO signal */
632 sigemptyset(&mask);
633 sigaddset(&mask, SIGUSR2);
634 sigprocmask(SIG_BLOCK, &mask, NULL);
636 s->first_aio = NULL;
637 s->fd = qemu_signalfd(&mask);
638 if (s->fd == -1) {
639 fprintf(stderr, "failed to create signalfd\n");
640 return -1;
643 fcntl(s->fd, F_SETFL, O_NONBLOCK);
645 qemu_aio_set_fd_handler(s->fd, posix_aio_read, NULL, posix_aio_flush,
646 posix_aio_process_queue, s);
648 ret = pthread_attr_init(&attr);
649 if (ret)
650 die2(ret, "pthread_attr_init");
652 ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
653 if (ret)
654 die2(ret, "pthread_attr_setdetachstate");
656 QTAILQ_INIT(&request_list);
658 posix_aio_state = s;
659 return 0;