2 * Block driver for RAW files (win32)
4 * Copyright (c) 2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
25 #include "qemu/timer.h"
26 #include "block/block_int.h"
27 #include "qemu/module.h"
28 #include "block/aio.h"
30 #include "qemu/event_notifier.h"
37 #define FTYPE_HARDDISK 2
39 struct QEMUWin32AIOState
{
43 bool is_aio_context_attached
;
46 typedef struct QEMUWin32AIOCB
{
47 BlockDriverAIOCB common
;
48 struct QEMUWin32AIOState
*ctx
;
58 * Completes an AIO request (calls the callback and frees the ACB).
60 static void win32_aio_process_completion(QEMUWin32AIOState
*s
,
61 QEMUWin32AIOCB
*waiocb
, DWORD count
)
66 if (waiocb
->ov
.Internal
!= 0) {
70 if (count
< waiocb
->nbytes
) {
71 /* Short reads mean EOF, pad with zeros. */
72 if (waiocb
->is_read
) {
73 qemu_iovec_memset(waiocb
->qiov
, count
, 0,
74 waiocb
->qiov
->size
- count
);
81 if (!waiocb
->is_linear
) {
82 if (ret
== 0 && waiocb
->is_read
) {
83 QEMUIOVector
*qiov
= waiocb
->qiov
;
84 iov_from_buf(qiov
->iov
, qiov
->niov
, 0, waiocb
->buf
, qiov
->size
);
86 qemu_vfree(waiocb
->buf
);
90 waiocb
->common
.cb(waiocb
->common
.opaque
, ret
);
91 qemu_aio_release(waiocb
);
94 static void win32_aio_completion_cb(EventNotifier
*e
)
96 QEMUWin32AIOState
*s
= container_of(e
, QEMUWin32AIOState
, e
);
101 event_notifier_test_and_clear(&s
->e
);
102 while (GetQueuedCompletionStatus(s
->hIOCP
, &count
, &key
, &ov
, 0)) {
103 QEMUWin32AIOCB
*waiocb
= container_of(ov
, QEMUWin32AIOCB
, ov
);
105 win32_aio_process_completion(s
, waiocb
, count
);
109 static void win32_aio_cancel(BlockDriverAIOCB
*blockacb
)
111 QEMUWin32AIOCB
*waiocb
= (QEMUWin32AIOCB
*)blockacb
;
114 * CancelIoEx is only supported in Vista and newer. For now, just
115 * wait for completion.
117 while (!HasOverlappedIoCompleted(&waiocb
->ov
)) {
118 aio_poll(bdrv_get_aio_context(blockacb
->bs
), true);
122 static const AIOCBInfo win32_aiocb_info
= {
123 .aiocb_size
= sizeof(QEMUWin32AIOCB
),
124 .cancel
= win32_aio_cancel
,
127 BlockDriverAIOCB
*win32_aio_submit(BlockDriverState
*bs
,
128 QEMUWin32AIOState
*aio
, HANDLE hfile
,
129 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
130 BlockDriverCompletionFunc
*cb
, void *opaque
, int type
)
132 struct QEMUWin32AIOCB
*waiocb
;
133 uint64_t offset
= sector_num
* 512;
136 waiocb
= qemu_aio_get(&win32_aiocb_info
, bs
, cb
, opaque
);
137 waiocb
->nbytes
= nb_sectors
* 512;
139 waiocb
->is_read
= (type
== QEMU_AIO_READ
);
141 if (qiov
->niov
> 1) {
142 waiocb
->buf
= qemu_try_blockalign(bs
, qiov
->size
);
143 if (waiocb
->buf
== NULL
) {
146 if (type
& QEMU_AIO_WRITE
) {
147 iov_to_buf(qiov
->iov
, qiov
->niov
, 0, waiocb
->buf
, qiov
->size
);
149 waiocb
->is_linear
= false;
151 waiocb
->buf
= qiov
->iov
[0].iov_base
;
152 waiocb
->is_linear
= true;
155 memset(&waiocb
->ov
, 0, sizeof(waiocb
->ov
));
156 waiocb
->ov
.Offset
= (DWORD
)offset
;
157 waiocb
->ov
.OffsetHigh
= (DWORD
)(offset
>> 32);
158 waiocb
->ov
.hEvent
= event_notifier_get_handle(&aio
->e
);
162 if (type
& QEMU_AIO_READ
) {
163 rc
= ReadFile(hfile
, waiocb
->buf
, waiocb
->nbytes
, NULL
, &waiocb
->ov
);
165 rc
= WriteFile(hfile
, waiocb
->buf
, waiocb
->nbytes
, NULL
, &waiocb
->ov
);
167 if(rc
== 0 && GetLastError() != ERROR_IO_PENDING
) {
170 return &waiocb
->common
;
175 qemu_aio_release(waiocb
);
179 int win32_aio_attach(QEMUWin32AIOState
*aio
, HANDLE hfile
)
181 if (CreateIoCompletionPort(hfile
, aio
->hIOCP
, (ULONG_PTR
) 0, 0) == NULL
) {
188 void win32_aio_detach_aio_context(QEMUWin32AIOState
*aio
,
189 AioContext
*old_context
)
191 aio_set_event_notifier(old_context
, &aio
->e
, NULL
);
192 aio
->is_aio_context_attached
= false;
195 void win32_aio_attach_aio_context(QEMUWin32AIOState
*aio
,
196 AioContext
*new_context
)
198 aio
->is_aio_context_attached
= true;
199 aio_set_event_notifier(new_context
, &aio
->e
, win32_aio_completion_cb
);
202 QEMUWin32AIOState
*win32_aio_init(void)
204 QEMUWin32AIOState
*s
;
206 s
= g_malloc0(sizeof(*s
));
207 if (event_notifier_init(&s
->e
, false) < 0) {
211 s
->hIOCP
= CreateIoCompletionPort(INVALID_HANDLE_VALUE
, NULL
, 0, 0);
212 if (s
->hIOCP
== NULL
) {
219 event_notifier_cleanup(&s
->e
);
225 void win32_aio_cleanup(QEMUWin32AIOState
*aio
)
227 assert(!aio
->is_aio_context_attached
);
228 CloseHandle(aio
->hIOCP
);
229 event_notifier_cleanup(&aio
->e
);