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
57 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
59 static int qcow2_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
61 const QCowHeader
*cow_header
= (const void *)buf
;
63 if (buf_size
>= sizeof(QCowHeader
) &&
64 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
65 be32_to_cpu(cow_header
->version
) >= 2)
73 * read qcow2 extension and fill bs
74 * start reading from start_offset
75 * finish reading upon magic of value 0 or when end_offset reached
76 * unknown magic is skipped (future extension this version knows nothing about)
77 * return 0 upon success, non-0 otherwise
79 static int qcow2_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
80 uint64_t end_offset
, void **p_feature_table
)
82 BDRVQcowState
*s
= bs
->opaque
;
88 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
90 offset
= start_offset
;
91 while (offset
< end_offset
) {
95 if (offset
> s
->cluster_size
)
96 printf("qcow2_read_extension: suspicious offset %lu\n", offset
);
98 printf("attempting to read extended header in offset %lu\n", offset
);
101 if (bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
)) != sizeof(ext
)) {
102 fprintf(stderr
, "qcow2_read_extension: ERROR: "
103 "pread fail from offset %" PRIu64
"\n",
107 be32_to_cpus(&ext
.magic
);
108 be32_to_cpus(&ext
.len
);
109 offset
+= sizeof(ext
);
111 printf("ext.magic = 0x%x\n", ext
.magic
);
113 if (ext
.len
> end_offset
- offset
) {
114 error_report("Header extension too large");
119 case QCOW2_EXT_MAGIC_END
:
122 case QCOW2_EXT_MAGIC_BACKING_FORMAT
:
123 if (ext
.len
>= sizeof(bs
->backing_format
)) {
124 fprintf(stderr
, "ERROR: ext_backing_format: len=%u too large"
126 ext
.len
, sizeof(bs
->backing_format
));
129 if (bdrv_pread(bs
->file
, offset
, bs
->backing_format
,
132 bs
->backing_format
[ext
.len
] = '\0';
134 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
138 case QCOW2_EXT_MAGIC_FEATURE_TABLE
:
139 if (p_feature_table
!= NULL
) {
140 void* feature_table
= g_malloc0(ext
.len
+ 2 * sizeof(Qcow2Feature
));
141 ret
= bdrv_pread(bs
->file
, offset
, feature_table
, ext
.len
);
146 *p_feature_table
= feature_table
;
151 /* unknown magic - save it in case we need to rewrite the header */
153 Qcow2UnknownHeaderExtension
*uext
;
155 uext
= g_malloc0(sizeof(*uext
) + ext
.len
);
156 uext
->magic
= ext
.magic
;
158 QLIST_INSERT_HEAD(&s
->unknown_header_ext
, uext
, next
);
160 ret
= bdrv_pread(bs
->file
, offset
, uext
->data
, uext
->len
);
168 offset
+= ((ext
.len
+ 7) & ~7);
174 static void cleanup_unknown_header_ext(BlockDriverState
*bs
)
176 BDRVQcowState
*s
= bs
->opaque
;
177 Qcow2UnknownHeaderExtension
*uext
, *next
;
179 QLIST_FOREACH_SAFE(uext
, &s
->unknown_header_ext
, next
, next
) {
180 QLIST_REMOVE(uext
, next
);
185 static void GCC_FMT_ATTR(2, 3) report_unsupported(BlockDriverState
*bs
,
186 const char *fmt
, ...)
192 vsnprintf(msg
, sizeof(msg
), fmt
, ap
);
195 qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE
,
196 bs
->device_name
, "qcow2", msg
);
199 static void report_unsupported_feature(BlockDriverState
*bs
,
200 Qcow2Feature
*table
, uint64_t mask
)
202 while (table
&& table
->name
[0] != '\0') {
203 if (table
->type
== QCOW2_FEAT_TYPE_INCOMPATIBLE
) {
204 if (mask
& (1 << table
->bit
)) {
205 report_unsupported(bs
, "%.46s",table
->name
);
206 mask
&= ~(1 << table
->bit
);
213 report_unsupported(bs
, "Unknown incompatible feature: %" PRIx64
, mask
);
217 static int qcow2_open(BlockDriverState
*bs
, int flags
)
219 BDRVQcowState
*s
= bs
->opaque
;
224 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
228 be32_to_cpus(&header
.magic
);
229 be32_to_cpus(&header
.version
);
230 be64_to_cpus(&header
.backing_file_offset
);
231 be32_to_cpus(&header
.backing_file_size
);
232 be64_to_cpus(&header
.size
);
233 be32_to_cpus(&header
.cluster_bits
);
234 be32_to_cpus(&header
.crypt_method
);
235 be64_to_cpus(&header
.l1_table_offset
);
236 be32_to_cpus(&header
.l1_size
);
237 be64_to_cpus(&header
.refcount_table_offset
);
238 be32_to_cpus(&header
.refcount_table_clusters
);
239 be64_to_cpus(&header
.snapshots_offset
);
240 be32_to_cpus(&header
.nb_snapshots
);
242 if (header
.magic
!= QCOW_MAGIC
) {
246 if (header
.version
< 2 || header
.version
> 3) {
247 report_unsupported(bs
, "QCOW version %d", header
.version
);
252 s
->qcow_version
= header
.version
;
254 /* Initialise version 3 header fields */
255 if (header
.version
== 2) {
256 header
.incompatible_features
= 0;
257 header
.compatible_features
= 0;
258 header
.autoclear_features
= 0;
259 header
.refcount_order
= 4;
260 header
.header_length
= 72;
262 be64_to_cpus(&header
.incompatible_features
);
263 be64_to_cpus(&header
.compatible_features
);
264 be64_to_cpus(&header
.autoclear_features
);
265 be32_to_cpus(&header
.refcount_order
);
266 be32_to_cpus(&header
.header_length
);
269 if (header
.header_length
> sizeof(header
)) {
270 s
->unknown_header_fields_size
= header
.header_length
- sizeof(header
);
271 s
->unknown_header_fields
= g_malloc(s
->unknown_header_fields_size
);
272 ret
= bdrv_pread(bs
->file
, sizeof(header
), s
->unknown_header_fields
,
273 s
->unknown_header_fields_size
);
279 if (header
.backing_file_offset
) {
280 ext_end
= header
.backing_file_offset
;
282 ext_end
= 1 << header
.cluster_bits
;
285 /* Handle feature bits */
286 s
->incompatible_features
= header
.incompatible_features
;
287 s
->compatible_features
= header
.compatible_features
;
288 s
->autoclear_features
= header
.autoclear_features
;
290 if (s
->incompatible_features
!= 0) {
291 void *feature_table
= NULL
;
292 qcow2_read_extensions(bs
, header
.header_length
, ext_end
,
294 report_unsupported_feature(bs
, feature_table
,
295 s
->incompatible_features
);
300 /* Check support for various header values */
301 if (header
.refcount_order
!= 4) {
302 report_unsupported(bs
, "%d bit reference counts",
303 1 << header
.refcount_order
);
308 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
309 header
.cluster_bits
> MAX_CLUSTER_BITS
) {
313 if (header
.crypt_method
> QCOW_CRYPT_AES
) {
317 s
->crypt_method_header
= header
.crypt_method
;
318 if (s
->crypt_method_header
) {
321 s
->cluster_bits
= header
.cluster_bits
;
322 s
->cluster_size
= 1 << s
->cluster_bits
;
323 s
->cluster_sectors
= 1 << (s
->cluster_bits
- 9);
324 s
->l2_bits
= s
->cluster_bits
- 3; /* L2 is always one cluster */
325 s
->l2_size
= 1 << s
->l2_bits
;
326 bs
->total_sectors
= header
.size
/ 512;
327 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
328 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
329 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
330 s
->refcount_table_offset
= header
.refcount_table_offset
;
331 s
->refcount_table_size
=
332 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
334 s
->snapshots_offset
= header
.snapshots_offset
;
335 s
->nb_snapshots
= header
.nb_snapshots
;
337 /* read the level 1 table */
338 s
->l1_size
= header
.l1_size
;
339 s
->l1_vm_state_index
= size_to_l1(s
, header
.size
);
340 /* the L1 table must contain at least enough entries to put
342 if (s
->l1_size
< s
->l1_vm_state_index
) {
346 s
->l1_table_offset
= header
.l1_table_offset
;
347 if (s
->l1_size
> 0) {
348 s
->l1_table
= g_malloc0(
349 align_offset(s
->l1_size
* sizeof(uint64_t), 512));
350 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
351 s
->l1_size
* sizeof(uint64_t));
355 for(i
= 0;i
< s
->l1_size
; i
++) {
356 be64_to_cpus(&s
->l1_table
[i
]);
360 /* alloc L2 table/refcount block cache */
361 s
->l2_table_cache
= qcow2_cache_create(bs
, L2_CACHE_SIZE
);
362 s
->refcount_block_cache
= qcow2_cache_create(bs
, REFCOUNT_CACHE_SIZE
);
364 s
->cluster_cache
= g_malloc(s
->cluster_size
);
365 /* one more sector for decompressed data alignment */
366 s
->cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
368 s
->cluster_cache_offset
= -1;
371 ret
= qcow2_refcount_init(bs
);
376 QLIST_INIT(&s
->cluster_allocs
);
378 /* read qcow2 extensions */
379 if (qcow2_read_extensions(bs
, header
.header_length
, ext_end
, NULL
)) {
384 /* read the backing file name */
385 if (header
.backing_file_offset
!= 0) {
386 len
= header
.backing_file_size
;
390 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
391 bs
->backing_file
, len
);
395 bs
->backing_file
[len
] = '\0';
398 ret
= qcow2_read_snapshots(bs
);
403 /* Clear unknown autoclear feature bits */
404 if (!bs
->read_only
&& s
->autoclear_features
!= 0) {
405 s
->autoclear_features
= 0;
406 ret
= qcow2_update_header(bs
);
412 /* Initialise locks */
413 qemu_co_mutex_init(&s
->lock
);
417 BdrvCheckResult result
= {0};
418 qcow2_check_refcounts(bs
, &result
);
424 g_free(s
->unknown_header_fields
);
425 cleanup_unknown_header_ext(bs
);
426 qcow2_free_snapshots(bs
);
427 qcow2_refcount_close(bs
);
429 if (s
->l2_table_cache
) {
430 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
432 g_free(s
->cluster_cache
);
433 qemu_vfree(s
->cluster_data
);
437 static int qcow2_set_key(BlockDriverState
*bs
, const char *key
)
439 BDRVQcowState
*s
= bs
->opaque
;
443 memset(keybuf
, 0, 16);
447 /* XXX: we could compress the chars to 7 bits to increase
449 for(i
= 0;i
< len
;i
++) {
452 s
->crypt_method
= s
->crypt_method_header
;
454 if (AES_set_encrypt_key(keybuf
, 128, &s
->aes_encrypt_key
) != 0)
456 if (AES_set_decrypt_key(keybuf
, 128, &s
->aes_decrypt_key
) != 0)
466 AES_encrypt(in
, tmp
, &s
->aes_encrypt_key
);
467 AES_decrypt(tmp
, out
, &s
->aes_decrypt_key
);
468 for(i
= 0; i
< 16; i
++)
469 printf(" %02x", tmp
[i
]);
471 for(i
= 0; i
< 16; i
++)
472 printf(" %02x", out
[i
]);
479 static int coroutine_fn
qcow2_co_is_allocated(BlockDriverState
*bs
,
480 int64_t sector_num
, int nb_sectors
, int *pnum
)
482 BDRVQcowState
*s
= bs
->opaque
;
483 uint64_t cluster_offset
;
487 /* FIXME We can get errors here, but the bdrv_co_is_allocated interface
488 * can't pass them on today */
489 qemu_co_mutex_lock(&s
->lock
);
490 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9, pnum
, &cluster_offset
);
491 qemu_co_mutex_unlock(&s
->lock
);
496 return (cluster_offset
!= 0);
499 /* handle reading after the end of the backing file */
500 int qcow2_backing_read1(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
501 int64_t sector_num
, int nb_sectors
)
504 if ((sector_num
+ nb_sectors
) <= bs
->total_sectors
)
506 if (sector_num
>= bs
->total_sectors
)
509 n1
= bs
->total_sectors
- sector_num
;
511 qemu_iovec_memset_skip(qiov
, 0, 512 * (nb_sectors
- n1
), 512 * n1
);
516 static coroutine_fn
int qcow2_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
517 int remaining_sectors
, QEMUIOVector
*qiov
)
519 BDRVQcowState
*s
= bs
->opaque
;
520 int index_in_cluster
, n1
;
522 int cur_nr_sectors
; /* number of sectors in current iteration */
523 uint64_t cluster_offset
= 0;
524 uint64_t bytes_done
= 0;
525 QEMUIOVector hd_qiov
;
526 uint8_t *cluster_data
= NULL
;
528 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
530 qemu_co_mutex_lock(&s
->lock
);
532 while (remaining_sectors
!= 0) {
534 /* prepare next request */
535 cur_nr_sectors
= remaining_sectors
;
536 if (s
->crypt_method
) {
537 cur_nr_sectors
= MIN(cur_nr_sectors
,
538 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
541 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9,
542 &cur_nr_sectors
, &cluster_offset
);
547 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
549 qemu_iovec_reset(&hd_qiov
);
550 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
551 cur_nr_sectors
* 512);
554 case QCOW2_CLUSTER_UNALLOCATED
:
556 if (bs
->backing_hd
) {
557 /* read from the base image */
558 n1
= qcow2_backing_read1(bs
->backing_hd
, &hd_qiov
,
559 sector_num
, cur_nr_sectors
);
561 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
562 qemu_co_mutex_unlock(&s
->lock
);
563 ret
= bdrv_co_readv(bs
->backing_hd
, sector_num
,
565 qemu_co_mutex_lock(&s
->lock
);
571 /* Note: in this case, no need to wait */
572 qemu_iovec_memset(&hd_qiov
, 0, 512 * cur_nr_sectors
);
576 case QCOW2_CLUSTER_ZERO
:
577 if (s
->qcow_version
< 3) {
581 qemu_iovec_memset(&hd_qiov
, 0, 512 * cur_nr_sectors
);
584 case QCOW2_CLUSTER_COMPRESSED
:
585 /* add AIO support for compressed blocks ? */
586 ret
= qcow2_decompress_cluster(bs
, cluster_offset
);
591 qemu_iovec_from_buffer(&hd_qiov
,
592 s
->cluster_cache
+ index_in_cluster
* 512,
593 512 * cur_nr_sectors
);
596 case QCOW2_CLUSTER_NORMAL
:
597 if ((cluster_offset
& 511) != 0) {
602 if (s
->crypt_method
) {
604 * For encrypted images, read everything into a temporary
605 * contiguous buffer on which the AES functions can work.
609 qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
612 assert(cur_nr_sectors
<=
613 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
614 qemu_iovec_reset(&hd_qiov
);
615 qemu_iovec_add(&hd_qiov
, cluster_data
,
616 512 * cur_nr_sectors
);
619 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
620 qemu_co_mutex_unlock(&s
->lock
);
621 ret
= bdrv_co_readv(bs
->file
,
622 (cluster_offset
>> 9) + index_in_cluster
,
623 cur_nr_sectors
, &hd_qiov
);
624 qemu_co_mutex_lock(&s
->lock
);
628 if (s
->crypt_method
) {
629 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
630 cluster_data
, cur_nr_sectors
, 0, &s
->aes_decrypt_key
);
631 qemu_iovec_reset(&hd_qiov
);
632 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
633 cur_nr_sectors
* 512);
634 qemu_iovec_from_buffer(&hd_qiov
, cluster_data
,
635 512 * cur_nr_sectors
);
640 g_assert_not_reached();
645 remaining_sectors
-= cur_nr_sectors
;
646 sector_num
+= cur_nr_sectors
;
647 bytes_done
+= cur_nr_sectors
* 512;
652 qemu_co_mutex_unlock(&s
->lock
);
654 qemu_iovec_destroy(&hd_qiov
);
655 qemu_vfree(cluster_data
);
660 static void run_dependent_requests(BDRVQcowState
*s
, QCowL2Meta
*m
)
662 /* Take the request off the list of running requests */
663 if (m
->nb_clusters
!= 0) {
664 QLIST_REMOVE(m
, next_in_flight
);
667 /* Restart all dependent requests */
668 if (!qemu_co_queue_empty(&m
->dependent_requests
)) {
669 qemu_co_mutex_unlock(&s
->lock
);
670 qemu_co_queue_restart_all(&m
->dependent_requests
);
671 qemu_co_mutex_lock(&s
->lock
);
675 static coroutine_fn
int qcow2_co_writev(BlockDriverState
*bs
,
677 int remaining_sectors
,
680 BDRVQcowState
*s
= bs
->opaque
;
681 int index_in_cluster
;
684 int cur_nr_sectors
; /* number of sectors in current iteration */
685 uint64_t cluster_offset
;
686 QEMUIOVector hd_qiov
;
687 uint64_t bytes_done
= 0;
688 uint8_t *cluster_data
= NULL
;
689 QCowL2Meta l2meta
= {
693 trace_qcow2_writev_start_req(qemu_coroutine_self(), sector_num
,
696 qemu_co_queue_init(&l2meta
.dependent_requests
);
698 qemu_iovec_init(&hd_qiov
, qiov
->niov
);
700 s
->cluster_cache_offset
= -1; /* disable compressed cache */
702 qemu_co_mutex_lock(&s
->lock
);
704 while (remaining_sectors
!= 0) {
706 trace_qcow2_writev_start_part(qemu_coroutine_self());
707 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
708 n_end
= index_in_cluster
+ remaining_sectors
;
709 if (s
->crypt_method
&&
710 n_end
> QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
) {
711 n_end
= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
;
714 ret
= qcow2_alloc_cluster_offset(bs
, sector_num
<< 9,
715 index_in_cluster
, n_end
, &cur_nr_sectors
, &l2meta
);
720 cluster_offset
= l2meta
.cluster_offset
;
721 assert((cluster_offset
& 511) == 0);
723 qemu_iovec_reset(&hd_qiov
);
724 qemu_iovec_copy(&hd_qiov
, qiov
, bytes_done
,
725 cur_nr_sectors
* 512);
727 if (s
->crypt_method
) {
729 cluster_data
= qemu_blockalign(bs
, QCOW_MAX_CRYPT_CLUSTERS
*
733 assert(hd_qiov
.size
<=
734 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
735 qemu_iovec_to_buffer(&hd_qiov
, cluster_data
);
737 qcow2_encrypt_sectors(s
, sector_num
, cluster_data
,
738 cluster_data
, cur_nr_sectors
, 1, &s
->aes_encrypt_key
);
740 qemu_iovec_reset(&hd_qiov
);
741 qemu_iovec_add(&hd_qiov
, cluster_data
,
742 cur_nr_sectors
* 512);
745 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
746 qemu_co_mutex_unlock(&s
->lock
);
747 trace_qcow2_writev_data(qemu_coroutine_self(),
748 (cluster_offset
>> 9) + index_in_cluster
);
749 ret
= bdrv_co_writev(bs
->file
,
750 (cluster_offset
>> 9) + index_in_cluster
,
751 cur_nr_sectors
, &hd_qiov
);
752 qemu_co_mutex_lock(&s
->lock
);
757 ret
= qcow2_alloc_cluster_link_l2(bs
, &l2meta
);
762 run_dependent_requests(s
, &l2meta
);
764 remaining_sectors
-= cur_nr_sectors
;
765 sector_num
+= cur_nr_sectors
;
766 bytes_done
+= cur_nr_sectors
* 512;
767 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_nr_sectors
);
772 run_dependent_requests(s
, &l2meta
);
774 qemu_co_mutex_unlock(&s
->lock
);
776 qemu_iovec_destroy(&hd_qiov
);
777 qemu_vfree(cluster_data
);
778 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret
);
783 static void qcow2_close(BlockDriverState
*bs
)
785 BDRVQcowState
*s
= bs
->opaque
;
788 qcow2_cache_flush(bs
, s
->l2_table_cache
);
789 qcow2_cache_flush(bs
, s
->refcount_block_cache
);
791 qcow2_cache_destroy(bs
, s
->l2_table_cache
);
792 qcow2_cache_destroy(bs
, s
->refcount_block_cache
);
794 g_free(s
->unknown_header_fields
);
795 cleanup_unknown_header_ext(bs
);
797 g_free(s
->cluster_cache
);
798 qemu_vfree(s
->cluster_data
);
799 qcow2_refcount_close(bs
);
800 qcow2_free_snapshots(bs
);
803 static void qcow2_invalidate_cache(BlockDriverState
*bs
)
805 BDRVQcowState
*s
= bs
->opaque
;
806 int flags
= s
->flags
;
807 AES_KEY aes_encrypt_key
;
808 AES_KEY aes_decrypt_key
;
809 uint32_t crypt_method
= 0;
812 * Backing files are read-only which makes all of their metadata immutable,
813 * that means we don't have to worry about reopening them here.
816 if (s
->crypt_method
) {
817 crypt_method
= s
->crypt_method
;
818 memcpy(&aes_encrypt_key
, &s
->aes_encrypt_key
, sizeof(aes_encrypt_key
));
819 memcpy(&aes_decrypt_key
, &s
->aes_decrypt_key
, sizeof(aes_decrypt_key
));
824 memset(s
, 0, sizeof(BDRVQcowState
));
825 qcow2_open(bs
, flags
);
828 s
->crypt_method
= crypt_method
;
829 memcpy(&s
->aes_encrypt_key
, &aes_encrypt_key
, sizeof(aes_encrypt_key
));
830 memcpy(&s
->aes_decrypt_key
, &aes_decrypt_key
, sizeof(aes_decrypt_key
));
834 static size_t header_ext_add(char *buf
, uint32_t magic
, const void *s
,
835 size_t len
, size_t buflen
)
837 QCowExtension
*ext_backing_fmt
= (QCowExtension
*) buf
;
838 size_t ext_len
= sizeof(QCowExtension
) + ((len
+ 7) & ~7);
840 if (buflen
< ext_len
) {
844 *ext_backing_fmt
= (QCowExtension
) {
845 .magic
= cpu_to_be32(magic
),
846 .len
= cpu_to_be32(len
),
848 memcpy(buf
+ sizeof(QCowExtension
), s
, len
);
854 * Updates the qcow2 header, including the variable length parts of it, i.e.
855 * the backing file name and all extensions. qcow2 was not designed to allow
856 * such changes, so if we run out of space (we can only use the first cluster)
857 * this function may fail.
859 * Returns 0 on success, -errno in error cases.
861 int qcow2_update_header(BlockDriverState
*bs
)
863 BDRVQcowState
*s
= bs
->opaque
;
866 size_t buflen
= s
->cluster_size
;
869 uint32_t refcount_table_clusters
;
870 size_t header_length
;
871 Qcow2UnknownHeaderExtension
*uext
;
873 buf
= qemu_blockalign(bs
, buflen
);
875 /* Header structure */
876 header
= (QCowHeader
*) buf
;
878 if (buflen
< sizeof(*header
)) {
883 header_length
= sizeof(*header
) + s
->unknown_header_fields_size
;
884 total_size
= bs
->total_sectors
* BDRV_SECTOR_SIZE
;
885 refcount_table_clusters
= s
->refcount_table_size
>> (s
->cluster_bits
- 3);
887 *header
= (QCowHeader
) {
888 /* Version 2 fields */
889 .magic
= cpu_to_be32(QCOW_MAGIC
),
890 .version
= cpu_to_be32(s
->qcow_version
),
891 .backing_file_offset
= 0,
892 .backing_file_size
= 0,
893 .cluster_bits
= cpu_to_be32(s
->cluster_bits
),
894 .size
= cpu_to_be64(total_size
),
895 .crypt_method
= cpu_to_be32(s
->crypt_method_header
),
896 .l1_size
= cpu_to_be32(s
->l1_size
),
897 .l1_table_offset
= cpu_to_be64(s
->l1_table_offset
),
898 .refcount_table_offset
= cpu_to_be64(s
->refcount_table_offset
),
899 .refcount_table_clusters
= cpu_to_be32(refcount_table_clusters
),
900 .nb_snapshots
= cpu_to_be32(s
->nb_snapshots
),
901 .snapshots_offset
= cpu_to_be64(s
->snapshots_offset
),
903 /* Version 3 fields */
904 .incompatible_features
= cpu_to_be64(s
->incompatible_features
),
905 .compatible_features
= cpu_to_be64(s
->compatible_features
),
906 .autoclear_features
= cpu_to_be64(s
->autoclear_features
),
907 .refcount_order
= cpu_to_be32(3 + REFCOUNT_SHIFT
),
908 .header_length
= cpu_to_be32(header_length
),
911 /* For older versions, write a shorter header */
912 switch (s
->qcow_version
) {
914 ret
= offsetof(QCowHeader
, incompatible_features
);
917 ret
= sizeof(*header
);
926 memset(buf
, 0, buflen
);
928 /* Preserve any unknown field in the header */
929 if (s
->unknown_header_fields_size
) {
930 if (buflen
< s
->unknown_header_fields_size
) {
935 memcpy(buf
, s
->unknown_header_fields
, s
->unknown_header_fields_size
);
936 buf
+= s
->unknown_header_fields_size
;
937 buflen
-= s
->unknown_header_fields_size
;
940 /* Backing file format header extension */
941 if (*bs
->backing_format
) {
942 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_BACKING_FORMAT
,
943 bs
->backing_format
, strlen(bs
->backing_format
),
954 Qcow2Feature features
[] = {
955 /* no feature defined yet */
958 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_FEATURE_TABLE
,
959 features
, sizeof(features
), buflen
);
966 /* Keep unknown header extensions */
967 QLIST_FOREACH(uext
, &s
->unknown_header_ext
, next
) {
968 ret
= header_ext_add(buf
, uext
->magic
, uext
->data
, uext
->len
, buflen
);
977 /* End of header extensions */
978 ret
= header_ext_add(buf
, QCOW2_EXT_MAGIC_END
, NULL
, 0, buflen
);
986 /* Backing file name */
987 if (*bs
->backing_file
) {
988 size_t backing_file_len
= strlen(bs
->backing_file
);
990 if (buflen
< backing_file_len
) {
995 strncpy(buf
, bs
->backing_file
, buflen
);
997 header
->backing_file_offset
= cpu_to_be64(buf
- ((char*) header
));
998 header
->backing_file_size
= cpu_to_be32(backing_file_len
);
1001 /* Write the new header */
1002 ret
= bdrv_pwrite(bs
->file
, 0, header
, s
->cluster_size
);
1013 static int qcow2_change_backing_file(BlockDriverState
*bs
,
1014 const char *backing_file
, const char *backing_fmt
)
1016 pstrcpy(bs
->backing_file
, sizeof(bs
->backing_file
), backing_file
?: "");
1017 pstrcpy(bs
->backing_format
, sizeof(bs
->backing_format
), backing_fmt
?: "");
1019 return qcow2_update_header(bs
);
1022 static int preallocate(BlockDriverState
*bs
)
1024 uint64_t nb_sectors
;
1030 nb_sectors
= bdrv_getlength(bs
) >> 9;
1032 qemu_co_queue_init(&meta
.dependent_requests
);
1033 meta
.cluster_offset
= 0;
1035 while (nb_sectors
) {
1036 num
= MIN(nb_sectors
, INT_MAX
>> 9);
1037 ret
= qcow2_alloc_cluster_offset(bs
, offset
, 0, num
, &num
, &meta
);
1042 ret
= qcow2_alloc_cluster_link_l2(bs
, &meta
);
1044 qcow2_free_any_clusters(bs
, meta
.cluster_offset
, meta
.nb_clusters
);
1048 /* There are no dependent requests, but we need to remove our request
1049 * from the list of in-flight requests */
1050 run_dependent_requests(bs
->opaque
, &meta
);
1052 /* TODO Preallocate data if requested */
1059 * It is expected that the image file is large enough to actually contain
1060 * all of the allocated clusters (otherwise we get failing reads after
1061 * EOF). Extend the image to the last allocated sector.
1063 if (meta
.cluster_offset
!= 0) {
1065 memset(buf
, 0, 512);
1066 ret
= bdrv_write(bs
->file
, (meta
.cluster_offset
>> 9) + num
- 1, buf
, 1);
1075 static int qcow2_create2(const char *filename
, int64_t total_size
,
1076 const char *backing_file
, const char *backing_format
,
1077 int flags
, size_t cluster_size
, int prealloc
,
1078 QEMUOptionParameter
*options
, int version
)
1080 /* Calculate cluster_bits */
1082 cluster_bits
= ffs(cluster_size
) - 1;
1083 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
1084 (1 << cluster_bits
) != cluster_size
)
1087 "Cluster size must be a power of two between %d and %dk",
1088 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
1093 * Open the image file and write a minimal qcow2 header.
1095 * We keep things simple and start with a zero-sized image. We also
1096 * do without refcount blocks or a L1 table for now. We'll fix the
1097 * inconsistency later.
1099 * We do need a refcount table because growing the refcount table means
1100 * allocating two new refcount blocks - the seconds of which would be at
1101 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
1102 * size for any qcow2 image.
1104 BlockDriverState
* bs
;
1106 uint8_t* refcount_table
;
1109 ret
= bdrv_create_file(filename
, options
);
1114 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDWR
);
1119 /* Write the header */
1120 memset(&header
, 0, sizeof(header
));
1121 header
.magic
= cpu_to_be32(QCOW_MAGIC
);
1122 header
.version
= cpu_to_be32(version
);
1123 header
.cluster_bits
= cpu_to_be32(cluster_bits
);
1124 header
.size
= cpu_to_be64(0);
1125 header
.l1_table_offset
= cpu_to_be64(0);
1126 header
.l1_size
= cpu_to_be32(0);
1127 header
.refcount_table_offset
= cpu_to_be64(cluster_size
);
1128 header
.refcount_table_clusters
= cpu_to_be32(1);
1129 header
.refcount_order
= cpu_to_be32(3 + REFCOUNT_SHIFT
);
1130 header
.header_length
= cpu_to_be32(sizeof(header
));
1132 if (flags
& BLOCK_FLAG_ENCRYPT
) {
1133 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_AES
);
1135 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
1138 ret
= bdrv_pwrite(bs
, 0, &header
, sizeof(header
));
1143 /* Write an empty refcount table */
1144 refcount_table
= g_malloc0(cluster_size
);
1145 ret
= bdrv_pwrite(bs
, cluster_size
, refcount_table
, cluster_size
);
1146 g_free(refcount_table
);
1155 * And now open the image and make it consistent first (i.e. increase the
1156 * refcount of the cluster that is occupied by the header and the refcount
1159 BlockDriver
* drv
= bdrv_find_format("qcow2");
1160 assert(drv
!= NULL
);
1161 ret
= bdrv_open(bs
, filename
,
1162 BDRV_O_RDWR
| BDRV_O_CACHE_WB
| BDRV_O_NO_FLUSH
, drv
);
1167 ret
= qcow2_alloc_clusters(bs
, 2 * cluster_size
);
1171 } else if (ret
!= 0) {
1172 error_report("Huh, first cluster in empty image is already in use?");
1176 /* Okay, now that we have a valid image, let's give it the right size */
1177 ret
= bdrv_truncate(bs
, total_size
* BDRV_SECTOR_SIZE
);
1182 /* Want a backing file? There you go.*/
1184 ret
= bdrv_change_backing_file(bs
, backing_file
, backing_format
);
1190 /* And if we're supposed to preallocate metadata, do that now */
1192 BDRVQcowState
*s
= bs
->opaque
;
1193 qemu_co_mutex_lock(&s
->lock
);
1194 ret
= preallocate(bs
);
1195 qemu_co_mutex_unlock(&s
->lock
);
1207 static int qcow2_create(const char *filename
, QEMUOptionParameter
*options
)
1209 const char *backing_file
= NULL
;
1210 const char *backing_fmt
= NULL
;
1211 uint64_t sectors
= 0;
1213 size_t cluster_size
= DEFAULT_CLUSTER_SIZE
;
1217 /* Read out options */
1218 while (options
&& options
->name
) {
1219 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
1220 sectors
= options
->value
.n
/ 512;
1221 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
1222 backing_file
= options
->value
.s
;
1223 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FMT
)) {
1224 backing_fmt
= options
->value
.s
;
1225 } else if (!strcmp(options
->name
, BLOCK_OPT_ENCRYPT
)) {
1226 flags
|= options
->value
.n
? BLOCK_FLAG_ENCRYPT
: 0;
1227 } else if (!strcmp(options
->name
, BLOCK_OPT_CLUSTER_SIZE
)) {
1228 if (options
->value
.n
) {
1229 cluster_size
= options
->value
.n
;
1231 } else if (!strcmp(options
->name
, BLOCK_OPT_PREALLOC
)) {
1232 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "off")) {
1234 } else if (!strcmp(options
->value
.s
, "metadata")) {
1237 fprintf(stderr
, "Invalid preallocation mode: '%s'\n",
1241 } else if (!strcmp(options
->name
, BLOCK_OPT_COMPAT_LEVEL
)) {
1242 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "0.10")) {
1244 } else if (!strcmp(options
->value
.s
, "1.1")) {
1247 fprintf(stderr
, "Invalid compatibility level: '%s'\n",
1255 if (backing_file
&& prealloc
) {
1256 fprintf(stderr
, "Backing file and preallocation cannot be used at "
1261 return qcow2_create2(filename
, sectors
, backing_file
, backing_fmt
, flags
,
1262 cluster_size
, prealloc
, options
, version
);
1265 static int qcow2_make_empty(BlockDriverState
*bs
)
1268 /* XXX: not correct */
1269 BDRVQcowState
*s
= bs
->opaque
;
1270 uint32_t l1_length
= s
->l1_size
* sizeof(uint64_t);
1273 memset(s
->l1_table
, 0, l1_length
);
1274 if (bdrv_pwrite(bs
->file
, s
->l1_table_offset
, s
->l1_table
, l1_length
) < 0)
1276 ret
= bdrv_truncate(bs
->file
, s
->l1_table_offset
+ l1_length
);
1285 static coroutine_fn
int qcow2_co_write_zeroes(BlockDriverState
*bs
,
1286 int64_t sector_num
, int nb_sectors
)
1289 BDRVQcowState
*s
= bs
->opaque
;
1291 /* Emulate misaligned zero writes */
1292 if (sector_num
% s
->cluster_sectors
|| nb_sectors
% s
->cluster_sectors
) {
1296 /* Whatever is left can use real zero clusters */
1297 qemu_co_mutex_lock(&s
->lock
);
1298 ret
= qcow2_zero_clusters(bs
, sector_num
<< BDRV_SECTOR_BITS
,
1300 qemu_co_mutex_unlock(&s
->lock
);
1305 static coroutine_fn
int qcow2_co_discard(BlockDriverState
*bs
,
1306 int64_t sector_num
, int nb_sectors
)
1309 BDRVQcowState
*s
= bs
->opaque
;
1311 qemu_co_mutex_lock(&s
->lock
);
1312 ret
= qcow2_discard_clusters(bs
, sector_num
<< BDRV_SECTOR_BITS
,
1314 qemu_co_mutex_unlock(&s
->lock
);
1318 static int qcow2_truncate(BlockDriverState
*bs
, int64_t offset
)
1320 BDRVQcowState
*s
= bs
->opaque
;
1321 int ret
, new_l1_size
;
1324 error_report("The new size must be a multiple of 512");
1328 /* cannot proceed if image has snapshots */
1329 if (s
->nb_snapshots
) {
1330 error_report("Can't resize an image which has snapshots");
1334 /* shrinking is currently not supported */
1335 if (offset
< bs
->total_sectors
* 512) {
1336 error_report("qcow2 doesn't support shrinking images yet");
1340 new_l1_size
= size_to_l1(s
, offset
);
1341 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
1346 /* write updated header.size */
1347 offset
= cpu_to_be64(offset
);
1348 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
1349 &offset
, sizeof(uint64_t));
1354 s
->l1_vm_state_index
= new_l1_size
;
1358 /* XXX: put compressed sectors first, then all the cluster aligned
1359 tables to avoid losing bytes in alignment */
1360 static int qcow2_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1361 const uint8_t *buf
, int nb_sectors
)
1363 BDRVQcowState
*s
= bs
->opaque
;
1367 uint64_t cluster_offset
;
1369 if (nb_sectors
== 0) {
1370 /* align end of file to a sector boundary to ease reading with
1371 sector based I/Os */
1372 cluster_offset
= bdrv_getlength(bs
->file
);
1373 cluster_offset
= (cluster_offset
+ 511) & ~511;
1374 bdrv_truncate(bs
->file
, cluster_offset
);
1378 if (nb_sectors
!= s
->cluster_sectors
)
1381 out_buf
= g_malloc(s
->cluster_size
+ (s
->cluster_size
/ 1000) + 128);
1383 /* best compression, small window, no zlib header */
1384 memset(&strm
, 0, sizeof(strm
));
1385 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
1387 9, Z_DEFAULT_STRATEGY
);
1393 strm
.avail_in
= s
->cluster_size
;
1394 strm
.next_in
= (uint8_t *)buf
;
1395 strm
.avail_out
= s
->cluster_size
;
1396 strm
.next_out
= out_buf
;
1398 ret
= deflate(&strm
, Z_FINISH
);
1399 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
1404 out_len
= strm
.next_out
- out_buf
;
1408 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
1409 /* could not compress: write normal cluster */
1410 ret
= bdrv_write(bs
, sector_num
, buf
, s
->cluster_sectors
);
1415 cluster_offset
= qcow2_alloc_compressed_cluster_offset(bs
,
1416 sector_num
<< 9, out_len
);
1417 if (!cluster_offset
) {
1421 cluster_offset
&= s
->cluster_offset_mask
;
1422 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_COMPRESSED
);
1423 ret
= bdrv_pwrite(bs
->file
, cluster_offset
, out_buf
, out_len
);
1435 static coroutine_fn
int qcow2_co_flush_to_os(BlockDriverState
*bs
)
1437 BDRVQcowState
*s
= bs
->opaque
;
1440 qemu_co_mutex_lock(&s
->lock
);
1441 ret
= qcow2_cache_flush(bs
, s
->l2_table_cache
);
1443 qemu_co_mutex_unlock(&s
->lock
);
1447 ret
= qcow2_cache_flush(bs
, s
->refcount_block_cache
);
1449 qemu_co_mutex_unlock(&s
->lock
);
1452 qemu_co_mutex_unlock(&s
->lock
);
1457 static int64_t qcow2_vm_state_offset(BDRVQcowState
*s
)
1459 return (int64_t)s
->l1_vm_state_index
<< (s
->cluster_bits
+ s
->l2_bits
);
1462 static int qcow2_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1464 BDRVQcowState
*s
= bs
->opaque
;
1465 bdi
->cluster_size
= s
->cluster_size
;
1466 bdi
->vm_state_offset
= qcow2_vm_state_offset(s
);
1471 static int qcow2_check(BlockDriverState
*bs
, BdrvCheckResult
*result
,
1474 return qcow2_check_refcounts(bs
, result
, fix
);
1478 static void dump_refcounts(BlockDriverState
*bs
)
1480 BDRVQcowState
*s
= bs
->opaque
;
1481 int64_t nb_clusters
, k
, k1
, size
;
1484 size
= bdrv_getlength(bs
->file
);
1485 nb_clusters
= size_to_clusters(s
, size
);
1486 for(k
= 0; k
< nb_clusters
;) {
1488 refcount
= get_refcount(bs
, k
);
1490 while (k
< nb_clusters
&& get_refcount(bs
, k
) == refcount
)
1492 printf("%" PRId64
": refcount=%d nb=%" PRId64
"\n", k
, refcount
,
1498 static int qcow2_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1499 int64_t pos
, int size
)
1501 BDRVQcowState
*s
= bs
->opaque
;
1502 int growable
= bs
->growable
;
1505 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
1507 ret
= bdrv_pwrite(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1508 bs
->growable
= growable
;
1513 static int qcow2_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1514 int64_t pos
, int size
)
1516 BDRVQcowState
*s
= bs
->opaque
;
1517 int growable
= bs
->growable
;
1520 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
1522 ret
= bdrv_pread(bs
, qcow2_vm_state_offset(s
) + pos
, buf
, size
);
1523 bs
->growable
= growable
;
1528 static QEMUOptionParameter qcow2_create_options
[] = {
1530 .name
= BLOCK_OPT_SIZE
,
1532 .help
= "Virtual disk size"
1535 .name
= BLOCK_OPT_COMPAT_LEVEL
,
1537 .help
= "Compatibility level (0.10 or 1.1)"
1540 .name
= BLOCK_OPT_BACKING_FILE
,
1542 .help
= "File name of a base image"
1545 .name
= BLOCK_OPT_BACKING_FMT
,
1547 .help
= "Image format of the base image"
1550 .name
= BLOCK_OPT_ENCRYPT
,
1552 .help
= "Encrypt the image"
1555 .name
= BLOCK_OPT_CLUSTER_SIZE
,
1557 .help
= "qcow2 cluster size",
1558 .value
= { .n
= DEFAULT_CLUSTER_SIZE
},
1561 .name
= BLOCK_OPT_PREALLOC
,
1563 .help
= "Preallocation mode (allowed values: off, metadata)"
1568 static BlockDriver bdrv_qcow2
= {
1569 .format_name
= "qcow2",
1570 .instance_size
= sizeof(BDRVQcowState
),
1571 .bdrv_probe
= qcow2_probe
,
1572 .bdrv_open
= qcow2_open
,
1573 .bdrv_close
= qcow2_close
,
1574 .bdrv_create
= qcow2_create
,
1575 .bdrv_co_is_allocated
= qcow2_co_is_allocated
,
1576 .bdrv_set_key
= qcow2_set_key
,
1577 .bdrv_make_empty
= qcow2_make_empty
,
1579 .bdrv_co_readv
= qcow2_co_readv
,
1580 .bdrv_co_writev
= qcow2_co_writev
,
1581 .bdrv_co_flush_to_os
= qcow2_co_flush_to_os
,
1583 .bdrv_co_write_zeroes
= qcow2_co_write_zeroes
,
1584 .bdrv_co_discard
= qcow2_co_discard
,
1585 .bdrv_truncate
= qcow2_truncate
,
1586 .bdrv_write_compressed
= qcow2_write_compressed
,
1588 .bdrv_snapshot_create
= qcow2_snapshot_create
,
1589 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
1590 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
1591 .bdrv_snapshot_list
= qcow2_snapshot_list
,
1592 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
1593 .bdrv_get_info
= qcow2_get_info
,
1595 .bdrv_save_vmstate
= qcow2_save_vmstate
,
1596 .bdrv_load_vmstate
= qcow2_load_vmstate
,
1598 .bdrv_change_backing_file
= qcow2_change_backing_file
,
1600 .bdrv_invalidate_cache
= qcow2_invalidate_cache
,
1602 .create_options
= qcow2_create_options
,
1603 .bdrv_check
= qcow2_check
,
1606 static void bdrv_qcow2_init(void)
1608 bdrv_register(&bdrv_qcow2
);
1611 block_init(bdrv_qcow2_init
);