]>
Commit | Line | Data |
---|---|---|
6a0f9e82 | 1 | /* |
cc2040f8 | 2 | * Block driver for Connectix / Microsoft Virtual PC images |
5fafdf24 | 3 | * |
6a0f9e82 | 4 | * Copyright (c) 2005 Alex Beregszaszi |
15d35bc5 | 5 | * Copyright (c) 2009 Kevin Wolf <[email protected]> |
5fafdf24 | 6 | * |
6a0f9e82 FB |
7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
8 | * of this software and associated documentation files (the "Software"), to deal | |
9 | * in the Software without restriction, including without limitation the rights | |
10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
11 | * copies of the Software, and to permit persons to whom the Software is | |
12 | * furnished to do so, subject to the following conditions: | |
13 | * | |
14 | * The above copyright notice and this permission notice shall be included in | |
15 | * all copies or substantial portions of the Software. | |
16 | * | |
17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
23 | * THE SOFTWARE. | |
24 | */ | |
faf07963 | 25 | #include "qemu-common.h" |
737e150e | 26 | #include "block/block_int.h" |
1de7afc9 | 27 | #include "qemu/module.h" |
caf71f86 | 28 | #include "migration/migration.h" |
1fe1fa51 CA |
29 | #if defined(CONFIG_UUID) |
30 | #include <uuid/uuid.h> | |
31 | #endif | |
6a0f9e82 FB |
32 | |
33 | /**************************************************************/ | |
34 | ||
35 | #define HEADER_SIZE 512 | |
36 | ||
f880defb SW |
37 | #define VHD_SECTOR_SIZE 512 |
38 | ||
6a0f9e82 FB |
39 | //#define CACHE |
40 | ||
2cfacb62 AL |
41 | enum vhd_type { |
42 | VHD_FIXED = 2, | |
43 | VHD_DYNAMIC = 3, | |
44 | VHD_DIFFERENCING = 4, | |
45 | }; | |
46 | ||
57c7d9e5 AL |
47 | // Seconds since Jan 1, 2000 0:00:00 (UTC) |
48 | #define VHD_TIMESTAMP_BASE 946684800 | |
49 | ||
6a0f9e82 | 50 | // always big-endian |
b9fa33a6 | 51 | struct vhd_footer { |
2cfacb62 AL |
52 | char creator[8]; // "conectix" |
53 | uint32_t features; | |
54 | uint32_t version; | |
55 | ||
56 | // Offset of next header structure, 0xFFFFFFFF if none | |
57 | uint64_t data_offset; | |
58 | ||
59 | // Seconds since Jan 1, 2000 0:00:00 (UTC) | |
60 | uint32_t timestamp; | |
61 | ||
62 | char creator_app[4]; // "vpc " | |
63 | uint16_t major; | |
64 | uint16_t minor; | |
65 | char creator_os[4]; // "Wi2k" | |
66 | ||
67 | uint64_t orig_size; | |
68 | uint64_t size; | |
69 | ||
70 | uint16_t cyls; | |
71 | uint8_t heads; | |
72 | uint8_t secs_per_cyl; | |
73 | ||
74 | uint32_t type; | |
75 | ||
76 | // Checksum of the Hard Disk Footer ("one's complement of the sum of all | |
77 | // the bytes in the footer without the checksum field") | |
78 | uint32_t checksum; | |
79 | ||
80 | // UUID used to identify a parent hard disk (backing file) | |
81 | uint8_t uuid[16]; | |
82 | ||
83 | uint8_t in_saved_state; | |
b9fa33a6 AL |
84 | }; |
85 | ||
86 | struct vhd_dyndisk_header { | |
2cfacb62 AL |
87 | char magic[8]; // "cxsparse" |
88 | ||
89 | // Offset of next header structure, 0xFFFFFFFF if none | |
90 | uint64_t data_offset; | |
91 | ||
92 | // Offset of the Block Allocation Table (BAT) | |
93 | uint64_t table_offset; | |
94 | ||
95 | uint32_t version; | |
96 | uint32_t max_table_entries; // 32bit/entry | |
97 | ||
98 | // 2 MB by default, must be a power of two | |
99 | uint32_t block_size; | |
100 | ||
101 | uint32_t checksum; | |
102 | uint8_t parent_uuid[16]; | |
103 | uint32_t parent_timestamp; | |
104 | uint32_t reserved; | |
105 | ||
106 | // Backing file name (in UTF-16) | |
107 | uint8_t parent_name[512]; | |
108 | ||
109 | struct { | |
110 | uint32_t platform; | |
111 | uint32_t data_space; | |
112 | uint32_t data_length; | |
113 | uint32_t reserved; | |
114 | uint64_t data_offset; | |
115 | } parent_locator[8]; | |
6a0f9e82 FB |
116 | }; |
117 | ||
118 | typedef struct BDRVVPCState { | |
848c66e8 | 119 | CoMutex lock; |
15d35bc5 AL |
120 | uint8_t footer_buf[HEADER_SIZE]; |
121 | uint64_t free_data_block_offset; | |
2cfacb62 | 122 | int max_table_entries; |
6a0f9e82 | 123 | uint32_t *pagetable; |
15d35bc5 AL |
124 | uint64_t bat_offset; |
125 | uint64_t last_bitmap_offset; | |
6a0f9e82 | 126 | |
2cfacb62 | 127 | uint32_t block_size; |
15d35bc5 AL |
128 | uint32_t bitmap_size; |
129 | ||
6a0f9e82 FB |
130 | #ifdef CACHE |
131 | uint8_t *pageentry_u8; | |
132 | uint32_t *pageentry_u32; | |
133 | uint16_t *pageentry_u16; | |
3b46e624 | 134 | |
6a0f9e82 FB |
135 | uint64_t last_bitmap; |
136 | #endif | |
612ff3d8 KW |
137 | |
138 | Error *migration_blocker; | |
6a0f9e82 FB |
139 | } BDRVVPCState; |
140 | ||
57c7d9e5 AL |
141 | static uint32_t vpc_checksum(uint8_t* buf, size_t size) |
142 | { | |
143 | uint32_t res = 0; | |
144 | int i; | |
145 | ||
146 | for (i = 0; i < size; i++) | |
147 | res += buf[i]; | |
148 | ||
149 | return ~res; | |
150 | } | |
151 | ||
152 | ||
6a0f9e82 FB |
153 | static int vpc_probe(const uint8_t *buf, int buf_size, const char *filename) |
154 | { | |
ffe8ab83 | 155 | if (buf_size >= 8 && !strncmp((char *)buf, "conectix", 8)) |
6a0f9e82 | 156 | return 100; |
6a0f9e82 FB |
157 | return 0; |
158 | } | |
159 | ||
66f82cee | 160 | static int vpc_open(BlockDriverState *bs, int flags) |
6a0f9e82 FB |
161 | { |
162 | BDRVVPCState *s = bs->opaque; | |
66f82cee | 163 | int i; |
b9fa33a6 AL |
164 | struct vhd_footer* footer; |
165 | struct vhd_dyndisk_header* dyndisk_header; | |
166 | uint8_t buf[HEADER_SIZE]; | |
57c7d9e5 | 167 | uint32_t checksum; |
24da78db | 168 | int disk_type = VHD_DYNAMIC; |
59294e46 | 169 | int ret; |
6a0f9e82 | 170 | |
59294e46 KW |
171 | ret = bdrv_pread(bs->file, 0, s->footer_buf, HEADER_SIZE); |
172 | if (ret < 0) { | |
6a0f9e82 | 173 | goto fail; |
59294e46 | 174 | } |
6a0f9e82 | 175 | |
15d35bc5 | 176 | footer = (struct vhd_footer*) s->footer_buf; |
24da78db CA |
177 | if (strncmp(footer->creator, "conectix", 8)) { |
178 | int64_t offset = bdrv_getlength(bs->file); | |
59294e46 KW |
179 | if (offset < 0) { |
180 | ret = offset; | |
181 | goto fail; | |
182 | } else if (offset < HEADER_SIZE) { | |
183 | ret = -EINVAL; | |
24da78db CA |
184 | goto fail; |
185 | } | |
59294e46 | 186 | |
24da78db | 187 | /* If a fixed disk, the footer is found only at the end of the file */ |
59294e46 KW |
188 | ret = bdrv_pread(bs->file, offset-HEADER_SIZE, s->footer_buf, |
189 | HEADER_SIZE); | |
190 | if (ret < 0) { | |
24da78db CA |
191 | goto fail; |
192 | } | |
193 | if (strncmp(footer->creator, "conectix", 8)) { | |
59294e46 | 194 | ret = -EMEDIUMTYPE; |
24da78db CA |
195 | goto fail; |
196 | } | |
197 | disk_type = VHD_FIXED; | |
198 | } | |
6a0f9e82 | 199 | |
57c7d9e5 AL |
200 | checksum = be32_to_cpu(footer->checksum); |
201 | footer->checksum = 0; | |
202 | if (vpc_checksum(s->footer_buf, HEADER_SIZE) != checksum) | |
203 | fprintf(stderr, "block-vpc: The header checksum of '%s' is " | |
66f82cee | 204 | "incorrect.\n", bs->filename); |
57c7d9e5 | 205 | |
c088b691 ZS |
206 | /* Write 'checksum' back to footer, or else will leave it with zero. */ |
207 | footer->checksum = be32_to_cpu(checksum); | |
208 | ||
f880defb SW |
209 | /* The visible size of a image in Virtual PC depends on the guest: |
210 | * QEMU and other emulators report the real size (here in sectors). | |
211 | * All modern operating systems use this real size. | |
212 | * Very old operating systems use CHS values to calculate the total size. | |
213 | * This calculated size is usually smaller than the real size. | |
214 | */ | |
215 | bs->total_sectors = be64_to_cpu(footer->size) / VHD_SECTOR_SIZE; | |
1fa79228 | 216 | |
258d2edb CA |
217 | /* Allow a maximum disk size of approximately 2 TB */ |
218 | if (bs->total_sectors >= 65535LL * 255 * 255) { | |
59294e46 | 219 | ret = -EFBIG; |
efc8243d SH |
220 | goto fail; |
221 | } | |
222 | ||
24da78db | 223 | if (disk_type == VHD_DYNAMIC) { |
59294e46 KW |
224 | ret = bdrv_pread(bs->file, be64_to_cpu(footer->data_offset), buf, |
225 | HEADER_SIZE); | |
226 | if (ret < 0) { | |
24da78db CA |
227 | goto fail; |
228 | } | |
b9fa33a6 | 229 | |
24da78db | 230 | dyndisk_header = (struct vhd_dyndisk_header *) buf; |
6a0f9e82 | 231 | |
24da78db | 232 | if (strncmp(dyndisk_header->magic, "cxsparse", 8)) { |
59294e46 | 233 | ret = -EINVAL; |
24da78db CA |
234 | goto fail; |
235 | } | |
6a0f9e82 | 236 | |
24da78db CA |
237 | s->block_size = be32_to_cpu(dyndisk_header->block_size); |
238 | s->bitmap_size = ((s->block_size / (8 * 512)) + 511) & ~511; | |
15d35bc5 | 239 | |
24da78db CA |
240 | s->max_table_entries = be32_to_cpu(dyndisk_header->max_table_entries); |
241 | s->pagetable = g_malloc(s->max_table_entries * 4); | |
b71d1c2e | 242 | |
24da78db | 243 | s->bat_offset = be64_to_cpu(dyndisk_header->table_offset); |
59294e46 KW |
244 | |
245 | ret = bdrv_pread(bs->file, s->bat_offset, s->pagetable, | |
246 | s->max_table_entries * 4); | |
247 | if (ret < 0) { | |
24da78db CA |
248 | goto fail; |
249 | } | |
b71d1c2e | 250 | |
24da78db CA |
251 | s->free_data_block_offset = |
252 | (s->bat_offset + (s->max_table_entries * 4) + 511) & ~511; | |
15d35bc5 | 253 | |
24da78db CA |
254 | for (i = 0; i < s->max_table_entries; i++) { |
255 | be32_to_cpus(&s->pagetable[i]); | |
256 | if (s->pagetable[i] != 0xFFFFFFFF) { | |
257 | int64_t next = (512 * (int64_t) s->pagetable[i]) + | |
258 | s->bitmap_size + s->block_size; | |
15d35bc5 | 259 | |
24da78db CA |
260 | if (next > s->free_data_block_offset) { |
261 | s->free_data_block_offset = next; | |
262 | } | |
263 | } | |
15d35bc5 | 264 | } |
15d35bc5 | 265 | |
24da78db | 266 | s->last_bitmap_offset = (int64_t) -1; |
6a0f9e82 | 267 | |
6a0f9e82 | 268 | #ifdef CACHE |
24da78db CA |
269 | s->pageentry_u8 = g_malloc(512); |
270 | s->pageentry_u32 = s->pageentry_u8; | |
271 | s->pageentry_u16 = s->pageentry_u8; | |
272 | s->last_pagetable = -1; | |
6a0f9e82 | 273 | #endif |
24da78db | 274 | } |
6a0f9e82 | 275 | |
848c66e8 | 276 | qemu_co_mutex_init(&s->lock); |
612ff3d8 KW |
277 | |
278 | /* Disable migration when VHD images are used */ | |
279 | error_set(&s->migration_blocker, | |
280 | QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED, | |
281 | "vpc", bs->device_name, "live migration"); | |
282 | migrate_add_blocker(s->migration_blocker); | |
283 | ||
6a0f9e82 | 284 | return 0; |
59294e46 KW |
285 | |
286 | fail: | |
287 | g_free(s->pagetable); | |
288 | #ifdef CACHE | |
289 | g_free(s->pageentry_u8); | |
290 | #endif | |
291 | return ret; | |
6a0f9e82 FB |
292 | } |
293 | ||
3fe4b700 JC |
294 | static int vpc_reopen_prepare(BDRVReopenState *state, |
295 | BlockReopenQueue *queue, Error **errp) | |
296 | { | |
297 | return 0; | |
298 | } | |
299 | ||
b71d1c2e AL |
300 | /* |
301 | * Returns the absolute byte offset of the given sector in the image file. | |
302 | * If the sector is not allocated, -1 is returned instead. | |
15d35bc5 AL |
303 | * |
304 | * The parameter write must be 1 if the offset will be used for a write | |
305 | * operation (the block bitmaps is updated then), 0 otherwise. | |
b71d1c2e | 306 | */ |
15d35bc5 AL |
307 | static inline int64_t get_sector_offset(BlockDriverState *bs, |
308 | int64_t sector_num, int write) | |
6a0f9e82 FB |
309 | { |
310 | BDRVVPCState *s = bs->opaque; | |
311 | uint64_t offset = sector_num * 512; | |
312 | uint64_t bitmap_offset, block_offset; | |
313 | uint32_t pagetable_index, pageentry_index; | |
314 | ||
2cfacb62 AL |
315 | pagetable_index = offset / s->block_size; |
316 | pageentry_index = (offset % s->block_size) / 512; | |
3b46e624 | 317 | |
15d35bc5 AL |
318 | if (pagetable_index >= s->max_table_entries || s->pagetable[pagetable_index] == 0xffffffff) |
319 | return -1; // not allocated | |
6a0f9e82 | 320 | |
378e2aea | 321 | bitmap_offset = 512 * (uint64_t) s->pagetable[pagetable_index]; |
15d35bc5 AL |
322 | block_offset = bitmap_offset + s->bitmap_size + (512 * pageentry_index); |
323 | ||
324 | // We must ensure that we don't write to any sectors which are marked as | |
325 | // unused in the bitmap. We get away with setting all bits in the block | |
326 | // bitmap each time we write to a new block. This might cause Virtual PC to | |
327 | // miss sparse read optimization, but it's not a problem in terms of | |
328 | // correctness. | |
329 | if (write && (s->last_bitmap_offset != bitmap_offset)) { | |
330 | uint8_t bitmap[s->bitmap_size]; | |
331 | ||
332 | s->last_bitmap_offset = bitmap_offset; | |
333 | memset(bitmap, 0xff, s->bitmap_size); | |
078a458e | 334 | bdrv_pwrite_sync(bs->file, bitmap_offset, bitmap, s->bitmap_size); |
15d35bc5 | 335 | } |
3b46e624 | 336 | |
26a76461 | 337 | // printf("sector: %" PRIx64 ", index: %x, offset: %x, bioff: %" PRIx64 ", bloff: %" PRIx64 "\n", |
6a0f9e82 FB |
338 | // sector_num, pagetable_index, pageentry_index, |
339 | // bitmap_offset, block_offset); | |
340 | ||
341 | // disabled by reason | |
342 | #if 0 | |
343 | #ifdef CACHE | |
344 | if (bitmap_offset != s->last_bitmap) | |
345 | { | |
346 | lseek(s->fd, bitmap_offset, SEEK_SET); | |
347 | ||
348 | s->last_bitmap = bitmap_offset; | |
5fafdf24 | 349 | |
6a0f9e82 FB |
350 | // Scary! Bitmap is stored as big endian 32bit entries, |
351 | // while we used to look it up byte by byte | |
352 | read(s->fd, s->pageentry_u8, 512); | |
353 | for (i = 0; i < 128; i++) | |
354 | be32_to_cpus(&s->pageentry_u32[i]); | |
355 | } | |
356 | ||
357 | if ((s->pageentry_u8[pageentry_index / 8] >> (pageentry_index % 8)) & 1) | |
358 | return -1; | |
359 | #else | |
360 | lseek(s->fd, bitmap_offset + (pageentry_index / 8), SEEK_SET); | |
5fafdf24 | 361 | |
6a0f9e82 FB |
362 | read(s->fd, &bitmap_entry, 1); |
363 | ||
364 | if ((bitmap_entry >> (pageentry_index % 8)) & 1) | |
365 | return -1; // not allocated | |
366 | #endif | |
367 | #endif | |
6a0f9e82 | 368 | |
b71d1c2e | 369 | return block_offset; |
6a0f9e82 FB |
370 | } |
371 | ||
15d35bc5 AL |
372 | /* |
373 | * Writes the footer to the end of the image file. This is needed when the | |
374 | * file grows as it overwrites the old footer | |
375 | * | |
376 | * Returns 0 on success and < 0 on error | |
377 | */ | |
378 | static int rewrite_footer(BlockDriverState* bs) | |
379 | { | |
380 | int ret; | |
381 | BDRVVPCState *s = bs->opaque; | |
382 | int64_t offset = s->free_data_block_offset; | |
383 | ||
078a458e | 384 | ret = bdrv_pwrite_sync(bs->file, offset, s->footer_buf, HEADER_SIZE); |
15d35bc5 AL |
385 | if (ret < 0) |
386 | return ret; | |
387 | ||
388 | return 0; | |
389 | } | |
390 | ||
391 | /* | |
392 | * Allocates a new block. This involves writing a new footer and updating | |
393 | * the Block Allocation Table to use the space at the old end of the image | |
394 | * file (overwriting the old footer) | |
395 | * | |
396 | * Returns the sectors' offset in the image file on success and < 0 on error | |
397 | */ | |
398 | static int64_t alloc_block(BlockDriverState* bs, int64_t sector_num) | |
399 | { | |
400 | BDRVVPCState *s = bs->opaque; | |
401 | int64_t bat_offset; | |
402 | uint32_t index, bat_value; | |
403 | int ret; | |
404 | uint8_t bitmap[s->bitmap_size]; | |
405 | ||
406 | // Check if sector_num is valid | |
407 | if ((sector_num < 0) || (sector_num > bs->total_sectors)) | |
408 | return -1; | |
409 | ||
410 | // Write entry into in-memory BAT | |
411 | index = (sector_num * 512) / s->block_size; | |
412 | if (s->pagetable[index] != 0xFFFFFFFF) | |
413 | return -1; | |
414 | ||
415 | s->pagetable[index] = s->free_data_block_offset / 512; | |
416 | ||
417 | // Initialize the block's bitmap | |
418 | memset(bitmap, 0xff, s->bitmap_size); | |
5bb1cbac | 419 | ret = bdrv_pwrite_sync(bs->file, s->free_data_block_offset, bitmap, |
078a458e | 420 | s->bitmap_size); |
5bb1cbac KW |
421 | if (ret < 0) { |
422 | return ret; | |
423 | } | |
15d35bc5 AL |
424 | |
425 | // Write new footer (the old one will be overwritten) | |
426 | s->free_data_block_offset += s->block_size + s->bitmap_size; | |
427 | ret = rewrite_footer(bs); | |
428 | if (ret < 0) | |
429 | goto fail; | |
430 | ||
431 | // Write BAT entry to disk | |
432 | bat_offset = s->bat_offset + (4 * index); | |
433 | bat_value = be32_to_cpu(s->pagetable[index]); | |
078a458e | 434 | ret = bdrv_pwrite_sync(bs->file, bat_offset, &bat_value, 4); |
15d35bc5 AL |
435 | if (ret < 0) |
436 | goto fail; | |
437 | ||
438 | return get_sector_offset(bs, sector_num, 0); | |
439 | ||
440 | fail: | |
441 | s->free_data_block_offset -= (s->block_size + s->bitmap_size); | |
442 | return -1; | |
443 | } | |
444 | ||
5fafdf24 | 445 | static int vpc_read(BlockDriverState *bs, int64_t sector_num, |
6a0f9e82 FB |
446 | uint8_t *buf, int nb_sectors) |
447 | { | |
6c6ea921 | 448 | BDRVVPCState *s = bs->opaque; |
6a0f9e82 | 449 | int ret; |
b71d1c2e | 450 | int64_t offset; |
6c6ea921 | 451 | int64_t sectors, sectors_per_block; |
24da78db | 452 | struct vhd_footer *footer = (struct vhd_footer *) s->footer_buf; |
6a0f9e82 | 453 | |
24da78db CA |
454 | if (cpu_to_be32(footer->type) == VHD_FIXED) { |
455 | return bdrv_read(bs->file, sector_num, buf, nb_sectors); | |
456 | } | |
6a0f9e82 | 457 | while (nb_sectors > 0) { |
15d35bc5 | 458 | offset = get_sector_offset(bs, sector_num, 0); |
b71d1c2e | 459 | |
6c6ea921 KW |
460 | sectors_per_block = s->block_size >> BDRV_SECTOR_BITS; |
461 | sectors = sectors_per_block - (sector_num % sectors_per_block); | |
462 | if (sectors > nb_sectors) { | |
463 | sectors = nb_sectors; | |
464 | } | |
465 | ||
b71d1c2e | 466 | if (offset == -1) { |
6c6ea921 | 467 | memset(buf, 0, sectors * BDRV_SECTOR_SIZE); |
b71d1c2e | 468 | } else { |
6c6ea921 KW |
469 | ret = bdrv_pread(bs->file, offset, buf, |
470 | sectors * BDRV_SECTOR_SIZE); | |
471 | if (ret != sectors * BDRV_SECTOR_SIZE) { | |
b71d1c2e | 472 | return -1; |
6c6ea921 | 473 | } |
b71d1c2e AL |
474 | } |
475 | ||
6c6ea921 KW |
476 | nb_sectors -= sectors; |
477 | sector_num += sectors; | |
478 | buf += sectors * BDRV_SECTOR_SIZE; | |
6a0f9e82 FB |
479 | } |
480 | return 0; | |
481 | } | |
482 | ||
2914caa0 PB |
483 | static coroutine_fn int vpc_co_read(BlockDriverState *bs, int64_t sector_num, |
484 | uint8_t *buf, int nb_sectors) | |
485 | { | |
486 | int ret; | |
487 | BDRVVPCState *s = bs->opaque; | |
488 | qemu_co_mutex_lock(&s->lock); | |
489 | ret = vpc_read(bs, sector_num, buf, nb_sectors); | |
490 | qemu_co_mutex_unlock(&s->lock); | |
491 | return ret; | |
492 | } | |
493 | ||
15d35bc5 AL |
494 | static int vpc_write(BlockDriverState *bs, int64_t sector_num, |
495 | const uint8_t *buf, int nb_sectors) | |
496 | { | |
6c6ea921 | 497 | BDRVVPCState *s = bs->opaque; |
15d35bc5 | 498 | int64_t offset; |
6c6ea921 | 499 | int64_t sectors, sectors_per_block; |
15d35bc5 | 500 | int ret; |
24da78db | 501 | struct vhd_footer *footer = (struct vhd_footer *) s->footer_buf; |
15d35bc5 | 502 | |
24da78db CA |
503 | if (cpu_to_be32(footer->type) == VHD_FIXED) { |
504 | return bdrv_write(bs->file, sector_num, buf, nb_sectors); | |
505 | } | |
15d35bc5 AL |
506 | while (nb_sectors > 0) { |
507 | offset = get_sector_offset(bs, sector_num, 1); | |
508 | ||
6c6ea921 KW |
509 | sectors_per_block = s->block_size >> BDRV_SECTOR_BITS; |
510 | sectors = sectors_per_block - (sector_num % sectors_per_block); | |
511 | if (sectors > nb_sectors) { | |
512 | sectors = nb_sectors; | |
513 | } | |
514 | ||
15d35bc5 AL |
515 | if (offset == -1) { |
516 | offset = alloc_block(bs, sector_num); | |
517 | if (offset < 0) | |
518 | return -1; | |
519 | } | |
520 | ||
6c6ea921 KW |
521 | ret = bdrv_pwrite(bs->file, offset, buf, sectors * BDRV_SECTOR_SIZE); |
522 | if (ret != sectors * BDRV_SECTOR_SIZE) { | |
15d35bc5 | 523 | return -1; |
6c6ea921 | 524 | } |
15d35bc5 | 525 | |
6c6ea921 KW |
526 | nb_sectors -= sectors; |
527 | sector_num += sectors; | |
528 | buf += sectors * BDRV_SECTOR_SIZE; | |
15d35bc5 AL |
529 | } |
530 | ||
531 | return 0; | |
532 | } | |
533 | ||
e183ef75 PB |
534 | static coroutine_fn int vpc_co_write(BlockDriverState *bs, int64_t sector_num, |
535 | const uint8_t *buf, int nb_sectors) | |
536 | { | |
537 | int ret; | |
538 | BDRVVPCState *s = bs->opaque; | |
539 | qemu_co_mutex_lock(&s->lock); | |
540 | ret = vpc_write(bs, sector_num, buf, nb_sectors); | |
541 | qemu_co_mutex_unlock(&s->lock); | |
542 | return ret; | |
543 | } | |
544 | ||
57c7d9e5 AL |
545 | /* |
546 | * Calculates the number of cylinders, heads and sectors per cylinder | |
547 | * based on a given number of sectors. This is the algorithm described | |
548 | * in the VHD specification. | |
549 | * | |
550 | * Note that the geometry doesn't always exactly match total_sectors but | |
551 | * may round it down. | |
6e9ea0c0 | 552 | * |
258d2edb CA |
553 | * Returns 0 on success, -EFBIG if the size is larger than ~2 TB. Override |
554 | * the hardware EIDE and ATA-2 limit of 16 heads (max disk size of 127 GB) | |
555 | * and instead allow up to 255 heads. | |
57c7d9e5 | 556 | */ |
6e9ea0c0 | 557 | static int calculate_geometry(int64_t total_sectors, uint16_t* cyls, |
57c7d9e5 AL |
558 | uint8_t* heads, uint8_t* secs_per_cyl) |
559 | { | |
560 | uint32_t cyls_times_heads; | |
561 | ||
258d2edb CA |
562 | /* Allow a maximum disk size of approximately 2 TB */ |
563 | if (total_sectors > 65535LL * 255 * 255) { | |
6e9ea0c0 | 564 | return -EFBIG; |
258d2edb | 565 | } |
57c7d9e5 AL |
566 | |
567 | if (total_sectors > 65535 * 16 * 63) { | |
568 | *secs_per_cyl = 255; | |
258d2edb CA |
569 | if (total_sectors > 65535 * 16 * 255) { |
570 | *heads = 255; | |
571 | } else { | |
572 | *heads = 16; | |
573 | } | |
57c7d9e5 AL |
574 | cyls_times_heads = total_sectors / *secs_per_cyl; |
575 | } else { | |
576 | *secs_per_cyl = 17; | |
577 | cyls_times_heads = total_sectors / *secs_per_cyl; | |
578 | *heads = (cyls_times_heads + 1023) / 1024; | |
579 | ||
580 | if (*heads < 4) | |
581 | *heads = 4; | |
582 | ||
583 | if (cyls_times_heads >= (*heads * 1024) || *heads > 16) { | |
584 | *secs_per_cyl = 31; | |
585 | *heads = 16; | |
586 | cyls_times_heads = total_sectors / *secs_per_cyl; | |
587 | } | |
588 | ||
589 | if (cyls_times_heads >= (*heads * 1024)) { | |
590 | *secs_per_cyl = 63; | |
591 | *heads = 16; | |
592 | cyls_times_heads = total_sectors / *secs_per_cyl; | |
593 | } | |
594 | } | |
595 | ||
dede4188 | 596 | *cyls = cyls_times_heads / *heads; |
6e9ea0c0 AJ |
597 | |
598 | return 0; | |
57c7d9e5 AL |
599 | } |
600 | ||
24da78db | 601 | static int create_dynamic_disk(int fd, uint8_t *buf, int64_t total_sectors) |
57c7d9e5 | 602 | { |
57c7d9e5 AL |
603 | struct vhd_dyndisk_header* dyndisk_header = |
604 | (struct vhd_dyndisk_header*) buf; | |
57c7d9e5 | 605 | size_t block_size, num_bat_entries; |
24da78db | 606 | int i; |
f0ff243a | 607 | int ret = -EIO; |
57c7d9e5 | 608 | |
57c7d9e5 AL |
609 | // Write the footer (twice: at the beginning and at the end) |
610 | block_size = 0x200000; | |
611 | num_bat_entries = (total_sectors + block_size / 512) / (block_size / 512); | |
612 | ||
f0ff243a BS |
613 | if (write(fd, buf, HEADER_SIZE) != HEADER_SIZE) { |
614 | goto fail; | |
615 | } | |
57c7d9e5 | 616 | |
f0ff243a BS |
617 | if (lseek(fd, 1536 + ((num_bat_entries * 4 + 511) & ~511), SEEK_SET) < 0) { |
618 | goto fail; | |
619 | } | |
620 | if (write(fd, buf, HEADER_SIZE) != HEADER_SIZE) { | |
621 | goto fail; | |
622 | } | |
57c7d9e5 AL |
623 | |
624 | // Write the initial BAT | |
f0ff243a BS |
625 | if (lseek(fd, 3 * 512, SEEK_SET) < 0) { |
626 | goto fail; | |
627 | } | |
57c7d9e5 AL |
628 | |
629 | memset(buf, 0xFF, 512); | |
f0ff243a BS |
630 | for (i = 0; i < (num_bat_entries * 4 + 511) / 512; i++) { |
631 | if (write(fd, buf, 512) != 512) { | |
632 | goto fail; | |
633 | } | |
634 | } | |
57c7d9e5 | 635 | |
57c7d9e5 AL |
636 | // Prepare the Dynamic Disk Header |
637 | memset(buf, 0, 1024); | |
638 | ||
5ec4d682 | 639 | memcpy(dyndisk_header->magic, "cxsparse", 8); |
57c7d9e5 | 640 | |
78439f6a CA |
641 | /* |
642 | * Note: The spec is actually wrong here for data_offset, it says | |
643 | * 0xFFFFFFFF, but MS tools expect all 64 bits to be set. | |
644 | */ | |
645 | dyndisk_header->data_offset = be64_to_cpu(0xFFFFFFFFFFFFFFFFULL); | |
57c7d9e5 AL |
646 | dyndisk_header->table_offset = be64_to_cpu(3 * 512); |
647 | dyndisk_header->version = be32_to_cpu(0x00010000); | |
648 | dyndisk_header->block_size = be32_to_cpu(block_size); | |
649 | dyndisk_header->max_table_entries = be32_to_cpu(num_bat_entries); | |
650 | ||
651 | dyndisk_header->checksum = be32_to_cpu(vpc_checksum(buf, 1024)); | |
652 | ||
653 | // Write the header | |
f0ff243a BS |
654 | if (lseek(fd, 512, SEEK_SET) < 0) { |
655 | goto fail; | |
656 | } | |
57c7d9e5 | 657 | |
f0ff243a BS |
658 | if (write(fd, buf, 1024) != 1024) { |
659 | goto fail; | |
660 | } | |
661 | ret = 0; | |
662 | ||
24da78db CA |
663 | fail: |
664 | return ret; | |
665 | } | |
666 | ||
667 | static int create_fixed_disk(int fd, uint8_t *buf, int64_t total_size) | |
668 | { | |
669 | int ret = -EIO; | |
670 | ||
671 | /* Add footer to total size */ | |
672 | total_size += 512; | |
673 | if (ftruncate(fd, total_size) != 0) { | |
674 | ret = -errno; | |
675 | goto fail; | |
676 | } | |
677 | if (lseek(fd, -512, SEEK_END) < 0) { | |
678 | goto fail; | |
679 | } | |
680 | if (write(fd, buf, HEADER_SIZE) != HEADER_SIZE) { | |
681 | goto fail; | |
682 | } | |
683 | ||
684 | ret = 0; | |
685 | ||
686 | fail: | |
687 | return ret; | |
688 | } | |
689 | ||
690 | static int vpc_create(const char *filename, QEMUOptionParameter *options) | |
691 | { | |
692 | uint8_t buf[1024]; | |
693 | struct vhd_footer *footer = (struct vhd_footer *) buf; | |
694 | QEMUOptionParameter *disk_type_param; | |
695 | int fd, i; | |
696 | uint16_t cyls = 0; | |
697 | uint8_t heads = 0; | |
698 | uint8_t secs_per_cyl = 0; | |
699 | int64_t total_sectors; | |
700 | int64_t total_size; | |
701 | int disk_type; | |
702 | int ret = -EIO; | |
703 | ||
704 | /* Read out options */ | |
705 | total_size = get_option_parameter(options, BLOCK_OPT_SIZE)->value.n; | |
706 | ||
707 | disk_type_param = get_option_parameter(options, BLOCK_OPT_SUBFMT); | |
708 | if (disk_type_param && disk_type_param->value.s) { | |
709 | if (!strcmp(disk_type_param->value.s, "dynamic")) { | |
710 | disk_type = VHD_DYNAMIC; | |
711 | } else if (!strcmp(disk_type_param->value.s, "fixed")) { | |
712 | disk_type = VHD_FIXED; | |
713 | } else { | |
714 | return -EINVAL; | |
715 | } | |
716 | } else { | |
717 | disk_type = VHD_DYNAMIC; | |
718 | } | |
719 | ||
720 | /* Create the file */ | |
6165f4d8 | 721 | fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644); |
24da78db CA |
722 | if (fd < 0) { |
723 | return -EIO; | |
724 | } | |
725 | ||
ecd880d9 KW |
726 | /* |
727 | * Calculate matching total_size and geometry. Increase the number of | |
728 | * sectors requested until we get enough (or fail). This ensures that | |
729 | * qemu-img convert doesn't truncate images, but rather rounds up. | |
730 | */ | |
24da78db | 731 | total_sectors = total_size / BDRV_SECTOR_SIZE; |
ecd880d9 KW |
732 | for (i = 0; total_sectors > (int64_t)cyls * heads * secs_per_cyl; i++) { |
733 | if (calculate_geometry(total_sectors + i, &cyls, &heads, | |
734 | &secs_per_cyl)) | |
735 | { | |
24da78db CA |
736 | ret = -EFBIG; |
737 | goto fail; | |
738 | } | |
739 | } | |
ecd880d9 | 740 | |
24da78db CA |
741 | total_sectors = (int64_t) cyls * heads * secs_per_cyl; |
742 | ||
743 | /* Prepare the Hard Disk Footer */ | |
744 | memset(buf, 0, 1024); | |
745 | ||
746 | memcpy(footer->creator, "conectix", 8); | |
747 | /* TODO Check if "qemu" creator_app is ok for VPC */ | |
748 | memcpy(footer->creator_app, "qemu", 4); | |
749 | memcpy(footer->creator_os, "Wi2k", 4); | |
750 | ||
751 | footer->features = be32_to_cpu(0x02); | |
752 | footer->version = be32_to_cpu(0x00010000); | |
753 | if (disk_type == VHD_DYNAMIC) { | |
754 | footer->data_offset = be64_to_cpu(HEADER_SIZE); | |
755 | } else { | |
756 | footer->data_offset = be64_to_cpu(0xFFFFFFFFFFFFFFFFULL); | |
757 | } | |
758 | footer->timestamp = be32_to_cpu(time(NULL) - VHD_TIMESTAMP_BASE); | |
759 | ||
760 | /* Version of Virtual PC 2007 */ | |
761 | footer->major = be16_to_cpu(0x0005); | |
762 | footer->minor = be16_to_cpu(0x0003); | |
763 | if (disk_type == VHD_DYNAMIC) { | |
764 | footer->orig_size = be64_to_cpu(total_sectors * 512); | |
765 | footer->size = be64_to_cpu(total_sectors * 512); | |
766 | } else { | |
767 | footer->orig_size = be64_to_cpu(total_size); | |
768 | footer->size = be64_to_cpu(total_size); | |
769 | } | |
770 | footer->cyls = be16_to_cpu(cyls); | |
771 | footer->heads = heads; | |
772 | footer->secs_per_cyl = secs_per_cyl; | |
773 | ||
774 | footer->type = be32_to_cpu(disk_type); | |
775 | ||
1fe1fa51 CA |
776 | #if defined(CONFIG_UUID) |
777 | uuid_generate(footer->uuid); | |
778 | #endif | |
24da78db CA |
779 | |
780 | footer->checksum = be32_to_cpu(vpc_checksum(buf, HEADER_SIZE)); | |
781 | ||
782 | if (disk_type == VHD_DYNAMIC) { | |
783 | ret = create_dynamic_disk(fd, buf, total_sectors); | |
784 | } else { | |
785 | ret = create_fixed_disk(fd, buf, total_size); | |
786 | } | |
787 | ||
f0ff243a | 788 | fail: |
2e1e79da | 789 | qemu_close(fd); |
f0ff243a | 790 | return ret; |
57c7d9e5 AL |
791 | } |
792 | ||
6a0f9e82 FB |
793 | static void vpc_close(BlockDriverState *bs) |
794 | { | |
795 | BDRVVPCState *s = bs->opaque; | |
7267c094 | 796 | g_free(s->pagetable); |
6a0f9e82 | 797 | #ifdef CACHE |
7267c094 | 798 | g_free(s->pageentry_u8); |
6a0f9e82 | 799 | #endif |
612ff3d8 KW |
800 | |
801 | migrate_del_blocker(s->migration_blocker); | |
802 | error_free(s->migration_blocker); | |
6a0f9e82 FB |
803 | } |
804 | ||
0e7e1989 | 805 | static QEMUOptionParameter vpc_create_options[] = { |
db08adf5 KW |
806 | { |
807 | .name = BLOCK_OPT_SIZE, | |
808 | .type = OPT_SIZE, | |
809 | .help = "Virtual disk size" | |
810 | }, | |
24da78db CA |
811 | { |
812 | .name = BLOCK_OPT_SUBFMT, | |
813 | .type = OPT_STRING, | |
814 | .help = | |
815 | "Type of virtual hard disk format. Supported formats are " | |
816 | "{dynamic (default) | fixed} " | |
817 | }, | |
0e7e1989 KW |
818 | { NULL } |
819 | }; | |
820 | ||
5efa9d5a | 821 | static BlockDriver bdrv_vpc = { |
4a411185 KW |
822 | .format_name = "vpc", |
823 | .instance_size = sizeof(BDRVVPCState), | |
c68b89ac | 824 | |
4a411185 KW |
825 | .bdrv_probe = vpc_probe, |
826 | .bdrv_open = vpc_open, | |
4a411185 | 827 | .bdrv_close = vpc_close, |
3fe4b700 | 828 | .bdrv_reopen_prepare = vpc_reopen_prepare, |
4a411185 | 829 | .bdrv_create = vpc_create, |
0e7e1989 | 830 | |
c68b89ac KW |
831 | .bdrv_read = vpc_co_read, |
832 | .bdrv_write = vpc_co_write, | |
c68b89ac | 833 | |
0e7e1989 | 834 | .create_options = vpc_create_options, |
6a0f9e82 | 835 | }; |
5efa9d5a AL |
836 | |
837 | static void bdrv_vpc_init(void) | |
838 | { | |
839 | bdrv_register(&bdrv_vpc); | |
840 | } | |
841 | ||
842 | block_init(bdrv_vpc_init); |