block/vpc: use current_size field for XenConverter VHD images
[qemu/ar7.git] / block / vpc.c
blobc9ebc4af30d6b25062ed1a879b5ea25e0fdad7e0
1 /*
2 * Block driver for Connectix / Microsoft Virtual PC images
4 * Copyright (c) 2005 Alex Beregszaszi
5 * Copyright (c) 2009 Kevin Wolf <kwolf@suse.de>
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "qemu-common.h"
28 #include "block/block_int.h"
29 #include "sysemu/block-backend.h"
30 #include "qemu/module.h"
31 #include "migration/migration.h"
32 #if defined(CONFIG_UUID)
33 #include <uuid/uuid.h>
34 #endif
36 /**************************************************************/
38 #define HEADER_SIZE 512
40 //#define CACHE
42 enum vhd_type {
43 VHD_FIXED = 2,
44 VHD_DYNAMIC = 3,
45 VHD_DIFFERENCING = 4,
48 // Seconds since Jan 1, 2000 0:00:00 (UTC)
49 #define VHD_TIMESTAMP_BASE 946684800
51 #define VHD_CHS_MAX_C 65535LL
52 #define VHD_CHS_MAX_H 16
53 #define VHD_CHS_MAX_S 255
55 #define VHD_MAX_SECTORS (65535LL * 255 * 255)
56 #define VHD_MAX_GEOMETRY (VHD_CHS_MAX_C * VHD_CHS_MAX_H * VHD_CHS_MAX_S)
58 #define VPC_OPT_FORCE_SIZE "force_size"
60 // always big-endian
61 typedef struct vhd_footer {
62 char creator[8]; // "conectix"
63 uint32_t features;
64 uint32_t version;
66 // Offset of next header structure, 0xFFFFFFFF if none
67 uint64_t data_offset;
69 // Seconds since Jan 1, 2000 0:00:00 (UTC)
70 uint32_t timestamp;
72 char creator_app[4]; // "vpc "
73 uint16_t major;
74 uint16_t minor;
75 char creator_os[4]; // "Wi2k"
77 uint64_t orig_size;
78 uint64_t current_size;
80 uint16_t cyls;
81 uint8_t heads;
82 uint8_t secs_per_cyl;
84 uint32_t type;
86 // Checksum of the Hard Disk Footer ("one's complement of the sum of all
87 // the bytes in the footer without the checksum field")
88 uint32_t checksum;
90 // UUID used to identify a parent hard disk (backing file)
91 uint8_t uuid[16];
93 uint8_t in_saved_state;
94 } QEMU_PACKED VHDFooter;
96 typedef struct vhd_dyndisk_header {
97 char magic[8]; // "cxsparse"
99 // Offset of next header structure, 0xFFFFFFFF if none
100 uint64_t data_offset;
102 // Offset of the Block Allocation Table (BAT)
103 uint64_t table_offset;
105 uint32_t version;
106 uint32_t max_table_entries; // 32bit/entry
108 // 2 MB by default, must be a power of two
109 uint32_t block_size;
111 uint32_t checksum;
112 uint8_t parent_uuid[16];
113 uint32_t parent_timestamp;
114 uint32_t reserved;
116 // Backing file name (in UTF-16)
117 uint8_t parent_name[512];
119 struct {
120 uint32_t platform;
121 uint32_t data_space;
122 uint32_t data_length;
123 uint32_t reserved;
124 uint64_t data_offset;
125 } parent_locator[8];
126 } QEMU_PACKED VHDDynDiskHeader;
128 typedef struct BDRVVPCState {
129 CoMutex lock;
130 uint8_t footer_buf[HEADER_SIZE];
131 uint64_t free_data_block_offset;
132 int max_table_entries;
133 uint32_t *pagetable;
134 uint64_t bat_offset;
135 uint64_t last_bitmap_offset;
137 uint32_t block_size;
138 uint32_t bitmap_size;
139 bool force_use_chs;
140 bool force_use_sz;
142 #ifdef CACHE
143 uint8_t *pageentry_u8;
144 uint32_t *pageentry_u32;
145 uint16_t *pageentry_u16;
147 uint64_t last_bitmap;
148 #endif
150 Error *migration_blocker;
151 } BDRVVPCState;
153 #define VPC_OPT_SIZE_CALC "force_size_calc"
154 static QemuOptsList vpc_runtime_opts = {
155 .name = "vpc-runtime-opts",
156 .head = QTAILQ_HEAD_INITIALIZER(vpc_runtime_opts.head),
157 .desc = {
159 .name = VPC_OPT_SIZE_CALC,
160 .type = QEMU_OPT_STRING,
161 .help = "Force disk size calculation to use either CHS geometry, "
162 "or use the disk current_size specified in the VHD footer. "
163 "{chs, current_size}"
165 { /* end of list */ }
169 static uint32_t vpc_checksum(uint8_t* buf, size_t size)
171 uint32_t res = 0;
172 int i;
174 for (i = 0; i < size; i++)
175 res += buf[i];
177 return ~res;
181 static int vpc_probe(const uint8_t *buf, int buf_size, const char *filename)
183 if (buf_size >= 8 && !strncmp((char *)buf, "conectix", 8))
184 return 100;
185 return 0;
188 static void vpc_parse_options(BlockDriverState *bs, QemuOpts *opts,
189 Error **errp)
191 BDRVVPCState *s = bs->opaque;
192 const char *size_calc;
194 size_calc = qemu_opt_get(opts, VPC_OPT_SIZE_CALC);
196 if (!size_calc) {
197 /* no override, use autodetect only */
198 } else if (!strcmp(size_calc, "current_size")) {
199 s->force_use_sz = true;
200 } else if (!strcmp(size_calc, "chs")) {
201 s->force_use_chs = true;
202 } else {
203 error_setg(errp, "Invalid size calculation mode: '%s'", size_calc);
207 static int vpc_open(BlockDriverState *bs, QDict *options, int flags,
208 Error **errp)
210 BDRVVPCState *s = bs->opaque;
211 int i;
212 VHDFooter *footer;
213 VHDDynDiskHeader *dyndisk_header;
214 QemuOpts *opts = NULL;
215 Error *local_err = NULL;
216 bool use_chs;
217 uint8_t buf[HEADER_SIZE];
218 uint32_t checksum;
219 uint64_t computed_size;
220 uint64_t pagetable_size;
221 int disk_type = VHD_DYNAMIC;
222 int ret;
224 opts = qemu_opts_create(&vpc_runtime_opts, NULL, 0, &error_abort);
225 qemu_opts_absorb_qdict(opts, options, &local_err);
226 if (local_err) {
227 error_propagate(errp, local_err);
228 ret = -EINVAL;
229 goto fail;
232 vpc_parse_options(bs, opts, &local_err);
233 if (local_err) {
234 error_propagate(errp, local_err);
235 ret = -EINVAL;
236 goto fail;
239 ret = bdrv_pread(bs->file->bs, 0, s->footer_buf, HEADER_SIZE);
240 if (ret < 0) {
241 goto fail;
244 footer = (VHDFooter *) s->footer_buf;
245 if (strncmp(footer->creator, "conectix", 8)) {
246 int64_t offset = bdrv_getlength(bs->file->bs);
247 if (offset < 0) {
248 ret = offset;
249 goto fail;
250 } else if (offset < HEADER_SIZE) {
251 ret = -EINVAL;
252 goto fail;
255 /* If a fixed disk, the footer is found only at the end of the file */
256 ret = bdrv_pread(bs->file->bs, offset-HEADER_SIZE, s->footer_buf,
257 HEADER_SIZE);
258 if (ret < 0) {
259 goto fail;
261 if (strncmp(footer->creator, "conectix", 8)) {
262 error_setg(errp, "invalid VPC image");
263 ret = -EINVAL;
264 goto fail;
266 disk_type = VHD_FIXED;
269 checksum = be32_to_cpu(footer->checksum);
270 footer->checksum = 0;
271 if (vpc_checksum(s->footer_buf, HEADER_SIZE) != checksum)
272 fprintf(stderr, "block-vpc: The header checksum of '%s' is "
273 "incorrect.\n", bs->filename);
275 /* Write 'checksum' back to footer, or else will leave it with zero. */
276 footer->checksum = cpu_to_be32(checksum);
278 // The visible size of a image in Virtual PC depends on the geometry
279 // rather than on the size stored in the footer (the size in the footer
280 // is too large usually)
281 bs->total_sectors = (int64_t)
282 be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl;
284 /* Microsoft Virtual PC and Microsoft Hyper-V produce and read
285 * VHD image sizes differently. VPC will rely on CHS geometry,
286 * while Hyper-V and disk2vhd use the size specified in the footer.
288 * We use a couple of approaches to try and determine the correct method:
289 * look at the Creator App field, and look for images that have CHS
290 * geometry that is the maximum value.
292 * If the CHS geometry is the maximum CHS geometry, then we assume that
293 * the size is the footer->current_size to avoid truncation. Otherwise,
294 * we follow the table based on footer->creator_app:
296 * Known creator apps:
297 * 'vpc ' : CHS Virtual PC (uses disk geometry)
298 * 'qemu' : CHS QEMU (uses disk geometry)
299 * 'qem2' : current_size QEMU (uses current_size)
300 * 'win ' : current_size Hyper-V
301 * 'd2v ' : current_size Disk2vhd
302 * 'tap\0' : current_size XenServer
303 * 'CTXS' : current_size XenConverter
305 * The user can override the table values via drive options, however
306 * even with an override we will still use current_size for images
307 * that have CHS geometry of the maximum size.
309 use_chs = (!!strncmp(footer->creator_app, "win ", 4) &&
310 !!strncmp(footer->creator_app, "qem2", 4) &&
311 !!strncmp(footer->creator_app, "d2v ", 4) &&
312 !!strncmp(footer->creator_app, "CTXS", 4) &&
313 !!memcmp(footer->creator_app, "tap", 4)) || s->force_use_chs;
315 if (!use_chs || bs->total_sectors == VHD_MAX_GEOMETRY || s->force_use_sz) {
316 bs->total_sectors = be64_to_cpu(footer->current_size) /
317 BDRV_SECTOR_SIZE;
320 /* Allow a maximum disk size of approximately 2 TB */
321 if (bs->total_sectors >= VHD_MAX_SECTORS) {
322 ret = -EFBIG;
323 goto fail;
326 if (disk_type == VHD_DYNAMIC) {
327 ret = bdrv_pread(bs->file->bs, be64_to_cpu(footer->data_offset), buf,
328 HEADER_SIZE);
329 if (ret < 0) {
330 goto fail;
333 dyndisk_header = (VHDDynDiskHeader *) buf;
335 if (strncmp(dyndisk_header->magic, "cxsparse", 8)) {
336 ret = -EINVAL;
337 goto fail;
340 s->block_size = be32_to_cpu(dyndisk_header->block_size);
341 if (!is_power_of_2(s->block_size) || s->block_size < BDRV_SECTOR_SIZE) {
342 error_setg(errp, "Invalid block size %" PRIu32, s->block_size);
343 ret = -EINVAL;
344 goto fail;
346 s->bitmap_size = ((s->block_size / (8 * 512)) + 511) & ~511;
348 s->max_table_entries = be32_to_cpu(dyndisk_header->max_table_entries);
350 if ((bs->total_sectors * 512) / s->block_size > 0xffffffffU) {
351 ret = -EINVAL;
352 goto fail;
354 if (s->max_table_entries > (VHD_MAX_SECTORS * 512) / s->block_size) {
355 ret = -EINVAL;
356 goto fail;
359 computed_size = (uint64_t) s->max_table_entries * s->block_size;
360 if (computed_size < bs->total_sectors * 512) {
361 ret = -EINVAL;
362 goto fail;
365 if (s->max_table_entries > SIZE_MAX / 4 ||
366 s->max_table_entries > (int) INT_MAX / 4) {
367 error_setg(errp, "Max Table Entries too large (%" PRId32 ")",
368 s->max_table_entries);
369 ret = -EINVAL;
370 goto fail;
373 pagetable_size = (uint64_t) s->max_table_entries * 4;
375 s->pagetable = qemu_try_blockalign(bs->file->bs, pagetable_size);
376 if (s->pagetable == NULL) {
377 ret = -ENOMEM;
378 goto fail;
381 s->bat_offset = be64_to_cpu(dyndisk_header->table_offset);
383 ret = bdrv_pread(bs->file->bs, s->bat_offset, s->pagetable,
384 pagetable_size);
385 if (ret < 0) {
386 goto fail;
389 s->free_data_block_offset =
390 ROUND_UP(s->bat_offset + pagetable_size, 512);
392 for (i = 0; i < s->max_table_entries; i++) {
393 be32_to_cpus(&s->pagetable[i]);
394 if (s->pagetable[i] != 0xFFFFFFFF) {
395 int64_t next = (512 * (int64_t) s->pagetable[i]) +
396 s->bitmap_size + s->block_size;
398 if (next > s->free_data_block_offset) {
399 s->free_data_block_offset = next;
404 if (s->free_data_block_offset > bdrv_getlength(bs->file->bs)) {
405 error_setg(errp, "block-vpc: free_data_block_offset points after "
406 "the end of file. The image has been truncated.");
407 ret = -EINVAL;
408 goto fail;
411 s->last_bitmap_offset = (int64_t) -1;
413 #ifdef CACHE
414 s->pageentry_u8 = g_malloc(512);
415 s->pageentry_u32 = s->pageentry_u8;
416 s->pageentry_u16 = s->pageentry_u8;
417 s->last_pagetable = -1;
418 #endif
421 qemu_co_mutex_init(&s->lock);
423 /* Disable migration when VHD images are used */
424 error_setg(&s->migration_blocker, "The vpc format used by node '%s' "
425 "does not support live migration",
426 bdrv_get_device_or_node_name(bs));
427 migrate_add_blocker(s->migration_blocker);
429 return 0;
431 fail:
432 qemu_vfree(s->pagetable);
433 #ifdef CACHE
434 g_free(s->pageentry_u8);
435 #endif
436 return ret;
439 static int vpc_reopen_prepare(BDRVReopenState *state,
440 BlockReopenQueue *queue, Error **errp)
442 return 0;
446 * Returns the absolute byte offset of the given sector in the image file.
447 * If the sector is not allocated, -1 is returned instead.
449 * The parameter write must be 1 if the offset will be used for a write
450 * operation (the block bitmaps is updated then), 0 otherwise.
452 static inline int64_t get_sector_offset(BlockDriverState *bs,
453 int64_t sector_num, int write)
455 BDRVVPCState *s = bs->opaque;
456 uint64_t offset = sector_num * 512;
457 uint64_t bitmap_offset, block_offset;
458 uint32_t pagetable_index, pageentry_index;
460 pagetable_index = offset / s->block_size;
461 pageentry_index = (offset % s->block_size) / 512;
463 if (pagetable_index >= s->max_table_entries || s->pagetable[pagetable_index] == 0xffffffff)
464 return -1; // not allocated
466 bitmap_offset = 512 * (uint64_t) s->pagetable[pagetable_index];
467 block_offset = bitmap_offset + s->bitmap_size + (512 * pageentry_index);
469 // We must ensure that we don't write to any sectors which are marked as
470 // unused in the bitmap. We get away with setting all bits in the block
471 // bitmap each time we write to a new block. This might cause Virtual PC to
472 // miss sparse read optimization, but it's not a problem in terms of
473 // correctness.
474 if (write && (s->last_bitmap_offset != bitmap_offset)) {
475 uint8_t bitmap[s->bitmap_size];
477 s->last_bitmap_offset = bitmap_offset;
478 memset(bitmap, 0xff, s->bitmap_size);
479 bdrv_pwrite_sync(bs->file->bs, bitmap_offset, bitmap, s->bitmap_size);
482 return block_offset;
486 * Writes the footer to the end of the image file. This is needed when the
487 * file grows as it overwrites the old footer
489 * Returns 0 on success and < 0 on error
491 static int rewrite_footer(BlockDriverState* bs)
493 int ret;
494 BDRVVPCState *s = bs->opaque;
495 int64_t offset = s->free_data_block_offset;
497 ret = bdrv_pwrite_sync(bs->file->bs, offset, s->footer_buf, HEADER_SIZE);
498 if (ret < 0)
499 return ret;
501 return 0;
505 * Allocates a new block. This involves writing a new footer and updating
506 * the Block Allocation Table to use the space at the old end of the image
507 * file (overwriting the old footer)
509 * Returns the sectors' offset in the image file on success and < 0 on error
511 static int64_t alloc_block(BlockDriverState* bs, int64_t sector_num)
513 BDRVVPCState *s = bs->opaque;
514 int64_t bat_offset;
515 uint32_t index, bat_value;
516 int ret;
517 uint8_t bitmap[s->bitmap_size];
519 // Check if sector_num is valid
520 if ((sector_num < 0) || (sector_num > bs->total_sectors))
521 return -1;
523 // Write entry into in-memory BAT
524 index = (sector_num * 512) / s->block_size;
525 if (s->pagetable[index] != 0xFFFFFFFF)
526 return -1;
528 s->pagetable[index] = s->free_data_block_offset / 512;
530 // Initialize the block's bitmap
531 memset(bitmap, 0xff, s->bitmap_size);
532 ret = bdrv_pwrite_sync(bs->file->bs, s->free_data_block_offset, bitmap,
533 s->bitmap_size);
534 if (ret < 0) {
535 return ret;
538 // Write new footer (the old one will be overwritten)
539 s->free_data_block_offset += s->block_size + s->bitmap_size;
540 ret = rewrite_footer(bs);
541 if (ret < 0)
542 goto fail;
544 // Write BAT entry to disk
545 bat_offset = s->bat_offset + (4 * index);
546 bat_value = cpu_to_be32(s->pagetable[index]);
547 ret = bdrv_pwrite_sync(bs->file->bs, bat_offset, &bat_value, 4);
548 if (ret < 0)
549 goto fail;
551 return get_sector_offset(bs, sector_num, 0);
553 fail:
554 s->free_data_block_offset -= (s->block_size + s->bitmap_size);
555 return -1;
558 static int vpc_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
560 BDRVVPCState *s = (BDRVVPCState *)bs->opaque;
561 VHDFooter *footer = (VHDFooter *) s->footer_buf;
563 if (be32_to_cpu(footer->type) != VHD_FIXED) {
564 bdi->cluster_size = s->block_size;
567 bdi->unallocated_blocks_are_zero = true;
568 return 0;
571 static int vpc_read(BlockDriverState *bs, int64_t sector_num,
572 uint8_t *buf, int nb_sectors)
574 BDRVVPCState *s = bs->opaque;
575 int ret;
576 int64_t offset;
577 int64_t sectors, sectors_per_block;
578 VHDFooter *footer = (VHDFooter *) s->footer_buf;
580 if (be32_to_cpu(footer->type) == VHD_FIXED) {
581 return bdrv_read(bs->file->bs, sector_num, buf, nb_sectors);
583 while (nb_sectors > 0) {
584 offset = get_sector_offset(bs, sector_num, 0);
586 sectors_per_block = s->block_size >> BDRV_SECTOR_BITS;
587 sectors = sectors_per_block - (sector_num % sectors_per_block);
588 if (sectors > nb_sectors) {
589 sectors = nb_sectors;
592 if (offset == -1) {
593 memset(buf, 0, sectors * BDRV_SECTOR_SIZE);
594 } else {
595 ret = bdrv_pread(bs->file->bs, offset, buf,
596 sectors * BDRV_SECTOR_SIZE);
597 if (ret != sectors * BDRV_SECTOR_SIZE) {
598 return -1;
602 nb_sectors -= sectors;
603 sector_num += sectors;
604 buf += sectors * BDRV_SECTOR_SIZE;
606 return 0;
609 static coroutine_fn int vpc_co_read(BlockDriverState *bs, int64_t sector_num,
610 uint8_t *buf, int nb_sectors)
612 int ret;
613 BDRVVPCState *s = bs->opaque;
614 qemu_co_mutex_lock(&s->lock);
615 ret = vpc_read(bs, sector_num, buf, nb_sectors);
616 qemu_co_mutex_unlock(&s->lock);
617 return ret;
620 static int vpc_write(BlockDriverState *bs, int64_t sector_num,
621 const uint8_t *buf, int nb_sectors)
623 BDRVVPCState *s = bs->opaque;
624 int64_t offset;
625 int64_t sectors, sectors_per_block;
626 int ret;
627 VHDFooter *footer = (VHDFooter *) s->footer_buf;
629 if (be32_to_cpu(footer->type) == VHD_FIXED) {
630 return bdrv_write(bs->file->bs, sector_num, buf, nb_sectors);
632 while (nb_sectors > 0) {
633 offset = get_sector_offset(bs, sector_num, 1);
635 sectors_per_block = s->block_size >> BDRV_SECTOR_BITS;
636 sectors = sectors_per_block - (sector_num % sectors_per_block);
637 if (sectors > nb_sectors) {
638 sectors = nb_sectors;
641 if (offset == -1) {
642 offset = alloc_block(bs, sector_num);
643 if (offset < 0)
644 return -1;
647 ret = bdrv_pwrite(bs->file->bs, offset, buf,
648 sectors * BDRV_SECTOR_SIZE);
649 if (ret != sectors * BDRV_SECTOR_SIZE) {
650 return -1;
653 nb_sectors -= sectors;
654 sector_num += sectors;
655 buf += sectors * BDRV_SECTOR_SIZE;
658 return 0;
661 static coroutine_fn int vpc_co_write(BlockDriverState *bs, int64_t sector_num,
662 const uint8_t *buf, int nb_sectors)
664 int ret;
665 BDRVVPCState *s = bs->opaque;
666 qemu_co_mutex_lock(&s->lock);
667 ret = vpc_write(bs, sector_num, buf, nb_sectors);
668 qemu_co_mutex_unlock(&s->lock);
669 return ret;
672 static int64_t coroutine_fn vpc_co_get_block_status(BlockDriverState *bs,
673 int64_t sector_num, int nb_sectors, int *pnum, BlockDriverState **file)
675 BDRVVPCState *s = bs->opaque;
676 VHDFooter *footer = (VHDFooter*) s->footer_buf;
677 int64_t start, offset;
678 bool allocated;
679 int n;
681 if (be32_to_cpu(footer->type) == VHD_FIXED) {
682 *pnum = nb_sectors;
683 *file = bs->file->bs;
684 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID | BDRV_BLOCK_DATA |
685 (sector_num << BDRV_SECTOR_BITS);
688 offset = get_sector_offset(bs, sector_num, 0);
689 start = offset;
690 allocated = (offset != -1);
691 *pnum = 0;
693 do {
694 /* All sectors in a block are contiguous (without using the bitmap) */
695 n = ROUND_UP(sector_num + 1, s->block_size / BDRV_SECTOR_SIZE)
696 - sector_num;
697 n = MIN(n, nb_sectors);
699 *pnum += n;
700 sector_num += n;
701 nb_sectors -= n;
702 /* *pnum can't be greater than one block for allocated
703 * sectors since there is always a bitmap in between. */
704 if (allocated) {
705 *file = bs->file->bs;
706 return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | start;
708 if (nb_sectors == 0) {
709 break;
711 offset = get_sector_offset(bs, sector_num, 0);
712 } while (offset == -1);
714 return 0;
718 * Calculates the number of cylinders, heads and sectors per cylinder
719 * based on a given number of sectors. This is the algorithm described
720 * in the VHD specification.
722 * Note that the geometry doesn't always exactly match total_sectors but
723 * may round it down.
725 * Returns 0 on success, -EFBIG if the size is larger than ~2 TB. Override
726 * the hardware EIDE and ATA-2 limit of 16 heads (max disk size of 127 GB)
727 * and instead allow up to 255 heads.
729 static int calculate_geometry(int64_t total_sectors, uint16_t* cyls,
730 uint8_t* heads, uint8_t* secs_per_cyl)
732 uint32_t cyls_times_heads;
734 total_sectors = MIN(total_sectors, VHD_MAX_GEOMETRY);
736 if (total_sectors >= 65535LL * 16 * 63) {
737 *secs_per_cyl = 255;
738 *heads = 16;
739 cyls_times_heads = total_sectors / *secs_per_cyl;
740 } else {
741 *secs_per_cyl = 17;
742 cyls_times_heads = total_sectors / *secs_per_cyl;
743 *heads = (cyls_times_heads + 1023) / 1024;
745 if (*heads < 4) {
746 *heads = 4;
749 if (cyls_times_heads >= (*heads * 1024) || *heads > 16) {
750 *secs_per_cyl = 31;
751 *heads = 16;
752 cyls_times_heads = total_sectors / *secs_per_cyl;
755 if (cyls_times_heads >= (*heads * 1024)) {
756 *secs_per_cyl = 63;
757 *heads = 16;
758 cyls_times_heads = total_sectors / *secs_per_cyl;
762 *cyls = cyls_times_heads / *heads;
764 return 0;
767 static int create_dynamic_disk(BlockBackend *blk, uint8_t *buf,
768 int64_t total_sectors)
770 VHDDynDiskHeader *dyndisk_header =
771 (VHDDynDiskHeader *) buf;
772 size_t block_size, num_bat_entries;
773 int i;
774 int ret;
775 int64_t offset = 0;
777 // Write the footer (twice: at the beginning and at the end)
778 block_size = 0x200000;
779 num_bat_entries = (total_sectors + block_size / 512) / (block_size / 512);
781 ret = blk_pwrite(blk, offset, buf, HEADER_SIZE);
782 if (ret < 0) {
783 goto fail;
786 offset = 1536 + ((num_bat_entries * 4 + 511) & ~511);
787 ret = blk_pwrite(blk, offset, buf, HEADER_SIZE);
788 if (ret < 0) {
789 goto fail;
792 // Write the initial BAT
793 offset = 3 * 512;
795 memset(buf, 0xFF, 512);
796 for (i = 0; i < (num_bat_entries * 4 + 511) / 512; i++) {
797 ret = blk_pwrite(blk, offset, buf, 512);
798 if (ret < 0) {
799 goto fail;
801 offset += 512;
804 // Prepare the Dynamic Disk Header
805 memset(buf, 0, 1024);
807 memcpy(dyndisk_header->magic, "cxsparse", 8);
810 * Note: The spec is actually wrong here for data_offset, it says
811 * 0xFFFFFFFF, but MS tools expect all 64 bits to be set.
813 dyndisk_header->data_offset = cpu_to_be64(0xFFFFFFFFFFFFFFFFULL);
814 dyndisk_header->table_offset = cpu_to_be64(3 * 512);
815 dyndisk_header->version = cpu_to_be32(0x00010000);
816 dyndisk_header->block_size = cpu_to_be32(block_size);
817 dyndisk_header->max_table_entries = cpu_to_be32(num_bat_entries);
819 dyndisk_header->checksum = cpu_to_be32(vpc_checksum(buf, 1024));
821 // Write the header
822 offset = 512;
824 ret = blk_pwrite(blk, offset, buf, 1024);
825 if (ret < 0) {
826 goto fail;
829 fail:
830 return ret;
833 static int create_fixed_disk(BlockBackend *blk, uint8_t *buf,
834 int64_t total_size)
836 int ret;
838 /* Add footer to total size */
839 total_size += HEADER_SIZE;
841 ret = blk_truncate(blk, total_size);
842 if (ret < 0) {
843 return ret;
846 ret = blk_pwrite(blk, total_size - HEADER_SIZE, buf, HEADER_SIZE);
847 if (ret < 0) {
848 return ret;
851 return ret;
854 static int vpc_create(const char *filename, QemuOpts *opts, Error **errp)
856 uint8_t buf[1024];
857 VHDFooter *footer = (VHDFooter *) buf;
858 char *disk_type_param;
859 int i;
860 uint16_t cyls = 0;
861 uint8_t heads = 0;
862 uint8_t secs_per_cyl = 0;
863 int64_t total_sectors;
864 int64_t total_size;
865 int disk_type;
866 int ret = -EIO;
867 bool force_size;
868 Error *local_err = NULL;
869 BlockBackend *blk = NULL;
871 /* Read out options */
872 total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
873 BDRV_SECTOR_SIZE);
874 disk_type_param = qemu_opt_get_del(opts, BLOCK_OPT_SUBFMT);
875 if (disk_type_param) {
876 if (!strcmp(disk_type_param, "dynamic")) {
877 disk_type = VHD_DYNAMIC;
878 } else if (!strcmp(disk_type_param, "fixed")) {
879 disk_type = VHD_FIXED;
880 } else {
881 error_setg(errp, "Invalid disk type, %s", disk_type_param);
882 ret = -EINVAL;
883 goto out;
885 } else {
886 disk_type = VHD_DYNAMIC;
889 force_size = qemu_opt_get_bool_del(opts, VPC_OPT_FORCE_SIZE, false);
891 ret = bdrv_create_file(filename, opts, &local_err);
892 if (ret < 0) {
893 error_propagate(errp, local_err);
894 goto out;
897 blk = blk_new_open(filename, NULL, NULL,
898 BDRV_O_RDWR | BDRV_O_PROTOCOL, &local_err);
899 if (blk == NULL) {
900 error_propagate(errp, local_err);
901 ret = -EIO;
902 goto out;
905 blk_set_allow_write_beyond_eof(blk, true);
908 * Calculate matching total_size and geometry. Increase the number of
909 * sectors requested until we get enough (or fail). This ensures that
910 * qemu-img convert doesn't truncate images, but rather rounds up.
912 * If the image size can't be represented by a spec conformant CHS geometry,
913 * we set the geometry to 65535 x 16 x 255 (CxHxS) sectors and use
914 * the image size from the VHD footer to calculate total_sectors.
916 if (force_size) {
917 /* This will force the use of total_size for sector count, below */
918 cyls = VHD_CHS_MAX_C;
919 heads = VHD_CHS_MAX_H;
920 secs_per_cyl = VHD_CHS_MAX_S;
921 } else {
922 total_sectors = MIN(VHD_MAX_GEOMETRY, total_size / BDRV_SECTOR_SIZE);
923 for (i = 0; total_sectors > (int64_t)cyls * heads * secs_per_cyl; i++) {
924 calculate_geometry(total_sectors + i, &cyls, &heads, &secs_per_cyl);
928 if ((int64_t)cyls * heads * secs_per_cyl == VHD_MAX_GEOMETRY) {
929 total_sectors = total_size / BDRV_SECTOR_SIZE;
930 /* Allow a maximum disk size of approximately 2 TB */
931 if (total_sectors > VHD_MAX_SECTORS) {
932 error_setg(errp, "Disk size is too large, max size is 2040 GiB");
933 ret = -EFBIG;
934 goto out;
936 } else {
937 total_sectors = (int64_t)cyls * heads * secs_per_cyl;
938 total_size = total_sectors * BDRV_SECTOR_SIZE;
941 /* Prepare the Hard Disk Footer */
942 memset(buf, 0, 1024);
944 memcpy(footer->creator, "conectix", 8);
945 if (force_size) {
946 memcpy(footer->creator_app, "qem2", 4);
947 } else {
948 memcpy(footer->creator_app, "qemu", 4);
950 memcpy(footer->creator_os, "Wi2k", 4);
952 footer->features = cpu_to_be32(0x02);
953 footer->version = cpu_to_be32(0x00010000);
954 if (disk_type == VHD_DYNAMIC) {
955 footer->data_offset = cpu_to_be64(HEADER_SIZE);
956 } else {
957 footer->data_offset = cpu_to_be64(0xFFFFFFFFFFFFFFFFULL);
959 footer->timestamp = cpu_to_be32(time(NULL) - VHD_TIMESTAMP_BASE);
961 /* Version of Virtual PC 2007 */
962 footer->major = cpu_to_be16(0x0005);
963 footer->minor = cpu_to_be16(0x0003);
964 footer->orig_size = cpu_to_be64(total_size);
965 footer->current_size = cpu_to_be64(total_size);
966 footer->cyls = cpu_to_be16(cyls);
967 footer->heads = heads;
968 footer->secs_per_cyl = secs_per_cyl;
970 footer->type = cpu_to_be32(disk_type);
972 #if defined(CONFIG_UUID)
973 uuid_generate(footer->uuid);
974 #endif
976 footer->checksum = cpu_to_be32(vpc_checksum(buf, HEADER_SIZE));
978 if (disk_type == VHD_DYNAMIC) {
979 ret = create_dynamic_disk(blk, buf, total_sectors);
980 } else {
981 ret = create_fixed_disk(blk, buf, total_size);
983 if (ret < 0) {
984 error_setg(errp, "Unable to create or write VHD header");
987 out:
988 blk_unref(blk);
989 g_free(disk_type_param);
990 return ret;
993 static int vpc_has_zero_init(BlockDriverState *bs)
995 BDRVVPCState *s = bs->opaque;
996 VHDFooter *footer = (VHDFooter *) s->footer_buf;
998 if (be32_to_cpu(footer->type) == VHD_FIXED) {
999 return bdrv_has_zero_init(bs->file->bs);
1000 } else {
1001 return 1;
1005 static void vpc_close(BlockDriverState *bs)
1007 BDRVVPCState *s = bs->opaque;
1008 qemu_vfree(s->pagetable);
1009 #ifdef CACHE
1010 g_free(s->pageentry_u8);
1011 #endif
1013 migrate_del_blocker(s->migration_blocker);
1014 error_free(s->migration_blocker);
1017 static QemuOptsList vpc_create_opts = {
1018 .name = "vpc-create-opts",
1019 .head = QTAILQ_HEAD_INITIALIZER(vpc_create_opts.head),
1020 .desc = {
1022 .name = BLOCK_OPT_SIZE,
1023 .type = QEMU_OPT_SIZE,
1024 .help = "Virtual disk size"
1027 .name = BLOCK_OPT_SUBFMT,
1028 .type = QEMU_OPT_STRING,
1029 .help =
1030 "Type of virtual hard disk format. Supported formats are "
1031 "{dynamic (default) | fixed} "
1034 .name = VPC_OPT_FORCE_SIZE,
1035 .type = QEMU_OPT_BOOL,
1036 .help = "Force disk size calculation to use the actual size "
1037 "specified, rather than using the nearest CHS-based "
1038 "calculation"
1040 { /* end of list */ }
1044 static BlockDriver bdrv_vpc = {
1045 .format_name = "vpc",
1046 .instance_size = sizeof(BDRVVPCState),
1048 .bdrv_probe = vpc_probe,
1049 .bdrv_open = vpc_open,
1050 .bdrv_close = vpc_close,
1051 .bdrv_reopen_prepare = vpc_reopen_prepare,
1052 .bdrv_create = vpc_create,
1054 .bdrv_read = vpc_co_read,
1055 .bdrv_write = vpc_co_write,
1056 .bdrv_co_get_block_status = vpc_co_get_block_status,
1058 .bdrv_get_info = vpc_get_info,
1060 .create_opts = &vpc_create_opts,
1061 .bdrv_has_zero_init = vpc_has_zero_init,
1064 static void bdrv_vpc_init(void)
1066 bdrv_register(&bdrv_vpc);
1069 block_init(bdrv_vpc_init);