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"
35 Differences with QCOW:
37 - Support for multiple incremental snapshots.
38 - Memory management by reference counts.
39 - Clusters which have a reference count of one have the bit
40 QCOW_OFLAG_COPIED to optimize write performance.
41 - Size of compressed clusters is stored in sectors to reduce bit usage
42 in the cluster offsets.
43 - Support for storing additional data (such as the VM state) in the
45 - If a backing store is used, the cluster size is not constrained
46 (could be backported to QCOW).
47 - L2 tables have always a size of one cluster.
55 #define QCOW2_EXT_MAGIC_END 0
56 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
58 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
60 const QCowHeader
*cow_header
= (const void *)buf
;
62 if (buf_size
>= sizeof(QCowHeader
) &&
63 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
64 be32_to_cpu(cow_header
->version
) >= QCOW_VERSION
)
72 * read qcow2 extension and fill bs
73 * start reading from start_offset
74 * finish reading upon magic of value 0 or when end_offset reached
75 * unknown magic is skipped (future extension this version knows nothing about)
76 * return 0 upon success, non-0 otherwise
78 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
81 BDRVQcowState
*s
= bs
->opaque
;
87 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
89 offset
= start_offset
;
90 while (offset
< end_offset
) {
94 if (offset
> s
->cluster_size
)
95 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
97 printf("attempting to read extended header in offset %lu\n", offset
);
100 if (bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
)) != sizeof(ext
)) {
101 fprintf(stderr
, "qcow2_read_extension: ERROR: "
102 "pread fail from offset %" PRIu64
"\n",
106 be32_to_cpus(&ext
.magic
);
107 be32_to_cpus(&ext
.len
);
108 offset
+= sizeof(ext
);
110 printf("ext.magic = 0x%x\n", ext
.magic
);
112 if (ext
.len
> end_offset
- offset
) {
113 error_report("Header extension too large");
118 case QCOW2_EXT_MAGIC_END
:
121 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
122 if (ext
.len
>= sizeof(bs
->backing_format
)) {
123 fprintf(stderr
, "ERROR: ext_backing_format: len=%u too large"
125 ext
.len
, sizeof(bs
->backing_format
));
128 if (bdrv_pread(bs
->file
, offset
, bs
->backing_format
,
131 bs
->backing_format
[ext
.len
] = '\0';
133 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
138 /* unknown magic - save it in case we need to rewrite the header */
140 Qcow2UnknownHeaderExtension
*uext
;
142 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
143 uext
->magic
= ext
.magic
;
145 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
147 ret
= bdrv_pread(bs
->file
, offset
, uext
->data
, uext
->len
);
155 offset
+= ((ext
.len
+ 7) & ~7);
161 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
163 BDRVQcowState
*s
= bs
->opaque
;
164 Qcow2UnknownHeaderExtension
*uext
, *next
;
166 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
167 QLIST_REMOVE(uext
, next
);
172 static int qcow2_open(BlockDriverState
*bs
, int flags
)
174 BDRVQcowState
*s
= bs
->opaque
;
180 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
184 be32_to_cpus(&header
.magic
);
185 be32_to_cpus(&header
.version
);
186 be64_to_cpus(&header
.backing_file_offset
);
187 be32_to_cpus(&header
.backing_file_size
);
188 be64_to_cpus(&header
.size
);
189 be32_to_cpus(&header
.cluster_bits
);
190 be32_to_cpus(&header
.crypt_method
);
191 be64_to_cpus(&header
.l1_table_offset
);
192 be32_to_cpus(&header
.l1_size
);
193 be64_to_cpus(&header
.refcount_table_offset
);
194 be32_to_cpus(&header
.refcount_table_clusters
);
195 be64_to_cpus(&header
.snapshots_offset
);
196 be32_to_cpus(&header
.nb_snapshots
);
198 if (header
.magic
!= QCOW_MAGIC
) {
202 if (header
.version
!= QCOW_VERSION
) {
204 snprintf(version
, sizeof(version
), "QCOW version %d", header
.version
);
205 qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE
,
206 bs
->device_name
, "qcow2", version
);
210 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
211 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
215 if (header
.crypt_method
> QCOW_CRYPT_AES
) {
219 s
->crypt_method_header
= header
.crypt_method
;
220 if (s
->crypt_method_header
) {
223 s
->cluster_bits
= header
.cluster_bits
;
224 s
->cluster_size
= 1 << s
->cluster_bits
;
225 s
->cluster_sectors
= 1 << (s
->cluster_bits
- 9);
226 s
->l2_bits
= s
->cluster_bits
- 3; /* L2 is always one cluster */
227 s
->l2_size
= 1 << s
->l2_bits
;
228 bs
->total_sectors
= header
.size
/ 512;
229 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
230 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
231 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
232 s
->refcount_table_offset
= header
.refcount_table_offset
;
233 s
->refcount_table_size
=
234 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
236 s
->snapshots_offset
= header
.snapshots_offset
;
237 s
->nb_snapshots
= header
.nb_snapshots
;
239 /* read the level 1 table */
240 s
->l1_size
= header
.l1_size
;
241 s
->l1_vm_state_index
= size_to_l1(s
, header
.size
);
242 /* the L1 table must contain at least enough entries to put
244 if (s
->l1_size
< s
->l1_vm_state_index
) {
248 s
->l1_table_offset
= header
.l1_table_offset
;
249 if (s
->l1_size
> 0) {
250 s
->l1_table
= g_malloc0(
251 align_offset(s
->l1_size
* sizeof(uint64_t), 512));
252 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
253 s
->l1_size
* sizeof(uint64_t));
257 for(i
= 0;i
< s
->l1_size
; i
++) {
258 be64_to_cpus(&s
->l1_table
[i
]);
262 /* alloc L2 table/refcount block cache */
263 writethrough
= ((flags
& BDRV_O_CACHE_WB
) == 0);
264 s
->l2_table_cache
= qcow2_cache_create(bs
, L2_CACHE_SIZE
, writethrough
);
265 s
->refcount_block_cache
= qcow2_cache_create(bs
, REFCOUNT_CACHE_SIZE
,
268 s
->cluster_cache
= g_malloc(s
->cluster_size
);
269 /* one more sector for decompressed data alignment */
270 s
->cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
272 s
->cluster_cache_offset
= -1;
275 ret
= qcow2_refcount_init(bs
);
280 QLIST_INIT(&s
->cluster_allocs
);
282 /* read qcow2 extensions */
283 if (header
.backing_file_offset
) {
284 ext_end
= header
.backing_file_offset
;
286 ext_end
= s
->cluster_size
;
288 if (qcow2_read_extensions(bs
, sizeof(header
), ext_end
)) {
293 /* read the backing file name */
294 if (header
.backing_file_offset
!= 0) {
295 len
= header
.backing_file_size
;
299 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
300 bs
->backing_file
, len
);
304 bs
->backing_file
[len
] = '\0';
307 ret
= qcow2_read_snapshots(bs
);
312 /* Initialise locks */
313 qemu_co_mutex_init(&s
->lock
);
317 BdrvCheckResult result
= {0};
318 qcow2_check_refcounts(bs
, &result
);
324 cleanup_unknown_header_ext(bs
);
325 qcow2_free_snapshots(bs
);
326 qcow2_refcount_close(bs
);
328 if (s
->l2_table_cache
) {
329 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
331 g_free(s
->cluster_cache
);
332 qemu_vfree(s
->cluster_data
);
336 static int qcow2_set_key(BlockDriverState
*bs
, const char *key
)
338 BDRVQcowState
*s
= bs
->opaque
;
342 memset(keybuf
, 0, 16);
346 /* XXX: we could compress the chars to 7 bits to increase
348 for(i
= 0;i
< len
;i
++) {
351 s
->crypt_method
= s
->crypt_method_header
;
353 if (AES_set_encrypt_key(keybuf
, 128, &s
->aes_encrypt_key
) != 0)
355 if (AES_set_decrypt_key(keybuf
, 128, &s
->aes_decrypt_key
) != 0)
365 AES_encrypt(in
, tmp
, &s
->aes_encrypt_key
);
366 AES_decrypt(tmp
, out
, &s
->aes_decrypt_key
);
367 for(i
= 0; i
< 16; i
++)
368 printf(" %02x", tmp
[i
]);
370 for(i
= 0; i
< 16; i
++)
371 printf(" %02x", out
[i
]);
378 static int coroutine_fn
qcow2_co_is_allocated(BlockDriverState
*bs
,
379 int64_t sector_num
, int nb_sectors
, int *pnum
)
381 BDRVQcowState
*s
= bs
->opaque
;
382 uint64_t cluster_offset
;
386 /* FIXME We can get errors here, but the bdrv_co_is_allocated interface
387 * can't pass them on today */
388 qemu_co_mutex_lock(&s
->lock
);
389 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9, pnum
, &cluster_offset
);
390 qemu_co_mutex_unlock(&s
->lock
);
395 return (cluster_offset
!= 0);
398 /* handle reading after the end of the backing file */
399 int qcow2_backing_read1(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
400 int64_t sector_num
, int nb_sectors
)
403 if ((sector_num
+ nb_sectors
) <= bs
->total_sectors
)
405 if (sector_num
>= bs
->total_sectors
)
408 n1
= bs
->total_sectors
- sector_num
;
410 qemu_iovec_memset_skip(qiov
, 0, 512 * (nb_sectors
- n1
), 512 * n1
);
415 static coroutine_fn
int qcow2_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
416 int remaining_sectors
, QEMUIOVector
*qiov
)
418 BDRVQcowState
*s
= bs
->opaque
;
419 int index_in_cluster
, n1
;
421 int cur_nr_sectors
; /* number of sectors in current iteration */
422 uint64_t cluster_offset
= 0;
423 uint64_t bytes_done
= 0;
424 QEMUIOVector hd_qiov
;
425 uint8_t *cluster_data
= NULL
;
427 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
429 qemu_co_mutex_lock(&s
->lock
);
431 while (remaining_sectors
!= 0) {
433 /* prepare next request */
434 cur_nr_sectors
= remaining_sectors
;
435 if (s
->crypt_method
) {
436 cur_nr_sectors
= MIN(cur_nr_sectors
,
437 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
440 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9,
441 &cur_nr_sectors
, &cluster_offset
);
446 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
448 qemu_iovec_reset(&hd_qiov
);
449 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
450 cur_nr_sectors
* 512);
452 if (!cluster_offset
) {
454 if (bs
->backing_hd
) {
455 /* read from the base image */
456 n1
= qcow2_backing_read1(bs
->backing_hd
, &hd_qiov
,
457 sector_num
, cur_nr_sectors
);
459 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
460 qemu_co_mutex_unlock(&s
->lock
);
461 ret
= bdrv_co_readv(bs
->backing_hd
, sector_num
,
463 qemu_co_mutex_lock(&s
->lock
);
469 /* Note: in this case, no need to wait */
470 qemu_iovec_memset(&hd_qiov
, 0, 512 * cur_nr_sectors
);
472 } else if (cluster_offset
& QCOW_OFLAG_COMPRESSED
) {
473 /* add AIO support for compressed blocks ? */
474 ret
= qcow2_decompress_cluster(bs
, cluster_offset
);
479 qemu_iovec_from_buffer(&hd_qiov
,
480 s
->cluster_cache
+ index_in_cluster
* 512,
481 512 * cur_nr_sectors
);
483 if ((cluster_offset
& 511) != 0) {
488 if (s
->crypt_method
) {
490 * For encrypted images, read everything into a temporary
491 * contiguous buffer on which the AES functions can work.
495 qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
498 assert(cur_nr_sectors
<=
499 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
500 qemu_iovec_reset(&hd_qiov
);
501 qemu_iovec_add(&hd_qiov
, cluster_data
,
502 512 * cur_nr_sectors
);
505 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
506 qemu_co_mutex_unlock(&s
->lock
);
507 ret
= bdrv_co_readv(bs
->file
,
508 (cluster_offset
>> 9) + index_in_cluster
,
509 cur_nr_sectors
, &hd_qiov
);
510 qemu_co_mutex_lock(&s
->lock
);
514 if (s
->crypt_method
) {
515 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
516 cluster_data
, cur_nr_sectors
, 0, &s
->aes_decrypt_key
);
517 qemu_iovec_reset(&hd_qiov
);
518 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
519 cur_nr_sectors
* 512);
520 qemu_iovec_from_buffer(&hd_qiov
, cluster_data
,
521 512 * cur_nr_sectors
);
525 remaining_sectors
-= cur_nr_sectors
;
526 sector_num
+= cur_nr_sectors
;
527 bytes_done
+= cur_nr_sectors
* 512;
532 qemu_co_mutex_unlock(&s
->lock
);
534 qemu_iovec_destroy(&hd_qiov
);
535 qemu_vfree(cluster_data
);
540 static void run_dependent_requests(BDRVQcowState
*s
, QCowL2Meta
*m
)
542 /* Take the request off the list of running requests */
543 if (m
->nb_clusters
!= 0) {
544 QLIST_REMOVE(m
, next_in_flight
);
547 /* Restart all dependent requests */
548 if (!qemu_co_queue_empty(&m
->dependent_requests
)) {
549 qemu_co_mutex_unlock(&s
->lock
);
550 qemu_co_queue_restart_all(&m
->dependent_requests
);
551 qemu_co_mutex_lock(&s
->lock
);
555 static coroutine_fn
int qcow2_co_writev(BlockDriverState
*bs
,
557 int remaining_sectors
,
560 BDRVQcowState
*s
= bs
->opaque
;
561 int index_in_cluster
;
564 int cur_nr_sectors
; /* number of sectors in current iteration */
565 uint64_t cluster_offset
;
566 QEMUIOVector hd_qiov
;
567 uint64_t bytes_done
= 0;
568 uint8_t *cluster_data
= NULL
;
569 QCowL2Meta l2meta
= {
573 trace_qcow2_writev_start_req(qemu_coroutine_self(), sector_num
,
576 qemu_co_queue_init(&l2meta
.dependent_requests
);
578 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
580 s
->cluster_cache_offset
= -1; /* disable compressed cache */
582 qemu_co_mutex_lock(&s
->lock
);
584 while (remaining_sectors
!= 0) {
586 trace_qcow2_writev_start_part(qemu_coroutine_self());
587 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
588 n_end
= index_in_cluster
+ remaining_sectors
;
589 if (s
->crypt_method
&&
590 n_end
> QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
) {
591 n_end
= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
;
594 ret
= qcow2_alloc_cluster_offset(bs
, sector_num
<< 9,
595 index_in_cluster
, n_end
, &cur_nr_sectors
, &l2meta
);
600 cluster_offset
= l2meta
.cluster_offset
;
601 assert((cluster_offset
& 511) == 0);
603 qemu_iovec_reset(&hd_qiov
);
604 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
605 cur_nr_sectors
* 512);
607 if (s
->crypt_method
) {
609 cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
*
613 assert(hd_qiov
.size
<=
614 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
615 qemu_iovec_to_buffer(&hd_qiov
, cluster_data
);
617 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
618 cluster_data
, cur_nr_sectors
, 1, &s
->aes_encrypt_key
);
620 qemu_iovec_reset(&hd_qiov
);
621 qemu_iovec_add(&hd_qiov
, cluster_data
,
622 cur_nr_sectors
* 512);
625 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
626 qemu_co_mutex_unlock(&s
->lock
);
627 trace_qcow2_writev_data(qemu_coroutine_self(),
628 (cluster_offset
>> 9) + index_in_cluster
);
629 ret
= bdrv_co_writev(bs
->file
,
630 (cluster_offset
>> 9) + index_in_cluster
,
631 cur_nr_sectors
, &hd_qiov
);
632 qemu_co_mutex_lock(&s
->lock
);
637 ret
= qcow2_alloc_cluster_link_l2(bs
, &l2meta
);
642 run_dependent_requests(s
, &l2meta
);
644 remaining_sectors
-= cur_nr_sectors
;
645 sector_num
+= cur_nr_sectors
;
646 bytes_done
+= cur_nr_sectors
* 512;
647 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_nr_sectors
);
652 run_dependent_requests(s
, &l2meta
);
654 qemu_co_mutex_unlock(&s
->lock
);
656 qemu_iovec_destroy(&hd_qiov
);
657 qemu_vfree(cluster_data
);
658 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
663 static void qcow2_close(BlockDriverState
*bs
)
665 BDRVQcowState
*s
= bs
->opaque
;
668 qcow2_cache_flush(bs
, s
->l2_table_cache
);
669 qcow2_cache_flush(bs
, s
->refcount_block_cache
);
671 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
672 qcow2_cache_destroy(bs
, s
->refcount_block_cache
);
674 cleanup_unknown_header_ext(bs
);
675 g_free(s
->cluster_cache
);
676 qemu_vfree(s
->cluster_data
);
677 qcow2_refcount_close(bs
);
678 qcow2_free_snapshots(bs
);
681 static void qcow2_invalidate_cache(BlockDriverState
*bs
)
683 BDRVQcowState
*s
= bs
->opaque
;
684 int flags
= s
->flags
;
685 AES_KEY aes_encrypt_key
;
686 AES_KEY aes_decrypt_key
;
687 uint32_t crypt_method
= 0;
690 * Backing files are read-only which makes all of their metadata immutable,
691 * that means we don't have to worry about reopening them here.
694 if (s
->crypt_method
) {
695 crypt_method
= s
->crypt_method
;
696 memcpy(&aes_encrypt_key
, &s
->aes_encrypt_key
, sizeof(aes_encrypt_key
));
697 memcpy(&aes_decrypt_key
, &s
->aes_decrypt_key
, sizeof(aes_decrypt_key
));
702 memset(s
, 0, sizeof(BDRVQcowState
));
703 qcow2_open(bs
, flags
);
706 s
->crypt_method
= crypt_method
;
707 memcpy(&s
->aes_encrypt_key
, &aes_encrypt_key
, sizeof(aes_encrypt_key
));
708 memcpy(&s
->aes_decrypt_key
, &aes_decrypt_key
, sizeof(aes_decrypt_key
));
712 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
713 size_t len
, size_t buflen
)
715 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
716 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
718 if (buflen
< ext_len
) {
722 *ext_backing_fmt
= (QCowExtension
) {
723 .magic
= cpu_to_be32(magic
),
724 .len
= cpu_to_be32(len
),
726 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
732 * Updates the qcow2 header, including the variable length parts of it, i.e.
733 * the backing file name and all extensions. qcow2 was not designed to allow
734 * such changes, so if we run out of space (we can only use the first cluster)
735 * this function may fail.
737 * Returns 0 on success, -errno in error cases.
739 int qcow2_update_header(BlockDriverState
*bs
)
741 BDRVQcowState
*s
= bs
->opaque
;
744 size_t buflen
= s
->cluster_size
;
747 uint32_t refcount_table_clusters
;
748 Qcow2UnknownHeaderExtension
*uext
;
750 buf
= qemu_blockalign(bs
, buflen
);
751 memset(buf
, 0, s
->cluster_size
);
753 /* Header structure */
754 header
= (QCowHeader
*) buf
;
756 if (buflen
< sizeof(*header
)) {
761 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
762 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
764 *header
= (QCowHeader
) {
765 .magic
= cpu_to_be32(QCOW_MAGIC
),
766 .version
= cpu_to_be32(QCOW_VERSION
),
767 .backing_file_offset
= 0,
768 .backing_file_size
= 0,
769 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
770 .size
= cpu_to_be64(total_size
),
771 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
772 .l1_size
= cpu_to_be32(s
->l1_size
),
773 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
774 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
775 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
776 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
777 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
780 buf
+= sizeof(*header
);
781 buflen
-= sizeof(*header
);
783 /* Backing file format header extension */
784 if (*bs
->backing_format
) {
785 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
786 bs
->backing_format
, strlen(bs
->backing_format
),
796 /* Keep unknown header extensions */
797 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
798 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
807 /* End of header extensions */
808 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
816 /* Backing file name */
817 if (*bs
->backing_file
) {
818 size_t backing_file_len
= strlen(bs
->backing_file
);
820 if (buflen
< backing_file_len
) {
825 strncpy(buf
, bs
->backing_file
, buflen
);
827 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
828 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
831 /* Write the new header */
832 ret
= bdrv_pwrite(bs
->file
, 0, header
, s
->cluster_size
);
843 static int qcow2_change_backing_file(BlockDriverState
*bs
,
844 const char *backing_file
, const char *backing_fmt
)
846 /* Backing file format doesn't make sense without a backing file */
847 if (backing_fmt
&& !backing_file
) {
851 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
852 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
854 return qcow2_update_header(bs
);
857 static int preallocate(BlockDriverState
*bs
)
865 nb_sectors
= bdrv_getlength(bs
) >> 9;
867 qemu_co_queue_init(&meta
.dependent_requests
);
868 meta
.cluster_offset
= 0;
871 num
= MIN(nb_sectors
, INT_MAX
>> 9);
872 ret
= qcow2_alloc_cluster_offset(bs
, offset
, 0, num
, &num
, &meta
);
877 ret
= qcow2_alloc_cluster_link_l2(bs
, &meta
);
879 qcow2_free_any_clusters(bs
, meta
.cluster_offset
, meta
.nb_clusters
);
883 /* There are no dependent requests, but we need to remove our request
884 * from the list of in-flight requests */
885 run_dependent_requests(bs
->opaque
, &meta
);
887 /* TODO Preallocate data if requested */
894 * It is expected that the image file is large enough to actually contain
895 * all of the allocated clusters (otherwise we get failing reads after
896 * EOF). Extend the image to the last allocated sector.
898 if (meta
.cluster_offset
!= 0) {
901 ret
= bdrv_write(bs
->file
, (meta
.cluster_offset
>> 9) + num
- 1, buf
, 1);
910 static int qcow2_create2(const char *filename
, int64_t total_size
,
911 const char *backing_file
, const char *backing_format
,
912 int flags
, size_t cluster_size
, int prealloc
,
913 QEMUOptionParameter
*options
)
915 /* Calculate cluster_bits */
917 cluster_bits
= ffs(cluster_size
) - 1;
918 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
919 (1 << cluster_bits
) != cluster_size
)
922 "Cluster size must be a power of two between %d and %dk",
923 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
928 * Open the image file and write a minimal qcow2 header.
930 * We keep things simple and start with a zero-sized image. We also
931 * do without refcount blocks or a L1 table for now. We'll fix the
932 * inconsistency later.
934 * We do need a refcount table because growing the refcount table means
935 * allocating two new refcount blocks - the seconds of which would be at
936 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
937 * size for any qcow2 image.
939 BlockDriverState
* bs
;
941 uint8_t* refcount_table
;
944 ret
= bdrv_create_file(filename
, options
);
949 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDWR
);
954 /* Write the header */
955 memset(&header
, 0, sizeof(header
));
956 header
.magic
= cpu_to_be32(QCOW_MAGIC
);
957 header
.version
= cpu_to_be32(QCOW_VERSION
);
958 header
.cluster_bits
= cpu_to_be32(cluster_bits
);
959 header
.size
= cpu_to_be64(0);
960 header
.l1_table_offset
= cpu_to_be64(0);
961 header
.l1_size
= cpu_to_be32(0);
962 header
.refcount_table_offset
= cpu_to_be64(cluster_size
);
963 header
.refcount_table_clusters
= cpu_to_be32(1);
965 if (flags
& BLOCK_FLAG_ENCRYPT
) {
966 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_AES
);
968 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
971 ret
= bdrv_pwrite(bs
, 0, &header
, sizeof(header
));
976 /* Write an empty refcount table */
977 refcount_table
= g_malloc0(cluster_size
);
978 ret
= bdrv_pwrite(bs
, cluster_size
, refcount_table
, cluster_size
);
979 g_free(refcount_table
);
988 * And now open the image and make it consistent first (i.e. increase the
989 * refcount of the cluster that is occupied by the header and the refcount
992 BlockDriver
* drv
= bdrv_find_format("qcow2");
994 ret
= bdrv_open(bs
, filename
,
995 BDRV_O_RDWR
| BDRV_O_CACHE_WB
| BDRV_O_NO_FLUSH
, drv
);
1000 ret
= qcow2_alloc_clusters(bs
, 2 * cluster_size
);
1004 } else if (ret
!= 0) {
1005 error_report("Huh, first cluster in empty image is already in use?");
1009 /* Okay, now that we have a valid image, let's give it the right size */
1010 ret
= bdrv_truncate(bs
, total_size
* BDRV_SECTOR_SIZE
);
1015 /* Want a backing file? There you go.*/
1017 ret
= bdrv_change_backing_file(bs
, backing_file
, backing_format
);
1023 /* And if we're supposed to preallocate metadata, do that now */
1025 ret
= preallocate(bs
);
1037 static int qcow2_create(const char *filename
, QEMUOptionParameter
*options
)
1039 const char *backing_file
= NULL
;
1040 const char *backing_fmt
= NULL
;
1041 uint64_t sectors
= 0;
1043 size_t cluster_size
= DEFAULT_CLUSTER_SIZE
;
1046 /* Read out options */
1047 while (options
&& options
->name
) {
1048 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1049 sectors
= options
->value
.n
/ 512;
1050 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
1051 backing_file
= options
->value
.s
;
1052 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FMT
)) {
1053 backing_fmt
= options
->value
.s
;
1054 } else if (!strcmp(options
->name
, BLOCK_OPT_ENCRYPT
)) {
1055 flags
|= options
->value
.n
? BLOCK_FLAG_ENCRYPT
: 0;
1056 } else if (!strcmp(options
->name
, BLOCK_OPT_CLUSTER_SIZE
)) {
1057 if (options
->value
.n
) {
1058 cluster_size
= options
->value
.n
;
1060 } else if (!strcmp(options
->name
, BLOCK_OPT_PREALLOC
)) {
1061 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "off")) {
1063 } else if (!strcmp(options
->value
.s
, "metadata")) {
1066 fprintf(stderr
, "Invalid preallocation mode: '%s'\n",
1074 if (backing_file
&& prealloc
) {
1075 fprintf(stderr
, "Backing file and preallocation cannot be used at "
1080 return qcow2_create2(filename
, sectors
, backing_file
, backing_fmt
, flags
,
1081 cluster_size
, prealloc
, options
);
1084 static int qcow2_make_empty(BlockDriverState
*bs
)
1087 /* XXX: not correct */
1088 BDRVQcowState
*s
= bs
->opaque
;
1089 uint32_t l1_length
= s
->l1_size
* sizeof(uint64_t);
1092 memset(s
->l1_table
, 0, l1_length
);
1093 if (bdrv_pwrite(bs
->file
, s
->l1_table_offset
, s
->l1_table
, l1_length
) < 0)
1095 ret
= bdrv_truncate(bs
->file
, s
->l1_table_offset
+ l1_length
);
1104 static coroutine_fn
int qcow2_co_discard(BlockDriverState
*bs
,
1105 int64_t sector_num
, int nb_sectors
)
1108 BDRVQcowState
*s
= bs
->opaque
;
1110 qemu_co_mutex_lock(&s
->lock
);
1111 ret
= qcow2_discard_clusters(bs
, sector_num
<< BDRV_SECTOR_BITS
,
1113 qemu_co_mutex_unlock(&s
->lock
);
1117 static int qcow2_truncate(BlockDriverState
*bs
, int64_t offset
)
1119 BDRVQcowState
*s
= bs
->opaque
;
1120 int ret
, new_l1_size
;
1123 error_report("The new size must be a multiple of 512");
1127 /* cannot proceed if image has snapshots */
1128 if (s
->nb_snapshots
) {
1129 error_report("Can't resize an image which has snapshots");
1133 /* shrinking is currently not supported */
1134 if (offset
< bs
->total_sectors
* 512) {
1135 error_report("qcow2 doesn't support shrinking images yet");
1139 new_l1_size
= size_to_l1(s
, offset
);
1140 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
1145 /* write updated header.size */
1146 offset
= cpu_to_be64(offset
);
1147 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
1148 &offset
, sizeof(uint64_t));
1153 s
->l1_vm_state_index
= new_l1_size
;
1157 /* XXX: put compressed sectors first, then all the cluster aligned
1158 tables to avoid losing bytes in alignment */
1159 static int qcow2_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1160 const uint8_t *buf
, int nb_sectors
)
1162 BDRVQcowState
*s
= bs
->opaque
;
1166 uint64_t cluster_offset
;
1168 if (nb_sectors
== 0) {
1169 /* align end of file to a sector boundary to ease reading with
1170 sector based I/Os */
1171 cluster_offset
= bdrv_getlength(bs
->file
);
1172 cluster_offset
= (cluster_offset
+ 511) & ~511;
1173 bdrv_truncate(bs
->file
, cluster_offset
);
1177 if (nb_sectors
!= s
->cluster_sectors
)
1180 out_buf
= g_malloc(s
->cluster_size
+ (s
->cluster_size
/ 1000) + 128);
1182 /* best compression, small window, no zlib header */
1183 memset(&strm
, 0, sizeof(strm
));
1184 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
1186 9, Z_DEFAULT_STRATEGY
);
1192 strm
.avail_in
= s
->cluster_size
;
1193 strm
.next_in
= (uint8_t *)buf
;
1194 strm
.avail_out
= s
->cluster_size
;
1195 strm
.next_out
= out_buf
;
1197 ret
= deflate(&strm
, Z_FINISH
);
1198 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
1203 out_len
= strm
.next_out
- out_buf
;
1207 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
1208 /* could not compress: write normal cluster */
1209 ret
= bdrv_write(bs
, sector_num
, buf
, s
->cluster_sectors
);
1214 cluster_offset
= qcow2_alloc_compressed_cluster_offset(bs
,
1215 sector_num
<< 9, out_len
);
1216 if (!cluster_offset
) {
1220 cluster_offset
&= s
->cluster_offset_mask
;
1221 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_COMPRESSED
);
1222 ret
= bdrv_pwrite(bs
->file
, cluster_offset
, out_buf
, out_len
);
1234 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
1236 BDRVQcowState
*s
= bs
->opaque
;
1239 qemu_co_mutex_lock(&s
->lock
);
1240 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
1242 qemu_co_mutex_unlock(&s
->lock
);
1246 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
1248 qemu_co_mutex_unlock(&s
->lock
);
1251 qemu_co_mutex_unlock(&s
->lock
);
1256 static coroutine_fn
int qcow2_co_flush_to_disk(BlockDriverState
*bs
)
1258 return bdrv_co_flush(bs
->file
);
1261 static int64_t qcow2_vm_state_offset(BDRVQcowState
*s
)
1263 return (int64_t)s
->l1_vm_state_index
<< (s
->cluster_bits
+ s
->l2_bits
);
1266 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1268 BDRVQcowState
*s
= bs
->opaque
;
1269 bdi
->cluster_size
= s
->cluster_size
;
1270 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
1275 static int qcow2_check(BlockDriverState
*bs
, BdrvCheckResult
*result
)
1277 return qcow2_check_refcounts(bs
, result
);
1281 static void dump_refcounts(BlockDriverState
*bs
)
1283 BDRVQcowState
*s
= bs
->opaque
;
1284 int64_t nb_clusters
, k
, k1
, size
;
1287 size
= bdrv_getlength(bs
->file
);
1288 nb_clusters
= size_to_clusters(s
, size
);
1289 for(k
= 0; k
< nb_clusters
;) {
1291 refcount
= get_refcount(bs
, k
);
1293 while (k
< nb_clusters
&& get_refcount(bs
, k
) == refcount
)
1295 printf("%" PRId64
": refcount=%d nb=%" PRId64
"\n", k
, refcount
,
1301 static int qcow2_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1302 int64_t pos
, int size
)
1304 BDRVQcowState
*s
= bs
->opaque
;
1305 int growable
= bs
->growable
;
1308 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
1310 ret
= bdrv_pwrite(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1311 bs
->growable
= growable
;
1316 static int qcow2_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1317 int64_t pos
, int size
)
1319 BDRVQcowState
*s
= bs
->opaque
;
1320 int growable
= bs
->growable
;
1323 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
1325 ret
= bdrv_pread(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1326 bs
->growable
= growable
;
1331 static QEMUOptionParameter qcow2_create_options
[] = {
1333 .name
= BLOCK_OPT_SIZE
,
1335 .help
= "Virtual disk size"
1338 .name
= BLOCK_OPT_BACKING_FILE
,
1340 .help
= "File name of a base image"
1343 .name
= BLOCK_OPT_BACKING_FMT
,
1345 .help
= "Image format of the base image"
1348 .name
= BLOCK_OPT_ENCRYPT
,
1350 .help
= "Encrypt the image"
1353 .name
= BLOCK_OPT_CLUSTER_SIZE
,
1355 .help
= "qcow2 cluster size",
1356 .value
= { .n
= DEFAULT_CLUSTER_SIZE
},
1359 .name
= BLOCK_OPT_PREALLOC
,
1361 .help
= "Preallocation mode (allowed values: off, metadata)"
1366 static BlockDriver bdrv_qcow2
= {
1367 .format_name
= "qcow2",
1368 .instance_size
= sizeof(BDRVQcowState
),
1369 .bdrv_probe
= qcow2_probe
,
1370 .bdrv_open
= qcow2_open
,
1371 .bdrv_close
= qcow2_close
,
1372 .bdrv_create
= qcow2_create
,
1373 .bdrv_co_is_allocated
= qcow2_co_is_allocated
,
1374 .bdrv_set_key
= qcow2_set_key
,
1375 .bdrv_make_empty
= qcow2_make_empty
,
1377 .bdrv_co_readv
= qcow2_co_readv
,
1378 .bdrv_co_writev
= qcow2_co_writev
,
1379 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
1380 .bdrv_co_flush_to_disk
= qcow2_co_flush_to_disk
,
1382 .bdrv_co_discard
= qcow2_co_discard
,
1383 .bdrv_truncate
= qcow2_truncate
,
1384 .bdrv_write_compressed
= qcow2_write_compressed
,
1386 .bdrv_snapshot_create
= qcow2_snapshot_create
,
1387 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
1388 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
1389 .bdrv_snapshot_list
= qcow2_snapshot_list
,
1390 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
1391 .bdrv_get_info
= qcow2_get_info
,
1393 .bdrv_save_vmstate
= qcow2_save_vmstate
,
1394 .bdrv_load_vmstate
= qcow2_load_vmstate
,
1396 .bdrv_change_backing_file
= qcow2_change_backing_file
,
1398 .bdrv_invalidate_cache
= qcow2_invalidate_cache
,
1400 .create_options
= qcow2_create_options
,
1401 .bdrv_check
= qcow2_check
,
1404 static void bdrv_qcow2_init(void)
1406 bdrv_register(&bdrv_qcow2
);
1409 block_init(bdrv_qcow2_init
);