Update OpenBIOS images to r771
[qemu/aliguori-queue.git] / block / vdi.c
blob1d257b4838e1b7e494adf7ed442e62f06f191814
1 /*
2 * Block driver for the Virtual Disk Image (VDI) format
4 * Copyright (c) 2009 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 adjacents 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-common.h"
53 #include "block_int.h"
54 #include "module.h"
56 #if defined(CONFIG_UUID)
57 #include <uuid/uuid.h>
58 #else
59 /* TODO: move uuid emulation to some central place in QEMU. */
60 #include "sysemu.h" /* UUID_FMT */
61 typedef unsigned char uuid_t[16];
62 void uuid_generate(uuid_t out);
63 int uuid_is_null(const uuid_t uu);
64 void uuid_unparse(const uuid_t uu, char *out);
65 #endif
67 /* Code configuration options. */
69 /* Enable debug messages. */
70 //~ #define CONFIG_VDI_DEBUG
72 /* Support write operations on VDI images. */
73 #define CONFIG_VDI_WRITE
75 /* Support non-standard block (cluster) size. This is untested.
76 * Maybe it will be needed for very large images.
78 //~ #define CONFIG_VDI_BLOCK_SIZE
80 /* Support static (fixed, pre-allocated) images. */
81 #define CONFIG_VDI_STATIC_IMAGE
83 /* Command line option for static images. */
84 #define BLOCK_OPT_STATIC "static"
86 #define KiB 1024
87 #define MiB (KiB * KiB)
89 #define SECTOR_SIZE 512
91 #if defined(CONFIG_VDI_DEBUG)
92 #define logout(fmt, ...) \
93 fprintf(stderr, "vdi\t%-24s" fmt, __func__, ##__VA_ARGS__)
94 #else
95 #define logout(fmt, ...) ((void)0)
96 #endif
98 /* Image signature. */
99 #define VDI_SIGNATURE 0xbeda107f
101 /* Image version. */
102 #define VDI_VERSION_1_1 0x00010001
104 /* Image type. */
105 #define VDI_TYPE_DYNAMIC 1
106 #define VDI_TYPE_STATIC 2
108 /* Innotek / SUN images use these strings in header.text:
109 * "<<< innotek VirtualBox Disk Image >>>\n"
110 * "<<< Sun xVM VirtualBox Disk Image >>>\n"
111 * "<<< Sun VirtualBox Disk Image >>>\n"
112 * The value does not matter, so QEMU created images use a different text.
114 #define VDI_TEXT "<<< QEMU VM Virtual Disk Image >>>\n"
116 /* Unallocated blocks use this index (no need to convert endianess). */
117 #define VDI_UNALLOCATED UINT32_MAX
119 #if !defined(CONFIG_UUID)
120 void uuid_generate(uuid_t out)
122 memset(out, 0, sizeof(out));
125 int uuid_is_null(const uuid_t uu)
127 uuid_t null_uuid = { 0 };
128 return memcmp(uu, null_uuid, sizeof(uu)) == 0;
131 void uuid_unparse(const uuid_t uu, char *out)
133 snprintf(out, 37, UUID_FMT,
134 uu[0], uu[1], uu[2], uu[3], uu[4], uu[5], uu[6], uu[7],
135 uu[8], uu[9], uu[10], uu[11], uu[12], uu[13], uu[14], uu[15]);
137 #endif
139 typedef struct {
140 BlockDriverAIOCB common;
141 int64_t sector_num;
142 QEMUIOVector *qiov;
143 uint8_t *buf;
144 /* Total number of sectors. */
145 int nb_sectors;
146 /* Number of sectors for current AIO. */
147 int n_sectors;
148 /* New allocated block map entry. */
149 uint32_t bmap_first;
150 uint32_t bmap_last;
151 /* Buffer for new allocated block. */
152 void *block_buffer;
153 void *orig_buf;
154 int header_modified;
155 BlockDriverAIOCB *hd_aiocb;
156 struct iovec hd_iov;
157 QEMUIOVector hd_qiov;
158 QEMUBH *bh;
159 } VdiAIOCB;
161 typedef struct {
162 char text[0x40];
163 uint32_t signature;
164 uint32_t version;
165 uint32_t header_size;
166 uint32_t image_type;
167 uint32_t image_flags;
168 char description[256];
169 uint32_t offset_bmap;
170 uint32_t offset_data;
171 uint32_t cylinders; /* disk geometry, unused here */
172 uint32_t heads; /* disk geometry, unused here */
173 uint32_t sectors; /* disk geometry, unused here */
174 uint32_t sector_size;
175 uint32_t unused1;
176 uint64_t disk_size;
177 uint32_t block_size;
178 uint32_t block_extra; /* unused here */
179 uint32_t blocks_in_image;
180 uint32_t blocks_allocated;
181 uuid_t uuid_image;
182 uuid_t uuid_last_snap;
183 uuid_t uuid_link;
184 uuid_t uuid_parent;
185 uint64_t unused2[7];
186 } VdiHeader;
188 typedef struct {
189 BlockDriverState *hd;
190 /* The block map entries are little endian (even in memory). */
191 uint32_t *bmap;
192 /* Size of block (bytes). */
193 uint32_t block_size;
194 /* Size of block (sectors). */
195 uint32_t block_sectors;
196 /* First sector of block map. */
197 uint32_t bmap_sector;
198 /* VDI header (converted to host endianess). */
199 VdiHeader header;
200 } BDRVVdiState;
202 /* Change UUID from little endian (IPRT = VirtualBox format) to big endian
203 * format (network byte order, standard, see RFC 4122) and vice versa.
205 static void uuid_convert(uuid_t uuid)
207 bswap32s((uint32_t *)&uuid[0]);
208 bswap16s((uint16_t *)&uuid[4]);
209 bswap16s((uint16_t *)&uuid[6]);
212 static void vdi_header_to_cpu(VdiHeader *header)
214 le32_to_cpus(&header->signature);
215 le32_to_cpus(&header->version);
216 le32_to_cpus(&header->header_size);
217 le32_to_cpus(&header->image_type);
218 le32_to_cpus(&header->image_flags);
219 le32_to_cpus(&header->offset_bmap);
220 le32_to_cpus(&header->offset_data);
221 le32_to_cpus(&header->cylinders);
222 le32_to_cpus(&header->heads);
223 le32_to_cpus(&header->sectors);
224 le32_to_cpus(&header->sector_size);
225 le64_to_cpus(&header->disk_size);
226 le32_to_cpus(&header->block_size);
227 le32_to_cpus(&header->block_extra);
228 le32_to_cpus(&header->blocks_in_image);
229 le32_to_cpus(&header->blocks_allocated);
230 uuid_convert(header->uuid_image);
231 uuid_convert(header->uuid_last_snap);
232 uuid_convert(header->uuid_link);
233 uuid_convert(header->uuid_parent);
236 static void vdi_header_to_le(VdiHeader *header)
238 cpu_to_le32s(&header->signature);
239 cpu_to_le32s(&header->version);
240 cpu_to_le32s(&header->header_size);
241 cpu_to_le32s(&header->image_type);
242 cpu_to_le32s(&header->image_flags);
243 cpu_to_le32s(&header->offset_bmap);
244 cpu_to_le32s(&header->offset_data);
245 cpu_to_le32s(&header->cylinders);
246 cpu_to_le32s(&header->heads);
247 cpu_to_le32s(&header->sectors);
248 cpu_to_le32s(&header->sector_size);
249 cpu_to_le64s(&header->disk_size);
250 cpu_to_le32s(&header->block_size);
251 cpu_to_le32s(&header->block_extra);
252 cpu_to_le32s(&header->blocks_in_image);
253 cpu_to_le32s(&header->blocks_allocated);
254 cpu_to_le32s(&header->blocks_allocated);
255 uuid_convert(header->uuid_image);
256 uuid_convert(header->uuid_last_snap);
257 uuid_convert(header->uuid_link);
258 uuid_convert(header->uuid_parent);
261 #if defined(CONFIG_VDI_DEBUG)
262 static void vdi_header_print(VdiHeader *header)
264 char uuid[37];
265 logout("text %s", header->text);
266 logout("signature 0x%04x\n", header->signature);
267 logout("header size 0x%04x\n", header->header_size);
268 logout("image type 0x%04x\n", header->image_type);
269 logout("image flags 0x%04x\n", header->image_flags);
270 logout("description %s\n", header->description);
271 logout("offset bmap 0x%04x\n", header->offset_bmap);
272 logout("offset data 0x%04x\n", header->offset_data);
273 logout("cylinders 0x%04x\n", header->cylinders);
274 logout("heads 0x%04x\n", header->heads);
275 logout("sectors 0x%04x\n", header->sectors);
276 logout("sector size 0x%04x\n", header->sector_size);
277 logout("image size 0x%" PRIx64 " B (%" PRIu64 " MiB)\n",
278 header->disk_size, header->disk_size / MiB);
279 logout("block size 0x%04x\n", header->block_size);
280 logout("block extra 0x%04x\n", header->block_extra);
281 logout("blocks tot. 0x%04x\n", header->blocks_in_image);
282 logout("blocks all. 0x%04x\n", header->blocks_allocated);
283 uuid_unparse(header->uuid_image, uuid);
284 logout("uuid image %s\n", uuid);
285 uuid_unparse(header->uuid_last_snap, uuid);
286 logout("uuid snap %s\n", uuid);
287 uuid_unparse(header->uuid_link, uuid);
288 logout("uuid link %s\n", uuid);
289 uuid_unparse(header->uuid_parent, uuid);
290 logout("uuid parent %s\n", uuid);
292 #endif
294 static int vdi_check(BlockDriverState *bs)
296 /* TODO: additional checks possible. */
297 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
298 int n_errors = 0;
299 uint32_t blocks_allocated = 0;
300 uint32_t block;
301 uint32_t *bmap;
302 logout("\n");
304 bmap = qemu_malloc(s->header.blocks_in_image * sizeof(uint32_t));
305 memset(bmap, 0xff, s->header.blocks_in_image * sizeof(uint32_t));
307 /* Check block map and value of blocks_allocated. */
308 for (block = 0; block < s->header.blocks_in_image; block++) {
309 uint32_t bmap_entry = le32_to_cpu(s->bmap[block]);
310 if (bmap_entry != VDI_UNALLOCATED) {
311 if (bmap_entry < s->header.blocks_in_image) {
312 blocks_allocated++;
313 if (bmap[bmap_entry] == VDI_UNALLOCATED) {
314 bmap[bmap_entry] = bmap_entry;
315 } else {
316 fprintf(stderr, "ERROR: block index %" PRIu32
317 " also used by %" PRIu32 "\n", bmap[bmap_entry], bmap_entry);
319 } else {
320 fprintf(stderr, "ERROR: block index %" PRIu32
321 " too large, is %" PRIu32 "\n", block, bmap_entry);
322 n_errors++;
326 if (blocks_allocated != s->header.blocks_allocated) {
327 fprintf(stderr, "ERROR: allocated blocks mismatch, is %" PRIu32
328 ", should be %" PRIu32 "\n",
329 blocks_allocated, s->header.blocks_allocated);
330 n_errors++;
333 qemu_free(bmap);
335 return n_errors;
338 static int vdi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
340 /* TODO: vdi_get_info would be needed for machine snapshots.
341 vm_state_offset is still missing. */
342 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
343 logout("\n");
344 bdi->cluster_size = s->block_size;
345 bdi->vm_state_offset = 0;
346 return 0;
349 static int vdi_make_empty(BlockDriverState *bs)
351 /* TODO: missing code. */
352 logout("\n");
353 /* The return value for missing code must be 0, see block.c. */
354 return 0;
357 static int vdi_probe(const uint8_t *buf, int buf_size, const char *filename)
359 const VdiHeader *header = (const VdiHeader *)buf;
360 int result = 0;
362 logout("\n");
364 if (buf_size < sizeof(*header)) {
365 /* Header too small, no VDI. */
366 } else if (le32_to_cpu(header->signature) == VDI_SIGNATURE) {
367 result = 100;
370 if (result == 0) {
371 logout("no vdi image\n");
372 } else {
373 logout("%s", header->text);
376 return result;
379 static int vdi_open(BlockDriverState *bs, int flags)
381 BDRVVdiState *s = bs->opaque;
382 VdiHeader header;
383 size_t bmap_size;
385 logout("\n");
387 if (bdrv_read(bs->file, 0, (uint8_t *)&header, 1) < 0) {
388 goto fail;
391 vdi_header_to_cpu(&header);
392 #if defined(CONFIG_VDI_DEBUG)
393 vdi_header_print(&header);
394 #endif
396 if (header.version != VDI_VERSION_1_1) {
397 logout("unsupported version %u.%u\n",
398 header.version >> 16, header.version & 0xffff);
399 goto fail;
400 } else if (header.offset_bmap % SECTOR_SIZE != 0) {
401 /* We only support block maps which start on a sector boundary. */
402 logout("unsupported block map offset 0x%x B\n", header.offset_bmap);
403 goto fail;
404 } else if (header.offset_data % SECTOR_SIZE != 0) {
405 /* We only support data blocks which start on a sector boundary. */
406 logout("unsupported data offset 0x%x B\n", header.offset_data);
407 goto fail;
408 } else if (header.disk_size % SECTOR_SIZE != 0) {
409 logout("unsupported disk size %" PRIu64 " B\n", header.disk_size);
410 goto fail;
411 } else if (header.sector_size != SECTOR_SIZE) {
412 logout("unsupported sector size %u B\n", header.sector_size);
413 goto fail;
414 } else if (header.block_size != 1 * MiB) {
415 logout("unsupported block size %u B\n", header.block_size);
416 goto fail;
417 } else if ((header.disk_size + header.block_size - 1) / header.block_size !=
418 (uint64_t)header.blocks_in_image) {
419 logout("unexpected block number %u B\n", header.blocks_in_image);
420 goto fail;
421 } else if (!uuid_is_null(header.uuid_link)) {
422 logout("link uuid != 0, unsupported\n");
423 goto fail;
424 } else if (!uuid_is_null(header.uuid_parent)) {
425 logout("parent uuid != 0, unsupported\n");
426 goto fail;
429 bs->total_sectors = header.disk_size / SECTOR_SIZE;
431 s->block_size = header.block_size;
432 s->block_sectors = header.block_size / SECTOR_SIZE;
433 s->bmap_sector = header.offset_bmap / SECTOR_SIZE;
434 s->header = header;
436 bmap_size = header.blocks_in_image * sizeof(uint32_t);
437 bmap_size = (bmap_size + SECTOR_SIZE - 1) / SECTOR_SIZE;
438 s->bmap = qemu_malloc(bmap_size * SECTOR_SIZE);
439 if (bdrv_read(bs->file, s->bmap_sector, (uint8_t *)s->bmap, bmap_size) < 0) {
440 goto fail_free_bmap;
443 return 0;
445 fail_free_bmap:
446 qemu_free(s->bmap);
448 fail:
449 return -1;
452 static int vdi_is_allocated(BlockDriverState *bs, int64_t sector_num,
453 int nb_sectors, int *pnum)
455 /* TODO: Check for too large sector_num (in bdrv_is_allocated or here). */
456 BDRVVdiState *s = (BDRVVdiState *)bs->opaque;
457 size_t bmap_index = sector_num / s->block_sectors;
458 size_t sector_in_block = sector_num % s->block_sectors;
459 int n_sectors = s->block_sectors - sector_in_block;
460 uint32_t bmap_entry = le32_to_cpu(s->bmap[bmap_index]);
461 logout("%p, %" PRId64 ", %d, %p\n", bs, sector_num, nb_sectors, pnum);
462 if (n_sectors > nb_sectors) {
463 n_sectors = nb_sectors;
465 *pnum = n_sectors;
466 return bmap_entry != VDI_UNALLOCATED;
469 static void vdi_aio_cancel(BlockDriverAIOCB *blockacb)
471 /* TODO: This code is untested. How can I get it executed? */
472 VdiAIOCB *acb = (VdiAIOCB *)blockacb;
473 logout("\n");
474 if (acb->hd_aiocb) {
475 bdrv_aio_cancel(acb->hd_aiocb);
477 qemu_aio_release(acb);
480 static AIOPool vdi_aio_pool = {
481 .aiocb_size = sizeof(VdiAIOCB),
482 .cancel = vdi_aio_cancel,
485 static VdiAIOCB *vdi_aio_setup(BlockDriverState *bs, int64_t sector_num,
486 QEMUIOVector *qiov, int nb_sectors,
487 BlockDriverCompletionFunc *cb, void *opaque, int is_write)
489 VdiAIOCB *acb;
491 logout("%p, %" PRId64 ", %p, %d, %p, %p, %d\n",
492 bs, sector_num, qiov, nb_sectors, cb, opaque, is_write);
494 acb = qemu_aio_get(&vdi_aio_pool, bs, cb, opaque);
495 if (acb) {
496 acb->hd_aiocb = NULL;
497 acb->sector_num = sector_num;
498 acb->qiov = qiov;
499 if (qiov->niov > 1) {
500 acb->buf = qemu_blockalign(bs, qiov->size);
501 acb->orig_buf = acb->buf;
502 if (is_write) {
503 qemu_iovec_to_buffer(qiov, acb->buf);
505 } else {
506 acb->buf = (uint8_t *)qiov->iov->iov_base;
508 acb->nb_sectors = nb_sectors;
509 acb->n_sectors = 0;
510 acb->bmap_first = VDI_UNALLOCATED;
511 acb->bmap_last = VDI_UNALLOCATED;
512 acb->block_buffer = NULL;
513 acb->header_modified = 0;
515 return acb;
518 static int vdi_schedule_bh(QEMUBHFunc *cb, VdiAIOCB *acb)
520 logout("\n");
522 if (acb->bh) {
523 return -EIO;
526 acb->bh = qemu_bh_new(cb, acb);
527 if (!acb->bh) {
528 return -EIO;
531 qemu_bh_schedule(acb->bh);
533 return 0;
536 static void vdi_aio_read_cb(void *opaque, int ret);
538 static void vdi_aio_read_bh(void *opaque)
540 VdiAIOCB *acb = opaque;
541 logout("\n");
542 qemu_bh_delete(acb->bh);
543 acb->bh = NULL;
544 vdi_aio_read_cb(opaque, 0);
547 static void vdi_aio_read_cb(void *opaque, int ret)
549 VdiAIOCB *acb = opaque;
550 BlockDriverState *bs = acb->common.bs;
551 BDRVVdiState *s = bs->opaque;
552 uint32_t bmap_entry;
553 uint32_t block_index;
554 uint32_t sector_in_block;
555 uint32_t n_sectors;
557 logout("%u sectors read\n", acb->n_sectors);
559 acb->hd_aiocb = NULL;
561 if (ret < 0) {
562 goto done;
565 acb->nb_sectors -= acb->n_sectors;
567 if (acb->nb_sectors == 0) {
568 /* request completed */
569 ret = 0;
570 goto done;
573 acb->sector_num += acb->n_sectors;
574 acb->buf += acb->n_sectors * SECTOR_SIZE;
576 block_index = acb->sector_num / s->block_sectors;
577 sector_in_block = acb->sector_num % s->block_sectors;
578 n_sectors = s->block_sectors - sector_in_block;
579 if (n_sectors > acb->nb_sectors) {
580 n_sectors = acb->nb_sectors;
583 logout("will read %u sectors starting at sector %" PRIu64 "\n",
584 n_sectors, acb->sector_num);
586 /* prepare next AIO request */
587 acb->n_sectors = n_sectors;
588 bmap_entry = le32_to_cpu(s->bmap[block_index]);
589 if (bmap_entry == VDI_UNALLOCATED) {
590 /* Block not allocated, return zeros, no need to wait. */
591 memset(acb->buf, 0, n_sectors * SECTOR_SIZE);
592 ret = vdi_schedule_bh(vdi_aio_read_bh, acb);
593 if (ret < 0) {
594 goto done;
596 } else {
597 uint64_t offset = s->header.offset_data / SECTOR_SIZE +
598 (uint64_t)bmap_entry * s->block_sectors +
599 sector_in_block;
600 acb->hd_iov.iov_base = (void *)acb->buf;
601 acb->hd_iov.iov_len = n_sectors * SECTOR_SIZE;
602 qemu_iovec_init_external(&acb->hd_qiov, &acb->hd_iov, 1);
603 acb->hd_aiocb = bdrv_aio_readv(bs->file, offset, &acb->hd_qiov,
604 n_sectors, vdi_aio_read_cb, acb);
605 if (acb->hd_aiocb == NULL) {
606 goto done;
609 return;
610 done:
611 if (acb->qiov->niov > 1) {
612 qemu_iovec_from_buffer(acb->qiov, acb->orig_buf, acb->qiov->size);
613 qemu_vfree(acb->orig_buf);
615 acb->common.cb(acb->common.opaque, ret);
616 qemu_aio_release(acb);
619 static BlockDriverAIOCB *vdi_aio_readv(BlockDriverState *bs,
620 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
621 BlockDriverCompletionFunc *cb, void *opaque)
623 VdiAIOCB *acb;
624 logout("\n");
625 acb = vdi_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
626 if (!acb) {
627 return NULL;
629 vdi_aio_read_cb(acb, 0);
630 return &acb->common;
633 static void vdi_aio_write_cb(void *opaque, int ret)
635 VdiAIOCB *acb = opaque;
636 BlockDriverState *bs = acb->common.bs;
637 BDRVVdiState *s = bs->opaque;
638 uint32_t bmap_entry;
639 uint32_t block_index;
640 uint32_t sector_in_block;
641 uint32_t n_sectors;
643 acb->hd_aiocb = NULL;
645 if (ret < 0) {
646 goto done;
649 acb->nb_sectors -= acb->n_sectors;
650 acb->sector_num += acb->n_sectors;
651 acb->buf += acb->n_sectors * SECTOR_SIZE;
653 if (acb->nb_sectors == 0) {
654 logout("finished data write\n");
655 acb->n_sectors = 0;
656 if (acb->header_modified) {
657 VdiHeader *header = acb->block_buffer;
658 logout("now writing modified header\n");
659 assert(acb->bmap_first != VDI_UNALLOCATED);
660 *header = s->header;
661 vdi_header_to_le(header);
662 acb->header_modified = 0;
663 acb->hd_iov.iov_base = acb->block_buffer;
664 acb->hd_iov.iov_len = SECTOR_SIZE;
665 qemu_iovec_init_external(&acb->hd_qiov, &acb->hd_iov, 1);
666 acb->hd_aiocb = bdrv_aio_writev(bs->file, 0, &acb->hd_qiov, 1,
667 vdi_aio_write_cb, acb);
668 if (acb->hd_aiocb == NULL) {
669 goto done;
671 return;
672 } else if (acb->bmap_first != VDI_UNALLOCATED) {
673 /* One or more new blocks were allocated. */
674 uint64_t offset;
675 uint32_t bmap_first;
676 uint32_t bmap_last;
677 qemu_free(acb->block_buffer);
678 acb->block_buffer = NULL;
679 bmap_first = acb->bmap_first;
680 bmap_last = acb->bmap_last;
681 logout("now writing modified block map entry %u...%u\n",
682 bmap_first, bmap_last);
683 /* Write modified sectors from block map. */
684 bmap_first /= (SECTOR_SIZE / sizeof(uint32_t));
685 bmap_last /= (SECTOR_SIZE / sizeof(uint32_t));
686 n_sectors = bmap_last - bmap_first + 1;
687 offset = s->bmap_sector + bmap_first;
688 acb->bmap_first = VDI_UNALLOCATED;
689 acb->hd_iov.iov_base = (void *)((uint8_t *)&s->bmap[0] +
690 bmap_first * SECTOR_SIZE);
691 acb->hd_iov.iov_len = n_sectors * SECTOR_SIZE;
692 qemu_iovec_init_external(&acb->hd_qiov, &acb->hd_iov, 1);
693 logout("will write %u block map sectors starting from entry %u\n",
694 n_sectors, bmap_first);
695 acb->hd_aiocb = bdrv_aio_writev(bs->file, offset, &acb->hd_qiov,
696 n_sectors, vdi_aio_write_cb, acb);
697 if (acb->hd_aiocb == NULL) {
698 goto done;
700 return;
702 ret = 0;
703 goto done;
706 logout("%u sectors written\n", acb->n_sectors);
708 block_index = acb->sector_num / s->block_sectors;
709 sector_in_block = acb->sector_num % s->block_sectors;
710 n_sectors = s->block_sectors - sector_in_block;
711 if (n_sectors > acb->nb_sectors) {
712 n_sectors = acb->nb_sectors;
715 logout("will write %u sectors starting at sector %" PRIu64 "\n",
716 n_sectors, acb->sector_num);
718 /* prepare next AIO request */
719 acb->n_sectors = n_sectors;
720 bmap_entry = le32_to_cpu(s->bmap[block_index]);
721 if (bmap_entry == VDI_UNALLOCATED) {
722 /* Allocate new block and write to it. */
723 uint64_t offset;
724 uint8_t *block;
725 bmap_entry = s->header.blocks_allocated;
726 s->bmap[block_index] = cpu_to_le32(bmap_entry);
727 s->header.blocks_allocated++;
728 offset = s->header.offset_data / SECTOR_SIZE +
729 (uint64_t)bmap_entry * s->block_sectors;
730 block = acb->block_buffer;
731 if (block == NULL) {
732 block = qemu_mallocz(s->block_size);
733 acb->block_buffer = block;
734 acb->bmap_first = block_index;
735 assert(!acb->header_modified);
736 acb->header_modified = 1;
738 acb->bmap_last = block_index;
739 memcpy(block + sector_in_block * SECTOR_SIZE,
740 acb->buf, n_sectors * SECTOR_SIZE);
741 acb->hd_iov.iov_base = (void *)block;
742 acb->hd_iov.iov_len = s->block_size;
743 qemu_iovec_init_external(&acb->hd_qiov, &acb->hd_iov, 1);
744 acb->hd_aiocb = bdrv_aio_writev(bs->file, offset,
745 &acb->hd_qiov, s->block_sectors,
746 vdi_aio_write_cb, acb);
747 if (acb->hd_aiocb == NULL) {
748 goto done;
750 } else {
751 uint64_t offset = s->header.offset_data / SECTOR_SIZE +
752 (uint64_t)bmap_entry * s->block_sectors +
753 sector_in_block;
754 acb->hd_iov.iov_base = (void *)acb->buf;
755 acb->hd_iov.iov_len = n_sectors * SECTOR_SIZE;
756 qemu_iovec_init_external(&acb->hd_qiov, &acb->hd_iov, 1);
757 acb->hd_aiocb = bdrv_aio_writev(bs->file, offset, &acb->hd_qiov,
758 n_sectors, vdi_aio_write_cb, acb);
759 if (acb->hd_aiocb == NULL) {
760 goto done;
764 return;
766 done:
767 if (acb->qiov->niov > 1) {
768 qemu_vfree(acb->orig_buf);
770 acb->common.cb(acb->common.opaque, ret);
771 qemu_aio_release(acb);
774 static BlockDriverAIOCB *vdi_aio_writev(BlockDriverState *bs,
775 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
776 BlockDriverCompletionFunc *cb, void *opaque)
778 VdiAIOCB *acb;
779 logout("\n");
780 acb = vdi_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
781 if (!acb) {
782 return NULL;
784 vdi_aio_write_cb(acb, 0);
785 return &acb->common;
788 static int vdi_create(const char *filename, QEMUOptionParameter *options)
790 int fd;
791 int result = 0;
792 uint64_t bytes = 0;
793 uint32_t blocks;
794 size_t block_size = 1 * MiB;
795 uint32_t image_type = VDI_TYPE_DYNAMIC;
796 VdiHeader header;
797 size_t i;
798 size_t bmap_size;
799 uint32_t *bmap;
801 logout("\n");
803 /* Read out options. */
804 while (options && options->name) {
805 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
806 bytes = options->value.n;
807 #if defined(CONFIG_VDI_BLOCK_SIZE)
808 } else if (!strcmp(options->name, BLOCK_OPT_CLUSTER_SIZE)) {
809 if (options->value.n) {
810 /* TODO: Additional checks (SECTOR_SIZE * 2^n, ...). */
811 block_size = options->value.n;
813 #endif
814 #if defined(CONFIG_VDI_STATIC_IMAGE)
815 } else if (!strcmp(options->name, BLOCK_OPT_STATIC)) {
816 if (options->value.n) {
817 image_type = VDI_TYPE_STATIC;
819 #endif
821 options++;
824 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
825 0644);
826 if (fd < 0) {
827 return -errno;
830 blocks = bytes / block_size;
831 bmap_size = blocks * sizeof(uint32_t);
832 bmap_size = ((bmap_size + SECTOR_SIZE - 1) & ~(SECTOR_SIZE -1));
834 memset(&header, 0, sizeof(header));
835 pstrcpy(header.text, sizeof(header.text), VDI_TEXT);
836 header.signature = VDI_SIGNATURE;
837 header.version = VDI_VERSION_1_1;
838 header.header_size = 0x180;
839 header.image_type = image_type;
840 header.offset_bmap = 0x200;
841 header.offset_data = 0x200 + bmap_size;
842 header.sector_size = SECTOR_SIZE;
843 header.disk_size = bytes;
844 header.block_size = block_size;
845 header.blocks_in_image = blocks;
846 if (image_type == VDI_TYPE_STATIC) {
847 header.blocks_allocated = blocks;
849 uuid_generate(header.uuid_image);
850 uuid_generate(header.uuid_last_snap);
851 /* There is no need to set header.uuid_link or header.uuid_parent here. */
852 #if defined(CONFIG_VDI_DEBUG)
853 vdi_header_print(&header);
854 #endif
855 vdi_header_to_le(&header);
856 if (write(fd, &header, sizeof(header)) < 0) {
857 result = -errno;
860 bmap = (uint32_t *)qemu_mallocz(bmap_size);
861 for (i = 0; i < blocks; i++) {
862 if (image_type == VDI_TYPE_STATIC) {
863 bmap[i] = i;
864 } else {
865 bmap[i] = VDI_UNALLOCATED;
868 if (write(fd, bmap, bmap_size) < 0) {
869 result = -errno;
871 qemu_free(bmap);
872 if (image_type == VDI_TYPE_STATIC) {
873 if (ftruncate(fd, sizeof(header) + bmap_size + blocks * block_size)) {
874 result = -errno;
878 if (close(fd) < 0) {
879 result = -errno;
882 return result;
885 static void vdi_close(BlockDriverState *bs)
889 static void vdi_flush(BlockDriverState *bs)
891 logout("\n");
892 bdrv_flush(bs->file);
896 static QEMUOptionParameter vdi_create_options[] = {
898 .name = BLOCK_OPT_SIZE,
899 .type = OPT_SIZE,
900 .help = "Virtual disk size"
902 #if defined(CONFIG_VDI_BLOCK_SIZE)
904 .name = BLOCK_OPT_CLUSTER_SIZE,
905 .type = OPT_SIZE,
906 .help = "VDI cluster (block) size"
908 #endif
909 #if defined(CONFIG_VDI_STATIC_IMAGE)
911 .name = BLOCK_OPT_STATIC,
912 .type = OPT_FLAG,
913 .help = "VDI static (pre-allocated) image"
915 #endif
916 /* TODO: An additional option to set UUID values might be useful. */
917 { NULL }
920 static BlockDriver bdrv_vdi = {
921 .format_name = "vdi",
922 .instance_size = sizeof(BDRVVdiState),
923 .bdrv_probe = vdi_probe,
924 .bdrv_open = vdi_open,
925 .bdrv_close = vdi_close,
926 .bdrv_create = vdi_create,
927 .bdrv_flush = vdi_flush,
928 .bdrv_is_allocated = vdi_is_allocated,
929 .bdrv_make_empty = vdi_make_empty,
931 .bdrv_aio_readv = vdi_aio_readv,
932 #if defined(CONFIG_VDI_WRITE)
933 .bdrv_aio_writev = vdi_aio_writev,
934 #endif
936 .bdrv_get_info = vdi_get_info,
938 .create_options = vdi_create_options,
939 .bdrv_check = vdi_check,
942 static void bdrv_vdi_init(void)
944 logout("\n");
945 bdrv_register(&bdrv_vdi);
948 block_init(bdrv_vdi_init);