x86/cpu: Use max host physical address if -cpu max option is applied
[qemu/ar7.git] / block / vdi.c
blob5627e7d764aeeccba87e569f8209caf82dccaa35
1 /*
2 * Block driver for the Virtual Disk Image (VDI) format
4 * Copyright (c) 2009, 2012 Stefan Weil
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) version 3 or any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 * Reference:
20 * http://forums.virtualbox.org/viewtopic.php?t=8046
22 * This driver supports create / read / write operations on VDI images.
24 * Todo (see also TODO in code):
26 * Some features like snapshots are still missing.
28 * Deallocation of zero-filled blocks and shrinking images are missing, too
29 * (might be added to common block layer).
31 * Allocation of blocks could be optimized (less writes to block map and
32 * header).
34 * Read and write of adjacent blocks could be done in one operation
35 * (current code uses one operation per block (1 MiB).
37 * The code is not thread safe (missing locks for changes in header and
38 * block table, no problem with current QEMU).
40 * Hints:
42 * Blocks (VDI documentation) correspond to clusters (QEMU).
43 * QEMU's backing files could be implemented using VDI snapshot files (TODO).
44 * VDI snapshot files may also contain the complete machine state.
45 * Maybe this machine state can be converted to QEMU PC machine snapshot data.
47 * The driver keeps a block cache (little endian entries) in memory.
48 * For the standard block size (1 MiB), a 1 TiB disk will use 4 MiB RAM,
49 * so this seems to be reasonable.
52 #include "qemu/osdep.h"
53 #include "qemu/units.h"
54 #include "qapi/error.h"
55 #include "qapi/qobject-input-visitor.h"
56 #include "qapi/qapi-visit-block-core.h"
57 #include "block/block_int.h"
58 #include "block/qdict.h"
59 #include "sysemu/block-backend.h"
60 #include "qemu/module.h"
61 #include "qemu/option.h"
62 #include "qemu/bswap.h"
63 #include "migration/blocker.h"
64 #include "qemu/coroutine.h"
65 #include "qemu/cutils.h"
66 #include "qemu/uuid.h"
68 /* Code configuration options. */
70 /* Enable debug messages. */
71 //~ #define CONFIG_VDI_DEBUG
73 /* Support write operations on VDI images. */
74 #define CONFIG_VDI_WRITE
76 /* Support non-standard block (cluster) size. This is untested.
77 * Maybe it will be needed for very large images.
79 //~ #define CONFIG_VDI_BLOCK_SIZE
81 /* Support static (fixed, pre-allocated) images. */
82 #define CONFIG_VDI_STATIC_IMAGE
84 /* Command line option for static images. */
85 #define BLOCK_OPT_STATIC "static"
87 #define SECTOR_SIZE 512
88 #define DEFAULT_CLUSTER_SIZE 1048576
89 /* Note: can't use 1 * MiB, because it's passed to stringify() */
91 #if defined(CONFIG_VDI_DEBUG)
92 #define VDI_DEBUG 1
93 #else
94 #define VDI_DEBUG 0
95 #endif
97 #define logout(fmt, ...) \
98 do { \
99 if (VDI_DEBUG) { \
100 fprintf(stderr, "vdi\t%-24s" fmt, __func__, ##__VA_ARGS__); \
102 } while (0)
104 /* Image signature. */
105 #define VDI_SIGNATURE 0xbeda107f
107 /* Image version. */
108 #define VDI_VERSION_1_1 0x00010001
110 /* Image type. */
111 #define VDI_TYPE_DYNAMIC 1
112 #define VDI_TYPE_STATIC 2
114 /* Innotek / SUN images use these strings in header.text:
115 * "<<< innotek VirtualBox Disk Image >>>\n"
116 * "<<< Sun xVM VirtualBox Disk Image >>>\n"
117 * "<<< Sun VirtualBox Disk Image >>>\n"
118 * The value does not matter, so QEMU created images use a different text.
120 #define VDI_TEXT "<<< QEMU VM Virtual Disk Image >>>\n"
122 /* A never-allocated block; semantically arbitrary content. */
123 #define VDI_UNALLOCATED 0xffffffffU
125 /* A discarded (no longer allocated) block; semantically zero-filled. */
126 #define VDI_DISCARDED 0xfffffffeU
128 #define VDI_IS_ALLOCATED(X) ((X) < VDI_DISCARDED)
130 /* The bmap will take up VDI_BLOCKS_IN_IMAGE_MAX * sizeof(uint32_t) bytes; since
131 * the bmap is read and written in a single operation, its size needs to be
132 * limited to INT_MAX; furthermore, when opening an image, the bmap size is
133 * rounded up to be aligned on BDRV_SECTOR_SIZE.
134 * Therefore this should satisfy the following:
135 * VDI_BLOCKS_IN_IMAGE_MAX * sizeof(uint32_t) + BDRV_SECTOR_SIZE == INT_MAX + 1
136 * (INT_MAX + 1 is the first value not representable as an int)
137 * This guarantees that any value below or equal to the constant will, when
138 * multiplied by sizeof(uint32_t) and rounded up to a BDRV_SECTOR_SIZE boundary,
139 * still be below or equal to INT_MAX. */
140 #define VDI_BLOCKS_IN_IMAGE_MAX \
141 ((unsigned)((INT_MAX + 1u - BDRV_SECTOR_SIZE) / sizeof(uint32_t)))
142 #define VDI_DISK_SIZE_MAX ((uint64_t)VDI_BLOCKS_IN_IMAGE_MAX * \
143 (uint64_t)DEFAULT_CLUSTER_SIZE)
145 static QemuOptsList vdi_create_opts;
147 typedef struct {
148 char text[0x40];
149 uint32_t signature;
150 uint32_t version;
151 uint32_t header_size;
152 uint32_t image_type;
153 uint32_t image_flags;
154 char description[256];
155 uint32_t offset_bmap;
156 uint32_t offset_data;
157 uint32_t cylinders; /* disk geometry, unused here */
158 uint32_t heads; /* disk geometry, unused here */
159 uint32_t sectors; /* disk geometry, unused here */
160 uint32_t sector_size;
161 uint32_t unused1;
162 uint64_t disk_size;
163 uint32_t block_size;
164 uint32_t block_extra; /* unused here */
165 uint32_t blocks_in_image;
166 uint32_t blocks_allocated;
167 QemuUUID uuid_image;
168 QemuUUID uuid_last_snap;
169 QemuUUID uuid_link;
170 QemuUUID uuid_parent;
171 uint64_t unused2[7];
172 } QEMU_PACKED VdiHeader;
174 QEMU_BUILD_BUG_ON(sizeof(VdiHeader) != 512);
176 typedef struct {
177 /* The block map entries are little endian (even in memory). */
178 uint32_t *bmap;
179 /* Size of block (bytes). */
180 uint32_t block_size;
181 /* First sector of block map. */
182 uint32_t bmap_sector;
183 /* VDI header (converted to host endianness). */
184 VdiHeader header;
186 CoRwlock bmap_lock;
188 Error *migration_blocker;
189 } BDRVVdiState;
191 static void vdi_header_to_cpu(VdiHeader *header)
193 header->signature = le32_to_cpu(header->signature);
194 header->version = le32_to_cpu(header->version);
195 header->header_size = le32_to_cpu(header->header_size);
196 header->image_type = le32_to_cpu(header->image_type);
197 header->image_flags = le32_to_cpu(header->image_flags);
198 header->offset_bmap = le32_to_cpu(header->offset_bmap);
199 header->offset_data = le32_to_cpu(header->offset_data);
200 header->cylinders = le32_to_cpu(header->cylinders);
201 header->heads = le32_to_cpu(header->heads);
202 header->sectors = le32_to_cpu(header->sectors);
203 header->sector_size = le32_to_cpu(header->sector_size);
204 header->disk_size = le64_to_cpu(header->disk_size);
205 header->block_size = le32_to_cpu(header->block_size);
206 header->block_extra = le32_to_cpu(header->block_extra);
207 header->blocks_in_image = le32_to_cpu(header->blocks_in_image);
208 header->blocks_allocated = le32_to_cpu(header->blocks_allocated);
209 header->uuid_image = qemu_uuid_bswap(header->uuid_image);
210 header->uuid_last_snap = qemu_uuid_bswap(header->uuid_last_snap);
211 header->uuid_link = qemu_uuid_bswap(header->uuid_link);
212 header->uuid_parent = qemu_uuid_bswap(header->uuid_parent);
215 static void vdi_header_to_le(VdiHeader *header)
217 header->signature = cpu_to_le32(header->signature);
218 header->version = cpu_to_le32(header->version);
219 header->header_size = cpu_to_le32(header->header_size);
220 header->image_type = cpu_to_le32(header->image_type);
221 header->image_flags = cpu_to_le32(header->image_flags);
222 header->offset_bmap = cpu_to_le32(header->offset_bmap);
223 header->offset_data = cpu_to_le32(header->offset_data);
224 header->cylinders = cpu_to_le32(header->cylinders);
225 header->heads = cpu_to_le32(header->heads);
226 header->sectors = cpu_to_le32(header->sectors);
227 header->sector_size = cpu_to_le32(header->sector_size);
228 header->disk_size = cpu_to_le64(header->disk_size);
229 header->block_size = cpu_to_le32(header->block_size);
230 header->block_extra = cpu_to_le32(header->block_extra);
231 header->blocks_in_image = cpu_to_le32(header->blocks_in_image);
232 header->blocks_allocated = cpu_to_le32(header->blocks_allocated);
233 header->uuid_image = qemu_uuid_bswap(header->uuid_image);
234 header->uuid_last_snap = qemu_uuid_bswap(header->uuid_last_snap);
235 header->uuid_link = qemu_uuid_bswap(header->uuid_link);
236 header->uuid_parent = qemu_uuid_bswap(header->uuid_parent);
239 static void vdi_header_print(VdiHeader *header)
241 char uuidstr[37];
242 QemuUUID uuid;
243 logout("text %s", header->text);
244 logout("signature 0x%08x\n", header->signature);
245 logout("header size 0x%04x\n", header->header_size);
246 logout("image type 0x%04x\n", header->image_type);
247 logout("image flags 0x%04x\n", header->image_flags);
248 logout("description %s\n", header->description);
249 logout("offset bmap 0x%04x\n", header->offset_bmap);
250 logout("offset data 0x%04x\n", header->offset_data);
251 logout("cylinders 0x%04x\n", header->cylinders);
252 logout("heads 0x%04x\n", header->heads);
253 logout("sectors 0x%04x\n", header->sectors);
254 logout("sector size 0x%04x\n", header->sector_size);
255 logout("image size 0x%" PRIx64 " B (%" PRIu64 " MiB)\n",
256 header->disk_size, header->disk_size / MiB);
257 logout("block size 0x%04x\n", header->block_size);
258 logout("block extra 0x%04x\n", header->block_extra);
259 logout("blocks tot. 0x%04x\n", header->blocks_in_image);
260 logout("blocks all. 0x%04x\n", header->blocks_allocated);
261 uuid = header->uuid_image;
262 qemu_uuid_unparse(&uuid, uuidstr);
263 logout("uuid image %s\n", uuidstr);
264 uuid = header->uuid_last_snap;
265 qemu_uuid_unparse(&uuid, uuidstr);
266 logout("uuid snap %s\n", uuidstr);
267 uuid = header->uuid_link;
268 qemu_uuid_unparse(&uuid, uuidstr);
269 logout("uuid link %s\n", uuidstr);
270 uuid = header->uuid_parent;
271 qemu_uuid_unparse(&uuid, uuidstr);
272 logout("uuid parent %s\n", uuidstr);
275 static int coroutine_fn vdi_co_check(BlockDriverState *bs, BdrvCheckResult *res,
276 BdrvCheckMode fix)
278 /* TODO: additional checks possible. */
279 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
280 uint32_t blocks_allocated = 0;
281 uint32_t block;
282 uint32_t *bmap;
283 logout("\n");
285 if (fix) {
286 return -ENOTSUP;
289 bmap = g_try_new(uint32_t, s->header.blocks_in_image);
290 if (s->header.blocks_in_image && bmap == NULL) {
291 res->check_errors++;
292 return -ENOMEM;
295 memset(bmap, 0xff, s->header.blocks_in_image * sizeof(uint32_t));
297 /* Check block map and value of blocks_allocated. */
298 for (block = 0; block < s->header.blocks_in_image; block++) {
299 uint32_t bmap_entry = le32_to_cpu(s->bmap[block]);
300 if (VDI_IS_ALLOCATED(bmap_entry)) {
301 if (bmap_entry < s->header.blocks_in_image) {
302 blocks_allocated++;
303 if (!VDI_IS_ALLOCATED(bmap[bmap_entry])) {
304 bmap[bmap_entry] = bmap_entry;
305 } else {
306 fprintf(stderr, "ERROR: block index %" PRIu32
307 " also used by %" PRIu32 "\n", bmap[bmap_entry], bmap_entry);
308 res->corruptions++;
310 } else {
311 fprintf(stderr, "ERROR: block index %" PRIu32
312 " too large, is %" PRIu32 "\n", block, bmap_entry);
313 res->corruptions++;
317 if (blocks_allocated != s->header.blocks_allocated) {
318 fprintf(stderr, "ERROR: allocated blocks mismatch, is %" PRIu32
319 ", should be %" PRIu32 "\n",
320 blocks_allocated, s->header.blocks_allocated);
321 res->corruptions++;
324 g_free(bmap);
326 return 0;
329 static int vdi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
331 /* TODO: vdi_get_info would be needed for machine snapshots.
332 vm_state_offset is still missing. */
333 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
334 logout("\n");
335 bdi->cluster_size = s->block_size;
336 bdi->vm_state_offset = 0;
337 return 0;
340 static int vdi_make_empty(BlockDriverState *bs)
342 /* TODO: missing code. */
343 logout("\n");
344 /* The return value for missing code must be 0, see block.c. */
345 return 0;
348 static int vdi_probe(const uint8_t *buf, int buf_size, const char *filename)
350 const VdiHeader *header = (const VdiHeader *)buf;
351 int ret = 0;
353 logout("\n");
355 if (buf_size < sizeof(*header)) {
356 /* Header too small, no VDI. */
357 } else if (le32_to_cpu(header->signature) == VDI_SIGNATURE) {
358 ret = 100;
361 if (ret == 0) {
362 logout("no vdi image\n");
363 } else {
364 logout("%s", header->text);
367 return ret;
370 static int vdi_open(BlockDriverState *bs, QDict *options, int flags,
371 Error **errp)
373 BDRVVdiState *s = bs->opaque;
374 VdiHeader header;
375 size_t bmap_size;
376 int ret;
377 QemuUUID uuid_link, uuid_parent;
379 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds,
380 BDRV_CHILD_IMAGE, false, errp);
381 if (!bs->file) {
382 return -EINVAL;
385 logout("\n");
387 ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
388 if (ret < 0) {
389 goto fail;
392 vdi_header_to_cpu(&header);
393 if (VDI_DEBUG) {
394 vdi_header_print(&header);
397 if (header.disk_size > VDI_DISK_SIZE_MAX) {
398 error_setg(errp, "Unsupported VDI image size (size is 0x%" PRIx64
399 ", max supported is 0x%" PRIx64 ")",
400 header.disk_size, VDI_DISK_SIZE_MAX);
401 ret = -ENOTSUP;
402 goto fail;
405 uuid_link = header.uuid_link;
406 uuid_parent = header.uuid_parent;
408 if (header.disk_size % SECTOR_SIZE != 0) {
409 /* 'VBoxManage convertfromraw' can create images with odd disk sizes.
410 We accept them but round the disk size to the next multiple of
411 SECTOR_SIZE. */
412 logout("odd disk size %" PRIu64 " B, round up\n", header.disk_size);
413 header.disk_size = ROUND_UP(header.disk_size, SECTOR_SIZE);
416 if (header.signature != VDI_SIGNATURE) {
417 error_setg(errp, "Image not in VDI format (bad signature %08" PRIx32
418 ")", header.signature);
419 ret = -EINVAL;
420 goto fail;
421 } else if (header.version != VDI_VERSION_1_1) {
422 error_setg(errp, "unsupported VDI image (version %" PRIu32 ".%" PRIu32
423 ")", header.version >> 16, header.version & 0xffff);
424 ret = -ENOTSUP;
425 goto fail;
426 } else if (header.offset_bmap % SECTOR_SIZE != 0) {
427 /* We only support block maps which start on a sector boundary. */
428 error_setg(errp, "unsupported VDI image (unaligned block map offset "
429 "0x%" PRIx32 ")", header.offset_bmap);
430 ret = -ENOTSUP;
431 goto fail;
432 } else if (header.offset_data % SECTOR_SIZE != 0) {
433 /* We only support data blocks which start on a sector boundary. */
434 error_setg(errp, "unsupported VDI image (unaligned data offset 0x%"
435 PRIx32 ")", header.offset_data);
436 ret = -ENOTSUP;
437 goto fail;
438 } else if (header.sector_size != SECTOR_SIZE) {
439 error_setg(errp, "unsupported VDI image (sector size %" PRIu32
440 " is not %u)", header.sector_size, SECTOR_SIZE);
441 ret = -ENOTSUP;
442 goto fail;
443 } else if (header.block_size != DEFAULT_CLUSTER_SIZE) {
444 error_setg(errp, "unsupported VDI image (block size %" PRIu32
445 " is not %" PRIu32 ")",
446 header.block_size, DEFAULT_CLUSTER_SIZE);
447 ret = -ENOTSUP;
448 goto fail;
449 } else if (header.disk_size >
450 (uint64_t)header.blocks_in_image * header.block_size) {
451 error_setg(errp, "unsupported VDI image (disk size %" PRIu64 ", "
452 "image bitmap has room for %" PRIu64 ")",
453 header.disk_size,
454 (uint64_t)header.blocks_in_image * header.block_size);
455 ret = -ENOTSUP;
456 goto fail;
457 } else if (!qemu_uuid_is_null(&uuid_link)) {
458 error_setg(errp, "unsupported VDI image (non-NULL link UUID)");
459 ret = -ENOTSUP;
460 goto fail;
461 } else if (!qemu_uuid_is_null(&uuid_parent)) {
462 error_setg(errp, "unsupported VDI image (non-NULL parent UUID)");
463 ret = -ENOTSUP;
464 goto fail;
465 } else if (header.blocks_in_image > VDI_BLOCKS_IN_IMAGE_MAX) {
466 error_setg(errp, "unsupported VDI image "
467 "(too many blocks %u, max is %u)",
468 header.blocks_in_image, VDI_BLOCKS_IN_IMAGE_MAX);
469 ret = -ENOTSUP;
470 goto fail;
473 bs->total_sectors = header.disk_size / SECTOR_SIZE;
475 s->block_size = header.block_size;
476 s->bmap_sector = header.offset_bmap / SECTOR_SIZE;
477 s->header = header;
479 bmap_size = header.blocks_in_image * sizeof(uint32_t);
480 bmap_size = DIV_ROUND_UP(bmap_size, SECTOR_SIZE);
481 s->bmap = qemu_try_blockalign(bs->file->bs, bmap_size * SECTOR_SIZE);
482 if (s->bmap == NULL) {
483 ret = -ENOMEM;
484 goto fail;
487 ret = bdrv_pread(bs->file, header.offset_bmap, s->bmap,
488 bmap_size * SECTOR_SIZE);
489 if (ret < 0) {
490 goto fail_free_bmap;
493 /* Disable migration when vdi images are used */
494 error_setg(&s->migration_blocker, "The vdi format used by node '%s' "
495 "does not support live migration",
496 bdrv_get_device_or_node_name(bs));
497 ret = migrate_add_blocker(s->migration_blocker, errp);
498 if (ret < 0) {
499 error_free(s->migration_blocker);
500 goto fail_free_bmap;
503 qemu_co_rwlock_init(&s->bmap_lock);
505 return 0;
507 fail_free_bmap:
508 qemu_vfree(s->bmap);
510 fail:
511 return ret;
514 static int vdi_reopen_prepare(BDRVReopenState *state,
515 BlockReopenQueue *queue, Error **errp)
517 return 0;
520 static int coroutine_fn vdi_co_block_status(BlockDriverState *bs,
521 bool want_zero,
522 int64_t offset, int64_t bytes,
523 int64_t *pnum, int64_t *map,
524 BlockDriverState **file)
526 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
527 size_t bmap_index = offset / s->block_size;
528 size_t index_in_block = offset % s->block_size;
529 uint32_t bmap_entry = le32_to_cpu(s->bmap[bmap_index]);
530 int result;
532 logout("%p, %" PRId64 ", %" PRId64 ", %p\n", bs, offset, bytes, pnum);
533 *pnum = MIN(s->block_size - index_in_block, bytes);
534 result = VDI_IS_ALLOCATED(bmap_entry);
535 if (!result) {
536 return BDRV_BLOCK_ZERO;
539 *map = s->header.offset_data + (uint64_t)bmap_entry * s->block_size +
540 index_in_block;
541 *file = bs->file->bs;
542 return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID |
543 (s->header.image_type == VDI_TYPE_STATIC ? BDRV_BLOCK_RECURSE : 0);
546 static int coroutine_fn
547 vdi_co_preadv(BlockDriverState *bs, uint64_t offset, uint64_t bytes,
548 QEMUIOVector *qiov, int flags)
550 BDRVVdiState *s = bs->opaque;
551 QEMUIOVector local_qiov;
552 uint32_t bmap_entry;
553 uint32_t block_index;
554 uint32_t offset_in_block;
555 uint32_t n_bytes;
556 uint64_t bytes_done = 0;
557 int ret = 0;
559 logout("\n");
561 qemu_iovec_init(&local_qiov, qiov->niov);
563 while (ret >= 0 && bytes > 0) {
564 block_index = offset / s->block_size;
565 offset_in_block = offset % s->block_size;
566 n_bytes = MIN(bytes, s->block_size - offset_in_block);
568 logout("will read %u bytes starting at offset %" PRIu64 "\n",
569 n_bytes, offset);
571 /* prepare next AIO request */
572 qemu_co_rwlock_rdlock(&s->bmap_lock);
573 bmap_entry = le32_to_cpu(s->bmap[block_index]);
574 qemu_co_rwlock_unlock(&s->bmap_lock);
575 if (!VDI_IS_ALLOCATED(bmap_entry)) {
576 /* Block not allocated, return zeros, no need to wait. */
577 qemu_iovec_memset(qiov, bytes_done, 0, n_bytes);
578 ret = 0;
579 } else {
580 uint64_t data_offset = s->header.offset_data +
581 (uint64_t)bmap_entry * s->block_size +
582 offset_in_block;
584 qemu_iovec_reset(&local_qiov);
585 qemu_iovec_concat(&local_qiov, qiov, bytes_done, n_bytes);
587 ret = bdrv_co_preadv(bs->file, data_offset, n_bytes,
588 &local_qiov, 0);
590 logout("%u bytes read\n", n_bytes);
592 bytes -= n_bytes;
593 offset += n_bytes;
594 bytes_done += n_bytes;
597 qemu_iovec_destroy(&local_qiov);
599 return ret;
602 static int coroutine_fn
603 vdi_co_pwritev(BlockDriverState *bs, uint64_t offset, uint64_t bytes,
604 QEMUIOVector *qiov, int flags)
606 BDRVVdiState *s = bs->opaque;
607 QEMUIOVector local_qiov;
608 uint32_t bmap_entry;
609 uint32_t block_index;
610 uint32_t offset_in_block;
611 uint32_t n_bytes;
612 uint64_t data_offset;
613 uint32_t bmap_first = VDI_UNALLOCATED;
614 uint32_t bmap_last = VDI_UNALLOCATED;
615 uint8_t *block = NULL;
616 uint64_t bytes_done = 0;
617 int ret = 0;
619 logout("\n");
621 qemu_iovec_init(&local_qiov, qiov->niov);
623 while (ret >= 0 && bytes > 0) {
624 block_index = offset / s->block_size;
625 offset_in_block = offset % s->block_size;
626 n_bytes = MIN(bytes, s->block_size - offset_in_block);
628 logout("will write %u bytes starting at offset %" PRIu64 "\n",
629 n_bytes, offset);
631 /* prepare next AIO request */
632 qemu_co_rwlock_rdlock(&s->bmap_lock);
633 bmap_entry = le32_to_cpu(s->bmap[block_index]);
634 if (!VDI_IS_ALLOCATED(bmap_entry)) {
635 /* Allocate new block and write to it. */
636 uint64_t data_offset;
637 qemu_co_rwlock_upgrade(&s->bmap_lock);
638 bmap_entry = le32_to_cpu(s->bmap[block_index]);
639 if (VDI_IS_ALLOCATED(bmap_entry)) {
640 /* A concurrent allocation did the work for us. */
641 qemu_co_rwlock_downgrade(&s->bmap_lock);
642 goto nonallocating_write;
645 bmap_entry = s->header.blocks_allocated;
646 s->bmap[block_index] = cpu_to_le32(bmap_entry);
647 s->header.blocks_allocated++;
648 data_offset = s->header.offset_data +
649 (uint64_t)bmap_entry * s->block_size;
650 if (block == NULL) {
651 block = g_malloc(s->block_size);
652 bmap_first = block_index;
654 bmap_last = block_index;
655 /* Copy data to be written to new block and zero unused parts. */
656 memset(block, 0, offset_in_block);
657 qemu_iovec_to_buf(qiov, bytes_done, block + offset_in_block,
658 n_bytes);
659 memset(block + offset_in_block + n_bytes, 0,
660 s->block_size - n_bytes - offset_in_block);
662 /* Write the new block under CoRwLock write-side protection,
663 * so this full-cluster write does not overlap a partial write
664 * of the same cluster, issued from the "else" branch.
666 ret = bdrv_pwrite(bs->file, data_offset, block, s->block_size);
667 qemu_co_rwlock_unlock(&s->bmap_lock);
668 } else {
669 nonallocating_write:
670 data_offset = s->header.offset_data +
671 (uint64_t)bmap_entry * s->block_size +
672 offset_in_block;
673 qemu_co_rwlock_unlock(&s->bmap_lock);
675 qemu_iovec_reset(&local_qiov);
676 qemu_iovec_concat(&local_qiov, qiov, bytes_done, n_bytes);
678 ret = bdrv_co_pwritev(bs->file, data_offset, n_bytes,
679 &local_qiov, 0);
682 bytes -= n_bytes;
683 offset += n_bytes;
684 bytes_done += n_bytes;
686 logout("%u bytes written\n", n_bytes);
689 qemu_iovec_destroy(&local_qiov);
691 logout("finished data write\n");
692 if (ret < 0) {
693 return ret;
696 if (block) {
697 /* One or more new blocks were allocated. */
698 VdiHeader *header = (VdiHeader *) block;
699 uint8_t *base;
700 uint64_t offset;
701 uint32_t n_sectors;
703 logout("now writing modified header\n");
704 assert(VDI_IS_ALLOCATED(bmap_first));
705 *header = s->header;
706 vdi_header_to_le(header);
707 ret = bdrv_pwrite(bs->file, 0, block, sizeof(VdiHeader));
708 g_free(block);
709 block = NULL;
711 if (ret < 0) {
712 return ret;
715 logout("now writing modified block map entry %u...%u\n",
716 bmap_first, bmap_last);
717 /* Write modified sectors from block map. */
718 bmap_first /= (SECTOR_SIZE / sizeof(uint32_t));
719 bmap_last /= (SECTOR_SIZE / sizeof(uint32_t));
720 n_sectors = bmap_last - bmap_first + 1;
721 offset = s->bmap_sector + bmap_first;
722 base = ((uint8_t *)&s->bmap[0]) + bmap_first * SECTOR_SIZE;
723 logout("will write %u block map sectors starting from entry %u\n",
724 n_sectors, bmap_first);
725 ret = bdrv_pwrite(bs->file, offset * SECTOR_SIZE, base,
726 n_sectors * SECTOR_SIZE);
729 return ret < 0 ? ret : 0;
732 static int coroutine_fn vdi_co_do_create(BlockdevCreateOptions *create_options,
733 size_t block_size, Error **errp)
735 BlockdevCreateOptionsVdi *vdi_opts;
736 int ret = 0;
737 uint64_t bytes = 0;
738 uint32_t blocks;
739 uint32_t image_type;
740 VdiHeader header;
741 size_t i;
742 size_t bmap_size;
743 int64_t offset = 0;
744 BlockDriverState *bs_file = NULL;
745 BlockBackend *blk = NULL;
746 uint32_t *bmap = NULL;
747 QemuUUID uuid;
749 assert(create_options->driver == BLOCKDEV_DRIVER_VDI);
750 vdi_opts = &create_options->u.vdi;
752 logout("\n");
754 /* Validate options and set default values */
755 bytes = vdi_opts->size;
757 if (!vdi_opts->has_preallocation) {
758 vdi_opts->preallocation = PREALLOC_MODE_OFF;
760 switch (vdi_opts->preallocation) {
761 case PREALLOC_MODE_OFF:
762 image_type = VDI_TYPE_DYNAMIC;
763 break;
764 case PREALLOC_MODE_METADATA:
765 image_type = VDI_TYPE_STATIC;
766 break;
767 default:
768 error_setg(errp, "Preallocation mode not supported for vdi");
769 return -EINVAL;
772 #ifndef CONFIG_VDI_STATIC_IMAGE
773 if (image_type == VDI_TYPE_STATIC) {
774 ret = -ENOTSUP;
775 error_setg(errp, "Statically allocated images cannot be created in "
776 "this build");
777 goto exit;
779 #endif
780 #ifndef CONFIG_VDI_BLOCK_SIZE
781 if (block_size != DEFAULT_CLUSTER_SIZE) {
782 ret = -ENOTSUP;
783 error_setg(errp,
784 "A non-default cluster size is not supported in this build");
785 goto exit;
787 #endif
789 if (bytes > VDI_DISK_SIZE_MAX) {
790 ret = -ENOTSUP;
791 error_setg(errp, "Unsupported VDI image size (size is 0x%" PRIx64
792 ", max supported is 0x%" PRIx64 ")",
793 bytes, VDI_DISK_SIZE_MAX);
794 goto exit;
797 /* Create BlockBackend to write to the image */
798 bs_file = bdrv_open_blockdev_ref(vdi_opts->file, errp);
799 if (!bs_file) {
800 ret = -EIO;
801 goto exit;
804 blk = blk_new_with_bs(bs_file, BLK_PERM_WRITE | BLK_PERM_RESIZE,
805 BLK_PERM_ALL, errp);
806 if (!blk) {
807 ret = -EPERM;
808 goto exit;
811 blk_set_allow_write_beyond_eof(blk, true);
813 /* We need enough blocks to store the given disk size,
814 so always round up. */
815 blocks = DIV_ROUND_UP(bytes, block_size);
817 bmap_size = blocks * sizeof(uint32_t);
818 bmap_size = ROUND_UP(bmap_size, SECTOR_SIZE);
820 memset(&header, 0, sizeof(header));
821 pstrcpy(header.text, sizeof(header.text), VDI_TEXT);
822 header.signature = VDI_SIGNATURE;
823 header.version = VDI_VERSION_1_1;
824 header.header_size = 0x180;
825 header.image_type = image_type;
826 header.offset_bmap = 0x200;
827 header.offset_data = 0x200 + bmap_size;
828 header.sector_size = SECTOR_SIZE;
829 header.disk_size = bytes;
830 header.block_size = block_size;
831 header.blocks_in_image = blocks;
832 if (image_type == VDI_TYPE_STATIC) {
833 header.blocks_allocated = blocks;
835 qemu_uuid_generate(&uuid);
836 header.uuid_image = uuid;
837 qemu_uuid_generate(&uuid);
838 header.uuid_last_snap = uuid;
839 /* There is no need to set header.uuid_link or header.uuid_parent here. */
840 if (VDI_DEBUG) {
841 vdi_header_print(&header);
843 vdi_header_to_le(&header);
844 ret = blk_pwrite(blk, offset, &header, sizeof(header), 0);
845 if (ret < 0) {
846 error_setg(errp, "Error writing header");
847 goto exit;
849 offset += sizeof(header);
851 if (bmap_size > 0) {
852 bmap = g_try_malloc0(bmap_size);
853 if (bmap == NULL) {
854 ret = -ENOMEM;
855 error_setg(errp, "Could not allocate bmap");
856 goto exit;
858 for (i = 0; i < blocks; i++) {
859 if (image_type == VDI_TYPE_STATIC) {
860 bmap[i] = i;
861 } else {
862 bmap[i] = VDI_UNALLOCATED;
865 ret = blk_pwrite(blk, offset, bmap, bmap_size, 0);
866 if (ret < 0) {
867 error_setg(errp, "Error writing bmap");
868 goto exit;
870 offset += bmap_size;
873 if (image_type == VDI_TYPE_STATIC) {
874 ret = blk_truncate(blk, offset + blocks * block_size, false,
875 PREALLOC_MODE_OFF, 0, errp);
876 if (ret < 0) {
877 error_prepend(errp, "Failed to statically allocate file");
878 goto exit;
882 ret = 0;
883 exit:
884 blk_unref(blk);
885 bdrv_unref(bs_file);
886 g_free(bmap);
887 return ret;
890 static int coroutine_fn vdi_co_create(BlockdevCreateOptions *create_options,
891 Error **errp)
893 return vdi_co_do_create(create_options, DEFAULT_CLUSTER_SIZE, errp);
896 static int coroutine_fn vdi_co_create_opts(BlockDriver *drv,
897 const char *filename,
898 QemuOpts *opts,
899 Error **errp)
901 QDict *qdict = NULL;
902 BlockdevCreateOptions *create_options = NULL;
903 BlockDriverState *bs_file = NULL;
904 uint64_t block_size = DEFAULT_CLUSTER_SIZE;
905 bool is_static = false;
906 Visitor *v;
907 int ret;
909 /* Parse options and convert legacy syntax.
911 * Since CONFIG_VDI_BLOCK_SIZE is disabled by default,
912 * cluster-size is not part of the QAPI schema; therefore we have
913 * to parse it before creating the QAPI object. */
914 #if defined(CONFIG_VDI_BLOCK_SIZE)
915 block_size = qemu_opt_get_size_del(opts,
916 BLOCK_OPT_CLUSTER_SIZE,
917 DEFAULT_CLUSTER_SIZE);
918 if (block_size < BDRV_SECTOR_SIZE || block_size > UINT32_MAX ||
919 !is_power_of_2(block_size))
921 error_setg(errp, "Invalid cluster size");
922 ret = -EINVAL;
923 goto done;
925 #endif
926 if (qemu_opt_get_bool_del(opts, BLOCK_OPT_STATIC, false)) {
927 is_static = true;
930 qdict = qemu_opts_to_qdict_filtered(opts, NULL, &vdi_create_opts, true);
932 /* Create and open the file (protocol layer) */
933 ret = bdrv_create_file(filename, opts, errp);
934 if (ret < 0) {
935 goto done;
938 bs_file = bdrv_open(filename, NULL, NULL,
939 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
940 if (!bs_file) {
941 ret = -EIO;
942 goto done;
945 qdict_put_str(qdict, "driver", "vdi");
946 qdict_put_str(qdict, "file", bs_file->node_name);
947 if (is_static) {
948 qdict_put_str(qdict, "preallocation", "metadata");
951 /* Get the QAPI object */
952 v = qobject_input_visitor_new_flat_confused(qdict, errp);
953 if (!v) {
954 ret = -EINVAL;
955 goto done;
957 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
958 visit_free(v);
959 if (!create_options) {
960 ret = -EINVAL;
961 goto done;
964 /* Silently round up size */
965 assert(create_options->driver == BLOCKDEV_DRIVER_VDI);
966 create_options->u.vdi.size = ROUND_UP(create_options->u.vdi.size,
967 BDRV_SECTOR_SIZE);
969 /* Create the vdi image (format layer) */
970 ret = vdi_co_do_create(create_options, block_size, errp);
971 done:
972 qobject_unref(qdict);
973 qapi_free_BlockdevCreateOptions(create_options);
974 bdrv_unref(bs_file);
975 return ret;
978 static void vdi_close(BlockDriverState *bs)
980 BDRVVdiState *s = bs->opaque;
982 qemu_vfree(s->bmap);
984 migrate_del_blocker(s->migration_blocker);
985 error_free(s->migration_blocker);
988 static int vdi_has_zero_init(BlockDriverState *bs)
990 BDRVVdiState *s = bs->opaque;
992 if (s->header.image_type == VDI_TYPE_STATIC) {
993 return bdrv_has_zero_init(bs->file->bs);
994 } else {
995 return 1;
999 static QemuOptsList vdi_create_opts = {
1000 .name = "vdi-create-opts",
1001 .head = QTAILQ_HEAD_INITIALIZER(vdi_create_opts.head),
1002 .desc = {
1004 .name = BLOCK_OPT_SIZE,
1005 .type = QEMU_OPT_SIZE,
1006 .help = "Virtual disk size"
1008 #if defined(CONFIG_VDI_BLOCK_SIZE)
1010 .name = BLOCK_OPT_CLUSTER_SIZE,
1011 .type = QEMU_OPT_SIZE,
1012 .help = "VDI cluster (block) size",
1013 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE)
1015 #endif
1016 #if defined(CONFIG_VDI_STATIC_IMAGE)
1018 .name = BLOCK_OPT_STATIC,
1019 .type = QEMU_OPT_BOOL,
1020 .help = "VDI static (pre-allocated) image",
1021 .def_value_str = "off"
1023 #endif
1024 /* TODO: An additional option to set UUID values might be useful. */
1025 { /* end of list */ }
1029 static BlockDriver bdrv_vdi = {
1030 .format_name = "vdi",
1031 .instance_size = sizeof(BDRVVdiState),
1032 .bdrv_probe = vdi_probe,
1033 .bdrv_open = vdi_open,
1034 .bdrv_close = vdi_close,
1035 .bdrv_reopen_prepare = vdi_reopen_prepare,
1036 .bdrv_child_perm = bdrv_default_perms,
1037 .bdrv_co_create = vdi_co_create,
1038 .bdrv_co_create_opts = vdi_co_create_opts,
1039 .bdrv_has_zero_init = vdi_has_zero_init,
1040 .bdrv_co_block_status = vdi_co_block_status,
1041 .bdrv_make_empty = vdi_make_empty,
1043 .bdrv_co_preadv = vdi_co_preadv,
1044 #if defined(CONFIG_VDI_WRITE)
1045 .bdrv_co_pwritev = vdi_co_pwritev,
1046 #endif
1048 .bdrv_get_info = vdi_get_info,
1050 .is_format = true,
1051 .create_opts = &vdi_create_opts,
1052 .bdrv_co_check = vdi_co_check,
1055 static void bdrv_vdi_init(void)
1057 logout("\n");
1058 bdrv_register(&bdrv_vdi);
1061 block_init(bdrv_vdi_init);