]> git.proxmox.com Git - mirror_qemu.git/blame - block/vhdx.c
Merge remote-tracking branch 'remotes/juanquintela/tags/migration/20170718' into...
[mirror_qemu.git] / block / vhdx.c
CommitLineData
e8d4e5ff
JC
1/*
2 * Block driver for Hyper-V VHDX Images
3 *
4 * Copyright (c) 2013 Red Hat, Inc.,
5 *
6 * Authors:
7 * Jeff Cody <jcody@redhat.com>
8 *
6e9d290b 9 * This is based on the "VHDX Format Specification v1.00", published 8/25/2012
e8d4e5ff 10 * by Microsoft:
6e9d290b 11 * https://www.microsoft.com/en-us/download/details.aspx?id=34750
e8d4e5ff
JC
12 *
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.
15 *
16 */
17
80c71a24 18#include "qemu/osdep.h"
da34e65c 19#include "qapi/error.h"
e8d4e5ff
JC
20#include "qemu-common.h"
21#include "block/block_int.h"
10bf03af 22#include "sysemu/block-backend.h"
e8d4e5ff
JC
23#include "qemu/module.h"
24#include "qemu/crc32c.h"
58369e22 25#include "qemu/bswap.h"
e8d4e5ff 26#include "block/vhdx.h"
795c40b8 27#include "migration/blocker.h"
cb6414df 28#include "qemu/uuid.h"
3412f7b1
JC
29
30/* Options for VHDX creation */
31
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"
35
36typedef enum VHDXImageType {
37 VHDX_TYPE_DYNAMIC = 0,
38 VHDX_TYPE_FIXED,
39 VHDX_TYPE_DIFFERENCING, /* Currently unsupported */
40} VHDXImageType;
e8d4e5ff
JC
41
42/* Several metadata and region table data entries are identified by
43 * guids in a MS-specific GUID format. */
44
45
46/* ------- Known Region Table GUIDs ---------------------- */
47static const MSGUID bat_guid = { .data1 = 0x2dc27766,
48 .data2 = 0xf623,
49 .data3 = 0x4200,
50 .data4 = { 0x9d, 0x64, 0x11, 0x5e,
51 0x9b, 0xfd, 0x4a, 0x08} };
52
53static const MSGUID metadata_guid = { .data1 = 0x8b7ca206,
54 .data2 = 0x4790,
55 .data3 = 0x4b9a,
56 .data4 = { 0xb8, 0xfe, 0x57, 0x5f,
57 0x05, 0x0f, 0x88, 0x6e} };
58
59
60
61/* ------- Known Metadata Entry GUIDs ---------------------- */
62static const MSGUID file_param_guid = { .data1 = 0xcaa16737,
63 .data2 = 0xfa36,
64 .data3 = 0x4d43,
65 .data4 = { 0xb3, 0xb6, 0x33, 0xf0,
66 0xaa, 0x44, 0xe7, 0x6b} };
67
68static const MSGUID virtual_size_guid = { .data1 = 0x2FA54224,
69 .data2 = 0xcd1b,
70 .data3 = 0x4876,
71 .data4 = { 0xb2, 0x11, 0x5d, 0xbe,
72 0xd8, 0x3b, 0xf4, 0xb8} };
73
74static const MSGUID page83_guid = { .data1 = 0xbeca12ab,
75 .data2 = 0xb2e6,
76 .data3 = 0x4523,
77 .data4 = { 0x93, 0xef, 0xc3, 0x09,
78 0xe0, 0x00, 0xc7, 0x46} };
79
80
81static const MSGUID phys_sector_guid = { .data1 = 0xcda348c7,
82 .data2 = 0x445d,
83 .data3 = 0x4471,
84 .data4 = { 0x9c, 0xc9, 0xe9, 0x88,
85 0x52, 0x51, 0xc5, 0x56} };
86
87static const MSGUID parent_locator_guid = { .data1 = 0xa8d35f2d,
88 .data2 = 0xb30b,
89 .data3 = 0x454d,
90 .data4 = { 0xab, 0xf7, 0xd3,
91 0xd8, 0x48, 0x34,
92 0xab, 0x0c} };
93
94static const MSGUID logical_sector_guid = { .data1 = 0x8141bf1d,
95 .data2 = 0xa96f,
96 .data3 = 0x4709,
97 .data4 = { 0xba, 0x47, 0xf2,
98 0x33, 0xa8, 0xfa,
99 0xab, 0x5f} };
100
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 */
c2ebb05e
PM
104static const MSGUID parent_vhdx_guid __attribute__((unused))
105 = { .data1 = 0xb04aefb7,
e8d4e5ff
JC
106 .data2 = 0xd19e,
107 .data3 = 0x4a81,
108 .data4 = { 0xb7, 0x89, 0x25, 0xb8,
109 0xe9, 0x44, 0x59, 0x13} };
110
111
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
118
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)
123
e8d4e5ff 124
059e2fbb
JC
125typedef 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 */
132} VHDXSectorInfo;
133
4f18b782
JC
134/* Calculates new checksum.
135 *
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)
140 *
4f75b52a
JC
141 * Note: The buffer should have all multi-byte data in little-endian format,
142 * and the resulting checksum is in little endian format.
4f18b782
JC
143 */
144uint32_t vhdx_update_checksum(uint8_t *buf, size_t size, int crc_offset)
145{
146 uint32_t crc;
147
148 assert(buf != NULL);
149 assert(size > (crc_offset + sizeof(crc)));
150
151 memset(buf + crc_offset, 0, sizeof(crc));
152 crc = crc32c(0xffffffff, buf, size);
4f75b52a 153 cpu_to_le32s(&crc);
4f18b782
JC
154 memcpy(buf + crc_offset, &crc, sizeof(crc));
155
156 return crc;
157}
158
e8d4e5ff
JC
159uint32_t vhdx_checksum_calc(uint32_t crc, uint8_t *buf, size_t size,
160 int crc_offset)
161{
162 uint32_t crc_new;
163 uint32_t crc_orig;
164 assert(buf != NULL);
165
166 if (crc_offset > 0) {
167 memcpy(&crc_orig, buf + crc_offset, sizeof(crc_orig));
168 memset(buf + crc_offset, 0, sizeof(crc_orig));
169 }
170
171 crc_new = crc32c(crc, buf, size);
172 if (crc_offset > 0) {
173 memcpy(buf + crc_offset, &crc_orig, sizeof(crc_orig));
174 }
175
176 return crc_new;
177}
178
179/* Validates the checksum of the buffer, with an in-place CRC.
180 *
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
184 * use.
185 *
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)
189 *
190 * returns true if checksum is valid, false otherwise
191 */
192bool vhdx_checksum_is_valid(uint8_t *buf, size_t size, int crc_offset)
193{
194 uint32_t crc_orig;
195 uint32_t crc;
196
197 assert(buf != NULL);
198 assert(size > (crc_offset + 4));
199
200 memcpy(&crc_orig, buf + crc_offset, sizeof(crc_orig));
201 crc_orig = le32_to_cpu(crc_orig);
202
203 crc = vhdx_checksum_calc(0xffffffff, buf, size, crc_offset);
204
205 return crc == crc_orig;
206}
207
208
4f18b782
JC
209/*
210 * This generates a UUID that is compliant with the MS GUIDs used
211 * in the VHDX spec (and elsewhere).
212 */
213void vhdx_guid_generate(MSGUID *guid)
214{
cb6414df 215 QemuUUID uuid;
4f18b782
JC
216 assert(guid != NULL);
217
cb6414df
FZ
218 qemu_uuid_generate(&uuid);
219 memcpy(guid, &uuid, sizeof(MSGUID));
4f18b782
JC
220}
221
1a848fd4
JC
222/* Check for region overlaps inside the VHDX image */
223static int vhdx_region_check(BDRVVHDXState *s, uint64_t start, uint64_t length)
224{
225 int ret = 0;
226 uint64_t end;
227 VHDXRegionEntry *r;
228
229 end = start + length;
230 QLIST_FOREACH(r, &s->regions, entries) {
231 if (!((start >= r->end) || (end <= r->start))) {
232 ret = -EINVAL;
233 goto exit;
234 }
235 }
236
237exit:
238 return ret;
239}
240
241/* Register a region for future checks */
242static void vhdx_region_register(BDRVVHDXState *s,
243 uint64_t start, uint64_t length)
244{
245 VHDXRegionEntry *r;
246
247 r = g_malloc0(sizeof(*r));
248
249 r->start = start;
250 r->end = start + length;
251
252 QLIST_INSERT_HEAD(&s->regions, r, entries);
253}
254
255/* Free all registered regions */
256static void vhdx_region_unregister_all(BDRVVHDXState *s)
257{
258 VHDXRegionEntry *r, *r_next;
259
260 QLIST_FOREACH_SAFE(r, &s->regions, entries, r_next) {
261 QLIST_REMOVE(r, entries);
262 g_free(r);
263 }
264}
265
1e74a971
JC
266static void vhdx_set_shift_bits(BDRVVHDXState *s)
267{
04a36158
HR
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);
1e74a971
JC
272}
273
e8d4e5ff
JC
274/*
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.
282 *
283 * Therefore, we probe by looking for the vhdxfile signature "vhdxfile"
284 */
285static int vhdx_probe(const uint8_t *buf, int buf_size, const char *filename)
286{
287 if (buf_size >= 8 && !memcmp(buf, "vhdxfile", 8)) {
288 return 100;
289 }
290 return 0;
291}
292
1e74a971
JC
293/*
294 * Writes the header to the specified offset.
295 *
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
299 */
cf2ab8fc 300static int vhdx_write_header(BdrvChild *file, VHDXHeader *hdr,
1e74a971
JC
301 uint64_t offset, bool read)
302{
cf2ab8fc 303 BlockDriverState *bs_file = file->bs;
1e74a971
JC
304 uint8_t *buffer = NULL;
305 int ret;
4f75b52a 306 VHDXHeader *header_le;
1e74a971
JC
307
308 assert(bs_file != NULL);
309 assert(hdr != NULL);
310
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). */
314
315 buffer = qemu_blockalign(bs_file, VHDX_HEADER_SIZE);
316 if (read) {
317 /* if true, we can't assume the extra reserved bytes are 0 */
cf2ab8fc 318 ret = bdrv_pread(file, offset, buffer, VHDX_HEADER_SIZE);
1e74a971
JC
319 if (ret < 0) {
320 goto exit;
321 }
322 } else {
323 memset(buffer, 0, VHDX_HEADER_SIZE);
324 }
325
326 /* overwrite the actual VHDXHeader portion */
4f75b52a
JC
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));
d9ca2ea2 332 ret = bdrv_pwrite_sync(file, offset, header_le, sizeof(VHDXHeader));
1e74a971
JC
333
334exit:
335 qemu_vfree(buffer);
336 return ret;
337}
338
4f18b782
JC
339/* Update the VHDX headers
340 *
341 * This follows the VHDX spec procedures for header updates.
342 *
343 * - non-current header is updated with largest sequence number
344 */
345static int vhdx_update_header(BlockDriverState *bs, BDRVVHDXState *s,
c3906c5e 346 bool generate_data_write_guid, MSGUID *log_guid)
4f18b782
JC
347{
348 int ret = 0;
349 int hdr_idx = 0;
350 uint64_t header_offset = VHDX_HEADER1_OFFSET;
351
352 VHDXHeader *active_header;
353 VHDXHeader *inactive_header;
4f18b782
JC
354
355 /* operate on the non-current header */
356 if (s->curr_header == 0) {
357 hdr_idx = 1;
358 header_offset = VHDX_HEADER2_OFFSET;
359 }
360
361 active_header = s->headers[s->curr_header];
362 inactive_header = s->headers[hdr_idx];
363
364 inactive_header->sequence_number = active_header->sequence_number + 1;
365
366 /* a new file guid must be generated before any file write, including
367 * headers */
368 inactive_header->file_write_guid = s->session_guid;
369
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);
374 }
375
c3906c5e
JC
376 /* update the log guid if present */
377 if (log_guid) {
378 inactive_header->log_guid = *log_guid;
379 }
380
cf2ab8fc 381 ret = vhdx_write_header(bs->file, inactive_header, header_offset, true);
4f18b782
JC
382 if (ret < 0) {
383 goto exit;
384 }
385 s->curr_header = hdr_idx;
386
387exit:
4f18b782
JC
388 return ret;
389}
390
391/*
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
394 */
c3906c5e
JC
395int vhdx_update_headers(BlockDriverState *bs, BDRVVHDXState *s,
396 bool generate_data_write_guid, MSGUID *log_guid)
4f18b782
JC
397{
398 int ret;
399
c3906c5e 400 ret = vhdx_update_header(bs, s, generate_data_write_guid, log_guid);
4f18b782
JC
401 if (ret < 0) {
402 return ret;
403 }
c3906c5e 404 ret = vhdx_update_header(bs, s, generate_data_write_guid, log_guid);
4f18b782
JC
405 return ret;
406}
e8d4e5ff
JC
407
408/* opens the specified header block from the VHDX file header section */
6890aad4
PB
409static void vhdx_parse_header(BlockDriverState *bs, BDRVVHDXState *s,
410 Error **errp)
e8d4e5ff 411{
6890aad4 412 int ret;
e8d4e5ff
JC
413 VHDXHeader *header1;
414 VHDXHeader *header2;
415 bool h1_valid = false;
416 bool h2_valid = false;
417 uint64_t h1_seq = 0;
418 uint64_t h2_seq = 0;
419 uint8_t *buffer;
420
6e9d290b 421 /* header1 & header2 are freed in vhdx_close() */
e8d4e5ff
JC
422 header1 = qemu_blockalign(bs, sizeof(VHDXHeader));
423 header2 = qemu_blockalign(bs, sizeof(VHDXHeader));
424
425 buffer = qemu_blockalign(bs, VHDX_HEADER_SIZE);
426
427 s->headers[0] = header1;
428 s->headers[1] = header2;
429
430 /* We have to read the whole VHDX_HEADER_SIZE instead of
431 * sizeof(VHDXHeader), because the checksum is over the whole
432 * region */
cf2ab8fc 433 ret = bdrv_pread(bs->file, VHDX_HEADER1_OFFSET, buffer,
9a4f4c31 434 VHDX_HEADER_SIZE);
e8d4e5ff
JC
435 if (ret < 0) {
436 goto fail;
437 }
438 /* copy over just the relevant portion that we need */
439 memcpy(header1, buffer, sizeof(VHDXHeader));
e8d4e5ff 440
4f75b52a
JC
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;
446 h1_valid = true;
447 }
e8d4e5ff
JC
448 }
449
cf2ab8fc 450 ret = bdrv_pread(bs->file, VHDX_HEADER2_OFFSET, buffer,
9a4f4c31 451 VHDX_HEADER_SIZE);
e8d4e5ff
JC
452 if (ret < 0) {
453 goto fail;
454 }
455 /* copy over just the relevant portion that we need */
456 memcpy(header2, buffer, sizeof(VHDXHeader));
e8d4e5ff 457
4f75b52a
JC
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;
463 h2_valid = true;
464 }
e8d4e5ff
JC
465 }
466
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) {
470 s->curr_header = 0;
471 } else if (!h1_valid && h2_valid) {
472 s->curr_header = 1;
473 } else if (!h1_valid && !h2_valid) {
e8d4e5ff
JC
474 goto fail;
475 } else {
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
478 * invalid */
479 if (h1_seq > h2_seq) {
480 s->curr_header = 0;
481 } else if (h2_seq > h1_seq) {
482 s->curr_header = 1;
483 } else {
69060461
JC
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))) {
488 s->curr_header = 0;
489 } else {
490 goto fail;
491 }
e8d4e5ff
JC
492 }
493 }
494
1a848fd4
JC
495 vhdx_region_register(s, s->headers[s->curr_header]->log_offset,
496 s->headers[s->curr_header]->log_length);
e8d4e5ff
JC
497 goto exit;
498
499fail:
6890aad4 500 error_setg_errno(errp, -ret, "No valid VHDX header found");
e8d4e5ff
JC
501 qemu_vfree(header1);
502 qemu_vfree(header2);
503 s->headers[0] = NULL;
504 s->headers[1] = NULL;
505exit:
506 qemu_vfree(buffer);
e8d4e5ff
JC
507}
508
509
510static int vhdx_open_region_tables(BlockDriverState *bs, BDRVVHDXState *s)
511{
512 int ret = 0;
513 uint8_t *buffer;
514 int offset = 0;
515 VHDXRegionTableEntry rt_entry;
516 uint32_t i;
517 bool bat_rt_found = false;
518 bool metadata_rt_found = false;
519
520 /* We have to read the whole 64KB block, because the crc32 is over the
521 * whole block */
522 buffer = qemu_blockalign(bs, VHDX_HEADER_BLOCK_SIZE);
523
cf2ab8fc 524 ret = bdrv_pread(bs->file, VHDX_REGION_TABLE_OFFSET, buffer,
e8d4e5ff
JC
525 VHDX_HEADER_BLOCK_SIZE);
526 if (ret < 0) {
527 goto fail;
528 }
529 memcpy(&s->rt, buffer, sizeof(s->rt));
e8d4e5ff
JC
530 offset += sizeof(s->rt);
531
4f75b52a
JC
532 if (!vhdx_checksum_is_valid(buffer, VHDX_HEADER_BLOCK_SIZE, 4)) {
533 ret = -EINVAL;
534 goto fail;
535 }
536
537 vhdx_region_header_le_import(&s->rt);
538
539 if (s->rt.signature != VHDX_REGION_SIGNATURE) {
e8d4e5ff
JC
540 ret = -EINVAL;
541 goto fail;
542 }
543
4f75b52a 544
e8d4e5ff
JC
545 /* Per spec, maximum region table entry count is 2047 */
546 if (s->rt.entry_count > 2047) {
547 ret = -EINVAL;
548 goto fail;
549 }
550
551 for (i = 0; i < s->rt.entry_count; i++) {
552 memcpy(&rt_entry, buffer + offset, sizeof(rt_entry));
553 offset += sizeof(rt_entry);
554
c325ee1d 555 vhdx_region_entry_le_import(&rt_entry);
e8d4e5ff 556
1a848fd4
JC
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);
560 if (ret < 0) {
561 goto fail;
562 }
563
564 vhdx_region_register(s, rt_entry.file_offset, rt_entry.length);
565
e8d4e5ff
JC
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 */
569 if (bat_rt_found) {
570 ret = -EINVAL;
571 goto fail;
572 }
573 bat_rt_found = true;
574 s->bat_rt = rt_entry;
575 continue;
576 }
577
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) {
581 ret = -EINVAL;
582 goto fail;
583 }
584 metadata_rt_found = true;
585 s->metadata_rt = rt_entry;
586 continue;
587 }
588
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 */
592 ret = -ENOTSUP;
593 goto fail;
594 }
595 }
1a848fd4
JC
596
597 if (!bat_rt_found || !metadata_rt_found) {
598 ret = -EINVAL;
599 goto fail;
600 }
601
e8d4e5ff
JC
602 ret = 0;
603
604fail:
605 qemu_vfree(buffer);
606 return ret;
607}
608
609
610
611/* Metadata initial parser
612 *
613 * This loads all the metadata entry fields. This may cause additional
614 * fields to be processed (e.g. parent locator, etc..).
615 *
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)
623 *
624 * Also, if the File Parameters indicate this is a differencing file,
625 * we must also look for the Parent Locator metadata item.
626 */
627static int vhdx_parse_metadata(BlockDriverState *bs, BDRVVHDXState *s)
628{
629 int ret = 0;
630 uint8_t *buffer;
631 int offset = 0;
632 uint32_t i = 0;
633 VHDXMetadataTableEntry md_entry;
634
635 buffer = qemu_blockalign(bs, VHDX_METADATA_TABLE_MAX_SIZE);
636
cf2ab8fc 637 ret = bdrv_pread(bs->file, s->metadata_rt.file_offset, buffer,
e8d4e5ff
JC
638 VHDX_METADATA_TABLE_MAX_SIZE);
639 if (ret < 0) {
640 goto exit;
641 }
642 memcpy(&s->metadata_hdr, buffer, sizeof(s->metadata_hdr));
643 offset += sizeof(s->metadata_hdr);
644
c325ee1d 645 vhdx_metadata_header_le_import(&s->metadata_hdr);
e8d4e5ff 646
4f75b52a 647 if (s->metadata_hdr.signature != VHDX_METADATA_SIGNATURE) {
e8d4e5ff
JC
648 ret = -EINVAL;
649 goto exit;
650 }
651
652 s->metadata_entries.present = 0;
653
654 if ((s->metadata_hdr.entry_count * sizeof(md_entry)) >
655 (VHDX_METADATA_TABLE_MAX_SIZE - offset)) {
656 ret = -EINVAL;
657 goto exit;
658 }
659
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);
663
c325ee1d 664 vhdx_metadata_entry_le_import(&md_entry);
e8d4e5ff
JC
665
666 if (guid_eq(md_entry.item_id, file_param_guid)) {
667 if (s->metadata_entries.present & META_FILE_PARAMETER_PRESENT) {
668 ret = -EINVAL;
669 goto exit;
670 }
671 s->metadata_entries.file_parameters_entry = md_entry;
672 s->metadata_entries.present |= META_FILE_PARAMETER_PRESENT;
673 continue;
674 }
675
676 if (guid_eq(md_entry.item_id, virtual_size_guid)) {
677 if (s->metadata_entries.present & META_VIRTUAL_DISK_SIZE_PRESENT) {
678 ret = -EINVAL;
679 goto exit;
680 }
681 s->metadata_entries.virtual_disk_size_entry = md_entry;
682 s->metadata_entries.present |= META_VIRTUAL_DISK_SIZE_PRESENT;
683 continue;
684 }
685
686 if (guid_eq(md_entry.item_id, page83_guid)) {
687 if (s->metadata_entries.present & META_PAGE_83_PRESENT) {
688 ret = -EINVAL;
689 goto exit;
690 }
691 s->metadata_entries.page83_data_entry = md_entry;
692 s->metadata_entries.present |= META_PAGE_83_PRESENT;
693 continue;
694 }
695
696 if (guid_eq(md_entry.item_id, logical_sector_guid)) {
697 if (s->metadata_entries.present &
698 META_LOGICAL_SECTOR_SIZE_PRESENT) {
699 ret = -EINVAL;
700 goto exit;
701 }
702 s->metadata_entries.logical_sector_size_entry = md_entry;
703 s->metadata_entries.present |= META_LOGICAL_SECTOR_SIZE_PRESENT;
704 continue;
705 }
706
707 if (guid_eq(md_entry.item_id, phys_sector_guid)) {
708 if (s->metadata_entries.present & META_PHYS_SECTOR_SIZE_PRESENT) {
709 ret = -EINVAL;
710 goto exit;
711 }
712 s->metadata_entries.phys_sector_size_entry = md_entry;
713 s->metadata_entries.present |= META_PHYS_SECTOR_SIZE_PRESENT;
714 continue;
715 }
716
717 if (guid_eq(md_entry.item_id, parent_locator_guid)) {
718 if (s->metadata_entries.present & META_PARENT_LOCATOR_PRESENT) {
719 ret = -EINVAL;
720 goto exit;
721 }
722 s->metadata_entries.parent_locator_entry = md_entry;
723 s->metadata_entries.present |= META_PARENT_LOCATOR_PRESENT;
724 continue;
725 }
726
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 */
730 ret = -ENOTSUP;
731 goto exit;
732 }
733 }
734
735 if (s->metadata_entries.present != META_ALL_PRESENT) {
736 ret = -ENOTSUP;
737 goto exit;
738 }
739
cf2ab8fc 740 ret = bdrv_pread(bs->file,
e8d4e5ff
JC
741 s->metadata_entries.file_parameters_entry.offset
742 + s->metadata_rt.file_offset,
743 &s->params,
744 sizeof(s->params));
745
746 if (ret < 0) {
747 goto exit;
748 }
749
750 le32_to_cpus(&s->params.block_size);
751 le32_to_cpus(&s->params.data_bits);
752
753
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 */
757
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 */
763 goto exit;
764 } else {
765 /* if has_parent is set, but there is not parent locator present,
766 * then that is an invalid combination */
767 ret = -EINVAL;
768 goto exit;
769 }
770 }
771
772 /* determine virtual disk size, logical sector size,
773 * and phys sector size */
774
cf2ab8fc 775 ret = bdrv_pread(bs->file,
e8d4e5ff
JC
776 s->metadata_entries.virtual_disk_size_entry.offset
777 + s->metadata_rt.file_offset,
778 &s->virtual_disk_size,
779 sizeof(uint64_t));
780 if (ret < 0) {
781 goto exit;
782 }
cf2ab8fc 783 ret = bdrv_pread(bs->file,
e8d4e5ff
JC
784 s->metadata_entries.logical_sector_size_entry.offset
785 + s->metadata_rt.file_offset,
786 &s->logical_sector_size,
787 sizeof(uint32_t));
788 if (ret < 0) {
789 goto exit;
790 }
cf2ab8fc 791 ret = bdrv_pread(bs->file,
e8d4e5ff
JC
792 s->metadata_entries.phys_sector_size_entry.offset
793 + s->metadata_rt.file_offset,
794 &s->physical_sector_size,
795 sizeof(uint32_t));
796 if (ret < 0) {
797 goto exit;
798 }
799
800 le64_to_cpus(&s->virtual_disk_size);
801 le32_to_cpus(&s->logical_sector_size);
802 le32_to_cpus(&s->physical_sector_size);
803
1d7678de
JC
804 if (s->params.block_size < VHDX_BLOCK_SIZE_MIN ||
805 s->params.block_size > VHDX_BLOCK_SIZE_MAX) {
e8d4e5ff
JC
806 ret = -EINVAL;
807 goto exit;
808 }
809
1d7678de
JC
810 /* only 2 supported sector sizes */
811 if (s->logical_sector_size != 512 && s->logical_sector_size != 4096) {
812 ret = -EINVAL;
813 goto exit;
814 }
815
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 */
e8d4e5ff
JC
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;
822
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
826 * reads/writes */
827 if (s->logical_sector_size & (s->logical_sector_size - 1)) {
828 ret = -EINVAL;
829 goto exit;
830 }
831 if (s->sectors_per_block & (s->sectors_per_block - 1)) {
832 ret = -EINVAL;
833 goto exit;
834 }
835 if (s->chunk_ratio & (s->chunk_ratio - 1)) {
836 ret = -EINVAL;
837 goto exit;
838 }
839 s->block_size = s->params.block_size;
840 if (s->block_size & (s->block_size - 1)) {
841 ret = -EINVAL;
842 goto exit;
843 }
844
1e74a971 845 vhdx_set_shift_bits(s);
e8d4e5ff
JC
846
847 ret = 0;
848
849exit:
850 qemu_vfree(buffer);
851 return ret;
852}
853
1e74a971
JC
854/*
855 * Calculate the number of BAT entries, including sector
856 * bitmap entries.
857 */
858static void vhdx_calc_bat_entries(BDRVVHDXState *s)
859{
860 uint32_t data_blocks_cnt, bitmap_blocks_cnt;
861
939901dc
HR
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);
1e74a971
JC
864
865 if (s->parent_entries) {
866 s->bat_entries = bitmap_blocks_cnt * (s->chunk_ratio + 1);
867 } else {
868 s->bat_entries = data_blocks_cnt +
869 ((data_blocks_cnt - 1) >> s->chunk_ratio_bits);
870 }
871
872}
e8d4e5ff 873
c46415af
JC
874static void vhdx_close(BlockDriverState *bs)
875{
876 BDRVVHDXState *s = bs->opaque;
877 qemu_vfree(s->headers[0]);
0a43a1b5 878 s->headers[0] = NULL;
c46415af 879 qemu_vfree(s->headers[1]);
0a43a1b5 880 s->headers[1] = NULL;
c46415af 881 qemu_vfree(s->bat);
0a43a1b5 882 s->bat = NULL;
c46415af 883 qemu_vfree(s->parent_entries);
0a43a1b5 884 s->parent_entries = NULL;
c46415af
JC
885 migrate_del_blocker(s->migration_blocker);
886 error_free(s->migration_blocker);
0a43a1b5
JC
887 qemu_vfree(s->log.hdr);
888 s->log.hdr = NULL;
1a848fd4 889 vhdx_region_unregister_all(s);
c46415af
JC
890}
891
015a1036
HR
892static int vhdx_open(BlockDriverState *bs, QDict *options, int flags,
893 Error **errp)
e8d4e5ff
JC
894{
895 BDRVVHDXState *s = bs->opaque;
896 int ret = 0;
897 uint32_t i;
898 uint64_t signature;
6890aad4 899 Error *local_err = NULL;
e8d4e5ff 900
4e4bf5c4
KW
901 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file,
902 false, errp);
903 if (!bs->file) {
904 return -EINVAL;
905 }
906
e8d4e5ff 907 s->bat = NULL;
c3906c5e 908 s->first_visible_write = true;
e8d4e5ff
JC
909
910 qemu_co_mutex_init(&s->lock);
1a848fd4 911 QLIST_INIT(&s->regions);
e8d4e5ff
JC
912
913 /* validate the file signature */
cf2ab8fc 914 ret = bdrv_pread(bs->file, 0, &signature, sizeof(uint64_t));
e8d4e5ff
JC
915 if (ret < 0) {
916 goto fail;
917 }
918 if (memcmp(&signature, "vhdxfile", 8)) {
919 ret = -EINVAL;
920 goto fail;
921 }
922
4f18b782
JC
923 /* This is used for any header updates, for the file_write_guid.
924 * The spec dictates that a new value should be used for the first
925 * header update */
926 vhdx_guid_generate(&s->session_guid);
927
6890aad4
PB
928 vhdx_parse_header(bs, s, &local_err);
929 if (local_err != NULL) {
930 error_propagate(errp, local_err);
931 ret = -EINVAL;
e8d4e5ff
JC
932 goto fail;
933 }
934
7e30e6a6 935 ret = vhdx_parse_log(bs, s, &s->log_replayed_on_open, errp);
0a43a1b5 936 if (ret < 0) {
e8d4e5ff
JC
937 goto fail;
938 }
939
940 ret = vhdx_open_region_tables(bs, s);
0a43a1b5 941 if (ret < 0) {
e8d4e5ff
JC
942 goto fail;
943 }
944
945 ret = vhdx_parse_metadata(bs, s);
0a43a1b5 946 if (ret < 0) {
e8d4e5ff
JC
947 goto fail;
948 }
0a43a1b5 949
e8d4e5ff
JC
950 s->block_size = s->params.block_size;
951
952 /* the VHDX spec dictates that virtual_disk_size is always a multiple of
953 * logical_sector_size */
954 bs->total_sectors = s->virtual_disk_size >> s->logical_sector_size_bits;
955
1e74a971 956 vhdx_calc_bat_entries(s);
e8d4e5ff
JC
957
958 s->bat_offset = s->bat_rt.file_offset;
959
960 if (s->bat_entries > s->bat_rt.length / sizeof(VHDXBatEntry)) {
961 /* BAT allocation is not large enough for all entries */
962 ret = -EINVAL;
963 goto fail;
964 }
965
6e9d290b 966 /* s->bat is freed in vhdx_close() */
9a4f4c31 967 s->bat = qemu_try_blockalign(bs->file->bs, s->bat_rt.length);
a67e128a
KW
968 if (s->bat == NULL) {
969 ret = -ENOMEM;
970 goto fail;
971 }
972
cf2ab8fc 973 ret = bdrv_pread(bs->file, s->bat_offset, s->bat, s->bat_rt.length);
e8d4e5ff
JC
974 if (ret < 0) {
975 goto fail;
976 }
977
1a848fd4
JC
978 uint64_t payblocks = s->chunk_ratio;
979 /* endian convert, and verify populated BAT field file offsets against
980 * region table and log entries */
e8d4e5ff
JC
981 for (i = 0; i < s->bat_entries; i++) {
982 le64_to_cpus(&s->bat[i]);
1a848fd4
JC
983 if (payblocks--) {
984 /* payload bat entries */
985 if ((s->bat[i] & VHDX_BAT_STATE_BIT_MASK) ==
d92aa883 986 PAYLOAD_BLOCK_FULLY_PRESENT) {
1a848fd4
JC
987 ret = vhdx_region_check(s, s->bat[i] & VHDX_BAT_FILE_OFF_MASK,
988 s->block_size);
989 if (ret < 0) {
990 goto fail;
991 }
992 }
993 } else {
994 payblocks = s->chunk_ratio;
995 /* Once differencing files are supported, verify sector bitmap
996 * blocks here */
997 }
e8d4e5ff
JC
998 }
999
fe44dc91
AA
1000 /* Disable migration when VHDX images are used */
1001 error_setg(&s->migration_blocker, "The vhdx format used by node '%s' "
1002 "does not support live migration",
1003 bdrv_get_device_or_node_name(bs));
1004 ret = migrate_add_blocker(s->migration_blocker, &local_err);
1005 if (local_err) {
1006 error_propagate(errp, local_err);
1007 error_free(s->migration_blocker);
1008 goto fail;
1009 }
1010
e8d4e5ff 1011 if (flags & BDRV_O_RDWR) {
c3906c5e 1012 ret = vhdx_update_headers(bs, s, false, NULL);
4f18b782
JC
1013 if (ret < 0) {
1014 goto fail;
1015 }
e8d4e5ff
JC
1016 }
1017
d92aa883 1018 /* TODO: differencing files */
e8d4e5ff
JC
1019
1020 return 0;
1021fail:
0a43a1b5 1022 vhdx_close(bs);
e8d4e5ff
JC
1023 return ret;
1024}
1025
1026static int vhdx_reopen_prepare(BDRVReopenState *state,
1027 BlockReopenQueue *queue, Error **errp)
1028{
1029 return 0;
1030}
1031
1032
059e2fbb
JC
1033/*
1034 * Perform sector to block offset translations, to get various
1035 * sector and file offsets into the image. See VHDXSectorInfo
1036 */
1037static void vhdx_block_translate(BDRVVHDXState *s, int64_t sector_num,
1038 int nb_sectors, VHDXSectorInfo *sinfo)
1039{
1040 uint32_t block_offset;
1041
1042 sinfo->bat_idx = sector_num >> s->sectors_per_block_bits;
1043 /* effectively a modulo - this gives us the offset into the block
1044 * (in sector sizes) for our sector number */
1045 block_offset = sector_num - (sinfo->bat_idx << s->sectors_per_block_bits);
1046 /* the chunk ratio gives us the interleaving of the sector
1047 * bitmaps, so we need to advance our page block index by the
1048 * sector bitmaps entry number */
1049 sinfo->bat_idx += sinfo->bat_idx >> s->chunk_ratio_bits;
1050
1051 /* the number of sectors we can read/write in this cycle */
1052 sinfo->sectors_avail = s->sectors_per_block - block_offset;
1053
1054 sinfo->bytes_left = sinfo->sectors_avail << s->logical_sector_size_bits;
1055
1056 if (sinfo->sectors_avail > nb_sectors) {
1057 sinfo->sectors_avail = nb_sectors;
1058 }
1059
1060 sinfo->bytes_avail = sinfo->sectors_avail << s->logical_sector_size_bits;
1061
0b7da092 1062 sinfo->file_offset = s->bat[sinfo->bat_idx] & VHDX_BAT_FILE_OFF_MASK;
059e2fbb
JC
1063
1064 sinfo->block_offset = block_offset << s->logical_sector_size_bits;
1065
1066 /* The file offset must be past the header section, so must be > 0 */
1067 if (sinfo->file_offset == 0) {
1068 return;
1069 }
1070
1071 /* block offset is the offset in vhdx logical sectors, in
1072 * the payload data block. Convert that to a byte offset
1073 * in the block, and add in the payload data block offset
1074 * in the file, in bytes, to get the final read address */
1075
059e2fbb
JC
1076 sinfo->file_offset += sinfo->block_offset;
1077}
1078
1079
97b00e28
PB
1080static int vhdx_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1081{
1082 BDRVVHDXState *s = bs->opaque;
1083
1084 bdi->cluster_size = s->block_size;
1085
95de6d70
PB
1086 bdi->unallocated_blocks_are_zero =
1087 (s->params.data_bits & VHDX_PARAMS_HAS_PARENT) == 0;
1088
97b00e28
PB
1089 return 0;
1090}
1091
059e2fbb 1092
e8d4e5ff
JC
1093static coroutine_fn int vhdx_co_readv(BlockDriverState *bs, int64_t sector_num,
1094 int nb_sectors, QEMUIOVector *qiov)
1095{
059e2fbb
JC
1096 BDRVVHDXState *s = bs->opaque;
1097 int ret = 0;
1098 VHDXSectorInfo sinfo;
1099 uint64_t bytes_done = 0;
1100 QEMUIOVector hd_qiov;
1101
1102 qemu_iovec_init(&hd_qiov, qiov->niov);
1103
1104 qemu_co_mutex_lock(&s->lock);
1105
1106 while (nb_sectors > 0) {
1107 /* We are a differencing file, so we need to inspect the sector bitmap
1108 * to see if we have the data or not */
1109 if (s->params.data_bits & VHDX_PARAMS_HAS_PARENT) {
1110 /* not supported yet */
1111 ret = -ENOTSUP;
1112 goto exit;
1113 } else {
1114 vhdx_block_translate(s, sector_num, nb_sectors, &sinfo);
1115
1116 qemu_iovec_reset(&hd_qiov);
1117 qemu_iovec_concat(&hd_qiov, qiov, bytes_done, sinfo.bytes_avail);
1118
1119 /* check the payload block state */
1120 switch (s->bat[sinfo.bat_idx] & VHDX_BAT_STATE_BIT_MASK) {
1121 case PAYLOAD_BLOCK_NOT_PRESENT: /* fall through */
0571df44
JC
1122 case PAYLOAD_BLOCK_UNDEFINED:
1123 case PAYLOAD_BLOCK_UNMAPPED:
a9d1e9da 1124 case PAYLOAD_BLOCK_UNMAPPED_v095:
059e2fbb
JC
1125 case PAYLOAD_BLOCK_ZERO:
1126 /* return zero */
1127 qemu_iovec_memset(&hd_qiov, 0, 0, sinfo.bytes_avail);
1128 break;
d92aa883 1129 case PAYLOAD_BLOCK_FULLY_PRESENT:
059e2fbb 1130 qemu_co_mutex_unlock(&s->lock);
28b04a8f 1131 ret = bdrv_co_readv(bs->file,
059e2fbb
JC
1132 sinfo.file_offset >> BDRV_SECTOR_BITS,
1133 sinfo.sectors_avail, &hd_qiov);
1134 qemu_co_mutex_lock(&s->lock);
1135 if (ret < 0) {
1136 goto exit;
1137 }
1138 break;
1139 case PAYLOAD_BLOCK_PARTIALLY_PRESENT:
1140 /* we don't yet support difference files, fall through
1141 * to error */
1142 default:
1143 ret = -EIO;
1144 goto exit;
1145 break;
1146 }
1147 nb_sectors -= sinfo.sectors_avail;
1148 sector_num += sinfo.sectors_avail;
1149 bytes_done += sinfo.bytes_avail;
1150 }
1151 }
1152 ret = 0;
1153exit:
1154 qemu_co_mutex_unlock(&s->lock);
1155 qemu_iovec_destroy(&hd_qiov);
1156 return ret;
e8d4e5ff
JC
1157}
1158
d92aa883
JC
1159/*
1160 * Allocate a new payload block at the end of the file.
1161 *
1162 * Allocation will happen at 1MB alignment inside the file
1163 *
1164 * Returns the file offset start of the new payload block
1165 */
1166static int vhdx_allocate_block(BlockDriverState *bs, BDRVVHDXState *s,
1167 uint64_t *new_offset)
1168{
9a4f4c31 1169 *new_offset = bdrv_getlength(bs->file->bs);
d92aa883
JC
1170
1171 /* per the spec, the address for a block is in units of 1MB */
1172 *new_offset = ROUND_UP(*new_offset, 1024 * 1024);
1173
7ea37c30
HR
1174 return bdrv_truncate(bs->file, *new_offset + s->block_size,
1175 PREALLOC_MODE_OFF, NULL);
d92aa883
JC
1176}
1177
1178/*
1179 * Update the BAT table entry with the new file offset, and the new entry
1180 * state */
1181static void vhdx_update_bat_table_entry(BlockDriverState *bs, BDRVVHDXState *s,
1182 VHDXSectorInfo *sinfo,
1183 uint64_t *bat_entry_le,
1184 uint64_t *bat_offset, int state)
1185{
1186 /* The BAT entry is a uint64, with 44 bits for the file offset in units of
1187 * 1MB, and 3 bits for the block state. */
cdf9634b
JC
1188 if ((state == PAYLOAD_BLOCK_ZERO) ||
1189 (state == PAYLOAD_BLOCK_UNDEFINED) ||
1190 (state == PAYLOAD_BLOCK_NOT_PRESENT) ||
1191 (state == PAYLOAD_BLOCK_UNMAPPED)) {
1192 s->bat[sinfo->bat_idx] = 0; /* For PAYLOAD_BLOCK_ZERO, the
1193 FileOffsetMB field is denoted as
1194 'reserved' in the v1.0 spec. If it is
1195 non-zero, MS Hyper-V will fail to read
1196 the disk image */
1197 } else {
1198 s->bat[sinfo->bat_idx] = sinfo->file_offset;
1199 }
e8d4e5ff 1200
d92aa883
JC
1201 s->bat[sinfo->bat_idx] |= state & VHDX_BAT_STATE_BIT_MASK;
1202
1203 *bat_entry_le = cpu_to_le64(s->bat[sinfo->bat_idx]);
1204 *bat_offset = s->bat_offset + sinfo->bat_idx * sizeof(VHDXBatEntry);
1205
1206}
e8d4e5ff 1207
c3906c5e
JC
1208/* Per the spec, on the first write of guest-visible data to the file the
1209 * data write guid must be updated in the header */
1210int vhdx_user_visible_write(BlockDriverState *bs, BDRVVHDXState *s)
1211{
1212 int ret = 0;
1213 if (s->first_visible_write) {
1214 s->first_visible_write = false;
1215 ret = vhdx_update_headers(bs, s, true, NULL);
1216 }
1217 return ret;
1218}
1219
e8d4e5ff
JC
1220static coroutine_fn int vhdx_co_writev(BlockDriverState *bs, int64_t sector_num,
1221 int nb_sectors, QEMUIOVector *qiov)
1222{
d92aa883
JC
1223 int ret = -ENOTSUP;
1224 BDRVVHDXState *s = bs->opaque;
1225 VHDXSectorInfo sinfo;
1226 uint64_t bytes_done = 0;
1227 uint64_t bat_entry = 0;
1228 uint64_t bat_entry_offset = 0;
1229 QEMUIOVector hd_qiov;
1230 struct iovec iov1 = { 0 };
1231 struct iovec iov2 = { 0 };
1232 int sectors_to_write;
1233 int bat_state;
1234 uint64_t bat_prior_offset = 0;
1235 bool bat_update = false;
1236
1237 qemu_iovec_init(&hd_qiov, qiov->niov);
1238
1239 qemu_co_mutex_lock(&s->lock);
1240
1241 ret = vhdx_user_visible_write(bs, s);
1242 if (ret < 0) {
1243 goto exit;
1244 }
1245
1246 while (nb_sectors > 0) {
1247 bool use_zero_buffers = false;
1248 bat_update = false;
1249 if (s->params.data_bits & VHDX_PARAMS_HAS_PARENT) {
1250 /* not supported yet */
1251 ret = -ENOTSUP;
1252 goto exit;
1253 } else {
1254 vhdx_block_translate(s, sector_num, nb_sectors, &sinfo);
1255 sectors_to_write = sinfo.sectors_avail;
1256
1257 qemu_iovec_reset(&hd_qiov);
1258 /* check the payload block state */
1259 bat_state = s->bat[sinfo.bat_idx] & VHDX_BAT_STATE_BIT_MASK;
1260 switch (bat_state) {
1261 case PAYLOAD_BLOCK_ZERO:
1262 /* in this case, we need to preserve zero writes for
1263 * data that is not part of this write, so we must pad
1264 * the rest of the buffer to zeroes */
1265
1266 /* if we are on a posix system with ftruncate() that extends
1267 * a file, then it is zero-filled for us. On Win32, the raw
1268 * layer uses SetFilePointer and SetFileEnd, which does not
1269 * zero fill AFAIK */
1270
1271 /* Queue another write of zero buffers if the underlying file
1272 * does not zero-fill on file extension */
1273
9a4f4c31 1274 if (bdrv_has_zero_init(bs->file->bs) == 0) {
d92aa883
JC
1275 use_zero_buffers = true;
1276
1277 /* zero fill the front, if any */
1278 if (sinfo.block_offset) {
1279 iov1.iov_len = sinfo.block_offset;
1280 iov1.iov_base = qemu_blockalign(bs, iov1.iov_len);
1281 memset(iov1.iov_base, 0, iov1.iov_len);
1282 qemu_iovec_concat_iov(&hd_qiov, &iov1, 1, 0,
d1a126c5 1283 iov1.iov_len);
d92aa883
JC
1284 sectors_to_write += iov1.iov_len >> BDRV_SECTOR_BITS;
1285 }
1286
1287 /* our actual data */
1288 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
1289 sinfo.bytes_avail);
1290
1291 /* zero fill the back, if any */
1292 if ((sinfo.bytes_avail - sinfo.block_offset) <
1293 s->block_size) {
1294 iov2.iov_len = s->block_size -
1295 (sinfo.bytes_avail + sinfo.block_offset);
1296 iov2.iov_base = qemu_blockalign(bs, iov2.iov_len);
1297 memset(iov2.iov_base, 0, iov2.iov_len);
1298 qemu_iovec_concat_iov(&hd_qiov, &iov2, 1, 0,
d1a126c5 1299 iov2.iov_len);
d92aa883
JC
1300 sectors_to_write += iov2.iov_len >> BDRV_SECTOR_BITS;
1301 }
1302 }
d92aa883
JC
1303 /* fall through */
1304 case PAYLOAD_BLOCK_NOT_PRESENT: /* fall through */
0571df44 1305 case PAYLOAD_BLOCK_UNMAPPED:
a9d1e9da 1306 case PAYLOAD_BLOCK_UNMAPPED_v095:
0571df44 1307 case PAYLOAD_BLOCK_UNDEFINED:
d92aa883
JC
1308 bat_prior_offset = sinfo.file_offset;
1309 ret = vhdx_allocate_block(bs, s, &sinfo.file_offset);
1310 if (ret < 0) {
1311 goto exit;
1312 }
1313 /* once we support differencing files, this may also be
1314 * partially present */
1315 /* update block state to the newly specified state */
1316 vhdx_update_bat_table_entry(bs, s, &sinfo, &bat_entry,
1317 &bat_entry_offset,
1318 PAYLOAD_BLOCK_FULLY_PRESENT);
1319 bat_update = true;
1320 /* since we just allocated a block, file_offset is the
1321 * beginning of the payload block. It needs to be the
1322 * write address, which includes the offset into the block */
1323 if (!use_zero_buffers) {
1324 sinfo.file_offset += sinfo.block_offset;
1325 }
1326 /* fall through */
1327 case PAYLOAD_BLOCK_FULLY_PRESENT:
1328 /* if the file offset address is in the header zone,
1329 * there is a problem */
1330 if (sinfo.file_offset < (1024 * 1024)) {
1331 ret = -EFAULT;
1332 goto error_bat_restore;
1333 }
1334
1335 if (!use_zero_buffers) {
1336 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
1337 sinfo.bytes_avail);
1338 }
1339 /* block exists, so we can just overwrite it */
1340 qemu_co_mutex_unlock(&s->lock);
25ec177d 1341 ret = bdrv_co_writev(bs->file,
d92aa883
JC
1342 sinfo.file_offset >> BDRV_SECTOR_BITS,
1343 sectors_to_write, &hd_qiov);
1344 qemu_co_mutex_lock(&s->lock);
1345 if (ret < 0) {
1346 goto error_bat_restore;
1347 }
1348 break;
1349 case PAYLOAD_BLOCK_PARTIALLY_PRESENT:
1350 /* we don't yet support difference files, fall through
1351 * to error */
1352 default:
1353 ret = -EIO;
1354 goto exit;
1355 break;
1356 }
1357
1358 if (bat_update) {
1359 /* this will update the BAT entry into the log journal, and
1360 * then flush the log journal out to disk */
1361 ret = vhdx_log_write_and_flush(bs, s, &bat_entry,
1362 sizeof(VHDXBatEntry),
1363 bat_entry_offset);
1364 if (ret < 0) {
1365 goto exit;
1366 }
1367 }
1368
1369 nb_sectors -= sinfo.sectors_avail;
1370 sector_num += sinfo.sectors_avail;
1371 bytes_done += sinfo.bytes_avail;
1372
1373 }
1374 }
1375
1376 goto exit;
1377
1378error_bat_restore:
1379 if (bat_update) {
1380 /* keep metadata in sync, and restore the bat entry state
1381 * if error. */
1382 sinfo.file_offset = bat_prior_offset;
1383 vhdx_update_bat_table_entry(bs, s, &sinfo, &bat_entry,
1384 &bat_entry_offset, bat_state);
1385 }
1386exit:
1387 qemu_vfree(iov1.iov_base);
1388 qemu_vfree(iov2.iov_base);
1389 qemu_co_mutex_unlock(&s->lock);
1390 qemu_iovec_destroy(&hd_qiov);
1391 return ret;
e8d4e5ff
JC
1392}
1393
1394
3412f7b1
JC
1395
1396/*
1397 * Create VHDX Headers
1398 *
1399 * There are 2 headers, and the highest sequence number will represent
1400 * the active header
1401 */
db1e80ee 1402static int vhdx_create_new_headers(BlockBackend *blk, uint64_t image_size,
3412f7b1
JC
1403 uint32_t log_size)
1404{
db1e80ee 1405 BlockDriverState *bs = blk_bs(blk);
cf2ab8fc 1406 BdrvChild *child;
3412f7b1
JC
1407 int ret = 0;
1408 VHDXHeader *hdr = NULL;
1409
5839e53b 1410 hdr = g_new0(VHDXHeader, 1);
3412f7b1
JC
1411
1412 hdr->signature = VHDX_HEADER_SIGNATURE;
1413 hdr->sequence_number = g_random_int();
1414 hdr->log_version = 0;
1415 hdr->version = 1;
1416 hdr->log_length = log_size;
1417 hdr->log_offset = VHDX_HEADER_SECTION_END;
1418 vhdx_guid_generate(&hdr->file_write_guid);
1419 vhdx_guid_generate(&hdr->data_write_guid);
1420
cf2ab8fc
KW
1421 /* XXX Ugly way to get blk->root, but that's a feature, not a bug. This
1422 * hack makes it obvious that vhdx_write_header() bypasses the BlockBackend
1423 * here, which it really shouldn't be doing. */
1424 child = QLIST_FIRST(&bs->parents);
1425 assert(!QLIST_NEXT(child, next_parent));
1426
1427 ret = vhdx_write_header(child, hdr, VHDX_HEADER1_OFFSET, false);
3412f7b1
JC
1428 if (ret < 0) {
1429 goto exit;
1430 }
1431 hdr->sequence_number++;
cf2ab8fc 1432 ret = vhdx_write_header(child, hdr, VHDX_HEADER2_OFFSET, false);
3412f7b1
JC
1433 if (ret < 0) {
1434 goto exit;
1435 }
1436
1437exit:
1438 g_free(hdr);
1439 return ret;
1440}
1441
e91a8b2f
JC
1442#define VHDX_METADATA_ENTRY_BUFFER_SIZE \
1443 (sizeof(VHDXFileParameters) +\
1444 sizeof(VHDXVirtualDiskSize) +\
1445 sizeof(VHDXPage83Data) +\
1446 sizeof(VHDXVirtualDiskLogicalSectorSize) +\
1447 sizeof(VHDXVirtualDiskPhysicalSectorSize))
3412f7b1
JC
1448
1449/*
1450 * Create the Metadata entries.
1451 *
1452 * For more details on the entries, see section 3.5 (pg 29) in the
1453 * VHDX 1.00 specification.
1454 *
1455 * We support 5 metadata entries (all required by spec):
1456 * File Parameters,
1457 * Virtual Disk Size,
1458 * Page 83 Data,
1459 * Logical Sector Size,
1460 * Physical Sector Size
1461 *
1462 * The first 64KB of the Metadata section is reserved for the metadata
1463 * header and entries; beyond that, the metadata items themselves reside.
1464 */
db1e80ee 1465static int vhdx_create_new_metadata(BlockBackend *blk,
3412f7b1
JC
1466 uint64_t image_size,
1467 uint32_t block_size,
1468 uint32_t sector_size,
1469 uint64_t metadata_offset,
1470 VHDXImageType type)
1471{
1472 int ret = 0;
1473 uint32_t offset = 0;
1474 void *buffer = NULL;
1475 void *entry_buffer;
a8f15a27 1476 VHDXMetadataTableHeader *md_table;
3412f7b1
JC
1477 VHDXMetadataTableEntry *md_table_entry;
1478
1479 /* Metadata entries */
1480 VHDXFileParameters *mt_file_params;
1481 VHDXVirtualDiskSize *mt_virtual_size;
1482 VHDXPage83Data *mt_page83;
1483 VHDXVirtualDiskLogicalSectorSize *mt_log_sector_size;
1484 VHDXVirtualDiskPhysicalSectorSize *mt_phys_sector_size;
1485
e91a8b2f 1486 entry_buffer = g_malloc0(VHDX_METADATA_ENTRY_BUFFER_SIZE);
3412f7b1
JC
1487
1488 mt_file_params = entry_buffer;
1489 offset += sizeof(VHDXFileParameters);
1490 mt_virtual_size = entry_buffer + offset;
1491 offset += sizeof(VHDXVirtualDiskSize);
1492 mt_page83 = entry_buffer + offset;
1493 offset += sizeof(VHDXPage83Data);
1494 mt_log_sector_size = entry_buffer + offset;
1495 offset += sizeof(VHDXVirtualDiskLogicalSectorSize);
1496 mt_phys_sector_size = entry_buffer + offset;
1497
1498 mt_file_params->block_size = cpu_to_le32(block_size);
1499 if (type == VHDX_TYPE_FIXED) {
1500 mt_file_params->data_bits |= VHDX_PARAMS_LEAVE_BLOCKS_ALLOCED;
1501 cpu_to_le32s(&mt_file_params->data_bits);
1502 }
1503
1504 vhdx_guid_generate(&mt_page83->page_83_data);
1505 cpu_to_leguids(&mt_page83->page_83_data);
1506 mt_virtual_size->virtual_disk_size = cpu_to_le64(image_size);
1507 mt_log_sector_size->logical_sector_size = cpu_to_le32(sector_size);
1508 mt_phys_sector_size->physical_sector_size = cpu_to_le32(sector_size);
1509
1510 buffer = g_malloc0(VHDX_HEADER_BLOCK_SIZE);
1511 md_table = buffer;
1512
1513 md_table->signature = VHDX_METADATA_SIGNATURE;
1514 md_table->entry_count = 5;
1515 vhdx_metadata_header_le_export(md_table);
1516
1517
1518 /* This will reference beyond the reserved table portion */
1519 offset = 64 * KiB;
1520
1521 md_table_entry = buffer + sizeof(VHDXMetadataTableHeader);
1522
1523 md_table_entry[0].item_id = file_param_guid;
1524 md_table_entry[0].offset = offset;
1525 md_table_entry[0].length = sizeof(VHDXFileParameters);
1526 md_table_entry[0].data_bits |= VHDX_META_FLAGS_IS_REQUIRED;
1527 offset += md_table_entry[0].length;
1528 vhdx_metadata_entry_le_export(&md_table_entry[0]);
1529
1530 md_table_entry[1].item_id = virtual_size_guid;
1531 md_table_entry[1].offset = offset;
1532 md_table_entry[1].length = sizeof(VHDXVirtualDiskSize);
1533 md_table_entry[1].data_bits |= VHDX_META_FLAGS_IS_REQUIRED |
1534 VHDX_META_FLAGS_IS_VIRTUAL_DISK;
1535 offset += md_table_entry[1].length;
1536 vhdx_metadata_entry_le_export(&md_table_entry[1]);
1537
1538 md_table_entry[2].item_id = page83_guid;
1539 md_table_entry[2].offset = offset;
1540 md_table_entry[2].length = sizeof(VHDXPage83Data);
1541 md_table_entry[2].data_bits |= VHDX_META_FLAGS_IS_REQUIRED |
1542 VHDX_META_FLAGS_IS_VIRTUAL_DISK;
1543 offset += md_table_entry[2].length;
1544 vhdx_metadata_entry_le_export(&md_table_entry[2]);
1545
1546 md_table_entry[3].item_id = logical_sector_guid;
1547 md_table_entry[3].offset = offset;
1548 md_table_entry[3].length = sizeof(VHDXVirtualDiskLogicalSectorSize);
1549 md_table_entry[3].data_bits |= VHDX_META_FLAGS_IS_REQUIRED |
1550 VHDX_META_FLAGS_IS_VIRTUAL_DISK;
1551 offset += md_table_entry[3].length;
1552 vhdx_metadata_entry_le_export(&md_table_entry[3]);
1553
1554 md_table_entry[4].item_id = phys_sector_guid;
1555 md_table_entry[4].offset = offset;
1556 md_table_entry[4].length = sizeof(VHDXVirtualDiskPhysicalSectorSize);
1557 md_table_entry[4].data_bits |= VHDX_META_FLAGS_IS_REQUIRED |
1558 VHDX_META_FLAGS_IS_VIRTUAL_DISK;
1559 vhdx_metadata_entry_le_export(&md_table_entry[4]);
1560
db1e80ee 1561 ret = blk_pwrite(blk, metadata_offset, buffer, VHDX_HEADER_BLOCK_SIZE, 0);
3412f7b1
JC
1562 if (ret < 0) {
1563 goto exit;
1564 }
1565
db1e80ee
KW
1566 ret = blk_pwrite(blk, metadata_offset + (64 * KiB), entry_buffer,
1567 VHDX_METADATA_ENTRY_BUFFER_SIZE, 0);
3412f7b1
JC
1568 if (ret < 0) {
1569 goto exit;
1570 }
1571
1572
1573exit:
1574 g_free(buffer);
1575 g_free(entry_buffer);
1576 return ret;
1577}
1578
1579/* This create the actual BAT itself. We currently only support
1580 * 'Dynamic' and 'Fixed' image types.
1581 *
1582 * Dynamic images: default state of the BAT is all zeroes.
1583 *
1584 * Fixed images: default state of the BAT is fully populated, with
1585 * file offsets and state PAYLOAD_BLOCK_FULLY_PRESENT.
1586 */
db1e80ee 1587static int vhdx_create_bat(BlockBackend *blk, BDRVVHDXState *s,
3412f7b1 1588 uint64_t image_size, VHDXImageType type,
4f75b52a 1589 bool use_zero_blocks, uint64_t file_offset,
55b9392b 1590 uint32_t length, Error **errp)
3412f7b1
JC
1591{
1592 int ret = 0;
1593 uint64_t data_file_offset;
1594 uint64_t total_sectors = 0;
1595 uint64_t sector_num = 0;
1596 uint64_t unused;
1597 int block_state;
1598 VHDXSectorInfo sinfo;
1599
1600 assert(s->bat == NULL);
1601
1602 /* this gives a data start after BAT/bitmap entries, and well
1603 * past any metadata entries (with a 4 MB buffer for future
1604 * expansion */
4f75b52a 1605 data_file_offset = file_offset + length + 5 * MiB;
3412f7b1
JC
1606 total_sectors = image_size >> s->logical_sector_size_bits;
1607
1608 if (type == VHDX_TYPE_DYNAMIC) {
1609 /* All zeroes, so we can just extend the file - the end of the BAT
1610 * is the furthest thing we have written yet */
3a691c50 1611 ret = blk_truncate(blk, data_file_offset, PREALLOC_MODE_OFF, errp);
3412f7b1
JC
1612 if (ret < 0) {
1613 goto exit;
1614 }
1615 } else if (type == VHDX_TYPE_FIXED) {
3a691c50
HR
1616 ret = blk_truncate(blk, data_file_offset + image_size,
1617 PREALLOC_MODE_OFF, errp);
3412f7b1
JC
1618 if (ret < 0) {
1619 goto exit;
1620 }
1621 } else {
55b9392b 1622 error_setg(errp, "Unsupported image type");
3412f7b1
JC
1623 ret = -ENOTSUP;
1624 goto exit;
1625 }
1626
1627 if (type == VHDX_TYPE_FIXED ||
1628 use_zero_blocks ||
db1e80ee 1629 bdrv_has_zero_init(blk_bs(blk)) == 0) {
3412f7b1 1630 /* for a fixed file, the default BAT entry is not zero */
a67e128a 1631 s->bat = g_try_malloc0(length);
a011898d 1632 if (length && s->bat == NULL) {
55b9392b 1633 error_setg(errp, "Failed to allocate memory for the BAT");
a67e128a
KW
1634 ret = -ENOMEM;
1635 goto exit;
1636 }
3412f7b1
JC
1637 block_state = type == VHDX_TYPE_FIXED ? PAYLOAD_BLOCK_FULLY_PRESENT :
1638 PAYLOAD_BLOCK_NOT_PRESENT;
1639 block_state = use_zero_blocks ? PAYLOAD_BLOCK_ZERO : block_state;
1640 /* fill the BAT by emulating sector writes of sectors_per_block size */
1641 while (sector_num < total_sectors) {
1642 vhdx_block_translate(s, sector_num, s->sectors_per_block, &sinfo);
1643 sinfo.file_offset = data_file_offset +
1644 (sector_num << s->logical_sector_size_bits);
1645 sinfo.file_offset = ROUND_UP(sinfo.file_offset, MiB);
db1e80ee 1646 vhdx_update_bat_table_entry(blk_bs(blk), s, &sinfo, &unused, &unused,
3412f7b1
JC
1647 block_state);
1648 cpu_to_le64s(&s->bat[sinfo.bat_idx]);
1649 sector_num += s->sectors_per_block;
1650 }
db1e80ee 1651 ret = blk_pwrite(blk, file_offset, s->bat, length, 0);
3412f7b1 1652 if (ret < 0) {
55b9392b 1653 error_setg_errno(errp, -ret, "Failed to write the BAT");
3412f7b1
JC
1654 goto exit;
1655 }
1656 }
1657
1658
1659
1660exit:
1661 g_free(s->bat);
1662 return ret;
1663}
1664
1665/* Creates the region table header, and region table entries.
1666 * There are 2 supported region table entries: BAT, and Metadata/
1667 *
1668 * As the calculations for the BAT region table are also needed
1669 * to create the BAT itself, we will also cause the BAT to be
1670 * created.
1671 */
db1e80ee 1672static int vhdx_create_new_region_table(BlockBackend *blk,
3412f7b1
JC
1673 uint64_t image_size,
1674 uint32_t block_size,
1675 uint32_t sector_size,
1676 uint32_t log_size,
1677 bool use_zero_blocks,
1678 VHDXImageType type,
55b9392b
HR
1679 uint64_t *metadata_offset,
1680 Error **errp)
3412f7b1
JC
1681{
1682 int ret = 0;
1683 uint32_t offset = 0;
1684 void *buffer = NULL;
4f75b52a
JC
1685 uint64_t bat_file_offset;
1686 uint32_t bat_length;
3412f7b1
JC
1687 BDRVVHDXState *s = NULL;
1688 VHDXRegionTableHeader *region_table;
1689 VHDXRegionTableEntry *rt_bat;
1690 VHDXRegionTableEntry *rt_metadata;
1691
1692 assert(metadata_offset != NULL);
1693
1694 /* Populate enough of the BDRVVHDXState to be able to use the
1695 * pre-existing BAT calculation, translation, and update functions */
5839e53b 1696 s = g_new0(BDRVVHDXState, 1);
3412f7b1
JC
1697
1698 s->chunk_ratio = (VHDX_MAX_SECTORS_PER_BLOCK) *
1699 (uint64_t) sector_size / (uint64_t) block_size;
1700
1701 s->sectors_per_block = block_size / sector_size;
1702 s->virtual_disk_size = image_size;
1703 s->block_size = block_size;
1704 s->logical_sector_size = sector_size;
1705
1706 vhdx_set_shift_bits(s);
1707
1708 vhdx_calc_bat_entries(s);
1709
1710 /* At this point the VHDX state is populated enough for creation */
1711
1712 /* a single buffer is used so we can calculate the checksum over the
1713 * entire 64KB block */
1714 buffer = g_malloc0(VHDX_HEADER_BLOCK_SIZE);
1715 region_table = buffer;
1716 offset += sizeof(VHDXRegionTableHeader);
1717 rt_bat = buffer + offset;
1718 offset += sizeof(VHDXRegionTableEntry);
1719 rt_metadata = buffer + offset;
1720
1721 region_table->signature = VHDX_REGION_SIGNATURE;
1722 region_table->entry_count = 2; /* BAT and Metadata */
1723
1724 rt_bat->guid = bat_guid;
1725 rt_bat->length = ROUND_UP(s->bat_entries * sizeof(VHDXBatEntry), MiB);
1726 rt_bat->file_offset = ROUND_UP(VHDX_HEADER_SECTION_END + log_size, MiB);
1727 s->bat_offset = rt_bat->file_offset;
1728
1729 rt_metadata->guid = metadata_guid;
1730 rt_metadata->file_offset = ROUND_UP(rt_bat->file_offset + rt_bat->length,
1731 MiB);
1732 rt_metadata->length = 1 * MiB; /* min size, and more than enough */
1733 *metadata_offset = rt_metadata->file_offset;
1734
4f75b52a
JC
1735 bat_file_offset = rt_bat->file_offset;
1736 bat_length = rt_bat->length;
1737
1738 vhdx_region_header_le_export(region_table);
1739 vhdx_region_entry_le_export(rt_bat);
1740 vhdx_region_entry_le_export(rt_metadata);
1741
3412f7b1
JC
1742 vhdx_update_checksum(buffer, VHDX_HEADER_BLOCK_SIZE,
1743 offsetof(VHDXRegionTableHeader, checksum));
1744
1745
1746 /* The region table gives us the data we need to create the BAT,
1747 * so do that now */
db1e80ee 1748 ret = vhdx_create_bat(blk, s, image_size, type, use_zero_blocks,
55b9392b 1749 bat_file_offset, bat_length, errp);
4f75b52a
JC
1750 if (ret < 0) {
1751 goto exit;
1752 }
3412f7b1
JC
1753
1754 /* Now write out the region headers to disk */
db1e80ee
KW
1755 ret = blk_pwrite(blk, VHDX_REGION_TABLE_OFFSET, buffer,
1756 VHDX_HEADER_BLOCK_SIZE, 0);
3412f7b1 1757 if (ret < 0) {
55b9392b 1758 error_setg_errno(errp, -ret, "Failed to write first region table");
3412f7b1
JC
1759 goto exit;
1760 }
1761
db1e80ee
KW
1762 ret = blk_pwrite(blk, VHDX_REGION_TABLE2_OFFSET, buffer,
1763 VHDX_HEADER_BLOCK_SIZE, 0);
3412f7b1 1764 if (ret < 0) {
55b9392b 1765 error_setg_errno(errp, -ret, "Failed to write second region table");
3412f7b1
JC
1766 goto exit;
1767 }
1768
3412f7b1
JC
1769exit:
1770 g_free(s);
1771 g_free(buffer);
1772 return ret;
1773}
1774
1775/* We need to create the following elements:
1776 *
1777 * .-----------------------------------------------------------------.
1778 * | (A) | (B) | (C) | (D) | (E) |
1779 * | File ID | Header1 | Header 2 | Region Tbl 1 | Region Tbl 2 |
1780 * | | | | | |
1781 * .-----------------------------------------------------------------.
1782 * 0 64KB 128KB 192KB 256KB 320KB
1783 *
1784 *
1785 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1786 * | (F) | (G) | (H) | |
1787 * | Journal Log | BAT / Bitmap | Metadata | .... data ...... |
1788 * | | | | |
1789 * .---- ~ ----------- ~ ------------ ~ ---------------- ~ -----------.
1790 * 1MB
1791 */
5366092c 1792static int vhdx_create(const char *filename, QemuOpts *opts, Error **errp)
3412f7b1
JC
1793{
1794 int ret = 0;
1795 uint64_t image_size = (uint64_t) 2 * GiB;
1796 uint32_t log_size = 1 * MiB;
1797 uint32_t block_size = 0;
1798 uint64_t signature;
1799 uint64_t metadata_offset;
1800 bool use_zero_blocks = false;
1801
1802 gunichar2 *creator = NULL;
1803 glong creator_items;
10bf03af 1804 BlockBackend *blk;
5366092c 1805 char *type = NULL;
3412f7b1
JC
1806 VHDXImageType image_type;
1807 Error *local_err = NULL;
1808
c2eb918e
HT
1809 image_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
1810 BDRV_SECTOR_SIZE);
5366092c
CL
1811 log_size = qemu_opt_get_size_del(opts, VHDX_BLOCK_OPT_LOG_SIZE, 0);
1812 block_size = qemu_opt_get_size_del(opts, VHDX_BLOCK_OPT_BLOCK_SIZE, 0);
1813 type = qemu_opt_get_del(opts, BLOCK_OPT_SUBFMT);
30af51ce 1814 use_zero_blocks = qemu_opt_get_bool_del(opts, VHDX_BLOCK_OPT_ZERO, true);
3412f7b1
JC
1815
1816 if (image_size > VHDX_MAX_IMAGE_SIZE) {
1817 error_setg_errno(errp, EINVAL, "Image size too large; max of 64TB");
1818 ret = -EINVAL;
1819 goto exit;
1820 }
1821
1822 if (type == NULL) {
5366092c 1823 type = g_strdup("dynamic");
3412f7b1
JC
1824 }
1825
1826 if (!strcmp(type, "dynamic")) {
1827 image_type = VHDX_TYPE_DYNAMIC;
1828 } else if (!strcmp(type, "fixed")) {
1829 image_type = VHDX_TYPE_FIXED;
1830 } else if (!strcmp(type, "differencing")) {
1831 error_setg_errno(errp, ENOTSUP,
1832 "Differencing files not yet supported");
1833 ret = -ENOTSUP;
1834 goto exit;
1835 } else {
55b9392b 1836 error_setg(errp, "Invalid subformat '%s'", type);
3412f7b1
JC
1837 ret = -EINVAL;
1838 goto exit;
1839 }
1840
1841 /* These are pretty arbitrary, and mainly designed to keep the BAT
1842 * size reasonable to load into RAM */
1843 if (block_size == 0) {
1844 if (image_size > 32 * TiB) {
1845 block_size = 64 * MiB;
1846 } else if (image_size > (uint64_t) 100 * GiB) {
1847 block_size = 32 * MiB;
1848 } else if (image_size > 1 * GiB) {
1849 block_size = 16 * MiB;
1850 } else {
1851 block_size = 8 * MiB;
1852 }
1853 }
1854
1855
1856 /* make the log size close to what was specified, but must be
1857 * min 1MB, and multiple of 1MB */
1858 log_size = ROUND_UP(log_size, MiB);
1859
1860 block_size = ROUND_UP(block_size, MiB);
1861 block_size = block_size > VHDX_BLOCK_SIZE_MAX ? VHDX_BLOCK_SIZE_MAX :
1862 block_size;
1863
c282e1fd 1864 ret = bdrv_create_file(filename, opts, &local_err);
3412f7b1
JC
1865 if (ret < 0) {
1866 error_propagate(errp, local_err);
1867 goto exit;
1868 }
1869
efaa7c4e 1870 blk = blk_new_open(filename, NULL, NULL,
55880601
KW
1871 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
1872 &local_err);
10bf03af 1873 if (blk == NULL) {
3412f7b1 1874 error_propagate(errp, local_err);
10bf03af 1875 ret = -EIO;
3412f7b1
JC
1876 goto exit;
1877 }
1878
10bf03af
KW
1879 blk_set_allow_write_beyond_eof(blk, true);
1880
3412f7b1
JC
1881 /* Create (A) */
1882
1883 /* The creator field is optional, but may be useful for
1884 * debugging / diagnostics */
1885 creator = g_utf8_to_utf16("QEMU v" QEMU_VERSION, -1, NULL,
1886 &creator_items, NULL);
1887 signature = cpu_to_le64(VHDX_FILE_SIGNATURE);
8341f00d
EB
1888 ret = blk_pwrite(blk, VHDX_FILE_ID_OFFSET, &signature, sizeof(signature),
1889 0);
3412f7b1 1890 if (ret < 0) {
55b9392b 1891 error_setg_errno(errp, -ret, "Failed to write file signature");
3412f7b1
JC
1892 goto delete_and_exit;
1893 }
1894 if (creator) {
10bf03af 1895 ret = blk_pwrite(blk, VHDX_FILE_ID_OFFSET + sizeof(signature),
8341f00d 1896 creator, creator_items * sizeof(gunichar2), 0);
3412f7b1 1897 if (ret < 0) {
55b9392b 1898 error_setg_errno(errp, -ret, "Failed to write creator field");
3412f7b1
JC
1899 goto delete_and_exit;
1900 }
1901 }
1902
1903
1904 /* Creates (B),(C) */
db1e80ee 1905 ret = vhdx_create_new_headers(blk, image_size, log_size);
3412f7b1 1906 if (ret < 0) {
55b9392b 1907 error_setg_errno(errp, -ret, "Failed to write image headers");
3412f7b1
JC
1908 goto delete_and_exit;
1909 }
1910
1911 /* Creates (D),(E),(G) explicitly. (F) created as by-product */
db1e80ee 1912 ret = vhdx_create_new_region_table(blk, image_size, block_size, 512,
3412f7b1 1913 log_size, use_zero_blocks, image_type,
55b9392b 1914 &metadata_offset, errp);
3412f7b1
JC
1915 if (ret < 0) {
1916 goto delete_and_exit;
1917 }
1918
1919 /* Creates (H) */
db1e80ee 1920 ret = vhdx_create_new_metadata(blk, image_size, block_size, 512,
3412f7b1
JC
1921 metadata_offset, image_type);
1922 if (ret < 0) {
55b9392b 1923 error_setg_errno(errp, -ret, "Failed to initialize metadata");
3412f7b1
JC
1924 goto delete_and_exit;
1925 }
1926
1927
3412f7b1 1928delete_and_exit:
10bf03af 1929 blk_unref(blk);
3412f7b1 1930exit:
5366092c 1931 g_free(type);
3412f7b1
JC
1932 g_free(creator);
1933 return ret;
1934}
1935
7e30e6a6
JC
1936/* If opened r/w, the VHDX driver will automatically replay the log,
1937 * if one is present, inside the vhdx_open() call.
1938 *
1939 * If qemu-img check -r all is called, the image is automatically opened
1940 * r/w and any log has already been replayed, so there is nothing (currently)
1941 * for us to do here
1942 */
1943static int vhdx_check(BlockDriverState *bs, BdrvCheckResult *result,
1944 BdrvCheckMode fix)
1945{
1946 BDRVVHDXState *s = bs->opaque;
1947
1948 if (s->log_replayed_on_open) {
1949 result->corruptions_fixed++;
1950 }
1951 return 0;
1952}
1953
5366092c
CL
1954static QemuOptsList vhdx_create_opts = {
1955 .name = "vhdx-create-opts",
1956 .head = QTAILQ_HEAD_INITIALIZER(vhdx_create_opts.head),
1957 .desc = {
1958 {
1959 .name = BLOCK_OPT_SIZE,
1960 .type = QEMU_OPT_SIZE,
1961 .help = "Virtual disk size; max of 64TB."
1962 },
1963 {
1964 .name = VHDX_BLOCK_OPT_LOG_SIZE,
1965 .type = QEMU_OPT_SIZE,
1966 .def_value_str = stringify(DEFAULT_LOG_SIZE),
1967 .help = "Log size; min 1MB."
1968 },
1969 {
1970 .name = VHDX_BLOCK_OPT_BLOCK_SIZE,
1971 .type = QEMU_OPT_SIZE,
1972 .def_value_str = stringify(0),
1973 .help = "Block Size; min 1MB, max 256MB. " \
1974 "0 means auto-calculate based on image size."
1975 },
1976 {
1977 .name = BLOCK_OPT_SUBFMT,
1978 .type = QEMU_OPT_STRING,
1979 .help = "VHDX format type, can be either 'dynamic' or 'fixed'. "\
1980 "Default is 'dynamic'."
1981 },
1982 {
1983 .name = VHDX_BLOCK_OPT_ZERO,
1984 .type = QEMU_OPT_BOOL,
30af51ce
JC
1985 .help = "Force use of payload blocks of type 'ZERO'. "\
1986 "Non-standard, but default. Do not set to 'off' when "\
1987 "using 'qemu-img convert' with subformat=dynamic."
5366092c
CL
1988 },
1989 { NULL }
1990 }
3412f7b1
JC
1991};
1992
e8d4e5ff
JC
1993static BlockDriver bdrv_vhdx = {
1994 .format_name = "vhdx",
1995 .instance_size = sizeof(BDRVVHDXState),
1996 .bdrv_probe = vhdx_probe,
1997 .bdrv_open = vhdx_open,
1998 .bdrv_close = vhdx_close,
1999 .bdrv_reopen_prepare = vhdx_reopen_prepare,
862f215f 2000 .bdrv_child_perm = bdrv_format_default_perms,
e8d4e5ff
JC
2001 .bdrv_co_readv = vhdx_co_readv,
2002 .bdrv_co_writev = vhdx_co_writev,
c282e1fd 2003 .bdrv_create = vhdx_create,
97b00e28 2004 .bdrv_get_info = vhdx_get_info,
7e30e6a6 2005 .bdrv_check = vhdx_check,
85b712c9 2006 .bdrv_has_zero_init = bdrv_has_zero_init_1,
3412f7b1 2007
5366092c 2008 .create_opts = &vhdx_create_opts,
e8d4e5ff
JC
2009};
2010
2011static void bdrv_vhdx_init(void)
2012{
2013 bdrv_register(&bdrv_vhdx);
2014}
2015
2016block_init(bdrv_vhdx_init);