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