2 * Block driver for Hyper-V VHDX Images
4 * Copyright (c) 2013 Red Hat, Inc.,
7 * Jeff Cody <jcody@redhat.com>
9 * This is based on the "VHDX Format Specification v1.00", published 8/25/2012
11 * https://www.microsoft.com/en-us/download/details.aspx?id=34750
13 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
14 * See the COPYING.LIB file in the top-level directory.
18 #include "qemu-common.h"
19 #include "block/block_int.h"
20 #include "qemu/module.h"
21 #include "qemu/crc32c.h"
22 #include "block/vhdx.h"
23 #include "migration/migration.h"
25 #include <uuid/uuid.h>
28 /* Options for VHDX creation */
30 #define VHDX_BLOCK_OPT_LOG_SIZE "log_size"
31 #define VHDX_BLOCK_OPT_BLOCK_SIZE "block_size"
32 #define VHDX_BLOCK_OPT_ZERO "block_state_zero"
34 typedef enum VHDXImageType
{
35 VHDX_TYPE_DYNAMIC
= 0,
37 VHDX_TYPE_DIFFERENCING
, /* Currently unsupported */
40 /* Several metadata and region table data entries are identified by
41 * guids in a MS-specific GUID format. */
44 /* ------- Known Region Table GUIDs ---------------------- */
45 static const MSGUID bat_guid
= { .data1
= 0x2dc27766,
48 .data4
= { 0x9d, 0x64, 0x11, 0x5e,
49 0x9b, 0xfd, 0x4a, 0x08} };
51 static const MSGUID metadata_guid
= { .data1
= 0x8b7ca206,
54 .data4
= { 0xb8, 0xfe, 0x57, 0x5f,
55 0x05, 0x0f, 0x88, 0x6e} };
59 /* ------- Known Metadata Entry GUIDs ---------------------- */
60 static const MSGUID file_param_guid
= { .data1
= 0xcaa16737,
63 .data4
= { 0xb3, 0xb6, 0x33, 0xf0,
64 0xaa, 0x44, 0xe7, 0x6b} };
66 static const MSGUID virtual_size_guid
= { .data1
= 0x2FA54224,
69 .data4
= { 0xb2, 0x11, 0x5d, 0xbe,
70 0xd8, 0x3b, 0xf4, 0xb8} };
72 static const MSGUID page83_guid
= { .data1
= 0xbeca12ab,
75 .data4
= { 0x93, 0xef, 0xc3, 0x09,
76 0xe0, 0x00, 0xc7, 0x46} };
79 static const MSGUID phys_sector_guid
= { .data1
= 0xcda348c7,
82 .data4
= { 0x9c, 0xc9, 0xe9, 0x88,
83 0x52, 0x51, 0xc5, 0x56} };
85 static const MSGUID parent_locator_guid
= { .data1
= 0xa8d35f2d,
88 .data4
= { 0xab, 0xf7, 0xd3,
92 static const MSGUID logical_sector_guid
= { .data1
= 0x8141bf1d,
95 .data4
= { 0xba, 0x47, 0xf2,
99 /* Each parent type must have a valid GUID; this is for parent images
100 * of type 'VHDX'. If we were to allow e.g. a QCOW2 parent, we would
101 * need to make up our own QCOW2 GUID type */
102 static const MSGUID parent_vhdx_guid
__attribute__((unused
))
103 = { .data1
= 0xb04aefb7,
106 .data4
= { 0xb7, 0x89, 0x25, 0xb8,
107 0xe9, 0x44, 0x59, 0x13} };
110 #define META_FILE_PARAMETER_PRESENT 0x01
111 #define META_VIRTUAL_DISK_SIZE_PRESENT 0x02
112 #define META_PAGE_83_PRESENT 0x04
113 #define META_LOGICAL_SECTOR_SIZE_PRESENT 0x08
114 #define META_PHYS_SECTOR_SIZE_PRESENT 0x10
115 #define META_PARENT_LOCATOR_PRESENT 0x20
117 #define META_ALL_PRESENT \
118 (META_FILE_PARAMETER_PRESENT | META_VIRTUAL_DISK_SIZE_PRESENT | \
119 META_PAGE_83_PRESENT | META_LOGICAL_SECTOR_SIZE_PRESENT | \
120 META_PHYS_SECTOR_SIZE_PRESENT)
123 typedef struct VHDXSectorInfo
{
124 uint32_t bat_idx
; /* BAT entry index */
125 uint32_t sectors_avail
; /* sectors available in payload block */
126 uint32_t bytes_left
; /* bytes left in the block after data to r/w */
127 uint32_t bytes_avail
; /* bytes available in payload block */
128 uint64_t file_offset
; /* absolute offset in bytes, in file */
129 uint64_t block_offset
; /* block offset, in bytes */
132 /* Calculates new checksum.
134 * Zero is substituted during crc calculation for the original crc field
135 * crc_offset: byte offset in buf of the buffer crc
136 * buf: buffer pointer
137 * size: size of buffer (must be > crc_offset+4)
139 * Note: The buffer should have all multi-byte data in little-endian format,
140 * and the resulting checksum is in little endian format.
142 uint32_t vhdx_update_checksum(uint8_t *buf
, size_t size
, int crc_offset
)
147 assert(size
> (crc_offset
+ sizeof(crc
)));
149 memset(buf
+ crc_offset
, 0, sizeof(crc
));
150 crc
= crc32c(0xffffffff, buf
, size
);
152 memcpy(buf
+ crc_offset
, &crc
, sizeof(crc
));
157 uint32_t vhdx_checksum_calc(uint32_t crc
, uint8_t *buf
, size_t size
,
164 if (crc_offset
> 0) {
165 memcpy(&crc_orig
, buf
+ crc_offset
, sizeof(crc_orig
));
166 memset(buf
+ crc_offset
, 0, sizeof(crc_orig
));
169 crc_new
= crc32c(crc
, buf
, size
);
170 if (crc_offset
> 0) {
171 memcpy(buf
+ crc_offset
, &crc_orig
, sizeof(crc_orig
));
177 /* Validates the checksum of the buffer, with an in-place CRC.
179 * Zero is substituted during crc calculation for the original crc field,
180 * and the crc field is restored afterwards. But the buffer will be modifed
181 * during the calculation, so this may not be not suitable for multi-threaded
184 * crc_offset: byte offset in buf of the buffer crc
185 * buf: buffer pointer
186 * size: size of buffer (must be > crc_offset+4)
188 * returns true if checksum is valid, false otherwise
190 bool vhdx_checksum_is_valid(uint8_t *buf
, size_t size
, int crc_offset
)
196 assert(size
> (crc_offset
+ 4));
198 memcpy(&crc_orig
, buf
+ crc_offset
, sizeof(crc_orig
));
199 crc_orig
= le32_to_cpu(crc_orig
);
201 crc
= vhdx_checksum_calc(0xffffffff, buf
, size
, crc_offset
);
203 return crc
== crc_orig
;
208 * This generates a UUID that is compliant with the MS GUIDs used
209 * in the VHDX spec (and elsewhere).
211 void vhdx_guid_generate(MSGUID
*guid
)
214 assert(guid
!= NULL
);
217 memcpy(guid
, uuid
, sizeof(MSGUID
));
220 /* Check for region overlaps inside the VHDX image */
221 static int vhdx_region_check(BDRVVHDXState
*s
, uint64_t start
, uint64_t length
)
227 end
= start
+ length
;
228 QLIST_FOREACH(r
, &s
->regions
, entries
) {
229 if (!((start
>= r
->end
) || (end
<= r
->start
))) {
239 /* Register a region for future checks */
240 static void vhdx_region_register(BDRVVHDXState
*s
,
241 uint64_t start
, uint64_t length
)
245 r
= g_malloc0(sizeof(*r
));
248 r
->end
= start
+ length
;
250 QLIST_INSERT_HEAD(&s
->regions
, r
, entries
);
253 /* Free all registered regions */
254 static void vhdx_region_unregister_all(BDRVVHDXState
*s
)
256 VHDXRegionEntry
*r
, *r_next
;
258 QLIST_FOREACH_SAFE(r
, &s
->regions
, entries
, r_next
) {
259 QLIST_REMOVE(r
, entries
);
264 static void vhdx_set_shift_bits(BDRVVHDXState
*s
)
266 s
->logical_sector_size_bits
= 31 - clz32(s
->logical_sector_size
);
267 s
->sectors_per_block_bits
= 31 - clz32(s
->sectors_per_block
);
268 s
->chunk_ratio_bits
= 63 - clz64(s
->chunk_ratio
);
269 s
->block_size_bits
= 31 - clz32(s
->block_size
);
273 * Per the MS VHDX Specification, for every VHDX file:
274 * - The header section is fixed size - 1 MB
275 * - The header section is always the first "object"
276 * - The first 64KB of the header is the File Identifier
277 * - The first uint64 (8 bytes) is the VHDX Signature ("vhdxfile")
278 * - The following 512 bytes constitute a UTF-16 string identifiying the
279 * software that created the file, and is optional and diagnostic only.
281 * Therefore, we probe by looking for the vhdxfile signature "vhdxfile"
283 static int vhdx_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
285 if (buf_size
>= 8 && !memcmp(buf
, "vhdxfile", 8)) {
292 * Writes the header to the specified offset.
294 * This will optionally read in buffer data from disk (otherwise zero-fill),
295 * and then update the header checksum. Header is converted to proper
296 * endianness before being written to the specified file offset
298 static int vhdx_write_header(BlockDriverState
*bs_file
, VHDXHeader
*hdr
,
299 uint64_t offset
, bool read
)
301 uint8_t *buffer
= NULL
;
303 VHDXHeader
*header_le
;
305 assert(bs_file
!= NULL
);
308 /* the header checksum is not over just the packed size of VHDXHeader,
309 * but rather over the entire 'reserved' range for the header, which is
310 * 4KB (VHDX_HEADER_SIZE). */
312 buffer
= qemu_blockalign(bs_file
, VHDX_HEADER_SIZE
);
314 /* if true, we can't assume the extra reserved bytes are 0 */
315 ret
= bdrv_pread(bs_file
, offset
, buffer
, VHDX_HEADER_SIZE
);
320 memset(buffer
, 0, VHDX_HEADER_SIZE
);
323 /* overwrite the actual VHDXHeader portion */
324 header_le
= (VHDXHeader
*)buffer
;
325 memcpy(header_le
, hdr
, sizeof(VHDXHeader
));
326 vhdx_header_le_export(hdr
, header_le
);
327 vhdx_update_checksum(buffer
, VHDX_HEADER_SIZE
,
328 offsetof(VHDXHeader
, checksum
));
329 ret
= bdrv_pwrite_sync(bs_file
, offset
, header_le
, sizeof(VHDXHeader
));
336 /* Update the VHDX headers
338 * This follows the VHDX spec procedures for header updates.
340 * - non-current header is updated with largest sequence number
342 static int vhdx_update_header(BlockDriverState
*bs
, BDRVVHDXState
*s
,
343 bool generate_data_write_guid
, MSGUID
*log_guid
)
347 uint64_t header_offset
= VHDX_HEADER1_OFFSET
;
349 VHDXHeader
*active_header
;
350 VHDXHeader
*inactive_header
;
352 /* operate on the non-current header */
353 if (s
->curr_header
== 0) {
355 header_offset
= VHDX_HEADER2_OFFSET
;
358 active_header
= s
->headers
[s
->curr_header
];
359 inactive_header
= s
->headers
[hdr_idx
];
361 inactive_header
->sequence_number
= active_header
->sequence_number
+ 1;
363 /* a new file guid must be generated before any file write, including
365 inactive_header
->file_write_guid
= s
->session_guid
;
367 /* a new data guid only needs to be generated before any guest-visible
368 * writes (i.e. something observable via virtual disk read) */
369 if (generate_data_write_guid
) {
370 vhdx_guid_generate(&inactive_header
->data_write_guid
);
373 /* update the log guid if present */
375 inactive_header
->log_guid
= *log_guid
;
378 ret
= vhdx_write_header(bs
->file
, inactive_header
, header_offset
, true);
382 s
->curr_header
= hdr_idx
;
389 * The VHDX spec calls for header updates to be performed twice, so that both
390 * the current and non-current header have valid info
392 int vhdx_update_headers(BlockDriverState
*bs
, BDRVVHDXState
*s
,
393 bool generate_data_write_guid
, MSGUID
*log_guid
)
397 ret
= vhdx_update_header(bs
, s
, generate_data_write_guid
, log_guid
);
401 ret
= vhdx_update_header(bs
, s
, generate_data_write_guid
, log_guid
);
405 /* opens the specified header block from the VHDX file header section */
406 static void vhdx_parse_header(BlockDriverState
*bs
, BDRVVHDXState
*s
,
412 bool h1_valid
= false;
413 bool h2_valid
= false;
418 /* header1 & header2 are freed in vhdx_close() */
419 header1
= qemu_blockalign(bs
, sizeof(VHDXHeader
));
420 header2
= qemu_blockalign(bs
, sizeof(VHDXHeader
));
422 buffer
= qemu_blockalign(bs
, VHDX_HEADER_SIZE
);
424 s
->headers
[0] = header1
;
425 s
->headers
[1] = header2
;
427 /* We have to read the whole VHDX_HEADER_SIZE instead of
428 * sizeof(VHDXHeader), because the checksum is over the whole
430 ret
= bdrv_pread(bs
->file
, VHDX_HEADER1_OFFSET
, buffer
, VHDX_HEADER_SIZE
);
434 /* copy over just the relevant portion that we need */
435 memcpy(header1
, buffer
, sizeof(VHDXHeader
));
437 if (vhdx_checksum_is_valid(buffer
, VHDX_HEADER_SIZE
, 4)) {
438 vhdx_header_le_import(header1
);
439 if (header1
->signature
== VHDX_HEADER_SIGNATURE
&&
440 header1
->version
== 1) {
441 h1_seq
= header1
->sequence_number
;
446 ret
= bdrv_pread(bs
->file
, VHDX_HEADER2_OFFSET
, buffer
, VHDX_HEADER_SIZE
);
450 /* copy over just the relevant portion that we need */
451 memcpy(header2
, buffer
, sizeof(VHDXHeader
));
453 if (vhdx_checksum_is_valid(buffer
, VHDX_HEADER_SIZE
, 4)) {
454 vhdx_header_le_import(header2
);
455 if (header2
->signature
== VHDX_HEADER_SIGNATURE
&&
456 header2
->version
== 1) {
457 h2_seq
= header2
->sequence_number
;
462 /* If there is only 1 valid header (or no valid headers), we
463 * don't care what the sequence numbers are */
464 if (h1_valid
&& !h2_valid
) {
466 } else if (!h1_valid
&& h2_valid
) {
468 } else if (!h1_valid
&& !h2_valid
) {
471 /* If both headers are valid, then we choose the active one by the
472 * highest sequence number. If the sequence numbers are equal, that is
474 if (h1_seq
> h2_seq
) {
476 } else if (h2_seq
> h1_seq
) {
479 /* The Microsoft Disk2VHD tool will create 2 identical
480 * headers, with identical sequence numbers. If the headers are
481 * identical, don't consider the file corrupt */
482 if (!memcmp(header1
, header2
, sizeof(VHDXHeader
))) {
490 vhdx_region_register(s
, s
->headers
[s
->curr_header
]->log_offset
,
491 s
->headers
[s
->curr_header
]->log_length
);
495 error_setg_errno(errp
, -ret
, "No valid VHDX header found");
498 s
->headers
[0] = NULL
;
499 s
->headers
[1] = NULL
;
505 static int vhdx_open_region_tables(BlockDriverState
*bs
, BDRVVHDXState
*s
)
510 VHDXRegionTableEntry rt_entry
;
512 bool bat_rt_found
= false;
513 bool metadata_rt_found
= false;
515 /* We have to read the whole 64KB block, because the crc32 is over the
517 buffer
= qemu_blockalign(bs
, VHDX_HEADER_BLOCK_SIZE
);
519 ret
= bdrv_pread(bs
->file
, VHDX_REGION_TABLE_OFFSET
, buffer
,
520 VHDX_HEADER_BLOCK_SIZE
);
524 memcpy(&s
->rt
, buffer
, sizeof(s
->rt
));
525 offset
+= sizeof(s
->rt
);
527 if (!vhdx_checksum_is_valid(buffer
, VHDX_HEADER_BLOCK_SIZE
, 4)) {
532 vhdx_region_header_le_import(&s
->rt
);
534 if (s
->rt
.signature
!= VHDX_REGION_SIGNATURE
) {
540 /* Per spec, maximum region table entry count is 2047 */
541 if (s
->rt
.entry_count
> 2047) {
546 for (i
= 0; i
< s
->rt
.entry_count
; i
++) {
547 memcpy(&rt_entry
, buffer
+ offset
, sizeof(rt_entry
));
548 offset
+= sizeof(rt_entry
);
550 vhdx_region_entry_le_import(&rt_entry
);
552 /* check for region overlap between these entries, and any
553 * other memory regions in the file */
554 ret
= vhdx_region_check(s
, rt_entry
.file_offset
, rt_entry
.length
);
559 vhdx_region_register(s
, rt_entry
.file_offset
, rt_entry
.length
);
561 /* see if we recognize the entry */
562 if (guid_eq(rt_entry
.guid
, bat_guid
)) {
563 /* must be unique; if we have already found it this is invalid */
569 s
->bat_rt
= rt_entry
;
573 if (guid_eq(rt_entry
.guid
, metadata_guid
)) {
574 /* must be unique; if we have already found it this is invalid */
575 if (metadata_rt_found
) {
579 metadata_rt_found
= true;
580 s
->metadata_rt
= rt_entry
;
584 if (rt_entry
.data_bits
& VHDX_REGION_ENTRY_REQUIRED
) {
585 /* cannot read vhdx file - required region table entry that
586 * we do not understand. per spec, we must fail to open */
592 if (!bat_rt_found
|| !metadata_rt_found
) {
606 /* Metadata initial parser
608 * This loads all the metadata entry fields. This may cause additional
609 * fields to be processed (e.g. parent locator, etc..).
611 * There are 5 Metadata items that are always required:
612 * - File Parameters (block size, has a parent)
613 * - Virtual Disk Size (size, in bytes, of the virtual drive)
614 * - Page 83 Data (scsi page 83 guid)
615 * - Logical Sector Size (logical sector size in bytes, either 512 or
616 * 4096. We only support 512 currently)
617 * - Physical Sector Size (512 or 4096)
619 * Also, if the File Parameters indicate this is a differencing file,
620 * we must also look for the Parent Locator metadata item.
622 static int vhdx_parse_metadata(BlockDriverState
*bs
, BDRVVHDXState
*s
)
628 VHDXMetadataTableEntry md_entry
;
630 buffer
= qemu_blockalign(bs
, VHDX_METADATA_TABLE_MAX_SIZE
);
632 ret
= bdrv_pread(bs
->file
, s
->metadata_rt
.file_offset
, buffer
,
633 VHDX_METADATA_TABLE_MAX_SIZE
);
637 memcpy(&s
->metadata_hdr
, buffer
, sizeof(s
->metadata_hdr
));
638 offset
+= sizeof(s
->metadata_hdr
);
640 vhdx_metadata_header_le_import(&s
->metadata_hdr
);
642 if (s
->metadata_hdr
.signature
!= VHDX_METADATA_SIGNATURE
) {
647 s
->metadata_entries
.present
= 0;
649 if ((s
->metadata_hdr
.entry_count
* sizeof(md_entry
)) >
650 (VHDX_METADATA_TABLE_MAX_SIZE
- offset
)) {
655 for (i
= 0; i
< s
->metadata_hdr
.entry_count
; i
++) {
656 memcpy(&md_entry
, buffer
+ offset
, sizeof(md_entry
));
657 offset
+= sizeof(md_entry
);
659 vhdx_metadata_entry_le_import(&md_entry
);
661 if (guid_eq(md_entry
.item_id
, file_param_guid
)) {
662 if (s
->metadata_entries
.present
& META_FILE_PARAMETER_PRESENT
) {
666 s
->metadata_entries
.file_parameters_entry
= md_entry
;
667 s
->metadata_entries
.present
|= META_FILE_PARAMETER_PRESENT
;
671 if (guid_eq(md_entry
.item_id
, virtual_size_guid
)) {
672 if (s
->metadata_entries
.present
& META_VIRTUAL_DISK_SIZE_PRESENT
) {
676 s
->metadata_entries
.virtual_disk_size_entry
= md_entry
;
677 s
->metadata_entries
.present
|= META_VIRTUAL_DISK_SIZE_PRESENT
;
681 if (guid_eq(md_entry
.item_id
, page83_guid
)) {
682 if (s
->metadata_entries
.present
& META_PAGE_83_PRESENT
) {
686 s
->metadata_entries
.page83_data_entry
= md_entry
;
687 s
->metadata_entries
.present
|= META_PAGE_83_PRESENT
;
691 if (guid_eq(md_entry
.item_id
, logical_sector_guid
)) {
692 if (s
->metadata_entries
.present
&
693 META_LOGICAL_SECTOR_SIZE_PRESENT
) {
697 s
->metadata_entries
.logical_sector_size_entry
= md_entry
;
698 s
->metadata_entries
.present
|= META_LOGICAL_SECTOR_SIZE_PRESENT
;
702 if (guid_eq(md_entry
.item_id
, phys_sector_guid
)) {
703 if (s
->metadata_entries
.present
& META_PHYS_SECTOR_SIZE_PRESENT
) {
707 s
->metadata_entries
.phys_sector_size_entry
= md_entry
;
708 s
->metadata_entries
.present
|= META_PHYS_SECTOR_SIZE_PRESENT
;
712 if (guid_eq(md_entry
.item_id
, parent_locator_guid
)) {
713 if (s
->metadata_entries
.present
& META_PARENT_LOCATOR_PRESENT
) {
717 s
->metadata_entries
.parent_locator_entry
= md_entry
;
718 s
->metadata_entries
.present
|= META_PARENT_LOCATOR_PRESENT
;
722 if (md_entry
.data_bits
& VHDX_META_FLAGS_IS_REQUIRED
) {
723 /* cannot read vhdx file - required region table entry that
724 * we do not understand. per spec, we must fail to open */
730 if (s
->metadata_entries
.present
!= META_ALL_PRESENT
) {
735 ret
= bdrv_pread(bs
->file
,
736 s
->metadata_entries
.file_parameters_entry
.offset
737 + s
->metadata_rt
.file_offset
,
745 le32_to_cpus(&s
->params
.block_size
);
746 le32_to_cpus(&s
->params
.data_bits
);
749 /* We now have the file parameters, so we can tell if this is a
750 * differencing file (i.e.. has_parent), is dynamic or fixed
751 * sized (leave_blocks_allocated), and the block size */
753 /* The parent locator required iff the file parameters has_parent set */
754 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
755 if (s
->metadata_entries
.present
& META_PARENT_LOCATOR_PRESENT
) {
756 /* TODO: parse parent locator fields */
757 ret
= -ENOTSUP
; /* temp, until differencing files are supported */
760 /* if has_parent is set, but there is not parent locator present,
761 * then that is an invalid combination */
767 /* determine virtual disk size, logical sector size,
768 * and phys sector size */
770 ret
= bdrv_pread(bs
->file
,
771 s
->metadata_entries
.virtual_disk_size_entry
.offset
772 + s
->metadata_rt
.file_offset
,
773 &s
->virtual_disk_size
,
778 ret
= bdrv_pread(bs
->file
,
779 s
->metadata_entries
.logical_sector_size_entry
.offset
780 + s
->metadata_rt
.file_offset
,
781 &s
->logical_sector_size
,
786 ret
= bdrv_pread(bs
->file
,
787 s
->metadata_entries
.phys_sector_size_entry
.offset
788 + s
->metadata_rt
.file_offset
,
789 &s
->physical_sector_size
,
795 le64_to_cpus(&s
->virtual_disk_size
);
796 le32_to_cpus(&s
->logical_sector_size
);
797 le32_to_cpus(&s
->physical_sector_size
);
799 if (s
->params
.block_size
< VHDX_BLOCK_SIZE_MIN
||
800 s
->params
.block_size
> VHDX_BLOCK_SIZE_MAX
) {
805 /* only 2 supported sector sizes */
806 if (s
->logical_sector_size
!= 512 && s
->logical_sector_size
!= 4096) {
811 /* Both block_size and sector_size are guaranteed powers of 2, below.
812 Due to range checks above, s->sectors_per_block can never be < 256 */
813 s
->sectors_per_block
= s
->params
.block_size
/ s
->logical_sector_size
;
814 s
->chunk_ratio
= (VHDX_MAX_SECTORS_PER_BLOCK
) *
815 (uint64_t)s
->logical_sector_size
/
816 (uint64_t)s
->params
.block_size
;
818 /* These values are ones we will want to use for division / multiplication
819 * later on, and they are all guaranteed (per the spec) to be powers of 2,
820 * so we can take advantage of that for shift operations during
822 if (s
->logical_sector_size
& (s
->logical_sector_size
- 1)) {
826 if (s
->sectors_per_block
& (s
->sectors_per_block
- 1)) {
830 if (s
->chunk_ratio
& (s
->chunk_ratio
- 1)) {
834 s
->block_size
= s
->params
.block_size
;
835 if (s
->block_size
& (s
->block_size
- 1)) {
840 vhdx_set_shift_bits(s
);
850 * Calculate the number of BAT entries, including sector
853 static void vhdx_calc_bat_entries(BDRVVHDXState
*s
)
855 uint32_t data_blocks_cnt
, bitmap_blocks_cnt
;
857 data_blocks_cnt
= s
->virtual_disk_size
>> s
->block_size_bits
;
858 if (s
->virtual_disk_size
- (data_blocks_cnt
<< s
->block_size_bits
)) {
861 bitmap_blocks_cnt
= data_blocks_cnt
>> s
->chunk_ratio_bits
;
862 if (data_blocks_cnt
- (bitmap_blocks_cnt
<< s
->chunk_ratio_bits
)) {
866 if (s
->parent_entries
) {
867 s
->bat_entries
= bitmap_blocks_cnt
* (s
->chunk_ratio
+ 1);
869 s
->bat_entries
= data_blocks_cnt
+
870 ((data_blocks_cnt
- 1) >> s
->chunk_ratio_bits
);
875 static void vhdx_close(BlockDriverState
*bs
)
877 BDRVVHDXState
*s
= bs
->opaque
;
878 qemu_vfree(s
->headers
[0]);
879 s
->headers
[0] = NULL
;
880 qemu_vfree(s
->headers
[1]);
881 s
->headers
[1] = NULL
;
884 qemu_vfree(s
->parent_entries
);
885 s
->parent_entries
= NULL
;
886 migrate_del_blocker(s
->migration_blocker
);
887 error_free(s
->migration_blocker
);
888 qemu_vfree(s
->log
.hdr
);
890 vhdx_region_unregister_all(s
);
893 static int vhdx_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
896 BDRVVHDXState
*s
= bs
->opaque
;
900 Error
*local_err
= NULL
;
903 s
->first_visible_write
= true;
905 qemu_co_mutex_init(&s
->lock
);
906 QLIST_INIT(&s
->regions
);
908 /* validate the file signature */
909 ret
= bdrv_pread(bs
->file
, 0, &signature
, sizeof(uint64_t));
913 if (memcmp(&signature
, "vhdxfile", 8)) {
918 /* This is used for any header updates, for the file_write_guid.
919 * The spec dictates that a new value should be used for the first
921 vhdx_guid_generate(&s
->session_guid
);
923 vhdx_parse_header(bs
, s
, &local_err
);
924 if (local_err
!= NULL
) {
925 error_propagate(errp
, local_err
);
930 ret
= vhdx_parse_log(bs
, s
, &s
->log_replayed_on_open
, errp
);
935 ret
= vhdx_open_region_tables(bs
, s
);
940 ret
= vhdx_parse_metadata(bs
, s
);
945 s
->block_size
= s
->params
.block_size
;
947 /* the VHDX spec dictates that virtual_disk_size is always a multiple of
948 * logical_sector_size */
949 bs
->total_sectors
= s
->virtual_disk_size
>> s
->logical_sector_size_bits
;
951 vhdx_calc_bat_entries(s
);
953 s
->bat_offset
= s
->bat_rt
.file_offset
;
955 if (s
->bat_entries
> s
->bat_rt
.length
/ sizeof(VHDXBatEntry
)) {
956 /* BAT allocation is not large enough for all entries */
961 /* s->bat is freed in vhdx_close() */
962 s
->bat
= qemu_try_blockalign(bs
->file
, s
->bat_rt
.length
);
963 if (s
->bat
== NULL
) {
968 ret
= bdrv_pread(bs
->file
, s
->bat_offset
, s
->bat
, s
->bat_rt
.length
);
973 uint64_t payblocks
= s
->chunk_ratio
;
974 /* endian convert, and verify populated BAT field file offsets against
975 * region table and log entries */
976 for (i
= 0; i
< s
->bat_entries
; i
++) {
977 le64_to_cpus(&s
->bat
[i
]);
979 /* payload bat entries */
980 if ((s
->bat
[i
] & VHDX_BAT_STATE_BIT_MASK
) ==
981 PAYLOAD_BLOCK_FULLY_PRESENT
) {
982 ret
= vhdx_region_check(s
, s
->bat
[i
] & VHDX_BAT_FILE_OFF_MASK
,
989 payblocks
= s
->chunk_ratio
;
990 /* Once differencing files are supported, verify sector bitmap
995 if (flags
& BDRV_O_RDWR
) {
996 ret
= vhdx_update_headers(bs
, s
, false, NULL
);
1002 /* TODO: differencing files */
1004 /* Disable migration when VHDX images are used */
1005 error_set(&s
->migration_blocker
,
1006 QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED
,
1007 "vhdx", bdrv_get_device_name(bs
), "live migration");
1008 migrate_add_blocker(s
->migration_blocker
);
1016 static int vhdx_reopen_prepare(BDRVReopenState
*state
,
1017 BlockReopenQueue
*queue
, Error
**errp
)
1024 * Perform sector to block offset translations, to get various
1025 * sector and file offsets into the image. See VHDXSectorInfo
1027 static void vhdx_block_translate(BDRVVHDXState
*s
, int64_t sector_num
,
1028 int nb_sectors
, VHDXSectorInfo
*sinfo
)
1030 uint32_t block_offset
;
1032 sinfo
->bat_idx
= sector_num
>> s
->sectors_per_block_bits
;
1033 /* effectively a modulo - this gives us the offset into the block
1034 * (in sector sizes) for our sector number */
1035 block_offset
= sector_num
- (sinfo
->bat_idx
<< s
->sectors_per_block_bits
);
1036 /* the chunk ratio gives us the interleaving of the sector
1037 * bitmaps, so we need to advance our page block index by the
1038 * sector bitmaps entry number */
1039 sinfo
->bat_idx
+= sinfo
->bat_idx
>> s
->chunk_ratio_bits
;
1041 /* the number of sectors we can read/write in this cycle */
1042 sinfo
->sectors_avail
= s
->sectors_per_block
- block_offset
;
1044 sinfo
->bytes_left
= sinfo
->sectors_avail
<< s
->logical_sector_size_bits
;
1046 if (sinfo
->sectors_avail
> nb_sectors
) {
1047 sinfo
->sectors_avail
= nb_sectors
;
1050 sinfo
->bytes_avail
= sinfo
->sectors_avail
<< s
->logical_sector_size_bits
;
1052 sinfo
->file_offset
= s
->bat
[sinfo
->bat_idx
] & VHDX_BAT_FILE_OFF_MASK
;
1054 sinfo
->block_offset
= block_offset
<< s
->logical_sector_size_bits
;
1056 /* The file offset must be past the header section, so must be > 0 */
1057 if (sinfo
->file_offset
== 0) {
1061 /* block offset is the offset in vhdx logical sectors, in
1062 * the payload data block. Convert that to a byte offset
1063 * in the block, and add in the payload data block offset
1064 * in the file, in bytes, to get the final read address */
1066 sinfo
->file_offset
+= sinfo
->block_offset
;
1070 static int vhdx_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1072 BDRVVHDXState
*s
= bs
->opaque
;
1074 bdi
->cluster_size
= s
->block_size
;
1076 bdi
->unallocated_blocks_are_zero
=
1077 (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) == 0;
1083 static coroutine_fn
int vhdx_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
1084 int nb_sectors
, QEMUIOVector
*qiov
)
1086 BDRVVHDXState
*s
= bs
->opaque
;
1088 VHDXSectorInfo sinfo
;
1089 uint64_t bytes_done
= 0;
1090 QEMUIOVector hd_qiov
;
1092 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
1094 qemu_co_mutex_lock(&s
->lock
);
1096 while (nb_sectors
> 0) {
1097 /* We are a differencing file, so we need to inspect the sector bitmap
1098 * to see if we have the data or not */
1099 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
1100 /* not supported yet */
1104 vhdx_block_translate(s
, sector_num
, nb_sectors
, &sinfo
);
1106 qemu_iovec_reset(&hd_qiov
);
1107 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
, sinfo
.bytes_avail
);
1109 /* check the payload block state */
1110 switch (s
->bat
[sinfo
.bat_idx
] & VHDX_BAT_STATE_BIT_MASK
) {
1111 case PAYLOAD_BLOCK_NOT_PRESENT
: /* fall through */
1112 case PAYLOAD_BLOCK_UNDEFINED
: /* fall through */
1113 case PAYLOAD_BLOCK_UNMAPPED
: /* fall through */
1114 case PAYLOAD_BLOCK_ZERO
:
1116 qemu_iovec_memset(&hd_qiov
, 0, 0, sinfo
.bytes_avail
);
1118 case PAYLOAD_BLOCK_FULLY_PRESENT
:
1119 qemu_co_mutex_unlock(&s
->lock
);
1120 ret
= bdrv_co_readv(bs
->file
,
1121 sinfo
.file_offset
>> BDRV_SECTOR_BITS
,
1122 sinfo
.sectors_avail
, &hd_qiov
);
1123 qemu_co_mutex_lock(&s
->lock
);
1128 case PAYLOAD_BLOCK_PARTIALLY_PRESENT
:
1129 /* we don't yet support difference files, fall through
1136 nb_sectors
-= sinfo
.sectors_avail
;
1137 sector_num
+= sinfo
.sectors_avail
;
1138 bytes_done
+= sinfo
.bytes_avail
;
1143 qemu_co_mutex_unlock(&s
->lock
);
1144 qemu_iovec_destroy(&hd_qiov
);
1149 * Allocate a new payload block at the end of the file.
1151 * Allocation will happen at 1MB alignment inside the file
1153 * Returns the file offset start of the new payload block
1155 static int vhdx_allocate_block(BlockDriverState
*bs
, BDRVVHDXState
*s
,
1156 uint64_t *new_offset
)
1158 *new_offset
= bdrv_getlength(bs
->file
);
1160 /* per the spec, the address for a block is in units of 1MB */
1161 *new_offset
= ROUND_UP(*new_offset
, 1024 * 1024);
1163 return bdrv_truncate(bs
->file
, *new_offset
+ s
->block_size
);
1167 * Update the BAT table entry with the new file offset, and the new entry
1169 static void vhdx_update_bat_table_entry(BlockDriverState
*bs
, BDRVVHDXState
*s
,
1170 VHDXSectorInfo
*sinfo
,
1171 uint64_t *bat_entry_le
,
1172 uint64_t *bat_offset
, int state
)
1174 /* The BAT entry is a uint64, with 44 bits for the file offset in units of
1175 * 1MB, and 3 bits for the block state. */
1176 s
->bat
[sinfo
->bat_idx
] = sinfo
->file_offset
;
1178 s
->bat
[sinfo
->bat_idx
] |= state
& VHDX_BAT_STATE_BIT_MASK
;
1180 *bat_entry_le
= cpu_to_le64(s
->bat
[sinfo
->bat_idx
]);
1181 *bat_offset
= s
->bat_offset
+ sinfo
->bat_idx
* sizeof(VHDXBatEntry
);
1185 /* Per the spec, on the first write of guest-visible data to the file the
1186 * data write guid must be updated in the header */
1187 int vhdx_user_visible_write(BlockDriverState
*bs
, BDRVVHDXState
*s
)
1190 if (s
->first_visible_write
) {
1191 s
->first_visible_write
= false;
1192 ret
= vhdx_update_headers(bs
, s
, true, NULL
);
1197 static coroutine_fn
int vhdx_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
1198 int nb_sectors
, QEMUIOVector
*qiov
)
1201 BDRVVHDXState
*s
= bs
->opaque
;
1202 VHDXSectorInfo sinfo
;
1203 uint64_t bytes_done
= 0;
1204 uint64_t bat_entry
= 0;
1205 uint64_t bat_entry_offset
= 0;
1206 QEMUIOVector hd_qiov
;
1207 struct iovec iov1
= { 0 };
1208 struct iovec iov2
= { 0 };
1209 int sectors_to_write
;
1211 uint64_t bat_prior_offset
= 0;
1212 bool bat_update
= false;
1214 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
1216 qemu_co_mutex_lock(&s
->lock
);
1218 ret
= vhdx_user_visible_write(bs
, s
);
1223 while (nb_sectors
> 0) {
1224 bool use_zero_buffers
= false;
1226 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
1227 /* not supported yet */
1231 vhdx_block_translate(s
, sector_num
, nb_sectors
, &sinfo
);
1232 sectors_to_write
= sinfo
.sectors_avail
;
1234 qemu_iovec_reset(&hd_qiov
);
1235 /* check the payload block state */
1236 bat_state
= s
->bat
[sinfo
.bat_idx
] & VHDX_BAT_STATE_BIT_MASK
;
1237 switch (bat_state
) {
1238 case PAYLOAD_BLOCK_ZERO
:
1239 /* in this case, we need to preserve zero writes for
1240 * data that is not part of this write, so we must pad
1241 * the rest of the buffer to zeroes */
1243 /* if we are on a posix system with ftruncate() that extends
1244 * a file, then it is zero-filled for us. On Win32, the raw
1245 * layer uses SetFilePointer and SetFileEnd, which does not
1246 * zero fill AFAIK */
1248 /* Queue another write of zero buffers if the underlying file
1249 * does not zero-fill on file extension */
1251 if (bdrv_has_zero_init(bs
->file
) == 0) {
1252 use_zero_buffers
= true;
1254 /* zero fill the front, if any */
1255 if (sinfo
.block_offset
) {
1256 iov1
.iov_len
= sinfo
.block_offset
;
1257 iov1
.iov_base
= qemu_blockalign(bs
, iov1
.iov_len
);
1258 memset(iov1
.iov_base
, 0, iov1
.iov_len
);
1259 qemu_iovec_concat_iov(&hd_qiov
, &iov1
, 1, 0,
1260 sinfo
.block_offset
);
1261 sectors_to_write
+= iov1
.iov_len
>> BDRV_SECTOR_BITS
;
1264 /* our actual data */
1265 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
,
1268 /* zero fill the back, if any */
1269 if ((sinfo
.bytes_avail
- sinfo
.block_offset
) <
1271 iov2
.iov_len
= s
->block_size
-
1272 (sinfo
.bytes_avail
+ sinfo
.block_offset
);
1273 iov2
.iov_base
= qemu_blockalign(bs
, iov2
.iov_len
);
1274 memset(iov2
.iov_base
, 0, iov2
.iov_len
);
1275 qemu_iovec_concat_iov(&hd_qiov
, &iov2
, 1, 0,
1276 sinfo
.block_offset
);
1277 sectors_to_write
+= iov2
.iov_len
>> BDRV_SECTOR_BITS
;
1282 case PAYLOAD_BLOCK_NOT_PRESENT
: /* fall through */
1283 case PAYLOAD_BLOCK_UNMAPPED
: /* fall through */
1284 case PAYLOAD_BLOCK_UNDEFINED
: /* fall through */
1285 bat_prior_offset
= sinfo
.file_offset
;
1286 ret
= vhdx_allocate_block(bs
, s
, &sinfo
.file_offset
);
1290 /* once we support differencing files, this may also be
1291 * partially present */
1292 /* update block state to the newly specified state */
1293 vhdx_update_bat_table_entry(bs
, s
, &sinfo
, &bat_entry
,
1295 PAYLOAD_BLOCK_FULLY_PRESENT
);
1297 /* since we just allocated a block, file_offset is the
1298 * beginning of the payload block. It needs to be the
1299 * write address, which includes the offset into the block */
1300 if (!use_zero_buffers
) {
1301 sinfo
.file_offset
+= sinfo
.block_offset
;
1304 case PAYLOAD_BLOCK_FULLY_PRESENT
:
1305 /* if the file offset address is in the header zone,
1306 * there is a problem */
1307 if (sinfo
.file_offset
< (1024 * 1024)) {
1309 goto error_bat_restore
;
1312 if (!use_zero_buffers
) {
1313 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
,
1316 /* block exists, so we can just overwrite it */
1317 qemu_co_mutex_unlock(&s
->lock
);
1318 ret
= bdrv_co_writev(bs
->file
,
1319 sinfo
.file_offset
>> BDRV_SECTOR_BITS
,
1320 sectors_to_write
, &hd_qiov
);
1321 qemu_co_mutex_lock(&s
->lock
);
1323 goto error_bat_restore
;
1326 case PAYLOAD_BLOCK_PARTIALLY_PRESENT
:
1327 /* we don't yet support difference files, fall through
1336 /* this will update the BAT entry into the log journal, and
1337 * then flush the log journal out to disk */
1338 ret
= vhdx_log_write_and_flush(bs
, s
, &bat_entry
,
1339 sizeof(VHDXBatEntry
),
1346 nb_sectors
-= sinfo
.sectors_avail
;
1347 sector_num
+= sinfo
.sectors_avail
;
1348 bytes_done
+= sinfo
.bytes_avail
;
1357 /* keep metadata in sync, and restore the bat entry state
1359 sinfo
.file_offset
= bat_prior_offset
;
1360 vhdx_update_bat_table_entry(bs
, s
, &sinfo
, &bat_entry
,
1361 &bat_entry_offset
, bat_state
);
1364 qemu_vfree(iov1
.iov_base
);
1365 qemu_vfree(iov2
.iov_base
);
1366 qemu_co_mutex_unlock(&s
->lock
);
1367 qemu_iovec_destroy(&hd_qiov
);
1374 * Create VHDX Headers
1376 * There are 2 headers, and the highest sequence number will represent
1379 static int vhdx_create_new_headers(BlockDriverState
*bs
, uint64_t image_size
,
1383 VHDXHeader
*hdr
= NULL
;
1385 hdr
= g_new0(VHDXHeader
, 1);
1387 hdr
->signature
= VHDX_HEADER_SIGNATURE
;
1388 hdr
->sequence_number
= g_random_int();
1389 hdr
->log_version
= 0;
1391 hdr
->log_length
= log_size
;
1392 hdr
->log_offset
= VHDX_HEADER_SECTION_END
;
1393 vhdx_guid_generate(&hdr
->file_write_guid
);
1394 vhdx_guid_generate(&hdr
->data_write_guid
);
1396 ret
= vhdx_write_header(bs
, hdr
, VHDX_HEADER1_OFFSET
, false);
1400 hdr
->sequence_number
++;
1401 ret
= vhdx_write_header(bs
, hdr
, VHDX_HEADER2_OFFSET
, false);
1411 #define VHDX_METADATA_ENTRY_BUFFER_SIZE \
1412 (sizeof(VHDXFileParameters) +\
1413 sizeof(VHDXVirtualDiskSize) +\
1414 sizeof(VHDXPage83Data) +\
1415 sizeof(VHDXVirtualDiskLogicalSectorSize) +\
1416 sizeof(VHDXVirtualDiskPhysicalSectorSize))
1419 * Create the Metadata entries.
1421 * For more details on the entries, see section 3.5 (pg 29) in the
1422 * VHDX 1.00 specification.
1424 * We support 5 metadata entries (all required by spec):
1426 * Virtual Disk Size,
1428 * Logical Sector Size,
1429 * Physical Sector Size
1431 * The first 64KB of the Metadata section is reserved for the metadata
1432 * header and entries; beyond that, the metadata items themselves reside.
1434 static int vhdx_create_new_metadata(BlockDriverState
*bs
,
1435 uint64_t image_size
,
1436 uint32_t block_size
,
1437 uint32_t sector_size
,
1438 uint64_t metadata_offset
,
1442 uint32_t offset
= 0;
1443 void *buffer
= NULL
;
1445 VHDXMetadataTableHeader
*md_table
;;
1446 VHDXMetadataTableEntry
*md_table_entry
;
1448 /* Metadata entries */
1449 VHDXFileParameters
*mt_file_params
;
1450 VHDXVirtualDiskSize
*mt_virtual_size
;
1451 VHDXPage83Data
*mt_page83
;
1452 VHDXVirtualDiskLogicalSectorSize
*mt_log_sector_size
;
1453 VHDXVirtualDiskPhysicalSectorSize
*mt_phys_sector_size
;
1455 entry_buffer
= g_malloc0(VHDX_METADATA_ENTRY_BUFFER_SIZE
);
1457 mt_file_params
= entry_buffer
;
1458 offset
+= sizeof(VHDXFileParameters
);
1459 mt_virtual_size
= entry_buffer
+ offset
;
1460 offset
+= sizeof(VHDXVirtualDiskSize
);
1461 mt_page83
= entry_buffer
+ offset
;
1462 offset
+= sizeof(VHDXPage83Data
);
1463 mt_log_sector_size
= entry_buffer
+ offset
;
1464 offset
+= sizeof(VHDXVirtualDiskLogicalSectorSize
);
1465 mt_phys_sector_size
= entry_buffer
+ offset
;
1467 mt_file_params
->block_size
= cpu_to_le32(block_size
);
1468 if (type
== VHDX_TYPE_FIXED
) {
1469 mt_file_params
->data_bits
|= VHDX_PARAMS_LEAVE_BLOCKS_ALLOCED
;
1470 cpu_to_le32s(&mt_file_params
->data_bits
);
1473 vhdx_guid_generate(&mt_page83
->page_83_data
);
1474 cpu_to_leguids(&mt_page83
->page_83_data
);
1475 mt_virtual_size
->virtual_disk_size
= cpu_to_le64(image_size
);
1476 mt_log_sector_size
->logical_sector_size
= cpu_to_le32(sector_size
);
1477 mt_phys_sector_size
->physical_sector_size
= cpu_to_le32(sector_size
);
1479 buffer
= g_malloc0(VHDX_HEADER_BLOCK_SIZE
);
1482 md_table
->signature
= VHDX_METADATA_SIGNATURE
;
1483 md_table
->entry_count
= 5;
1484 vhdx_metadata_header_le_export(md_table
);
1487 /* This will reference beyond the reserved table portion */
1490 md_table_entry
= buffer
+ sizeof(VHDXMetadataTableHeader
);
1492 md_table_entry
[0].item_id
= file_param_guid
;
1493 md_table_entry
[0].offset
= offset
;
1494 md_table_entry
[0].length
= sizeof(VHDXFileParameters
);
1495 md_table_entry
[0].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
;
1496 offset
+= md_table_entry
[0].length
;
1497 vhdx_metadata_entry_le_export(&md_table_entry
[0]);
1499 md_table_entry
[1].item_id
= virtual_size_guid
;
1500 md_table_entry
[1].offset
= offset
;
1501 md_table_entry
[1].length
= sizeof(VHDXVirtualDiskSize
);
1502 md_table_entry
[1].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1503 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1504 offset
+= md_table_entry
[1].length
;
1505 vhdx_metadata_entry_le_export(&md_table_entry
[1]);
1507 md_table_entry
[2].item_id
= page83_guid
;
1508 md_table_entry
[2].offset
= offset
;
1509 md_table_entry
[2].length
= sizeof(VHDXPage83Data
);
1510 md_table_entry
[2].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1511 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1512 offset
+= md_table_entry
[2].length
;
1513 vhdx_metadata_entry_le_export(&md_table_entry
[2]);
1515 md_table_entry
[3].item_id
= logical_sector_guid
;
1516 md_table_entry
[3].offset
= offset
;
1517 md_table_entry
[3].length
= sizeof(VHDXVirtualDiskLogicalSectorSize
);
1518 md_table_entry
[3].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1519 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1520 offset
+= md_table_entry
[3].length
;
1521 vhdx_metadata_entry_le_export(&md_table_entry
[3]);
1523 md_table_entry
[4].item_id
= phys_sector_guid
;
1524 md_table_entry
[4].offset
= offset
;
1525 md_table_entry
[4].length
= sizeof(VHDXVirtualDiskPhysicalSectorSize
);
1526 md_table_entry
[4].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1527 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1528 vhdx_metadata_entry_le_export(&md_table_entry
[4]);
1530 ret
= bdrv_pwrite(bs
, metadata_offset
, buffer
, VHDX_HEADER_BLOCK_SIZE
);
1535 ret
= bdrv_pwrite(bs
, metadata_offset
+ (64 * KiB
), entry_buffer
,
1536 VHDX_METADATA_ENTRY_BUFFER_SIZE
);
1544 g_free(entry_buffer
);
1548 /* This create the actual BAT itself. We currently only support
1549 * 'Dynamic' and 'Fixed' image types.
1551 * Dynamic images: default state of the BAT is all zeroes.
1553 * Fixed images: default state of the BAT is fully populated, with
1554 * file offsets and state PAYLOAD_BLOCK_FULLY_PRESENT.
1556 static int vhdx_create_bat(BlockDriverState
*bs
, BDRVVHDXState
*s
,
1557 uint64_t image_size
, VHDXImageType type
,
1558 bool use_zero_blocks
, uint64_t file_offset
,
1562 uint64_t data_file_offset
;
1563 uint64_t total_sectors
= 0;
1564 uint64_t sector_num
= 0;
1567 VHDXSectorInfo sinfo
;
1569 assert(s
->bat
== NULL
);
1571 /* this gives a data start after BAT/bitmap entries, and well
1572 * past any metadata entries (with a 4 MB buffer for future
1574 data_file_offset
= file_offset
+ length
+ 5 * MiB
;
1575 total_sectors
= image_size
>> s
->logical_sector_size_bits
;
1577 if (type
== VHDX_TYPE_DYNAMIC
) {
1578 /* All zeroes, so we can just extend the file - the end of the BAT
1579 * is the furthest thing we have written yet */
1580 ret
= bdrv_truncate(bs
, data_file_offset
);
1584 } else if (type
== VHDX_TYPE_FIXED
) {
1585 ret
= bdrv_truncate(bs
, data_file_offset
+ image_size
);
1594 if (type
== VHDX_TYPE_FIXED
||
1596 bdrv_has_zero_init(bs
) == 0) {
1597 /* for a fixed file, the default BAT entry is not zero */
1598 s
->bat
= g_try_malloc0(length
);
1599 if (length
&& s
->bat
== NULL
) {
1603 block_state
= type
== VHDX_TYPE_FIXED
? PAYLOAD_BLOCK_FULLY_PRESENT
:
1604 PAYLOAD_BLOCK_NOT_PRESENT
;
1605 block_state
= use_zero_blocks
? PAYLOAD_BLOCK_ZERO
: block_state
;
1606 /* fill the BAT by emulating sector writes of sectors_per_block size */
1607 while (sector_num
< total_sectors
) {
1608 vhdx_block_translate(s
, sector_num
, s
->sectors_per_block
, &sinfo
);
1609 sinfo
.file_offset
= data_file_offset
+
1610 (sector_num
<< s
->logical_sector_size_bits
);
1611 sinfo
.file_offset
= ROUND_UP(sinfo
.file_offset
, MiB
);
1612 vhdx_update_bat_table_entry(bs
, s
, &sinfo
, &unused
, &unused
,
1614 cpu_to_le64s(&s
->bat
[sinfo
.bat_idx
]);
1615 sector_num
+= s
->sectors_per_block
;
1617 ret
= bdrv_pwrite(bs
, file_offset
, s
->bat
, length
);
1630 /* Creates the region table header, and region table entries.
1631 * There are 2 supported region table entries: BAT, and Metadata/
1633 * As the calculations for the BAT region table are also needed
1634 * to create the BAT itself, we will also cause the BAT to be
1637 static int vhdx_create_new_region_table(BlockDriverState
*bs
,
1638 uint64_t image_size
,
1639 uint32_t block_size
,
1640 uint32_t sector_size
,
1642 bool use_zero_blocks
,
1644 uint64_t *metadata_offset
)
1647 uint32_t offset
= 0;
1648 void *buffer
= NULL
;
1649 uint64_t bat_file_offset
;
1650 uint32_t bat_length
;
1651 BDRVVHDXState
*s
= NULL
;
1652 VHDXRegionTableHeader
*region_table
;
1653 VHDXRegionTableEntry
*rt_bat
;
1654 VHDXRegionTableEntry
*rt_metadata
;
1656 assert(metadata_offset
!= NULL
);
1658 /* Populate enough of the BDRVVHDXState to be able to use the
1659 * pre-existing BAT calculation, translation, and update functions */
1660 s
= g_new0(BDRVVHDXState
, 1);
1662 s
->chunk_ratio
= (VHDX_MAX_SECTORS_PER_BLOCK
) *
1663 (uint64_t) sector_size
/ (uint64_t) block_size
;
1665 s
->sectors_per_block
= block_size
/ sector_size
;
1666 s
->virtual_disk_size
= image_size
;
1667 s
->block_size
= block_size
;
1668 s
->logical_sector_size
= sector_size
;
1670 vhdx_set_shift_bits(s
);
1672 vhdx_calc_bat_entries(s
);
1674 /* At this point the VHDX state is populated enough for creation */
1676 /* a single buffer is used so we can calculate the checksum over the
1677 * entire 64KB block */
1678 buffer
= g_malloc0(VHDX_HEADER_BLOCK_SIZE
);
1679 region_table
= buffer
;
1680 offset
+= sizeof(VHDXRegionTableHeader
);
1681 rt_bat
= buffer
+ offset
;
1682 offset
+= sizeof(VHDXRegionTableEntry
);
1683 rt_metadata
= buffer
+ offset
;
1685 region_table
->signature
= VHDX_REGION_SIGNATURE
;
1686 region_table
->entry_count
= 2; /* BAT and Metadata */
1688 rt_bat
->guid
= bat_guid
;
1689 rt_bat
->length
= ROUND_UP(s
->bat_entries
* sizeof(VHDXBatEntry
), MiB
);
1690 rt_bat
->file_offset
= ROUND_UP(VHDX_HEADER_SECTION_END
+ log_size
, MiB
);
1691 s
->bat_offset
= rt_bat
->file_offset
;
1693 rt_metadata
->guid
= metadata_guid
;
1694 rt_metadata
->file_offset
= ROUND_UP(rt_bat
->file_offset
+ rt_bat
->length
,
1696 rt_metadata
->length
= 1 * MiB
; /* min size, and more than enough */
1697 *metadata_offset
= rt_metadata
->file_offset
;
1699 bat_file_offset
= rt_bat
->file_offset
;
1700 bat_length
= rt_bat
->length
;
1702 vhdx_region_header_le_export(region_table
);
1703 vhdx_region_entry_le_export(rt_bat
);
1704 vhdx_region_entry_le_export(rt_metadata
);
1706 vhdx_update_checksum(buffer
, VHDX_HEADER_BLOCK_SIZE
,
1707 offsetof(VHDXRegionTableHeader
, checksum
));
1710 /* The region table gives us the data we need to create the BAT,
1712 ret
= vhdx_create_bat(bs
, s
, image_size
, type
, use_zero_blocks
,
1713 bat_file_offset
, bat_length
);
1718 /* Now write out the region headers to disk */
1719 ret
= bdrv_pwrite(bs
, VHDX_REGION_TABLE_OFFSET
, buffer
,
1720 VHDX_HEADER_BLOCK_SIZE
);
1725 ret
= bdrv_pwrite(bs
, VHDX_REGION_TABLE2_OFFSET
, buffer
,
1726 VHDX_HEADER_BLOCK_SIZE
);
1737 /* We need to create the following elements:
1739 * .-----------------------------------------------------------------.
1740 * | (A) | (B) | (C) | (D) | (E) |
1741 * | File ID | Header1 | Header 2 | Region Tbl 1 | Region Tbl 2 |
1743 * .-----------------------------------------------------------------.
1744 * 0 64KB 128KB 192KB 256KB 320KB
1747 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1748 * | (F) | (G) | (H) | |
1749 * | Journal Log | BAT / Bitmap | Metadata | .... data ...... |
1751 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1754 static int vhdx_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1757 uint64_t image_size
= (uint64_t) 2 * GiB
;
1758 uint32_t log_size
= 1 * MiB
;
1759 uint32_t block_size
= 0;
1761 uint64_t metadata_offset
;
1762 bool use_zero_blocks
= false;
1764 gunichar2
*creator
= NULL
;
1765 glong creator_items
;
1766 BlockDriverState
*bs
;
1768 VHDXImageType image_type
;
1769 Error
*local_err
= NULL
;
1771 image_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1773 log_size
= qemu_opt_get_size_del(opts
, VHDX_BLOCK_OPT_LOG_SIZE
, 0);
1774 block_size
= qemu_opt_get_size_del(opts
, VHDX_BLOCK_OPT_BLOCK_SIZE
, 0);
1775 type
= qemu_opt_get_del(opts
, BLOCK_OPT_SUBFMT
);
1776 use_zero_blocks
= qemu_opt_get_bool_del(opts
, VHDX_BLOCK_OPT_ZERO
, false);
1778 if (image_size
> VHDX_MAX_IMAGE_SIZE
) {
1779 error_setg_errno(errp
, EINVAL
, "Image size too large; max of 64TB");
1785 type
= g_strdup("dynamic");
1788 if (!strcmp(type
, "dynamic")) {
1789 image_type
= VHDX_TYPE_DYNAMIC
;
1790 } else if (!strcmp(type
, "fixed")) {
1791 image_type
= VHDX_TYPE_FIXED
;
1792 } else if (!strcmp(type
, "differencing")) {
1793 error_setg_errno(errp
, ENOTSUP
,
1794 "Differencing files not yet supported");
1802 /* These are pretty arbitrary, and mainly designed to keep the BAT
1803 * size reasonable to load into RAM */
1804 if (block_size
== 0) {
1805 if (image_size
> 32 * TiB
) {
1806 block_size
= 64 * MiB
;
1807 } else if (image_size
> (uint64_t) 100 * GiB
) {
1808 block_size
= 32 * MiB
;
1809 } else if (image_size
> 1 * GiB
) {
1810 block_size
= 16 * MiB
;
1812 block_size
= 8 * MiB
;
1817 /* make the log size close to what was specified, but must be
1818 * min 1MB, and multiple of 1MB */
1819 log_size
= ROUND_UP(log_size
, MiB
);
1821 block_size
= ROUND_UP(block_size
, MiB
);
1822 block_size
= block_size
> VHDX_BLOCK_SIZE_MAX
? VHDX_BLOCK_SIZE_MAX
:
1825 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1827 error_propagate(errp
, local_err
);
1832 ret
= bdrv_open(&bs
, filename
, NULL
, NULL
, BDRV_O_RDWR
| BDRV_O_PROTOCOL
,
1835 error_propagate(errp
, local_err
);
1841 /* The creator field is optional, but may be useful for
1842 * debugging / diagnostics */
1843 creator
= g_utf8_to_utf16("QEMU v" QEMU_VERSION
, -1, NULL
,
1844 &creator_items
, NULL
);
1845 signature
= cpu_to_le64(VHDX_FILE_SIGNATURE
);
1846 ret
= bdrv_pwrite(bs
, VHDX_FILE_ID_OFFSET
, &signature
, sizeof(signature
));
1848 goto delete_and_exit
;
1851 ret
= bdrv_pwrite(bs
, VHDX_FILE_ID_OFFSET
+ sizeof(signature
),
1852 creator
, creator_items
* sizeof(gunichar2
));
1854 goto delete_and_exit
;
1859 /* Creates (B),(C) */
1860 ret
= vhdx_create_new_headers(bs
, image_size
, log_size
);
1862 goto delete_and_exit
;
1865 /* Creates (D),(E),(G) explicitly. (F) created as by-product */
1866 ret
= vhdx_create_new_region_table(bs
, image_size
, block_size
, 512,
1867 log_size
, use_zero_blocks
, image_type
,
1870 goto delete_and_exit
;
1874 ret
= vhdx_create_new_metadata(bs
, image_size
, block_size
, 512,
1875 metadata_offset
, image_type
);
1877 goto delete_and_exit
;
1889 /* If opened r/w, the VHDX driver will automatically replay the log,
1890 * if one is present, inside the vhdx_open() call.
1892 * If qemu-img check -r all is called, the image is automatically opened
1893 * r/w and any log has already been replayed, so there is nothing (currently)
1896 static int vhdx_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
1899 BDRVVHDXState
*s
= bs
->opaque
;
1901 if (s
->log_replayed_on_open
) {
1902 result
->corruptions_fixed
++;
1907 static QemuOptsList vhdx_create_opts
= {
1908 .name
= "vhdx-create-opts",
1909 .head
= QTAILQ_HEAD_INITIALIZER(vhdx_create_opts
.head
),
1912 .name
= BLOCK_OPT_SIZE
,
1913 .type
= QEMU_OPT_SIZE
,
1914 .help
= "Virtual disk size; max of 64TB."
1917 .name
= VHDX_BLOCK_OPT_LOG_SIZE
,
1918 .type
= QEMU_OPT_SIZE
,
1919 .def_value_str
= stringify(DEFAULT_LOG_SIZE
),
1920 .help
= "Log size; min 1MB."
1923 .name
= VHDX_BLOCK_OPT_BLOCK_SIZE
,
1924 .type
= QEMU_OPT_SIZE
,
1925 .def_value_str
= stringify(0),
1926 .help
= "Block Size; min 1MB, max 256MB. " \
1927 "0 means auto-calculate based on image size."
1930 .name
= BLOCK_OPT_SUBFMT
,
1931 .type
= QEMU_OPT_STRING
,
1932 .help
= "VHDX format type, can be either 'dynamic' or 'fixed'. "\
1933 "Default is 'dynamic'."
1936 .name
= VHDX_BLOCK_OPT_ZERO
,
1937 .type
= QEMU_OPT_BOOL
,
1938 .help
= "Force use of payload blocks of type 'ZERO'. Non-standard."
1944 static BlockDriver bdrv_vhdx
= {
1945 .format_name
= "vhdx",
1946 .instance_size
= sizeof(BDRVVHDXState
),
1947 .bdrv_probe
= vhdx_probe
,
1948 .bdrv_open
= vhdx_open
,
1949 .bdrv_close
= vhdx_close
,
1950 .bdrv_reopen_prepare
= vhdx_reopen_prepare
,
1951 .bdrv_co_readv
= vhdx_co_readv
,
1952 .bdrv_co_writev
= vhdx_co_writev
,
1953 .bdrv_create
= vhdx_create
,
1954 .bdrv_get_info
= vhdx_get_info
,
1955 .bdrv_check
= vhdx_check
,
1957 .create_opts
= &vhdx_create_opts
,
1960 static void bdrv_vhdx_init(void)
1962 bdrv_register(&bdrv_vhdx
);
1965 block_init(bdrv_vhdx_init
);