]> git.proxmox.com Git - mirror_qemu.git/blame - block/qcow2.c
Make glib mandatory and fixup utils appropriately
[mirror_qemu.git] / block / qcow2.c
CommitLineData
585f8587
FB
1/*
2 * Block driver for the QCOW version 2 format
5fafdf24 3 *
585f8587 4 * Copyright (c) 2004-2006 Fabrice Bellard
5fafdf24 5 *
585f8587
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
faf07963 24#include "qemu-common.h"
585f8587 25#include "block_int.h"
5efa9d5a 26#include "module.h"
585f8587
FB
27#include <zlib.h>
28#include "aes.h"
f7d0fe02 29#include "block/qcow2.h"
a9420734 30#include "qemu-error.h"
e8cdcec1 31#include "qerror.h"
585f8587
FB
32
33/*
34 Differences with QCOW:
35
36 - Support for multiple incremental snapshots.
37 - Memory management by reference counts.
38 - Clusters which have a reference count of one have the bit
39 QCOW_OFLAG_COPIED to optimize write performance.
5fafdf24 40 - Size of compressed clusters is stored in sectors to reduce bit usage
585f8587
FB
41 in the cluster offsets.
42 - Support for storing additional data (such as the VM state) in the
3b46e624 43 snapshots.
585f8587
FB
44 - If a backing store is used, the cluster size is not constrained
45 (could be backported to QCOW).
46 - L2 tables have always a size of one cluster.
47*/
48
9b80ddf3
AL
49
50typedef struct {
51 uint32_t magic;
52 uint32_t len;
53} QCowExtension;
7c80ab3f
JS
54#define QCOW2_EXT_MAGIC_END 0
55#define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
9b80ddf3 56
7c80ab3f 57static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename)
585f8587
FB
58{
59 const QCowHeader *cow_header = (const void *)buf;
3b46e624 60
585f8587
FB
61 if (buf_size >= sizeof(QCowHeader) &&
62 be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
e8cdcec1 63 be32_to_cpu(cow_header->version) >= QCOW_VERSION)
585f8587
FB
64 return 100;
65 else
66 return 0;
67}
68
9b80ddf3
AL
69
70/*
71 * read qcow2 extension and fill bs
72 * start reading from start_offset
73 * finish reading upon magic of value 0 or when end_offset reached
74 * unknown magic is skipped (future extension this version knows nothing about)
75 * return 0 upon success, non-0 otherwise
76 */
7c80ab3f
JS
77static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
78 uint64_t end_offset)
9b80ddf3 79{
9b80ddf3
AL
80 QCowExtension ext;
81 uint64_t offset;
82
83#ifdef DEBUG_EXT
7c80ab3f 84 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
9b80ddf3
AL
85#endif
86 offset = start_offset;
87 while (offset < end_offset) {
88
89#ifdef DEBUG_EXT
90 /* Sanity check */
91 if (offset > s->cluster_size)
7c80ab3f 92 printf("qcow2_read_extension: suspicious offset %lu\n", offset);
9b80ddf3
AL
93
94 printf("attemting to read extended header in offset %lu\n", offset);
95#endif
96
66f82cee 97 if (bdrv_pread(bs->file, offset, &ext, sizeof(ext)) != sizeof(ext)) {
7c80ab3f 98 fprintf(stderr, "qcow2_read_extension: ERROR: "
0bfcd599
BS
99 "pread fail from offset %" PRIu64 "\n",
100 offset);
9b80ddf3
AL
101 return 1;
102 }
103 be32_to_cpus(&ext.magic);
104 be32_to_cpus(&ext.len);
105 offset += sizeof(ext);
106#ifdef DEBUG_EXT
107 printf("ext.magic = 0x%x\n", ext.magic);
108#endif
109 switch (ext.magic) {
7c80ab3f 110 case QCOW2_EXT_MAGIC_END:
9b80ddf3 111 return 0;
f965509c 112
7c80ab3f 113 case QCOW2_EXT_MAGIC_BACKING_FORMAT:
f965509c
AL
114 if (ext.len >= sizeof(bs->backing_format)) {
115 fprintf(stderr, "ERROR: ext_backing_format: len=%u too large"
4c978075 116 " (>=%zu)\n",
f965509c
AL
117 ext.len, sizeof(bs->backing_format));
118 return 2;
119 }
66f82cee 120 if (bdrv_pread(bs->file, offset , bs->backing_format,
f965509c
AL
121 ext.len) != ext.len)
122 return 3;
123 bs->backing_format[ext.len] = '\0';
124#ifdef DEBUG_EXT
125 printf("Qcow2: Got format extension %s\n", bs->backing_format);
126#endif
e1c7f0e3 127 offset = ((offset + ext.len + 7) & ~7);
f965509c
AL
128 break;
129
9b80ddf3
AL
130 default:
131 /* unknown magic -- just skip it */
e1c7f0e3 132 offset = ((offset + ext.len + 7) & ~7);
9b80ddf3
AL
133 break;
134 }
135 }
136
137 return 0;
138}
139
140
7c80ab3f 141static int qcow2_open(BlockDriverState *bs, int flags)
585f8587
FB
142{
143 BDRVQcowState *s = bs->opaque;
6d85a57e 144 int len, i, ret = 0;
585f8587 145 QCowHeader header;
9b80ddf3 146 uint64_t ext_end;
29c1a730 147 bool writethrough;
585f8587 148
6d85a57e
JS
149 ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
150 if (ret < 0) {
585f8587 151 goto fail;
6d85a57e 152 }
585f8587
FB
153 be32_to_cpus(&header.magic);
154 be32_to_cpus(&header.version);
155 be64_to_cpus(&header.backing_file_offset);
156 be32_to_cpus(&header.backing_file_size);
157 be64_to_cpus(&header.size);
158 be32_to_cpus(&header.cluster_bits);
159 be32_to_cpus(&header.crypt_method);
160 be64_to_cpus(&header.l1_table_offset);
161 be32_to_cpus(&header.l1_size);
162 be64_to_cpus(&header.refcount_table_offset);
163 be32_to_cpus(&header.refcount_table_clusters);
164 be64_to_cpus(&header.snapshots_offset);
165 be32_to_cpus(&header.nb_snapshots);
3b46e624 166
e8cdcec1 167 if (header.magic != QCOW_MAGIC) {
6d85a57e 168 ret = -EINVAL;
585f8587 169 goto fail;
6d85a57e 170 }
e8cdcec1
KW
171 if (header.version != QCOW_VERSION) {
172 char version[64];
173 snprintf(version, sizeof(version), "QCOW version %d", header.version);
174 qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
175 bs->device_name, "qcow2", version);
176 ret = -ENOTSUP;
177 goto fail;
178 }
d191d12d 179 if (header.cluster_bits < MIN_CLUSTER_BITS ||
6d85a57e
JS
180 header.cluster_bits > MAX_CLUSTER_BITS) {
181 ret = -EINVAL;
585f8587 182 goto fail;
6d85a57e
JS
183 }
184 if (header.crypt_method > QCOW_CRYPT_AES) {
185 ret = -EINVAL;
585f8587 186 goto fail;
6d85a57e 187 }
585f8587 188 s->crypt_method_header = header.crypt_method;
6d85a57e 189 if (s->crypt_method_header) {
585f8587 190 bs->encrypted = 1;
6d85a57e 191 }
585f8587
FB
192 s->cluster_bits = header.cluster_bits;
193 s->cluster_size = 1 << s->cluster_bits;
194 s->cluster_sectors = 1 << (s->cluster_bits - 9);
195 s->l2_bits = s->cluster_bits - 3; /* L2 is always one cluster */
196 s->l2_size = 1 << s->l2_bits;
197 bs->total_sectors = header.size / 512;
198 s->csize_shift = (62 - (s->cluster_bits - 8));
199 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
200 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
201 s->refcount_table_offset = header.refcount_table_offset;
5fafdf24 202 s->refcount_table_size =
585f8587
FB
203 header.refcount_table_clusters << (s->cluster_bits - 3);
204
205 s->snapshots_offset = header.snapshots_offset;
206 s->nb_snapshots = header.nb_snapshots;
207
208 /* read the level 1 table */
209 s->l1_size = header.l1_size;
419b19d9 210 s->l1_vm_state_index = size_to_l1(s, header.size);
585f8587
FB
211 /* the L1 table must contain at least enough entries to put
212 header.size bytes */
6d85a57e
JS
213 if (s->l1_size < s->l1_vm_state_index) {
214 ret = -EINVAL;
585f8587 215 goto fail;
6d85a57e 216 }
585f8587 217 s->l1_table_offset = header.l1_table_offset;
d191d12d
SW
218 if (s->l1_size > 0) {
219 s->l1_table = qemu_mallocz(
220 align_offset(s->l1_size * sizeof(uint64_t), 512));
6d85a57e
JS
221 ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
222 s->l1_size * sizeof(uint64_t));
223 if (ret < 0) {
d191d12d 224 goto fail;
6d85a57e 225 }
d191d12d
SW
226 for(i = 0;i < s->l1_size; i++) {
227 be64_to_cpus(&s->l1_table[i]);
228 }
585f8587 229 }
29c1a730
KW
230
231 /* alloc L2 table/refcount block cache */
a6599793 232 writethrough = ((flags & BDRV_O_CACHE_WB) == 0);
29c1a730
KW
233 s->l2_table_cache = qcow2_cache_create(bs, L2_CACHE_SIZE, writethrough);
234 s->refcount_block_cache = qcow2_cache_create(bs, REFCOUNT_CACHE_SIZE,
235 writethrough);
236
585f8587 237 s->cluster_cache = qemu_malloc(s->cluster_size);
585f8587 238 /* one more sector for decompressed data alignment */
095a9c58
AL
239 s->cluster_data = qemu_malloc(QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
240 + 512);
585f8587 241 s->cluster_cache_offset = -1;
3b46e624 242
6d85a57e
JS
243 ret = qcow2_refcount_init(bs);
244 if (ret != 0) {
585f8587 245 goto fail;
6d85a57e 246 }
585f8587 247
72cf2d4f 248 QLIST_INIT(&s->cluster_allocs);
f214978a 249
9b80ddf3 250 /* read qcow2 extensions */
6d85a57e 251 if (header.backing_file_offset) {
9b80ddf3 252 ext_end = header.backing_file_offset;
6d85a57e 253 } else {
9b80ddf3 254 ext_end = s->cluster_size;
6d85a57e
JS
255 }
256 if (qcow2_read_extensions(bs, sizeof(header), ext_end)) {
257 ret = -EINVAL;
9b80ddf3 258 goto fail;
6d85a57e 259 }
9b80ddf3 260
585f8587
FB
261 /* read the backing file name */
262 if (header.backing_file_offset != 0) {
263 len = header.backing_file_size;
6d85a57e 264 if (len > 1023) {
585f8587 265 len = 1023;
6d85a57e
JS
266 }
267 ret = bdrv_pread(bs->file, header.backing_file_offset,
268 bs->backing_file, len);
269 if (ret < 0) {
585f8587 270 goto fail;
6d85a57e 271 }
585f8587
FB
272 bs->backing_file[len] = '\0';
273 }
6d85a57e
JS
274 if (qcow2_read_snapshots(bs) < 0) {
275 ret = -EINVAL;
585f8587 276 goto fail;
6d85a57e 277 }
585f8587 278
68d100e9
KW
279 /* Initialise locks */
280 qemu_co_mutex_init(&s->lock);
281
585f8587 282#ifdef DEBUG_ALLOC
14899cdf 283 qcow2_check_refcounts(bs);
585f8587 284#endif
6d85a57e 285 return ret;
585f8587
FB
286
287 fail:
ed6ccf0f
KW
288 qcow2_free_snapshots(bs);
289 qcow2_refcount_close(bs);
585f8587 290 qemu_free(s->l1_table);
29c1a730
KW
291 if (s->l2_table_cache) {
292 qcow2_cache_destroy(bs, s->l2_table_cache);
293 }
585f8587
FB
294 qemu_free(s->cluster_cache);
295 qemu_free(s->cluster_data);
6d85a57e 296 return ret;
585f8587
FB
297}
298
7c80ab3f 299static int qcow2_set_key(BlockDriverState *bs, const char *key)
585f8587
FB
300{
301 BDRVQcowState *s = bs->opaque;
302 uint8_t keybuf[16];
303 int len, i;
3b46e624 304
585f8587
FB
305 memset(keybuf, 0, 16);
306 len = strlen(key);
307 if (len > 16)
308 len = 16;
309 /* XXX: we could compress the chars to 7 bits to increase
310 entropy */
311 for(i = 0;i < len;i++) {
312 keybuf[i] = key[i];
313 }
314 s->crypt_method = s->crypt_method_header;
315
316 if (AES_set_encrypt_key(keybuf, 128, &s->aes_encrypt_key) != 0)
317 return -1;
318 if (AES_set_decrypt_key(keybuf, 128, &s->aes_decrypt_key) != 0)
319 return -1;
320#if 0
321 /* test */
322 {
323 uint8_t in[16];
324 uint8_t out[16];
325 uint8_t tmp[16];
326 for(i=0;i<16;i++)
327 in[i] = i;
328 AES_encrypt(in, tmp, &s->aes_encrypt_key);
329 AES_decrypt(tmp, out, &s->aes_decrypt_key);
330 for(i = 0; i < 16; i++)
331 printf(" %02x", tmp[i]);
332 printf("\n");
333 for(i = 0; i < 16; i++)
334 printf(" %02x", out[i]);
335 printf("\n");
336 }
337#endif
338 return 0;
339}
340
7c80ab3f
JS
341static int qcow2_is_allocated(BlockDriverState *bs, int64_t sector_num,
342 int nb_sectors, int *pnum)
585f8587 343{
585f8587 344 uint64_t cluster_offset;
1c46efaa 345 int ret;
585f8587 346
095a9c58 347 *pnum = nb_sectors;
1c46efaa
KW
348 /* FIXME We can get errors here, but the bdrv_is_allocated interface can't
349 * pass them on today */
350 ret = qcow2_get_cluster_offset(bs, sector_num << 9, pnum, &cluster_offset);
351 if (ret < 0) {
352 *pnum = 0;
353 }
095a9c58 354
585f8587
FB
355 return (cluster_offset != 0);
356}
357
a9465922 358/* handle reading after the end of the backing file */
bd28f835
KW
359int qcow2_backing_read1(BlockDriverState *bs, QEMUIOVector *qiov,
360 int64_t sector_num, int nb_sectors)
a9465922
FB
361{
362 int n1;
363 if ((sector_num + nb_sectors) <= bs->total_sectors)
364 return nb_sectors;
365 if (sector_num >= bs->total_sectors)
366 n1 = 0;
367 else
368 n1 = bs->total_sectors - sector_num;
bd28f835 369
e0d9c6f9 370 qemu_iovec_memset_skip(qiov, 0, 512 * (nb_sectors - n1), 512 * n1);
bd28f835 371
a9465922
FB
372 return n1;
373}
374
ce1a14dc
PB
375typedef struct QCowAIOCB {
376 BlockDriverAIOCB common;
585f8587 377 int64_t sector_num;
f141eafe 378 QEMUIOVector *qiov;
7b88e48b
CH
379 int remaining_sectors;
380 int cur_nr_sectors; /* number of sectors in current iteration */
bd28f835 381 uint64_t bytes_done;
585f8587 382 uint64_t cluster_offset;
5fafdf24 383 uint8_t *cluster_data;
42496d62 384 bool is_write;
c87c0672 385 QEMUIOVector hd_qiov;
1490791f 386 QEMUBH *bh;
e976c6a1 387 QCowL2Meta l2meta;
72cf2d4f 388 QLIST_ENTRY(QCowAIOCB) next_depend;
585f8587
FB
389} QCowAIOCB;
390
7c80ab3f 391static void qcow2_aio_cancel(BlockDriverAIOCB *blockacb)
c16b5a2c 392{
b666d239 393 QCowAIOCB *acb = container_of(blockacb, QCowAIOCB, common);
c16b5a2c
CH
394 qemu_aio_release(acb);
395}
396
7c80ab3f 397static AIOPool qcow2_aio_pool = {
c16b5a2c 398 .aiocb_size = sizeof(QCowAIOCB),
7c80ab3f 399 .cancel = qcow2_aio_cancel,
c16b5a2c
CH
400};
401
68d100e9
KW
402/*
403 * Returns 0 when the request is completed successfully, 1 when there is still
404 * a part left to do and -errno in error cases.
405 */
406static int qcow2_aio_read_cb(QCowAIOCB *acb)
585f8587 407{
ce1a14dc 408 BlockDriverState *bs = acb->common.bs;
585f8587 409 BDRVQcowState *s = bs->opaque;
a9465922 410 int index_in_cluster, n1;
68d100e9 411 int ret;
585f8587 412
585f8587 413 /* post process the read buffer */
ce1a14dc 414 if (!acb->cluster_offset) {
585f8587 415 /* nothing to do */
ce1a14dc 416 } else if (acb->cluster_offset & QCOW_OFLAG_COMPRESSED) {
585f8587
FB
417 /* nothing to do */
418 } else {
419 if (s->crypt_method) {
bd28f835
KW
420 qcow2_encrypt_sectors(s, acb->sector_num, acb->cluster_data,
421 acb->cluster_data, acb->cur_nr_sectors, 0, &s->aes_decrypt_key);
422 qemu_iovec_reset(&acb->hd_qiov);
423 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
424 acb->cur_nr_sectors * 512);
425 qemu_iovec_from_buffer(&acb->hd_qiov, acb->cluster_data,
426 512 * acb->cur_nr_sectors);
585f8587
FB
427 }
428 }
429
7b88e48b
CH
430 acb->remaining_sectors -= acb->cur_nr_sectors;
431 acb->sector_num += acb->cur_nr_sectors;
bd28f835 432 acb->bytes_done += acb->cur_nr_sectors * 512;
585f8587 433
7b88e48b 434 if (acb->remaining_sectors == 0) {
585f8587 435 /* request completed */
68d100e9 436 return 0;
585f8587 437 }
3b46e624 438
585f8587 439 /* prepare next AIO request */
7b88e48b 440 acb->cur_nr_sectors = acb->remaining_sectors;
bd28f835
KW
441 if (s->crypt_method) {
442 acb->cur_nr_sectors = MIN(acb->cur_nr_sectors,
443 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
444 }
445
1c46efaa
KW
446 ret = qcow2_get_cluster_offset(bs, acb->sector_num << 9,
447 &acb->cur_nr_sectors, &acb->cluster_offset);
448 if (ret < 0) {
68d100e9 449 return ret;
1c46efaa
KW
450 }
451
ce1a14dc 452 index_in_cluster = acb->sector_num & (s->cluster_sectors - 1);
ce1a14dc 453
bd28f835
KW
454 qemu_iovec_reset(&acb->hd_qiov);
455 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
456 acb->cur_nr_sectors * 512);
457
ce1a14dc 458 if (!acb->cluster_offset) {
bd28f835 459
585f8587
FB
460 if (bs->backing_hd) {
461 /* read from the base image */
bd28f835
KW
462 n1 = qcow2_backing_read1(bs->backing_hd, &acb->hd_qiov,
463 acb->sector_num, acb->cur_nr_sectors);
a9465922 464 if (n1 > 0) {
66f82cee 465 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
68d100e9
KW
466 qemu_co_mutex_unlock(&s->lock);
467 ret = bdrv_co_readv(bs->backing_hd, acb->sector_num,
468 n1, &acb->hd_qiov);
469 qemu_co_mutex_lock(&s->lock);
470 if (ret < 0) {
471 return ret;
3ab4c7e9 472 }
a9465922 473 }
68d100e9 474 return 1;
585f8587
FB
475 } else {
476 /* Note: in this case, no need to wait */
bd28f835 477 qemu_iovec_memset(&acb->hd_qiov, 0, 512 * acb->cur_nr_sectors);
68d100e9 478 return 1;
585f8587 479 }
ce1a14dc 480 } else if (acb->cluster_offset & QCOW_OFLAG_COMPRESSED) {
585f8587 481 /* add AIO support for compressed blocks ? */
8af36488
KW
482 ret = qcow2_decompress_cluster(bs, acb->cluster_offset);
483 if (ret < 0) {
68d100e9 484 return ret;
8af36488 485 }
bd28f835
KW
486
487 qemu_iovec_from_buffer(&acb->hd_qiov,
488 s->cluster_cache + index_in_cluster * 512,
489 512 * acb->cur_nr_sectors);
490
68d100e9 491 return 1;
585f8587 492 } else {
ce1a14dc 493 if ((acb->cluster_offset & 511) != 0) {
68d100e9 494 return -EIO;
585f8587 495 }
c87c0672 496
bd28f835
KW
497 if (s->crypt_method) {
498 /*
499 * For encrypted images, read everything into a temporary
500 * contiguous buffer on which the AES functions can work.
501 */
502 if (!acb->cluster_data) {
503 acb->cluster_data =
504 qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
505 }
506
507 assert(acb->cur_nr_sectors <=
508 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
509 qemu_iovec_reset(&acb->hd_qiov);
510 qemu_iovec_add(&acb->hd_qiov, acb->cluster_data,
511 512 * acb->cur_nr_sectors);
512 }
513
66f82cee 514 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
68d100e9
KW
515 qemu_co_mutex_unlock(&s->lock);
516 ret = bdrv_co_readv(bs->file,
5fafdf24 517 (acb->cluster_offset >> 9) + index_in_cluster,
68d100e9
KW
518 acb->cur_nr_sectors, &acb->hd_qiov);
519 qemu_co_mutex_lock(&s->lock);
520 if (ret < 0) {
521 return ret;
171e3d6b 522 }
f141eafe
AL
523 }
524
68d100e9 525 return 1;
585f8587
FB
526}
527
7c80ab3f
JS
528static QCowAIOCB *qcow2_aio_setup(BlockDriverState *bs, int64_t sector_num,
529 QEMUIOVector *qiov, int nb_sectors,
530 BlockDriverCompletionFunc *cb,
531 void *opaque, int is_write)
585f8587 532{
ce1a14dc
PB
533 QCowAIOCB *acb;
534
7c80ab3f 535 acb = qemu_aio_get(&qcow2_aio_pool, bs, cb, opaque);
ce1a14dc
PB
536 if (!acb)
537 return NULL;
ce1a14dc 538 acb->sector_num = sector_num;
f141eafe 539 acb->qiov = qiov;
42496d62 540 acb->is_write = is_write;
bd28f835 541
6f5f060b 542 qemu_iovec_init(&acb->hd_qiov, qiov->niov);
bd28f835
KW
543
544 acb->bytes_done = 0;
7b88e48b
CH
545 acb->remaining_sectors = nb_sectors;
546 acb->cur_nr_sectors = 0;
ce1a14dc 547 acb->cluster_offset = 0;
e976c6a1 548 acb->l2meta.nb_clusters = 0;
68d100e9 549 qemu_co_queue_init(&acb->l2meta.dependent_requests);
ce1a14dc
PB
550 return acb;
551}
552
68d100e9
KW
553static int qcow2_co_readv(BlockDriverState *bs, int64_t sector_num,
554 int nb_sectors, QEMUIOVector *qiov)
ce1a14dc 555{
68d100e9 556 BDRVQcowState *s = bs->opaque;
ce1a14dc 557 QCowAIOCB *acb;
42496d62 558 int ret;
ce1a14dc 559
68d100e9 560 acb = qcow2_aio_setup(bs, sector_num, qiov, nb_sectors, NULL, NULL, 0);
585f8587 561
68d100e9
KW
562 qemu_co_mutex_lock(&s->lock);
563 do {
564 ret = qcow2_aio_read_cb(acb);
565 } while (ret > 0);
566 qemu_co_mutex_unlock(&s->lock);
42496d62 567
68d100e9
KW
568 qemu_iovec_destroy(&acb->hd_qiov);
569 qemu_aio_release(acb);
570
571 return ret;
585f8587
FB
572}
573
68d100e9 574static void run_dependent_requests(BDRVQcowState *s, QCowL2Meta *m)
f214978a 575{
f214978a
KW
576 /* Take the request off the list of running requests */
577 if (m->nb_clusters != 0) {
72cf2d4f 578 QLIST_REMOVE(m, next_in_flight);
f214978a
KW
579 }
580
d4c146f0 581 /* Restart all dependent requests */
68d100e9
KW
582 if (!qemu_co_queue_empty(&m->dependent_requests)) {
583 qemu_co_mutex_unlock(&s->lock);
584 while(qemu_co_queue_next(&m->dependent_requests));
585 qemu_co_mutex_lock(&s->lock);
f214978a 586 }
f214978a
KW
587}
588
68d100e9
KW
589/*
590 * Returns 0 when the request is completed successfully, 1 when there is still
591 * a part left to do and -errno in error cases.
592 */
593static int qcow2_aio_write_cb(QCowAIOCB *acb)
585f8587 594{
ce1a14dc 595 BlockDriverState *bs = acb->common.bs;
585f8587 596 BDRVQcowState *s = bs->opaque;
585f8587 597 int index_in_cluster;
095a9c58 598 int n_end;
68d100e9 599 int ret;
ce1a14dc 600
68d100e9 601 ret = qcow2_alloc_cluster_link_l2(bs, &acb->l2meta);
f214978a 602
68d100e9 603 run_dependent_requests(s, &acb->l2meta);
f214978a 604
68d100e9
KW
605 if (ret < 0) {
606 return ret;
607 }
585f8587 608
7b88e48b
CH
609 acb->remaining_sectors -= acb->cur_nr_sectors;
610 acb->sector_num += acb->cur_nr_sectors;
6f5f060b 611 acb->bytes_done += acb->cur_nr_sectors * 512;
585f8587 612
7b88e48b 613 if (acb->remaining_sectors == 0) {
585f8587 614 /* request completed */
68d100e9 615 return 0;
585f8587 616 }
3b46e624 617
ce1a14dc 618 index_in_cluster = acb->sector_num & (s->cluster_sectors - 1);
7b88e48b 619 n_end = index_in_cluster + acb->remaining_sectors;
095a9c58
AL
620 if (s->crypt_method &&
621 n_end > QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors)
622 n_end = QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors;
623
148da7ea 624 ret = qcow2_alloc_cluster_offset(bs, acb->sector_num << 9,
7b88e48b 625 index_in_cluster, n_end, &acb->cur_nr_sectors, &acb->l2meta);
148da7ea 626 if (ret < 0) {
68d100e9 627 return ret;
148da7ea
KW
628 }
629
630 acb->cluster_offset = acb->l2meta.cluster_offset;
148da7ea
KW
631 assert((acb->cluster_offset & 511) == 0);
632
6f5f060b
KW
633 qemu_iovec_reset(&acb->hd_qiov);
634 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
635 acb->cur_nr_sectors * 512);
636
585f8587 637 if (s->crypt_method) {
ce1a14dc 638 if (!acb->cluster_data) {
095a9c58
AL
639 acb->cluster_data = qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS *
640 s->cluster_size);
585f8587 641 }
6f5f060b
KW
642
643 assert(acb->hd_qiov.size <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
644 qemu_iovec_to_buffer(&acb->hd_qiov, acb->cluster_data);
645
646 qcow2_encrypt_sectors(s, acb->sector_num, acb->cluster_data,
647 acb->cluster_data, acb->cur_nr_sectors, 1, &s->aes_encrypt_key);
648
649 qemu_iovec_reset(&acb->hd_qiov);
650 qemu_iovec_add(&acb->hd_qiov, acb->cluster_data,
651 acb->cur_nr_sectors * 512);
585f8587 652 }
6f5f060b 653
66f82cee 654 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
68d100e9
KW
655 qemu_co_mutex_unlock(&s->lock);
656 ret = bdrv_co_writev(bs->file,
657 (acb->cluster_offset >> 9) + index_in_cluster,
658 acb->cur_nr_sectors, &acb->hd_qiov);
659 qemu_co_mutex_lock(&s->lock);
660 if (ret < 0) {
661 return ret;
171e3d6b 662 }
f141eafe 663
68d100e9 664 return 1;
585f8587
FB
665}
666
68d100e9
KW
667static int qcow2_co_writev(BlockDriverState *bs,
668 int64_t sector_num,
669 int nb_sectors,
670 QEMUIOVector *qiov)
585f8587 671{
585f8587 672 BDRVQcowState *s = bs->opaque;
ce1a14dc 673 QCowAIOCB *acb;
42496d62 674 int ret;
3b46e624 675
68d100e9 676 acb = qcow2_aio_setup(bs, sector_num, qiov, nb_sectors, NULL, NULL, 1);
585f8587
FB
677 s->cluster_cache_offset = -1; /* disable compressed cache */
678
68d100e9
KW
679 qemu_co_mutex_lock(&s->lock);
680 do {
681 ret = qcow2_aio_write_cb(acb);
682 } while (ret > 0);
683 qemu_co_mutex_unlock(&s->lock);
3b46e624 684
68d100e9
KW
685 qemu_iovec_destroy(&acb->hd_qiov);
686 qemu_aio_release(acb);
42496d62 687
68d100e9 688 return ret;
585f8587
FB
689}
690
7c80ab3f 691static void qcow2_close(BlockDriverState *bs)
585f8587
FB
692{
693 BDRVQcowState *s = bs->opaque;
694 qemu_free(s->l1_table);
29c1a730
KW
695
696 qcow2_cache_flush(bs, s->l2_table_cache);
697 qcow2_cache_flush(bs, s->refcount_block_cache);
698
699 qcow2_cache_destroy(bs, s->l2_table_cache);
700 qcow2_cache_destroy(bs, s->refcount_block_cache);
701
585f8587
FB
702 qemu_free(s->cluster_cache);
703 qemu_free(s->cluster_data);
ed6ccf0f 704 qcow2_refcount_close(bs);
585f8587
FB
705}
706
756e6736
KW
707/*
708 * Updates the variable length parts of the qcow2 header, i.e. the backing file
709 * name and all extensions. qcow2 was not designed to allow such changes, so if
710 * we run out of space (we can only use the first cluster) this function may
711 * fail.
712 *
713 * Returns 0 on success, -errno in error cases.
714 */
715static int qcow2_update_ext_header(BlockDriverState *bs,
716 const char *backing_file, const char *backing_fmt)
717{
718 size_t backing_file_len = 0;
719 size_t backing_fmt_len = 0;
720 BDRVQcowState *s = bs->opaque;
721 QCowExtension ext_backing_fmt = {0, 0};
722 int ret;
723
724 /* Backing file format doesn't make sense without a backing file */
725 if (backing_fmt && !backing_file) {
726 return -EINVAL;
727 }
728
729 /* Prepare the backing file format extension if needed */
730 if (backing_fmt) {
731 ext_backing_fmt.len = cpu_to_be32(strlen(backing_fmt));
7c80ab3f 732 ext_backing_fmt.magic = cpu_to_be32(QCOW2_EXT_MAGIC_BACKING_FORMAT);
756e6736
KW
733 backing_fmt_len = ((sizeof(ext_backing_fmt)
734 + strlen(backing_fmt) + 7) & ~7);
735 }
736
737 /* Check if we can fit the new header into the first cluster */
738 if (backing_file) {
739 backing_file_len = strlen(backing_file);
740 }
741
742 size_t header_size = sizeof(QCowHeader) + backing_file_len
743 + backing_fmt_len;
744
745 if (header_size > s->cluster_size) {
746 return -ENOSPC;
747 }
748
749 /* Rewrite backing file name and qcow2 extensions */
750 size_t ext_size = header_size - sizeof(QCowHeader);
751 uint8_t buf[ext_size];
752 size_t offset = 0;
753 size_t backing_file_offset = 0;
754
755 if (backing_file) {
756 if (backing_fmt) {
757 int padding = backing_fmt_len -
758 (sizeof(ext_backing_fmt) + strlen(backing_fmt));
759
760 memcpy(buf + offset, &ext_backing_fmt, sizeof(ext_backing_fmt));
761 offset += sizeof(ext_backing_fmt);
762
763 memcpy(buf + offset, backing_fmt, strlen(backing_fmt));
764 offset += strlen(backing_fmt);
765
766 memset(buf + offset, 0, padding);
767 offset += padding;
768 }
769
770 memcpy(buf + offset, backing_file, backing_file_len);
771 backing_file_offset = sizeof(QCowHeader) + offset;
772 }
773
8b3b7206 774 ret = bdrv_pwrite_sync(bs->file, sizeof(QCowHeader), buf, ext_size);
756e6736
KW
775 if (ret < 0) {
776 goto fail;
777 }
778
779 /* Update header fields */
780 uint64_t be_backing_file_offset = cpu_to_be64(backing_file_offset);
781 uint32_t be_backing_file_size = cpu_to_be32(backing_file_len);
782
8b3b7206 783 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, backing_file_offset),
756e6736
KW
784 &be_backing_file_offset, sizeof(uint64_t));
785 if (ret < 0) {
786 goto fail;
787 }
788
8b3b7206 789 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, backing_file_size),
756e6736
KW
790 &be_backing_file_size, sizeof(uint32_t));
791 if (ret < 0) {
792 goto fail;
793 }
794
795 ret = 0;
796fail:
797 return ret;
798}
799
800static int qcow2_change_backing_file(BlockDriverState *bs,
801 const char *backing_file, const char *backing_fmt)
802{
803 return qcow2_update_ext_header(bs, backing_file, backing_fmt);
804}
805
a35e1c17
KW
806static int preallocate(BlockDriverState *bs)
807{
a35e1c17
KW
808 uint64_t nb_sectors;
809 uint64_t offset;
810 int num;
148da7ea 811 int ret;
a35e1c17
KW
812 QCowL2Meta meta;
813
814 nb_sectors = bdrv_getlength(bs) >> 9;
815 offset = 0;
68d100e9 816 qemu_co_queue_init(&meta.dependent_requests);
148da7ea 817 meta.cluster_offset = 0;
a35e1c17
KW
818
819 while (nb_sectors) {
820 num = MIN(nb_sectors, INT_MAX >> 9);
148da7ea 821 ret = qcow2_alloc_cluster_offset(bs, offset, 0, num, &num, &meta);
148da7ea 822 if (ret < 0) {
19dbcbf7 823 return ret;
a35e1c17
KW
824 }
825
19dbcbf7
KW
826 ret = qcow2_alloc_cluster_link_l2(bs, &meta);
827 if (ret < 0) {
148da7ea 828 qcow2_free_any_clusters(bs, meta.cluster_offset, meta.nb_clusters);
19dbcbf7 829 return ret;
a35e1c17
KW
830 }
831
f214978a
KW
832 /* There are no dependent requests, but we need to remove our request
833 * from the list of in-flight requests */
68d100e9 834 run_dependent_requests(bs->opaque, &meta);
f214978a 835
a35e1c17
KW
836 /* TODO Preallocate data if requested */
837
838 nb_sectors -= num;
839 offset += num << 9;
840 }
841
842 /*
843 * It is expected that the image file is large enough to actually contain
844 * all of the allocated clusters (otherwise we get failing reads after
845 * EOF). Extend the image to the last allocated sector.
846 */
148da7ea 847 if (meta.cluster_offset != 0) {
ea80b906
KW
848 uint8_t buf[512];
849 memset(buf, 0, 512);
19dbcbf7
KW
850 ret = bdrv_write(bs->file, (meta.cluster_offset >> 9) + num - 1, buf, 1);
851 if (ret < 0) {
852 return ret;
853 }
a35e1c17
KW
854 }
855
856 return 0;
857}
858
7c80ab3f
JS
859static int qcow2_create2(const char *filename, int64_t total_size,
860 const char *backing_file, const char *backing_format,
861 int flags, size_t cluster_size, int prealloc,
862 QEMUOptionParameter *options)
a9420734
KW
863{
864 /* Calulate cluster_bits */
865 int cluster_bits;
866 cluster_bits = ffs(cluster_size) - 1;
867 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
868 (1 << cluster_bits) != cluster_size)
869 {
870 error_report(
6daf194d 871 "Cluster size must be a power of two between %d and %dk",
a9420734
KW
872 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
873 return -EINVAL;
874 }
875
876 /*
877 * Open the image file and write a minimal qcow2 header.
878 *
879 * We keep things simple and start with a zero-sized image. We also
880 * do without refcount blocks or a L1 table for now. We'll fix the
881 * inconsistency later.
882 *
883 * We do need a refcount table because growing the refcount table means
884 * allocating two new refcount blocks - the seconds of which would be at
885 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
886 * size for any qcow2 image.
887 */
888 BlockDriverState* bs;
889 QCowHeader header;
890 uint8_t* refcount_table;
891 int ret;
892
893 ret = bdrv_create_file(filename, options);
894 if (ret < 0) {
895 return ret;
896 }
897
898 ret = bdrv_file_open(&bs, filename, BDRV_O_RDWR);
899 if (ret < 0) {
900 return ret;
901 }
902
903 /* Write the header */
904 memset(&header, 0, sizeof(header));
905 header.magic = cpu_to_be32(QCOW_MAGIC);
906 header.version = cpu_to_be32(QCOW_VERSION);
907 header.cluster_bits = cpu_to_be32(cluster_bits);
908 header.size = cpu_to_be64(0);
909 header.l1_table_offset = cpu_to_be64(0);
910 header.l1_size = cpu_to_be32(0);
911 header.refcount_table_offset = cpu_to_be64(cluster_size);
912 header.refcount_table_clusters = cpu_to_be32(1);
913
914 if (flags & BLOCK_FLAG_ENCRYPT) {
915 header.crypt_method = cpu_to_be32(QCOW_CRYPT_AES);
916 } else {
917 header.crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
918 }
919
920 ret = bdrv_pwrite(bs, 0, &header, sizeof(header));
921 if (ret < 0) {
922 goto out;
923 }
924
925 /* Write an empty refcount table */
926 refcount_table = qemu_mallocz(cluster_size);
927 ret = bdrv_pwrite(bs, cluster_size, refcount_table, cluster_size);
928 qemu_free(refcount_table);
929
930 if (ret < 0) {
931 goto out;
932 }
933
934 bdrv_close(bs);
935
936 /*
937 * And now open the image and make it consistent first (i.e. increase the
938 * refcount of the cluster that is occupied by the header and the refcount
939 * table)
940 */
941 BlockDriver* drv = bdrv_find_format("qcow2");
942 assert(drv != NULL);
e1a7107f
KW
943 ret = bdrv_open(bs, filename,
944 BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH, drv);
a9420734
KW
945 if (ret < 0) {
946 goto out;
947 }
948
949 ret = qcow2_alloc_clusters(bs, 2 * cluster_size);
950 if (ret < 0) {
951 goto out;
952
953 } else if (ret != 0) {
954 error_report("Huh, first cluster in empty image is already in use?");
955 abort();
956 }
957
958 /* Okay, now that we have a valid image, let's give it the right size */
959 ret = bdrv_truncate(bs, total_size * BDRV_SECTOR_SIZE);
960 if (ret < 0) {
961 goto out;
962 }
963
964 /* Want a backing file? There you go.*/
965 if (backing_file) {
966 ret = bdrv_change_backing_file(bs, backing_file, backing_format);
967 if (ret < 0) {
968 goto out;
969 }
970 }
971
972 /* And if we're supposed to preallocate metadata, do that now */
973 if (prealloc) {
974 ret = preallocate(bs);
975 if (ret < 0) {
976 goto out;
977 }
978 }
979
980 ret = 0;
981out:
982 bdrv_delete(bs);
983 return ret;
984}
de5f3f40 985
7c80ab3f 986static int qcow2_create(const char *filename, QEMUOptionParameter *options)
de5f3f40
KW
987{
988 const char *backing_file = NULL;
989 const char *backing_fmt = NULL;
990 uint64_t sectors = 0;
991 int flags = 0;
99cce9fa 992 size_t cluster_size = DEFAULT_CLUSTER_SIZE;
de5f3f40
KW
993 int prealloc = 0;
994
995 /* Read out options */
996 while (options && options->name) {
997 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
998 sectors = options->value.n / 512;
999 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
1000 backing_file = options->value.s;
1001 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FMT)) {
1002 backing_fmt = options->value.s;
1003 } else if (!strcmp(options->name, BLOCK_OPT_ENCRYPT)) {
1004 flags |= options->value.n ? BLOCK_FLAG_ENCRYPT : 0;
1005 } else if (!strcmp(options->name, BLOCK_OPT_CLUSTER_SIZE)) {
1006 if (options->value.n) {
1007 cluster_size = options->value.n;
1008 }
1009 } else if (!strcmp(options->name, BLOCK_OPT_PREALLOC)) {
1010 if (!options->value.s || !strcmp(options->value.s, "off")) {
1011 prealloc = 0;
1012 } else if (!strcmp(options->value.s, "metadata")) {
1013 prealloc = 1;
1014 } else {
1015 fprintf(stderr, "Invalid preallocation mode: '%s'\n",
1016 options->value.s);
1017 return -EINVAL;
1018 }
1019 }
1020 options++;
1021 }
1022
1023 if (backing_file && prealloc) {
1024 fprintf(stderr, "Backing file and preallocation cannot be used at "
1025 "the same time\n");
1026 return -EINVAL;
1027 }
1028
7c80ab3f
JS
1029 return qcow2_create2(filename, sectors, backing_file, backing_fmt, flags,
1030 cluster_size, prealloc, options);
de5f3f40
KW
1031}
1032
7c80ab3f 1033static int qcow2_make_empty(BlockDriverState *bs)
20d97356
BS
1034{
1035#if 0
1036 /* XXX: not correct */
1037 BDRVQcowState *s = bs->opaque;
1038 uint32_t l1_length = s->l1_size * sizeof(uint64_t);
1039 int ret;
1040
1041 memset(s->l1_table, 0, l1_length);
66f82cee 1042 if (bdrv_pwrite(bs->file, s->l1_table_offset, s->l1_table, l1_length) < 0)
20d97356 1043 return -1;
66f82cee 1044 ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length);
20d97356
BS
1045 if (ret < 0)
1046 return ret;
1047
1048 l2_cache_reset(bs);
1049#endif
1050 return 0;
1051}
1052
5ea929e3
KW
1053static int qcow2_discard(BlockDriverState *bs, int64_t sector_num,
1054 int nb_sectors)
1055{
1056 return qcow2_discard_clusters(bs, sector_num << BDRV_SECTOR_BITS,
1057 nb_sectors);
1058}
1059
419b19d9
SH
1060static int qcow2_truncate(BlockDriverState *bs, int64_t offset)
1061{
1062 BDRVQcowState *s = bs->opaque;
1063 int ret, new_l1_size;
1064
1065 if (offset & 511) {
1066 return -EINVAL;
1067 }
1068
1069 /* cannot proceed if image has snapshots */
1070 if (s->nb_snapshots) {
1071 return -ENOTSUP;
1072 }
1073
1074 /* shrinking is currently not supported */
1075 if (offset < bs->total_sectors * 512) {
1076 return -ENOTSUP;
1077 }
1078
1079 new_l1_size = size_to_l1(s, offset);
72893756 1080 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
419b19d9
SH
1081 if (ret < 0) {
1082 return ret;
1083 }
1084
1085 /* write updated header.size */
1086 offset = cpu_to_be64(offset);
8b3b7206
KW
1087 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
1088 &offset, sizeof(uint64_t));
419b19d9
SH
1089 if (ret < 0) {
1090 return ret;
1091 }
1092
1093 s->l1_vm_state_index = new_l1_size;
1094 return 0;
1095}
1096
20d97356
BS
1097/* XXX: put compressed sectors first, then all the cluster aligned
1098 tables to avoid losing bytes in alignment */
7c80ab3f
JS
1099static int qcow2_write_compressed(BlockDriverState *bs, int64_t sector_num,
1100 const uint8_t *buf, int nb_sectors)
20d97356
BS
1101{
1102 BDRVQcowState *s = bs->opaque;
1103 z_stream strm;
1104 int ret, out_len;
1105 uint8_t *out_buf;
1106 uint64_t cluster_offset;
1107
1108 if (nb_sectors == 0) {
1109 /* align end of file to a sector boundary to ease reading with
1110 sector based I/Os */
66f82cee 1111 cluster_offset = bdrv_getlength(bs->file);
20d97356 1112 cluster_offset = (cluster_offset + 511) & ~511;
66f82cee 1113 bdrv_truncate(bs->file, cluster_offset);
20d97356
BS
1114 return 0;
1115 }
1116
1117 if (nb_sectors != s->cluster_sectors)
1118 return -EINVAL;
1119
1120 out_buf = qemu_malloc(s->cluster_size + (s->cluster_size / 1000) + 128);
1121
1122 /* best compression, small window, no zlib header */
1123 memset(&strm, 0, sizeof(strm));
1124 ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
1125 Z_DEFLATED, -12,
1126 9, Z_DEFAULT_STRATEGY);
1127 if (ret != 0) {
1128 qemu_free(out_buf);
1129 return -1;
1130 }
1131
1132 strm.avail_in = s->cluster_size;
1133 strm.next_in = (uint8_t *)buf;
1134 strm.avail_out = s->cluster_size;
1135 strm.next_out = out_buf;
1136
1137 ret = deflate(&strm, Z_FINISH);
1138 if (ret != Z_STREAM_END && ret != Z_OK) {
1139 qemu_free(out_buf);
1140 deflateEnd(&strm);
1141 return -1;
1142 }
1143 out_len = strm.next_out - out_buf;
1144
1145 deflateEnd(&strm);
1146
1147 if (ret != Z_STREAM_END || out_len >= s->cluster_size) {
1148 /* could not compress: write normal cluster */
1149 bdrv_write(bs, sector_num, buf, s->cluster_sectors);
1150 } else {
1151 cluster_offset = qcow2_alloc_compressed_cluster_offset(bs,
1152 sector_num << 9, out_len);
1153 if (!cluster_offset)
1154 return -1;
1155 cluster_offset &= s->cluster_offset_mask;
66f82cee
KW
1156 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_COMPRESSED);
1157 if (bdrv_pwrite(bs->file, cluster_offset, out_buf, out_len) != out_len) {
20d97356
BS
1158 qemu_free(out_buf);
1159 return -1;
1160 }
1161 }
1162
1163 qemu_free(out_buf);
1164 return 0;
1165}
1166
7c80ab3f 1167static int qcow2_flush(BlockDriverState *bs)
20d97356 1168{
29c1a730
KW
1169 BDRVQcowState *s = bs->opaque;
1170 int ret;
1171
1172 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1173 if (ret < 0) {
1174 return ret;
1175 }
1176
1177 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1178 if (ret < 0) {
1179 return ret;
1180 }
1181
205ef796 1182 return bdrv_flush(bs->file);
20d97356
BS
1183}
1184
7c80ab3f
JS
1185static BlockDriverAIOCB *qcow2_aio_flush(BlockDriverState *bs,
1186 BlockDriverCompletionFunc *cb,
1187 void *opaque)
20d97356 1188{
29c1a730
KW
1189 BDRVQcowState *s = bs->opaque;
1190 int ret;
1191
1192 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1193 if (ret < 0) {
1194 return NULL;
1195 }
1196
1197 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1198 if (ret < 0) {
1199 return NULL;
1200 }
1201
66f82cee 1202 return bdrv_aio_flush(bs->file, cb, opaque);
20d97356
BS
1203}
1204
7c80ab3f 1205static int64_t qcow2_vm_state_offset(BDRVQcowState *s)
20d97356
BS
1206{
1207 return (int64_t)s->l1_vm_state_index << (s->cluster_bits + s->l2_bits);
1208}
1209
7c80ab3f 1210static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
20d97356
BS
1211{
1212 BDRVQcowState *s = bs->opaque;
1213 bdi->cluster_size = s->cluster_size;
7c80ab3f 1214 bdi->vm_state_offset = qcow2_vm_state_offset(s);
20d97356
BS
1215 return 0;
1216}
1217
1218
7c80ab3f 1219static int qcow2_check(BlockDriverState *bs, BdrvCheckResult *result)
20d97356 1220{
9ac228e0 1221 return qcow2_check_refcounts(bs, result);
20d97356
BS
1222}
1223
1224#if 0
1225static void dump_refcounts(BlockDriverState *bs)
1226{
1227 BDRVQcowState *s = bs->opaque;
1228 int64_t nb_clusters, k, k1, size;
1229 int refcount;
1230
66f82cee 1231 size = bdrv_getlength(bs->file);
20d97356
BS
1232 nb_clusters = size_to_clusters(s, size);
1233 for(k = 0; k < nb_clusters;) {
1234 k1 = k;
1235 refcount = get_refcount(bs, k);
1236 k++;
1237 while (k < nb_clusters && get_refcount(bs, k) == refcount)
1238 k++;
0bfcd599
BS
1239 printf("%" PRId64 ": refcount=%d nb=%" PRId64 "\n", k, refcount,
1240 k - k1);
20d97356
BS
1241 }
1242}
1243#endif
1244
7c80ab3f
JS
1245static int qcow2_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1246 int64_t pos, int size)
20d97356
BS
1247{
1248 BDRVQcowState *s = bs->opaque;
1249 int growable = bs->growable;
1250 int ret;
1251
66f82cee 1252 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
20d97356 1253 bs->growable = 1;
7c80ab3f 1254 ret = bdrv_pwrite(bs, qcow2_vm_state_offset(s) + pos, buf, size);
20d97356
BS
1255 bs->growable = growable;
1256
1257 return ret;
1258}
1259
7c80ab3f
JS
1260static int qcow2_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1261 int64_t pos, int size)
20d97356
BS
1262{
1263 BDRVQcowState *s = bs->opaque;
1264 int growable = bs->growable;
1265 int ret;
1266
66f82cee 1267 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
20d97356 1268 bs->growable = 1;
7c80ab3f 1269 ret = bdrv_pread(bs, qcow2_vm_state_offset(s) + pos, buf, size);
20d97356
BS
1270 bs->growable = growable;
1271
1272 return ret;
1273}
1274
7c80ab3f 1275static QEMUOptionParameter qcow2_create_options[] = {
20d97356
BS
1276 {
1277 .name = BLOCK_OPT_SIZE,
1278 .type = OPT_SIZE,
1279 .help = "Virtual disk size"
1280 },
1281 {
1282 .name = BLOCK_OPT_BACKING_FILE,
1283 .type = OPT_STRING,
1284 .help = "File name of a base image"
1285 },
1286 {
1287 .name = BLOCK_OPT_BACKING_FMT,
1288 .type = OPT_STRING,
1289 .help = "Image format of the base image"
1290 },
1291 {
1292 .name = BLOCK_OPT_ENCRYPT,
1293 .type = OPT_FLAG,
1294 .help = "Encrypt the image"
1295 },
1296 {
1297 .name = BLOCK_OPT_CLUSTER_SIZE,
1298 .type = OPT_SIZE,
99cce9fa
KW
1299 .help = "qcow2 cluster size",
1300 .value = { .n = DEFAULT_CLUSTER_SIZE },
20d97356
BS
1301 },
1302 {
1303 .name = BLOCK_OPT_PREALLOC,
1304 .type = OPT_STRING,
1305 .help = "Preallocation mode (allowed values: off, metadata)"
1306 },
1307 { NULL }
1308};
1309
1310static BlockDriver bdrv_qcow2 = {
7c80ab3f
JS
1311 .format_name = "qcow2",
1312 .instance_size = sizeof(BDRVQcowState),
1313 .bdrv_probe = qcow2_probe,
1314 .bdrv_open = qcow2_open,
1315 .bdrv_close = qcow2_close,
1316 .bdrv_create = qcow2_create,
1317 .bdrv_flush = qcow2_flush,
1318 .bdrv_is_allocated = qcow2_is_allocated,
1319 .bdrv_set_key = qcow2_set_key,
1320 .bdrv_make_empty = qcow2_make_empty,
1321
68d100e9
KW
1322 .bdrv_co_readv = qcow2_co_readv,
1323 .bdrv_co_writev = qcow2_co_writev,
7c80ab3f 1324 .bdrv_aio_flush = qcow2_aio_flush,
419b19d9 1325
5ea929e3 1326 .bdrv_discard = qcow2_discard,
419b19d9 1327 .bdrv_truncate = qcow2_truncate,
7c80ab3f 1328 .bdrv_write_compressed = qcow2_write_compressed,
20d97356
BS
1329
1330 .bdrv_snapshot_create = qcow2_snapshot_create,
1331 .bdrv_snapshot_goto = qcow2_snapshot_goto,
1332 .bdrv_snapshot_delete = qcow2_snapshot_delete,
1333 .bdrv_snapshot_list = qcow2_snapshot_list,
51ef6727 1334 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
7c80ab3f 1335 .bdrv_get_info = qcow2_get_info,
20d97356 1336
7c80ab3f
JS
1337 .bdrv_save_vmstate = qcow2_save_vmstate,
1338 .bdrv_load_vmstate = qcow2_load_vmstate,
20d97356
BS
1339
1340 .bdrv_change_backing_file = qcow2_change_backing_file,
1341
7c80ab3f
JS
1342 .create_options = qcow2_create_options,
1343 .bdrv_check = qcow2_check,
20d97356
BS
1344};
1345
5efa9d5a
AL
1346static void bdrv_qcow2_init(void)
1347{
1348 bdrv_register(&bdrv_qcow2);
1349}
1350
1351block_init(bdrv_qcow2_init);