2 * Block driver for the QCOW 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/osdep.h"
25 #include "qapi/error.h"
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
28 #include "block/block_int.h"
29 #include "sysemu/block-backend.h"
30 #include "qemu/module.h"
31 #include "qemu/bswap.h"
33 #include "qapi/qmp/qerror.h"
34 #include "qapi/qmp/qstring.h"
35 #include "crypto/block.h"
36 #include "migration/blocker.h"
37 #include "block/crypto.h"
39 /**************************************************************/
40 /* QEMU COW block driver with compression and encryption support */
42 #define QCOW_MAGIC (('Q' << 24) | ('F' << 16) | ('I' << 8) | 0xfb)
43 #define QCOW_VERSION 1
45 #define QCOW_CRYPT_NONE 0
46 #define QCOW_CRYPT_AES 1
48 #define QCOW_OFLAG_COMPRESSED (1LL << 63)
50 typedef struct QCowHeader
{
53 uint64_t backing_file_offset
;
54 uint32_t backing_file_size
;
56 uint64_t size
; /* in bytes */
60 uint32_t crypt_method
;
61 uint64_t l1_table_offset
;
62 } QEMU_PACKED QCowHeader
;
64 #define L2_CACHE_SIZE 16
66 typedef struct BDRVQcowState
{
73 uint64_t cluster_offset_mask
;
74 uint64_t l1_table_offset
;
77 uint64_t l2_cache_offsets
[L2_CACHE_SIZE
];
78 uint32_t l2_cache_counts
[L2_CACHE_SIZE
];
79 uint8_t *cluster_cache
;
80 uint8_t *cluster_data
;
81 uint64_t cluster_cache_offset
;
82 QCryptoBlock
*crypto
; /* Disk encryption format driver */
83 uint32_t crypt_method_header
;
85 Error
*migration_blocker
;
88 static int decompress_cluster(BlockDriverState
*bs
, uint64_t cluster_offset
);
90 static int qcow_probe(const uint8_t *buf
, int buf_size
, const char *filename
)
92 const QCowHeader
*cow_header
= (const void *)buf
;
94 if (buf_size
>= sizeof(QCowHeader
) &&
95 be32_to_cpu(cow_header
->magic
) == QCOW_MAGIC
&&
96 be32_to_cpu(cow_header
->version
) == QCOW_VERSION
)
102 static QemuOptsList qcow_runtime_opts
= {
104 .head
= QTAILQ_HEAD_INITIALIZER(qcow_runtime_opts
.head
),
106 BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET("encrypt."),
107 { /* end of list */ }
111 static int qcow_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
114 BDRVQcowState
*s
= bs
->opaque
;
115 unsigned int len
, i
, shift
;
118 Error
*local_err
= NULL
;
119 QCryptoBlockOpenOptions
*crypto_opts
= NULL
;
120 unsigned int cflags
= 0;
121 QDict
*encryptopts
= NULL
;
122 const char *encryptfmt
;
124 qdict_extract_subqdict(options
, &encryptopts
, "encrypt.");
125 encryptfmt
= qdict_get_try_str(encryptopts
, "format");
127 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
, &child_file
,
134 ret
= bdrv_pread(bs
->file
, 0, &header
, sizeof(header
));
138 be32_to_cpus(&header
.magic
);
139 be32_to_cpus(&header
.version
);
140 be64_to_cpus(&header
.backing_file_offset
);
141 be32_to_cpus(&header
.backing_file_size
);
142 be32_to_cpus(&header
.mtime
);
143 be64_to_cpus(&header
.size
);
144 be32_to_cpus(&header
.crypt_method
);
145 be64_to_cpus(&header
.l1_table_offset
);
147 if (header
.magic
!= QCOW_MAGIC
) {
148 error_setg(errp
, "Image not in qcow format");
152 if (header
.version
!= QCOW_VERSION
) {
153 error_setg(errp
, "Unsupported qcow version %" PRIu32
, header
.version
);
158 if (header
.size
<= 1) {
159 error_setg(errp
, "Image size is too small (must be at least 2 bytes)");
163 if (header
.cluster_bits
< 9 || header
.cluster_bits
> 16) {
164 error_setg(errp
, "Cluster size must be between 512 and 64k");
169 /* l2_bits specifies number of entries; storing a uint64_t in each entry,
170 * so bytes = num_entries << 3. */
171 if (header
.l2_bits
< 9 - 3 || header
.l2_bits
> 16 - 3) {
172 error_setg(errp
, "L2 table size must be between 512 and 64k");
177 s
->crypt_method_header
= header
.crypt_method
;
178 if (s
->crypt_method_header
) {
179 if (bdrv_uses_whitelist() &&
180 s
->crypt_method_header
== QCOW_CRYPT_AES
) {
182 "Use of AES-CBC encrypted qcow images is no longer "
183 "supported in system emulators");
184 error_append_hint(errp
,
185 "You can use 'qemu-img convert' to convert your "
186 "image to an alternative supported format, such "
187 "as unencrypted qcow, or raw with the LUKS "
188 "format instead.\n");
192 if (s
->crypt_method_header
== QCOW_CRYPT_AES
) {
193 if (encryptfmt
&& !g_str_equal(encryptfmt
, "aes")) {
195 "Header reported 'aes' encryption format but "
196 "options specify '%s'", encryptfmt
);
200 qdict_del(encryptopts
, "format");
201 crypto_opts
= block_crypto_open_opts_init(
202 Q_CRYPTO_BLOCK_FORMAT_QCOW
, encryptopts
, errp
);
208 if (flags
& BDRV_O_NO_IO
) {
209 cflags
|= QCRYPTO_BLOCK_OPEN_NO_IO
;
211 s
->crypto
= qcrypto_block_open(crypto_opts
, "encrypt.",
212 NULL
, NULL
, cflags
, errp
);
218 error_setg(errp
, "invalid encryption method in qcow header");
222 bs
->encrypted
= true;
225 error_setg(errp
, "No encryption in image header, but options "
226 "specified format '%s'", encryptfmt
);
231 s
->cluster_bits
= header
.cluster_bits
;
232 s
->cluster_size
= 1 << s
->cluster_bits
;
233 s
->cluster_sectors
= 1 << (s
->cluster_bits
- 9);
234 s
->l2_bits
= header
.l2_bits
;
235 s
->l2_size
= 1 << s
->l2_bits
;
236 bs
->total_sectors
= header
.size
/ 512;
237 s
->cluster_offset_mask
= (1LL << (63 - s
->cluster_bits
)) - 1;
239 /* read the level 1 table */
240 shift
= s
->cluster_bits
+ s
->l2_bits
;
241 if (header
.size
> UINT64_MAX
- (1LL << shift
)) {
242 error_setg(errp
, "Image too large");
246 uint64_t l1_size
= (header
.size
+ (1LL << shift
) - 1) >> shift
;
247 if (l1_size
> INT_MAX
/ sizeof(uint64_t)) {
248 error_setg(errp
, "Image too large");
252 s
->l1_size
= l1_size
;
255 s
->l1_table_offset
= header
.l1_table_offset
;
256 s
->l1_table
= g_try_new(uint64_t, s
->l1_size
);
257 if (s
->l1_table
== NULL
) {
258 error_setg(errp
, "Could not allocate memory for L1 table");
263 ret
= bdrv_pread(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
264 s
->l1_size
* sizeof(uint64_t));
269 for(i
= 0;i
< s
->l1_size
; i
++) {
270 be64_to_cpus(&s
->l1_table
[i
]);
273 /* alloc L2 cache (max. 64k * 16 * 8 = 8 MB) */
275 qemu_try_blockalign(bs
->file
->bs
,
276 s
->l2_size
* L2_CACHE_SIZE
* sizeof(uint64_t));
277 if (s
->l2_cache
== NULL
) {
278 error_setg(errp
, "Could not allocate L2 table cache");
282 s
->cluster_cache
= g_malloc(s
->cluster_size
);
283 s
->cluster_data
= g_malloc(s
->cluster_size
);
284 s
->cluster_cache_offset
= -1;
286 /* read the backing file name */
287 if (header
.backing_file_offset
!= 0) {
288 len
= header
.backing_file_size
;
289 if (len
> 1023 || len
>= sizeof(bs
->backing_file
)) {
290 error_setg(errp
, "Backing file name too long");
294 ret
= bdrv_pread(bs
->file
, header
.backing_file_offset
,
295 bs
->backing_file
, len
);
299 bs
->backing_file
[len
] = '\0';
302 /* Disable migration when qcow images are used */
303 error_setg(&s
->migration_blocker
, "The qcow format used by node '%s' "
304 "does not support live migration",
305 bdrv_get_device_or_node_name(bs
));
306 ret
= migrate_add_blocker(s
->migration_blocker
, &local_err
);
308 error_propagate(errp
, local_err
);
309 error_free(s
->migration_blocker
);
313 QDECREF(encryptopts
);
314 qapi_free_QCryptoBlockOpenOptions(crypto_opts
);
315 qemu_co_mutex_init(&s
->lock
);
320 qemu_vfree(s
->l2_cache
);
321 g_free(s
->cluster_cache
);
322 g_free(s
->cluster_data
);
323 qcrypto_block_free(s
->crypto
);
324 QDECREF(encryptopts
);
325 qapi_free_QCryptoBlockOpenOptions(crypto_opts
);
330 /* We have nothing to do for QCOW reopen, stubs just return
332 static int qcow_reopen_prepare(BDRVReopenState
*state
,
333 BlockReopenQueue
*queue
, Error
**errp
)
343 * 1 to allocate a normal cluster (for sector indexes 'n_start' to
346 * 2 to allocate a compressed cluster of size
347 * 'compressed_size'. 'compressed_size' must be > 0 and <
350 * return 0 if not allocated.
352 static uint64_t get_cluster_offset(BlockDriverState
*bs
,
353 uint64_t offset
, int allocate
,
355 int n_start
, int n_end
)
357 BDRVQcowState
*s
= bs
->opaque
;
358 int min_index
, i
, j
, l1_index
, l2_index
;
359 uint64_t l2_offset
, *l2_table
, cluster_offset
, tmp
;
363 l1_index
= offset
>> (s
->l2_bits
+ s
->cluster_bits
);
364 l2_offset
= s
->l1_table
[l1_index
];
369 /* allocate a new l2 entry */
370 l2_offset
= bdrv_getlength(bs
->file
->bs
);
371 /* round to cluster size */
372 l2_offset
= (l2_offset
+ s
->cluster_size
- 1) & ~(s
->cluster_size
- 1);
373 /* update the L1 entry */
374 s
->l1_table
[l1_index
] = l2_offset
;
375 tmp
= cpu_to_be64(l2_offset
);
376 if (bdrv_pwrite_sync(bs
->file
,
377 s
->l1_table_offset
+ l1_index
* sizeof(tmp
),
378 &tmp
, sizeof(tmp
)) < 0)
382 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
383 if (l2_offset
== s
->l2_cache_offsets
[i
]) {
384 /* increment the hit count */
385 if (++s
->l2_cache_counts
[i
] == 0xffffffff) {
386 for(j
= 0; j
< L2_CACHE_SIZE
; j
++) {
387 s
->l2_cache_counts
[j
] >>= 1;
390 l2_table
= s
->l2_cache
+ (i
<< s
->l2_bits
);
394 /* not found: load a new entry in the least used one */
396 min_count
= 0xffffffff;
397 for(i
= 0; i
< L2_CACHE_SIZE
; i
++) {
398 if (s
->l2_cache_counts
[i
] < min_count
) {
399 min_count
= s
->l2_cache_counts
[i
];
403 l2_table
= s
->l2_cache
+ (min_index
<< s
->l2_bits
);
405 memset(l2_table
, 0, s
->l2_size
* sizeof(uint64_t));
406 if (bdrv_pwrite_sync(bs
->file
, l2_offset
, l2_table
,
407 s
->l2_size
* sizeof(uint64_t)) < 0)
410 if (bdrv_pread(bs
->file
, l2_offset
, l2_table
,
411 s
->l2_size
* sizeof(uint64_t)) !=
412 s
->l2_size
* sizeof(uint64_t))
415 s
->l2_cache_offsets
[min_index
] = l2_offset
;
416 s
->l2_cache_counts
[min_index
] = 1;
418 l2_index
= (offset
>> s
->cluster_bits
) & (s
->l2_size
- 1);
419 cluster_offset
= be64_to_cpu(l2_table
[l2_index
]);
420 if (!cluster_offset
||
421 ((cluster_offset
& QCOW_OFLAG_COMPRESSED
) && allocate
== 1)) {
424 /* allocate a new cluster */
425 if ((cluster_offset
& QCOW_OFLAG_COMPRESSED
) &&
426 (n_end
- n_start
) < s
->cluster_sectors
) {
427 /* if the cluster is already compressed, we must
428 decompress it in the case it is not completely
430 if (decompress_cluster(bs
, cluster_offset
) < 0)
432 cluster_offset
= bdrv_getlength(bs
->file
->bs
);
433 cluster_offset
= (cluster_offset
+ s
->cluster_size
- 1) &
434 ~(s
->cluster_size
- 1);
435 /* write the cluster content */
436 if (bdrv_pwrite(bs
->file
, cluster_offset
, s
->cluster_cache
,
441 cluster_offset
= bdrv_getlength(bs
->file
->bs
);
443 /* round to cluster size */
444 cluster_offset
= (cluster_offset
+ s
->cluster_size
- 1) &
445 ~(s
->cluster_size
- 1);
446 bdrv_truncate(bs
->file
, cluster_offset
+ s
->cluster_size
,
447 PREALLOC_MODE_OFF
, NULL
);
448 /* if encrypted, we must initialize the cluster
449 content which won't be written */
451 (n_end
- n_start
) < s
->cluster_sectors
) {
454 start_sect
= (offset
& ~(s
->cluster_size
- 1)) >> 9;
455 for(i
= 0; i
< s
->cluster_sectors
; i
++) {
456 if (i
< n_start
|| i
>= n_end
) {
458 memset(s
->cluster_data
, 0x00, 512);
459 if (qcrypto_block_encrypt(s
->crypto
, start_sect
+ i
,
467 if (bdrv_pwrite(bs
->file
,
468 cluster_offset
+ i
* 512,
469 s
->cluster_data
, 512) != 512)
474 } else if (allocate
== 2) {
475 cluster_offset
|= QCOW_OFLAG_COMPRESSED
|
476 (uint64_t)compressed_size
<< (63 - s
->cluster_bits
);
479 /* update L2 table */
480 tmp
= cpu_to_be64(cluster_offset
);
481 l2_table
[l2_index
] = tmp
;
482 if (bdrv_pwrite_sync(bs
->file
, l2_offset
+ l2_index
* sizeof(tmp
),
483 &tmp
, sizeof(tmp
)) < 0)
486 return cluster_offset
;
489 static int64_t coroutine_fn
qcow_co_get_block_status(BlockDriverState
*bs
,
490 int64_t sector_num
, int nb_sectors
, int *pnum
, BlockDriverState
**file
)
492 BDRVQcowState
*s
= bs
->opaque
;
493 int index_in_cluster
, n
;
494 uint64_t cluster_offset
;
496 qemu_co_mutex_lock(&s
->lock
);
497 cluster_offset
= get_cluster_offset(bs
, sector_num
<< 9, 0, 0, 0, 0);
498 qemu_co_mutex_unlock(&s
->lock
);
499 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
500 n
= s
->cluster_sectors
- index_in_cluster
;
504 if (!cluster_offset
) {
507 if ((cluster_offset
& QCOW_OFLAG_COMPRESSED
) || s
->crypto
) {
508 return BDRV_BLOCK_DATA
;
510 cluster_offset
|= (index_in_cluster
<< BDRV_SECTOR_BITS
);
511 *file
= bs
->file
->bs
;
512 return BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
| cluster_offset
;
515 static int decompress_buffer(uint8_t *out_buf
, int out_buf_size
,
516 const uint8_t *buf
, int buf_size
)
518 z_stream strm1
, *strm
= &strm1
;
521 memset(strm
, 0, sizeof(*strm
));
523 strm
->next_in
= (uint8_t *)buf
;
524 strm
->avail_in
= buf_size
;
525 strm
->next_out
= out_buf
;
526 strm
->avail_out
= out_buf_size
;
528 ret
= inflateInit2(strm
, -12);
531 ret
= inflate(strm
, Z_FINISH
);
532 out_len
= strm
->next_out
- out_buf
;
533 if ((ret
!= Z_STREAM_END
&& ret
!= Z_BUF_ERROR
) ||
534 out_len
!= out_buf_size
) {
542 static int decompress_cluster(BlockDriverState
*bs
, uint64_t cluster_offset
)
544 BDRVQcowState
*s
= bs
->opaque
;
548 coffset
= cluster_offset
& s
->cluster_offset_mask
;
549 if (s
->cluster_cache_offset
!= coffset
) {
550 csize
= cluster_offset
>> (63 - s
->cluster_bits
);
551 csize
&= (s
->cluster_size
- 1);
552 ret
= bdrv_pread(bs
->file
, coffset
, s
->cluster_data
, csize
);
555 if (decompress_buffer(s
->cluster_cache
, s
->cluster_size
,
556 s
->cluster_data
, csize
) < 0) {
559 s
->cluster_cache_offset
= coffset
;
564 static coroutine_fn
int qcow_co_readv(BlockDriverState
*bs
, int64_t sector_num
,
565 int nb_sectors
, QEMUIOVector
*qiov
)
567 BDRVQcowState
*s
= bs
->opaque
;
568 int index_in_cluster
;
570 uint64_t cluster_offset
;
572 QEMUIOVector hd_qiov
;
577 if (qiov
->niov
> 1) {
578 buf
= orig_buf
= qemu_try_blockalign(bs
, qiov
->size
);
584 buf
= (uint8_t *)qiov
->iov
->iov_base
;
587 qemu_co_mutex_lock(&s
->lock
);
589 while (nb_sectors
!= 0) {
590 /* prepare next request */
591 cluster_offset
= get_cluster_offset(bs
, sector_num
<< 9,
593 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
594 n
= s
->cluster_sectors
- index_in_cluster
;
595 if (n
> nb_sectors
) {
599 if (!cluster_offset
) {
601 /* read from the base image */
602 hd_iov
.iov_base
= (void *)buf
;
603 hd_iov
.iov_len
= n
* 512;
604 qemu_iovec_init_external(&hd_qiov
, &hd_iov
, 1);
605 qemu_co_mutex_unlock(&s
->lock
);
606 ret
= bdrv_co_readv(bs
->backing
, sector_num
, n
, &hd_qiov
);
607 qemu_co_mutex_lock(&s
->lock
);
612 /* Note: in this case, no need to wait */
613 memset(buf
, 0, 512 * n
);
615 } else if (cluster_offset
& QCOW_OFLAG_COMPRESSED
) {
616 /* add AIO support for compressed blocks ? */
617 if (decompress_cluster(bs
, cluster_offset
) < 0) {
621 s
->cluster_cache
+ index_in_cluster
* 512, 512 * n
);
623 if ((cluster_offset
& 511) != 0) {
626 hd_iov
.iov_base
= (void *)buf
;
627 hd_iov
.iov_len
= n
* 512;
628 qemu_iovec_init_external(&hd_qiov
, &hd_iov
, 1);
629 qemu_co_mutex_unlock(&s
->lock
);
630 ret
= bdrv_co_readv(bs
->file
,
631 (cluster_offset
>> 9) + index_in_cluster
,
633 qemu_co_mutex_lock(&s
->lock
);
639 if (qcrypto_block_decrypt(s
->crypto
, sector_num
, buf
,
640 n
* BDRV_SECTOR_SIZE
, &err
) < 0) {
653 qemu_co_mutex_unlock(&s
->lock
);
655 if (qiov
->niov
> 1) {
656 qemu_iovec_from_buf(qiov
, 0, orig_buf
, qiov
->size
);
657 qemu_vfree(orig_buf
);
668 static coroutine_fn
int qcow_co_writev(BlockDriverState
*bs
, int64_t sector_num
,
669 int nb_sectors
, QEMUIOVector
*qiov
)
671 BDRVQcowState
*s
= bs
->opaque
;
672 int index_in_cluster
;
673 uint64_t cluster_offset
;
676 QEMUIOVector hd_qiov
;
680 s
->cluster_cache_offset
= -1; /* disable compressed cache */
682 /* We must always copy the iov when encrypting, so we
683 * don't modify the original data buffer during encryption */
684 if (bs
->encrypted
|| qiov
->niov
> 1) {
685 buf
= orig_buf
= qemu_try_blockalign(bs
, qiov
->size
);
689 qemu_iovec_to_buf(qiov
, 0, buf
, qiov
->size
);
692 buf
= (uint8_t *)qiov
->iov
->iov_base
;
695 qemu_co_mutex_lock(&s
->lock
);
697 while (nb_sectors
!= 0) {
699 index_in_cluster
= sector_num
& (s
->cluster_sectors
- 1);
700 n
= s
->cluster_sectors
- index_in_cluster
;
701 if (n
> nb_sectors
) {
704 cluster_offset
= get_cluster_offset(bs
, sector_num
<< 9, 1, 0,
706 index_in_cluster
+ n
);
707 if (!cluster_offset
|| (cluster_offset
& 511) != 0) {
714 if (qcrypto_block_encrypt(s
->crypto
, sector_num
, buf
,
715 n
* BDRV_SECTOR_SIZE
, &err
) < 0) {
722 hd_iov
.iov_base
= (void *)buf
;
723 hd_iov
.iov_len
= n
* 512;
724 qemu_iovec_init_external(&hd_qiov
, &hd_iov
, 1);
725 qemu_co_mutex_unlock(&s
->lock
);
726 ret
= bdrv_co_writev(bs
->file
,
727 (cluster_offset
>> 9) + index_in_cluster
,
729 qemu_co_mutex_lock(&s
->lock
);
739 qemu_co_mutex_unlock(&s
->lock
);
741 qemu_vfree(orig_buf
);
746 static void qcow_close(BlockDriverState
*bs
)
748 BDRVQcowState
*s
= bs
->opaque
;
750 qcrypto_block_free(s
->crypto
);
753 qemu_vfree(s
->l2_cache
);
754 g_free(s
->cluster_cache
);
755 g_free(s
->cluster_data
);
757 migrate_del_blocker(s
->migration_blocker
);
758 error_free(s
->migration_blocker
);
761 static int qcow_create(const char *filename
, QemuOpts
*opts
, Error
**errp
)
763 int header_size
, backing_filename_len
, l1_size
, shift
, i
;
766 int64_t total_size
= 0;
767 char *backing_file
= NULL
;
768 Error
*local_err
= NULL
;
770 BlockBackend
*qcow_blk
;
771 char *encryptfmt
= NULL
;
773 QDict
*encryptopts
= NULL
;
774 QCryptoBlockCreateOptions
*crypto_opts
= NULL
;
775 QCryptoBlock
*crypto
= NULL
;
777 /* Read out options */
778 total_size
= ROUND_UP(qemu_opt_get_size_del(opts
, BLOCK_OPT_SIZE
, 0),
780 if (total_size
== 0) {
781 error_setg(errp
, "Image size is too small, cannot be zero length");
786 backing_file
= qemu_opt_get_del(opts
, BLOCK_OPT_BACKING_FILE
);
787 encryptfmt
= qemu_opt_get_del(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
789 if (qemu_opt_get(opts
, BLOCK_OPT_ENCRYPT
)) {
790 error_setg(errp
, "Options " BLOCK_OPT_ENCRYPT
" and "
791 BLOCK_OPT_ENCRYPT_FORMAT
" are mutually exclusive");
795 } else if (qemu_opt_get_bool_del(opts
, BLOCK_OPT_ENCRYPT
, false)) {
796 encryptfmt
= g_strdup("aes");
799 ret
= bdrv_create_file(filename
, opts
, &local_err
);
801 error_propagate(errp
, local_err
);
805 qcow_blk
= blk_new_open(filename
, NULL
, NULL
,
806 BDRV_O_RDWR
| BDRV_O_RESIZE
| BDRV_O_PROTOCOL
,
808 if (qcow_blk
== NULL
) {
809 error_propagate(errp
, local_err
);
814 blk_set_allow_write_beyond_eof(qcow_blk
, true);
816 ret
= blk_truncate(qcow_blk
, 0, PREALLOC_MODE_OFF
, errp
);
821 memset(&header
, 0, sizeof(header
));
822 header
.magic
= cpu_to_be32(QCOW_MAGIC
);
823 header
.version
= cpu_to_be32(QCOW_VERSION
);
824 header
.size
= cpu_to_be64(total_size
);
825 header_size
= sizeof(header
);
826 backing_filename_len
= 0;
828 if (strcmp(backing_file
, "fat:")) {
829 header
.backing_file_offset
= cpu_to_be64(header_size
);
830 backing_filename_len
= strlen(backing_file
);
831 header
.backing_file_size
= cpu_to_be32(backing_filename_len
);
832 header_size
+= backing_filename_len
;
834 /* special backing file for vvfat */
835 g_free(backing_file
);
838 header
.cluster_bits
= 9; /* 512 byte cluster to avoid copying
839 unmodified sectors */
840 header
.l2_bits
= 12; /* 32 KB L2 tables */
842 header
.cluster_bits
= 12; /* 4 KB clusters */
843 header
.l2_bits
= 9; /* 4 KB L2 tables */
845 header_size
= (header_size
+ 7) & ~7;
846 shift
= header
.cluster_bits
+ header
.l2_bits
;
847 l1_size
= (total_size
+ (1LL << shift
) - 1) >> shift
;
849 header
.l1_table_offset
= cpu_to_be64(header_size
);
851 options
= qemu_opts_to_qdict(opts
, NULL
);
852 qdict_extract_subqdict(options
, &encryptopts
, "encrypt.");
855 if (!g_str_equal(encryptfmt
, "aes")) {
856 error_setg(errp
, "Unknown encryption format '%s', expected 'aes'",
861 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_AES
);
863 crypto_opts
= block_crypto_create_opts_init(
864 Q_CRYPTO_BLOCK_FORMAT_QCOW
, encryptopts
, errp
);
870 crypto
= qcrypto_block_create(crypto_opts
, "encrypt.",
871 NULL
, NULL
, NULL
, errp
);
877 header
.crypt_method
= cpu_to_be32(QCOW_CRYPT_NONE
);
880 /* write all the data */
881 ret
= blk_pwrite(qcow_blk
, 0, &header
, sizeof(header
), 0);
882 if (ret
!= sizeof(header
)) {
887 ret
= blk_pwrite(qcow_blk
, sizeof(header
),
888 backing_file
, backing_filename_len
, 0);
889 if (ret
!= backing_filename_len
) {
894 tmp
= g_malloc0(BDRV_SECTOR_SIZE
);
895 for (i
= 0; i
< DIV_ROUND_UP(sizeof(uint64_t) * l1_size
, BDRV_SECTOR_SIZE
);
897 ret
= blk_pwrite(qcow_blk
, header_size
+ BDRV_SECTOR_SIZE
* i
,
898 tmp
, BDRV_SECTOR_SIZE
, 0);
899 if (ret
!= BDRV_SECTOR_SIZE
) {
910 QDECREF(encryptopts
);
912 qcrypto_block_free(crypto
);
913 qapi_free_QCryptoBlockCreateOptions(crypto_opts
);
914 g_free(backing_file
);
918 static int qcow_make_empty(BlockDriverState
*bs
)
920 BDRVQcowState
*s
= bs
->opaque
;
921 uint32_t l1_length
= s
->l1_size
* sizeof(uint64_t);
924 memset(s
->l1_table
, 0, l1_length
);
925 if (bdrv_pwrite_sync(bs
->file
, s
->l1_table_offset
, s
->l1_table
,
928 ret
= bdrv_truncate(bs
->file
, s
->l1_table_offset
+ l1_length
,
929 PREALLOC_MODE_OFF
, NULL
);
933 memset(s
->l2_cache
, 0, s
->l2_size
* L2_CACHE_SIZE
* sizeof(uint64_t));
934 memset(s
->l2_cache_offsets
, 0, L2_CACHE_SIZE
* sizeof(uint64_t));
935 memset(s
->l2_cache_counts
, 0, L2_CACHE_SIZE
* sizeof(uint32_t));
940 /* XXX: put compressed sectors first, then all the cluster aligned
941 tables to avoid losing bytes in alignment */
942 static coroutine_fn
int
943 qcow_co_pwritev_compressed(BlockDriverState
*bs
, uint64_t offset
,
944 uint64_t bytes
, QEMUIOVector
*qiov
)
946 BDRVQcowState
*s
= bs
->opaque
;
947 QEMUIOVector hd_qiov
;
951 uint8_t *buf
, *out_buf
;
952 uint64_t cluster_offset
;
954 buf
= qemu_blockalign(bs
, s
->cluster_size
);
955 if (bytes
!= s
->cluster_size
) {
956 if (bytes
> s
->cluster_size
||
957 offset
+ bytes
!= bs
->total_sectors
<< BDRV_SECTOR_BITS
)
962 /* Zero-pad last write if image size is not cluster aligned */
963 memset(buf
+ bytes
, 0, s
->cluster_size
- bytes
);
965 qemu_iovec_to_buf(qiov
, 0, buf
, qiov
->size
);
967 out_buf
= g_malloc(s
->cluster_size
);
969 /* best compression, small window, no zlib header */
970 memset(&strm
, 0, sizeof(strm
));
971 ret
= deflateInit2(&strm
, Z_DEFAULT_COMPRESSION
,
973 9, Z_DEFAULT_STRATEGY
);
979 strm
.avail_in
= s
->cluster_size
;
980 strm
.next_in
= (uint8_t *)buf
;
981 strm
.avail_out
= s
->cluster_size
;
982 strm
.next_out
= out_buf
;
984 ret
= deflate(&strm
, Z_FINISH
);
985 if (ret
!= Z_STREAM_END
&& ret
!= Z_OK
) {
990 out_len
= strm
.next_out
- out_buf
;
994 if (ret
!= Z_STREAM_END
|| out_len
>= s
->cluster_size
) {
995 /* could not compress: write normal cluster */
996 ret
= qcow_co_writev(bs
, offset
>> BDRV_SECTOR_BITS
,
997 bytes
>> BDRV_SECTOR_BITS
, qiov
);
1003 qemu_co_mutex_lock(&s
->lock
);
1004 cluster_offset
= get_cluster_offset(bs
, offset
, 2, out_len
, 0, 0);
1005 qemu_co_mutex_unlock(&s
->lock
);
1006 if (cluster_offset
== 0) {
1010 cluster_offset
&= s
->cluster_offset_mask
;
1012 iov
= (struct iovec
) {
1013 .iov_base
= out_buf
,
1016 qemu_iovec_init_external(&hd_qiov
, &iov
, 1);
1017 ret
= bdrv_co_pwritev(bs
->file
, cluster_offset
, out_len
, &hd_qiov
, 0);
1029 static int qcow_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1031 BDRVQcowState
*s
= bs
->opaque
;
1032 bdi
->cluster_size
= s
->cluster_size
;
1036 static QemuOptsList qcow_create_opts
= {
1037 .name
= "qcow-create-opts",
1038 .head
= QTAILQ_HEAD_INITIALIZER(qcow_create_opts
.head
),
1041 .name
= BLOCK_OPT_SIZE
,
1042 .type
= QEMU_OPT_SIZE
,
1043 .help
= "Virtual disk size"
1046 .name
= BLOCK_OPT_BACKING_FILE
,
1047 .type
= QEMU_OPT_STRING
,
1048 .help
= "File name of a base image"
1051 .name
= BLOCK_OPT_ENCRYPT
,
1052 .type
= QEMU_OPT_BOOL
,
1053 .help
= "Encrypt the image with format 'aes'. (Deprecated "
1054 "in favor of " BLOCK_OPT_ENCRYPT_FORMAT
"=aes)",
1057 .name
= BLOCK_OPT_ENCRYPT_FORMAT
,
1058 .type
= QEMU_OPT_STRING
,
1059 .help
= "Encrypt the image, format choices: 'aes'",
1061 BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET("encrypt."),
1062 { /* end of list */ }
1066 static BlockDriver bdrv_qcow
= {
1067 .format_name
= "qcow",
1068 .instance_size
= sizeof(BDRVQcowState
),
1069 .bdrv_probe
= qcow_probe
,
1070 .bdrv_open
= qcow_open
,
1071 .bdrv_close
= qcow_close
,
1072 .bdrv_child_perm
= bdrv_format_default_perms
,
1073 .bdrv_reopen_prepare
= qcow_reopen_prepare
,
1074 .bdrv_create
= qcow_create
,
1075 .bdrv_has_zero_init
= bdrv_has_zero_init_1
,
1076 .supports_backing
= true,
1078 .bdrv_co_readv
= qcow_co_readv
,
1079 .bdrv_co_writev
= qcow_co_writev
,
1080 .bdrv_co_get_block_status
= qcow_co_get_block_status
,
1082 .bdrv_make_empty
= qcow_make_empty
,
1083 .bdrv_co_pwritev_compressed
= qcow_co_pwritev_compressed
,
1084 .bdrv_get_info
= qcow_get_info
,
1086 .create_opts
= &qcow_create_opts
,
1089 static void bdrv_qcow_init(void)
1091 bdrv_register(&bdrv_qcow
);
1094 block_init(bdrv_qcow_init
);