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"
33 #define FTYPE_HARDDISK 2
35 typedef struct BDRVRawState {
38 char drive_path[16]; /* format: "d:\" */
41 int qemu_ftruncate64(int fd, int64_t length)
48 if ((GetVersion() & 0x80000000UL) && (length >> 32) != 0)
51 h = (HANDLE)_get_osfhandle(fd);
53 /* get current position, ftruncate do not change position */
55 li.LowPart = SetFilePointer (h, 0, &li.HighPart, FILE_CURRENT);
56 if (li.LowPart == 0xffffffffUL && GetLastError() != NO_ERROR)
60 if (!SetFilePointer(h, (DWORD) length, &high, FILE_BEGIN))
62 res = SetEndOfFile(h);
64 /* back to old position */
65 SetFilePointer(h, li.LowPart, &li.HighPart, FILE_BEGIN);
69 static int set_sparse(int fd)
72 return (int) DeviceIoControl((HANDLE)_get_osfhandle(fd), FSCTL_SET_SPARSE,
73 NULL, 0, NULL, 0, &returned, NULL);
76 static int raw_open(BlockDriverState *bs, const char *filename, int flags)
78 BDRVRawState *s = bs->opaque;
84 if (flags & BDRV_O_RDWR) {
85 access_flags = GENERIC_READ | GENERIC_WRITE;
87 access_flags = GENERIC_READ;
90 overlapped = FILE_ATTRIBUTE_NORMAL;
91 if (flags & BDRV_O_NOCACHE)
92 overlapped |= FILE_FLAG_NO_BUFFERING;
93 if (!(flags & BDRV_O_CACHE_WB))
94 overlapped |= FILE_FLAG_WRITE_THROUGH;
95 s->hfile = CreateFile(filename, access_flags,
96 FILE_SHARE_READ, NULL,
97 OPEN_EXISTING, overlapped, NULL);
98 if (s->hfile == INVALID_HANDLE_VALUE) {
99 int err = GetLastError();
101 if (err == ERROR_ACCESS_DENIED)
108 static int raw_read(BlockDriverState *bs, int64_t sector_num,
109 uint8_t *buf, int nb_sectors)
111 BDRVRawState *s = bs->opaque;
115 int64_t offset = sector_num * 512;
116 int count = nb_sectors * 512;
118 memset(&ov, 0, sizeof(ov));
120 ov.OffsetHigh = offset >> 32;
121 ret = ReadFile(s->hfile, buf, count, &ret_count, &ov);
124 if (ret_count == count)
129 static int raw_write(BlockDriverState *bs, int64_t sector_num,
130 const uint8_t *buf, int nb_sectors)
132 BDRVRawState *s = bs->opaque;
136 int64_t offset = sector_num * 512;
137 int count = nb_sectors * 512;
139 memset(&ov, 0, sizeof(ov));
141 ov.OffsetHigh = offset >> 32;
142 ret = WriteFile(s->hfile, buf, count, &ret_count, &ov);
145 if (ret_count == count)
150 static int raw_flush(BlockDriverState *bs)
152 BDRVRawState *s = bs->opaque;
155 ret = FlushFileBuffers(s->hfile);
163 static void raw_close(BlockDriverState *bs)
165 BDRVRawState *s = bs->opaque;
166 CloseHandle(s->hfile);
169 static int raw_truncate(BlockDriverState *bs, int64_t offset)
171 BDRVRawState *s = bs->opaque;
176 if (!SetFilePointer(s->hfile, low, &high, FILE_BEGIN))
178 if (!SetEndOfFile(s->hfile))
183 static int64_t raw_getlength(BlockDriverState *bs)
185 BDRVRawState *s = bs->opaque;
187 ULARGE_INTEGER available, total, total_free;
194 l.LowPart = GetFileSize(s->hfile, (PDWORD)&l.HighPart);
195 if (l.LowPart == 0xffffffffUL && GetLastError() != NO_ERROR)
199 if (!GetDiskFreeSpaceEx(s->drive_path, &available, &total, &total_free))
201 l.QuadPart = total.QuadPart;
204 status = DeviceIoControl(s->hfile, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
205 NULL, 0, &dg, sizeof(dg), &count, NULL);
216 static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
218 typedef DWORD (WINAPI * get_compressed_t)(const char *filename,
220 get_compressed_t get_compressed;
222 const char *filename = bs->filename;
223 /* WinNT support GetCompressedFileSize to determine allocate size */
225 (get_compressed_t) GetProcAddress(GetModuleHandle("kernel32"),
226 "GetCompressedFileSizeA");
227 if (get_compressed) {
229 low = get_compressed(filename, &high);
230 if (low != 0xFFFFFFFFlu || GetLastError() == NO_ERROR) {
231 return (((int64_t) high) << 32) + low;
235 if (_stati64(filename, &st) < 0) {
241 static int raw_create(const char *filename, QEMUOptionParameter *options)
244 int64_t total_size = 0;
246 /* Read out options */
247 while (options && options->name) {
248 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
249 total_size = options->value.n / 512;
254 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
259 ftruncate(fd, total_size * 512);
264 static QEMUOptionParameter raw_create_options[] = {
266 .name = BLOCK_OPT_SIZE,
268 .help = "Virtual disk size"
273 static BlockDriver bdrv_file = {
274 .format_name = "file",
275 .protocol_name = "file",
276 .instance_size = sizeof(BDRVRawState),
277 .bdrv_file_open = raw_open,
278 .bdrv_close = raw_close,
279 .bdrv_create = raw_create,
280 .bdrv_flush = raw_flush,
281 .bdrv_read = raw_read,
282 .bdrv_write = raw_write,
283 .bdrv_truncate = raw_truncate,
284 .bdrv_getlength = raw_getlength,
285 .bdrv_get_allocated_file_size
286 = raw_get_allocated_file_size,
288 .create_options = raw_create_options,
291 /***********************************************/
294 static int find_cdrom(char *cdrom_name, int cdrom_name_size)
296 char drives[256], *pdrv = drives;
299 memset(drives, 0, sizeof(drives));
300 GetLogicalDriveStrings(sizeof(drives), drives);
301 while(pdrv[0] != '\0') {
302 type = GetDriveType(pdrv);
305 snprintf(cdrom_name, cdrom_name_size, "\\\\.\\%c:", pdrv[0]);
309 pdrv += lstrlen(pdrv) + 1;
314 static int find_device_type(BlockDriverState *bs, const char *filename)
316 BDRVRawState *s = bs->opaque;
320 if (strstart(filename, "\\\\.\\", &p) ||
321 strstart(filename, "//./", &p)) {
322 if (stristart(p, "PhysicalDrive", NULL))
323 return FTYPE_HARDDISK;
324 snprintf(s->drive_path, sizeof(s->drive_path), "%c:\\", p[0]);
325 type = GetDriveType(s->drive_path);
327 case DRIVE_REMOVABLE:
329 return FTYPE_HARDDISK;
340 static int hdev_probe_device(const char *filename)
342 if (strstart(filename, "/dev/cdrom", NULL))
344 if (is_windows_drive(filename))
349 static int hdev_open(BlockDriverState *bs, const char *filename, int flags)
351 BDRVRawState *s = bs->opaque;
352 int access_flags, create_flags;
354 char device_name[64];
356 if (strstart(filename, "/dev/cdrom", NULL)) {
357 if (find_cdrom(device_name, sizeof(device_name)) < 0)
359 filename = device_name;
361 /* transform drive letters into device name */
362 if (((filename[0] >= 'a' && filename[0] <= 'z') ||
363 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
364 filename[1] == ':' && filename[2] == '\0') {
365 snprintf(device_name, sizeof(device_name), "\\\\.\\%c:", filename[0]);
366 filename = device_name;
369 s->type = find_device_type(bs, filename);
371 if (flags & BDRV_O_RDWR) {
372 access_flags = GENERIC_READ | GENERIC_WRITE;
374 access_flags = GENERIC_READ;
376 create_flags = OPEN_EXISTING;
378 overlapped = FILE_ATTRIBUTE_NORMAL;
379 if (flags & BDRV_O_NOCACHE)
380 overlapped |= FILE_FLAG_NO_BUFFERING;
381 if (!(flags & BDRV_O_CACHE_WB))
382 overlapped |= FILE_FLAG_WRITE_THROUGH;
383 s->hfile = CreateFile(filename, access_flags,
384 FILE_SHARE_READ, NULL,
385 create_flags, overlapped, NULL);
386 if (s->hfile == INVALID_HANDLE_VALUE) {
387 int err = GetLastError();
389 if (err == ERROR_ACCESS_DENIED)
397 /***********************************************/
398 /* removable device additional commands */
400 static int raw_is_inserted(BlockDriverState *bs)
405 static int raw_media_changed(BlockDriverState *bs)
410 static int raw_eject(BlockDriverState *bs, int eject_flag)
414 if (s->type == FTYPE_FILE)
417 DeviceIoControl(s->hfile, IOCTL_STORAGE_EJECT_MEDIA,
418 NULL, 0, NULL, 0, &lpBytesReturned, NULL);
420 DeviceIoControl(s->hfile, IOCTL_STORAGE_LOAD_MEDIA,
421 NULL, 0, NULL, 0, &lpBytesReturned, NULL);
425 static int raw_set_locked(BlockDriverState *bs, int locked)
431 static int hdev_has_zero_init(BlockDriverState *bs)
436 static BlockDriver bdrv_host_device = {
437 .format_name = "host_device",
438 .protocol_name = "host_device",
439 .instance_size = sizeof(BDRVRawState),
440 .bdrv_probe_device = hdev_probe_device,
441 .bdrv_file_open = hdev_open,
442 .bdrv_close = raw_close,
443 .bdrv_flush = raw_flush,
444 .bdrv_has_zero_init = hdev_has_zero_init,
446 .bdrv_read = raw_read,
447 .bdrv_write = raw_write,
448 .bdrv_getlength = raw_getlength,
449 .bdrv_get_allocated_file_size
450 = raw_get_allocated_file_size,
453 static void bdrv_file_init(void)
455 bdrv_register(&bdrv_file);
456 bdrv_register(&bdrv_host_device);
459 block_init(bdrv_file_init);