]> git.proxmox.com Git - qemu.git/blob - block/vpc.c
block/raw-posix: detect readonly Linux block devices using BLKROGET
[qemu.git] / block / vpc.c
1 /*
2 * Block driver for Connectix / Microsoft Virtual PC images
3 *
4 * Copyright (c) 2005 Alex Beregszaszi
5 * Copyright (c) 2009 Kevin Wolf <kwolf@suse.de>
6 *
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 */
25 #include "qemu-common.h"
26 #include "block/block_int.h"
27 #include "qemu/module.h"
28 #include "migration/migration.h"
29 #if defined(CONFIG_UUID)
30 #include <uuid/uuid.h>
31 #endif
32
33 /**************************************************************/
34
35 #define HEADER_SIZE 512
36
37 #define VHD_SECTOR_SIZE 512
38
39 //#define CACHE
40
41 enum vhd_type {
42 VHD_FIXED = 2,
43 VHD_DYNAMIC = 3,
44 VHD_DIFFERENCING = 4,
45 };
46
47 // Seconds since Jan 1, 2000 0:00:00 (UTC)
48 #define VHD_TIMESTAMP_BASE 946684800
49
50 // always big-endian
51 struct vhd_footer {
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;
84 };
85
86 struct vhd_dyndisk_header {
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];
116 };
117
118 typedef struct BDRVVPCState {
119 CoMutex lock;
120 uint8_t footer_buf[HEADER_SIZE];
121 uint64_t free_data_block_offset;
122 int max_table_entries;
123 uint32_t *pagetable;
124 uint64_t bat_offset;
125 uint64_t last_bitmap_offset;
126
127 uint32_t block_size;
128 uint32_t bitmap_size;
129
130 #ifdef CACHE
131 uint8_t *pageentry_u8;
132 uint32_t *pageentry_u32;
133 uint16_t *pageentry_u16;
134
135 uint64_t last_bitmap;
136 #endif
137
138 Error *migration_blocker;
139 } BDRVVPCState;
140
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
153 static int vpc_probe(const uint8_t *buf, int buf_size, const char *filename)
154 {
155 if (buf_size >= 8 && !strncmp((char *)buf, "conectix", 8))
156 return 100;
157 return 0;
158 }
159
160 static int vpc_open(BlockDriverState *bs, int flags)
161 {
162 BDRVVPCState *s = bs->opaque;
163 int i;
164 struct vhd_footer* footer;
165 struct vhd_dyndisk_header* dyndisk_header;
166 uint8_t buf[HEADER_SIZE];
167 uint32_t checksum;
168 int disk_type = VHD_DYNAMIC;
169 int ret;
170
171 ret = bdrv_pread(bs->file, 0, s->footer_buf, HEADER_SIZE);
172 if (ret < 0) {
173 goto fail;
174 }
175
176 footer = (struct vhd_footer*) s->footer_buf;
177 if (strncmp(footer->creator, "conectix", 8)) {
178 int64_t offset = bdrv_getlength(bs->file);
179 if (offset < 0) {
180 ret = offset;
181 goto fail;
182 } else if (offset < HEADER_SIZE) {
183 ret = -EINVAL;
184 goto fail;
185 }
186
187 /* If a fixed disk, the footer is found only at the end of the file */
188 ret = bdrv_pread(bs->file, offset-HEADER_SIZE, s->footer_buf,
189 HEADER_SIZE);
190 if (ret < 0) {
191 goto fail;
192 }
193 if (strncmp(footer->creator, "conectix", 8)) {
194 ret = -EMEDIUMTYPE;
195 goto fail;
196 }
197 disk_type = VHD_FIXED;
198 }
199
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 "
204 "incorrect.\n", bs->filename);
205
206 /* Write 'checksum' back to footer, or else will leave it with zero. */
207 footer->checksum = be32_to_cpu(checksum);
208
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;
216
217 /* Allow a maximum disk size of approximately 2 TB */
218 if (bs->total_sectors >= 65535LL * 255 * 255) {
219 ret = -EFBIG;
220 goto fail;
221 }
222
223 if (disk_type == VHD_DYNAMIC) {
224 ret = bdrv_pread(bs->file, be64_to_cpu(footer->data_offset), buf,
225 HEADER_SIZE);
226 if (ret < 0) {
227 goto fail;
228 }
229
230 dyndisk_header = (struct vhd_dyndisk_header *) buf;
231
232 if (strncmp(dyndisk_header->magic, "cxsparse", 8)) {
233 ret = -EINVAL;
234 goto fail;
235 }
236
237 s->block_size = be32_to_cpu(dyndisk_header->block_size);
238 s->bitmap_size = ((s->block_size / (8 * 512)) + 511) & ~511;
239
240 s->max_table_entries = be32_to_cpu(dyndisk_header->max_table_entries);
241 s->pagetable = g_malloc(s->max_table_entries * 4);
242
243 s->bat_offset = be64_to_cpu(dyndisk_header->table_offset);
244
245 ret = bdrv_pread(bs->file, s->bat_offset, s->pagetable,
246 s->max_table_entries * 4);
247 if (ret < 0) {
248 goto fail;
249 }
250
251 s->free_data_block_offset =
252 (s->bat_offset + (s->max_table_entries * 4) + 511) & ~511;
253
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;
259
260 if (next > s->free_data_block_offset) {
261 s->free_data_block_offset = next;
262 }
263 }
264 }
265
266 s->last_bitmap_offset = (int64_t) -1;
267
268 #ifdef CACHE
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;
273 #endif
274 }
275
276 qemu_co_mutex_init(&s->lock);
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
284 return 0;
285
286 fail:
287 g_free(s->pagetable);
288 #ifdef CACHE
289 g_free(s->pageentry_u8);
290 #endif
291 return ret;
292 }
293
294 static int vpc_reopen_prepare(BDRVReopenState *state,
295 BlockReopenQueue *queue, Error **errp)
296 {
297 return 0;
298 }
299
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.
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.
306 */
307 static inline int64_t get_sector_offset(BlockDriverState *bs,
308 int64_t sector_num, int write)
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
315 pagetable_index = offset / s->block_size;
316 pageentry_index = (offset % s->block_size) / 512;
317
318 if (pagetable_index >= s->max_table_entries || s->pagetable[pagetable_index] == 0xffffffff)
319 return -1; // not allocated
320
321 bitmap_offset = 512 * (uint64_t) s->pagetable[pagetable_index];
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);
334 bdrv_pwrite_sync(bs->file, bitmap_offset, bitmap, s->bitmap_size);
335 }
336
337 // printf("sector: %" PRIx64 ", index: %x, offset: %x, bioff: %" PRIx64 ", bloff: %" PRIx64 "\n",
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;
349
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);
361
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
368
369 return block_offset;
370 }
371
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
384 ret = bdrv_pwrite_sync(bs->file, offset, s->footer_buf, HEADER_SIZE);
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);
419 ret = bdrv_pwrite_sync(bs->file, s->free_data_block_offset, bitmap,
420 s->bitmap_size);
421 if (ret < 0) {
422 return ret;
423 }
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]);
434 ret = bdrv_pwrite_sync(bs->file, bat_offset, &bat_value, 4);
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
445 static int vpc_read(BlockDriverState *bs, int64_t sector_num,
446 uint8_t *buf, int nb_sectors)
447 {
448 BDRVVPCState *s = bs->opaque;
449 int ret;
450 int64_t offset;
451 int64_t sectors, sectors_per_block;
452 struct vhd_footer *footer = (struct vhd_footer *) s->footer_buf;
453
454 if (cpu_to_be32(footer->type) == VHD_FIXED) {
455 return bdrv_read(bs->file, sector_num, buf, nb_sectors);
456 }
457 while (nb_sectors > 0) {
458 offset = get_sector_offset(bs, sector_num, 0);
459
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
466 if (offset == -1) {
467 memset(buf, 0, sectors * BDRV_SECTOR_SIZE);
468 } else {
469 ret = bdrv_pread(bs->file, offset, buf,
470 sectors * BDRV_SECTOR_SIZE);
471 if (ret != sectors * BDRV_SECTOR_SIZE) {
472 return -1;
473 }
474 }
475
476 nb_sectors -= sectors;
477 sector_num += sectors;
478 buf += sectors * BDRV_SECTOR_SIZE;
479 }
480 return 0;
481 }
482
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
494 static int vpc_write(BlockDriverState *bs, int64_t sector_num,
495 const uint8_t *buf, int nb_sectors)
496 {
497 BDRVVPCState *s = bs->opaque;
498 int64_t offset;
499 int64_t sectors, sectors_per_block;
500 int ret;
501 struct vhd_footer *footer = (struct vhd_footer *) s->footer_buf;
502
503 if (cpu_to_be32(footer->type) == VHD_FIXED) {
504 return bdrv_write(bs->file, sector_num, buf, nb_sectors);
505 }
506 while (nb_sectors > 0) {
507 offset = get_sector_offset(bs, sector_num, 1);
508
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
515 if (offset == -1) {
516 offset = alloc_block(bs, sector_num);
517 if (offset < 0)
518 return -1;
519 }
520
521 ret = bdrv_pwrite(bs->file, offset, buf, sectors * BDRV_SECTOR_SIZE);
522 if (ret != sectors * BDRV_SECTOR_SIZE) {
523 return -1;
524 }
525
526 nb_sectors -= sectors;
527 sector_num += sectors;
528 buf += sectors * BDRV_SECTOR_SIZE;
529 }
530
531 return 0;
532 }
533
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
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.
552 *
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.
556 */
557 static int calculate_geometry(int64_t total_sectors, uint16_t* cyls,
558 uint8_t* heads, uint8_t* secs_per_cyl)
559 {
560 uint32_t cyls_times_heads;
561
562 /* Allow a maximum disk size of approximately 2 TB */
563 if (total_sectors > 65535LL * 255 * 255) {
564 return -EFBIG;
565 }
566
567 if (total_sectors > 65535 * 16 * 63) {
568 *secs_per_cyl = 255;
569 if (total_sectors > 65535 * 16 * 255) {
570 *heads = 255;
571 } else {
572 *heads = 16;
573 }
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
596 *cyls = cyls_times_heads / *heads;
597
598 return 0;
599 }
600
601 static int create_dynamic_disk(int fd, uint8_t *buf, int64_t total_sectors)
602 {
603 struct vhd_dyndisk_header* dyndisk_header =
604 (struct vhd_dyndisk_header*) buf;
605 size_t block_size, num_bat_entries;
606 int i;
607 int ret = -EIO;
608
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
613 if (write(fd, buf, HEADER_SIZE) != HEADER_SIZE) {
614 goto fail;
615 }
616
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 }
623
624 // Write the initial BAT
625 if (lseek(fd, 3 * 512, SEEK_SET) < 0) {
626 goto fail;
627 }
628
629 memset(buf, 0xFF, 512);
630 for (i = 0; i < (num_bat_entries * 4 + 511) / 512; i++) {
631 if (write(fd, buf, 512) != 512) {
632 goto fail;
633 }
634 }
635
636 // Prepare the Dynamic Disk Header
637 memset(buf, 0, 1024);
638
639 memcpy(dyndisk_header->magic, "cxsparse", 8);
640
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);
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
654 if (lseek(fd, 512, SEEK_SET) < 0) {
655 goto fail;
656 }
657
658 if (write(fd, buf, 1024) != 1024) {
659 goto fail;
660 }
661 ret = 0;
662
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 */
721 fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
722 if (fd < 0) {
723 return -EIO;
724 }
725
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 */
731 total_sectors = total_size / BDRV_SECTOR_SIZE;
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 {
736 ret = -EFBIG;
737 goto fail;
738 }
739 }
740
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
776 #if defined(CONFIG_UUID)
777 uuid_generate(footer->uuid);
778 #endif
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
788 fail:
789 qemu_close(fd);
790 return ret;
791 }
792
793 static void vpc_close(BlockDriverState *bs)
794 {
795 BDRVVPCState *s = bs->opaque;
796 g_free(s->pagetable);
797 #ifdef CACHE
798 g_free(s->pageentry_u8);
799 #endif
800
801 migrate_del_blocker(s->migration_blocker);
802 error_free(s->migration_blocker);
803 }
804
805 static QEMUOptionParameter vpc_create_options[] = {
806 {
807 .name = BLOCK_OPT_SIZE,
808 .type = OPT_SIZE,
809 .help = "Virtual disk size"
810 },
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 },
818 { NULL }
819 };
820
821 static BlockDriver bdrv_vpc = {
822 .format_name = "vpc",
823 .instance_size = sizeof(BDRVVPCState),
824
825 .bdrv_probe = vpc_probe,
826 .bdrv_open = vpc_open,
827 .bdrv_close = vpc_close,
828 .bdrv_reopen_prepare = vpc_reopen_prepare,
829 .bdrv_create = vpc_create,
830
831 .bdrv_read = vpc_co_read,
832 .bdrv_write = vpc_co_write,
833
834 .create_options = vpc_create_options,
835 };
836
837 static void bdrv_vpc_init(void)
838 {
839 bdrv_register(&bdrv_vpc);
840 }
841
842 block_init(bdrv_vpc_init);