pci: Remove capability specific handlers
[qemu-kvm/stefanha.git] / posix-aio-compat.c
blob07040649fc142e037c6414ddd25e21810ced428d
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;
459 /* remove the request */
460 *pacb = acb->next;
461 /* call the callback */
462 acb->common.cb(acb->common.opaque, ret);
463 qemu_aio_release(acb);
464 result = 1;
465 break;
466 } else {
467 pacb = &acb->next;
472 return result;
475 static void posix_aio_read(void *opaque)
477 PosixAioState *s = opaque;
478 union {
479 struct qemu_signalfd_siginfo siginfo;
480 char buf[128];
481 } sig;
482 size_t offset;
484 /* try to read from signalfd, don't freak out if we can't read anything */
485 offset = 0;
486 while (offset < 128) {
487 ssize_t len;
489 len = read(s->fd, sig.buf + offset, 128 - offset);
490 if (len == -1 && errno == EINTR)
491 continue;
492 if (len == -1 && errno == EAGAIN) {
493 /* there is no natural reason for this to happen,
494 * so we'll spin hard until we get everything just
495 * to be on the safe side. */
496 if (offset > 0)
497 continue;
500 offset += len;
503 posix_aio_process_queue(s);
506 static int posix_aio_flush(void *opaque)
508 PosixAioState *s = opaque;
509 return !!s->first_aio;
512 static PosixAioState *posix_aio_state;
514 static void paio_remove(struct qemu_paiocb *acb)
516 struct qemu_paiocb **pacb;
518 /* remove the callback from the queue */
519 pacb = &posix_aio_state->first_aio;
520 for(;;) {
521 if (*pacb == NULL) {
522 fprintf(stderr, "paio_remove: aio request not found!\n");
523 break;
524 } else if (*pacb == acb) {
525 *pacb = acb->next;
526 qemu_aio_release(acb);
527 break;
529 pacb = &(*pacb)->next;
533 static void paio_cancel(BlockDriverAIOCB *blockacb)
535 struct qemu_paiocb *acb = (struct qemu_paiocb *)blockacb;
536 int active = 0;
538 mutex_lock(&lock);
539 if (!acb->active) {
540 QTAILQ_REMOVE(&request_list, acb, node);
541 acb->ret = -ECANCELED;
542 } else if (acb->ret == -EINPROGRESS) {
543 active = 1;
545 mutex_unlock(&lock);
547 if (active) {
548 /* fail safe: if the aio could not be canceled, we wait for
549 it */
550 while (qemu_paio_error(acb) == EINPROGRESS)
554 paio_remove(acb);
557 static AIOPool raw_aio_pool = {
558 .aiocb_size = sizeof(struct qemu_paiocb),
559 .cancel = paio_cancel,
562 BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
563 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
564 BlockDriverCompletionFunc *cb, void *opaque, int type)
566 struct qemu_paiocb *acb;
568 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
569 if (!acb)
570 return NULL;
571 acb->aio_type = type;
572 acb->aio_fildes = fd;
573 acb->ev_signo = SIGUSR2;
574 acb->async_context_id = get_async_context_id();
576 if (qiov) {
577 acb->aio_iov = qiov->iov;
578 acb->aio_niov = qiov->niov;
580 acb->aio_nbytes = nb_sectors * 512;
581 acb->aio_offset = sector_num * 512;
583 acb->next = posix_aio_state->first_aio;
584 posix_aio_state->first_aio = acb;
586 trace_paio_submit(acb, opaque, sector_num, nb_sectors, type);
587 qemu_paio_submit(acb);
588 return &acb->common;
591 BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd,
592 unsigned long int req, void *buf,
593 BlockDriverCompletionFunc *cb, void *opaque)
595 struct qemu_paiocb *acb;
597 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
598 if (!acb)
599 return NULL;
600 acb->aio_type = QEMU_AIO_IOCTL;
601 acb->aio_fildes = fd;
602 acb->ev_signo = SIGUSR2;
603 acb->async_context_id = get_async_context_id();
604 acb->aio_offset = 0;
605 acb->aio_ioctl_buf = buf;
606 acb->aio_ioctl_cmd = req;
608 acb->next = posix_aio_state->first_aio;
609 posix_aio_state->first_aio = acb;
611 qemu_paio_submit(acb);
612 return &acb->common;
615 int paio_init(void)
617 sigset_t mask;
618 PosixAioState *s;
619 int ret;
621 if (posix_aio_state)
622 return 0;
624 s = qemu_malloc(sizeof(PosixAioState));
626 /* Make sure to block AIO signal */
627 sigemptyset(&mask);
628 sigaddset(&mask, SIGUSR2);
629 sigprocmask(SIG_BLOCK, &mask, NULL);
631 s->first_aio = NULL;
632 s->fd = qemu_signalfd(&mask);
633 if (s->fd == -1) {
634 fprintf(stderr, "failed to create signalfd\n");
635 return -1;
638 fcntl(s->fd, F_SETFL, O_NONBLOCK);
640 qemu_aio_set_fd_handler(s->fd, posix_aio_read, NULL, posix_aio_flush,
641 posix_aio_process_queue, s);
643 ret = pthread_attr_init(&attr);
644 if (ret)
645 die2(ret, "pthread_attr_init");
647 ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
648 if (ret)
649 die2(ret, "pthread_attr_setdetachstate");
651 QTAILQ_INIT(&request_list);
653 posix_aio_state = s;
654 return 0;