[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 11/13] block: vhdx - break out code operations to
From: |
Jeff Cody |
Subject: |
[Qemu-devel] [PATCH v4 11/13] block: vhdx - break out code operations to functions |
Date: |
Tue, 20 Aug 2013 02:01:22 -0400 |
This is preperation for vhdx_create(). The ability to write headers,
and calculate the number of BAT entries will be needed within the
create() functions, so move this relevant code into helper functions.
Signed-off-by: Jeff Cody <address@hidden>
---
block/vhdx.c | 121 +++++++++++++++++++++++++++++++++++++++--------------------
1 file changed, 80 insertions(+), 41 deletions(-)
diff --git a/block/vhdx.c b/block/vhdx.c
index c917376..5c7d0c4 100644
--- a/block/vhdx.c
+++ b/block/vhdx.c
@@ -203,6 +203,14 @@ void vhdx_guid_generate(MSGUID *guid)
memcpy(guid, uuid, sizeof(MSGUID));
}
+static void vhdx_set_shift_bits(BDRVVHDXState *s)
+{
+ s->logical_sector_size_bits = 31 - clz32(s->logical_sector_size);
+ s->sectors_per_block_bits = 31 - clz32(s->sectors_per_block);
+ s->chunk_ratio_bits = 63 - clz64(s->chunk_ratio);
+ s->block_size_bits = 31 - clz32(s->block_size);
+}
+
/*
* Per the MS VHDX Specification, for every VHDX file:
* - The header section is fixed size - 1 MB
@@ -222,6 +230,50 @@ static int vhdx_probe(const uint8_t *buf, int buf_size,
const char *filename)
return 0;
}
+/*
+ * Writes the header to the specified offset.
+ *
+ * This will optionally read in buffer data from disk (otherwise zero-fill),
+ * and then update the header checksum. Header is converted to proper
+ * endianness before being written to the specified file offset
+ */
+static int vhdx_write_header(BlockDriverState *bs_file, VHDXHeader *hdr,
+ uint64_t offset, bool read)
+{
+ uint8_t *buffer = NULL;
+ int ret;
+ VHDXHeader header_le;
+
+ assert(bs_file != NULL);
+ assert(hdr != NULL);
+
+ /* the header checksum is not over just the packed size of VHDXHeader,
+ * but rather over the entire 'reserved' range for the header, which is
+ * 4KB (VHDX_HEADER_SIZE). */
+
+ buffer = qemu_blockalign(bs_file, VHDX_HEADER_SIZE);
+ if (read) {
+ /* if true, we can't assume the extra reserved bytes are 0 */
+ ret = bdrv_pread(bs_file, offset, buffer, VHDX_HEADER_SIZE);
+ if (ret < 0) {
+ goto exit;
+ }
+ } else {
+ memset(buffer, 0, VHDX_HEADER_SIZE);
+ }
+
+ /* overwrite the actual VHDXHeader portion */
+ memcpy(buffer, hdr, sizeof(VHDXHeader));
+ hdr->checksum = vhdx_update_checksum(buffer, VHDX_HEADER_SIZE,
+ offsetof(VHDXHeader, checksum));
+ vhdx_header_le_export(hdr, &header_le);
+ ret = bdrv_pwrite_sync(bs_file, offset, &header_le, sizeof(VHDXHeader));
+
+exit:
+ qemu_vfree(buffer);
+ return ret;
+}
+
/* Update the VHDX headers
*
* This follows the VHDX spec procedures for header updates.
@@ -237,8 +289,6 @@ static int vhdx_update_header(BlockDriverState *bs,
BDRVVHDXState *s,
VHDXHeader *active_header;
VHDXHeader *inactive_header;
- VHDXHeader header_le;
- uint8_t *buffer;
/* operate on the non-current header */
if (s->curr_header == 0) {
@@ -266,31 +316,13 @@ static int vhdx_update_header(BlockDriverState *bs,
BDRVVHDXState *s,
inactive_header->log_guid = *log_guid;
}
- /* the header checksum is not over just the packed size of VHDXHeader,
- * but rather over the entire 'reserved' range for the header, which is
- * 4KB (VHDX_HEADER_SIZE). */
-
- buffer = qemu_blockalign(bs, VHDX_HEADER_SIZE);
- /* we can't assume the extra reserved bytes are 0 */
- ret = bdrv_pread(bs->file, header_offset, buffer, VHDX_HEADER_SIZE);
- if (ret < 0) {
- goto exit;
- }
- /* overwrite the actual VHDXHeader portion */
- memcpy(buffer, inactive_header, sizeof(VHDXHeader));
- inactive_header->checksum =
- vhdx_update_checksum(buffer, VHDX_HEADER_SIZE,
- offsetof(VHDXHeader, checksum));
- vhdx_header_le_export(inactive_header, &header_le);
- ret = bdrv_pwrite_sync(bs->file, header_offset, &header_le,
- sizeof(VHDXHeader));
+ vhdx_write_header(bs->file, inactive_header, header_offset, true);
if (ret < 0) {
goto exit;
}
s->curr_header = hdr_idx;
exit:
- qemu_vfree(buffer);
return ret;
}
@@ -710,10 +742,7 @@ static int vhdx_parse_metadata(BlockDriverState *bs,
BDRVVHDXState *s)
goto exit;
}
- s->logical_sector_size_bits = 31 - clz32(s->logical_sector_size);
- s->sectors_per_block_bits = 31 - clz32(s->sectors_per_block);
- s->chunk_ratio_bits = 63 - clz64(s->chunk_ratio);
- s->block_size_bits = 31 - clz32(s->block_size);
+ vhdx_set_shift_bits(s);
ret = 0;
@@ -722,6 +751,31 @@ exit:
return ret;
}
+/*
+ * Calculate the number of BAT entries, including sector
+ * bitmap entries.
+ */
+static void vhdx_calc_bat_entries(BDRVVHDXState *s)
+{
+ uint32_t data_blocks_cnt, bitmap_blocks_cnt;
+
+ data_blocks_cnt = s->virtual_disk_size >> s->block_size_bits;
+ if (s->virtual_disk_size - (data_blocks_cnt << s->block_size_bits)) {
+ data_blocks_cnt++;
+ }
+ bitmap_blocks_cnt = data_blocks_cnt >> s->chunk_ratio_bits;
+ if (data_blocks_cnt - (bitmap_blocks_cnt << s->chunk_ratio_bits)) {
+ bitmap_blocks_cnt++;
+ }
+
+ if (s->parent_entries) {
+ s->bat_entries = bitmap_blocks_cnt * (s->chunk_ratio + 1);
+ } else {
+ s->bat_entries = data_blocks_cnt +
+ ((data_blocks_cnt - 1) >> s->chunk_ratio_bits);
+ }
+
+}
static int vhdx_open(BlockDriverState *bs, QDict *options, int flags)
{
@@ -729,7 +783,6 @@ static int vhdx_open(BlockDriverState *bs, QDict *options,
int flags)
int ret = 0;
uint32_t i;
uint64_t signature;
- uint32_t data_blocks_cnt, bitmap_blocks_cnt;
s->bat = NULL;
@@ -778,21 +831,7 @@ static int vhdx_open(BlockDriverState *bs, QDict *options,
int flags)
* logical_sector_size */
bs->total_sectors = s->virtual_disk_size >> s->logical_sector_size_bits;
- data_blocks_cnt = s->virtual_disk_size >> s->block_size_bits;
- if (s->virtual_disk_size - (data_blocks_cnt << s->block_size_bits)) {
- data_blocks_cnt++;
- }
- bitmap_blocks_cnt = data_blocks_cnt >> s->chunk_ratio_bits;
- if (data_blocks_cnt - (bitmap_blocks_cnt << s->chunk_ratio_bits)) {
- bitmap_blocks_cnt++;
- }
-
- if (s->parent_entries) {
- s->bat_entries = bitmap_blocks_cnt * (s->chunk_ratio + 1);
- } else {
- s->bat_entries = data_blocks_cnt +
- ((data_blocks_cnt - 1) >> s->chunk_ratio_bits);
- }
+ vhdx_calc_bat_entries(s);
s->bat_offset = s->bat_rt.file_offset;
--
1.8.1.4
- [Qemu-devel] [PATCH v4 01/13] block: vhdx - minor comments and typo correction., (continued)
- [Qemu-devel] [PATCH v4 01/13] block: vhdx - minor comments and typo correction., Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 02/13] block: vhdx - add header update capability., Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 03/13] block: vhdx code movement - VHDXMetadataEntries and BDRVVHDXState to header., Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 04/13] block: vhdx - log support struct and defines, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 05/13] block: vhdx - break endian translation functions out, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 06/13] block: vhdx - update log guid in header, and first write tracker, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 07/13] block: vhdx - log parsing, replay, and flush support, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 09/13] block: vhdx write support, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 08/13] block: vhdx - add log write support, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 10/13] block: vhdx - move more endian translations to vhdx-endian.c, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 11/13] block: vhdx - break out code operations to functions,
Jeff Cody <=
- [Qemu-devel] [PATCH v4 13/13] block: vhdx - add .bdrv_create() support, Jeff Cody, 2013/08/20
- [Qemu-devel] [PATCH v4 12/13] block: vhdx - fix comment typos in header, fix incorrect struct fields, Jeff Cody, 2013/08/20
- Re: [Qemu-devel] [PATCH v4 00/13] VHDX log replay and write support, .bdrv_create(), Kevin Wolf, 2013/08/20