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_int.h"
35 #define FTYPE_HARDDISK 2
37 typedef struct BDRVRawState
{
40 char drive_path
[16]; /* format: "d:\" */
43 typedef struct RawAIOCB
{
44 BlockDriverAIOCB common
;
50 int qemu_ftruncate64(int fd
, int64_t length
)
57 if ((GetVersion() & 0x80000000UL
) && (length
>> 32) != 0)
60 h
= (HANDLE
)_get_osfhandle(fd
);
62 /* get current position, ftruncate do not change position */
64 li
.LowPart
= SetFilePointer (h
, 0, &li
.HighPart
, FILE_CURRENT
);
65 if (li
.LowPart
== 0xffffffffUL
&& GetLastError() != NO_ERROR
)
69 if (!SetFilePointer(h
, (DWORD
) length
, &high
, FILE_BEGIN
))
71 res
= SetEndOfFile(h
);
73 /* back to old position */
74 SetFilePointer(h
, li
.LowPart
, &li
.HighPart
, FILE_BEGIN
);
78 static int set_sparse(int fd
)
81 return (int) DeviceIoControl((HANDLE
)_get_osfhandle(fd
), FSCTL_SET_SPARSE
,
82 NULL
, 0, NULL
, 0, &returned
, NULL
);
85 static int raw_open(BlockDriverState
*bs
, const char *filename
, int flags
)
87 BDRVRawState
*s
= bs
->opaque
;
88 int access_flags
, create_flags
;
93 if ((flags
& BDRV_O_ACCESS
) == O_RDWR
) {
94 access_flags
= GENERIC_READ
| GENERIC_WRITE
;
96 access_flags
= GENERIC_READ
;
98 if (flags
& BDRV_O_CREAT
) {
99 create_flags
= CREATE_ALWAYS
;
101 create_flags
= OPEN_EXISTING
;
104 overlapped
= FILE_FLAG_OVERLAPPED
;
106 overlapped
= FILE_ATTRIBUTE_NORMAL
;
108 if ((flags
& BDRV_O_NOCACHE
))
109 overlapped
|= FILE_FLAG_NO_BUFFERING
| FILE_FLAG_WRITE_THROUGH
;
110 else if (!(flags
& BDRV_O_CACHE_WB
))
111 overlapped
|= FILE_FLAG_WRITE_THROUGH
;
112 s
->hfile
= CreateFile(filename
, access_flags
,
113 FILE_SHARE_READ
, NULL
,
114 create_flags
, overlapped
, NULL
);
115 if (s
->hfile
== INVALID_HANDLE_VALUE
) {
116 int err
= GetLastError();
118 if (err
== ERROR_ACCESS_DENIED
)
125 static int raw_pread(BlockDriverState
*bs
, int64_t offset
,
126 uint8_t *buf
, int count
)
128 BDRVRawState
*s
= bs
->opaque
;
133 memset(&ov
, 0, sizeof(ov
));
135 ov
.OffsetHigh
= offset
>> 32;
136 ret
= ReadFile(s
->hfile
, buf
, count
, &ret_count
, &ov
);
139 ret
= GetOverlappedResult(s
->hfile
, &ov
, &ret_count
, TRUE
);
149 static int raw_pwrite(BlockDriverState
*bs
, int64_t offset
,
150 const uint8_t *buf
, int count
)
152 BDRVRawState
*s
= bs
->opaque
;
157 memset(&ov
, 0, sizeof(ov
));
159 ov
.OffsetHigh
= offset
>> 32;
160 ret
= WriteFile(s
->hfile
, buf
, count
, &ret_count
, &ov
);
163 ret
= GetOverlappedResult(s
->hfile
, &ov
, &ret_count
, TRUE
);
174 static void raw_aio_cb(void *opaque
)
176 RawAIOCB
*acb
= opaque
;
177 BlockDriverState
*bs
= acb
->common
.bs
;
178 BDRVRawState
*s
= bs
->opaque
;
182 ret
= GetOverlappedResult(s
->hfile
, &acb
->ov
, &ret_count
, TRUE
);
183 if (!ret
|| ret_count
!= acb
->count
) {
184 acb
->common
.cb(acb
->common
.opaque
, -EIO
);
186 acb
->common
.cb(acb
->common
.opaque
, 0);
190 static RawAIOCB
*raw_aio_setup(BlockDriverState
*bs
,
191 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
192 BlockDriverCompletionFunc
*cb
, void *opaque
)
197 acb
= qemu_aio_get(bs
, cb
, opaque
);
199 acb
->hEvent
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
201 qemu_aio_release(acb
);
205 memset(&acb
->ov
, 0, sizeof(acb
->ov
));
206 offset
= sector_num
* 512;
207 acb
->ov
.Offset
= offset
;
208 acb
->ov
.OffsetHigh
= offset
>> 32;
209 acb
->ov
.hEvent
= acb
->hEvent
;
210 acb
->count
= nb_sectors
* 512;
211 qemu_add_wait_object(acb
->ov
.hEvent
, raw_aio_cb
, acb
);
215 static BlockDriverAIOCB
*raw_aio_read(BlockDriverState
*bs
,
216 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
217 BlockDriverCompletionFunc
*cb
, void *opaque
)
219 BDRVRawState
*s
= bs
->opaque
;
223 acb
= raw_aio_setup(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
226 ret
= ReadFile(s
->hfile
, buf
, acb
->count
, NULL
, &acb
->ov
);
228 qemu_aio_release(acb
);
231 qemu_aio_release(acb
);
232 return (BlockDriverAIOCB
*)acb
;
235 static BlockDriverAIOCB
*raw_aio_write(BlockDriverState
*bs
,
236 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
237 BlockDriverCompletionFunc
*cb
, void *opaque
)
239 BDRVRawState
*s
= bs
->opaque
;
243 acb
= raw_aio_setup(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
246 ret
= WriteFile(s
->hfile
, buf
, acb
->count
, NULL
, &acb
->ov
);
248 qemu_aio_release(acb
);
251 qemu_aio_release(acb
);
252 return (BlockDriverAIOCB
*)acb
;
255 static void raw_aio_cancel(BlockDriverAIOCB
*blockacb
)
257 RawAIOCB
*acb
= (RawAIOCB
*)blockacb
;
258 BlockDriverState
*bs
= acb
->common
.bs
;
259 BDRVRawState
*s
= bs
->opaque
;
261 qemu_del_wait_object(acb
->ov
.hEvent
, raw_aio_cb
, acb
);
262 /* XXX: if more than one async I/O it is not correct */
264 qemu_aio_release(acb
);
266 #endif /* #if WIN32_AIO */
268 static void raw_flush(BlockDriverState
*bs
)
270 BDRVRawState
*s
= bs
->opaque
;
271 FlushFileBuffers(s
->hfile
);
274 static void raw_close(BlockDriverState
*bs
)
276 BDRVRawState
*s
= bs
->opaque
;
277 CloseHandle(s
->hfile
);
280 static int raw_truncate(BlockDriverState
*bs
, int64_t offset
)
282 BDRVRawState
*s
= bs
->opaque
;
287 if (!SetFilePointer(s
->hfile
, low
, &high
, FILE_BEGIN
))
289 if (!SetEndOfFile(s
->hfile
))
294 static int64_t raw_getlength(BlockDriverState
*bs
)
296 BDRVRawState
*s
= bs
->opaque
;
298 ULARGE_INTEGER available
, total
, total_free
;
305 l
.LowPart
= GetFileSize(s
->hfile
, &l
.HighPart
);
306 if (l
.LowPart
== 0xffffffffUL
&& GetLastError() != NO_ERROR
)
310 if (!GetDiskFreeSpaceEx(s
->drive_path
, &available
, &total
, &total_free
))
312 l
.QuadPart
= total
.QuadPart
;
315 status
= DeviceIoControl(s
->hfile
, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX
,
316 NULL
, 0, &dg
, sizeof(dg
), &count
, NULL
);
327 static int raw_create(const char *filename
, int64_t total_size
,
328 const char *backing_file
, int flags
)
332 if (flags
|| backing_file
)
335 fd
= open(filename
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_BINARY
,
340 ftruncate(fd
, total_size
* 512);
345 BlockDriver bdrv_raw
= {
347 sizeof(BDRVRawState
),
348 NULL
, /* no probe for protocols */
357 .bdrv_aio_read
= raw_aio_read
,
358 .bdrv_aio_write
= raw_aio_write
,
359 .bdrv_aio_cancel
= raw_aio_cancel
,
360 .aiocb_size
= sizeof(RawAIOCB
);
362 .bdrv_pread
= raw_pread
,
363 .bdrv_pwrite
= raw_pwrite
,
364 .bdrv_truncate
= raw_truncate
,
365 .bdrv_getlength
= raw_getlength
,
368 /***********************************************/
371 static int find_cdrom(char *cdrom_name
, int cdrom_name_size
)
373 char drives
[256], *pdrv
= drives
;
376 memset(drives
, 0, sizeof(drives
));
377 GetLogicalDriveStrings(sizeof(drives
), drives
);
378 while(pdrv
[0] != '\0') {
379 type
= GetDriveType(pdrv
);
382 snprintf(cdrom_name
, cdrom_name_size
, "\\\\.\\%c:", pdrv
[0]);
386 pdrv
+= lstrlen(pdrv
) + 1;
391 static int find_device_type(BlockDriverState
*bs
, const char *filename
)
393 BDRVRawState
*s
= bs
->opaque
;
397 if (strstart(filename
, "\\\\.\\", &p
) ||
398 strstart(filename
, "//./", &p
)) {
399 if (stristart(p
, "PhysicalDrive", NULL
))
400 return FTYPE_HARDDISK
;
401 snprintf(s
->drive_path
, sizeof(s
->drive_path
), "%c:\\", p
[0]);
402 type
= GetDriveType(s
->drive_path
);
403 if (type
== DRIVE_CDROM
)
412 static int hdev_open(BlockDriverState
*bs
, const char *filename
, int flags
)
414 BDRVRawState
*s
= bs
->opaque
;
415 int access_flags
, create_flags
;
417 char device_name
[64];
419 if (strstart(filename
, "/dev/cdrom", NULL
)) {
420 if (find_cdrom(device_name
, sizeof(device_name
)) < 0)
422 filename
= device_name
;
424 /* transform drive letters into device name */
425 if (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
426 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
427 filename
[1] == ':' && filename
[2] == '\0') {
428 snprintf(device_name
, sizeof(device_name
), "\\\\.\\%c:", filename
[0]);
429 filename
= device_name
;
432 s
->type
= find_device_type(bs
, filename
);
434 if ((flags
& BDRV_O_ACCESS
) == O_RDWR
) {
435 access_flags
= GENERIC_READ
| GENERIC_WRITE
;
437 access_flags
= GENERIC_READ
;
439 create_flags
= OPEN_EXISTING
;
442 overlapped
= FILE_FLAG_OVERLAPPED
;
444 overlapped
= FILE_ATTRIBUTE_NORMAL
;
446 if ((flags
& BDRV_O_NOCACHE
))
447 overlapped
|= FILE_FLAG_NO_BUFFERING
| FILE_FLAG_WRITE_THROUGH
;
448 else if (!(flags
& BDRV_O_CACHE_WB
))
449 overlapped
|= FILE_FLAG_WRITE_THROUGH
;
450 s
->hfile
= CreateFile(filename
, access_flags
,
451 FILE_SHARE_READ
, NULL
,
452 create_flags
, overlapped
, NULL
);
453 if (s
->hfile
== INVALID_HANDLE_VALUE
) {
454 int err
= GetLastError();
456 if (err
== ERROR_ACCESS_DENIED
)
464 /***********************************************/
465 /* removable device additional commands */
467 static int raw_is_inserted(BlockDriverState
*bs
)
472 static int raw_media_changed(BlockDriverState
*bs
)
477 static int raw_eject(BlockDriverState
*bs
, int eject_flag
)
481 if (s
->type
== FTYPE_FILE
)
484 DeviceIoControl(s
->hfile
, IOCTL_STORAGE_EJECT_MEDIA
,
485 NULL
, 0, NULL
, 0, &lpBytesReturned
, NULL
);
487 DeviceIoControl(s
->hfile
, IOCTL_STORAGE_LOAD_MEDIA
,
488 NULL
, 0, NULL
, 0, &lpBytesReturned
, NULL
);
492 static int raw_set_locked(BlockDriverState
*bs
, int locked
)
498 BlockDriver bdrv_host_device
= {
499 .format_name
= "host_device",
500 .instance_size
= sizeof(BDRVRawState
),
501 .bdrv_open
= hdev_open
,
502 .bdrv_close
= raw_close
,
503 .bdrv_flush
= raw_flush
,
506 .bdrv_aio_read
= raw_aio_read
,
507 .bdrv_aio_write
= raw_aio_write
,
508 .bdrv_aio_cancel
= raw_aio_cancel
,
509 .aiocb_size
= sizeof(RawAIOCB
);
511 .bdrv_pread
= raw_pread
,
512 .bdrv_pwrite
= raw_pwrite
,
513 .bdrv_getlength
= raw_getlength
,