]> git.proxmox.com Git - qemu.git/blame - posix-aio-compat.c
usb-uhci: symbolic names for pci registers
[qemu.git] / posix-aio-compat.c
CommitLineData
3c529d93
AL
1/*
2 * QEMU posix-aio emulation
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
221f715d 14#include <sys/ioctl.h>
9ef91a67 15#include <sys/types.h>
3c529d93
AL
16#include <pthread.h>
17#include <unistd.h>
18#include <errno.h>
30525aff 19#include <time.h>
9ef91a67 20#include <signal.h>
8653c015 21#include <string.h>
22#include <stdlib.h>
23#include <stdio.h>
9ef91a67 24
72cf2d4f 25#include "qemu-queue.h"
3c529d93 26#include "osdep.h"
f141eafe 27#include "qemu-common.h"
9ef91a67
CH
28#include "block_int.h"
29
30#include "block/raw-posix-aio.h"
31
32
33struct qemu_paiocb {
34 BlockDriverAIOCB common;
35 int aio_fildes;
36 union {
37 struct iovec *aio_iov;
38 void *aio_ioctl_buf;
39 };
40 int aio_niov;
41 size_t aio_nbytes;
42#define aio_ioctl_cmd aio_nbytes /* for QEMU_AIO_IOCTL */
43 int ev_signo;
44 off_t aio_offset;
45
72cf2d4f 46 QTAILQ_ENTRY(qemu_paiocb) node;
9ef91a67
CH
47 int aio_type;
48 ssize_t ret;
49 int active;
50 struct qemu_paiocb *next;
e5f37649
KW
51
52 int async_context_id;
9ef91a67
CH
53};
54
55typedef struct PosixAioState {
56 int rfd, wfd;
57 struct qemu_paiocb *first_aio;
58} PosixAioState;
3c529d93 59
3c529d93
AL
60
61static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
62static pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
63static pthread_t thread_id;
a8227a5a 64static pthread_attr_t attr;
3c529d93
AL
65static int max_threads = 64;
66static int cur_threads = 0;
67static int idle_threads = 0;
72cf2d4f 68static QTAILQ_HEAD(, qemu_paiocb) request_list;
3c529d93 69
2341f9a1 70#ifdef CONFIG_PREADV
ceb42de8
AL
71static int preadv_present = 1;
72#else
73static int preadv_present = 0;
74#endif
75
8653c015 76static void die2(int err, const char *what)
77{
78 fprintf(stderr, "%s failed: %s\n", what, strerror(err));
79 abort();
80}
81
82static void die(const char *what)
83{
84 die2(errno, what);
85}
86
87static void mutex_lock(pthread_mutex_t *mutex)
88{
89 int ret = pthread_mutex_lock(mutex);
90 if (ret) die2(ret, "pthread_mutex_lock");
91}
92
93static void mutex_unlock(pthread_mutex_t *mutex)
94{
95 int ret = pthread_mutex_unlock(mutex);
96 if (ret) die2(ret, "pthread_mutex_unlock");
97}
98
99static int cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
100 struct timespec *ts)
101{
102 int ret = pthread_cond_timedwait(cond, mutex, ts);
103 if (ret && ret != ETIMEDOUT) die2(ret, "pthread_cond_timedwait");
104 return ret;
105}
106
5d47e372 107static void cond_signal(pthread_cond_t *cond)
8653c015 108{
5d47e372 109 int ret = pthread_cond_signal(cond);
110 if (ret) die2(ret, "pthread_cond_signal");
8653c015 111}
112
113static void thread_create(pthread_t *thread, pthread_attr_t *attr,
114 void *(*start_routine)(void*), void *arg)
115{
116 int ret = pthread_create(thread, attr, start_routine, arg);
117 if (ret) die2(ret, "pthread_create");
118}
119
6769da29 120static ssize_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb)
f141eafe
AL
121{
122 int ret;
123
124 ret = ioctl(aiocb->aio_fildes, aiocb->aio_ioctl_cmd, aiocb->aio_ioctl_buf);
125 if (ret == -1)
126 return -errno;
e7d54ae8
CH
127
128 /*
129 * This looks weird, but the aio code only consideres a request
130 * successfull if it has written the number full number of bytes.
131 *
132 * Now we overload aio_nbytes as aio_ioctl_cmd for the ioctl command,
133 * so in fact we return the ioctl command here to make posix_aio_read()
134 * happy..
135 */
136 return aiocb->aio_nbytes;
f141eafe
AL
137}
138
6769da29 139static ssize_t handle_aiocb_flush(struct qemu_paiocb *aiocb)
b2e12bc6
CH
140{
141 int ret;
142
47faadc6 143 ret = qemu_fdatasync(aiocb->aio_fildes);
b2e12bc6
CH
144 if (ret == -1)
145 return -errno;
146 return 0;
147}
148
2341f9a1 149#ifdef CONFIG_PREADV
ceb42de8
AL
150
151static ssize_t
152qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
153{
154 return preadv(fd, iov, nr_iov, offset);
155}
156
157static ssize_t
158qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
159{
160 return pwritev(fd, iov, nr_iov, offset);
161}
162
163#else
164
165static ssize_t
166qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)
167{
168 return -ENOSYS;
169}
170
171static ssize_t
172qemu_pwritev(int fd, const struct iovec *iov, int nr_iov, off_t offset)
173{
174 return -ENOSYS;
175}
176
177#endif
178
6769da29 179static ssize_t handle_aiocb_rw_vector(struct qemu_paiocb *aiocb)
ceb42de8
AL
180{
181 size_t offset = 0;
182 ssize_t len;
183
184 do {
9ef91a67 185 if (aiocb->aio_type & QEMU_AIO_WRITE)
ceb42de8
AL
186 len = qemu_pwritev(aiocb->aio_fildes,
187 aiocb->aio_iov,
188 aiocb->aio_niov,
189 aiocb->aio_offset + offset);
190 else
191 len = qemu_preadv(aiocb->aio_fildes,
192 aiocb->aio_iov,
193 aiocb->aio_niov,
194 aiocb->aio_offset + offset);
195 } while (len == -1 && errno == EINTR);
196
197 if (len == -1)
198 return -errno;
199 return len;
200}
201
6769da29 202static ssize_t handle_aiocb_rw_linear(struct qemu_paiocb *aiocb, char *buf)
221f715d 203{
6769da29
KW
204 ssize_t offset = 0;
205 ssize_t len;
221f715d
AL
206
207 while (offset < aiocb->aio_nbytes) {
9ef91a67 208 if (aiocb->aio_type & QEMU_AIO_WRITE)
f141eafe
AL
209 len = pwrite(aiocb->aio_fildes,
210 (const char *)buf + offset,
211 aiocb->aio_nbytes - offset,
212 aiocb->aio_offset + offset);
213 else
214 len = pread(aiocb->aio_fildes,
215 buf + offset,
221f715d
AL
216 aiocb->aio_nbytes - offset,
217 aiocb->aio_offset + offset);
221f715d 218
f141eafe
AL
219 if (len == -1 && errno == EINTR)
220 continue;
221 else if (len == -1) {
222 offset = -errno;
223 break;
224 } else if (len == 0)
225 break;
226
227 offset += len;
221f715d
AL
228 }
229
230 return offset;
231}
232
6769da29 233static ssize_t handle_aiocb_rw(struct qemu_paiocb *aiocb)
221f715d 234{
6769da29 235 ssize_t nbytes;
f141eafe
AL
236 char *buf;
237
9ef91a67 238 if (!(aiocb->aio_type & QEMU_AIO_MISALIGNED)) {
f141eafe
AL
239 /*
240 * If there is just a single buffer, and it is properly aligned
241 * we can just use plain pread/pwrite without any problems.
242 */
ceb42de8
AL
243 if (aiocb->aio_niov == 1)
244 return handle_aiocb_rw_linear(aiocb, aiocb->aio_iov->iov_base);
245
246 /*
247 * We have more than one iovec, and all are properly aligned.
248 *
249 * Try preadv/pwritev first and fall back to linearizing the
250 * buffer if it's not supported.
251 */
252 if (preadv_present) {
253 nbytes = handle_aiocb_rw_vector(aiocb);
254 if (nbytes == aiocb->aio_nbytes)
255 return nbytes;
256 if (nbytes < 0 && nbytes != -ENOSYS)
257 return nbytes;
258 preadv_present = 0;
259 }
260
261 /*
262 * XXX(hch): short read/write. no easy way to handle the reminder
263 * using these interfaces. For now retry using plain
264 * pread/pwrite?
265 */
f141eafe 266 }
221f715d 267
f141eafe
AL
268 /*
269 * Ok, we have to do it the hard way, copy all segments into
270 * a single aligned buffer.
271 */
272 buf = qemu_memalign(512, aiocb->aio_nbytes);
9ef91a67 273 if (aiocb->aio_type & QEMU_AIO_WRITE) {
f141eafe
AL
274 char *p = buf;
275 int i;
276
277 for (i = 0; i < aiocb->aio_niov; ++i) {
278 memcpy(p, aiocb->aio_iov[i].iov_base, aiocb->aio_iov[i].iov_len);
279 p += aiocb->aio_iov[i].iov_len;
280 }
281 }
282
283 nbytes = handle_aiocb_rw_linear(aiocb, buf);
9ef91a67 284 if (!(aiocb->aio_type & QEMU_AIO_WRITE)) {
f141eafe
AL
285 char *p = buf;
286 size_t count = aiocb->aio_nbytes, copy;
287 int i;
288
289 for (i = 0; i < aiocb->aio_niov && count; ++i) {
290 copy = count;
291 if (copy > aiocb->aio_iov[i].iov_len)
292 copy = aiocb->aio_iov[i].iov_len;
293 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
294 p += copy;
295 count -= copy;
296 }
297 }
298 qemu_vfree(buf);
299
300 return nbytes;
221f715d
AL
301}
302
3c529d93
AL
303static void *aio_thread(void *unused)
304{
a8227a5a 305 pid_t pid;
3c529d93 306
a8227a5a 307 pid = getpid();
308
3c529d93
AL
309 while (1) {
310 struct qemu_paiocb *aiocb;
6769da29 311 ssize_t ret = 0;
30525aff 312 qemu_timeval tv;
313 struct timespec ts;
314
315 qemu_gettimeofday(&tv);
316 ts.tv_sec = tv.tv_sec + 10;
317 ts.tv_nsec = 0;
3c529d93 318
8653c015 319 mutex_lock(&lock);
3c529d93 320
72cf2d4f 321 while (QTAILQ_EMPTY(&request_list) &&
3c529d93 322 !(ret == ETIMEDOUT)) {
8653c015 323 ret = cond_timedwait(&cond, &lock, &ts);
3c529d93
AL
324 }
325
72cf2d4f 326 if (QTAILQ_EMPTY(&request_list))
3c529d93
AL
327 break;
328
72cf2d4f
BS
329 aiocb = QTAILQ_FIRST(&request_list);
330 QTAILQ_REMOVE(&request_list, aiocb, node);
3c529d93 331 aiocb->active = 1;
3c529d93 332 idle_threads--;
8653c015 333 mutex_unlock(&lock);
3c529d93 334
9ef91a67
CH
335 switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
336 case QEMU_AIO_READ:
337 case QEMU_AIO_WRITE:
f141eafe 338 ret = handle_aiocb_rw(aiocb);
221f715d 339 break;
b2e12bc6
CH
340 case QEMU_AIO_FLUSH:
341 ret = handle_aiocb_flush(aiocb);
342 break;
9ef91a67 343 case QEMU_AIO_IOCTL:
221f715d
AL
344 ret = handle_aiocb_ioctl(aiocb);
345 break;
346 default:
347 fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
348 ret = -EINVAL;
349 break;
350 }
3c529d93 351
8653c015 352 mutex_lock(&lock);
221f715d 353 aiocb->ret = ret;
3c529d93 354 idle_threads++;
8653c015 355 mutex_unlock(&lock);
3c529d93 356
a8227a5a 357 if (kill(pid, aiocb->ev_signo)) die("kill failed");
3c529d93
AL
358 }
359
360 idle_threads--;
361 cur_threads--;
8653c015 362 mutex_unlock(&lock);
3c529d93
AL
363
364 return NULL;
365}
366
8653c015 367static void spawn_thread(void)
3c529d93 368{
ee399306 369 sigset_t set, oldset;
370
3c529d93
AL
371 cur_threads++;
372 idle_threads++;
ee399306 373
374 /* block all signals */
375 if (sigfillset(&set)) die("sigfillset");
376 if (sigprocmask(SIG_SETMASK, &set, &oldset)) die("sigprocmask");
377
8653c015 378 thread_create(&thread_id, &attr, aio_thread, NULL);
ee399306 379
380 if (sigprocmask(SIG_SETMASK, &oldset, NULL)) die("sigprocmask restore");
3c529d93
AL
381}
382
9ef91a67 383static void qemu_paio_submit(struct qemu_paiocb *aiocb)
3c529d93 384{
3c529d93
AL
385 aiocb->ret = -EINPROGRESS;
386 aiocb->active = 0;
8653c015 387 mutex_lock(&lock);
3c529d93
AL
388 if (idle_threads == 0 && cur_threads < max_threads)
389 spawn_thread();
72cf2d4f 390 QTAILQ_INSERT_TAIL(&request_list, aiocb, node);
8653c015 391 mutex_unlock(&lock);
5d47e372 392 cond_signal(&cond);
3c529d93
AL
393}
394
9ef91a67 395static ssize_t qemu_paio_return(struct qemu_paiocb *aiocb)
3c529d93
AL
396{
397 ssize_t ret;
398
8653c015 399 mutex_lock(&lock);
3c529d93 400 ret = aiocb->ret;
8653c015 401 mutex_unlock(&lock);
3c529d93
AL
402
403 return ret;
404}
405
9ef91a67 406static int qemu_paio_error(struct qemu_paiocb *aiocb)
3c529d93
AL
407{
408 ssize_t ret = qemu_paio_return(aiocb);
409
410 if (ret < 0)
411 ret = -ret;
412 else
413 ret = 0;
414
415 return ret;
416}
417
59c7b155 418static int posix_aio_process_queue(void *opaque)
3c529d93 419{
9ef91a67
CH
420 PosixAioState *s = opaque;
421 struct qemu_paiocb *acb, **pacb;
3c529d93 422 int ret;
59c7b155 423 int result = 0;
e5f37649 424 int async_context_id = get_async_context_id();
9ef91a67
CH
425
426 for(;;) {
427 pacb = &s->first_aio;
428 for(;;) {
429 acb = *pacb;
430 if (!acb)
59c7b155 431 return result;
e5f37649
KW
432
433 /* we're only interested in requests in the right context */
434 if (acb->async_context_id != async_context_id) {
435 pacb = &acb->next;
436 continue;
437 }
438
9ef91a67
CH
439 ret = qemu_paio_error(acb);
440 if (ret == ECANCELED) {
441 /* remove the request */
442 *pacb = acb->next;
443 qemu_aio_release(acb);
59c7b155 444 result = 1;
9ef91a67
CH
445 } else if (ret != EINPROGRESS) {
446 /* end of aio */
447 if (ret == 0) {
448 ret = qemu_paio_return(acb);
449 if (ret == acb->aio_nbytes)
450 ret = 0;
451 else
452 ret = -EINVAL;
453 } else {
454 ret = -ret;
455 }
456 /* remove the request */
457 *pacb = acb->next;
458 /* call the callback */
459 acb->common.cb(acb->common.opaque, ret);
460 qemu_aio_release(acb);
59c7b155 461 result = 1;
9ef91a67
CH
462 break;
463 } else {
464 pacb = &acb->next;
465 }
466 }
467 }
59c7b155
KW
468
469 return result;
470}
471
472static void posix_aio_read(void *opaque)
473{
474 PosixAioState *s = opaque;
475 ssize_t len;
476
477 /* read all bytes from signal pipe */
478 for (;;) {
479 char bytes[16];
480
481 len = read(s->rfd, bytes, sizeof(bytes));
482 if (len == -1 && errno == EINTR)
483 continue; /* try again */
484 if (len == sizeof(bytes))
485 continue; /* more to read */
486 break;
487 }
488
489 posix_aio_process_queue(s);
9ef91a67
CH
490}
491
492static int posix_aio_flush(void *opaque)
493{
494 PosixAioState *s = opaque;
495 return !!s->first_aio;
496}
497
498static PosixAioState *posix_aio_state;
499
500static void aio_signal_handler(int signum)
501{
502 if (posix_aio_state) {
503 char byte = 0;
504
505 write(posix_aio_state->wfd, &byte, sizeof(byte));
506 }
507
508 qemu_service_io();
509}
510
511static void paio_remove(struct qemu_paiocb *acb)
512{
513 struct qemu_paiocb **pacb;
514
515 /* remove the callback from the queue */
516 pacb = &posix_aio_state->first_aio;
517 for(;;) {
518 if (*pacb == NULL) {
519 fprintf(stderr, "paio_remove: aio request not found!\n");
520 break;
521 } else if (*pacb == acb) {
522 *pacb = acb->next;
523 qemu_aio_release(acb);
524 break;
525 }
526 pacb = &(*pacb)->next;
527 }
528}
529
530static void paio_cancel(BlockDriverAIOCB *blockacb)
531{
532 struct qemu_paiocb *acb = (struct qemu_paiocb *)blockacb;
533 int active = 0;
3c529d93 534
8653c015 535 mutex_lock(&lock);
9ef91a67 536 if (!acb->active) {
72cf2d4f 537 QTAILQ_REMOVE(&request_list, acb, node);
9ef91a67
CH
538 acb->ret = -ECANCELED;
539 } else if (acb->ret == -EINPROGRESS) {
540 active = 1;
541 }
8653c015 542 mutex_unlock(&lock);
3c529d93 543
9ef91a67
CH
544 if (active) {
545 /* fail safe: if the aio could not be canceled, we wait for
546 it */
547 while (qemu_paio_error(acb) == EINPROGRESS)
548 ;
549 }
550
551 paio_remove(acb);
552}
553
554static AIOPool raw_aio_pool = {
555 .aiocb_size = sizeof(struct qemu_paiocb),
556 .cancel = paio_cancel,
557};
558
1e5b9d2f 559BlockDriverAIOCB *paio_submit(BlockDriverState *bs, int fd,
9ef91a67
CH
560 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
561 BlockDriverCompletionFunc *cb, void *opaque, int type)
562{
563 struct qemu_paiocb *acb;
564
565 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
566 if (!acb)
567 return NULL;
568 acb->aio_type = type;
569 acb->aio_fildes = fd;
570 acb->ev_signo = SIGUSR2;
e5f37649
KW
571 acb->async_context_id = get_async_context_id();
572
b2e12bc6
CH
573 if (qiov) {
574 acb->aio_iov = qiov->iov;
575 acb->aio_niov = qiov->niov;
576 }
9ef91a67
CH
577 acb->aio_nbytes = nb_sectors * 512;
578 acb->aio_offset = sector_num * 512;
579
580 acb->next = posix_aio_state->first_aio;
581 posix_aio_state->first_aio = acb;
582
583 qemu_paio_submit(acb);
584 return &acb->common;
585}
586
587BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd,
588 unsigned long int req, void *buf,
589 BlockDriverCompletionFunc *cb, void *opaque)
590{
591 struct qemu_paiocb *acb;
592
593 acb = qemu_aio_get(&raw_aio_pool, bs, cb, opaque);
594 if (!acb)
595 return NULL;
596 acb->aio_type = QEMU_AIO_IOCTL;
597 acb->aio_fildes = fd;
598 acb->ev_signo = SIGUSR2;
599 acb->aio_offset = 0;
600 acb->aio_ioctl_buf = buf;
601 acb->aio_ioctl_cmd = req;
602
603 acb->next = posix_aio_state->first_aio;
604 posix_aio_state->first_aio = acb;
605
606 qemu_paio_submit(acb);
607 return &acb->common;
608}
609
1e5b9d2f 610int paio_init(void)
9ef91a67
CH
611{
612 struct sigaction act;
613 PosixAioState *s;
614 int fds[2];
615 int ret;
616
617 if (posix_aio_state)
1e5b9d2f 618 return 0;
9ef91a67
CH
619
620 s = qemu_malloc(sizeof(PosixAioState));
621
622 sigfillset(&act.sa_mask);
623 act.sa_flags = 0; /* do not restart syscalls to interrupt select() */
624 act.sa_handler = aio_signal_handler;
625 sigaction(SIGUSR2, &act, NULL);
626
627 s->first_aio = NULL;
40ff6d7e 628 if (qemu_pipe(fds) == -1) {
9ef91a67 629 fprintf(stderr, "failed to create pipe\n");
1e5b9d2f 630 return -1;
9ef91a67
CH
631 }
632
633 s->rfd = fds[0];
634 s->wfd = fds[1];
635
636 fcntl(s->rfd, F_SETFL, O_NONBLOCK);
637 fcntl(s->wfd, F_SETFL, O_NONBLOCK);
638
8febfa26
KW
639 qemu_aio_set_fd_handler(s->rfd, posix_aio_read, NULL, posix_aio_flush,
640 posix_aio_process_queue, s);
9ef91a67
CH
641
642 ret = pthread_attr_init(&attr);
643 if (ret)
644 die2(ret, "pthread_attr_init");
645
646 ret = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
647 if (ret)
648 die2(ret, "pthread_attr_setdetachstate");
649
72cf2d4f 650 QTAILQ_INIT(&request_list);
9ef91a67
CH
651
652 posix_aio_state = s;
1e5b9d2f 653 return 0;
3c529d93 654}