]>
Commit | Line | Data |
---|---|---|
9aebd98a SW |
1 | /* |
2 | * Block driver for the Virtual Disk Image (VDI) format | |
3 | * | |
641543b7 | 4 | * Copyright (c) 2009, 2012 Stefan Weil |
9aebd98a SW |
5 | * |
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. | |
10 | * | |
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. | |
15 | * | |
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/>. | |
18 | * | |
19 | * Reference: | |
20 | * http://forums.virtualbox.org/viewtopic.php?t=8046 | |
21 | * | |
22 | * This driver supports create / read / write operations on VDI images. | |
23 | * | |
24 | * Todo (see also TODO in code): | |
25 | * | |
26 | * Some features like snapshots are still missing. | |
27 | * | |
28 | * Deallocation of zero-filled blocks and shrinking images are missing, too | |
29 | * (might be added to common block layer). | |
30 | * | |
31 | * Allocation of blocks could be optimized (less writes to block map and | |
32 | * header). | |
33 | * | |
dc6fb73d | 34 | * Read and write of adjacent blocks could be done in one operation |
9aebd98a SW |
35 | * (current code uses one operation per block (1 MiB). |
36 | * | |
37 | * The code is not thread safe (missing locks for changes in header and | |
38 | * block table, no problem with current QEMU). | |
39 | * | |
40 | * Hints: | |
41 | * | |
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. | |
46 | * | |
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. | |
50 | */ | |
51 | ||
52 | #include "qemu-common.h" | |
737e150e | 53 | #include "block/block_int.h" |
1de7afc9 | 54 | #include "qemu/module.h" |
caf71f86 | 55 | #include "migration/migration.h" |
9aebd98a | 56 | |
ee682d27 | 57 | #if defined(CONFIG_UUID) |
9aebd98a SW |
58 | #include <uuid/uuid.h> |
59 | #else | |
60 | /* TODO: move uuid emulation to some central place in QEMU. */ | |
9c17d615 | 61 | #include "sysemu/sysemu.h" /* UUID_FMT */ |
9aebd98a | 62 | typedef unsigned char uuid_t[16]; |
9aebd98a SW |
63 | #endif |
64 | ||
65 | /* Code configuration options. */ | |
66 | ||
67 | /* Enable debug messages. */ | |
68 | //~ #define CONFIG_VDI_DEBUG | |
69 | ||
70 | /* Support write operations on VDI images. */ | |
71 | #define CONFIG_VDI_WRITE | |
72 | ||
73 | /* Support non-standard block (cluster) size. This is untested. | |
74 | * Maybe it will be needed for very large images. | |
75 | */ | |
76 | //~ #define CONFIG_VDI_BLOCK_SIZE | |
77 | ||
78 | /* Support static (fixed, pre-allocated) images. */ | |
79 | #define CONFIG_VDI_STATIC_IMAGE | |
80 | ||
81 | /* Command line option for static images. */ | |
82 | #define BLOCK_OPT_STATIC "static" | |
83 | ||
84 | #define KiB 1024 | |
85 | #define MiB (KiB * KiB) | |
86 | ||
87 | #define SECTOR_SIZE 512 | |
99cce9fa | 88 | #define DEFAULT_CLUSTER_SIZE (1 * MiB) |
9aebd98a SW |
89 | |
90 | #if defined(CONFIG_VDI_DEBUG) | |
91 | #define logout(fmt, ...) \ | |
92 | fprintf(stderr, "vdi\t%-24s" fmt, __func__, ##__VA_ARGS__) | |
93 | #else | |
94 | #define logout(fmt, ...) ((void)0) | |
95 | #endif | |
96 | ||
97 | /* Image signature. */ | |
98 | #define VDI_SIGNATURE 0xbeda107f | |
99 | ||
100 | /* Image version. */ | |
101 | #define VDI_VERSION_1_1 0x00010001 | |
102 | ||
103 | /* Image type. */ | |
104 | #define VDI_TYPE_DYNAMIC 1 | |
105 | #define VDI_TYPE_STATIC 2 | |
106 | ||
107 | /* Innotek / SUN images use these strings in header.text: | |
108 | * "<<< innotek VirtualBox Disk Image >>>\n" | |
109 | * "<<< Sun xVM VirtualBox Disk Image >>>\n" | |
110 | * "<<< Sun VirtualBox Disk Image >>>\n" | |
111 | * The value does not matter, so QEMU created images use a different text. | |
112 | */ | |
113 | #define VDI_TEXT "<<< QEMU VM Virtual Disk Image >>>\n" | |
114 | ||
c794b4e0 ES |
115 | /* A never-allocated block; semantically arbitrary content. */ |
116 | #define VDI_UNALLOCATED 0xffffffffU | |
117 | ||
118 | /* A discarded (no longer allocated) block; semantically zero-filled. */ | |
119 | #define VDI_DISCARDED 0xfffffffeU | |
120 | ||
121 | #define VDI_IS_ALLOCATED(X) ((X) < VDI_DISCARDED) | |
9aebd98a | 122 | |
63fa06dc JC |
123 | /* max blocks in image is (0xffffffff / 4) */ |
124 | #define VDI_BLOCKS_IN_IMAGE_MAX 0x3fffffff | |
125 | #define VDI_DISK_SIZE_MAX ((uint64_t)VDI_BLOCKS_IN_IMAGE_MAX * \ | |
126 | (uint64_t)DEFAULT_CLUSTER_SIZE) | |
127 | ||
ee682d27 | 128 | #if !defined(CONFIG_UUID) |
8ba2aae3 | 129 | static inline void uuid_generate(uuid_t out) |
9aebd98a | 130 | { |
4f3669ea | 131 | memset(out, 0, sizeof(uuid_t)); |
9aebd98a SW |
132 | } |
133 | ||
8ba2aae3 | 134 | static inline int uuid_is_null(const uuid_t uu) |
9aebd98a SW |
135 | { |
136 | uuid_t null_uuid = { 0 }; | |
4f3669ea | 137 | return memcmp(uu, null_uuid, sizeof(uuid_t)) == 0; |
9aebd98a SW |
138 | } |
139 | ||
8ba2aae3 | 140 | static inline void uuid_unparse(const uuid_t uu, char *out) |
9aebd98a SW |
141 | { |
142 | snprintf(out, 37, UUID_FMT, | |
143 | uu[0], uu[1], uu[2], uu[3], uu[4], uu[5], uu[6], uu[7], | |
144 | uu[8], uu[9], uu[10], uu[11], uu[12], uu[13], uu[14], uu[15]); | |
145 | } | |
146 | #endif | |
147 | ||
9aebd98a SW |
148 | typedef struct { |
149 | char text[0x40]; | |
150 | uint32_t signature; | |
151 | uint32_t version; | |
152 | uint32_t header_size; | |
153 | uint32_t image_type; | |
154 | uint32_t image_flags; | |
155 | char description[256]; | |
156 | uint32_t offset_bmap; | |
157 | uint32_t offset_data; | |
158 | uint32_t cylinders; /* disk geometry, unused here */ | |
159 | uint32_t heads; /* disk geometry, unused here */ | |
160 | uint32_t sectors; /* disk geometry, unused here */ | |
161 | uint32_t sector_size; | |
162 | uint32_t unused1; | |
163 | uint64_t disk_size; | |
164 | uint32_t block_size; | |
165 | uint32_t block_extra; /* unused here */ | |
166 | uint32_t blocks_in_image; | |
167 | uint32_t blocks_allocated; | |
168 | uuid_t uuid_image; | |
169 | uuid_t uuid_last_snap; | |
170 | uuid_t uuid_link; | |
171 | uuid_t uuid_parent; | |
172 | uint64_t unused2[7]; | |
8368febd | 173 | } QEMU_PACKED VdiHeader; |
9aebd98a SW |
174 | |
175 | typedef struct { | |
9aebd98a SW |
176 | /* The block map entries are little endian (even in memory). */ |
177 | uint32_t *bmap; | |
178 | /* Size of block (bytes). */ | |
179 | uint32_t block_size; | |
180 | /* Size of block (sectors). */ | |
181 | uint32_t block_sectors; | |
182 | /* First sector of block map. */ | |
183 | uint32_t bmap_sector; | |
4ff9786c | 184 | /* VDI header (converted to host endianness). */ |
9aebd98a | 185 | VdiHeader header; |
fc9d106c KW |
186 | |
187 | Error *migration_blocker; | |
9aebd98a SW |
188 | } BDRVVdiState; |
189 | ||
190 | /* Change UUID from little endian (IPRT = VirtualBox format) to big endian | |
191 | * format (network byte order, standard, see RFC 4122) and vice versa. | |
192 | */ | |
193 | static void uuid_convert(uuid_t uuid) | |
194 | { | |
195 | bswap32s((uint32_t *)&uuid[0]); | |
196 | bswap16s((uint16_t *)&uuid[4]); | |
197 | bswap16s((uint16_t *)&uuid[6]); | |
198 | } | |
199 | ||
200 | static void vdi_header_to_cpu(VdiHeader *header) | |
201 | { | |
202 | le32_to_cpus(&header->signature); | |
203 | le32_to_cpus(&header->version); | |
204 | le32_to_cpus(&header->header_size); | |
205 | le32_to_cpus(&header->image_type); | |
206 | le32_to_cpus(&header->image_flags); | |
207 | le32_to_cpus(&header->offset_bmap); | |
208 | le32_to_cpus(&header->offset_data); | |
209 | le32_to_cpus(&header->cylinders); | |
210 | le32_to_cpus(&header->heads); | |
211 | le32_to_cpus(&header->sectors); | |
212 | le32_to_cpus(&header->sector_size); | |
213 | le64_to_cpus(&header->disk_size); | |
214 | le32_to_cpus(&header->block_size); | |
215 | le32_to_cpus(&header->block_extra); | |
216 | le32_to_cpus(&header->blocks_in_image); | |
217 | le32_to_cpus(&header->blocks_allocated); | |
218 | uuid_convert(header->uuid_image); | |
219 | uuid_convert(header->uuid_last_snap); | |
220 | uuid_convert(header->uuid_link); | |
221 | uuid_convert(header->uuid_parent); | |
222 | } | |
223 | ||
224 | static void vdi_header_to_le(VdiHeader *header) | |
225 | { | |
226 | cpu_to_le32s(&header->signature); | |
227 | cpu_to_le32s(&header->version); | |
228 | cpu_to_le32s(&header->header_size); | |
229 | cpu_to_le32s(&header->image_type); | |
230 | cpu_to_le32s(&header->image_flags); | |
231 | cpu_to_le32s(&header->offset_bmap); | |
232 | cpu_to_le32s(&header->offset_data); | |
233 | cpu_to_le32s(&header->cylinders); | |
234 | cpu_to_le32s(&header->heads); | |
235 | cpu_to_le32s(&header->sectors); | |
236 | cpu_to_le32s(&header->sector_size); | |
237 | cpu_to_le64s(&header->disk_size); | |
238 | cpu_to_le32s(&header->block_size); | |
239 | cpu_to_le32s(&header->block_extra); | |
240 | cpu_to_le32s(&header->blocks_in_image); | |
241 | cpu_to_le32s(&header->blocks_allocated); | |
9aebd98a SW |
242 | uuid_convert(header->uuid_image); |
243 | uuid_convert(header->uuid_last_snap); | |
244 | uuid_convert(header->uuid_link); | |
245 | uuid_convert(header->uuid_parent); | |
246 | } | |
247 | ||
248 | #if defined(CONFIG_VDI_DEBUG) | |
249 | static void vdi_header_print(VdiHeader *header) | |
250 | { | |
251 | char uuid[37]; | |
252 | logout("text %s", header->text); | |
9f0470bb | 253 | logout("signature 0x%08x\n", header->signature); |
9aebd98a SW |
254 | logout("header size 0x%04x\n", header->header_size); |
255 | logout("image type 0x%04x\n", header->image_type); | |
256 | logout("image flags 0x%04x\n", header->image_flags); | |
257 | logout("description %s\n", header->description); | |
258 | logout("offset bmap 0x%04x\n", header->offset_bmap); | |
259 | logout("offset data 0x%04x\n", header->offset_data); | |
260 | logout("cylinders 0x%04x\n", header->cylinders); | |
261 | logout("heads 0x%04x\n", header->heads); | |
262 | logout("sectors 0x%04x\n", header->sectors); | |
263 | logout("sector size 0x%04x\n", header->sector_size); | |
264 | logout("image size 0x%" PRIx64 " B (%" PRIu64 " MiB)\n", | |
265 | header->disk_size, header->disk_size / MiB); | |
266 | logout("block size 0x%04x\n", header->block_size); | |
267 | logout("block extra 0x%04x\n", header->block_extra); | |
268 | logout("blocks tot. 0x%04x\n", header->blocks_in_image); | |
269 | logout("blocks all. 0x%04x\n", header->blocks_allocated); | |
270 | uuid_unparse(header->uuid_image, uuid); | |
271 | logout("uuid image %s\n", uuid); | |
272 | uuid_unparse(header->uuid_last_snap, uuid); | |
273 | logout("uuid snap %s\n", uuid); | |
274 | uuid_unparse(header->uuid_link, uuid); | |
275 | logout("uuid link %s\n", uuid); | |
276 | uuid_unparse(header->uuid_parent, uuid); | |
277 | logout("uuid parent %s\n", uuid); | |
278 | } | |
279 | #endif | |
280 | ||
4534ff54 KW |
281 | static int vdi_check(BlockDriverState *bs, BdrvCheckResult *res, |
282 | BdrvCheckMode fix) | |
9aebd98a SW |
283 | { |
284 | /* TODO: additional checks possible. */ | |
285 | BDRVVdiState *s = (BDRVVdiState *)bs->opaque; | |
9aebd98a SW |
286 | uint32_t blocks_allocated = 0; |
287 | uint32_t block; | |
288 | uint32_t *bmap; | |
289 | logout("\n"); | |
290 | ||
4534ff54 KW |
291 | if (fix) { |
292 | return -ENOTSUP; | |
293 | } | |
294 | ||
7267c094 | 295 | bmap = g_malloc(s->header.blocks_in_image * sizeof(uint32_t)); |
9aebd98a SW |
296 | memset(bmap, 0xff, s->header.blocks_in_image * sizeof(uint32_t)); |
297 | ||
298 | /* Check block map and value of blocks_allocated. */ | |
299 | for (block = 0; block < s->header.blocks_in_image; block++) { | |
300 | uint32_t bmap_entry = le32_to_cpu(s->bmap[block]); | |
c794b4e0 | 301 | if (VDI_IS_ALLOCATED(bmap_entry)) { |
9aebd98a SW |
302 | if (bmap_entry < s->header.blocks_in_image) { |
303 | blocks_allocated++; | |
c794b4e0 | 304 | if (!VDI_IS_ALLOCATED(bmap[bmap_entry])) { |
9aebd98a SW |
305 | bmap[bmap_entry] = bmap_entry; |
306 | } else { | |
307 | fprintf(stderr, "ERROR: block index %" PRIu32 | |
308 | " also used by %" PRIu32 "\n", bmap[bmap_entry], bmap_entry); | |
9ac228e0 | 309 | res->corruptions++; |
9aebd98a SW |
310 | } |
311 | } else { | |
312 | fprintf(stderr, "ERROR: block index %" PRIu32 | |
313 | " too large, is %" PRIu32 "\n", block, bmap_entry); | |
9ac228e0 | 314 | res->corruptions++; |
9aebd98a SW |
315 | } |
316 | } | |
317 | } | |
318 | if (blocks_allocated != s->header.blocks_allocated) { | |
319 | fprintf(stderr, "ERROR: allocated blocks mismatch, is %" PRIu32 | |
320 | ", should be %" PRIu32 "\n", | |
321 | blocks_allocated, s->header.blocks_allocated); | |
9ac228e0 | 322 | res->corruptions++; |
9aebd98a SW |
323 | } |
324 | ||
7267c094 | 325 | g_free(bmap); |
9aebd98a | 326 | |
9ac228e0 | 327 | return 0; |
9aebd98a SW |
328 | } |
329 | ||
330 | static int vdi_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) | |
331 | { | |
332 | /* TODO: vdi_get_info would be needed for machine snapshots. | |
333 | vm_state_offset is still missing. */ | |
334 | BDRVVdiState *s = (BDRVVdiState *)bs->opaque; | |
335 | logout("\n"); | |
336 | bdi->cluster_size = s->block_size; | |
337 | bdi->vm_state_offset = 0; | |
95de6d70 | 338 | bdi->unallocated_blocks_are_zero = true; |
9aebd98a SW |
339 | return 0; |
340 | } | |
341 | ||
342 | static int vdi_make_empty(BlockDriverState *bs) | |
343 | { | |
344 | /* TODO: missing code. */ | |
345 | logout("\n"); | |
346 | /* The return value for missing code must be 0, see block.c. */ | |
347 | return 0; | |
348 | } | |
349 | ||
350 | static int vdi_probe(const uint8_t *buf, int buf_size, const char *filename) | |
351 | { | |
352 | const VdiHeader *header = (const VdiHeader *)buf; | |
353 | int result = 0; | |
354 | ||
355 | logout("\n"); | |
356 | ||
357 | if (buf_size < sizeof(*header)) { | |
358 | /* Header too small, no VDI. */ | |
359 | } else if (le32_to_cpu(header->signature) == VDI_SIGNATURE) { | |
360 | result = 100; | |
361 | } | |
362 | ||
363 | if (result == 0) { | |
364 | logout("no vdi image\n"); | |
365 | } else { | |
366 | logout("%s", header->text); | |
367 | } | |
368 | ||
369 | return result; | |
370 | } | |
371 | ||
015a1036 HR |
372 | static int vdi_open(BlockDriverState *bs, QDict *options, int flags, |
373 | Error **errp) | |
9aebd98a SW |
374 | { |
375 | BDRVVdiState *s = bs->opaque; | |
376 | VdiHeader header; | |
377 | size_t bmap_size; | |
8937f822 | 378 | int ret; |
9aebd98a SW |
379 | |
380 | logout("\n"); | |
381 | ||
8937f822 SW |
382 | ret = bdrv_read(bs->file, 0, (uint8_t *)&header, 1); |
383 | if (ret < 0) { | |
9aebd98a SW |
384 | goto fail; |
385 | } | |
386 | ||
387 | vdi_header_to_cpu(&header); | |
388 | #if defined(CONFIG_VDI_DEBUG) | |
389 | vdi_header_print(&header); | |
390 | #endif | |
391 | ||
63fa06dc JC |
392 | if (header.disk_size > VDI_DISK_SIZE_MAX) { |
393 | error_setg(errp, "Unsupported VDI image size (size is 0x%" PRIx64 | |
394 | ", max supported is 0x%" PRIx64 ")", | |
395 | header.disk_size, VDI_DISK_SIZE_MAX); | |
396 | ret = -ENOTSUP; | |
397 | goto fail; | |
398 | } | |
399 | ||
f21dc3a4 SW |
400 | if (header.disk_size % SECTOR_SIZE != 0) { |
401 | /* 'VBoxManage convertfromraw' can create images with odd disk sizes. | |
402 | We accept them but round the disk size to the next multiple of | |
403 | SECTOR_SIZE. */ | |
404 | logout("odd disk size %" PRIu64 " B, round up\n", header.disk_size); | |
405 | header.disk_size += SECTOR_SIZE - 1; | |
406 | header.disk_size &= ~(SECTOR_SIZE - 1); | |
407 | } | |
408 | ||
0e87ba2c | 409 | if (header.signature != VDI_SIGNATURE) { |
521b2b5d HR |
410 | error_setg(errp, "Image not in VDI format (bad signature %08" PRIx32 |
411 | ")", header.signature); | |
76abe407 | 412 | ret = -EINVAL; |
0e87ba2c SW |
413 | goto fail; |
414 | } else if (header.version != VDI_VERSION_1_1) { | |
521b2b5d HR |
415 | error_setg(errp, "unsupported VDI image (version %" PRIu32 ".%" PRIu32 |
416 | ")", header.version >> 16, header.version & 0xffff); | |
8937f822 | 417 | ret = -ENOTSUP; |
9aebd98a SW |
418 | goto fail; |
419 | } else if (header.offset_bmap % SECTOR_SIZE != 0) { | |
420 | /* We only support block maps which start on a sector boundary. */ | |
5b7aa9b5 | 421 | error_setg(errp, "unsupported VDI image (unaligned block map offset " |
521b2b5d | 422 | "0x%" PRIx32 ")", header.offset_bmap); |
8937f822 | 423 | ret = -ENOTSUP; |
9aebd98a SW |
424 | goto fail; |
425 | } else if (header.offset_data % SECTOR_SIZE != 0) { | |
426 | /* We only support data blocks which start on a sector boundary. */ | |
521b2b5d HR |
427 | error_setg(errp, "unsupported VDI image (unaligned data offset 0x%" |
428 | PRIx32 ")", header.offset_data); | |
8937f822 | 429 | ret = -ENOTSUP; |
9aebd98a SW |
430 | goto fail; |
431 | } else if (header.sector_size != SECTOR_SIZE) { | |
521b2b5d HR |
432 | error_setg(errp, "unsupported VDI image (sector size %" PRIu32 |
433 | " is not %u)", header.sector_size, SECTOR_SIZE); | |
8937f822 | 434 | ret = -ENOTSUP; |
9aebd98a | 435 | goto fail; |
63fa06dc | 436 | } else if (header.block_size != DEFAULT_CLUSTER_SIZE) { |
521b2b5d HR |
437 | error_setg(errp, "unsupported VDI image (block size %" PRIu32 |
438 | " is not %u)", header.block_size, DEFAULT_CLUSTER_SIZE); | |
8937f822 | 439 | ret = -ENOTSUP; |
9aebd98a | 440 | goto fail; |
f21dc3a4 SW |
441 | } else if (header.disk_size > |
442 | (uint64_t)header.blocks_in_image * header.block_size) { | |
5b7aa9b5 PB |
443 | error_setg(errp, "unsupported VDI image (disk size %" PRIu64 ", " |
444 | "image bitmap has room for %" PRIu64 ")", | |
445 | header.disk_size, | |
446 | (uint64_t)header.blocks_in_image * header.block_size); | |
8937f822 | 447 | ret = -ENOTSUP; |
9aebd98a SW |
448 | goto fail; |
449 | } else if (!uuid_is_null(header.uuid_link)) { | |
5b7aa9b5 | 450 | error_setg(errp, "unsupported VDI image (non-NULL link UUID)"); |
8937f822 | 451 | ret = -ENOTSUP; |
9aebd98a SW |
452 | goto fail; |
453 | } else if (!uuid_is_null(header.uuid_parent)) { | |
5b7aa9b5 | 454 | error_setg(errp, "unsupported VDI image (non-NULL parent UUID)"); |
8937f822 | 455 | ret = -ENOTSUP; |
9aebd98a | 456 | goto fail; |
63fa06dc JC |
457 | } else if (header.blocks_in_image > VDI_BLOCKS_IN_IMAGE_MAX) { |
458 | error_setg(errp, "unsupported VDI image " | |
459 | "(too many blocks %u, max is %u)", | |
460 | header.blocks_in_image, VDI_BLOCKS_IN_IMAGE_MAX); | |
461 | ret = -ENOTSUP; | |
462 | goto fail; | |
9aebd98a SW |
463 | } |
464 | ||
465 | bs->total_sectors = header.disk_size / SECTOR_SIZE; | |
466 | ||
467 | s->block_size = header.block_size; | |
468 | s->block_sectors = header.block_size / SECTOR_SIZE; | |
469 | s->bmap_sector = header.offset_bmap / SECTOR_SIZE; | |
470 | s->header = header; | |
471 | ||
472 | bmap_size = header.blocks_in_image * sizeof(uint32_t); | |
6eea90eb | 473 | bmap_size = (bmap_size + SECTOR_SIZE - 1) / SECTOR_SIZE; |
6528499f | 474 | s->bmap = g_malloc(bmap_size * SECTOR_SIZE); |
8937f822 SW |
475 | ret = bdrv_read(bs->file, s->bmap_sector, (uint8_t *)s->bmap, bmap_size); |
476 | if (ret < 0) { | |
9aebd98a SW |
477 | goto fail_free_bmap; |
478 | } | |
479 | ||
fc9d106c KW |
480 | /* Disable migration when vdi images are used */ |
481 | error_set(&s->migration_blocker, | |
482 | QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, | |
483 | "vdi", bs->device_name, "live migration"); | |
484 | migrate_add_blocker(s->migration_blocker); | |
485 | ||
9aebd98a SW |
486 | return 0; |
487 | ||
488 | fail_free_bmap: | |
7267c094 | 489 | g_free(s->bmap); |
9aebd98a SW |
490 | |
491 | fail: | |
8937f822 | 492 | return ret; |
9aebd98a SW |
493 | } |
494 | ||
ecfe2bba JC |
495 | static int vdi_reopen_prepare(BDRVReopenState *state, |
496 | BlockReopenQueue *queue, Error **errp) | |
497 | { | |
498 | return 0; | |
499 | } | |
500 | ||
b6b8a333 | 501 | static int64_t coroutine_fn vdi_co_get_block_status(BlockDriverState *bs, |
e850b35a | 502 | int64_t sector_num, int nb_sectors, int *pnum) |
9aebd98a SW |
503 | { |
504 | /* TODO: Check for too large sector_num (in bdrv_is_allocated or here). */ | |
505 | BDRVVdiState *s = (BDRVVdiState *)bs->opaque; | |
506 | size_t bmap_index = sector_num / s->block_sectors; | |
507 | size_t sector_in_block = sector_num % s->block_sectors; | |
508 | int n_sectors = s->block_sectors - sector_in_block; | |
509 | uint32_t bmap_entry = le32_to_cpu(s->bmap[bmap_index]); | |
4bc74be9 PB |
510 | uint64_t offset; |
511 | int result; | |
512 | ||
9aebd98a SW |
513 | logout("%p, %" PRId64 ", %d, %p\n", bs, sector_num, nb_sectors, pnum); |
514 | if (n_sectors > nb_sectors) { | |
515 | n_sectors = nb_sectors; | |
516 | } | |
517 | *pnum = n_sectors; | |
4bc74be9 PB |
518 | result = VDI_IS_ALLOCATED(bmap_entry); |
519 | if (!result) { | |
520 | return 0; | |
521 | } | |
522 | ||
523 | offset = s->header.offset_data + | |
524 | (uint64_t)bmap_entry * s->block_size + | |
525 | sector_in_block * SECTOR_SIZE; | |
526 | return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | offset; | |
9aebd98a SW |
527 | } |
528 | ||
a7a43aa1 PB |
529 | static int vdi_co_read(BlockDriverState *bs, |
530 | int64_t sector_num, uint8_t *buf, int nb_sectors) | |
9aebd98a | 531 | { |
9aebd98a SW |
532 | BDRVVdiState *s = bs->opaque; |
533 | uint32_t bmap_entry; | |
534 | uint32_t block_index; | |
535 | uint32_t sector_in_block; | |
536 | uint32_t n_sectors; | |
eb9566d1 | 537 | int ret = 0; |
4de659e8 PB |
538 | |
539 | logout("\n"); | |
9aebd98a | 540 | |
eb9566d1 PB |
541 | while (ret >= 0 && nb_sectors > 0) { |
542 | block_index = sector_num / s->block_sectors; | |
543 | sector_in_block = sector_num % s->block_sectors; | |
544 | n_sectors = s->block_sectors - sector_in_block; | |
545 | if (n_sectors > nb_sectors) { | |
546 | n_sectors = nb_sectors; | |
547 | } | |
0c7bfc32 | 548 | |
eb9566d1 PB |
549 | logout("will read %u sectors starting at sector %" PRIu64 "\n", |
550 | n_sectors, sector_num); | |
551 | ||
552 | /* prepare next AIO request */ | |
553 | bmap_entry = le32_to_cpu(s->bmap[block_index]); | |
554 | if (!VDI_IS_ALLOCATED(bmap_entry)) { | |
555 | /* Block not allocated, return zeros, no need to wait. */ | |
556 | memset(buf, 0, n_sectors * SECTOR_SIZE); | |
557 | ret = 0; | |
558 | } else { | |
559 | uint64_t offset = s->header.offset_data / SECTOR_SIZE + | |
560 | (uint64_t)bmap_entry * s->block_sectors + | |
561 | sector_in_block; | |
562 | ret = bdrv_read(bs->file, offset, buf, n_sectors); | |
563 | } | |
564 | logout("%u sectors read\n", n_sectors); | |
0c7bfc32 | 565 | |
eb9566d1 PB |
566 | nb_sectors -= n_sectors; |
567 | sector_num += n_sectors; | |
568 | buf += n_sectors * SECTOR_SIZE; | |
9aebd98a | 569 | } |
3d46a75a | 570 | |
3d46a75a | 571 | return ret; |
9aebd98a SW |
572 | } |
573 | ||
a7a43aa1 PB |
574 | static int vdi_co_write(BlockDriverState *bs, |
575 | int64_t sector_num, const uint8_t *buf, int nb_sectors) | |
9aebd98a | 576 | { |
9aebd98a SW |
577 | BDRVVdiState *s = bs->opaque; |
578 | uint32_t bmap_entry; | |
579 | uint32_t block_index; | |
580 | uint32_t sector_in_block; | |
581 | uint32_t n_sectors; | |
bfc45fc1 PB |
582 | uint32_t bmap_first = VDI_UNALLOCATED; |
583 | uint32_t bmap_last = VDI_UNALLOCATED; | |
bfc45fc1 | 584 | uint8_t *block = NULL; |
eb9566d1 | 585 | int ret = 0; |
4de659e8 PB |
586 | |
587 | logout("\n"); | |
9aebd98a | 588 | |
eb9566d1 PB |
589 | while (ret >= 0 && nb_sectors > 0) { |
590 | block_index = sector_num / s->block_sectors; | |
591 | sector_in_block = sector_num % s->block_sectors; | |
592 | n_sectors = s->block_sectors - sector_in_block; | |
593 | if (n_sectors > nb_sectors) { | |
594 | n_sectors = nb_sectors; | |
595 | } | |
9aebd98a | 596 | |
eb9566d1 PB |
597 | logout("will write %u sectors starting at sector %" PRIu64 "\n", |
598 | n_sectors, sector_num); | |
599 | ||
600 | /* prepare next AIO request */ | |
601 | bmap_entry = le32_to_cpu(s->bmap[block_index]); | |
602 | if (!VDI_IS_ALLOCATED(bmap_entry)) { | |
603 | /* Allocate new block and write to it. */ | |
604 | uint64_t offset; | |
605 | bmap_entry = s->header.blocks_allocated; | |
606 | s->bmap[block_index] = cpu_to_le32(bmap_entry); | |
607 | s->header.blocks_allocated++; | |
608 | offset = s->header.offset_data / SECTOR_SIZE + | |
609 | (uint64_t)bmap_entry * s->block_sectors; | |
610 | if (block == NULL) { | |
611 | block = g_malloc(s->block_size); | |
612 | bmap_first = block_index; | |
613 | } | |
614 | bmap_last = block_index; | |
615 | /* Copy data to be written to new block and zero unused parts. */ | |
616 | memset(block, 0, sector_in_block * SECTOR_SIZE); | |
617 | memcpy(block + sector_in_block * SECTOR_SIZE, | |
618 | buf, n_sectors * SECTOR_SIZE); | |
619 | memset(block + (sector_in_block + n_sectors) * SECTOR_SIZE, 0, | |
620 | (s->block_sectors - n_sectors - sector_in_block) * SECTOR_SIZE); | |
621 | ret = bdrv_write(bs->file, offset, block, s->block_sectors); | |
622 | } else { | |
623 | uint64_t offset = s->header.offset_data / SECTOR_SIZE + | |
624 | (uint64_t)bmap_entry * s->block_sectors + | |
625 | sector_in_block; | |
626 | ret = bdrv_write(bs->file, offset, buf, n_sectors); | |
9aebd98a | 627 | } |
0c7bfc32 | 628 | |
eb9566d1 PB |
629 | nb_sectors -= n_sectors; |
630 | sector_num += n_sectors; | |
631 | buf += n_sectors * SECTOR_SIZE; | |
0c7bfc32 | 632 | |
eb9566d1 | 633 | logout("%u sectors written\n", n_sectors); |
9aebd98a | 634 | } |
9aebd98a | 635 | |
0c7bfc32 | 636 | logout("finished data write\n"); |
4eea78e6 PB |
637 | if (ret < 0) { |
638 | return ret; | |
639 | } | |
640 | ||
641 | if (block) { | |
642 | /* One or more new blocks were allocated. */ | |
643 | VdiHeader *header = (VdiHeader *) block; | |
644 | uint8_t *base; | |
645 | uint64_t offset; | |
646 | ||
647 | logout("now writing modified header\n"); | |
648 | assert(VDI_IS_ALLOCATED(bmap_first)); | |
649 | *header = s->header; | |
650 | vdi_header_to_le(header); | |
651 | ret = bdrv_write(bs->file, 0, block, 1); | |
bfc45fc1 PB |
652 | g_free(block); |
653 | block = NULL; | |
4eea78e6 PB |
654 | |
655 | if (ret < 0) { | |
656 | return ret; | |
0c7bfc32 | 657 | } |
4eea78e6 PB |
658 | |
659 | logout("now writing modified block map entry %u...%u\n", | |
660 | bmap_first, bmap_last); | |
661 | /* Write modified sectors from block map. */ | |
662 | bmap_first /= (SECTOR_SIZE / sizeof(uint32_t)); | |
663 | bmap_last /= (SECTOR_SIZE / sizeof(uint32_t)); | |
664 | n_sectors = bmap_last - bmap_first + 1; | |
665 | offset = s->bmap_sector + bmap_first; | |
666 | base = ((uint8_t *)&s->bmap[0]) + bmap_first * SECTOR_SIZE; | |
667 | logout("will write %u block map sectors starting from entry %u\n", | |
668 | n_sectors, bmap_first); | |
669 | ret = bdrv_write(bs->file, offset, base, n_sectors); | |
0c7bfc32 PB |
670 | } |
671 | ||
3d46a75a | 672 | return ret; |
9aebd98a SW |
673 | } |
674 | ||
004b7f25 | 675 | static int vdi_create(const char *filename, QemuOpts *opts, Error **errp) |
9aebd98a SW |
676 | { |
677 | int fd; | |
678 | int result = 0; | |
679 | uint64_t bytes = 0; | |
680 | uint32_t blocks; | |
99cce9fa | 681 | size_t block_size = DEFAULT_CLUSTER_SIZE; |
9aebd98a SW |
682 | uint32_t image_type = VDI_TYPE_DYNAMIC; |
683 | VdiHeader header; | |
684 | size_t i; | |
685 | size_t bmap_size; | |
9aebd98a SW |
686 | |
687 | logout("\n"); | |
688 | ||
689 | /* Read out options. */ | |
004b7f25 | 690 | bytes = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
9aebd98a | 691 | #if defined(CONFIG_VDI_BLOCK_SIZE) |
004b7f25 CL |
692 | /* TODO: Additional checks (SECTOR_SIZE * 2^n, ...). */ |
693 | block_size = qemu_opt_get_size_del(opts, | |
694 | BLOCK_OPT_CLUSTER_SIZE, | |
695 | DEFAULT_CLUSTER_SIZE); | |
9aebd98a SW |
696 | #endif |
697 | #if defined(CONFIG_VDI_STATIC_IMAGE) | |
004b7f25 CL |
698 | if (qemu_opt_get_bool_del(opts, BLOCK_OPT_STATIC, false)) { |
699 | image_type = VDI_TYPE_STATIC; | |
9aebd98a | 700 | } |
004b7f25 | 701 | #endif |
9aebd98a | 702 | |
63fa06dc JC |
703 | if (bytes > VDI_DISK_SIZE_MAX) { |
704 | result = -ENOTSUP; | |
705 | error_setg(errp, "Unsupported VDI image size (size is 0x%" PRIx64 | |
706 | ", max supported is 0x%" PRIx64 ")", | |
707 | bytes, VDI_DISK_SIZE_MAX); | |
708 | goto exit; | |
709 | } | |
710 | ||
6165f4d8 CB |
711 | fd = qemu_open(filename, |
712 | O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, | |
713 | 0644); | |
9aebd98a | 714 | if (fd < 0) { |
63fa06dc JC |
715 | result = -errno; |
716 | goto exit; | |
9aebd98a SW |
717 | } |
718 | ||
f21dc3a4 SW |
719 | /* We need enough blocks to store the given disk size, |
720 | so always round up. */ | |
721 | blocks = (bytes + block_size - 1) / block_size; | |
722 | ||
9aebd98a SW |
723 | bmap_size = blocks * sizeof(uint32_t); |
724 | bmap_size = ((bmap_size + SECTOR_SIZE - 1) & ~(SECTOR_SIZE -1)); | |
725 | ||
726 | memset(&header, 0, sizeof(header)); | |
1786dc15 | 727 | pstrcpy(header.text, sizeof(header.text), VDI_TEXT); |
9aebd98a SW |
728 | header.signature = VDI_SIGNATURE; |
729 | header.version = VDI_VERSION_1_1; | |
730 | header.header_size = 0x180; | |
731 | header.image_type = image_type; | |
732 | header.offset_bmap = 0x200; | |
733 | header.offset_data = 0x200 + bmap_size; | |
734 | header.sector_size = SECTOR_SIZE; | |
735 | header.disk_size = bytes; | |
736 | header.block_size = block_size; | |
737 | header.blocks_in_image = blocks; | |
6eea90eb SW |
738 | if (image_type == VDI_TYPE_STATIC) { |
739 | header.blocks_allocated = blocks; | |
740 | } | |
9aebd98a SW |
741 | uuid_generate(header.uuid_image); |
742 | uuid_generate(header.uuid_last_snap); | |
743 | /* There is no need to set header.uuid_link or header.uuid_parent here. */ | |
744 | #if defined(CONFIG_VDI_DEBUG) | |
745 | vdi_header_print(&header); | |
746 | #endif | |
747 | vdi_header_to_le(&header); | |
748 | if (write(fd, &header, sizeof(header)) < 0) { | |
749 | result = -errno; | |
0549ea8b | 750 | goto close_and_exit; |
9aebd98a SW |
751 | } |
752 | ||
b76b6e95 | 753 | if (bmap_size > 0) { |
514f21a5 SW |
754 | uint32_t *bmap = g_malloc0(bmap_size); |
755 | for (i = 0; i < blocks; i++) { | |
756 | if (image_type == VDI_TYPE_STATIC) { | |
757 | bmap[i] = i; | |
758 | } else { | |
759 | bmap[i] = VDI_UNALLOCATED; | |
760 | } | |
9aebd98a | 761 | } |
514f21a5 SW |
762 | if (write(fd, bmap, bmap_size) < 0) { |
763 | result = -errno; | |
0549ea8b HR |
764 | g_free(bmap); |
765 | goto close_and_exit; | |
514f21a5 SW |
766 | } |
767 | g_free(bmap); | |
9aebd98a | 768 | } |
514f21a5 | 769 | |
9aebd98a SW |
770 | if (image_type == VDI_TYPE_STATIC) { |
771 | if (ftruncate(fd, sizeof(header) + bmap_size + blocks * block_size)) { | |
772 | result = -errno; | |
0549ea8b | 773 | goto close_and_exit; |
9aebd98a SW |
774 | } |
775 | } | |
776 | ||
0549ea8b HR |
777 | close_and_exit: |
778 | if ((close(fd) < 0) && !result) { | |
9aebd98a SW |
779 | result = -errno; |
780 | } | |
781 | ||
63fa06dc | 782 | exit: |
9aebd98a SW |
783 | return result; |
784 | } | |
785 | ||
786 | static void vdi_close(BlockDriverState *bs) | |
787 | { | |
fc9d106c | 788 | BDRVVdiState *s = bs->opaque; |
6ac5f388 KW |
789 | |
790 | g_free(s->bmap); | |
791 | ||
fc9d106c KW |
792 | migrate_del_blocker(s->migration_blocker); |
793 | error_free(s->migration_blocker); | |
9aebd98a SW |
794 | } |
795 | ||
004b7f25 CL |
796 | static QemuOptsList vdi_create_opts = { |
797 | .name = "vdi-create-opts", | |
798 | .head = QTAILQ_HEAD_INITIALIZER(vdi_create_opts.head), | |
799 | .desc = { | |
800 | { | |
801 | .name = BLOCK_OPT_SIZE, | |
802 | .type = QEMU_OPT_SIZE, | |
803 | .help = "Virtual disk size" | |
804 | }, | |
9aebd98a | 805 | #if defined(CONFIG_VDI_BLOCK_SIZE) |
004b7f25 CL |
806 | { |
807 | .name = BLOCK_OPT_CLUSTER_SIZE, | |
808 | .type = QEMU_OPT_SIZE, | |
809 | .help = "VDI cluster (block) size", | |
810 | .def_value_str = stringify(DEFAULT_CLUSTER_SIZE) | |
811 | }, | |
9aebd98a SW |
812 | #endif |
813 | #if defined(CONFIG_VDI_STATIC_IMAGE) | |
004b7f25 CL |
814 | { |
815 | .name = BLOCK_OPT_STATIC, | |
816 | .type = QEMU_OPT_BOOL, | |
817 | .help = "VDI static (pre-allocated) image", | |
818 | .def_value_str = "off" | |
819 | }, | |
9aebd98a | 820 | #endif |
004b7f25 CL |
821 | /* TODO: An additional option to set UUID values might be useful. */ |
822 | { /* end of list */ } | |
823 | } | |
9aebd98a SW |
824 | }; |
825 | ||
826 | static BlockDriver bdrv_vdi = { | |
827 | .format_name = "vdi", | |
828 | .instance_size = sizeof(BDRVVdiState), | |
829 | .bdrv_probe = vdi_probe, | |
830 | .bdrv_open = vdi_open, | |
831 | .bdrv_close = vdi_close, | |
ecfe2bba | 832 | .bdrv_reopen_prepare = vdi_reopen_prepare, |
c282e1fd | 833 | .bdrv_create = vdi_create, |
3ac21627 | 834 | .bdrv_has_zero_init = bdrv_has_zero_init_1, |
b6b8a333 | 835 | .bdrv_co_get_block_status = vdi_co_get_block_status, |
9aebd98a SW |
836 | .bdrv_make_empty = vdi_make_empty, |
837 | ||
a7a43aa1 | 838 | .bdrv_read = vdi_co_read, |
9aebd98a | 839 | #if defined(CONFIG_VDI_WRITE) |
a7a43aa1 | 840 | .bdrv_write = vdi_co_write, |
9aebd98a SW |
841 | #endif |
842 | ||
843 | .bdrv_get_info = vdi_get_info, | |
844 | ||
004b7f25 | 845 | .create_opts = &vdi_create_opts, |
9aebd98a SW |
846 | .bdrv_check = vdi_check, |
847 | }; | |
848 | ||
849 | static void bdrv_vdi_init(void) | |
850 | { | |
851 | logout("\n"); | |
852 | bdrv_register(&bdrv_vdi); | |
853 | } | |
854 | ||
855 | block_init(bdrv_vdi_init); |