2 * Block driver for the QCOW version 2 format
4 * Copyright (c) 2004-2006 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
25 #include "block_int.h"
29 #include "block/qcow2.h"
30 #include "qemu-error.h"
34 Differences with QCOW:
36 - Support for multiple incremental snapshots.
37 - Memory management by reference counts.
38 - Clusters which have a reference count of one have the bit
39 QCOW_OFLAG_COPIED to optimize write performance.
40 - Size of compressed clusters is stored in sectors to reduce bit usage
41 in the cluster offsets.
42 - Support for storing additional data (such as the VM state) in the
44 - If a backing store is used, the cluster size is not constrained
45 (could be backported to QCOW).
46 - L2 tables have always a size of one cluster.
54 #define QCOW2_EXT_MAGIC_END 0
55 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
57 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
59 const QCowHeader
*cow_header
= (const void *)buf
;
61 if (buf_size
>= sizeof(QCowHeader
) &&
62 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
63 be32_to_cpu(cow_header
->version
) >= QCOW_VERSION
)
71 * read qcow2 extension and fill bs
72 * start reading from start_offset
73 * finish reading upon magic of value 0 or when end_offset reached
74 * unknown magic is skipped (future extension this version knows nothing about)
75 * return 0 upon success, non-0 otherwise
77 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
84 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
86 offset
= start_offset
;
87 while (offset
< end_offset
) {
90 BDRVQcowState
*s
= bs
->opaque
;
92 if (offset
> s
->cluster_size
)
93 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
95 printf("attemting to read extended header in offset %lu\n", offset
);
98 if (bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
)) != sizeof(ext
)) {
99 fprintf(stderr
, "qcow2_read_extension: ERROR: "
100 "pread fail from offset %" PRIu64
"\n",
104 be32_to_cpus(&ext
.magic
);
105 be32_to_cpus(&ext
.len
);
106 offset
+= sizeof(ext
);
108 printf("ext.magic = 0x%x\n", ext
.magic
);
111 case QCOW2_EXT_MAGIC_END
:
114 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
115 if (ext
.len
>= sizeof(bs
->backing_format
)) {
116 fprintf(stderr
, "ERROR: ext_backing_format: len=%u too large"
118 ext
.len
, sizeof(bs
->backing_format
));
121 if (bdrv_pread(bs
->file
, offset
, bs
->backing_format
,
124 bs
->backing_format
[ext
.len
] = '\0';
126 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
128 offset
= ((offset
+ ext
.len
+ 7) & ~7);
132 /* unknown magic -- just skip it */
133 offset
= ((offset
+ ext
.len
+ 7) & ~7);
142 static int qcow2_open(BlockDriverState
*bs
, int flags
)
144 BDRVQcowState
*s
= bs
->opaque
;
150 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
154 be32_to_cpus(&header
.magic
);
155 be32_to_cpus(&header
.version
);
156 be64_to_cpus(&header
.backing_file_offset
);
157 be32_to_cpus(&header
.backing_file_size
);
158 be64_to_cpus(&header
.size
);
159 be32_to_cpus(&header
.cluster_bits
);
160 be32_to_cpus(&header
.crypt_method
);
161 be64_to_cpus(&header
.l1_table_offset
);
162 be32_to_cpus(&header
.l1_size
);
163 be64_to_cpus(&header
.refcount_table_offset
);
164 be32_to_cpus(&header
.refcount_table_clusters
);
165 be64_to_cpus(&header
.snapshots_offset
);
166 be32_to_cpus(&header
.nb_snapshots
);
168 if (header
.magic
!= QCOW_MAGIC
) {
172 if (header
.version
!= QCOW_VERSION
) {
174 snprintf(version
, sizeof(version
), "QCOW version %d", header
.version
);
175 qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE
,
176 bs
->device_name
, "qcow2", version
);
180 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
181 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
185 if (header
.crypt_method
> QCOW_CRYPT_AES
) {
189 s
->crypt_method_header
= header
.crypt_method
;
190 if (s
->crypt_method_header
) {
193 s
->cluster_bits
= header
.cluster_bits
;
194 s
->cluster_size
= 1 << s
->cluster_bits
;
195 s
->cluster_sectors
= 1 << (s
->cluster_bits
- 9);
196 s
->l2_bits
= s
->cluster_bits
- 3; /* L2 is always one cluster */
197 s
->l2_size
= 1 << s
->l2_bits
;
198 bs
->total_sectors
= header
.size
/ 512;
199 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
200 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
201 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
202 s
->refcount_table_offset
= header
.refcount_table_offset
;
203 s
->refcount_table_size
=
204 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
206 s
->snapshots_offset
= header
.snapshots_offset
;
207 s
->nb_snapshots
= header
.nb_snapshots
;
209 /* read the level 1 table */
210 s
->l1_size
= header
.l1_size
;
211 s
->l1_vm_state_index
= size_to_l1(s
, header
.size
);
212 /* the L1 table must contain at least enough entries to put
214 if (s
->l1_size
< s
->l1_vm_state_index
) {
218 s
->l1_table_offset
= header
.l1_table_offset
;
219 if (s
->l1_size
> 0) {
220 s
->l1_table
= g_malloc0(
221 align_offset(s
->l1_size
* sizeof(uint64_t), 512));
222 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
223 s
->l1_size
* sizeof(uint64_t));
227 for(i
= 0;i
< s
->l1_size
; i
++) {
228 be64_to_cpus(&s
->l1_table
[i
]);
232 /* alloc L2 table/refcount block cache */
233 writethrough
= ((flags
& BDRV_O_CACHE_WB
) == 0);
234 s
->l2_table_cache
= qcow2_cache_create(bs
, L2_CACHE_SIZE
, writethrough
);
235 s
->refcount_block_cache
= qcow2_cache_create(bs
, REFCOUNT_CACHE_SIZE
,
238 s
->cluster_cache
= g_malloc(s
->cluster_size
);
239 /* one more sector for decompressed data alignment */
240 s
->cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
242 s
->cluster_cache_offset
= -1;
244 ret
= qcow2_refcount_init(bs
);
249 QLIST_INIT(&s
->cluster_allocs
);
251 /* read qcow2 extensions */
252 if (header
.backing_file_offset
) {
253 ext_end
= header
.backing_file_offset
;
255 ext_end
= s
->cluster_size
;
257 if (qcow2_read_extensions(bs
, sizeof(header
), ext_end
)) {
262 /* read the backing file name */
263 if (header
.backing_file_offset
!= 0) {
264 len
= header
.backing_file_size
;
268 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
269 bs
->backing_file
, len
);
273 bs
->backing_file
[len
] = '\0';
275 if (qcow2_read_snapshots(bs
) < 0) {
280 /* Initialise locks */
281 qemu_co_mutex_init(&s
->lock
);
285 BdrvCheckResult result
= {0};
286 qcow2_check_refcounts(bs
, &result
);
292 qcow2_free_snapshots(bs
);
293 qcow2_refcount_close(bs
);
295 if (s
->l2_table_cache
) {
296 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
298 g_free(s
->cluster_cache
);
299 qemu_vfree(s
->cluster_data
);
303 static int qcow2_set_key(BlockDriverState
*bs
, const char *key
)
305 BDRVQcowState
*s
= bs
->opaque
;
309 memset(keybuf
, 0, 16);
313 /* XXX: we could compress the chars to 7 bits to increase
315 for(i
= 0;i
< len
;i
++) {
318 s
->crypt_method
= s
->crypt_method_header
;
320 if (AES_set_encrypt_key(keybuf
, 128, &s
->aes_encrypt_key
) != 0)
322 if (AES_set_decrypt_key(keybuf
, 128, &s
->aes_decrypt_key
) != 0)
332 AES_encrypt(in
, tmp
, &s
->aes_encrypt_key
);
333 AES_decrypt(tmp
, out
, &s
->aes_decrypt_key
);
334 for(i
= 0; i
< 16; i
++)
335 printf(" %02x", tmp
[i
]);
337 for(i
= 0; i
< 16; i
++)
338 printf(" %02x", out
[i
]);
345 static int qcow2_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
346 int nb_sectors
, int *pnum
)
348 uint64_t cluster_offset
;
352 /* FIXME We can get errors here, but the bdrv_is_allocated interface can't
353 * pass them on today */
354 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9, pnum
, &cluster_offset
);
359 return (cluster_offset
!= 0);
362 /* handle reading after the end of the backing file */
363 int qcow2_backing_read1(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
364 int64_t sector_num
, int nb_sectors
)
367 if ((sector_num
+ nb_sectors
) <= bs
->total_sectors
)
369 if (sector_num
>= bs
->total_sectors
)
372 n1
= bs
->total_sectors
- sector_num
;
374 qemu_iovec_memset_skip(qiov
, 0, 512 * (nb_sectors
- n1
), 512 * n1
);
379 static int qcow2_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
380 int remaining_sectors
, QEMUIOVector
*qiov
)
382 BDRVQcowState
*s
= bs
->opaque
;
383 int index_in_cluster
, n1
;
385 int cur_nr_sectors
; /* number of sectors in current iteration */
386 uint64_t cluster_offset
= 0;
387 uint64_t bytes_done
= 0;
388 QEMUIOVector hd_qiov
;
389 uint8_t *cluster_data
= NULL
;
391 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
393 qemu_co_mutex_lock(&s
->lock
);
395 while (remaining_sectors
!= 0) {
397 /* prepare next request */
398 cur_nr_sectors
= remaining_sectors
;
399 if (s
->crypt_method
) {
400 cur_nr_sectors
= MIN(cur_nr_sectors
,
401 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
404 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9,
405 &cur_nr_sectors
, &cluster_offset
);
410 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
412 qemu_iovec_reset(&hd_qiov
);
413 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
414 cur_nr_sectors
* 512);
416 if (!cluster_offset
) {
418 if (bs
->backing_hd
) {
419 /* read from the base image */
420 n1
= qcow2_backing_read1(bs
->backing_hd
, &hd_qiov
,
421 sector_num
, cur_nr_sectors
);
423 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
424 qemu_co_mutex_unlock(&s
->lock
);
425 ret
= bdrv_co_readv(bs
->backing_hd
, sector_num
,
427 qemu_co_mutex_lock(&s
->lock
);
433 /* Note: in this case, no need to wait */
434 qemu_iovec_memset(&hd_qiov
, 0, 512 * cur_nr_sectors
);
436 } else if (cluster_offset
& QCOW_OFLAG_COMPRESSED
) {
437 /* add AIO support for compressed blocks ? */
438 ret
= qcow2_decompress_cluster(bs
, cluster_offset
);
443 qemu_iovec_from_buffer(&hd_qiov
,
444 s
->cluster_cache
+ index_in_cluster
* 512,
445 512 * cur_nr_sectors
);
447 if ((cluster_offset
& 511) != 0) {
452 if (s
->crypt_method
) {
454 * For encrypted images, read everything into a temporary
455 * contiguous buffer on which the AES functions can work.
459 qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
462 assert(cur_nr_sectors
<=
463 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
464 qemu_iovec_reset(&hd_qiov
);
465 qemu_iovec_add(&hd_qiov
, cluster_data
,
466 512 * cur_nr_sectors
);
469 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
470 qemu_co_mutex_unlock(&s
->lock
);
471 ret
= bdrv_co_readv(bs
->file
,
472 (cluster_offset
>> 9) + index_in_cluster
,
473 cur_nr_sectors
, &hd_qiov
);
474 qemu_co_mutex_lock(&s
->lock
);
478 if (s
->crypt_method
) {
479 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
480 cluster_data
, cur_nr_sectors
, 0, &s
->aes_decrypt_key
);
481 qemu_iovec_reset(&hd_qiov
);
482 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
483 cur_nr_sectors
* 512);
484 qemu_iovec_from_buffer(&hd_qiov
, cluster_data
,
485 512 * cur_nr_sectors
);
489 remaining_sectors
-= cur_nr_sectors
;
490 sector_num
+= cur_nr_sectors
;
491 bytes_done
+= cur_nr_sectors
* 512;
496 qemu_co_mutex_unlock(&s
->lock
);
498 qemu_iovec_destroy(&hd_qiov
);
499 qemu_vfree(cluster_data
);
504 static void run_dependent_requests(BDRVQcowState
*s
, QCowL2Meta
*m
)
506 /* Take the request off the list of running requests */
507 if (m
->nb_clusters
!= 0) {
508 QLIST_REMOVE(m
, next_in_flight
);
511 /* Restart all dependent requests */
512 if (!qemu_co_queue_empty(&m
->dependent_requests
)) {
513 qemu_co_mutex_unlock(&s
->lock
);
514 while(qemu_co_queue_next(&m
->dependent_requests
));
515 qemu_co_mutex_lock(&s
->lock
);
519 static int qcow2_co_writev(BlockDriverState
*bs
,
521 int remaining_sectors
,
524 BDRVQcowState
*s
= bs
->opaque
;
525 int index_in_cluster
;
528 int cur_nr_sectors
; /* number of sectors in current iteration */
529 uint64_t cluster_offset
;
530 QEMUIOVector hd_qiov
;
531 uint64_t bytes_done
= 0;
532 uint8_t *cluster_data
= NULL
;
533 QCowL2Meta l2meta
= {
537 qemu_co_queue_init(&l2meta
.dependent_requests
);
539 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
541 s
->cluster_cache_offset
= -1; /* disable compressed cache */
543 qemu_co_mutex_lock(&s
->lock
);
545 while (remaining_sectors
!= 0) {
547 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
548 n_end
= index_in_cluster
+ remaining_sectors
;
549 if (s
->crypt_method
&&
550 n_end
> QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
) {
551 n_end
= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
;
554 ret
= qcow2_alloc_cluster_offset(bs
, sector_num
<< 9,
555 index_in_cluster
, n_end
, &cur_nr_sectors
, &l2meta
);
560 cluster_offset
= l2meta
.cluster_offset
;
561 assert((cluster_offset
& 511) == 0);
563 qemu_iovec_reset(&hd_qiov
);
564 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
565 cur_nr_sectors
* 512);
567 if (s
->crypt_method
) {
569 cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
*
573 assert(hd_qiov
.size
<=
574 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
575 qemu_iovec_to_buffer(&hd_qiov
, cluster_data
);
577 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
578 cluster_data
, cur_nr_sectors
, 1, &s
->aes_encrypt_key
);
580 qemu_iovec_reset(&hd_qiov
);
581 qemu_iovec_add(&hd_qiov
, cluster_data
,
582 cur_nr_sectors
* 512);
585 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
586 qemu_co_mutex_unlock(&s
->lock
);
587 ret
= bdrv_co_writev(bs
->file
,
588 (cluster_offset
>> 9) + index_in_cluster
,
589 cur_nr_sectors
, &hd_qiov
);
590 qemu_co_mutex_lock(&s
->lock
);
595 ret
= qcow2_alloc_cluster_link_l2(bs
, &l2meta
);
600 run_dependent_requests(s
, &l2meta
);
602 remaining_sectors
-= cur_nr_sectors
;
603 sector_num
+= cur_nr_sectors
;
604 bytes_done
+= cur_nr_sectors
* 512;
609 run_dependent_requests(s
, &l2meta
);
611 qemu_co_mutex_unlock(&s
->lock
);
613 qemu_iovec_destroy(&hd_qiov
);
614 qemu_vfree(cluster_data
);
619 static void qcow2_close(BlockDriverState
*bs
)
621 BDRVQcowState
*s
= bs
->opaque
;
624 qcow2_cache_flush(bs
, s
->l2_table_cache
);
625 qcow2_cache_flush(bs
, s
->refcount_block_cache
);
627 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
628 qcow2_cache_destroy(bs
, s
->refcount_block_cache
);
630 g_free(s
->cluster_cache
);
631 qemu_vfree(s
->cluster_data
);
632 qcow2_refcount_close(bs
);
636 * Updates the variable length parts of the qcow2 header, i.e. the backing file
637 * name and all extensions. qcow2 was not designed to allow such changes, so if
638 * we run out of space (we can only use the first cluster) this function may
641 * Returns 0 on success, -errno in error cases.
643 static int qcow2_update_ext_header(BlockDriverState
*bs
,
644 const char *backing_file
, const char *backing_fmt
)
646 size_t backing_file_len
= 0;
647 size_t backing_fmt_len
= 0;
648 BDRVQcowState
*s
= bs
->opaque
;
649 QCowExtension ext_backing_fmt
= {0, 0};
652 /* Backing file format doesn't make sense without a backing file */
653 if (backing_fmt
&& !backing_file
) {
657 /* Prepare the backing file format extension if needed */
659 ext_backing_fmt
.len
= cpu_to_be32(strlen(backing_fmt
));
660 ext_backing_fmt
.magic
= cpu_to_be32(QCOW2_EXT_MAGIC_BACKING_FORMAT
);
661 backing_fmt_len
= ((sizeof(ext_backing_fmt
)
662 + strlen(backing_fmt
) + 7) & ~7);
665 /* Check if we can fit the new header into the first cluster */
667 backing_file_len
= strlen(backing_file
);
670 size_t header_size
= sizeof(QCowHeader
) + backing_file_len
673 if (header_size
> s
->cluster_size
) {
677 /* Rewrite backing file name and qcow2 extensions */
678 size_t ext_size
= header_size
- sizeof(QCowHeader
);
679 uint8_t buf
[ext_size
];
681 size_t backing_file_offset
= 0;
685 int padding
= backing_fmt_len
-
686 (sizeof(ext_backing_fmt
) + strlen(backing_fmt
));
688 memcpy(buf
+ offset
, &ext_backing_fmt
, sizeof(ext_backing_fmt
));
689 offset
+= sizeof(ext_backing_fmt
);
691 memcpy(buf
+ offset
, backing_fmt
, strlen(backing_fmt
));
692 offset
+= strlen(backing_fmt
);
694 memset(buf
+ offset
, 0, padding
);
698 memcpy(buf
+ offset
, backing_file
, backing_file_len
);
699 backing_file_offset
= sizeof(QCowHeader
) + offset
;
702 ret
= bdrv_pwrite_sync(bs
->file
, sizeof(QCowHeader
), buf
, ext_size
);
707 /* Update header fields */
708 uint64_t be_backing_file_offset
= cpu_to_be64(backing_file_offset
);
709 uint32_t be_backing_file_size
= cpu_to_be32(backing_file_len
);
711 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, backing_file_offset
),
712 &be_backing_file_offset
, sizeof(uint64_t));
717 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, backing_file_size
),
718 &be_backing_file_size
, sizeof(uint32_t));
728 static int qcow2_change_backing_file(BlockDriverState
*bs
,
729 const char *backing_file
, const char *backing_fmt
)
731 return qcow2_update_ext_header(bs
, backing_file
, backing_fmt
);
734 static int preallocate(BlockDriverState
*bs
)
742 nb_sectors
= bdrv_getlength(bs
) >> 9;
744 qemu_co_queue_init(&meta
.dependent_requests
);
745 meta
.cluster_offset
= 0;
748 num
= MIN(nb_sectors
, INT_MAX
>> 9);
749 ret
= qcow2_alloc_cluster_offset(bs
, offset
, 0, num
, &num
, &meta
);
754 ret
= qcow2_alloc_cluster_link_l2(bs
, &meta
);
756 qcow2_free_any_clusters(bs
, meta
.cluster_offset
, meta
.nb_clusters
);
760 /* There are no dependent requests, but we need to remove our request
761 * from the list of in-flight requests */
762 run_dependent_requests(bs
->opaque
, &meta
);
764 /* TODO Preallocate data if requested */
771 * It is expected that the image file is large enough to actually contain
772 * all of the allocated clusters (otherwise we get failing reads after
773 * EOF). Extend the image to the last allocated sector.
775 if (meta
.cluster_offset
!= 0) {
778 ret
= bdrv_write(bs
->file
, (meta
.cluster_offset
>> 9) + num
- 1, buf
, 1);
787 static int qcow2_create2(const char *filename
, int64_t total_size
,
788 const char *backing_file
, const char *backing_format
,
789 int flags
, size_t cluster_size
, int prealloc
,
790 QEMUOptionParameter
*options
)
792 /* Calulate cluster_bits */
794 cluster_bits
= ffs(cluster_size
) - 1;
795 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
796 (1 << cluster_bits
) != cluster_size
)
799 "Cluster size must be a power of two between %d and %dk",
800 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
805 * Open the image file and write a minimal qcow2 header.
807 * We keep things simple and start with a zero-sized image. We also
808 * do without refcount blocks or a L1 table for now. We'll fix the
809 * inconsistency later.
811 * We do need a refcount table because growing the refcount table means
812 * allocating two new refcount blocks - the seconds of which would be at
813 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
814 * size for any qcow2 image.
816 BlockDriverState
* bs
;
818 uint8_t* refcount_table
;
821 ret
= bdrv_create_file(filename
, options
);
826 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDWR
);
831 /* Write the header */
832 memset(&header
, 0, sizeof(header
));
833 header
.magic
= cpu_to_be32(QCOW_MAGIC
);
834 header
.version
= cpu_to_be32(QCOW_VERSION
);
835 header
.cluster_bits
= cpu_to_be32(cluster_bits
);
836 header
.size
= cpu_to_be64(0);
837 header
.l1_table_offset
= cpu_to_be64(0);
838 header
.l1_size
= cpu_to_be32(0);
839 header
.refcount_table_offset
= cpu_to_be64(cluster_size
);
840 header
.refcount_table_clusters
= cpu_to_be32(1);
842 if (flags
& BLOCK_FLAG_ENCRYPT
) {
843 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_AES
);
845 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
848 ret
= bdrv_pwrite(bs
, 0, &header
, sizeof(header
));
853 /* Write an empty refcount table */
854 refcount_table
= g_malloc0(cluster_size
);
855 ret
= bdrv_pwrite(bs
, cluster_size
, refcount_table
, cluster_size
);
856 g_free(refcount_table
);
865 * And now open the image and make it consistent first (i.e. increase the
866 * refcount of the cluster that is occupied by the header and the refcount
869 BlockDriver
* drv
= bdrv_find_format("qcow2");
871 ret
= bdrv_open(bs
, filename
,
872 BDRV_O_RDWR
| BDRV_O_CACHE_WB
| BDRV_O_NO_FLUSH
, drv
);
877 ret
= qcow2_alloc_clusters(bs
, 2 * cluster_size
);
881 } else if (ret
!= 0) {
882 error_report("Huh, first cluster in empty image is already in use?");
886 /* Okay, now that we have a valid image, let's give it the right size */
887 ret
= bdrv_truncate(bs
, total_size
* BDRV_SECTOR_SIZE
);
892 /* Want a backing file? There you go.*/
894 ret
= bdrv_change_backing_file(bs
, backing_file
, backing_format
);
900 /* And if we're supposed to preallocate metadata, do that now */
902 ret
= preallocate(bs
);
914 static int qcow2_create(const char *filename
, QEMUOptionParameter
*options
)
916 const char *backing_file
= NULL
;
917 const char *backing_fmt
= NULL
;
918 uint64_t sectors
= 0;
920 size_t cluster_size
= DEFAULT_CLUSTER_SIZE
;
923 /* Read out options */
924 while (options
&& options
->name
) {
925 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
926 sectors
= options
->value
.n
/ 512;
927 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
928 backing_file
= options
->value
.s
;
929 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FMT
)) {
930 backing_fmt
= options
->value
.s
;
931 } else if (!strcmp(options
->name
, BLOCK_OPT_ENCRYPT
)) {
932 flags
|= options
->value
.n
? BLOCK_FLAG_ENCRYPT
: 0;
933 } else if (!strcmp(options
->name
, BLOCK_OPT_CLUSTER_SIZE
)) {
934 if (options
->value
.n
) {
935 cluster_size
= options
->value
.n
;
937 } else if (!strcmp(options
->name
, BLOCK_OPT_PREALLOC
)) {
938 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "off")) {
940 } else if (!strcmp(options
->value
.s
, "metadata")) {
943 fprintf(stderr
, "Invalid preallocation mode: '%s'\n",
951 if (backing_file
&& prealloc
) {
952 fprintf(stderr
, "Backing file and preallocation cannot be used at "
957 return qcow2_create2(filename
, sectors
, backing_file
, backing_fmt
, flags
,
958 cluster_size
, prealloc
, options
);
961 static int qcow2_make_empty(BlockDriverState
*bs
)
964 /* XXX: not correct */
965 BDRVQcowState
*s
= bs
->opaque
;
966 uint32_t l1_length
= s
->l1_size
* sizeof(uint64_t);
969 memset(s
->l1_table
, 0, l1_length
);
970 if (bdrv_pwrite(bs
->file
, s
->l1_table_offset
, s
->l1_table
, l1_length
) < 0)
972 ret
= bdrv_truncate(bs
->file
, s
->l1_table_offset
+ l1_length
);
981 static coroutine_fn
int qcow2_co_discard(BlockDriverState
*bs
,
982 int64_t sector_num
, int nb_sectors
)
985 BDRVQcowState
*s
= bs
->opaque
;
987 qemu_co_mutex_lock(&s
->lock
);
988 ret
= qcow2_discard_clusters(bs
, sector_num
<< BDRV_SECTOR_BITS
,
990 qemu_co_mutex_unlock(&s
->lock
);
994 static int qcow2_truncate(BlockDriverState
*bs
, int64_t offset
)
996 BDRVQcowState
*s
= bs
->opaque
;
997 int ret
, new_l1_size
;
1003 /* cannot proceed if image has snapshots */
1004 if (s
->nb_snapshots
) {
1008 /* shrinking is currently not supported */
1009 if (offset
< bs
->total_sectors
* 512) {
1013 new_l1_size
= size_to_l1(s
, offset
);
1014 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
1019 /* write updated header.size */
1020 offset
= cpu_to_be64(offset
);
1021 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
1022 &offset
, sizeof(uint64_t));
1027 s
->l1_vm_state_index
= new_l1_size
;
1031 /* XXX: put compressed sectors first, then all the cluster aligned
1032 tables to avoid losing bytes in alignment */
1033 static int qcow2_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1034 const uint8_t *buf
, int nb_sectors
)
1036 BDRVQcowState
*s
= bs
->opaque
;
1040 uint64_t cluster_offset
;
1042 if (nb_sectors
== 0) {
1043 /* align end of file to a sector boundary to ease reading with
1044 sector based I/Os */
1045 cluster_offset
= bdrv_getlength(bs
->file
);
1046 cluster_offset
= (cluster_offset
+ 511) & ~511;
1047 bdrv_truncate(bs
->file
, cluster_offset
);
1051 if (nb_sectors
!= s
->cluster_sectors
)
1054 out_buf
= g_malloc(s
->cluster_size
+ (s
->cluster_size
/ 1000) + 128);
1056 /* best compression, small window, no zlib header */
1057 memset(&strm
, 0, sizeof(strm
));
1058 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
1060 9, Z_DEFAULT_STRATEGY
);
1066 strm
.avail_in
= s
->cluster_size
;
1067 strm
.next_in
= (uint8_t *)buf
;
1068 strm
.avail_out
= s
->cluster_size
;
1069 strm
.next_out
= out_buf
;
1071 ret
= deflate(&strm
, Z_FINISH
);
1072 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
1077 out_len
= strm
.next_out
- out_buf
;
1081 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
1082 /* could not compress: write normal cluster */
1083 ret
= bdrv_write(bs
, sector_num
, buf
, s
->cluster_sectors
);
1088 cluster_offset
= qcow2_alloc_compressed_cluster_offset(bs
,
1089 sector_num
<< 9, out_len
);
1090 if (!cluster_offset
) {
1094 cluster_offset
&= s
->cluster_offset_mask
;
1095 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_COMPRESSED
);
1096 ret
= bdrv_pwrite(bs
->file
, cluster_offset
, out_buf
, out_len
);
1108 static int qcow2_co_flush(BlockDriverState
*bs
)
1110 BDRVQcowState
*s
= bs
->opaque
;
1113 qemu_co_mutex_lock(&s
->lock
);
1114 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
1116 qemu_co_mutex_unlock(&s
->lock
);
1120 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
1122 qemu_co_mutex_unlock(&s
->lock
);
1125 qemu_co_mutex_unlock(&s
->lock
);
1127 return bdrv_co_flush(bs
->file
);
1130 static int64_t qcow2_vm_state_offset(BDRVQcowState
*s
)
1132 return (int64_t)s
->l1_vm_state_index
<< (s
->cluster_bits
+ s
->l2_bits
);
1135 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1137 BDRVQcowState
*s
= bs
->opaque
;
1138 bdi
->cluster_size
= s
->cluster_size
;
1139 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
1144 static int qcow2_check(BlockDriverState
*bs
, BdrvCheckResult
*result
)
1146 return qcow2_check_refcounts(bs
, result
);
1150 static void dump_refcounts(BlockDriverState
*bs
)
1152 BDRVQcowState
*s
= bs
->opaque
;
1153 int64_t nb_clusters
, k
, k1
, size
;
1156 size
= bdrv_getlength(bs
->file
);
1157 nb_clusters
= size_to_clusters(s
, size
);
1158 for(k
= 0; k
< nb_clusters
;) {
1160 refcount
= get_refcount(bs
, k
);
1162 while (k
< nb_clusters
&& get_refcount(bs
, k
) == refcount
)
1164 printf("%" PRId64
": refcount=%d nb=%" PRId64
"\n", k
, refcount
,
1170 static int qcow2_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1171 int64_t pos
, int size
)
1173 BDRVQcowState
*s
= bs
->opaque
;
1174 int growable
= bs
->growable
;
1177 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
1179 ret
= bdrv_pwrite(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1180 bs
->growable
= growable
;
1185 static int qcow2_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1186 int64_t pos
, int size
)
1188 BDRVQcowState
*s
= bs
->opaque
;
1189 int growable
= bs
->growable
;
1192 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
1194 ret
= bdrv_pread(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1195 bs
->growable
= growable
;
1200 static QEMUOptionParameter qcow2_create_options
[] = {
1202 .name
= BLOCK_OPT_SIZE
,
1204 .help
= "Virtual disk size"
1207 .name
= BLOCK_OPT_BACKING_FILE
,
1209 .help
= "File name of a base image"
1212 .name
= BLOCK_OPT_BACKING_FMT
,
1214 .help
= "Image format of the base image"
1217 .name
= BLOCK_OPT_ENCRYPT
,
1219 .help
= "Encrypt the image"
1222 .name
= BLOCK_OPT_CLUSTER_SIZE
,
1224 .help
= "qcow2 cluster size",
1225 .value
= { .n
= DEFAULT_CLUSTER_SIZE
},
1228 .name
= BLOCK_OPT_PREALLOC
,
1230 .help
= "Preallocation mode (allowed values: off, metadata)"
1235 static BlockDriver bdrv_qcow2
= {
1236 .format_name
= "qcow2",
1237 .instance_size
= sizeof(BDRVQcowState
),
1238 .bdrv_probe
= qcow2_probe
,
1239 .bdrv_open
= qcow2_open
,
1240 .bdrv_close
= qcow2_close
,
1241 .bdrv_create
= qcow2_create
,
1242 .bdrv_is_allocated
= qcow2_is_allocated
,
1243 .bdrv_set_key
= qcow2_set_key
,
1244 .bdrv_make_empty
= qcow2_make_empty
,
1246 .bdrv_co_readv
= qcow2_co_readv
,
1247 .bdrv_co_writev
= qcow2_co_writev
,
1248 .bdrv_co_flush
= qcow2_co_flush
,
1250 .bdrv_co_discard
= qcow2_co_discard
,
1251 .bdrv_truncate
= qcow2_truncate
,
1252 .bdrv_write_compressed
= qcow2_write_compressed
,
1254 .bdrv_snapshot_create
= qcow2_snapshot_create
,
1255 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
1256 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
1257 .bdrv_snapshot_list
= qcow2_snapshot_list
,
1258 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
1259 .bdrv_get_info
= qcow2_get_info
,
1261 .bdrv_save_vmstate
= qcow2_save_vmstate
,
1262 .bdrv_load_vmstate
= qcow2_load_vmstate
,
1264 .bdrv_change_backing_file
= qcow2_change_backing_file
,
1266 .create_options
= qcow2_create_options
,
1267 .bdrv_check
= qcow2_check
,
1270 static void bdrv_qcow2_init(void)
1272 bdrv_register(&bdrv_qcow2
);
1275 block_init(bdrv_qcow2_init
);