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