2007-12-15 18:28:36 +01:00
|
|
|
/*
|
|
|
|
* Block driver for RAW files (win32)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2018-02-01 12:18:46 +01:00
|
|
|
|
2016-01-18 19:01:42 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2016-03-20 18:16:19 +01:00
|
|
|
#include "qemu/cutils.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block_int.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/module.h"
|
2018-02-01 12:18:46 +01:00
|
|
|
#include "qemu/option.h"
|
2016-07-04 18:33:20 +02:00
|
|
|
#include "block/raw-aio.h"
|
2012-06-09 04:48:28 +02:00
|
|
|
#include "trace.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/thread-pool.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/iov.h"
|
2018-02-01 12:18:39 +01:00
|
|
|
#include "qapi/qmp/qdict.h"
|
2015-03-17 18:29:20 +01:00
|
|
|
#include "qapi/qmp/qstring.h"
|
2009-03-08 17:26:59 +01:00
|
|
|
#include <windows.h>
|
2007-12-15 18:28:36 +01:00
|
|
|
#include <winioctl.h>
|
|
|
|
|
|
|
|
#define FTYPE_FILE 0
|
|
|
|
#define FTYPE_CD 1
|
|
|
|
#define FTYPE_HARDDISK 2
|
|
|
|
|
2012-06-09 04:48:28 +02:00
|
|
|
typedef struct RawWin32AIOData {
|
|
|
|
BlockDriverState *bs;
|
|
|
|
HANDLE hfile;
|
|
|
|
struct iovec *aio_iov;
|
|
|
|
int aio_niov;
|
|
|
|
size_t aio_nbytes;
|
|
|
|
off64_t aio_offset;
|
|
|
|
int aio_type;
|
|
|
|
} RawWin32AIOData;
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
typedef struct BDRVRawState {
|
|
|
|
HANDLE hfile;
|
|
|
|
int type;
|
|
|
|
char drive_path[16]; /* format: "d:\" */
|
2012-10-26 11:43:58 +02:00
|
|
|
QEMUWin32AIOState *aio;
|
2007-12-15 18:28:36 +01:00
|
|
|
} BDRVRawState;
|
|
|
|
|
2012-06-09 04:48:28 +02:00
|
|
|
/*
|
|
|
|
* Read/writes the data to/from a given linear buffer.
|
|
|
|
*
|
|
|
|
* Returns the number of bytes handles or -errno in case of an error. Short
|
|
|
|
* reads are only returned if the end of the file is reached.
|
|
|
|
*/
|
|
|
|
static size_t handle_aiocb_rw(RawWin32AIOData *aiocb)
|
|
|
|
{
|
|
|
|
size_t offset = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < aiocb->aio_niov; i++) {
|
|
|
|
OVERLAPPED ov;
|
|
|
|
DWORD ret, ret_count, len;
|
|
|
|
|
|
|
|
memset(&ov, 0, sizeof(ov));
|
|
|
|
ov.Offset = (aiocb->aio_offset + offset);
|
|
|
|
ov.OffsetHigh = (aiocb->aio_offset + offset) >> 32;
|
|
|
|
len = aiocb->aio_iov[i].iov_len;
|
|
|
|
if (aiocb->aio_type & QEMU_AIO_WRITE) {
|
|
|
|
ret = WriteFile(aiocb->hfile, aiocb->aio_iov[i].iov_base,
|
|
|
|
len, &ret_count, &ov);
|
|
|
|
} else {
|
|
|
|
ret = ReadFile(aiocb->hfile, aiocb->aio_iov[i].iov_base,
|
|
|
|
len, &ret_count, &ov);
|
|
|
|
}
|
|
|
|
if (!ret) {
|
|
|
|
ret_count = 0;
|
|
|
|
}
|
|
|
|
if (ret_count != len) {
|
2013-09-09 11:14:55 +02:00
|
|
|
offset += ret_count;
|
2012-06-09 04:48:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
offset += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int aio_worker(void *arg)
|
|
|
|
{
|
|
|
|
RawWin32AIOData *aiocb = arg;
|
|
|
|
ssize_t ret = 0;
|
|
|
|
size_t count;
|
|
|
|
|
|
|
|
switch (aiocb->aio_type & QEMU_AIO_TYPE_MASK) {
|
|
|
|
case QEMU_AIO_READ:
|
|
|
|
count = handle_aiocb_rw(aiocb);
|
2015-02-05 19:58:24 +01:00
|
|
|
if (count < aiocb->aio_nbytes) {
|
2012-06-09 04:48:28 +02:00
|
|
|
/* A short read means that we have reached EOF. Pad the buffer
|
|
|
|
* with zeros for bytes after EOF. */
|
|
|
|
iov_memset(aiocb->aio_iov, aiocb->aio_niov, count,
|
|
|
|
0, aiocb->aio_nbytes - count);
|
|
|
|
|
|
|
|
count = aiocb->aio_nbytes;
|
|
|
|
}
|
|
|
|
if (count == aiocb->aio_nbytes) {
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QEMU_AIO_WRITE:
|
|
|
|
count = handle_aiocb_rw(aiocb);
|
|
|
|
if (count == aiocb->aio_nbytes) {
|
2015-09-23 14:58:21 +02:00
|
|
|
ret = 0;
|
2012-06-09 04:48:28 +02:00
|
|
|
} else {
|
2015-09-23 14:58:21 +02:00
|
|
|
ret = -EINVAL;
|
2012-06-09 04:48:28 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QEMU_AIO_FLUSH:
|
|
|
|
if (!FlushFileBuffers(aiocb->hfile)) {
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "invalid aio request (0x%x)\n", aiocb->aio_type);
|
|
|
|
ret = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-10-01 13:04:39 +02:00
|
|
|
g_free(aiocb);
|
2012-06-09 04:48:28 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-10-07 13:59:14 +02:00
|
|
|
static BlockAIOCB *paio_submit(BlockDriverState *bs, HANDLE hfile,
|
2016-07-16 01:22:55 +02:00
|
|
|
int64_t offset, QEMUIOVector *qiov, int count,
|
2014-10-07 13:59:15 +02:00
|
|
|
BlockCompletionFunc *cb, void *opaque, int type)
|
2012-06-09 04:48:28 +02:00
|
|
|
{
|
2015-10-01 13:04:39 +02:00
|
|
|
RawWin32AIOData *acb = g_new(RawWin32AIOData, 1);
|
2013-03-07 13:41:49 +01:00
|
|
|
ThreadPool *pool;
|
2012-06-09 04:48:28 +02:00
|
|
|
|
|
|
|
acb->bs = bs;
|
|
|
|
acb->hfile = hfile;
|
|
|
|
acb->aio_type = type;
|
|
|
|
|
|
|
|
if (qiov) {
|
|
|
|
acb->aio_iov = qiov->iov;
|
|
|
|
acb->aio_niov = qiov->niov;
|
2016-07-16 01:22:55 +02:00
|
|
|
assert(qiov->size == count);
|
2012-06-09 04:48:28 +02:00
|
|
|
}
|
2016-07-16 01:22:55 +02:00
|
|
|
acb->aio_nbytes = count;
|
|
|
|
acb->aio_offset = offset;
|
2012-06-09 04:48:28 +02:00
|
|
|
|
2018-07-10 08:31:15 +02:00
|
|
|
trace_file_paio_submit(acb, opaque, offset, count, type);
|
2013-03-07 13:41:49 +01:00
|
|
|
pool = aio_get_thread_pool(bdrv_get_aio_context(bs));
|
|
|
|
return thread_pool_submit_aio(pool, aio_worker, acb, cb, opaque);
|
2012-06-09 04:48:28 +02:00
|
|
|
}
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
int qemu_ftruncate64(int fd, int64_t length)
|
|
|
|
{
|
|
|
|
LARGE_INTEGER li;
|
2011-08-20 12:10:05 +02:00
|
|
|
DWORD dw;
|
2007-12-15 18:28:36 +01:00
|
|
|
LONG high;
|
|
|
|
HANDLE h;
|
|
|
|
BOOL res;
|
|
|
|
|
|
|
|
if ((GetVersion() & 0x80000000UL) && (length >> 32) != 0)
|
2018-12-13 23:37:37 +01:00
|
|
|
return -1;
|
2007-12-15 18:28:36 +01:00
|
|
|
|
|
|
|
h = (HANDLE)_get_osfhandle(fd);
|
|
|
|
|
|
|
|
/* get current position, ftruncate do not change position */
|
|
|
|
li.HighPart = 0;
|
|
|
|
li.LowPart = SetFilePointer (h, 0, &li.HighPart, FILE_CURRENT);
|
2011-08-20 12:10:05 +02:00
|
|
|
if (li.LowPart == INVALID_SET_FILE_POINTER && GetLastError() != NO_ERROR) {
|
2018-12-13 23:37:37 +01:00
|
|
|
return -1;
|
2011-08-20 12:10:05 +02:00
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
|
|
|
|
high = length >> 32;
|
2011-08-20 12:10:05 +02:00
|
|
|
dw = SetFilePointer(h, (DWORD) length, &high, FILE_BEGIN);
|
|
|
|
if (dw == INVALID_SET_FILE_POINTER && GetLastError() != NO_ERROR) {
|
2018-12-13 23:37:37 +01:00
|
|
|
return -1;
|
2011-08-20 12:10:05 +02:00
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
res = SetEndOfFile(h);
|
|
|
|
|
|
|
|
/* back to old position */
|
|
|
|
SetFilePointer(h, li.LowPart, &li.HighPart, FILE_BEGIN);
|
|
|
|
return res ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int set_sparse(int fd)
|
|
|
|
{
|
|
|
|
DWORD returned;
|
|
|
|
return (int) DeviceIoControl((HANDLE)_get_osfhandle(fd), FSCTL_SET_SPARSE,
|
2018-12-13 23:37:37 +01:00
|
|
|
NULL, 0, NULL, 0, &returned, NULL);
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:34:50 +02:00
|
|
|
static void raw_detach_aio_context(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
|
|
|
|
if (s->aio) {
|
|
|
|
win32_aio_detach_aio_context(s->aio, bdrv_get_aio_context(bs));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void raw_attach_aio_context(BlockDriverState *bs,
|
|
|
|
AioContext *new_context)
|
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
|
|
|
|
if (s->aio) {
|
|
|
|
win32_aio_attach_aio_context(s->aio, new_context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-24 00:37:16 +02:00
|
|
|
static void raw_probe_alignment(BlockDriverState *bs, Error **errp)
|
2011-11-29 12:42:20 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
DWORD sectorsPerCluster, freeClusters, totalClusters, count;
|
|
|
|
DISK_GEOMETRY_EX dg;
|
|
|
|
BOOL status;
|
|
|
|
|
|
|
|
if (s->type == FTYPE_CD) {
|
2016-06-24 00:37:24 +02:00
|
|
|
bs->bl.request_alignment = 2048;
|
2011-11-29 12:42:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (s->type == FTYPE_HARDDISK) {
|
|
|
|
status = DeviceIoControl(s->hfile, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
|
|
|
|
NULL, 0, &dg, sizeof(dg), &count, NULL);
|
|
|
|
if (status != 0) {
|
2016-06-24 00:37:24 +02:00
|
|
|
bs->bl.request_alignment = dg.Geometry.BytesPerSector;
|
2011-11-29 12:42:20 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* try GetDiskFreeSpace too */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s->drive_path[0]) {
|
|
|
|
GetDiskFreeSpace(s->drive_path, §orsPerCluster,
|
|
|
|
&dg.Geometry.BytesPerSector,
|
|
|
|
&freeClusters, &totalClusters);
|
2016-06-24 00:37:24 +02:00
|
|
|
bs->bl.request_alignment = dg.Geometry.BytesPerSector;
|
2018-04-24 21:25:02 +02:00
|
|
|
return;
|
2011-11-29 12:42:20 +01:00
|
|
|
}
|
2018-04-24 21:25:02 +02:00
|
|
|
|
|
|
|
/* XXX Does Windows support AIO on less than 512-byte alignment? */
|
|
|
|
bs->bl.request_alignment = 512;
|
2011-11-29 12:42:20 +01:00
|
|
|
}
|
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
static void raw_parse_flags(int flags, bool use_aio, int *access_flags,
|
|
|
|
DWORD *overlapped)
|
2012-09-20 21:13:21 +02:00
|
|
|
{
|
|
|
|
assert(access_flags != NULL);
|
|
|
|
assert(overlapped != NULL);
|
|
|
|
|
|
|
|
if (flags & BDRV_O_RDWR) {
|
|
|
|
*access_flags = GENERIC_READ | GENERIC_WRITE;
|
|
|
|
} else {
|
|
|
|
*access_flags = GENERIC_READ;
|
|
|
|
}
|
|
|
|
|
|
|
|
*overlapped = FILE_ATTRIBUTE_NORMAL;
|
2016-09-08 15:09:01 +02:00
|
|
|
if (use_aio) {
|
2012-10-26 11:43:58 +02:00
|
|
|
*overlapped |= FILE_FLAG_OVERLAPPED;
|
|
|
|
}
|
2012-09-20 21:13:21 +02:00
|
|
|
if (flags & BDRV_O_NOCACHE) {
|
|
|
|
*overlapped |= FILE_FLAG_NO_BUFFERING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-05 22:41:39 +01:00
|
|
|
static void raw_parse_filename(const char *filename, QDict *options,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2017-05-22 21:52:16 +02:00
|
|
|
bdrv_parse_filename_strip_prefix(filename, "file:", options);
|
2014-03-05 22:41:39 +01:00
|
|
|
}
|
|
|
|
|
2013-04-10 11:34:56 +02:00
|
|
|
static QemuOptsList raw_runtime_opts = {
|
|
|
|
.name = "raw",
|
|
|
|
.head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
|
|
|
|
.desc = {
|
|
|
|
{
|
|
|
|
.name = "filename",
|
|
|
|
.type = QEMU_OPT_STRING,
|
|
|
|
.help = "File name of the image",
|
|
|
|
},
|
2016-09-08 15:09:01 +02:00
|
|
|
{
|
|
|
|
.name = "aio",
|
|
|
|
.type = QEMU_OPT_STRING,
|
|
|
|
.help = "host AIO implementation (threads, native)",
|
|
|
|
},
|
2020-09-07 11:27:39 +02:00
|
|
|
{
|
|
|
|
.name = "locking",
|
|
|
|
.type = QEMU_OPT_STRING,
|
|
|
|
.help = "file locking mode (on/off/auto, default: auto)",
|
|
|
|
},
|
2013-04-10 11:34:56 +02:00
|
|
|
{ /* end of list */ }
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
static bool get_aio_option(QemuOpts *opts, int flags, Error **errp)
|
|
|
|
{
|
|
|
|
BlockdevAioOptions aio, aio_default;
|
|
|
|
|
|
|
|
aio_default = (flags & BDRV_O_NATIVE_AIO) ? BLOCKDEV_AIO_OPTIONS_NATIVE
|
|
|
|
: BLOCKDEV_AIO_OPTIONS_THREADS;
|
2017-08-24 10:46:10 +02:00
|
|
|
aio = qapi_enum_parse(&BlockdevAioOptions_lookup, qemu_opt_get(opts, "aio"),
|
2017-08-24 10:45:57 +02:00
|
|
|
aio_default, errp);
|
2016-09-08 15:09:01 +02:00
|
|
|
|
|
|
|
switch (aio) {
|
|
|
|
case BLOCKDEV_AIO_OPTIONS_NATIVE:
|
|
|
|
return true;
|
|
|
|
case BLOCKDEV_AIO_OPTIONS_THREADS:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
error_setg(errp, "Invalid AIO option");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-05 14:22:29 +02:00
|
|
|
static int raw_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
|
Error **errp)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2010-01-20 18:13:42 +01:00
|
|
|
int access_flags;
|
2007-12-15 18:28:36 +01:00
|
|
|
DWORD overlapped;
|
2013-04-10 11:34:56 +02:00
|
|
|
QemuOpts *opts;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
const char *filename;
|
2016-09-08 15:09:01 +02:00
|
|
|
bool use_aio;
|
2020-09-07 11:27:39 +02:00
|
|
|
OnOffAuto locking;
|
2013-04-10 11:34:56 +02:00
|
|
|
int ret;
|
2007-12-15 18:28:36 +01:00
|
|
|
|
|
|
|
s->type = FTYPE_FILE;
|
|
|
|
|
2014-01-02 03:49:17 +01:00
|
|
|
opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
|
2020-07-07 18:06:03 +02:00
|
|
|
if (!qemu_opts_absorb_qdict(opts, options, errp)) {
|
2013-04-10 11:34:56 +02:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2020-09-07 11:27:39 +02:00
|
|
|
locking = qapi_enum_parse(&OnOffAuto_lookup,
|
|
|
|
qemu_opt_get(opts, "locking"),
|
|
|
|
ON_OFF_AUTO_AUTO, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
switch (locking) {
|
|
|
|
case ON_OFF_AUTO_ON:
|
2017-05-02 18:35:51 +02:00
|
|
|
error_setg(errp, "locking=on is not supported on Windows");
|
2017-05-16 09:42:55 +02:00
|
|
|
ret = -EINVAL;
|
2017-05-02 18:35:51 +02:00
|
|
|
goto fail;
|
2020-09-07 11:27:39 +02:00
|
|
|
case ON_OFF_AUTO_OFF:
|
|
|
|
case ON_OFF_AUTO_AUTO:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
2017-05-02 18:35:51 +02:00
|
|
|
}
|
|
|
|
|
2013-04-10 11:34:56 +02:00
|
|
|
filename = qemu_opt_get(opts, "filename");
|
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
use_aio = get_aio_option(opts, flags, &local_err);
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_parse_flags(flags, use_aio, &access_flags, &overlapped);
|
2013-04-10 11:34:56 +02:00
|
|
|
|
2011-11-29 12:42:20 +01:00
|
|
|
if (filename[0] && filename[1] == ':') {
|
|
|
|
snprintf(s->drive_path, sizeof(s->drive_path), "%c:\\", filename[0]);
|
|
|
|
} else if (filename[0] == '\\' && filename[1] == '\\') {
|
|
|
|
s->drive_path[0] = 0;
|
|
|
|
} else {
|
|
|
|
/* Relative path. */
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
GetCurrentDirectory(MAX_PATH, buf);
|
|
|
|
snprintf(s->drive_path, sizeof(s->drive_path), "%c:\\", buf[0]);
|
|
|
|
}
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
s->hfile = CreateFile(filename, access_flags,
|
|
|
|
FILE_SHARE_READ, NULL,
|
2010-01-20 18:13:42 +01:00
|
|
|
OPEN_EXISTING, overlapped, NULL);
|
2007-12-15 18:28:36 +01:00
|
|
|
if (s->hfile == INVALID_HANDLE_VALUE) {
|
|
|
|
int err = GetLastError();
|
|
|
|
|
2016-10-11 16:12:35 +02:00
|
|
|
error_setg_win32(errp, err, "Could not open '%s'", filename);
|
2013-04-10 11:34:56 +02:00
|
|
|
if (err == ERROR_ACCESS_DENIED) {
|
|
|
|
ret = -EACCES;
|
|
|
|
} else {
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
goto fail;
|
2012-10-26 11:43:58 +02:00
|
|
|
}
|
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
if (use_aio) {
|
2014-05-08 16:34:49 +02:00
|
|
|
s->aio = win32_aio_init();
|
|
|
|
if (s->aio == NULL) {
|
|
|
|
CloseHandle(s->hfile);
|
|
|
|
error_setg(errp, "Could not initialize AIO");
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = win32_aio_attach(s->aio, s->hfile);
|
2012-10-26 11:43:58 +02:00
|
|
|
if (ret < 0) {
|
2014-05-08 16:34:49 +02:00
|
|
|
win32_aio_cleanup(s->aio);
|
2012-10-26 11:43:58 +02:00
|
|
|
CloseHandle(s->hfile);
|
2013-10-10 15:44:02 +02:00
|
|
|
error_setg_errno(errp, -ret, "Could not enable AIO");
|
2013-04-10 11:34:56 +02:00
|
|
|
goto fail;
|
2012-10-26 11:43:58 +02:00
|
|
|
}
|
2014-05-08 16:34:50 +02:00
|
|
|
|
|
|
|
win32_aio_attach_aio_context(s->aio, bdrv_get_aio_context(bs));
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
2013-04-10 11:34:56 +02:00
|
|
|
|
2020-04-28 22:28:58 +02:00
|
|
|
/* When extending regular files, we get zeros from the OS */
|
|
|
|
bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE;
|
|
|
|
|
2013-04-10 11:34:56 +02:00
|
|
|
ret = 0;
|
|
|
|
fail:
|
|
|
|
qemu_opts_del(opts);
|
|
|
|
return ret;
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
2018-04-24 21:25:02 +02:00
|
|
|
static BlockAIOCB *raw_aio_preadv(BlockDriverState *bs,
|
|
|
|
uint64_t offset, uint64_t bytes,
|
|
|
|
QEMUIOVector *qiov, int flags,
|
|
|
|
BlockCompletionFunc *cb, void *opaque)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2012-10-26 11:43:58 +02:00
|
|
|
if (s->aio) {
|
2018-04-24 21:25:02 +02:00
|
|
|
return win32_aio_submit(bs, s->aio, s->hfile, offset, bytes, qiov,
|
|
|
|
cb, opaque, QEMU_AIO_READ);
|
2012-10-26 11:43:58 +02:00
|
|
|
} else {
|
2018-04-24 21:25:02 +02:00
|
|
|
return paio_submit(bs, s->hfile, offset, qiov, bytes,
|
2012-10-26 11:43:58 +02:00
|
|
|
cb, opaque, QEMU_AIO_READ);
|
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
2018-04-24 21:25:02 +02:00
|
|
|
static BlockAIOCB *raw_aio_pwritev(BlockDriverState *bs,
|
|
|
|
uint64_t offset, uint64_t bytes,
|
|
|
|
QEMUIOVector *qiov, int flags,
|
|
|
|
BlockCompletionFunc *cb, void *opaque)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2012-10-26 11:43:58 +02:00
|
|
|
if (s->aio) {
|
2018-04-24 21:25:02 +02:00
|
|
|
return win32_aio_submit(bs, s->aio, s->hfile, offset, bytes, qiov,
|
|
|
|
cb, opaque, QEMU_AIO_WRITE);
|
2012-10-26 11:43:58 +02:00
|
|
|
} else {
|
2018-04-24 21:25:02 +02:00
|
|
|
return paio_submit(bs, s->hfile, offset, qiov, bytes,
|
2012-10-26 11:43:58 +02:00
|
|
|
cb, opaque, QEMU_AIO_WRITE);
|
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
2014-10-07 13:59:14 +02:00
|
|
|
static BlockAIOCB *raw_aio_flush(BlockDriverState *bs,
|
2014-10-07 13:59:15 +02:00
|
|
|
BlockCompletionFunc *cb, void *opaque)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2012-06-09 04:48:28 +02:00
|
|
|
return paio_submit(bs, s->hfile, 0, NULL, 0, cb, opaque, QEMU_AIO_FLUSH);
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void raw_close(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2014-05-08 16:34:49 +02:00
|
|
|
|
|
|
|
if (s->aio) {
|
2014-05-08 16:34:50 +02:00
|
|
|
win32_aio_detach_aio_context(s->aio, bdrv_get_aio_context(bs));
|
2014-05-08 16:34:49 +02:00
|
|
|
win32_aio_cleanup(s->aio);
|
|
|
|
s->aio = NULL;
|
|
|
|
}
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
CloseHandle(s->hfile);
|
2014-04-11 19:16:36 +02:00
|
|
|
if (bs->open_flags & BDRV_O_TEMPORARY) {
|
|
|
|
unlink(bs->filename);
|
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
block: Convert .bdrv_truncate callback to coroutine_fn
bdrv_truncate() is an operation that can block (even for a quite long
time, depending on the PreallocMode) in I/O paths that shouldn't block.
Convert it to a coroutine_fn so that we have the infrastructure for
drivers to make their .bdrv_co_truncate implementation asynchronous.
This change could potentially introduce new race conditions because
bdrv_truncate() isn't necessarily executed atomically any more. Whether
this is a problem needs to be evaluated for each block driver that
supports truncate:
* file-posix/win32, gluster, iscsi, nfs, rbd, ssh, sheepdog: The
protocol drivers are trivially safe because they don't actually yield
yet, so there is no change in behaviour.
* copy-on-read, crypto, raw-format: Essentially just filter drivers that
pass the request to a child node, no problem.
* qcow2: The implementation modifies metadata, so it needs to hold
s->lock to be safe with concurrent I/O requests. In order to avoid
double locking, this requires pulling the locking out into
preallocate_co() and using qcow2_write_caches() instead of
bdrv_flush().
* qed: Does a single header update, this is fine without locking.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
2018-06-21 17:54:35 +02:00
|
|
|
static int coroutine_fn raw_co_truncate(BlockDriverState *bs, int64_t offset,
|
2019-09-18 11:51:40 +02:00
|
|
|
bool exact, PreallocMode prealloc,
|
2020-04-24 14:54:39 +02:00
|
|
|
BdrvRequestFlags flags, Error **errp)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
2009-04-05 20:03:31 +02:00
|
|
|
LONG low, high;
|
2012-12-10 12:56:22 +01:00
|
|
|
DWORD dwPtrLow;
|
2007-12-15 18:28:36 +01:00
|
|
|
|
2017-06-13 22:20:52 +02:00
|
|
|
if (prealloc != PREALLOC_MODE_OFF) {
|
|
|
|
error_setg(errp, "Unsupported preallocation mode '%s'",
|
2017-08-24 10:46:08 +02:00
|
|
|
PreallocMode_str(prealloc));
|
2017-06-13 22:20:52 +02:00
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
low = offset;
|
|
|
|
high = offset >> 32;
|
2012-12-10 12:56:22 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* An error has occurred if the return value is INVALID_SET_FILE_POINTER
|
|
|
|
* and GetLastError doesn't return NO_ERROR.
|
|
|
|
*/
|
|
|
|
dwPtrLow = SetFilePointer(s->hfile, low, &high, FILE_BEGIN);
|
|
|
|
if (dwPtrLow == INVALID_SET_FILE_POINTER && GetLastError() != NO_ERROR) {
|
2017-03-28 22:51:28 +02:00
|
|
|
error_setg_win32(errp, GetLastError(), "SetFilePointer error");
|
2012-12-10 12:56:22 +01:00
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
if (SetEndOfFile(s->hfile) == 0) {
|
2017-03-28 22:51:28 +02:00
|
|
|
error_setg_win32(errp, GetLastError(), "SetEndOfFile error");
|
2007-12-15 18:28:36 +01:00
|
|
|
return -EIO;
|
2012-12-10 12:56:22 +01:00
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int64_t raw_getlength(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
LARGE_INTEGER l;
|
|
|
|
ULARGE_INTEGER available, total, total_free;
|
|
|
|
DISK_GEOMETRY_EX dg;
|
|
|
|
DWORD count;
|
|
|
|
BOOL status;
|
|
|
|
|
|
|
|
switch(s->type) {
|
|
|
|
case FTYPE_FILE:
|
2009-04-05 20:03:31 +02:00
|
|
|
l.LowPart = GetFileSize(s->hfile, (PDWORD)&l.HighPart);
|
2007-12-15 18:28:36 +01:00
|
|
|
if (l.LowPart == 0xffffffffUL && GetLastError() != NO_ERROR)
|
|
|
|
return -EIO;
|
|
|
|
break;
|
|
|
|
case FTYPE_CD:
|
|
|
|
if (!GetDiskFreeSpaceEx(s->drive_path, &available, &total, &total_free))
|
|
|
|
return -EIO;
|
|
|
|
l.QuadPart = total.QuadPart;
|
|
|
|
break;
|
|
|
|
case FTYPE_HARDDISK:
|
|
|
|
status = DeviceIoControl(s->hfile, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX,
|
|
|
|
NULL, 0, &dg, sizeof(dg), &count, NULL);
|
|
|
|
if (status != 0) {
|
|
|
|
l = dg.DiskSize;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
return l.QuadPart;
|
|
|
|
}
|
|
|
|
|
2011-07-12 13:56:39 +02:00
|
|
|
static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
typedef DWORD (WINAPI * get_compressed_t)(const char *filename,
|
|
|
|
DWORD * high);
|
|
|
|
get_compressed_t get_compressed;
|
|
|
|
struct _stati64 st;
|
|
|
|
const char *filename = bs->filename;
|
|
|
|
/* WinNT support GetCompressedFileSize to determine allocate size */
|
|
|
|
get_compressed =
|
|
|
|
(get_compressed_t) GetProcAddress(GetModuleHandle("kernel32"),
|
|
|
|
"GetCompressedFileSizeA");
|
|
|
|
if (get_compressed) {
|
|
|
|
DWORD high, low;
|
|
|
|
low = get_compressed(filename, &high);
|
|
|
|
if (low != 0xFFFFFFFFlu || GetLastError() == NO_ERROR) {
|
|
|
|
return (((int64_t) high) << 32) + low;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_stati64(filename, &st) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return st.st_size;
|
|
|
|
}
|
|
|
|
|
2018-02-05 16:24:32 +01:00
|
|
|
static int raw_co_create(BlockdevCreateOptions *options, Error **errp)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
2018-02-05 16:24:32 +01:00
|
|
|
BlockdevCreateOptionsFile *file_opts;
|
2007-12-15 18:28:36 +01:00
|
|
|
int fd;
|
|
|
|
|
2018-02-05 16:24:32 +01:00
|
|
|
assert(options->driver == BLOCKDEV_DRIVER_FILE);
|
|
|
|
file_opts = &options->u.file;
|
2014-03-05 22:41:40 +01:00
|
|
|
|
2018-02-05 16:24:32 +01:00
|
|
|
if (file_opts->has_preallocation) {
|
|
|
|
error_setg(errp, "Preallocation is not supported on Windows");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (file_opts->has_nocow) {
|
|
|
|
error_setg(errp, "nocow is not supported on Windows");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
|
2020-07-01 16:22:43 +02:00
|
|
|
fd = qemu_create(file_opts->filename, O_WRONLY | O_TRUNC | O_BINARY,
|
|
|
|
0644, errp);
|
2013-10-10 15:44:02 +02:00
|
|
|
if (fd < 0) {
|
2007-12-15 18:28:36 +01:00
|
|
|
return -EIO;
|
2013-10-10 15:44:02 +02:00
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
set_sparse(fd);
|
2018-02-05 16:24:32 +01:00
|
|
|
ftruncate(fd, file_opts->size);
|
2012-08-14 22:43:46 +02:00
|
|
|
qemu_close(fd);
|
2018-02-05 16:24:32 +01:00
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-26 02:12:17 +01:00
|
|
|
static int coroutine_fn raw_co_create_opts(BlockDriver *drv,
|
|
|
|
const char *filename,
|
|
|
|
QemuOpts *opts,
|
2018-02-05 16:24:32 +01:00
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
BlockdevCreateOptions options;
|
|
|
|
int64_t total_size = 0;
|
|
|
|
|
|
|
|
strstart(filename, "file:", &filename);
|
|
|
|
|
|
|
|
/* Read out options */
|
|
|
|
total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
|
|
|
|
BDRV_SECTOR_SIZE);
|
|
|
|
|
|
|
|
options = (BlockdevCreateOptions) {
|
|
|
|
.driver = BLOCKDEV_DRIVER_FILE,
|
|
|
|
.u.file = {
|
|
|
|
.filename = (char *) filename,
|
|
|
|
.size = total_size,
|
|
|
|
.has_preallocation = false,
|
|
|
|
.has_nocow = false,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
return raw_co_create(&options, errp);
|
|
|
|
}
|
2014-06-05 11:21:02 +02:00
|
|
|
|
|
|
|
static QemuOptsList raw_create_opts = {
|
|
|
|
.name = "raw-create-opts",
|
|
|
|
.head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
|
|
|
|
.desc = {
|
|
|
|
{
|
|
|
|
.name = BLOCK_OPT_SIZE,
|
|
|
|
.type = QEMU_OPT_SIZE,
|
|
|
|
.help = "Virtual disk size"
|
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
}
|
2009-05-18 16:42:10 +02:00
|
|
|
};
|
|
|
|
|
2014-12-02 18:32:41 +01:00
|
|
|
BlockDriver bdrv_file = {
|
2010-04-07 22:30:24 +02:00
|
|
|
.format_name = "file",
|
|
|
|
.protocol_name = "file",
|
2009-04-07 20:23:51 +02:00
|
|
|
.instance_size = sizeof(BDRVRawState),
|
2013-09-24 17:07:04 +02:00
|
|
|
.bdrv_needs_filename = true,
|
2014-03-05 22:41:39 +01:00
|
|
|
.bdrv_parse_filename = raw_parse_filename,
|
2014-06-05 11:21:02 +02:00
|
|
|
.bdrv_file_open = raw_open,
|
2016-06-24 00:37:16 +02:00
|
|
|
.bdrv_refresh_limits = raw_probe_alignment,
|
2014-06-05 11:21:02 +02:00
|
|
|
.bdrv_close = raw_close,
|
2018-01-18 13:43:45 +01:00
|
|
|
.bdrv_co_create_opts = raw_co_create_opts,
|
2013-06-28 12:47:42 +02:00
|
|
|
.bdrv_has_zero_init = bdrv_has_zero_init_1,
|
2011-11-10 17:25:44 +01:00
|
|
|
|
2018-04-24 21:25:02 +02:00
|
|
|
.bdrv_aio_preadv = raw_aio_preadv,
|
|
|
|
.bdrv_aio_pwritev = raw_aio_pwritev,
|
2012-06-09 04:48:28 +02:00
|
|
|
.bdrv_aio_flush = raw_aio_flush,
|
2011-11-10 17:25:44 +01:00
|
|
|
|
block: Convert .bdrv_truncate callback to coroutine_fn
bdrv_truncate() is an operation that can block (even for a quite long
time, depending on the PreallocMode) in I/O paths that shouldn't block.
Convert it to a coroutine_fn so that we have the infrastructure for
drivers to make their .bdrv_co_truncate implementation asynchronous.
This change could potentially introduce new race conditions because
bdrv_truncate() isn't necessarily executed atomically any more. Whether
this is a problem needs to be evaluated for each block driver that
supports truncate:
* file-posix/win32, gluster, iscsi, nfs, rbd, ssh, sheepdog: The
protocol drivers are trivially safe because they don't actually yield
yet, so there is no change in behaviour.
* copy-on-read, crypto, raw-format: Essentially just filter drivers that
pass the request to a child node, no problem.
* qcow2: The implementation modifies metadata, so it needs to hold
s->lock to be safe with concurrent I/O requests. In order to avoid
double locking, this requires pulling the locking out into
preallocate_co() and using qcow2_write_caches() instead of
bdrv_flush().
* qed: Does a single header update, this is fine without locking.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
2018-06-21 17:54:35 +02:00
|
|
|
.bdrv_co_truncate = raw_co_truncate,
|
2009-04-07 20:23:51 +02:00
|
|
|
.bdrv_getlength = raw_getlength,
|
2011-07-12 13:56:39 +02:00
|
|
|
.bdrv_get_allocated_file_size
|
|
|
|
= raw_get_allocated_file_size,
|
2009-05-18 16:42:10 +02:00
|
|
|
|
2014-06-05 11:21:02 +02:00
|
|
|
.create_opts = &raw_create_opts,
|
2007-12-15 18:28:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/***********************************************/
|
|
|
|
/* host device */
|
|
|
|
|
|
|
|
static int find_cdrom(char *cdrom_name, int cdrom_name_size)
|
|
|
|
{
|
|
|
|
char drives[256], *pdrv = drives;
|
|
|
|
UINT type;
|
|
|
|
|
|
|
|
memset(drives, 0, sizeof(drives));
|
|
|
|
GetLogicalDriveStrings(sizeof(drives), drives);
|
|
|
|
while(pdrv[0] != '\0') {
|
|
|
|
type = GetDriveType(pdrv);
|
|
|
|
switch(type) {
|
|
|
|
case DRIVE_CDROM:
|
|
|
|
snprintf(cdrom_name, cdrom_name_size, "\\\\.\\%c:", pdrv[0]);
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pdrv += lstrlen(pdrv) + 1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int find_device_type(BlockDriverState *bs, const char *filename)
|
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
UINT type;
|
|
|
|
const char *p;
|
|
|
|
|
|
|
|
if (strstart(filename, "\\\\.\\", &p) ||
|
|
|
|
strstart(filename, "//./", &p)) {
|
|
|
|
if (stristart(p, "PhysicalDrive", NULL))
|
|
|
|
return FTYPE_HARDDISK;
|
|
|
|
snprintf(s->drive_path, sizeof(s->drive_path), "%c:\\", p[0]);
|
|
|
|
type = GetDriveType(s->drive_path);
|
2009-04-07 03:24:53 +02:00
|
|
|
switch (type) {
|
|
|
|
case DRIVE_REMOVABLE:
|
|
|
|
case DRIVE_FIXED:
|
|
|
|
return FTYPE_HARDDISK;
|
|
|
|
case DRIVE_CDROM:
|
2007-12-15 18:28:36 +01:00
|
|
|
return FTYPE_CD;
|
2009-04-07 03:24:53 +02:00
|
|
|
default:
|
2007-12-15 18:28:36 +01:00
|
|
|
return FTYPE_FILE;
|
2009-04-07 03:24:53 +02:00
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
} else {
|
|
|
|
return FTYPE_FILE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-15 14:04:22 +02:00
|
|
|
static int hdev_probe_device(const char *filename)
|
|
|
|
{
|
|
|
|
if (strstart(filename, "/dev/cdrom", NULL))
|
|
|
|
return 100;
|
|
|
|
if (is_windows_drive(filename))
|
|
|
|
return 100;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-08 00:39:45 +01:00
|
|
|
static void hdev_parse_filename(const char *filename, QDict *options,
|
|
|
|
Error **errp)
|
|
|
|
{
|
2017-05-22 21:52:16 +02:00
|
|
|
bdrv_parse_filename_strip_prefix(filename, "host_device:", options);
|
2014-03-08 00:39:45 +01:00
|
|
|
}
|
|
|
|
|
2018-04-24 21:25:02 +02:00
|
|
|
static void hdev_refresh_limits(BlockDriverState *bs, Error **errp)
|
|
|
|
{
|
|
|
|
/* XXX Does Windows support AIO on less than 512-byte alignment? */
|
|
|
|
bs->bl.request_alignment = 512;
|
|
|
|
}
|
|
|
|
|
2013-09-05 14:22:29 +02:00
|
|
|
static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
|
Error **errp)
|
2007-12-15 18:28:36 +01:00
|
|
|
{
|
|
|
|
BDRVRawState *s = bs->opaque;
|
|
|
|
int access_flags, create_flags;
|
2013-09-01 22:59:25 +02:00
|
|
|
int ret = 0;
|
2007-12-15 18:28:36 +01:00
|
|
|
DWORD overlapped;
|
|
|
|
char device_name[64];
|
2013-09-01 22:59:25 +02:00
|
|
|
|
|
|
|
Error *local_err = NULL;
|
|
|
|
const char *filename;
|
2016-09-08 15:09:01 +02:00
|
|
|
bool use_aio;
|
2013-09-01 22:59:25 +02:00
|
|
|
|
2014-01-02 03:49:17 +01:00
|
|
|
QemuOpts *opts = qemu_opts_create(&raw_runtime_opts, NULL, 0,
|
|
|
|
&error_abort);
|
2020-07-07 18:06:03 +02:00
|
|
|
if (!qemu_opts_absorb_qdict(opts, options, errp)) {
|
2013-09-01 22:59:25 +02:00
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
filename = qemu_opt_get(opts, "filename");
|
2007-12-15 18:28:36 +01:00
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
use_aio = get_aio_option(opts, flags, &local_err);
|
|
|
|
if (!local_err && use_aio) {
|
|
|
|
error_setg(&local_err, "AIO is not supported on Windows host devices");
|
|
|
|
}
|
|
|
|
if (local_err) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
if (strstart(filename, "/dev/cdrom", NULL)) {
|
2013-09-01 22:59:25 +02:00
|
|
|
if (find_cdrom(device_name, sizeof(device_name)) < 0) {
|
2013-10-10 15:44:02 +02:00
|
|
|
error_setg(errp, "Could not open CD-ROM drive");
|
2013-09-01 22:59:25 +02:00
|
|
|
ret = -ENOENT;
|
|
|
|
goto done;
|
|
|
|
}
|
2007-12-15 18:28:36 +01:00
|
|
|
filename = device_name;
|
|
|
|
} else {
|
|
|
|
/* transform drive letters into device name */
|
|
|
|
if (((filename[0] >= 'a' && filename[0] <= 'z') ||
|
|
|
|
(filename[0] >= 'A' && filename[0] <= 'Z')) &&
|
|
|
|
filename[1] == ':' && filename[2] == '\0') {
|
|
|
|
snprintf(device_name, sizeof(device_name), "\\\\.\\%c:", filename[0]);
|
|
|
|
filename = device_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s->type = find_device_type(bs, filename);
|
|
|
|
|
2016-09-08 15:09:01 +02:00
|
|
|
raw_parse_flags(flags, use_aio, &access_flags, &overlapped);
|
2012-09-20 21:13:21 +02:00
|
|
|
|
2007-12-15 18:28:36 +01:00
|
|
|
create_flags = OPEN_EXISTING;
|
|
|
|
|
|
|
|
s->hfile = CreateFile(filename, access_flags,
|
|
|
|
FILE_SHARE_READ, NULL,
|
|
|
|
create_flags, overlapped, NULL);
|
|
|
|
if (s->hfile == INVALID_HANDLE_VALUE) {
|
|
|
|
int err = GetLastError();
|
|
|
|
|
2013-09-01 22:59:25 +02:00
|
|
|
if (err == ERROR_ACCESS_DENIED) {
|
|
|
|
ret = -EACCES;
|
|
|
|
} else {
|
2013-10-11 14:30:16 +02:00
|
|
|
ret = -EINVAL;
|
2013-09-01 22:59:25 +02:00
|
|
|
}
|
2013-10-11 14:30:16 +02:00
|
|
|
error_setg_errno(errp, -ret, "Could not open device");
|
2013-09-01 22:59:25 +02:00
|
|
|
goto done;
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
2013-09-01 22:59:25 +02:00
|
|
|
|
|
|
|
done:
|
|
|
|
qemu_opts_del(opts);
|
|
|
|
return ret;
|
2007-12-15 18:28:36 +01:00
|
|
|
}
|
|
|
|
|
2009-05-10 00:03:42 +02:00
|
|
|
static BlockDriver bdrv_host_device = {
|
2009-03-07 23:00:29 +01:00
|
|
|
.format_name = "host_device",
|
2010-04-07 22:30:24 +02:00
|
|
|
.protocol_name = "host_device",
|
2009-03-07 23:00:29 +01:00
|
|
|
.instance_size = sizeof(BDRVRawState),
|
2013-09-24 17:07:04 +02:00
|
|
|
.bdrv_needs_filename = true,
|
2014-03-08 00:39:45 +01:00
|
|
|
.bdrv_parse_filename = hdev_parse_filename,
|
2009-06-15 14:04:22 +02:00
|
|
|
.bdrv_probe_device = hdev_probe_device,
|
2010-04-14 14:17:38 +02:00
|
|
|
.bdrv_file_open = hdev_open,
|
2009-03-07 23:00:29 +01:00
|
|
|
.bdrv_close = raw_close,
|
2018-04-24 21:25:02 +02:00
|
|
|
.bdrv_refresh_limits = hdev_refresh_limits,
|
2007-12-15 18:28:36 +01:00
|
|
|
|
2018-04-24 21:25:02 +02:00
|
|
|
.bdrv_aio_preadv = raw_aio_preadv,
|
|
|
|
.bdrv_aio_pwritev = raw_aio_pwritev,
|
2012-06-09 04:48:28 +02:00
|
|
|
.bdrv_aio_flush = raw_aio_flush,
|
2011-11-10 17:25:44 +01:00
|
|
|
|
2014-05-08 16:34:50 +02:00
|
|
|
.bdrv_detach_aio_context = raw_detach_aio_context,
|
|
|
|
.bdrv_attach_aio_context = raw_attach_aio_context,
|
|
|
|
|
block: Avoid unecessary drv->bdrv_getlength() calls
The block layer generally keeps the size of an image cached in
bs->total_sectors so that it doesn't have to perform expensive
operations to get the size whenever it needs it.
This doesn't work however when using a backend that can change its size
without qemu being aware of it, i.e. passthrough of removable media like
CD-ROMs or floppy disks. For this reason, the caching is disabled when a
removable device is used.
It is obvious that checking whether the _guest_ device has removable
media isn't the right thing to do when we want to know whether the size
of the host backend can change. To make things worse, non-top-level
BlockDriverStates never have any device attached, which makes qemu
assume they are removable, so drv->bdrv_getlength() is always called on
the protocol layer. In the case of raw-posix, this causes unnecessary
lseek() system calls, which turned out to be rather expensive.
This patch completely changes the logic and disables bs->total_sectors
caching only for certain block driver types, for which a size change is
expected: host_cdrom and host_floppy on POSIX, host_device on win32; also
the raw format in case it sits on top of one of these protocols, but in
the common case the nested bdrv_getlength() call on the protocol driver
will use the cache again and avoid an expensive drv->bdrv_getlength()
call.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
2013-10-29 12:18:58 +01:00
|
|
|
.bdrv_getlength = raw_getlength,
|
|
|
|
.has_variable_length = true,
|
|
|
|
|
2011-07-12 13:56:39 +02:00
|
|
|
.bdrv_get_allocated_file_size
|
|
|
|
= raw_get_allocated_file_size,
|
2007-12-15 18:28:36 +01:00
|
|
|
};
|
2009-05-10 00:03:42 +02:00
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
static void bdrv_file_init(void)
|
2009-05-10 00:03:42 +02:00
|
|
|
{
|
2010-04-07 22:30:24 +02:00
|
|
|
bdrv_register(&bdrv_file);
|
2009-05-10 00:03:42 +02:00
|
|
|
bdrv_register(&bdrv_host_device);
|
|
|
|
}
|
|
|
|
|
2010-04-07 22:30:24 +02:00
|
|
|
block_init(bdrv_file_init);
|