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"
33 Differences with QCOW:
35 - Support for multiple incremental snapshots.
36 - Memory management by reference counts.
37 - Clusters which have a reference count of one have the bit
38 QCOW_OFLAG_COPIED to optimize write performance.
39 - Size of compressed clusters is stored in sectors to reduce bit usage
40 in the cluster offsets.
41 - Support for storing additional data (such as the VM state) in the
43 - If a backing store is used, the cluster size is not constrained
44 (could be backported to QCOW).
45 - L2 tables have always a size of one cluster.
53 #define QCOW_EXT_MAGIC_END 0
54 #define QCOW_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
56 static int qcow_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
58 const QCowHeader
*cow_header
= (const void *)buf
;
60 if (buf_size
>= sizeof(QCowHeader
) &&
61 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
62 be32_to_cpu(cow_header
->version
) == QCOW_VERSION
)
70 * read qcow2 extension and fill bs
71 * start reading from start_offset
72 * finish reading upon magic of value 0 or when end_offset reached
73 * unknown magic is skipped (future extension this version knows nothing about)
74 * return 0 upon success, non-0 otherwise
76 static int qcow_read_extensions(BlockDriverState
*bs
, uint64_t start_offset
,
83 printf("qcow_read_extensions: start=%ld end=%ld\n", start_offset
, end_offset
);
85 offset
= start_offset
;
86 while (offset
< end_offset
) {
90 if (offset
> s
->cluster_size
)
91 printf("qcow_handle_extension: suspicious offset %lu\n", offset
);
93 printf("attemting to read extended header in offset %lu\n", offset
);
96 if (bdrv_pread(bs
->file
, offset
, &ext
, sizeof(ext
)) != sizeof(ext
)) {
97 fprintf(stderr
, "qcow_handle_extension: ERROR: "
98 "pread fail from offset %" PRIu64
"\n",
102 be32_to_cpus(&ext
.magic
);
103 be32_to_cpus(&ext
.len
);
104 offset
+= sizeof(ext
);
106 printf("ext.magic = 0x%x\n", ext
.magic
);
109 case QCOW_EXT_MAGIC_END
:
112 case QCOW_EXT_MAGIC_BACKING_FORMAT
:
113 if (ext
.len
>= sizeof(bs
->backing_format
)) {
114 fprintf(stderr
, "ERROR: ext_backing_format: len=%u too large"
116 ext
.len
, sizeof(bs
->backing_format
));
119 if (bdrv_pread(bs
->file
, offset
, bs
->backing_format
,
122 bs
->backing_format
[ext
.len
] = '\0';
124 printf("Qcow2: Got format extension %s\n", bs
->backing_format
);
126 offset
= ((offset
+ ext
.len
+ 7) & ~7);
130 /* unknown magic -- just skip it */
131 offset
= ((offset
+ ext
.len
+ 7) & ~7);
140 static int qcow_open(BlockDriverState
*bs
, int flags
)
142 BDRVQcowState
*s
= bs
->opaque
;
147 if (bdrv_pread(bs
->file
, 0, &header
, sizeof(header
)) != sizeof(header
))
149 be32_to_cpus(&header
.magic
);
150 be32_to_cpus(&header
.version
);
151 be64_to_cpus(&header
.backing_file_offset
);
152 be32_to_cpus(&header
.backing_file_size
);
153 be64_to_cpus(&header
.size
);
154 be32_to_cpus(&header
.cluster_bits
);
155 be32_to_cpus(&header
.crypt_method
);
156 be64_to_cpus(&header
.l1_table_offset
);
157 be32_to_cpus(&header
.l1_size
);
158 be64_to_cpus(&header
.refcount_table_offset
);
159 be32_to_cpus(&header
.refcount_table_clusters
);
160 be64_to_cpus(&header
.snapshots_offset
);
161 be32_to_cpus(&header
.nb_snapshots
);
163 if (header
.magic
!= QCOW_MAGIC
|| header
.version
!= QCOW_VERSION
)
165 if (header
.cluster_bits
< MIN_CLUSTER_BITS
||
166 header
.cluster_bits
> MAX_CLUSTER_BITS
)
168 if (header
.crypt_method
> QCOW_CRYPT_AES
)
170 s
->crypt_method_header
= header
.crypt_method
;
171 if (s
->crypt_method_header
)
173 s
->cluster_bits
= header
.cluster_bits
;
174 s
->cluster_size
= 1 << s
->cluster_bits
;
175 s
->cluster_sectors
= 1 << (s
->cluster_bits
- 9);
176 s
->l2_bits
= s
->cluster_bits
- 3; /* L2 is always one cluster */
177 s
->l2_size
= 1 << s
->l2_bits
;
178 bs
->total_sectors
= header
.size
/ 512;
179 s
->csize_shift
= (62 - (s
->cluster_bits
- 8));
180 s
->csize_mask
= (1 << (s
->cluster_bits
- 8)) - 1;
181 s
->cluster_offset_mask
= (1LL << s
->csize_shift
) - 1;
182 s
->refcount_table_offset
= header
.refcount_table_offset
;
183 s
->refcount_table_size
=
184 header
.refcount_table_clusters
<< (s
->cluster_bits
- 3);
186 s
->snapshots_offset
= header
.snapshots_offset
;
187 s
->nb_snapshots
= header
.nb_snapshots
;
189 /* read the level 1 table */
190 s
->l1_size
= header
.l1_size
;
191 s
->l1_vm_state_index
= size_to_l1(s
, header
.size
);
192 /* the L1 table must contain at least enough entries to put
194 if (s
->l1_size
< s
->l1_vm_state_index
)
196 s
->l1_table_offset
= header
.l1_table_offset
;
197 if (s
->l1_size
> 0) {
198 s
->l1_table
= qemu_mallocz(
199 align_offset(s
->l1_size
* sizeof(uint64_t), 512));
200 if (bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
, s
->l1_size
* sizeof(uint64_t)) !=
201 s
->l1_size
* sizeof(uint64_t))
203 for(i
= 0;i
< s
->l1_size
; i
++) {
204 be64_to_cpus(&s
->l1_table
[i
]);
208 s
->l2_cache
= qemu_malloc(s
->l2_size
* L2_CACHE_SIZE
* sizeof(uint64_t));
209 s
->cluster_cache
= qemu_malloc(s
->cluster_size
);
210 /* one more sector for decompressed data alignment */
211 s
->cluster_data
= qemu_malloc(QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
213 s
->cluster_cache_offset
= -1;
215 if (qcow2_refcount_init(bs
) < 0)
218 QLIST_INIT(&s
->cluster_allocs
);
220 /* read qcow2 extensions */
221 if (header
.backing_file_offset
)
222 ext_end
= header
.backing_file_offset
;
224 ext_end
= s
->cluster_size
;
225 if (qcow_read_extensions(bs
, sizeof(header
), ext_end
))
228 /* read the backing file name */
229 if (header
.backing_file_offset
!= 0) {
230 len
= header
.backing_file_size
;
233 if (bdrv_pread(bs
->file
, header
.backing_file_offset
, bs
->backing_file
, len
) != len
)
235 bs
->backing_file
[len
] = '\0';
237 if (qcow2_read_snapshots(bs
) < 0)
241 qcow2_check_refcounts(bs
);
246 qcow2_free_snapshots(bs
);
247 qcow2_refcount_close(bs
);
248 qemu_free(s
->l1_table
);
249 qemu_free(s
->l2_cache
);
250 qemu_free(s
->cluster_cache
);
251 qemu_free(s
->cluster_data
);
255 static int qcow_set_key(BlockDriverState
*bs
, const char *key
)
257 BDRVQcowState
*s
= bs
->opaque
;
261 memset(keybuf
, 0, 16);
265 /* XXX: we could compress the chars to 7 bits to increase
267 for(i
= 0;i
< len
;i
++) {
270 s
->crypt_method
= s
->crypt_method_header
;
272 if (AES_set_encrypt_key(keybuf
, 128, &s
->aes_encrypt_key
) != 0)
274 if (AES_set_decrypt_key(keybuf
, 128, &s
->aes_decrypt_key
) != 0)
284 AES_encrypt(in
, tmp
, &s
->aes_encrypt_key
);
285 AES_decrypt(tmp
, out
, &s
->aes_decrypt_key
);
286 for(i
= 0; i
< 16; i
++)
287 printf(" %02x", tmp
[i
]);
289 for(i
= 0; i
< 16; i
++)
290 printf(" %02x", out
[i
]);
297 static int qcow_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
298 int nb_sectors
, int *pnum
)
300 uint64_t cluster_offset
;
304 /* FIXME We can get errors here, but the bdrv_is_allocated interface can't
305 * pass them on today */
306 ret
= qcow2_get_cluster_offset(bs
, sector_num
<< 9, pnum
, &cluster_offset
);
311 return (cluster_offset
!= 0);
314 /* handle reading after the end of the backing file */
315 int qcow2_backing_read1(BlockDriverState
*bs
, QEMUIOVector
*qiov
,
316 int64_t sector_num
, int nb_sectors
)
319 if ((sector_num
+ nb_sectors
) <= bs
->total_sectors
)
321 if (sector_num
>= bs
->total_sectors
)
324 n1
= bs
->total_sectors
- sector_num
;
326 qemu_iovec_memset(qiov
, 0, 512 * (nb_sectors
- n1
));
331 typedef struct QCowAIOCB
{
332 BlockDriverAIOCB common
;
335 int remaining_sectors
;
336 int cur_nr_sectors
; /* number of sectors in current iteration */
338 uint64_t cluster_offset
;
339 uint8_t *cluster_data
;
340 BlockDriverAIOCB
*hd_aiocb
;
341 QEMUIOVector hd_qiov
;
344 QLIST_ENTRY(QCowAIOCB
) next_depend
;
347 static void qcow_aio_cancel(BlockDriverAIOCB
*blockacb
)
349 QCowAIOCB
*acb
= container_of(blockacb
, QCowAIOCB
, common
);
351 bdrv_aio_cancel(acb
->hd_aiocb
);
352 qemu_aio_release(acb
);
355 static AIOPool qcow_aio_pool
= {
356 .aiocb_size
= sizeof(QCowAIOCB
),
357 .cancel
= qcow_aio_cancel
,
360 static void qcow_aio_read_cb(void *opaque
, int ret
);
361 static void qcow_aio_read_bh(void *opaque
)
363 QCowAIOCB
*acb
= opaque
;
364 qemu_bh_delete(acb
->bh
);
366 qcow_aio_read_cb(opaque
, 0);
369 static int qcow_schedule_bh(QEMUBHFunc
*cb
, QCowAIOCB
*acb
)
374 acb
->bh
= qemu_bh_new(cb
, acb
);
378 qemu_bh_schedule(acb
->bh
);
383 static void qcow_aio_read_cb(void *opaque
, int ret
)
385 QCowAIOCB
*acb
= opaque
;
386 BlockDriverState
*bs
= acb
->common
.bs
;
387 BDRVQcowState
*s
= bs
->opaque
;
388 int index_in_cluster
, n1
;
390 acb
->hd_aiocb
= NULL
;
394 /* post process the read buffer */
395 if (!acb
->cluster_offset
) {
397 } else if (acb
->cluster_offset
& QCOW_OFLAG_COMPRESSED
) {
400 if (s
->crypt_method
) {
401 qcow2_encrypt_sectors(s
, acb
->sector_num
, acb
->cluster_data
,
402 acb
->cluster_data
, acb
->cur_nr_sectors
, 0, &s
->aes_decrypt_key
);
403 qemu_iovec_reset(&acb
->hd_qiov
);
404 qemu_iovec_copy(&acb
->hd_qiov
, acb
->qiov
, acb
->bytes_done
,
405 acb
->cur_nr_sectors
* 512);
406 qemu_iovec_from_buffer(&acb
->hd_qiov
, acb
->cluster_data
,
407 512 * acb
->cur_nr_sectors
);
411 acb
->remaining_sectors
-= acb
->cur_nr_sectors
;
412 acb
->sector_num
+= acb
->cur_nr_sectors
;
413 acb
->bytes_done
+= acb
->cur_nr_sectors
* 512;
415 if (acb
->remaining_sectors
== 0) {
416 /* request completed */
421 /* prepare next AIO request */
422 acb
->cur_nr_sectors
= acb
->remaining_sectors
;
423 if (s
->crypt_method
) {
424 acb
->cur_nr_sectors
= MIN(acb
->cur_nr_sectors
,
425 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
428 ret
= qcow2_get_cluster_offset(bs
, acb
->sector_num
<< 9,
429 &acb
->cur_nr_sectors
, &acb
->cluster_offset
);
434 index_in_cluster
= acb
->sector_num
& (s
->cluster_sectors
- 1);
436 qemu_iovec_reset(&acb
->hd_qiov
);
437 qemu_iovec_copy(&acb
->hd_qiov
, acb
->qiov
, acb
->bytes_done
,
438 acb
->cur_nr_sectors
* 512);
440 if (!acb
->cluster_offset
) {
442 if (bs
->backing_hd
) {
443 /* read from the base image */
444 n1
= qcow2_backing_read1(bs
->backing_hd
, &acb
->hd_qiov
,
445 acb
->sector_num
, acb
->cur_nr_sectors
);
447 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_BACKING_AIO
);
448 acb
->hd_aiocb
= bdrv_aio_readv(bs
->backing_hd
, acb
->sector_num
,
449 &acb
->hd_qiov
, acb
->cur_nr_sectors
,
450 qcow_aio_read_cb
, acb
);
451 if (acb
->hd_aiocb
== NULL
)
454 ret
= qcow_schedule_bh(qcow_aio_read_bh
, acb
);
459 /* Note: in this case, no need to wait */
460 qemu_iovec_memset(&acb
->hd_qiov
, 0, 512 * acb
->cur_nr_sectors
);
461 ret
= qcow_schedule_bh(qcow_aio_read_bh
, acb
);
465 } else if (acb
->cluster_offset
& QCOW_OFLAG_COMPRESSED
) {
466 /* add AIO support for compressed blocks ? */
467 if (qcow2_decompress_cluster(bs
, acb
->cluster_offset
) < 0)
470 qemu_iovec_from_buffer(&acb
->hd_qiov
,
471 s
->cluster_cache
+ index_in_cluster
* 512,
472 512 * acb
->cur_nr_sectors
);
474 ret
= qcow_schedule_bh(qcow_aio_read_bh
, acb
);
478 if ((acb
->cluster_offset
& 511) != 0) {
483 if (s
->crypt_method
) {
485 * For encrypted images, read everything into a temporary
486 * contiguous buffer on which the AES functions can work.
488 if (!acb
->cluster_data
) {
490 qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
493 assert(acb
->cur_nr_sectors
<=
494 QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
);
495 qemu_iovec_reset(&acb
->hd_qiov
);
496 qemu_iovec_add(&acb
->hd_qiov
, acb
->cluster_data
,
497 512 * acb
->cur_nr_sectors
);
500 BLKDBG_EVENT(bs
->file
, BLKDBG_READ_AIO
);
501 acb
->hd_aiocb
= bdrv_aio_readv(bs
->file
,
502 (acb
->cluster_offset
>> 9) + index_in_cluster
,
503 &acb
->hd_qiov
, acb
->cur_nr_sectors
,
504 qcow_aio_read_cb
, acb
);
505 if (acb
->hd_aiocb
== NULL
) {
513 acb
->common
.cb(acb
->common
.opaque
, ret
);
514 qemu_iovec_destroy(&acb
->hd_qiov
);
515 qemu_aio_release(acb
);
518 static QCowAIOCB
*qcow_aio_setup(BlockDriverState
*bs
,
519 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
520 BlockDriverCompletionFunc
*cb
, void *opaque
, int is_write
)
524 acb
= qemu_aio_get(&qcow_aio_pool
, bs
, cb
, opaque
);
527 acb
->hd_aiocb
= NULL
;
528 acb
->sector_num
= sector_num
;
531 qemu_iovec_init(&acb
->hd_qiov
, qiov
->niov
);
534 acb
->remaining_sectors
= nb_sectors
;
535 acb
->cur_nr_sectors
= 0;
536 acb
->cluster_offset
= 0;
537 acb
->l2meta
.nb_clusters
= 0;
538 QLIST_INIT(&acb
->l2meta
.dependent_requests
);
542 static BlockDriverAIOCB
*qcow_aio_readv(BlockDriverState
*bs
,
543 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
544 BlockDriverCompletionFunc
*cb
, void *opaque
)
548 acb
= qcow_aio_setup(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 0);
552 qcow_aio_read_cb(acb
, 0);
556 static void qcow_aio_write_cb(void *opaque
, int ret
);
558 static void run_dependent_requests(QCowL2Meta
*m
)
563 /* Take the request off the list of running requests */
564 if (m
->nb_clusters
!= 0) {
565 QLIST_REMOVE(m
, next_in_flight
);
568 /* Restart all dependent requests */
569 QLIST_FOREACH_SAFE(req
, &m
->dependent_requests
, next_depend
, next
) {
570 qcow_aio_write_cb(req
, 0);
573 /* Empty the list for the next part of the request */
574 QLIST_INIT(&m
->dependent_requests
);
577 static void qcow_aio_write_cb(void *opaque
, int ret
)
579 QCowAIOCB
*acb
= opaque
;
580 BlockDriverState
*bs
= acb
->common
.bs
;
581 BDRVQcowState
*s
= bs
->opaque
;
582 int index_in_cluster
;
585 acb
->hd_aiocb
= NULL
;
588 ret
= qcow2_alloc_cluster_link_l2(bs
, &acb
->l2meta
);
591 run_dependent_requests(&acb
->l2meta
);
596 acb
->remaining_sectors
-= acb
->cur_nr_sectors
;
597 acb
->sector_num
+= acb
->cur_nr_sectors
;
598 acb
->bytes_done
+= acb
->cur_nr_sectors
* 512;
600 if (acb
->remaining_sectors
== 0) {
601 /* request completed */
606 index_in_cluster
= acb
->sector_num
& (s
->cluster_sectors
- 1);
607 n_end
= index_in_cluster
+ acb
->remaining_sectors
;
608 if (s
->crypt_method
&&
609 n_end
> QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
)
610 n_end
= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_sectors
;
612 ret
= qcow2_alloc_cluster_offset(bs
, acb
->sector_num
<< 9,
613 index_in_cluster
, n_end
, &acb
->cur_nr_sectors
, &acb
->l2meta
);
618 acb
->cluster_offset
= acb
->l2meta
.cluster_offset
;
620 /* Need to wait for another request? If so, we are done for now. */
621 if (acb
->l2meta
.nb_clusters
== 0 && acb
->l2meta
.depends_on
!= NULL
) {
622 QLIST_INSERT_HEAD(&acb
->l2meta
.depends_on
->dependent_requests
,
627 assert((acb
->cluster_offset
& 511) == 0);
629 qemu_iovec_reset(&acb
->hd_qiov
);
630 qemu_iovec_copy(&acb
->hd_qiov
, acb
->qiov
, acb
->bytes_done
,
631 acb
->cur_nr_sectors
* 512);
633 if (s
->crypt_method
) {
634 if (!acb
->cluster_data
) {
635 acb
->cluster_data
= qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS
*
639 assert(acb
->hd_qiov
.size
<= QCOW_MAX_CRYPT_CLUSTERS
* s
->cluster_size
);
640 qemu_iovec_to_buffer(&acb
->hd_qiov
, acb
->cluster_data
);
642 qcow2_encrypt_sectors(s
, acb
->sector_num
, acb
->cluster_data
,
643 acb
->cluster_data
, acb
->cur_nr_sectors
, 1, &s
->aes_encrypt_key
);
645 qemu_iovec_reset(&acb
->hd_qiov
);
646 qemu_iovec_add(&acb
->hd_qiov
, acb
->cluster_data
,
647 acb
->cur_nr_sectors
* 512);
650 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_AIO
);
651 acb
->hd_aiocb
= bdrv_aio_writev(bs
->file
,
652 (acb
->cluster_offset
>> 9) + index_in_cluster
,
653 &acb
->hd_qiov
, acb
->cur_nr_sectors
,
654 qcow_aio_write_cb
, acb
);
655 if (acb
->hd_aiocb
== NULL
) {
663 if (acb
->l2meta
.nb_clusters
!= 0) {
664 QLIST_REMOVE(&acb
->l2meta
, next_in_flight
);
667 acb
->common
.cb(acb
->common
.opaque
, ret
);
668 qemu_iovec_destroy(&acb
->hd_qiov
);
669 qemu_aio_release(acb
);
672 static BlockDriverAIOCB
*qcow_aio_writev(BlockDriverState
*bs
,
673 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
674 BlockDriverCompletionFunc
*cb
, void *opaque
)
676 BDRVQcowState
*s
= bs
->opaque
;
679 s
->cluster_cache_offset
= -1; /* disable compressed cache */
681 acb
= qcow_aio_setup(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 1);
685 qcow_aio_write_cb(acb
, 0);
689 static void qcow_close(BlockDriverState
*bs
)
691 BDRVQcowState
*s
= bs
->opaque
;
692 qemu_free(s
->l1_table
);
693 qemu_free(s
->l2_cache
);
694 qemu_free(s
->cluster_cache
);
695 qemu_free(s
->cluster_data
);
696 qcow2_refcount_close(bs
);
700 * Updates the variable length parts of the qcow2 header, i.e. the backing file
701 * name and all extensions. qcow2 was not designed to allow such changes, so if
702 * we run out of space (we can only use the first cluster) this function may
705 * Returns 0 on success, -errno in error cases.
707 static int qcow2_update_ext_header(BlockDriverState
*bs
,
708 const char *backing_file
, const char *backing_fmt
)
710 size_t backing_file_len
= 0;
711 size_t backing_fmt_len
= 0;
712 BDRVQcowState
*s
= bs
->opaque
;
713 QCowExtension ext_backing_fmt
= {0, 0};
716 /* Backing file format doesn't make sense without a backing file */
717 if (backing_fmt
&& !backing_file
) {
721 /* Prepare the backing file format extension if needed */
723 ext_backing_fmt
.len
= cpu_to_be32(strlen(backing_fmt
));
724 ext_backing_fmt
.magic
= cpu_to_be32(QCOW_EXT_MAGIC_BACKING_FORMAT
);
725 backing_fmt_len
= ((sizeof(ext_backing_fmt
)
726 + strlen(backing_fmt
) + 7) & ~7);
729 /* Check if we can fit the new header into the first cluster */
731 backing_file_len
= strlen(backing_file
);
734 size_t header_size
= sizeof(QCowHeader
) + backing_file_len
737 if (header_size
> s
->cluster_size
) {
741 /* Rewrite backing file name and qcow2 extensions */
742 size_t ext_size
= header_size
- sizeof(QCowHeader
);
743 uint8_t buf
[ext_size
];
745 size_t backing_file_offset
= 0;
749 int padding
= backing_fmt_len
-
750 (sizeof(ext_backing_fmt
) + strlen(backing_fmt
));
752 memcpy(buf
+ offset
, &ext_backing_fmt
, sizeof(ext_backing_fmt
));
753 offset
+= sizeof(ext_backing_fmt
);
755 memcpy(buf
+ offset
, backing_fmt
, strlen(backing_fmt
));
756 offset
+= strlen(backing_fmt
);
758 memset(buf
+ offset
, 0, padding
);
762 memcpy(buf
+ offset
, backing_file
, backing_file_len
);
763 backing_file_offset
= sizeof(QCowHeader
) + offset
;
766 ret
= bdrv_pwrite_sync(bs
->file
, sizeof(QCowHeader
), buf
, ext_size
);
771 /* Update header fields */
772 uint64_t be_backing_file_offset
= cpu_to_be64(backing_file_offset
);
773 uint32_t be_backing_file_size
= cpu_to_be32(backing_file_len
);
775 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, backing_file_offset
),
776 &be_backing_file_offset
, sizeof(uint64_t));
781 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, backing_file_size
),
782 &be_backing_file_size
, sizeof(uint32_t));
792 static int qcow2_change_backing_file(BlockDriverState
*bs
,
793 const char *backing_file
, const char *backing_fmt
)
795 return qcow2_update_ext_header(bs
, backing_file
, backing_fmt
);
798 static int preallocate(BlockDriverState
*bs
)
806 nb_sectors
= bdrv_getlength(bs
) >> 9;
808 QLIST_INIT(&meta
.dependent_requests
);
809 meta
.cluster_offset
= 0;
812 num
= MIN(nb_sectors
, INT_MAX
>> 9);
813 ret
= qcow2_alloc_cluster_offset(bs
, offset
, 0, num
, &num
, &meta
);
818 ret
= qcow2_alloc_cluster_link_l2(bs
, &meta
);
820 qcow2_free_any_clusters(bs
, meta
.cluster_offset
, meta
.nb_clusters
);
824 /* There are no dependent requests, but we need to remove our request
825 * from the list of in-flight requests */
826 run_dependent_requests(&meta
);
828 /* TODO Preallocate data if requested */
835 * It is expected that the image file is large enough to actually contain
836 * all of the allocated clusters (otherwise we get failing reads after
837 * EOF). Extend the image to the last allocated sector.
839 if (meta
.cluster_offset
!= 0) {
842 ret
= bdrv_write(bs
->file
, (meta
.cluster_offset
>> 9) + num
- 1, buf
, 1);
851 static int qcow_create2(const char *filename
, int64_t total_size
,
852 const char *backing_file
, const char *backing_format
,
853 int flags
, size_t cluster_size
, int prealloc
,
854 QEMUOptionParameter
*options
)
856 /* Calulate cluster_bits */
858 cluster_bits
= ffs(cluster_size
) - 1;
859 if (cluster_bits
< MIN_CLUSTER_BITS
|| cluster_bits
> MAX_CLUSTER_BITS
||
860 (1 << cluster_bits
) != cluster_size
)
863 "Cluster size must be a power of two between %d and %dk\n",
864 1 << MIN_CLUSTER_BITS
, 1 << (MAX_CLUSTER_BITS
- 10));
869 * Open the image file and write a minimal qcow2 header.
871 * We keep things simple and start with a zero-sized image. We also
872 * do without refcount blocks or a L1 table for now. We'll fix the
873 * inconsistency later.
875 * We do need a refcount table because growing the refcount table means
876 * allocating two new refcount blocks - the seconds of which would be at
877 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
878 * size for any qcow2 image.
880 BlockDriverState
* bs
;
882 uint8_t* refcount_table
;
885 ret
= bdrv_create_file(filename
, options
);
890 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDWR
);
895 /* Write the header */
896 memset(&header
, 0, sizeof(header
));
897 header
.magic
= cpu_to_be32(QCOW_MAGIC
);
898 header
.version
= cpu_to_be32(QCOW_VERSION
);
899 header
.cluster_bits
= cpu_to_be32(cluster_bits
);
900 header
.size
= cpu_to_be64(0);
901 header
.l1_table_offset
= cpu_to_be64(0);
902 header
.l1_size
= cpu_to_be32(0);
903 header
.refcount_table_offset
= cpu_to_be64(cluster_size
);
904 header
.refcount_table_clusters
= cpu_to_be32(1);
906 if (flags
& BLOCK_FLAG_ENCRYPT
) {
907 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_AES
);
909 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
912 ret
= bdrv_pwrite(bs
, 0, &header
, sizeof(header
));
917 /* Write an empty refcount table */
918 refcount_table
= qemu_mallocz(cluster_size
);
919 ret
= bdrv_pwrite(bs
, cluster_size
, refcount_table
, cluster_size
);
920 qemu_free(refcount_table
);
929 * And now open the image and make it consistent first (i.e. increase the
930 * refcount of the cluster that is occupied by the header and the refcount
933 BlockDriver
* drv
= bdrv_find_format("qcow2");
935 ret
= bdrv_open(bs
, filename
, BDRV_O_RDWR
| BDRV_O_NO_FLUSH
, drv
);
940 ret
= qcow2_alloc_clusters(bs
, 2 * cluster_size
);
944 } else if (ret
!= 0) {
945 error_report("Huh, first cluster in empty image is already in use?");
949 /* Okay, now that we have a valid image, let's give it the right size */
950 ret
= bdrv_truncate(bs
, total_size
* BDRV_SECTOR_SIZE
);
955 /* Want a backing file? There you go.*/
957 ret
= bdrv_change_backing_file(bs
, backing_file
, backing_format
);
963 /* And if we're supposed to preallocate metadata, do that now */
965 ret
= preallocate(bs
);
977 static int qcow_create(const char *filename
, QEMUOptionParameter
*options
)
979 const char *backing_file
= NULL
;
980 const char *backing_fmt
= NULL
;
981 uint64_t sectors
= 0;
983 size_t cluster_size
= 65536;
986 /* Read out options */
987 while (options
&& options
->name
) {
988 if (!strcmp(options
->name
, BLOCK_OPT_SIZE
)) {
989 sectors
= options
->value
.n
/ 512;
990 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FILE
)) {
991 backing_file
= options
->value
.s
;
992 } else if (!strcmp(options
->name
, BLOCK_OPT_BACKING_FMT
)) {
993 backing_fmt
= options
->value
.s
;
994 } else if (!strcmp(options
->name
, BLOCK_OPT_ENCRYPT
)) {
995 flags
|= options
->value
.n
? BLOCK_FLAG_ENCRYPT
: 0;
996 } else if (!strcmp(options
->name
, BLOCK_OPT_CLUSTER_SIZE
)) {
997 if (options
->value
.n
) {
998 cluster_size
= options
->value
.n
;
1000 } else if (!strcmp(options
->name
, BLOCK_OPT_PREALLOC
)) {
1001 if (!options
->value
.s
|| !strcmp(options
->value
.s
, "off")) {
1003 } else if (!strcmp(options
->value
.s
, "metadata")) {
1006 fprintf(stderr
, "Invalid preallocation mode: '%s'\n",
1014 if (backing_file
&& prealloc
) {
1015 fprintf(stderr
, "Backing file and preallocation cannot be used at "
1020 return qcow_create2(filename
, sectors
, backing_file
, backing_fmt
, flags
,
1021 cluster_size
, prealloc
, options
);
1024 static int qcow_make_empty(BlockDriverState
*bs
)
1027 /* XXX: not correct */
1028 BDRVQcowState
*s
= bs
->opaque
;
1029 uint32_t l1_length
= s
->l1_size
* sizeof(uint64_t);
1032 memset(s
->l1_table
, 0, l1_length
);
1033 if (bdrv_pwrite(bs
->file
, s
->l1_table_offset
, s
->l1_table
, l1_length
) < 0)
1035 ret
= bdrv_truncate(bs
->file
, s
->l1_table_offset
+ l1_length
);
1044 static int qcow2_truncate(BlockDriverState
*bs
, int64_t offset
)
1046 BDRVQcowState
*s
= bs
->opaque
;
1047 int ret
, new_l1_size
;
1053 /* cannot proceed if image has snapshots */
1054 if (s
->nb_snapshots
) {
1058 /* shrinking is currently not supported */
1059 if (offset
< bs
->total_sectors
* 512) {
1063 new_l1_size
= size_to_l1(s
, offset
);
1064 ret
= qcow2_grow_l1_table(bs
, new_l1_size
, true);
1069 /* write updated header.size */
1070 offset
= cpu_to_be64(offset
);
1071 ret
= bdrv_pwrite_sync(bs
->file
, offsetof(QCowHeader
, size
),
1072 &offset
, sizeof(uint64_t));
1077 s
->l1_vm_state_index
= new_l1_size
;
1081 /* XXX: put compressed sectors first, then all the cluster aligned
1082 tables to avoid losing bytes in alignment */
1083 static int qcow_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1084 const uint8_t *buf
, int nb_sectors
)
1086 BDRVQcowState
*s
= bs
->opaque
;
1090 uint64_t cluster_offset
;
1092 if (nb_sectors
== 0) {
1093 /* align end of file to a sector boundary to ease reading with
1094 sector based I/Os */
1095 cluster_offset
= bdrv_getlength(bs
->file
);
1096 cluster_offset
= (cluster_offset
+ 511) & ~511;
1097 bdrv_truncate(bs
->file
, cluster_offset
);
1101 if (nb_sectors
!= s
->cluster_sectors
)
1104 out_buf
= qemu_malloc(s
->cluster_size
+ (s
->cluster_size
/ 1000) + 128);
1106 /* best compression, small window, no zlib header */
1107 memset(&strm
, 0, sizeof(strm
));
1108 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
1110 9, Z_DEFAULT_STRATEGY
);
1116 strm
.avail_in
= s
->cluster_size
;
1117 strm
.next_in
= (uint8_t *)buf
;
1118 strm
.avail_out
= s
->cluster_size
;
1119 strm
.next_out
= out_buf
;
1121 ret
= deflate(&strm
, Z_FINISH
);
1122 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
1127 out_len
= strm
.next_out
- out_buf
;
1131 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
1132 /* could not compress: write normal cluster */
1133 bdrv_write(bs
, sector_num
, buf
, s
->cluster_sectors
);
1135 cluster_offset
= qcow2_alloc_compressed_cluster_offset(bs
,
1136 sector_num
<< 9, out_len
);
1137 if (!cluster_offset
)
1139 cluster_offset
&= s
->cluster_offset_mask
;
1140 BLKDBG_EVENT(bs
->file
, BLKDBG_WRITE_COMPRESSED
);
1141 if (bdrv_pwrite(bs
->file
, cluster_offset
, out_buf
, out_len
) != out_len
) {
1151 static int qcow_flush(BlockDriverState
*bs
)
1153 return bdrv_flush(bs
->file
);
1156 static BlockDriverAIOCB
*qcow_aio_flush(BlockDriverState
*bs
,
1157 BlockDriverCompletionFunc
*cb
, void *opaque
)
1159 return bdrv_aio_flush(bs
->file
, cb
, opaque
);
1162 static int64_t qcow_vm_state_offset(BDRVQcowState
*s
)
1164 return (int64_t)s
->l1_vm_state_index
<< (s
->cluster_bits
+ s
->l2_bits
);
1167 static int qcow_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1169 BDRVQcowState
*s
= bs
->opaque
;
1170 bdi
->cluster_size
= s
->cluster_size
;
1171 bdi
->vm_state_offset
= qcow_vm_state_offset(s
);
1176 static int qcow_check(BlockDriverState
*bs
, BdrvCheckResult
*result
)
1178 return qcow2_check_refcounts(bs
, result
);
1182 static void dump_refcounts(BlockDriverState
*bs
)
1184 BDRVQcowState
*s
= bs
->opaque
;
1185 int64_t nb_clusters
, k
, k1
, size
;
1188 size
= bdrv_getlength(bs
->file
);
1189 nb_clusters
= size_to_clusters(s
, size
);
1190 for(k
= 0; k
< nb_clusters
;) {
1192 refcount
= get_refcount(bs
, k
);
1194 while (k
< nb_clusters
&& get_refcount(bs
, k
) == refcount
)
1196 printf("%" PRId64
": refcount=%d nb=%" PRId64
"\n", k
, refcount
,
1202 static int qcow_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1203 int64_t pos
, int size
)
1205 BDRVQcowState
*s
= bs
->opaque
;
1206 int growable
= bs
->growable
;
1209 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_SAVE
);
1211 ret
= bdrv_pwrite(bs
, qcow_vm_state_offset(s
) + pos
, buf
, size
);
1212 bs
->growable
= growable
;
1217 static int qcow_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1218 int64_t pos
, int size
)
1220 BDRVQcowState
*s
= bs
->opaque
;
1221 int growable
= bs
->growable
;
1224 BLKDBG_EVENT(bs
->file
, BLKDBG_VMSTATE_LOAD
);
1226 ret
= bdrv_pread(bs
, qcow_vm_state_offset(s
) + pos
, buf
, size
);
1227 bs
->growable
= growable
;
1232 static QEMUOptionParameter qcow_create_options
[] = {
1234 .name
= BLOCK_OPT_SIZE
,
1236 .help
= "Virtual disk size"
1239 .name
= BLOCK_OPT_BACKING_FILE
,
1241 .help
= "File name of a base image"
1244 .name
= BLOCK_OPT_BACKING_FMT
,
1246 .help
= "Image format of the base image"
1249 .name
= BLOCK_OPT_ENCRYPT
,
1251 .help
= "Encrypt the image"
1254 .name
= BLOCK_OPT_CLUSTER_SIZE
,
1256 .help
= "qcow2 cluster size"
1259 .name
= BLOCK_OPT_PREALLOC
,
1261 .help
= "Preallocation mode (allowed values: off, metadata)"
1266 static BlockDriver bdrv_qcow2
= {
1267 .format_name
= "qcow2",
1268 .instance_size
= sizeof(BDRVQcowState
),
1269 .bdrv_probe
= qcow_probe
,
1270 .bdrv_open
= qcow_open
,
1271 .bdrv_close
= qcow_close
,
1272 .bdrv_create
= qcow_create
,
1273 .bdrv_flush
= qcow_flush
,
1274 .bdrv_is_allocated
= qcow_is_allocated
,
1275 .bdrv_set_key
= qcow_set_key
,
1276 .bdrv_make_empty
= qcow_make_empty
,
1278 .bdrv_aio_readv
= qcow_aio_readv
,
1279 .bdrv_aio_writev
= qcow_aio_writev
,
1280 .bdrv_aio_flush
= qcow_aio_flush
,
1282 .bdrv_truncate
= qcow2_truncate
,
1283 .bdrv_write_compressed
= qcow_write_compressed
,
1285 .bdrv_snapshot_create
= qcow2_snapshot_create
,
1286 .bdrv_snapshot_goto
= qcow2_snapshot_goto
,
1287 .bdrv_snapshot_delete
= qcow2_snapshot_delete
,
1288 .bdrv_snapshot_list
= qcow2_snapshot_list
,
1289 .bdrv_snapshot_load_tmp
= qcow2_snapshot_load_tmp
,
1290 .bdrv_get_info
= qcow_get_info
,
1292 .bdrv_save_vmstate
= qcow_save_vmstate
,
1293 .bdrv_load_vmstate
= qcow_load_vmstate
,
1295 .bdrv_change_backing_file
= qcow2_change_backing_file
,
1297 .create_options
= qcow_create_options
,
1298 .bdrv_check
= qcow_check
,
1301 static void bdrv_qcow2_init(void)
1303 bdrv_register(&bdrv_qcow2
);
1306 block_init(bdrv_qcow2_init
);