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/osdep.h"
19 #include "qapi/error.h"
20 #include "qemu-common.h"
21 #include "block/block_int.h"
22 #include "sysemu/block-backend.h"
23 #include "qemu/module.h"
24 #include "qemu/crc32c.h"
25 #include "qemu/bswap.h"
26 #include "block/vhdx.h"
27 #include "migration/migration.h"
28 #include "qemu/uuid.h"
30 /* Options for VHDX creation */
32 #define VHDX_BLOCK_OPT_LOG_SIZE "log_size"
33 #define VHDX_BLOCK_OPT_BLOCK_SIZE "block_size"
34 #define VHDX_BLOCK_OPT_ZERO "block_state_zero"
36 typedef enum VHDXImageType
{
37 VHDX_TYPE_DYNAMIC
= 0,
39 VHDX_TYPE_DIFFERENCING
, /* Currently unsupported */
42 /* Several metadata and region table data entries are identified by
43 * guids in a MS-specific GUID format. */
46 /* ------- Known Region Table GUIDs ---------------------- */
47 static const MSGUID bat_guid
= { .data1
= 0x2dc27766,
50 .data4
= { 0x9d, 0x64, 0x11, 0x5e,
51 0x9b, 0xfd, 0x4a, 0x08} };
53 static const MSGUID metadata_guid
= { .data1
= 0x8b7ca206,
56 .data4
= { 0xb8, 0xfe, 0x57, 0x5f,
57 0x05, 0x0f, 0x88, 0x6e} };
61 /* ------- Known Metadata Entry GUIDs ---------------------- */
62 static const MSGUID file_param_guid
= { .data1
= 0xcaa16737,
65 .data4
= { 0xb3, 0xb6, 0x33, 0xf0,
66 0xaa, 0x44, 0xe7, 0x6b} };
68 static const MSGUID virtual_size_guid
= { .data1
= 0x2FA54224,
71 .data4
= { 0xb2, 0x11, 0x5d, 0xbe,
72 0xd8, 0x3b, 0xf4, 0xb8} };
74 static const MSGUID page83_guid
= { .data1
= 0xbeca12ab,
77 .data4
= { 0x93, 0xef, 0xc3, 0x09,
78 0xe0, 0x00, 0xc7, 0x46} };
81 static const MSGUID phys_sector_guid
= { .data1
= 0xcda348c7,
84 .data4
= { 0x9c, 0xc9, 0xe9, 0x88,
85 0x52, 0x51, 0xc5, 0x56} };
87 static const MSGUID parent_locator_guid
= { .data1
= 0xa8d35f2d,
90 .data4
= { 0xab, 0xf7, 0xd3,
94 static const MSGUID logical_sector_guid
= { .data1
= 0x8141bf1d,
97 .data4
= { 0xba, 0x47, 0xf2,
101 /* Each parent type must have a valid GUID; this is for parent images
102 * of type 'VHDX'. If we were to allow e.g. a QCOW2 parent, we would
103 * need to make up our own QCOW2 GUID type */
104 static const MSGUID parent_vhdx_guid
__attribute__((unused
))
105 = { .data1
= 0xb04aefb7,
108 .data4
= { 0xb7, 0x89, 0x25, 0xb8,
109 0xe9, 0x44, 0x59, 0x13} };
112 #define META_FILE_PARAMETER_PRESENT 0x01
113 #define META_VIRTUAL_DISK_SIZE_PRESENT 0x02
114 #define META_PAGE_83_PRESENT 0x04
115 #define META_LOGICAL_SECTOR_SIZE_PRESENT 0x08
116 #define META_PHYS_SECTOR_SIZE_PRESENT 0x10
117 #define META_PARENT_LOCATOR_PRESENT 0x20
119 #define META_ALL_PRESENT \
120 (META_FILE_PARAMETER_PRESENT | META_VIRTUAL_DISK_SIZE_PRESENT | \
121 META_PAGE_83_PRESENT | META_LOGICAL_SECTOR_SIZE_PRESENT | \
122 META_PHYS_SECTOR_SIZE_PRESENT)
125 typedef struct VHDXSectorInfo
{
126 uint32_t bat_idx
; /* BAT entry index */
127 uint32_t sectors_avail
; /* sectors available in payload block */
128 uint32_t bytes_left
; /* bytes left in the block after data to r/w */
129 uint32_t bytes_avail
; /* bytes available in payload block */
130 uint64_t file_offset
; /* absolute offset in bytes, in file */
131 uint64_t block_offset
; /* block offset, in bytes */
134 /* Calculates new checksum.
136 * Zero is substituted during crc calculation for the original crc field
137 * crc_offset: byte offset in buf of the buffer crc
138 * buf: buffer pointer
139 * size: size of buffer (must be > crc_offset+4)
141 * Note: The buffer should have all multi-byte data in little-endian format,
142 * and the resulting checksum is in little endian format.
144 uint32_t vhdx_update_checksum(uint8_t *buf
, size_t size
, int crc_offset
)
149 assert(size
> (crc_offset
+ sizeof(crc
)));
151 memset(buf
+ crc_offset
, 0, sizeof(crc
));
152 crc
= crc32c(0xffffffff, buf
, size
);
154 memcpy(buf
+ crc_offset
, &crc
, sizeof(crc
));
159 uint32_t vhdx_checksum_calc(uint32_t crc
, uint8_t *buf
, size_t size
,
166 if (crc_offset
> 0) {
167 memcpy(&crc_orig
, buf
+ crc_offset
, sizeof(crc_orig
));
168 memset(buf
+ crc_offset
, 0, sizeof(crc_orig
));
171 crc_new
= crc32c(crc
, buf
, size
);
172 if (crc_offset
> 0) {
173 memcpy(buf
+ crc_offset
, &crc_orig
, sizeof(crc_orig
));
179 /* Validates the checksum of the buffer, with an in-place CRC.
181 * Zero is substituted during crc calculation for the original crc field,
182 * and the crc field is restored afterwards. But the buffer will be modifed
183 * during the calculation, so this may not be not suitable for multi-threaded
186 * crc_offset: byte offset in buf of the buffer crc
187 * buf: buffer pointer
188 * size: size of buffer (must be > crc_offset+4)
190 * returns true if checksum is valid, false otherwise
192 bool vhdx_checksum_is_valid(uint8_t *buf
, size_t size
, int crc_offset
)
198 assert(size
> (crc_offset
+ 4));
200 memcpy(&crc_orig
, buf
+ crc_offset
, sizeof(crc_orig
));
201 crc_orig
= le32_to_cpu(crc_orig
);
203 crc
= vhdx_checksum_calc(0xffffffff, buf
, size
, crc_offset
);
205 return crc
== crc_orig
;
210 * This generates a UUID that is compliant with the MS GUIDs used
211 * in the VHDX spec (and elsewhere).
213 void vhdx_guid_generate(MSGUID
*guid
)
216 assert(guid
!= NULL
);
218 qemu_uuid_generate(&uuid
);
219 memcpy(guid
, &uuid
, sizeof(MSGUID
));
222 /* Check for region overlaps inside the VHDX image */
223 static int vhdx_region_check(BDRVVHDXState
*s
, uint64_t start
, uint64_t length
)
229 end
= start
+ length
;
230 QLIST_FOREACH(r
, &s
->regions
, entries
) {
231 if (!((start
>= r
->end
) || (end
<= r
->start
))) {
241 /* Register a region for future checks */
242 static void vhdx_region_register(BDRVVHDXState
*s
,
243 uint64_t start
, uint64_t length
)
247 r
= g_malloc0(sizeof(*r
));
250 r
->end
= start
+ length
;
252 QLIST_INSERT_HEAD(&s
->regions
, r
, entries
);
255 /* Free all registered regions */
256 static void vhdx_region_unregister_all(BDRVVHDXState
*s
)
258 VHDXRegionEntry
*r
, *r_next
;
260 QLIST_FOREACH_SAFE(r
, &s
->regions
, entries
, r_next
) {
261 QLIST_REMOVE(r
, entries
);
266 static void vhdx_set_shift_bits(BDRVVHDXState
*s
)
268 s
->logical_sector_size_bits
= ctz32(s
->logical_sector_size
);
269 s
->sectors_per_block_bits
= ctz32(s
->sectors_per_block
);
270 s
->chunk_ratio_bits
= ctz64(s
->chunk_ratio
);
271 s
->block_size_bits
= ctz32(s
->block_size
);
275 * Per the MS VHDX Specification, for every VHDX file:
276 * - The header section is fixed size - 1 MB
277 * - The header section is always the first "object"
278 * - The first 64KB of the header is the File Identifier
279 * - The first uint64 (8 bytes) is the VHDX Signature ("vhdxfile")
280 * - The following 512 bytes constitute a UTF-16 string identifiying the
281 * software that created the file, and is optional and diagnostic only.
283 * Therefore, we probe by looking for the vhdxfile signature "vhdxfile"
285 static int vhdx_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
287 if (buf_size
>= 8 && !memcmp(buf
, "vhdxfile", 8)) {
294 * Writes the header to the specified offset.
296 * This will optionally read in buffer data from disk (otherwise zero-fill),
297 * and then update the header checksum. Header is converted to proper
298 * endianness before being written to the specified file offset
300 static int vhdx_write_header(BdrvChild
*file
, VHDXHeader
*hdr
,
301 uint64_t offset
, bool read
)
303 BlockDriverState
*bs_file
= file
->bs
;
304 uint8_t *buffer
= NULL
;
306 VHDXHeader
*header_le
;
308 assert(bs_file
!= NULL
);
311 /* the header checksum is not over just the packed size of VHDXHeader,
312 * but rather over the entire 'reserved' range for the header, which is
313 * 4KB (VHDX_HEADER_SIZE). */
315 buffer
= qemu_blockalign(bs_file
, VHDX_HEADER_SIZE
);
317 /* if true, we can't assume the extra reserved bytes are 0 */
318 ret
= bdrv_pread(file
, offset
, buffer
, VHDX_HEADER_SIZE
);
323 memset(buffer
, 0, VHDX_HEADER_SIZE
);
326 /* overwrite the actual VHDXHeader portion */
327 header_le
= (VHDXHeader
*)buffer
;
328 memcpy(header_le
, hdr
, sizeof(VHDXHeader
));
329 vhdx_header_le_export(hdr
, header_le
);
330 vhdx_update_checksum(buffer
, VHDX_HEADER_SIZE
,
331 offsetof(VHDXHeader
, checksum
));
332 ret
= bdrv_pwrite_sync(file
, offset
, header_le
, sizeof(VHDXHeader
));
339 /* Update the VHDX headers
341 * This follows the VHDX spec procedures for header updates.
343 * - non-current header is updated with largest sequence number
345 static int vhdx_update_header(BlockDriverState
*bs
, BDRVVHDXState
*s
,
346 bool generate_data_write_guid
, MSGUID
*log_guid
)
350 uint64_t header_offset
= VHDX_HEADER1_OFFSET
;
352 VHDXHeader
*active_header
;
353 VHDXHeader
*inactive_header
;
355 /* operate on the non-current header */
356 if (s
->curr_header
== 0) {
358 header_offset
= VHDX_HEADER2_OFFSET
;
361 active_header
= s
->headers
[s
->curr_header
];
362 inactive_header
= s
->headers
[hdr_idx
];
364 inactive_header
->sequence_number
= active_header
->sequence_number
+ 1;
366 /* a new file guid must be generated before any file write, including
368 inactive_header
->file_write_guid
= s
->session_guid
;
370 /* a new data guid only needs to be generated before any guest-visible
371 * writes (i.e. something observable via virtual disk read) */
372 if (generate_data_write_guid
) {
373 vhdx_guid_generate(&inactive_header
->data_write_guid
);
376 /* update the log guid if present */
378 inactive_header
->log_guid
= *log_guid
;
381 ret
= vhdx_write_header(bs
->file
, inactive_header
, header_offset
, true);
385 s
->curr_header
= hdr_idx
;
392 * The VHDX spec calls for header updates to be performed twice, so that both
393 * the current and non-current header have valid info
395 int vhdx_update_headers(BlockDriverState
*bs
, BDRVVHDXState
*s
,
396 bool generate_data_write_guid
, MSGUID
*log_guid
)
400 ret
= vhdx_update_header(bs
, s
, generate_data_write_guid
, log_guid
);
404 ret
= vhdx_update_header(bs
, s
, generate_data_write_guid
, log_guid
);
408 /* opens the specified header block from the VHDX file header section */
409 static void vhdx_parse_header(BlockDriverState
*bs
, BDRVVHDXState
*s
,
415 bool h1_valid
= false;
416 bool h2_valid
= false;
421 /* header1 & header2 are freed in vhdx_close() */
422 header1
= qemu_blockalign(bs
, sizeof(VHDXHeader
));
423 header2
= qemu_blockalign(bs
, sizeof(VHDXHeader
));
425 buffer
= qemu_blockalign(bs
, VHDX_HEADER_SIZE
);
427 s
->headers
[0] = header1
;
428 s
->headers
[1] = header2
;
430 /* We have to read the whole VHDX_HEADER_SIZE instead of
431 * sizeof(VHDXHeader), because the checksum is over the whole
433 ret
= bdrv_pread(bs
->file
, VHDX_HEADER1_OFFSET
, buffer
,
438 /* copy over just the relevant portion that we need */
439 memcpy(header1
, buffer
, sizeof(VHDXHeader
));
441 if (vhdx_checksum_is_valid(buffer
, VHDX_HEADER_SIZE
, 4)) {
442 vhdx_header_le_import(header1
);
443 if (header1
->signature
== VHDX_HEADER_SIGNATURE
&&
444 header1
->version
== 1) {
445 h1_seq
= header1
->sequence_number
;
450 ret
= bdrv_pread(bs
->file
, VHDX_HEADER2_OFFSET
, buffer
,
455 /* copy over just the relevant portion that we need */
456 memcpy(header2
, buffer
, sizeof(VHDXHeader
));
458 if (vhdx_checksum_is_valid(buffer
, VHDX_HEADER_SIZE
, 4)) {
459 vhdx_header_le_import(header2
);
460 if (header2
->signature
== VHDX_HEADER_SIGNATURE
&&
461 header2
->version
== 1) {
462 h2_seq
= header2
->sequence_number
;
467 /* If there is only 1 valid header (or no valid headers), we
468 * don't care what the sequence numbers are */
469 if (h1_valid
&& !h2_valid
) {
471 } else if (!h1_valid
&& h2_valid
) {
473 } else if (!h1_valid
&& !h2_valid
) {
476 /* If both headers are valid, then we choose the active one by the
477 * highest sequence number. If the sequence numbers are equal, that is
479 if (h1_seq
> h2_seq
) {
481 } else if (h2_seq
> h1_seq
) {
484 /* The Microsoft Disk2VHD tool will create 2 identical
485 * headers, with identical sequence numbers. If the headers are
486 * identical, don't consider the file corrupt */
487 if (!memcmp(header1
, header2
, sizeof(VHDXHeader
))) {
495 vhdx_region_register(s
, s
->headers
[s
->curr_header
]->log_offset
,
496 s
->headers
[s
->curr_header
]->log_length
);
500 error_setg_errno(errp
, -ret
, "No valid VHDX header found");
503 s
->headers
[0] = NULL
;
504 s
->headers
[1] = NULL
;
510 static int vhdx_open_region_tables(BlockDriverState
*bs
, BDRVVHDXState
*s
)
515 VHDXRegionTableEntry rt_entry
;
517 bool bat_rt_found
= false;
518 bool metadata_rt_found
= false;
520 /* We have to read the whole 64KB block, because the crc32 is over the
522 buffer
= qemu_blockalign(bs
, VHDX_HEADER_BLOCK_SIZE
);
524 ret
= bdrv_pread(bs
->file
, VHDX_REGION_TABLE_OFFSET
, buffer
,
525 VHDX_HEADER_BLOCK_SIZE
);
529 memcpy(&s
->rt
, buffer
, sizeof(s
->rt
));
530 offset
+= sizeof(s
->rt
);
532 if (!vhdx_checksum_is_valid(buffer
, VHDX_HEADER_BLOCK_SIZE
, 4)) {
537 vhdx_region_header_le_import(&s
->rt
);
539 if (s
->rt
.signature
!= VHDX_REGION_SIGNATURE
) {
545 /* Per spec, maximum region table entry count is 2047 */
546 if (s
->rt
.entry_count
> 2047) {
551 for (i
= 0; i
< s
->rt
.entry_count
; i
++) {
552 memcpy(&rt_entry
, buffer
+ offset
, sizeof(rt_entry
));
553 offset
+= sizeof(rt_entry
);
555 vhdx_region_entry_le_import(&rt_entry
);
557 /* check for region overlap between these entries, and any
558 * other memory regions in the file */
559 ret
= vhdx_region_check(s
, rt_entry
.file_offset
, rt_entry
.length
);
564 vhdx_region_register(s
, rt_entry
.file_offset
, rt_entry
.length
);
566 /* see if we recognize the entry */
567 if (guid_eq(rt_entry
.guid
, bat_guid
)) {
568 /* must be unique; if we have already found it this is invalid */
574 s
->bat_rt
= rt_entry
;
578 if (guid_eq(rt_entry
.guid
, metadata_guid
)) {
579 /* must be unique; if we have already found it this is invalid */
580 if (metadata_rt_found
) {
584 metadata_rt_found
= true;
585 s
->metadata_rt
= rt_entry
;
589 if (rt_entry
.data_bits
& VHDX_REGION_ENTRY_REQUIRED
) {
590 /* cannot read vhdx file - required region table entry that
591 * we do not understand. per spec, we must fail to open */
597 if (!bat_rt_found
|| !metadata_rt_found
) {
611 /* Metadata initial parser
613 * This loads all the metadata entry fields. This may cause additional
614 * fields to be processed (e.g. parent locator, etc..).
616 * There are 5 Metadata items that are always required:
617 * - File Parameters (block size, has a parent)
618 * - Virtual Disk Size (size, in bytes, of the virtual drive)
619 * - Page 83 Data (scsi page 83 guid)
620 * - Logical Sector Size (logical sector size in bytes, either 512 or
621 * 4096. We only support 512 currently)
622 * - Physical Sector Size (512 or 4096)
624 * Also, if the File Parameters indicate this is a differencing file,
625 * we must also look for the Parent Locator metadata item.
627 static int vhdx_parse_metadata(BlockDriverState
*bs
, BDRVVHDXState
*s
)
633 VHDXMetadataTableEntry md_entry
;
635 buffer
= qemu_blockalign(bs
, VHDX_METADATA_TABLE_MAX_SIZE
);
637 ret
= bdrv_pread(bs
->file
, s
->metadata_rt
.file_offset
, buffer
,
638 VHDX_METADATA_TABLE_MAX_SIZE
);
642 memcpy(&s
->metadata_hdr
, buffer
, sizeof(s
->metadata_hdr
));
643 offset
+= sizeof(s
->metadata_hdr
);
645 vhdx_metadata_header_le_import(&s
->metadata_hdr
);
647 if (s
->metadata_hdr
.signature
!= VHDX_METADATA_SIGNATURE
) {
652 s
->metadata_entries
.present
= 0;
654 if ((s
->metadata_hdr
.entry_count
* sizeof(md_entry
)) >
655 (VHDX_METADATA_TABLE_MAX_SIZE
- offset
)) {
660 for (i
= 0; i
< s
->metadata_hdr
.entry_count
; i
++) {
661 memcpy(&md_entry
, buffer
+ offset
, sizeof(md_entry
));
662 offset
+= sizeof(md_entry
);
664 vhdx_metadata_entry_le_import(&md_entry
);
666 if (guid_eq(md_entry
.item_id
, file_param_guid
)) {
667 if (s
->metadata_entries
.present
& META_FILE_PARAMETER_PRESENT
) {
671 s
->metadata_entries
.file_parameters_entry
= md_entry
;
672 s
->metadata_entries
.present
|= META_FILE_PARAMETER_PRESENT
;
676 if (guid_eq(md_entry
.item_id
, virtual_size_guid
)) {
677 if (s
->metadata_entries
.present
& META_VIRTUAL_DISK_SIZE_PRESENT
) {
681 s
->metadata_entries
.virtual_disk_size_entry
= md_entry
;
682 s
->metadata_entries
.present
|= META_VIRTUAL_DISK_SIZE_PRESENT
;
686 if (guid_eq(md_entry
.item_id
, page83_guid
)) {
687 if (s
->metadata_entries
.present
& META_PAGE_83_PRESENT
) {
691 s
->metadata_entries
.page83_data_entry
= md_entry
;
692 s
->metadata_entries
.present
|= META_PAGE_83_PRESENT
;
696 if (guid_eq(md_entry
.item_id
, logical_sector_guid
)) {
697 if (s
->metadata_entries
.present
&
698 META_LOGICAL_SECTOR_SIZE_PRESENT
) {
702 s
->metadata_entries
.logical_sector_size_entry
= md_entry
;
703 s
->metadata_entries
.present
|= META_LOGICAL_SECTOR_SIZE_PRESENT
;
707 if (guid_eq(md_entry
.item_id
, phys_sector_guid
)) {
708 if (s
->metadata_entries
.present
& META_PHYS_SECTOR_SIZE_PRESENT
) {
712 s
->metadata_entries
.phys_sector_size_entry
= md_entry
;
713 s
->metadata_entries
.present
|= META_PHYS_SECTOR_SIZE_PRESENT
;
717 if (guid_eq(md_entry
.item_id
, parent_locator_guid
)) {
718 if (s
->metadata_entries
.present
& META_PARENT_LOCATOR_PRESENT
) {
722 s
->metadata_entries
.parent_locator_entry
= md_entry
;
723 s
->metadata_entries
.present
|= META_PARENT_LOCATOR_PRESENT
;
727 if (md_entry
.data_bits
& VHDX_META_FLAGS_IS_REQUIRED
) {
728 /* cannot read vhdx file - required region table entry that
729 * we do not understand. per spec, we must fail to open */
735 if (s
->metadata_entries
.present
!= META_ALL_PRESENT
) {
740 ret
= bdrv_pread(bs
->file
,
741 s
->metadata_entries
.file_parameters_entry
.offset
742 + s
->metadata_rt
.file_offset
,
750 le32_to_cpus(&s
->params
.block_size
);
751 le32_to_cpus(&s
->params
.data_bits
);
754 /* We now have the file parameters, so we can tell if this is a
755 * differencing file (i.e.. has_parent), is dynamic or fixed
756 * sized (leave_blocks_allocated), and the block size */
758 /* The parent locator required iff the file parameters has_parent set */
759 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
760 if (s
->metadata_entries
.present
& META_PARENT_LOCATOR_PRESENT
) {
761 /* TODO: parse parent locator fields */
762 ret
= -ENOTSUP
; /* temp, until differencing files are supported */
765 /* if has_parent is set, but there is not parent locator present,
766 * then that is an invalid combination */
772 /* determine virtual disk size, logical sector size,
773 * and phys sector size */
775 ret
= bdrv_pread(bs
->file
,
776 s
->metadata_entries
.virtual_disk_size_entry
.offset
777 + s
->metadata_rt
.file_offset
,
778 &s
->virtual_disk_size
,
783 ret
= bdrv_pread(bs
->file
,
784 s
->metadata_entries
.logical_sector_size_entry
.offset
785 + s
->metadata_rt
.file_offset
,
786 &s
->logical_sector_size
,
791 ret
= bdrv_pread(bs
->file
,
792 s
->metadata_entries
.phys_sector_size_entry
.offset
793 + s
->metadata_rt
.file_offset
,
794 &s
->physical_sector_size
,
800 le64_to_cpus(&s
->virtual_disk_size
);
801 le32_to_cpus(&s
->logical_sector_size
);
802 le32_to_cpus(&s
->physical_sector_size
);
804 if (s
->params
.block_size
< VHDX_BLOCK_SIZE_MIN
||
805 s
->params
.block_size
> VHDX_BLOCK_SIZE_MAX
) {
810 /* only 2 supported sector sizes */
811 if (s
->logical_sector_size
!= 512 && s
->logical_sector_size
!= 4096) {
816 /* Both block_size and sector_size are guaranteed powers of 2, below.
817 Due to range checks above, s->sectors_per_block can never be < 256 */
818 s
->sectors_per_block
= s
->params
.block_size
/ s
->logical_sector_size
;
819 s
->chunk_ratio
= (VHDX_MAX_SECTORS_PER_BLOCK
) *
820 (uint64_t)s
->logical_sector_size
/
821 (uint64_t)s
->params
.block_size
;
823 /* These values are ones we will want to use for division / multiplication
824 * later on, and they are all guaranteed (per the spec) to be powers of 2,
825 * so we can take advantage of that for shift operations during
827 if (s
->logical_sector_size
& (s
->logical_sector_size
- 1)) {
831 if (s
->sectors_per_block
& (s
->sectors_per_block
- 1)) {
835 if (s
->chunk_ratio
& (s
->chunk_ratio
- 1)) {
839 s
->block_size
= s
->params
.block_size
;
840 if (s
->block_size
& (s
->block_size
- 1)) {
845 vhdx_set_shift_bits(s
);
855 * Calculate the number of BAT entries, including sector
858 static void vhdx_calc_bat_entries(BDRVVHDXState
*s
)
860 uint32_t data_blocks_cnt
, bitmap_blocks_cnt
;
862 data_blocks_cnt
= DIV_ROUND_UP(s
->virtual_disk_size
, s
->block_size
);
863 bitmap_blocks_cnt
= DIV_ROUND_UP(data_blocks_cnt
, s
->chunk_ratio
);
865 if (s
->parent_entries
) {
866 s
->bat_entries
= bitmap_blocks_cnt
* (s
->chunk_ratio
+ 1);
868 s
->bat_entries
= data_blocks_cnt
+
869 ((data_blocks_cnt
- 1) >> s
->chunk_ratio_bits
);
874 static void vhdx_close(BlockDriverState
*bs
)
876 BDRVVHDXState
*s
= bs
->opaque
;
877 qemu_vfree(s
->headers
[0]);
878 s
->headers
[0] = NULL
;
879 qemu_vfree(s
->headers
[1]);
880 s
->headers
[1] = NULL
;
883 qemu_vfree(s
->parent_entries
);
884 s
->parent_entries
= NULL
;
885 migrate_del_blocker(s
->migration_blocker
);
886 error_free(s
->migration_blocker
);
887 qemu_vfree(s
->log
.hdr
);
889 vhdx_region_unregister_all(s
);
892 static int vhdx_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
895 BDRVVHDXState
*s
= bs
->opaque
;
899 Error
*local_err
= NULL
;
902 s
->first_visible_write
= true;
904 qemu_co_mutex_init(&s
->lock
);
905 QLIST_INIT(&s
->regions
);
907 /* validate the file signature */
908 ret
= bdrv_pread(bs
->file
, 0, &signature
, sizeof(uint64_t));
912 if (memcmp(&signature
, "vhdxfile", 8)) {
917 /* This is used for any header updates, for the file_write_guid.
918 * The spec dictates that a new value should be used for the first
920 vhdx_guid_generate(&s
->session_guid
);
922 vhdx_parse_header(bs
, s
, &local_err
);
923 if (local_err
!= NULL
) {
924 error_propagate(errp
, local_err
);
929 ret
= vhdx_parse_log(bs
, s
, &s
->log_replayed_on_open
, errp
);
934 ret
= vhdx_open_region_tables(bs
, s
);
939 ret
= vhdx_parse_metadata(bs
, s
);
944 s
->block_size
= s
->params
.block_size
;
946 /* the VHDX spec dictates that virtual_disk_size is always a multiple of
947 * logical_sector_size */
948 bs
->total_sectors
= s
->virtual_disk_size
>> s
->logical_sector_size_bits
;
950 vhdx_calc_bat_entries(s
);
952 s
->bat_offset
= s
->bat_rt
.file_offset
;
954 if (s
->bat_entries
> s
->bat_rt
.length
/ sizeof(VHDXBatEntry
)) {
955 /* BAT allocation is not large enough for all entries */
960 /* s->bat is freed in vhdx_close() */
961 s
->bat
= qemu_try_blockalign(bs
->file
->bs
, s
->bat_rt
.length
);
962 if (s
->bat
== NULL
) {
967 ret
= bdrv_pread(bs
->file
, s
->bat_offset
, s
->bat
, s
->bat_rt
.length
);
972 uint64_t payblocks
= s
->chunk_ratio
;
973 /* endian convert, and verify populated BAT field file offsets against
974 * region table and log entries */
975 for (i
= 0; i
< s
->bat_entries
; i
++) {
976 le64_to_cpus(&s
->bat
[i
]);
978 /* payload bat entries */
979 if ((s
->bat
[i
] & VHDX_BAT_STATE_BIT_MASK
) ==
980 PAYLOAD_BLOCK_FULLY_PRESENT
) {
981 ret
= vhdx_region_check(s
, s
->bat
[i
] & VHDX_BAT_FILE_OFF_MASK
,
988 payblocks
= s
->chunk_ratio
;
989 /* Once differencing files are supported, verify sector bitmap
994 /* Disable migration when VHDX images are used */
995 error_setg(&s
->migration_blocker
, "The vhdx format used by node '%s' "
996 "does not support live migration",
997 bdrv_get_device_or_node_name(bs
));
998 ret
= migrate_add_blocker(s
->migration_blocker
, &local_err
);
1000 error_propagate(errp
, local_err
);
1001 error_free(s
->migration_blocker
);
1005 if (flags
& BDRV_O_RDWR
) {
1006 ret
= vhdx_update_headers(bs
, s
, false, NULL
);
1012 /* TODO: differencing files */
1020 static int vhdx_reopen_prepare(BDRVReopenState
*state
,
1021 BlockReopenQueue
*queue
, Error
**errp
)
1028 * Perform sector to block offset translations, to get various
1029 * sector and file offsets into the image. See VHDXSectorInfo
1031 static void vhdx_block_translate(BDRVVHDXState
*s
, int64_t sector_num
,
1032 int nb_sectors
, VHDXSectorInfo
*sinfo
)
1034 uint32_t block_offset
;
1036 sinfo
->bat_idx
= sector_num
>> s
->sectors_per_block_bits
;
1037 /* effectively a modulo - this gives us the offset into the block
1038 * (in sector sizes) for our sector number */
1039 block_offset
= sector_num
- (sinfo
->bat_idx
<< s
->sectors_per_block_bits
);
1040 /* the chunk ratio gives us the interleaving of the sector
1041 * bitmaps, so we need to advance our page block index by the
1042 * sector bitmaps entry number */
1043 sinfo
->bat_idx
+= sinfo
->bat_idx
>> s
->chunk_ratio_bits
;
1045 /* the number of sectors we can read/write in this cycle */
1046 sinfo
->sectors_avail
= s
->sectors_per_block
- block_offset
;
1048 sinfo
->bytes_left
= sinfo
->sectors_avail
<< s
->logical_sector_size_bits
;
1050 if (sinfo
->sectors_avail
> nb_sectors
) {
1051 sinfo
->sectors_avail
= nb_sectors
;
1054 sinfo
->bytes_avail
= sinfo
->sectors_avail
<< s
->logical_sector_size_bits
;
1056 sinfo
->file_offset
= s
->bat
[sinfo
->bat_idx
] & VHDX_BAT_FILE_OFF_MASK
;
1058 sinfo
->block_offset
= block_offset
<< s
->logical_sector_size_bits
;
1060 /* The file offset must be past the header section, so must be > 0 */
1061 if (sinfo
->file_offset
== 0) {
1065 /* block offset is the offset in vhdx logical sectors, in
1066 * the payload data block. Convert that to a byte offset
1067 * in the block, and add in the payload data block offset
1068 * in the file, in bytes, to get the final read address */
1070 sinfo
->file_offset
+= sinfo
->block_offset
;
1074 static int vhdx_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1076 BDRVVHDXState
*s
= bs
->opaque
;
1078 bdi
->cluster_size
= s
->block_size
;
1080 bdi
->unallocated_blocks_are_zero
=
1081 (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) == 0;
1087 static coroutine_fn
int vhdx_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
1088 int nb_sectors
, QEMUIOVector
*qiov
)
1090 BDRVVHDXState
*s
= bs
->opaque
;
1092 VHDXSectorInfo sinfo
;
1093 uint64_t bytes_done
= 0;
1094 QEMUIOVector hd_qiov
;
1096 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
1098 qemu_co_mutex_lock(&s
->lock
);
1100 while (nb_sectors
> 0) {
1101 /* We are a differencing file, so we need to inspect the sector bitmap
1102 * to see if we have the data or not */
1103 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
1104 /* not supported yet */
1108 vhdx_block_translate(s
, sector_num
, nb_sectors
, &sinfo
);
1110 qemu_iovec_reset(&hd_qiov
);
1111 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
, sinfo
.bytes_avail
);
1113 /* check the payload block state */
1114 switch (s
->bat
[sinfo
.bat_idx
] & VHDX_BAT_STATE_BIT_MASK
) {
1115 case PAYLOAD_BLOCK_NOT_PRESENT
: /* fall through */
1116 case PAYLOAD_BLOCK_UNDEFINED
:
1117 case PAYLOAD_BLOCK_UNMAPPED
:
1118 case PAYLOAD_BLOCK_UNMAPPED_v095
:
1119 case PAYLOAD_BLOCK_ZERO
:
1121 qemu_iovec_memset(&hd_qiov
, 0, 0, sinfo
.bytes_avail
);
1123 case PAYLOAD_BLOCK_FULLY_PRESENT
:
1124 qemu_co_mutex_unlock(&s
->lock
);
1125 ret
= bdrv_co_readv(bs
->file
,
1126 sinfo
.file_offset
>> BDRV_SECTOR_BITS
,
1127 sinfo
.sectors_avail
, &hd_qiov
);
1128 qemu_co_mutex_lock(&s
->lock
);
1133 case PAYLOAD_BLOCK_PARTIALLY_PRESENT
:
1134 /* we don't yet support difference files, fall through
1141 nb_sectors
-= sinfo
.sectors_avail
;
1142 sector_num
+= sinfo
.sectors_avail
;
1143 bytes_done
+= sinfo
.bytes_avail
;
1148 qemu_co_mutex_unlock(&s
->lock
);
1149 qemu_iovec_destroy(&hd_qiov
);
1154 * Allocate a new payload block at the end of the file.
1156 * Allocation will happen at 1MB alignment inside the file
1158 * Returns the file offset start of the new payload block
1160 static int vhdx_allocate_block(BlockDriverState
*bs
, BDRVVHDXState
*s
,
1161 uint64_t *new_offset
)
1163 *new_offset
= bdrv_getlength(bs
->file
->bs
);
1165 /* per the spec, the address for a block is in units of 1MB */
1166 *new_offset
= ROUND_UP(*new_offset
, 1024 * 1024);
1168 return bdrv_truncate(bs
->file
->bs
, *new_offset
+ s
->block_size
);
1172 * Update the BAT table entry with the new file offset, and the new entry
1174 static void vhdx_update_bat_table_entry(BlockDriverState
*bs
, BDRVVHDXState
*s
,
1175 VHDXSectorInfo
*sinfo
,
1176 uint64_t *bat_entry_le
,
1177 uint64_t *bat_offset
, int state
)
1179 /* The BAT entry is a uint64, with 44 bits for the file offset in units of
1180 * 1MB, and 3 bits for the block state. */
1181 if ((state
== PAYLOAD_BLOCK_ZERO
) ||
1182 (state
== PAYLOAD_BLOCK_UNDEFINED
) ||
1183 (state
== PAYLOAD_BLOCK_NOT_PRESENT
) ||
1184 (state
== PAYLOAD_BLOCK_UNMAPPED
)) {
1185 s
->bat
[sinfo
->bat_idx
] = 0; /* For PAYLOAD_BLOCK_ZERO, the
1186 FileOffsetMB field is denoted as
1187 'reserved' in the v1.0 spec. If it is
1188 non-zero, MS Hyper-V will fail to read
1191 s
->bat
[sinfo
->bat_idx
] = sinfo
->file_offset
;
1194 s
->bat
[sinfo
->bat_idx
] |= state
& VHDX_BAT_STATE_BIT_MASK
;
1196 *bat_entry_le
= cpu_to_le64(s
->bat
[sinfo
->bat_idx
]);
1197 *bat_offset
= s
->bat_offset
+ sinfo
->bat_idx
* sizeof(VHDXBatEntry
);
1201 /* Per the spec, on the first write of guest-visible data to the file the
1202 * data write guid must be updated in the header */
1203 int vhdx_user_visible_write(BlockDriverState
*bs
, BDRVVHDXState
*s
)
1206 if (s
->first_visible_write
) {
1207 s
->first_visible_write
= false;
1208 ret
= vhdx_update_headers(bs
, s
, true, NULL
);
1213 static coroutine_fn
int vhdx_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
1214 int nb_sectors
, QEMUIOVector
*qiov
)
1217 BDRVVHDXState
*s
= bs
->opaque
;
1218 VHDXSectorInfo sinfo
;
1219 uint64_t bytes_done
= 0;
1220 uint64_t bat_entry
= 0;
1221 uint64_t bat_entry_offset
= 0;
1222 QEMUIOVector hd_qiov
;
1223 struct iovec iov1
= { 0 };
1224 struct iovec iov2
= { 0 };
1225 int sectors_to_write
;
1227 uint64_t bat_prior_offset
= 0;
1228 bool bat_update
= false;
1230 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
1232 qemu_co_mutex_lock(&s
->lock
);
1234 ret
= vhdx_user_visible_write(bs
, s
);
1239 while (nb_sectors
> 0) {
1240 bool use_zero_buffers
= false;
1242 if (s
->params
.data_bits
& VHDX_PARAMS_HAS_PARENT
) {
1243 /* not supported yet */
1247 vhdx_block_translate(s
, sector_num
, nb_sectors
, &sinfo
);
1248 sectors_to_write
= sinfo
.sectors_avail
;
1250 qemu_iovec_reset(&hd_qiov
);
1251 /* check the payload block state */
1252 bat_state
= s
->bat
[sinfo
.bat_idx
] & VHDX_BAT_STATE_BIT_MASK
;
1253 switch (bat_state
) {
1254 case PAYLOAD_BLOCK_ZERO
:
1255 /* in this case, we need to preserve zero writes for
1256 * data that is not part of this write, so we must pad
1257 * the rest of the buffer to zeroes */
1259 /* if we are on a posix system with ftruncate() that extends
1260 * a file, then it is zero-filled for us. On Win32, the raw
1261 * layer uses SetFilePointer and SetFileEnd, which does not
1262 * zero fill AFAIK */
1264 /* Queue another write of zero buffers if the underlying file
1265 * does not zero-fill on file extension */
1267 if (bdrv_has_zero_init(bs
->file
->bs
) == 0) {
1268 use_zero_buffers
= true;
1270 /* zero fill the front, if any */
1271 if (sinfo
.block_offset
) {
1272 iov1
.iov_len
= sinfo
.block_offset
;
1273 iov1
.iov_base
= qemu_blockalign(bs
, iov1
.iov_len
);
1274 memset(iov1
.iov_base
, 0, iov1
.iov_len
);
1275 qemu_iovec_concat_iov(&hd_qiov
, &iov1
, 1, 0,
1277 sectors_to_write
+= iov1
.iov_len
>> BDRV_SECTOR_BITS
;
1280 /* our actual data */
1281 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
,
1284 /* zero fill the back, if any */
1285 if ((sinfo
.bytes_avail
- sinfo
.block_offset
) <
1287 iov2
.iov_len
= s
->block_size
-
1288 (sinfo
.bytes_avail
+ sinfo
.block_offset
);
1289 iov2
.iov_base
= qemu_blockalign(bs
, iov2
.iov_len
);
1290 memset(iov2
.iov_base
, 0, iov2
.iov_len
);
1291 qemu_iovec_concat_iov(&hd_qiov
, &iov2
, 1, 0,
1293 sectors_to_write
+= iov2
.iov_len
>> BDRV_SECTOR_BITS
;
1297 case PAYLOAD_BLOCK_NOT_PRESENT
: /* fall through */
1298 case PAYLOAD_BLOCK_UNMAPPED
:
1299 case PAYLOAD_BLOCK_UNMAPPED_v095
:
1300 case PAYLOAD_BLOCK_UNDEFINED
:
1301 bat_prior_offset
= sinfo
.file_offset
;
1302 ret
= vhdx_allocate_block(bs
, s
, &sinfo
.file_offset
);
1306 /* once we support differencing files, this may also be
1307 * partially present */
1308 /* update block state to the newly specified state */
1309 vhdx_update_bat_table_entry(bs
, s
, &sinfo
, &bat_entry
,
1311 PAYLOAD_BLOCK_FULLY_PRESENT
);
1313 /* since we just allocated a block, file_offset is the
1314 * beginning of the payload block. It needs to be the
1315 * write address, which includes the offset into the block */
1316 if (!use_zero_buffers
) {
1317 sinfo
.file_offset
+= sinfo
.block_offset
;
1320 case PAYLOAD_BLOCK_FULLY_PRESENT
:
1321 /* if the file offset address is in the header zone,
1322 * there is a problem */
1323 if (sinfo
.file_offset
< (1024 * 1024)) {
1325 goto error_bat_restore
;
1328 if (!use_zero_buffers
) {
1329 qemu_iovec_concat(&hd_qiov
, qiov
, bytes_done
,
1332 /* block exists, so we can just overwrite it */
1333 qemu_co_mutex_unlock(&s
->lock
);
1334 ret
= bdrv_co_writev(bs
->file
,
1335 sinfo
.file_offset
>> BDRV_SECTOR_BITS
,
1336 sectors_to_write
, &hd_qiov
);
1337 qemu_co_mutex_lock(&s
->lock
);
1339 goto error_bat_restore
;
1342 case PAYLOAD_BLOCK_PARTIALLY_PRESENT
:
1343 /* we don't yet support difference files, fall through
1352 /* this will update the BAT entry into the log journal, and
1353 * then flush the log journal out to disk */
1354 ret
= vhdx_log_write_and_flush(bs
, s
, &bat_entry
,
1355 sizeof(VHDXBatEntry
),
1362 nb_sectors
-= sinfo
.sectors_avail
;
1363 sector_num
+= sinfo
.sectors_avail
;
1364 bytes_done
+= sinfo
.bytes_avail
;
1373 /* keep metadata in sync, and restore the bat entry state
1375 sinfo
.file_offset
= bat_prior_offset
;
1376 vhdx_update_bat_table_entry(bs
, s
, &sinfo
, &bat_entry
,
1377 &bat_entry_offset
, bat_state
);
1380 qemu_vfree(iov1
.iov_base
);
1381 qemu_vfree(iov2
.iov_base
);
1382 qemu_co_mutex_unlock(&s
->lock
);
1383 qemu_iovec_destroy(&hd_qiov
);
1390 * Create VHDX Headers
1392 * There are 2 headers, and the highest sequence number will represent
1395 static int vhdx_create_new_headers(BlockBackend
*blk
, uint64_t image_size
,
1398 BlockDriverState
*bs
= blk_bs(blk
);
1401 VHDXHeader
*hdr
= NULL
;
1403 hdr
= g_new0(VHDXHeader
, 1);
1405 hdr
->signature
= VHDX_HEADER_SIGNATURE
;
1406 hdr
->sequence_number
= g_random_int();
1407 hdr
->log_version
= 0;
1409 hdr
->log_length
= log_size
;
1410 hdr
->log_offset
= VHDX_HEADER_SECTION_END
;
1411 vhdx_guid_generate(&hdr
->file_write_guid
);
1412 vhdx_guid_generate(&hdr
->data_write_guid
);
1414 /* XXX Ugly way to get blk->root, but that's a feature, not a bug. This
1415 * hack makes it obvious that vhdx_write_header() bypasses the BlockBackend
1416 * here, which it really shouldn't be doing. */
1417 child
= QLIST_FIRST(&bs
->parents
);
1418 assert(!QLIST_NEXT(child
, next_parent
));
1420 ret
= vhdx_write_header(child
, hdr
, VHDX_HEADER1_OFFSET
, false);
1424 hdr
->sequence_number
++;
1425 ret
= vhdx_write_header(child
, hdr
, VHDX_HEADER2_OFFSET
, false);
1435 #define VHDX_METADATA_ENTRY_BUFFER_SIZE \
1436 (sizeof(VHDXFileParameters) +\
1437 sizeof(VHDXVirtualDiskSize) +\
1438 sizeof(VHDXPage83Data) +\
1439 sizeof(VHDXVirtualDiskLogicalSectorSize) +\
1440 sizeof(VHDXVirtualDiskPhysicalSectorSize))
1443 * Create the Metadata entries.
1445 * For more details on the entries, see section 3.5 (pg 29) in the
1446 * VHDX 1.00 specification.
1448 * We support 5 metadata entries (all required by spec):
1450 * Virtual Disk Size,
1452 * Logical Sector Size,
1453 * Physical Sector Size
1455 * The first 64KB of the Metadata section is reserved for the metadata
1456 * header and entries; beyond that, the metadata items themselves reside.
1458 static int vhdx_create_new_metadata(BlockBackend
*blk
,
1459 uint64_t image_size
,
1460 uint32_t block_size
,
1461 uint32_t sector_size
,
1462 uint64_t metadata_offset
,
1466 uint32_t offset
= 0;
1467 void *buffer
= NULL
;
1469 VHDXMetadataTableHeader
*md_table
;
1470 VHDXMetadataTableEntry
*md_table_entry
;
1472 /* Metadata entries */
1473 VHDXFileParameters
*mt_file_params
;
1474 VHDXVirtualDiskSize
*mt_virtual_size
;
1475 VHDXPage83Data
*mt_page83
;
1476 VHDXVirtualDiskLogicalSectorSize
*mt_log_sector_size
;
1477 VHDXVirtualDiskPhysicalSectorSize
*mt_phys_sector_size
;
1479 entry_buffer
= g_malloc0(VHDX_METADATA_ENTRY_BUFFER_SIZE
);
1481 mt_file_params
= entry_buffer
;
1482 offset
+= sizeof(VHDXFileParameters
);
1483 mt_virtual_size
= entry_buffer
+ offset
;
1484 offset
+= sizeof(VHDXVirtualDiskSize
);
1485 mt_page83
= entry_buffer
+ offset
;
1486 offset
+= sizeof(VHDXPage83Data
);
1487 mt_log_sector_size
= entry_buffer
+ offset
;
1488 offset
+= sizeof(VHDXVirtualDiskLogicalSectorSize
);
1489 mt_phys_sector_size
= entry_buffer
+ offset
;
1491 mt_file_params
->block_size
= cpu_to_le32(block_size
);
1492 if (type
== VHDX_TYPE_FIXED
) {
1493 mt_file_params
->data_bits
|= VHDX_PARAMS_LEAVE_BLOCKS_ALLOCED
;
1494 cpu_to_le32s(&mt_file_params
->data_bits
);
1497 vhdx_guid_generate(&mt_page83
->page_83_data
);
1498 cpu_to_leguids(&mt_page83
->page_83_data
);
1499 mt_virtual_size
->virtual_disk_size
= cpu_to_le64(image_size
);
1500 mt_log_sector_size
->logical_sector_size
= cpu_to_le32(sector_size
);
1501 mt_phys_sector_size
->physical_sector_size
= cpu_to_le32(sector_size
);
1503 buffer
= g_malloc0(VHDX_HEADER_BLOCK_SIZE
);
1506 md_table
->signature
= VHDX_METADATA_SIGNATURE
;
1507 md_table
->entry_count
= 5;
1508 vhdx_metadata_header_le_export(md_table
);
1511 /* This will reference beyond the reserved table portion */
1514 md_table_entry
= buffer
+ sizeof(VHDXMetadataTableHeader
);
1516 md_table_entry
[0].item_id
= file_param_guid
;
1517 md_table_entry
[0].offset
= offset
;
1518 md_table_entry
[0].length
= sizeof(VHDXFileParameters
);
1519 md_table_entry
[0].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
;
1520 offset
+= md_table_entry
[0].length
;
1521 vhdx_metadata_entry_le_export(&md_table_entry
[0]);
1523 md_table_entry
[1].item_id
= virtual_size_guid
;
1524 md_table_entry
[1].offset
= offset
;
1525 md_table_entry
[1].length
= sizeof(VHDXVirtualDiskSize
);
1526 md_table_entry
[1].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1527 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1528 offset
+= md_table_entry
[1].length
;
1529 vhdx_metadata_entry_le_export(&md_table_entry
[1]);
1531 md_table_entry
[2].item_id
= page83_guid
;
1532 md_table_entry
[2].offset
= offset
;
1533 md_table_entry
[2].length
= sizeof(VHDXPage83Data
);
1534 md_table_entry
[2].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1535 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1536 offset
+= md_table_entry
[2].length
;
1537 vhdx_metadata_entry_le_export(&md_table_entry
[2]);
1539 md_table_entry
[3].item_id
= logical_sector_guid
;
1540 md_table_entry
[3].offset
= offset
;
1541 md_table_entry
[3].length
= sizeof(VHDXVirtualDiskLogicalSectorSize
);
1542 md_table_entry
[3].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1543 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1544 offset
+= md_table_entry
[3].length
;
1545 vhdx_metadata_entry_le_export(&md_table_entry
[3]);
1547 md_table_entry
[4].item_id
= phys_sector_guid
;
1548 md_table_entry
[4].offset
= offset
;
1549 md_table_entry
[4].length
= sizeof(VHDXVirtualDiskPhysicalSectorSize
);
1550 md_table_entry
[4].data_bits
|= VHDX_META_FLAGS_IS_REQUIRED
|
1551 VHDX_META_FLAGS_IS_VIRTUAL_DISK
;
1552 vhdx_metadata_entry_le_export(&md_table_entry
[4]);
1554 ret
= blk_pwrite(blk
, metadata_offset
, buffer
, VHDX_HEADER_BLOCK_SIZE
, 0);
1559 ret
= blk_pwrite(blk
, metadata_offset
+ (64 * KiB
), entry_buffer
,
1560 VHDX_METADATA_ENTRY_BUFFER_SIZE
, 0);
1568 g_free(entry_buffer
);
1572 /* This create the actual BAT itself. We currently only support
1573 * 'Dynamic' and 'Fixed' image types.
1575 * Dynamic images: default state of the BAT is all zeroes.
1577 * Fixed images: default state of the BAT is fully populated, with
1578 * file offsets and state PAYLOAD_BLOCK_FULLY_PRESENT.
1580 static int vhdx_create_bat(BlockBackend
*blk
, BDRVVHDXState
*s
,
1581 uint64_t image_size
, VHDXImageType type
,
1582 bool use_zero_blocks
, uint64_t file_offset
,
1586 uint64_t data_file_offset
;
1587 uint64_t total_sectors
= 0;
1588 uint64_t sector_num
= 0;
1591 VHDXSectorInfo sinfo
;
1593 assert(s
->bat
== NULL
);
1595 /* this gives a data start after BAT/bitmap entries, and well
1596 * past any metadata entries (with a 4 MB buffer for future
1598 data_file_offset
= file_offset
+ length
+ 5 * MiB
;
1599 total_sectors
= image_size
>> s
->logical_sector_size_bits
;
1601 if (type
== VHDX_TYPE_DYNAMIC
) {
1602 /* All zeroes, so we can just extend the file - the end of the BAT
1603 * is the furthest thing we have written yet */
1604 ret
= blk_truncate(blk
, data_file_offset
);
1608 } else if (type
== VHDX_TYPE_FIXED
) {
1609 ret
= blk_truncate(blk
, data_file_offset
+ image_size
);
1618 if (type
== VHDX_TYPE_FIXED
||
1620 bdrv_has_zero_init(blk_bs(blk
)) == 0) {
1621 /* for a fixed file, the default BAT entry is not zero */
1622 s
->bat
= g_try_malloc0(length
);
1623 if (length
&& s
->bat
== NULL
) {
1627 block_state
= type
== VHDX_TYPE_FIXED
? PAYLOAD_BLOCK_FULLY_PRESENT
:
1628 PAYLOAD_BLOCK_NOT_PRESENT
;
1629 block_state
= use_zero_blocks
? PAYLOAD_BLOCK_ZERO
: block_state
;
1630 /* fill the BAT by emulating sector writes of sectors_per_block size */
1631 while (sector_num
< total_sectors
) {
1632 vhdx_block_translate(s
, sector_num
, s
->sectors_per_block
, &sinfo
);
1633 sinfo
.file_offset
= data_file_offset
+
1634 (sector_num
<< s
->logical_sector_size_bits
);
1635 sinfo
.file_offset
= ROUND_UP(sinfo
.file_offset
, MiB
);
1636 vhdx_update_bat_table_entry(blk_bs(blk
), s
, &sinfo
, &unused
, &unused
,
1638 cpu_to_le64s(&s
->bat
[sinfo
.bat_idx
]);
1639 sector_num
+= s
->sectors_per_block
;
1641 ret
= blk_pwrite(blk
, file_offset
, s
->bat
, length
, 0);
1654 /* Creates the region table header, and region table entries.
1655 * There are 2 supported region table entries: BAT, and Metadata/
1657 * As the calculations for the BAT region table are also needed
1658 * to create the BAT itself, we will also cause the BAT to be
1661 static int vhdx_create_new_region_table(BlockBackend
*blk
,
1662 uint64_t image_size
,
1663 uint32_t block_size
,
1664 uint32_t sector_size
,
1666 bool use_zero_blocks
,
1668 uint64_t *metadata_offset
)
1671 uint32_t offset
= 0;
1672 void *buffer
= NULL
;
1673 uint64_t bat_file_offset
;
1674 uint32_t bat_length
;
1675 BDRVVHDXState
*s
= NULL
;
1676 VHDXRegionTableHeader
*region_table
;
1677 VHDXRegionTableEntry
*rt_bat
;
1678 VHDXRegionTableEntry
*rt_metadata
;
1680 assert(metadata_offset
!= NULL
);
1682 /* Populate enough of the BDRVVHDXState to be able to use the
1683 * pre-existing BAT calculation, translation, and update functions */
1684 s
= g_new0(BDRVVHDXState
, 1);
1686 s
->chunk_ratio
= (VHDX_MAX_SECTORS_PER_BLOCK
) *
1687 (uint64_t) sector_size
/ (uint64_t) block_size
;
1689 s
->sectors_per_block
= block_size
/ sector_size
;
1690 s
->virtual_disk_size
= image_size
;
1691 s
->block_size
= block_size
;
1692 s
->logical_sector_size
= sector_size
;
1694 vhdx_set_shift_bits(s
);
1696 vhdx_calc_bat_entries(s
);
1698 /* At this point the VHDX state is populated enough for creation */
1700 /* a single buffer is used so we can calculate the checksum over the
1701 * entire 64KB block */
1702 buffer
= g_malloc0(VHDX_HEADER_BLOCK_SIZE
);
1703 region_table
= buffer
;
1704 offset
+= sizeof(VHDXRegionTableHeader
);
1705 rt_bat
= buffer
+ offset
;
1706 offset
+= sizeof(VHDXRegionTableEntry
);
1707 rt_metadata
= buffer
+ offset
;
1709 region_table
->signature
= VHDX_REGION_SIGNATURE
;
1710 region_table
->entry_count
= 2; /* BAT and Metadata */
1712 rt_bat
->guid
= bat_guid
;
1713 rt_bat
->length
= ROUND_UP(s
->bat_entries
* sizeof(VHDXBatEntry
), MiB
);
1714 rt_bat
->file_offset
= ROUND_UP(VHDX_HEADER_SECTION_END
+ log_size
, MiB
);
1715 s
->bat_offset
= rt_bat
->file_offset
;
1717 rt_metadata
->guid
= metadata_guid
;
1718 rt_metadata
->file_offset
= ROUND_UP(rt_bat
->file_offset
+ rt_bat
->length
,
1720 rt_metadata
->length
= 1 * MiB
; /* min size, and more than enough */
1721 *metadata_offset
= rt_metadata
->file_offset
;
1723 bat_file_offset
= rt_bat
->file_offset
;
1724 bat_length
= rt_bat
->length
;
1726 vhdx_region_header_le_export(region_table
);
1727 vhdx_region_entry_le_export(rt_bat
);
1728 vhdx_region_entry_le_export(rt_metadata
);
1730 vhdx_update_checksum(buffer
, VHDX_HEADER_BLOCK_SIZE
,
1731 offsetof(VHDXRegionTableHeader
, checksum
));
1734 /* The region table gives us the data we need to create the BAT,
1736 ret
= vhdx_create_bat(blk
, s
, image_size
, type
, use_zero_blocks
,
1737 bat_file_offset
, bat_length
);
1742 /* Now write out the region headers to disk */
1743 ret
= blk_pwrite(blk
, VHDX_REGION_TABLE_OFFSET
, buffer
,
1744 VHDX_HEADER_BLOCK_SIZE
, 0);
1749 ret
= blk_pwrite(blk
, VHDX_REGION_TABLE2_OFFSET
, buffer
,
1750 VHDX_HEADER_BLOCK_SIZE
, 0);
1761 /* We need to create the following elements:
1763 * .-----------------------------------------------------------------.
1764 * | (A) | (B) | (C) | (D) | (E) |
1765 * | File ID | Header1 | Header 2 | Region Tbl 1 | Region Tbl 2 |
1767 * .-----------------------------------------------------------------.
1768 * 0 64KB 128KB 192KB 256KB 320KB
1771 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1772 * | (F) | (G) | (H) | |
1773 * | Journal Log | BAT / Bitmap | Metadata | .... data ...... |
1775 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1778 static int vhdx_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
1781 uint64_t image_size
= (uint64_t) 2 * GiB
;
1782 uint32_t log_size
= 1 * MiB
;
1783 uint32_t block_size
= 0;
1785 uint64_t metadata_offset
;
1786 bool use_zero_blocks
= false;
1788 gunichar2
*creator
= NULL
;
1789 glong creator_items
;
1792 VHDXImageType image_type
;
1793 Error
*local_err
= NULL
;
1795 image_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
1797 log_size
= qemu_opt_get_size_del(opts
, VHDX_BLOCK_OPT_LOG_SIZE
, 0);
1798 block_size
= qemu_opt_get_size_del(opts
, VHDX_BLOCK_OPT_BLOCK_SIZE
, 0);
1799 type
= qemu_opt_get_del(opts
, BLOCK_OPT_SUBFMT
);
1800 use_zero_blocks
= qemu_opt_get_bool_del(opts
, VHDX_BLOCK_OPT_ZERO
, true);
1802 if (image_size
> VHDX_MAX_IMAGE_SIZE
) {
1803 error_setg_errno(errp
, EINVAL
, "Image size too large; max of 64TB");
1809 type
= g_strdup("dynamic");
1812 if (!strcmp(type
, "dynamic")) {
1813 image_type
= VHDX_TYPE_DYNAMIC
;
1814 } else if (!strcmp(type
, "fixed")) {
1815 image_type
= VHDX_TYPE_FIXED
;
1816 } else if (!strcmp(type
, "differencing")) {
1817 error_setg_errno(errp
, ENOTSUP
,
1818 "Differencing files not yet supported");
1826 /* These are pretty arbitrary, and mainly designed to keep the BAT
1827 * size reasonable to load into RAM */
1828 if (block_size
== 0) {
1829 if (image_size
> 32 * TiB
) {
1830 block_size
= 64 * MiB
;
1831 } else if (image_size
> (uint64_t) 100 * GiB
) {
1832 block_size
= 32 * MiB
;
1833 } else if (image_size
> 1 * GiB
) {
1834 block_size
= 16 * MiB
;
1836 block_size
= 8 * MiB
;
1841 /* make the log size close to what was specified, but must be
1842 * min 1MB, and multiple of 1MB */
1843 log_size
= ROUND_UP(log_size
, MiB
);
1845 block_size
= ROUND_UP(block_size
, MiB
);
1846 block_size
= block_size
> VHDX_BLOCK_SIZE_MAX
? VHDX_BLOCK_SIZE_MAX
:
1849 ret
= bdrv_create_file(filename
, opts
, &local_err
);
1851 error_propagate(errp
, local_err
);
1855 blk
= blk_new_open(filename
, NULL
, NULL
,
1856 BDRV_O_RDWR
| BDRV_O_PROTOCOL
, &local_err
);
1858 error_propagate(errp
, local_err
);
1863 blk_set_allow_write_beyond_eof(blk
, true);
1867 /* The creator field is optional, but may be useful for
1868 * debugging / diagnostics */
1869 creator
= g_utf8_to_utf16("QEMU v" QEMU_VERSION
, -1, NULL
,
1870 &creator_items
, NULL
);
1871 signature
= cpu_to_le64(VHDX_FILE_SIGNATURE
);
1872 ret
= blk_pwrite(blk
, VHDX_FILE_ID_OFFSET
, &signature
, sizeof(signature
),
1875 goto delete_and_exit
;
1878 ret
= blk_pwrite(blk
, VHDX_FILE_ID_OFFSET
+ sizeof(signature
),
1879 creator
, creator_items
* sizeof(gunichar2
), 0);
1881 goto delete_and_exit
;
1886 /* Creates (B),(C) */
1887 ret
= vhdx_create_new_headers(blk
, image_size
, log_size
);
1889 goto delete_and_exit
;
1892 /* Creates (D),(E),(G) explicitly. (F) created as by-product */
1893 ret
= vhdx_create_new_region_table(blk
, image_size
, block_size
, 512,
1894 log_size
, use_zero_blocks
, image_type
,
1897 goto delete_and_exit
;
1901 ret
= vhdx_create_new_metadata(blk
, image_size
, block_size
, 512,
1902 metadata_offset
, image_type
);
1904 goto delete_and_exit
;
1916 /* If opened r/w, the VHDX driver will automatically replay the log,
1917 * if one is present, inside the vhdx_open() call.
1919 * If qemu-img check -r all is called, the image is automatically opened
1920 * r/w and any log has already been replayed, so there is nothing (currently)
1923 static int vhdx_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
1926 BDRVVHDXState
*s
= bs
->opaque
;
1928 if (s
->log_replayed_on_open
) {
1929 result
->corruptions_fixed
++;
1934 static QemuOptsList vhdx_create_opts
= {
1935 .name
= "vhdx-create-opts",
1936 .head
= QTAILQ_HEAD_INITIALIZER(vhdx_create_opts
.head
),
1939 .name
= BLOCK_OPT_SIZE
,
1940 .type
= QEMU_OPT_SIZE
,
1941 .help
= "Virtual disk size; max of 64TB."
1944 .name
= VHDX_BLOCK_OPT_LOG_SIZE
,
1945 .type
= QEMU_OPT_SIZE
,
1946 .def_value_str
= stringify(DEFAULT_LOG_SIZE
),
1947 .help
= "Log size; min 1MB."
1950 .name
= VHDX_BLOCK_OPT_BLOCK_SIZE
,
1951 .type
= QEMU_OPT_SIZE
,
1952 .def_value_str
= stringify(0),
1953 .help
= "Block Size; min 1MB, max 256MB. " \
1954 "0 means auto-calculate based on image size."
1957 .name
= BLOCK_OPT_SUBFMT
,
1958 .type
= QEMU_OPT_STRING
,
1959 .help
= "VHDX format type, can be either 'dynamic' or 'fixed'. "\
1960 "Default is 'dynamic'."
1963 .name
= VHDX_BLOCK_OPT_ZERO
,
1964 .type
= QEMU_OPT_BOOL
,
1965 .help
= "Force use of payload blocks of type 'ZERO'. "\
1966 "Non-standard, but default. Do not set to 'off' when "\
1967 "using 'qemu-img convert' with subformat=dynamic."
1973 static BlockDriver bdrv_vhdx
= {
1974 .format_name
= "vhdx",
1975 .instance_size
= sizeof(BDRVVHDXState
),
1976 .bdrv_probe
= vhdx_probe
,
1977 .bdrv_open
= vhdx_open
,
1978 .bdrv_close
= vhdx_close
,
1979 .bdrv_reopen_prepare
= vhdx_reopen_prepare
,
1980 .bdrv_co_readv
= vhdx_co_readv
,
1981 .bdrv_co_writev
= vhdx_co_writev
,
1982 .bdrv_create
= vhdx_create
,
1983 .bdrv_get_info
= vhdx_get_info
,
1984 .bdrv_check
= vhdx_check
,
1985 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
1987 .create_opts
= &vhdx_create_opts
,
1990 static void bdrv_vhdx_init(void)
1992 bdrv_register(&bdrv_vhdx
);
1995 block_init(bdrv_vhdx_init
);