2007-08-01 01:28:53 +02:00
|
|
|
/*
|
|
|
|
* Block driver for Parallels disk image format
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Alex Beregszaszi
|
2015-04-28 09:46:46 +02:00
|
|
|
* Copyright (c) 2015 Denis V. Lunev <den@openvz.org>
|
2007-08-01 01:28:53 +02:00
|
|
|
*
|
2015-04-28 09:46:46 +02:00
|
|
|
* This code was originally based on comparing different disk images created
|
|
|
|
* by Parallels. Currently it is based on opened OpenVZ sources
|
|
|
|
* available at
|
|
|
|
* http://git.openvz.org/?p=ploop;a=summary
|
2007-08-01 01:28:53 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
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"
|
2007-11-11 03:51:17 +01:00
|
|
|
#include "qemu-common.h"
|
2012-12-17 18:19:44 +01:00
|
|
|
#include "block/block_int.h"
|
2016-03-08 15:57:05 +01:00
|
|
|
#include "sysemu/block-backend.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/module.h"
|
2016-03-15 17:22:36 +01:00
|
|
|
#include "qemu/bswap.h"
|
2015-04-28 09:46:57 +02:00
|
|
|
#include "qemu/bitmap.h"
|
2015-04-28 09:46:58 +02:00
|
|
|
#include "qapi/util.h"
|
2007-08-01 01:28:53 +02:00
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
|
|
|
|
#define HEADER_MAGIC "WithoutFreeSpace"
|
2014-07-28 18:23:55 +02:00
|
|
|
#define HEADER_MAGIC2 "WithouFreSpacExt"
|
2007-08-01 01:28:53 +02:00
|
|
|
#define HEADER_VERSION 2
|
2015-04-28 09:46:53 +02:00
|
|
|
#define HEADER_INUSE_MAGIC (0x746F6E59)
|
2007-08-01 01:28:53 +02:00
|
|
|
|
2015-04-28 09:46:44 +02:00
|
|
|
#define DEFAULT_CLUSTER_SIZE 1048576 /* 1 MiB */
|
|
|
|
|
|
|
|
|
2007-08-01 01:28:53 +02:00
|
|
|
// always little-endian
|
2015-04-28 09:46:35 +02:00
|
|
|
typedef struct ParallelsHeader {
|
2007-08-01 01:28:53 +02:00
|
|
|
char magic[16]; // "WithoutFreeSpace"
|
|
|
|
uint32_t version;
|
|
|
|
uint32_t heads;
|
|
|
|
uint32_t cylinders;
|
|
|
|
uint32_t tracks;
|
2015-04-28 09:46:47 +02:00
|
|
|
uint32_t bat_entries;
|
2014-07-28 18:23:52 +02:00
|
|
|
uint64_t nb_sectors;
|
|
|
|
uint32_t inuse;
|
|
|
|
uint32_t data_off;
|
|
|
|
char padding[12];
|
2015-04-28 09:46:35 +02:00
|
|
|
} QEMU_PACKED ParallelsHeader;
|
2007-08-01 01:28:53 +02:00
|
|
|
|
2015-04-28 09:46:58 +02:00
|
|
|
|
|
|
|
typedef enum ParallelsPreallocMode {
|
|
|
|
PRL_PREALLOC_MODE_FALLOCATE = 0,
|
|
|
|
PRL_PREALLOC_MODE_TRUNCATE = 1,
|
qapi: Don't let implicit enum MAX member collide
Now that we guarantee the user doesn't have any enum values
beginning with a single underscore, we can use that for our
own purposes. Renaming ENUM_MAX to ENUM__MAX makes it obvious
that the sentinel is generated.
This patch was mostly generated by applying a temporary patch:
|diff --git a/scripts/qapi.py b/scripts/qapi.py
|index e6d014b..b862ec9 100644
|--- a/scripts/qapi.py
|+++ b/scripts/qapi.py
|@@ -1570,6 +1570,7 @@ const char *const %(c_name)s_lookup[] = {
| max_index = c_enum_const(name, 'MAX', prefix)
| ret += mcgen('''
| [%(max_index)s] = NULL,
|+// %(max_index)s
| };
| ''',
| max_index=max_index)
then running:
$ cat qapi-{types,event}.c tests/test-qapi-types.c |
sed -n 's,^// \(.*\)MAX,s|\1MAX|\1_MAX|g,p' > list
$ git grep -l _MAX | xargs sed -i -f list
The only things not generated are the changes in scripts/qapi.py.
Rejecting enum members named 'MAX' is now useless, and will be dropped
in the next patch.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-23-git-send-email-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
[Rebased to current master, commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-11-18 09:52:57 +01:00
|
|
|
PRL_PREALLOC_MODE__MAX = 2,
|
2015-04-28 09:46:58 +02:00
|
|
|
} ParallelsPreallocMode;
|
|
|
|
|
|
|
|
static const char *prealloc_mode_lookup[] = {
|
|
|
|
"falloc",
|
|
|
|
"truncate",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-08-01 01:28:53 +02:00
|
|
|
typedef struct BDRVParallelsState {
|
2015-04-28 09:46:39 +02:00
|
|
|
/** Locking is conservative, the lock protects
|
|
|
|
* - image file extending (truncate, fallocate)
|
|
|
|
* - any access to block allocation table
|
|
|
|
*/
|
2011-10-20 13:16:21 +02:00
|
|
|
CoMutex lock;
|
2007-08-01 01:28:53 +02:00
|
|
|
|
2015-04-28 09:46:50 +02:00
|
|
|
ParallelsHeader *header;
|
|
|
|
uint32_t header_size;
|
2015-04-28 09:46:53 +02:00
|
|
|
bool header_unclean;
|
|
|
|
|
2015-04-28 09:46:57 +02:00
|
|
|
unsigned long *bat_dirty_bmap;
|
|
|
|
unsigned int bat_dirty_block;
|
|
|
|
|
2015-04-28 09:46:47 +02:00
|
|
|
uint32_t *bat_bitmap;
|
|
|
|
unsigned int bat_size;
|
2007-08-01 01:28:53 +02:00
|
|
|
|
2015-04-28 09:46:59 +02:00
|
|
|
int64_t data_end;
|
2015-04-28 09:46:58 +02:00
|
|
|
uint64_t prealloc_size;
|
|
|
|
ParallelsPreallocMode prealloc_mode;
|
|
|
|
|
2014-03-26 13:06:09 +01:00
|
|
|
unsigned int tracks;
|
2014-07-28 18:23:55 +02:00
|
|
|
|
|
|
|
unsigned int off_multiplier;
|
2007-08-01 01:28:53 +02:00
|
|
|
} BDRVParallelsState;
|
|
|
|
|
2015-04-28 09:46:48 +02:00
|
|
|
|
2015-04-28 09:46:58 +02:00
|
|
|
#define PARALLELS_OPT_PREALLOC_MODE "prealloc-mode"
|
|
|
|
#define PARALLELS_OPT_PREALLOC_SIZE "prealloc-size"
|
|
|
|
|
|
|
|
static QemuOptsList parallels_runtime_opts = {
|
|
|
|
.name = "parallels",
|
|
|
|
.head = QTAILQ_HEAD_INITIALIZER(parallels_runtime_opts.head),
|
|
|
|
.desc = {
|
|
|
|
{
|
|
|
|
.name = PARALLELS_OPT_PREALLOC_SIZE,
|
|
|
|
.type = QEMU_OPT_SIZE,
|
|
|
|
.help = "Preallocation size on image expansion",
|
|
|
|
.def_value_str = "128MiB",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = PARALLELS_OPT_PREALLOC_MODE,
|
|
|
|
.type = QEMU_OPT_STRING,
|
|
|
|
.help = "Preallocation mode on image expansion "
|
|
|
|
"(allowed values: falloc, truncate)",
|
|
|
|
.def_value_str = "falloc",
|
|
|
|
},
|
|
|
|
{ /* end of list */ },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-04-28 09:46:48 +02:00
|
|
|
static int64_t bat2sect(BDRVParallelsState *s, uint32_t idx)
|
|
|
|
{
|
2015-04-28 09:46:49 +02:00
|
|
|
return (uint64_t)le32_to_cpu(s->bat_bitmap[idx]) * s->off_multiplier;
|
2015-04-28 09:46:48 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:56 +02:00
|
|
|
static uint32_t bat_entry_off(uint32_t idx)
|
|
|
|
{
|
|
|
|
return sizeof(ParallelsHeader) + sizeof(uint32_t) * idx;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:36 +02:00
|
|
|
static int64_t seek_to_sector(BDRVParallelsState *s, int64_t sector_num)
|
2007-08-01 01:28:53 +02:00
|
|
|
{
|
2009-11-07 15:10:01 +01:00
|
|
|
uint32_t index, offset;
|
2007-08-01 01:28:53 +02:00
|
|
|
|
|
|
|
index = sector_num / s->tracks;
|
|
|
|
offset = sector_num % s->tracks;
|
|
|
|
|
2010-05-06 22:04:34 +02:00
|
|
|
/* not allocated */
|
2015-04-28 09:46:47 +02:00
|
|
|
if ((index >= s->bat_size) || (s->bat_bitmap[index] == 0)) {
|
2014-07-28 18:23:53 +02:00
|
|
|
return -1;
|
2015-04-28 09:46:47 +02:00
|
|
|
}
|
2015-04-28 09:46:48 +02:00
|
|
|
return bat2sect(s, index) + offset;
|
2007-08-01 01:28:53 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:37 +02:00
|
|
|
static int cluster_remainder(BDRVParallelsState *s, int64_t sector_num,
|
|
|
|
int nb_sectors)
|
|
|
|
{
|
|
|
|
int ret = s->tracks - sector_num % s->tracks;
|
|
|
|
return MIN(nb_sectors, ret);
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:55 +02:00
|
|
|
static int64_t block_status(BDRVParallelsState *s, int64_t sector_num,
|
|
|
|
int nb_sectors, int *pnum)
|
|
|
|
{
|
|
|
|
int64_t start_off = -2, prev_end_off = -2;
|
|
|
|
|
|
|
|
*pnum = 0;
|
|
|
|
while (nb_sectors > 0 || start_off == -2) {
|
|
|
|
int64_t offset = seek_to_sector(s, sector_num);
|
|
|
|
int to_end;
|
|
|
|
|
|
|
|
if (start_off == -2) {
|
|
|
|
start_off = offset;
|
|
|
|
prev_end_off = offset;
|
|
|
|
} else if (offset != prev_end_off) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
to_end = cluster_remainder(s, sector_num, nb_sectors);
|
|
|
|
nb_sectors -= to_end;
|
|
|
|
sector_num += to_end;
|
|
|
|
*pnum += to_end;
|
|
|
|
|
|
|
|
if (offset > 0) {
|
|
|
|
prev_end_off += to_end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return start_off;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:47:00 +02:00
|
|
|
static int64_t allocate_clusters(BlockDriverState *bs, int64_t sector_num,
|
|
|
|
int nb_sectors, int *pnum)
|
2015-04-28 09:46:42 +02:00
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
2015-04-28 09:47:00 +02:00
|
|
|
uint32_t idx, to_allocate, i;
|
|
|
|
int64_t pos, space;
|
2015-04-28 09:46:42 +02:00
|
|
|
|
2015-04-28 09:47:00 +02:00
|
|
|
pos = block_status(s, sector_num, nb_sectors, pnum);
|
|
|
|
if (pos > 0) {
|
|
|
|
return pos;
|
|
|
|
}
|
2015-04-28 09:46:42 +02:00
|
|
|
|
2015-04-28 09:47:00 +02:00
|
|
|
idx = sector_num / s->tracks;
|
2015-04-28 09:46:47 +02:00
|
|
|
if (idx >= s->bat_size) {
|
2015-04-28 09:46:42 +02:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2016-05-31 18:35:51 +02:00
|
|
|
to_allocate = DIV_ROUND_UP(sector_num + *pnum, s->tracks) - idx;
|
2015-04-28 09:47:00 +02:00
|
|
|
space = to_allocate * s->tracks;
|
2015-06-16 14:19:22 +02:00
|
|
|
if (s->data_end + space > bdrv_getlength(bs->file->bs) >> BDRV_SECTOR_BITS) {
|
2015-04-28 09:46:59 +02:00
|
|
|
int ret;
|
2015-04-28 09:47:00 +02:00
|
|
|
space += s->prealloc_size;
|
2015-04-28 09:46:59 +02:00
|
|
|
if (s->prealloc_mode == PRL_PREALLOC_MODE_FALLOCATE) {
|
2016-06-01 23:10:04 +02:00
|
|
|
ret = bdrv_pwrite_zeroes(bs->file->bs,
|
|
|
|
s->data_end << BDRV_SECTOR_BITS,
|
|
|
|
space << BDRV_SECTOR_BITS, 0);
|
2015-04-28 09:46:59 +02:00
|
|
|
} else {
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_truncate(bs->file->bs,
|
2015-04-28 09:47:00 +02:00
|
|
|
(s->data_end + space) << BDRV_SECTOR_BITS);
|
2015-04-28 09:46:59 +02:00
|
|
|
}
|
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2015-04-28 09:46:42 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:47:00 +02:00
|
|
|
for (i = 0; i < to_allocate; i++) {
|
|
|
|
s->bat_bitmap[idx + i] = cpu_to_le32(s->data_end / s->off_multiplier);
|
|
|
|
s->data_end += s->tracks;
|
|
|
|
bitmap_set(s->bat_dirty_bmap,
|
2015-11-17 18:02:58 +01:00
|
|
|
bat_entry_off(idx + i) / s->bat_dirty_block, 1);
|
2015-04-28 09:47:00 +02:00
|
|
|
}
|
2015-04-28 09:46:57 +02:00
|
|
|
|
2015-04-28 09:47:00 +02:00
|
|
|
return bat2sect(s, idx) + sector_num % s->tracks;
|
2015-04-28 09:46:42 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:57 +02:00
|
|
|
|
|
|
|
static coroutine_fn int parallels_co_flush_to_os(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
|
|
|
unsigned long size = DIV_ROUND_UP(s->header_size, s->bat_dirty_block);
|
|
|
|
unsigned long bit;
|
|
|
|
|
|
|
|
qemu_co_mutex_lock(&s->lock);
|
|
|
|
|
|
|
|
bit = find_first_bit(s->bat_dirty_bmap, size);
|
|
|
|
while (bit < size) {
|
|
|
|
uint32_t off = bit * s->bat_dirty_block;
|
|
|
|
uint32_t to_write = s->bat_dirty_block;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (off + to_write > s->header_size) {
|
|
|
|
to_write = s->header_size - off;
|
|
|
|
}
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_pwrite(bs->file->bs, off, (uint8_t *)s->header + off,
|
|
|
|
to_write);
|
2015-04-28 09:46:57 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
qemu_co_mutex_unlock(&s->lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
bit = find_next_bit(s->bat_dirty_bmap, size, bit + 1);
|
|
|
|
}
|
|
|
|
bitmap_zero(s->bat_dirty_bmap, size);
|
|
|
|
|
|
|
|
qemu_co_mutex_unlock(&s->lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-28 09:46:38 +02:00
|
|
|
static int64_t coroutine_fn parallels_co_get_block_status(BlockDriverState *bs,
|
2016-01-26 04:58:48 +01:00
|
|
|
int64_t sector_num, int nb_sectors, int *pnum, BlockDriverState **file)
|
2015-04-28 09:46:38 +02:00
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
|
|
|
int64_t offset;
|
|
|
|
|
|
|
|
qemu_co_mutex_lock(&s->lock);
|
2015-04-28 09:46:55 +02:00
|
|
|
offset = block_status(s, sector_num, nb_sectors, pnum);
|
2015-04-28 09:46:38 +02:00
|
|
|
qemu_co_mutex_unlock(&s->lock);
|
|
|
|
|
|
|
|
if (offset < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-26 04:58:53 +01:00
|
|
|
*file = bs->file->bs;
|
2015-04-28 09:46:38 +02:00
|
|
|
return (offset << BDRV_SECTOR_BITS) |
|
|
|
|
BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:42 +02:00
|
|
|
static coroutine_fn int parallels_co_writev(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
|
|
|
uint64_t bytes_done = 0;
|
|
|
|
QEMUIOVector hd_qiov;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
qemu_iovec_init(&hd_qiov, qiov->niov);
|
|
|
|
|
|
|
|
while (nb_sectors > 0) {
|
|
|
|
int64_t position;
|
|
|
|
int n, nbytes;
|
|
|
|
|
|
|
|
qemu_co_mutex_lock(&s->lock);
|
2015-04-28 09:47:00 +02:00
|
|
|
position = allocate_clusters(bs, sector_num, nb_sectors, &n);
|
2015-04-28 09:46:42 +02:00
|
|
|
qemu_co_mutex_unlock(&s->lock);
|
|
|
|
if (position < 0) {
|
|
|
|
ret = (int)position;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nbytes = n << BDRV_SECTOR_BITS;
|
|
|
|
|
|
|
|
qemu_iovec_reset(&hd_qiov);
|
|
|
|
qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);
|
|
|
|
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_co_writev(bs->file->bs, position, n, &hd_qiov);
|
2015-04-28 09:46:42 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nb_sectors -= n;
|
|
|
|
sector_num += n;
|
|
|
|
bytes_done += nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_iovec_destroy(&hd_qiov);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:39 +02:00
|
|
|
static coroutine_fn int parallels_co_readv(BlockDriverState *bs,
|
|
|
|
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
|
2007-08-01 01:28:53 +02:00
|
|
|
{
|
2015-04-28 09:46:36 +02:00
|
|
|
BDRVParallelsState *s = bs->opaque;
|
2015-04-28 09:46:39 +02:00
|
|
|
uint64_t bytes_done = 0;
|
|
|
|
QEMUIOVector hd_qiov;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
qemu_iovec_init(&hd_qiov, qiov->niov);
|
2015-04-28 09:46:36 +02:00
|
|
|
|
2007-08-01 01:28:53 +02:00
|
|
|
while (nb_sectors > 0) {
|
2015-04-28 09:46:39 +02:00
|
|
|
int64_t position;
|
|
|
|
int n, nbytes;
|
|
|
|
|
|
|
|
qemu_co_mutex_lock(&s->lock);
|
2015-04-28 09:46:55 +02:00
|
|
|
position = block_status(s, sector_num, nb_sectors, &n);
|
2015-04-28 09:46:39 +02:00
|
|
|
qemu_co_mutex_unlock(&s->lock);
|
|
|
|
|
|
|
|
nbytes = n << BDRV_SECTOR_BITS;
|
|
|
|
|
|
|
|
if (position < 0) {
|
|
|
|
qemu_iovec_memset(qiov, bytes_done, 0, nbytes);
|
|
|
|
} else {
|
|
|
|
qemu_iovec_reset(&hd_qiov);
|
|
|
|
qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);
|
|
|
|
|
2016-05-24 17:21:22 +02:00
|
|
|
ret = bdrv_co_readv(bs->file, position, n, &hd_qiov);
|
2015-04-28 09:46:36 +02:00
|
|
|
if (ret < 0) {
|
2015-04-28 09:46:39 +02:00
|
|
|
break;
|
2015-04-28 09:46:36 +02:00
|
|
|
}
|
2010-05-06 22:04:34 +02:00
|
|
|
}
|
2015-04-28 09:46:39 +02:00
|
|
|
|
2015-04-28 09:46:37 +02:00
|
|
|
nb_sectors -= n;
|
|
|
|
sector_num += n;
|
2015-04-28 09:46:39 +02:00
|
|
|
bytes_done += nbytes;
|
2007-08-01 01:28:53 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:39 +02:00
|
|
|
qemu_iovec_destroy(&hd_qiov);
|
2011-10-20 13:16:22 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:52 +02:00
|
|
|
|
|
|
|
static int parallels_check(BlockDriverState *bs, BdrvCheckResult *res,
|
|
|
|
BdrvCheckMode fix)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
|
|
|
int64_t size, prev_off, high_off;
|
|
|
|
int ret;
|
|
|
|
uint32_t i;
|
|
|
|
bool flush_bat = false;
|
|
|
|
int cluster_size = s->tracks << BDRV_SECTOR_BITS;
|
|
|
|
|
2015-06-16 14:19:22 +02:00
|
|
|
size = bdrv_getlength(bs->file->bs);
|
2015-04-28 09:46:52 +02:00
|
|
|
if (size < 0) {
|
|
|
|
res->check_errors++;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:53 +02:00
|
|
|
if (s->header_unclean) {
|
|
|
|
fprintf(stderr, "%s image was not closed correctly\n",
|
|
|
|
fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR");
|
|
|
|
res->corruptions++;
|
|
|
|
if (fix & BDRV_FIX_ERRORS) {
|
|
|
|
/* parallels_close will do the job right */
|
|
|
|
res->corruptions_fixed++;
|
|
|
|
s->header_unclean = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:52 +02:00
|
|
|
res->bfi.total_clusters = s->bat_size;
|
|
|
|
res->bfi.compressed_clusters = 0; /* compression is not supported */
|
|
|
|
|
|
|
|
high_off = 0;
|
|
|
|
prev_off = 0;
|
|
|
|
for (i = 0; i < s->bat_size; i++) {
|
|
|
|
int64_t off = bat2sect(s, i) << BDRV_SECTOR_BITS;
|
|
|
|
if (off == 0) {
|
|
|
|
prev_off = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cluster outside the image */
|
|
|
|
if (off > size) {
|
|
|
|
fprintf(stderr, "%s cluster %u is outside image\n",
|
|
|
|
fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR", i);
|
|
|
|
res->corruptions++;
|
|
|
|
if (fix & BDRV_FIX_ERRORS) {
|
|
|
|
prev_off = 0;
|
|
|
|
s->bat_bitmap[i] = 0;
|
|
|
|
res->corruptions_fixed++;
|
|
|
|
flush_bat = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res->bfi.allocated_clusters++;
|
|
|
|
if (off > high_off) {
|
|
|
|
high_off = off;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev_off != 0 && (prev_off + cluster_size) != off) {
|
|
|
|
res->bfi.fragmented_clusters++;
|
|
|
|
}
|
|
|
|
prev_off = off;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flush_bat) {
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_pwrite_sync(bs->file->bs, 0, s->header, s->header_size);
|
2015-04-28 09:46:52 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
res->check_errors++;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res->image_end_offset = high_off + cluster_size;
|
|
|
|
if (size > res->image_end_offset) {
|
|
|
|
int64_t count;
|
|
|
|
count = DIV_ROUND_UP(size - res->image_end_offset, cluster_size);
|
|
|
|
fprintf(stderr, "%s space leaked at the end of the image %" PRId64 "\n",
|
|
|
|
fix & BDRV_FIX_LEAKS ? "Repairing" : "ERROR",
|
|
|
|
size - res->image_end_offset);
|
|
|
|
res->leaks += count;
|
|
|
|
if (fix & BDRV_FIX_LEAKS) {
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_truncate(bs->file->bs, res->image_end_offset);
|
2015-04-28 09:46:52 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
res->check_errors++;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
res->leaks_fixed += count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-28 09:46:44 +02:00
|
|
|
static int parallels_create(const char *filename, QemuOpts *opts, Error **errp)
|
|
|
|
{
|
|
|
|
int64_t total_size, cl_size;
|
|
|
|
uint8_t tmp[BDRV_SECTOR_SIZE];
|
|
|
|
Error *local_err = NULL;
|
2016-03-08 15:57:05 +01:00
|
|
|
BlockBackend *file;
|
2015-04-28 09:46:47 +02:00
|
|
|
uint32_t bat_entries, bat_sectors;
|
2015-04-28 09:46:44 +02:00
|
|
|
ParallelsHeader header;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
|
|
|
|
BDRV_SECTOR_SIZE);
|
|
|
|
cl_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE,
|
|
|
|
DEFAULT_CLUSTER_SIZE), BDRV_SECTOR_SIZE);
|
|
|
|
|
|
|
|
ret = bdrv_create_file(filename, opts, &local_err);
|
|
|
|
if (ret < 0) {
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-03-16 19:54:38 +01:00
|
|
|
file = blk_new_open(filename, NULL, NULL,
|
2016-03-15 14:34:37 +01:00
|
|
|
BDRV_O_RDWR | BDRV_O_PROTOCOL, &local_err);
|
2016-03-08 15:57:05 +01:00
|
|
|
if (file == NULL) {
|
2015-04-28 09:46:44 +02:00
|
|
|
error_propagate(errp, local_err);
|
2016-03-08 15:57:05 +01:00
|
|
|
return -EIO;
|
2015-04-28 09:46:44 +02:00
|
|
|
}
|
2016-03-08 15:57:05 +01:00
|
|
|
|
|
|
|
blk_set_allow_write_beyond_eof(file, true);
|
|
|
|
|
|
|
|
ret = blk_truncate(file, 0);
|
2015-04-28 09:46:44 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:47 +02:00
|
|
|
bat_entries = DIV_ROUND_UP(total_size, cl_size);
|
2015-04-28 09:46:56 +02:00
|
|
|
bat_sectors = DIV_ROUND_UP(bat_entry_off(bat_entries), cl_size);
|
2015-04-28 09:46:47 +02:00
|
|
|
bat_sectors = (bat_sectors * cl_size) >> BDRV_SECTOR_BITS;
|
2015-04-28 09:46:44 +02:00
|
|
|
|
|
|
|
memset(&header, 0, sizeof(header));
|
|
|
|
memcpy(header.magic, HEADER_MAGIC2, sizeof(header.magic));
|
|
|
|
header.version = cpu_to_le32(HEADER_VERSION);
|
|
|
|
/* don't care much about geometry, it is not used on image level */
|
|
|
|
header.heads = cpu_to_le32(16);
|
|
|
|
header.cylinders = cpu_to_le32(total_size / BDRV_SECTOR_SIZE / 16 / 32);
|
|
|
|
header.tracks = cpu_to_le32(cl_size >> BDRV_SECTOR_BITS);
|
2015-04-28 09:46:47 +02:00
|
|
|
header.bat_entries = cpu_to_le32(bat_entries);
|
2015-04-28 09:46:44 +02:00
|
|
|
header.nb_sectors = cpu_to_le64(DIV_ROUND_UP(total_size, BDRV_SECTOR_SIZE));
|
2015-04-28 09:46:47 +02:00
|
|
|
header.data_off = cpu_to_le32(bat_sectors);
|
2015-04-28 09:46:44 +02:00
|
|
|
|
|
|
|
/* write all the data */
|
|
|
|
memset(tmp, 0, sizeof(tmp));
|
|
|
|
memcpy(tmp, &header, sizeof(header));
|
|
|
|
|
2016-05-06 18:26:27 +02:00
|
|
|
ret = blk_pwrite(file, 0, tmp, BDRV_SECTOR_SIZE, 0);
|
2015-04-28 09:46:44 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
goto exit;
|
|
|
|
}
|
2016-05-25 00:25:20 +02:00
|
|
|
ret = blk_pwrite_zeroes(file, BDRV_SECTOR_SIZE,
|
|
|
|
(bat_sectors - 1) << BDRV_SECTOR_BITS, 0);
|
2015-04-28 09:46:44 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
done:
|
2016-03-08 15:57:05 +01:00
|
|
|
blk_unref(file);
|
2015-04-28 09:46:44 +02:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
error_setg_errno(errp, -ret, "Failed to create Parallels image");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:51 +02:00
|
|
|
|
|
|
|
static int parallels_probe(const uint8_t *buf, int buf_size,
|
|
|
|
const char *filename)
|
|
|
|
{
|
|
|
|
const ParallelsHeader *ph = (const void *)buf;
|
|
|
|
|
|
|
|
if (buf_size < sizeof(ParallelsHeader)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!memcmp(ph->magic, HEADER_MAGIC, 16) ||
|
|
|
|
!memcmp(ph->magic, HEADER_MAGIC2, 16)) &&
|
|
|
|
(le32_to_cpu(ph->version) == HEADER_VERSION)) {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:53 +02:00
|
|
|
static int parallels_update_header(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
2015-06-16 14:19:22 +02:00
|
|
|
unsigned size = MAX(bdrv_opt_mem_align(bs->file->bs),
|
|
|
|
sizeof(ParallelsHeader));
|
2015-04-28 09:46:53 +02:00
|
|
|
|
|
|
|
if (size > s->header_size) {
|
|
|
|
size = s->header_size;
|
|
|
|
}
|
2015-06-16 14:19:22 +02:00
|
|
|
return bdrv_pwrite_sync(bs->file->bs, 0, s->header, size);
|
2015-04-28 09:46:53 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:51 +02:00
|
|
|
static int parallels_open(BlockDriverState *bs, QDict *options, int flags,
|
|
|
|
Error **errp)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
|
|
|
ParallelsHeader ph;
|
2015-04-28 09:46:59 +02:00
|
|
|
int ret, size, i;
|
2015-04-28 09:46:58 +02:00
|
|
|
QemuOpts *opts = NULL;
|
|
|
|
Error *local_err = NULL;
|
|
|
|
char *buf;
|
2015-04-28 09:46:51 +02:00
|
|
|
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_pread(bs->file->bs, 0, &ph, sizeof(ph));
|
2015-04-28 09:46:51 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
bs->total_sectors = le64_to_cpu(ph.nb_sectors);
|
|
|
|
|
|
|
|
if (le32_to_cpu(ph.version) != HEADER_VERSION) {
|
|
|
|
goto fail_format;
|
|
|
|
}
|
|
|
|
if (!memcmp(ph.magic, HEADER_MAGIC, 16)) {
|
|
|
|
s->off_multiplier = 1;
|
|
|
|
bs->total_sectors = 0xffffffff & bs->total_sectors;
|
|
|
|
} else if (!memcmp(ph.magic, HEADER_MAGIC2, 16)) {
|
|
|
|
s->off_multiplier = le32_to_cpu(ph.tracks);
|
|
|
|
} else {
|
|
|
|
goto fail_format;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->tracks = le32_to_cpu(ph.tracks);
|
|
|
|
if (s->tracks == 0) {
|
|
|
|
error_setg(errp, "Invalid image: Zero sectors per track");
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (s->tracks > INT32_MAX/513) {
|
|
|
|
error_setg(errp, "Invalid image: Too big cluster");
|
|
|
|
ret = -EFBIG;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->bat_size = le32_to_cpu(ph.bat_entries);
|
|
|
|
if (s->bat_size > INT_MAX / sizeof(uint32_t)) {
|
|
|
|
error_setg(errp, "Catalog too large");
|
|
|
|
ret = -EFBIG;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:56 +02:00
|
|
|
size = bat_entry_off(s->bat_size);
|
2015-06-16 14:19:22 +02:00
|
|
|
s->header_size = ROUND_UP(size, bdrv_opt_mem_align(bs->file->bs));
|
|
|
|
s->header = qemu_try_blockalign(bs->file->bs, s->header_size);
|
2015-04-28 09:46:51 +02:00
|
|
|
if (s->header == NULL) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
2015-04-28 09:46:59 +02:00
|
|
|
s->data_end = le32_to_cpu(ph.data_off);
|
|
|
|
if (s->data_end == 0) {
|
|
|
|
s->data_end = ROUND_UP(bat_entry_off(s->bat_size), BDRV_SECTOR_SIZE);
|
|
|
|
}
|
|
|
|
if (s->data_end < s->header_size) {
|
2015-04-28 09:46:51 +02:00
|
|
|
/* there is not enough unused space to fit to block align between BAT
|
|
|
|
and actual data. We can't avoid read-modify-write... */
|
|
|
|
s->header_size = size;
|
|
|
|
}
|
|
|
|
|
2015-06-16 14:19:22 +02:00
|
|
|
ret = bdrv_pread(bs->file->bs, 0, s->header, s->header_size);
|
2015-04-28 09:46:51 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
s->bat_bitmap = (uint32_t *)(s->header + 1);
|
|
|
|
|
2015-04-28 09:46:59 +02:00
|
|
|
for (i = 0; i < s->bat_size; i++) {
|
|
|
|
int64_t off = bat2sect(s, i);
|
|
|
|
if (off >= s->data_end) {
|
|
|
|
s->data_end = off + s->tracks;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:53 +02:00
|
|
|
if (le32_to_cpu(ph.inuse) == HEADER_INUSE_MAGIC) {
|
|
|
|
/* Image was not closed correctly. The check is mandatory */
|
|
|
|
s->header_unclean = true;
|
|
|
|
if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) {
|
|
|
|
error_setg(errp, "parallels: Image was not closed correctly; "
|
|
|
|
"cannot be opened read/write");
|
|
|
|
ret = -EACCES;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:58 +02:00
|
|
|
opts = qemu_opts_create(¶llels_runtime_opts, NULL, 0, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
goto fail_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_opts_absorb_qdict(opts, options, &local_err);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
goto fail_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->prealloc_size =
|
|
|
|
qemu_opt_get_size_del(opts, PARALLELS_OPT_PREALLOC_SIZE, 0);
|
|
|
|
s->prealloc_size = MAX(s->tracks, s->prealloc_size >> BDRV_SECTOR_BITS);
|
|
|
|
buf = qemu_opt_get_del(opts, PARALLELS_OPT_PREALLOC_MODE);
|
|
|
|
s->prealloc_mode = qapi_enum_parse(prealloc_mode_lookup, buf,
|
qapi: Don't let implicit enum MAX member collide
Now that we guarantee the user doesn't have any enum values
beginning with a single underscore, we can use that for our
own purposes. Renaming ENUM_MAX to ENUM__MAX makes it obvious
that the sentinel is generated.
This patch was mostly generated by applying a temporary patch:
|diff --git a/scripts/qapi.py b/scripts/qapi.py
|index e6d014b..b862ec9 100644
|--- a/scripts/qapi.py
|+++ b/scripts/qapi.py
|@@ -1570,6 +1570,7 @@ const char *const %(c_name)s_lookup[] = {
| max_index = c_enum_const(name, 'MAX', prefix)
| ret += mcgen('''
| [%(max_index)s] = NULL,
|+// %(max_index)s
| };
| ''',
| max_index=max_index)
then running:
$ cat qapi-{types,event}.c tests/test-qapi-types.c |
sed -n 's,^// \(.*\)MAX,s|\1MAX|\1_MAX|g,p' > list
$ git grep -l _MAX | xargs sed -i -f list
The only things not generated are the changes in scripts/qapi.py.
Rejecting enum members named 'MAX' is now useless, and will be dropped
in the next patch.
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-Id: <1447836791-369-23-git-send-email-eblake@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
[Rebased to current master, commit message tweaked]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2015-11-18 09:52:57 +01:00
|
|
|
PRL_PREALLOC_MODE__MAX, PRL_PREALLOC_MODE_FALLOCATE, &local_err);
|
2015-04-28 09:46:58 +02:00
|
|
|
g_free(buf);
|
|
|
|
if (local_err != NULL) {
|
|
|
|
goto fail_options;
|
|
|
|
}
|
2015-06-16 14:19:22 +02:00
|
|
|
if (!bdrv_has_zero_init(bs->file->bs) ||
|
|
|
|
bdrv_truncate(bs->file->bs, bdrv_getlength(bs->file->bs)) != 0) {
|
2015-04-28 09:46:58 +02:00
|
|
|
s->prealloc_mode = PRL_PREALLOC_MODE_FALLOCATE;
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:53 +02:00
|
|
|
if (flags & BDRV_O_RDWR) {
|
|
|
|
s->header->inuse = cpu_to_le32(HEADER_INUSE_MAGIC);
|
|
|
|
ret = parallels_update_header(bs);
|
|
|
|
if (ret < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:57 +02:00
|
|
|
s->bat_dirty_block = 4 * getpagesize();
|
|
|
|
s->bat_dirty_bmap =
|
|
|
|
bitmap_new(DIV_ROUND_UP(s->header_size, s->bat_dirty_block));
|
|
|
|
|
2015-04-28 09:46:51 +02:00
|
|
|
qemu_co_mutex_init(&s->lock);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail_format:
|
|
|
|
error_setg(errp, "Image not in Parallels format");
|
|
|
|
ret = -EINVAL;
|
|
|
|
fail:
|
|
|
|
qemu_vfree(s->header);
|
|
|
|
return ret;
|
2015-04-28 09:46:58 +02:00
|
|
|
|
|
|
|
fail_options:
|
|
|
|
error_propagate(errp, local_err);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto fail;
|
2015-04-28 09:46:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-01 01:28:53 +02:00
|
|
|
static void parallels_close(BlockDriverState *bs)
|
|
|
|
{
|
|
|
|
BDRVParallelsState *s = bs->opaque;
|
2015-04-28 09:46:53 +02:00
|
|
|
|
|
|
|
if (bs->open_flags & BDRV_O_RDWR) {
|
|
|
|
s->header->inuse = 0;
|
|
|
|
parallels_update_header(bs);
|
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:59 +02:00
|
|
|
if (bs->open_flags & BDRV_O_RDWR) {
|
2015-06-16 14:19:22 +02:00
|
|
|
bdrv_truncate(bs->file->bs, s->data_end << BDRV_SECTOR_BITS);
|
2015-04-28 09:46:59 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:57 +02:00
|
|
|
g_free(s->bat_dirty_bmap);
|
2015-04-28 09:46:50 +02:00
|
|
|
qemu_vfree(s->header);
|
2007-08-01 01:28:53 +02:00
|
|
|
}
|
|
|
|
|
2015-04-28 09:46:44 +02:00
|
|
|
static QemuOptsList parallels_create_opts = {
|
|
|
|
.name = "parallels-create-opts",
|
|
|
|
.head = QTAILQ_HEAD_INITIALIZER(parallels_create_opts.head),
|
|
|
|
.desc = {
|
|
|
|
{
|
|
|
|
.name = BLOCK_OPT_SIZE,
|
|
|
|
.type = QEMU_OPT_SIZE,
|
|
|
|
.help = "Virtual disk size",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = BLOCK_OPT_CLUSTER_SIZE,
|
|
|
|
.type = QEMU_OPT_SIZE,
|
|
|
|
.help = "Parallels image cluster size",
|
|
|
|
.def_value_str = stringify(DEFAULT_CLUSTER_SIZE),
|
|
|
|
},
|
|
|
|
{ /* end of list */ }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-10 00:03:42 +02:00
|
|
|
static BlockDriver bdrv_parallels = {
|
2009-03-07 23:00:29 +01:00
|
|
|
.format_name = "parallels",
|
|
|
|
.instance_size = sizeof(BDRVParallelsState),
|
|
|
|
.bdrv_probe = parallels_probe,
|
2010-05-06 22:04:50 +02:00
|
|
|
.bdrv_open = parallels_open,
|
2009-03-07 23:00:29 +01:00
|
|
|
.bdrv_close = parallels_close,
|
2015-04-28 09:46:38 +02:00
|
|
|
.bdrv_co_get_block_status = parallels_co_get_block_status,
|
2015-04-28 09:46:41 +02:00
|
|
|
.bdrv_has_zero_init = bdrv_has_zero_init_1,
|
2015-04-28 09:46:57 +02:00
|
|
|
.bdrv_co_flush_to_os = parallels_co_flush_to_os,
|
2015-04-28 09:46:39 +02:00
|
|
|
.bdrv_co_readv = parallels_co_readv,
|
2015-04-28 09:46:42 +02:00
|
|
|
.bdrv_co_writev = parallels_co_writev,
|
2015-04-28 09:46:44 +02:00
|
|
|
|
|
|
|
.bdrv_create = parallels_create,
|
2015-04-28 09:46:52 +02:00
|
|
|
.bdrv_check = parallels_check,
|
2015-04-28 09:46:44 +02:00
|
|
|
.create_opts = ¶llels_create_opts,
|
2007-08-01 01:28:53 +02:00
|
|
|
};
|
2009-05-10 00:03:42 +02:00
|
|
|
|
|
|
|
static void bdrv_parallels_init(void)
|
|
|
|
{
|
|
|
|
bdrv_register(&bdrv_parallels);
|
|
|
|
}
|
|
|
|
|
|
|
|
block_init(bdrv_parallels_init);
|