]> git.proxmox.com Git - qemu.git/blame - block/qcow2.c
qcow2: Report error for version > 2
[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"
12597b06 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 &&
12597b06 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
12597b06 167 if (header.magic != QCOW_MAGIC) {
6d85a57e 168 ret = -EINVAL;
585f8587 169 goto fail;
6d85a57e 170 }
12597b06
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 */
232 writethrough = ((flags & BDRV_O_CACHE_MASK) == 0);
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
FB
278
279#ifdef DEBUG_ALLOC
14899cdf 280 qcow2_check_refcounts(bs);
585f8587 281#endif
6d85a57e 282 return ret;
585f8587
FB
283
284 fail:
ed6ccf0f
KW
285 qcow2_free_snapshots(bs);
286 qcow2_refcount_close(bs);
585f8587 287 qemu_free(s->l1_table);
29c1a730
KW
288 if (s->l2_table_cache) {
289 qcow2_cache_destroy(bs, s->l2_table_cache);
290 }
585f8587
FB
291 qemu_free(s->cluster_cache);
292 qemu_free(s->cluster_data);
6d85a57e 293 return ret;
585f8587
FB
294}
295
7c80ab3f 296static int qcow2_set_key(BlockDriverState *bs, const char *key)
585f8587
FB
297{
298 BDRVQcowState *s = bs->opaque;
299 uint8_t keybuf[16];
300 int len, i;
3b46e624 301
585f8587
FB
302 memset(keybuf, 0, 16);
303 len = strlen(key);
304 if (len > 16)
305 len = 16;
306 /* XXX: we could compress the chars to 7 bits to increase
307 entropy */
308 for(i = 0;i < len;i++) {
309 keybuf[i] = key[i];
310 }
311 s->crypt_method = s->crypt_method_header;
312
313 if (AES_set_encrypt_key(keybuf, 128, &s->aes_encrypt_key) != 0)
314 return -1;
315 if (AES_set_decrypt_key(keybuf, 128, &s->aes_decrypt_key) != 0)
316 return -1;
317#if 0
318 /* test */
319 {
320 uint8_t in[16];
321 uint8_t out[16];
322 uint8_t tmp[16];
323 for(i=0;i<16;i++)
324 in[i] = i;
325 AES_encrypt(in, tmp, &s->aes_encrypt_key);
326 AES_decrypt(tmp, out, &s->aes_decrypt_key);
327 for(i = 0; i < 16; i++)
328 printf(" %02x", tmp[i]);
329 printf("\n");
330 for(i = 0; i < 16; i++)
331 printf(" %02x", out[i]);
332 printf("\n");
333 }
334#endif
335 return 0;
336}
337
7c80ab3f
JS
338static int qcow2_is_allocated(BlockDriverState *bs, int64_t sector_num,
339 int nb_sectors, int *pnum)
585f8587 340{
585f8587 341 uint64_t cluster_offset;
1c46efaa 342 int ret;
585f8587 343
095a9c58 344 *pnum = nb_sectors;
1c46efaa
KW
345 /* FIXME We can get errors here, but the bdrv_is_allocated interface can't
346 * pass them on today */
347 ret = qcow2_get_cluster_offset(bs, sector_num << 9, pnum, &cluster_offset);
348 if (ret < 0) {
349 *pnum = 0;
350 }
095a9c58 351
585f8587
FB
352 return (cluster_offset != 0);
353}
354
a9465922 355/* handle reading after the end of the backing file */
bd28f835
KW
356int qcow2_backing_read1(BlockDriverState *bs, QEMUIOVector *qiov,
357 int64_t sector_num, int nb_sectors)
a9465922
FB
358{
359 int n1;
360 if ((sector_num + nb_sectors) <= bs->total_sectors)
361 return nb_sectors;
362 if (sector_num >= bs->total_sectors)
363 n1 = 0;
364 else
365 n1 = bs->total_sectors - sector_num;
bd28f835 366
607a3757 367 qemu_iovec_memset_skip(qiov, 0, 512 * (nb_sectors - n1), 512 * n1);
bd28f835 368
a9465922
FB
369 return n1;
370}
371
ce1a14dc
PB
372typedef struct QCowAIOCB {
373 BlockDriverAIOCB common;
585f8587 374 int64_t sector_num;
f141eafe 375 QEMUIOVector *qiov;
7b88e48b
CH
376 int remaining_sectors;
377 int cur_nr_sectors; /* number of sectors in current iteration */
bd28f835 378 uint64_t bytes_done;
585f8587 379 uint64_t cluster_offset;
5fafdf24 380 uint8_t *cluster_data;
585f8587 381 BlockDriverAIOCB *hd_aiocb;
c87c0672 382 QEMUIOVector hd_qiov;
1490791f 383 QEMUBH *bh;
e976c6a1 384 QCowL2Meta l2meta;
72cf2d4f 385 QLIST_ENTRY(QCowAIOCB) next_depend;
585f8587
FB
386} QCowAIOCB;
387
7c80ab3f 388static void qcow2_aio_cancel(BlockDriverAIOCB *blockacb)
c16b5a2c 389{
b666d239 390 QCowAIOCB *acb = container_of(blockacb, QCowAIOCB, common);
c16b5a2c
CH
391 if (acb->hd_aiocb)
392 bdrv_aio_cancel(acb->hd_aiocb);
393 qemu_aio_release(acb);
394}
395
7c80ab3f 396static AIOPool qcow2_aio_pool = {
c16b5a2c 397 .aiocb_size = sizeof(QCowAIOCB),
7c80ab3f 398 .cancel = qcow2_aio_cancel,
c16b5a2c
CH
399};
400
7c80ab3f
JS
401static void qcow2_aio_read_cb(void *opaque, int ret);
402static void qcow2_aio_read_bh(void *opaque)
1490791f
AL
403{
404 QCowAIOCB *acb = opaque;
405 qemu_bh_delete(acb->bh);
406 acb->bh = NULL;
7c80ab3f 407 qcow2_aio_read_cb(opaque, 0);
1490791f
AL
408}
409
7c80ab3f 410static int qcow2_schedule_bh(QEMUBHFunc *cb, QCowAIOCB *acb)
a32ef786
AL
411{
412 if (acb->bh)
413 return -EIO;
414
415 acb->bh = qemu_bh_new(cb, acb);
416 if (!acb->bh)
417 return -EIO;
418
419 qemu_bh_schedule(acb->bh);
420
421 return 0;
422}
423
7c80ab3f 424static void qcow2_aio_read_cb(void *opaque, int ret)
585f8587 425{
ce1a14dc
PB
426 QCowAIOCB *acb = opaque;
427 BlockDriverState *bs = acb->common.bs;
585f8587 428 BDRVQcowState *s = bs->opaque;
a9465922 429 int index_in_cluster, n1;
585f8587 430
ce1a14dc 431 acb->hd_aiocb = NULL;
f141eafe
AL
432 if (ret < 0)
433 goto done;
585f8587 434
585f8587 435 /* post process the read buffer */
ce1a14dc 436 if (!acb->cluster_offset) {
585f8587 437 /* nothing to do */
ce1a14dc 438 } else if (acb->cluster_offset & QCOW_OFLAG_COMPRESSED) {
585f8587
FB
439 /* nothing to do */
440 } else {
441 if (s->crypt_method) {
bd28f835
KW
442 qcow2_encrypt_sectors(s, acb->sector_num, acb->cluster_data,
443 acb->cluster_data, acb->cur_nr_sectors, 0, &s->aes_decrypt_key);
444 qemu_iovec_reset(&acb->hd_qiov);
445 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
446 acb->cur_nr_sectors * 512);
447 qemu_iovec_from_buffer(&acb->hd_qiov, acb->cluster_data,
448 512 * acb->cur_nr_sectors);
585f8587
FB
449 }
450 }
451
7b88e48b
CH
452 acb->remaining_sectors -= acb->cur_nr_sectors;
453 acb->sector_num += acb->cur_nr_sectors;
bd28f835 454 acb->bytes_done += acb->cur_nr_sectors * 512;
585f8587 455
7b88e48b 456 if (acb->remaining_sectors == 0) {
585f8587 457 /* request completed */
f141eafe
AL
458 ret = 0;
459 goto done;
585f8587 460 }
3b46e624 461
585f8587 462 /* prepare next AIO request */
7b88e48b 463 acb->cur_nr_sectors = acb->remaining_sectors;
bd28f835
KW
464 if (s->crypt_method) {
465 acb->cur_nr_sectors = MIN(acb->cur_nr_sectors,
466 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
467 }
468
1c46efaa
KW
469 ret = qcow2_get_cluster_offset(bs, acb->sector_num << 9,
470 &acb->cur_nr_sectors, &acb->cluster_offset);
471 if (ret < 0) {
472 goto done;
473 }
474
ce1a14dc 475 index_in_cluster = acb->sector_num & (s->cluster_sectors - 1);
ce1a14dc 476
bd28f835
KW
477 qemu_iovec_reset(&acb->hd_qiov);
478 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
479 acb->cur_nr_sectors * 512);
480
ce1a14dc 481 if (!acb->cluster_offset) {
bd28f835 482
585f8587
FB
483 if (bs->backing_hd) {
484 /* read from the base image */
bd28f835
KW
485 n1 = qcow2_backing_read1(bs->backing_hd, &acb->hd_qiov,
486 acb->sector_num, acb->cur_nr_sectors);
a9465922 487 if (n1 > 0) {
66f82cee 488 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
c87c0672 489 acb->hd_aiocb = bdrv_aio_readv(bs->backing_hd, acb->sector_num,
607a3757 490 &acb->hd_qiov, n1, qcow2_aio_read_cb, acb);
16e07bc2
KW
491 if (acb->hd_aiocb == NULL) {
492 ret = -EIO;
f141eafe 493 goto done;
16e07bc2 494 }
a9465922 495 } else {
7c80ab3f 496 ret = qcow2_schedule_bh(qcow2_aio_read_bh, acb);
a32ef786 497 if (ret < 0)
f141eafe 498 goto done;
a9465922 499 }
585f8587
FB
500 } else {
501 /* Note: in this case, no need to wait */
bd28f835 502 qemu_iovec_memset(&acb->hd_qiov, 0, 512 * acb->cur_nr_sectors);
7c80ab3f 503 ret = qcow2_schedule_bh(qcow2_aio_read_bh, acb);
a32ef786 504 if (ret < 0)
f141eafe 505 goto done;
585f8587 506 }
ce1a14dc 507 } else if (acb->cluster_offset & QCOW_OFLAG_COMPRESSED) {
585f8587 508 /* add AIO support for compressed blocks ? */
5c959611
KW
509 ret = qcow2_decompress_cluster(bs, acb->cluster_offset);
510 if (ret < 0) {
f141eafe 511 goto done;
5c959611 512 }
bd28f835
KW
513
514 qemu_iovec_from_buffer(&acb->hd_qiov,
515 s->cluster_cache + index_in_cluster * 512,
516 512 * acb->cur_nr_sectors);
517
7c80ab3f 518 ret = qcow2_schedule_bh(qcow2_aio_read_bh, acb);
a32ef786 519 if (ret < 0)
f141eafe 520 goto done;
585f8587 521 } else {
ce1a14dc 522 if ((acb->cluster_offset & 511) != 0) {
585f8587 523 ret = -EIO;
f141eafe 524 goto done;
585f8587 525 }
c87c0672 526
bd28f835
KW
527 if (s->crypt_method) {
528 /*
529 * For encrypted images, read everything into a temporary
530 * contiguous buffer on which the AES functions can work.
531 */
532 if (!acb->cluster_data) {
533 acb->cluster_data =
534 qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
535 }
536
537 assert(acb->cur_nr_sectors <=
538 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
539 qemu_iovec_reset(&acb->hd_qiov);
540 qemu_iovec_add(&acb->hd_qiov, acb->cluster_data,
541 512 * acb->cur_nr_sectors);
542 }
543
66f82cee
KW
544 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
545 acb->hd_aiocb = bdrv_aio_readv(bs->file,
5fafdf24 546 (acb->cluster_offset >> 9) + index_in_cluster,
7b88e48b 547 &acb->hd_qiov, acb->cur_nr_sectors,
7c80ab3f 548 qcow2_aio_read_cb, acb);
171e3d6b
KW
549 if (acb->hd_aiocb == NULL) {
550 ret = -EIO;
f141eafe 551 goto done;
171e3d6b 552 }
f141eafe
AL
553 }
554
555 return;
556done:
f141eafe 557 acb->common.cb(acb->common.opaque, ret);
bd28f835 558 qemu_iovec_destroy(&acb->hd_qiov);
f141eafe 559 qemu_aio_release(acb);
585f8587
FB
560}
561
7c80ab3f
JS
562static QCowAIOCB *qcow2_aio_setup(BlockDriverState *bs, int64_t sector_num,
563 QEMUIOVector *qiov, int nb_sectors,
564 BlockDriverCompletionFunc *cb,
565 void *opaque, int is_write)
585f8587 566{
ce1a14dc
PB
567 QCowAIOCB *acb;
568
7c80ab3f 569 acb = qemu_aio_get(&qcow2_aio_pool, bs, cb, opaque);
ce1a14dc
PB
570 if (!acb)
571 return NULL;
572 acb->hd_aiocb = NULL;
573 acb->sector_num = sector_num;
f141eafe 574 acb->qiov = qiov;
bd28f835 575
6f5f060b 576 qemu_iovec_init(&acb->hd_qiov, qiov->niov);
bd28f835
KW
577
578 acb->bytes_done = 0;
7b88e48b
CH
579 acb->remaining_sectors = nb_sectors;
580 acb->cur_nr_sectors = 0;
ce1a14dc 581 acb->cluster_offset = 0;
e976c6a1 582 acb->l2meta.nb_clusters = 0;
72cf2d4f 583 QLIST_INIT(&acb->l2meta.dependent_requests);
ce1a14dc
PB
584 return acb;
585}
586
7c80ab3f
JS
587static BlockDriverAIOCB *qcow2_aio_readv(BlockDriverState *bs,
588 int64_t sector_num,
589 QEMUIOVector *qiov, int nb_sectors,
590 BlockDriverCompletionFunc *cb,
591 void *opaque)
ce1a14dc
PB
592{
593 QCowAIOCB *acb;
594
7c80ab3f 595 acb = qcow2_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
ce1a14dc
PB
596 if (!acb)
597 return NULL;
585f8587 598
7c80ab3f 599 qcow2_aio_read_cb(acb, 0);
ce1a14dc 600 return &acb->common;
585f8587
FB
601}
602
7c80ab3f 603static void qcow2_aio_write_cb(void *opaque, int ret);
f214978a
KW
604
605static void run_dependent_requests(QCowL2Meta *m)
606{
607 QCowAIOCB *req;
608 QCowAIOCB *next;
609
610 /* Take the request off the list of running requests */
611 if (m->nb_clusters != 0) {
72cf2d4f 612 QLIST_REMOVE(m, next_in_flight);
f214978a
KW
613 }
614
d4c146f0
SH
615 /* Restart all dependent requests */
616 QLIST_FOREACH_SAFE(req, &m->dependent_requests, next_depend, next) {
7c80ab3f 617 qcow2_aio_write_cb(req, 0);
f214978a
KW
618 }
619
620 /* Empty the list for the next part of the request */
72cf2d4f 621 QLIST_INIT(&m->dependent_requests);
f214978a
KW
622}
623
7c80ab3f 624static void qcow2_aio_write_cb(void *opaque, int ret)
585f8587 625{
ce1a14dc
PB
626 QCowAIOCB *acb = opaque;
627 BlockDriverState *bs = acb->common.bs;
585f8587 628 BDRVQcowState *s = bs->opaque;
585f8587 629 int index_in_cluster;
095a9c58 630 int n_end;
ce1a14dc
PB
631
632 acb->hd_aiocb = NULL;
633
f214978a 634 if (ret >= 0) {
148da7ea 635 ret = qcow2_alloc_cluster_link_l2(bs, &acb->l2meta);
f214978a
KW
636 }
637
638 run_dependent_requests(&acb->l2meta);
639
f141eafe
AL
640 if (ret < 0)
641 goto done;
585f8587 642
7b88e48b
CH
643 acb->remaining_sectors -= acb->cur_nr_sectors;
644 acb->sector_num += acb->cur_nr_sectors;
6f5f060b 645 acb->bytes_done += acb->cur_nr_sectors * 512;
585f8587 646
7b88e48b 647 if (acb->remaining_sectors == 0) {
585f8587 648 /* request completed */
f141eafe
AL
649 ret = 0;
650 goto done;
585f8587 651 }
3b46e624 652
ce1a14dc 653 index_in_cluster = acb->sector_num & (s->cluster_sectors - 1);
7b88e48b 654 n_end = index_in_cluster + acb->remaining_sectors;
095a9c58
AL
655 if (s->crypt_method &&
656 n_end > QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors)
657 n_end = QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors;
658
148da7ea 659 ret = qcow2_alloc_cluster_offset(bs, acb->sector_num << 9,
7b88e48b 660 index_in_cluster, n_end, &acb->cur_nr_sectors, &acb->l2meta);
148da7ea
KW
661 if (ret < 0) {
662 goto done;
663 }
664
665 acb->cluster_offset = acb->l2meta.cluster_offset;
f214978a
KW
666
667 /* Need to wait for another request? If so, we are done for now. */
148da7ea 668 if (acb->l2meta.nb_clusters == 0 && acb->l2meta.depends_on != NULL) {
72cf2d4f 669 QLIST_INSERT_HEAD(&acb->l2meta.depends_on->dependent_requests,
f214978a
KW
670 acb, next_depend);
671 return;
672 }
673
148da7ea
KW
674 assert((acb->cluster_offset & 511) == 0);
675
6f5f060b
KW
676 qemu_iovec_reset(&acb->hd_qiov);
677 qemu_iovec_copy(&acb->hd_qiov, acb->qiov, acb->bytes_done,
678 acb->cur_nr_sectors * 512);
679
585f8587 680 if (s->crypt_method) {
ce1a14dc 681 if (!acb->cluster_data) {
095a9c58
AL
682 acb->cluster_data = qemu_mallocz(QCOW_MAX_CRYPT_CLUSTERS *
683 s->cluster_size);
585f8587 684 }
6f5f060b
KW
685
686 assert(acb->hd_qiov.size <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
687 qemu_iovec_to_buffer(&acb->hd_qiov, acb->cluster_data);
688
689 qcow2_encrypt_sectors(s, acb->sector_num, acb->cluster_data,
690 acb->cluster_data, acb->cur_nr_sectors, 1, &s->aes_encrypt_key);
691
692 qemu_iovec_reset(&acb->hd_qiov);
693 qemu_iovec_add(&acb->hd_qiov, acb->cluster_data,
694 acb->cur_nr_sectors * 512);
585f8587 695 }
6f5f060b 696
66f82cee
KW
697 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
698 acb->hd_aiocb = bdrv_aio_writev(bs->file,
c87c0672 699 (acb->cluster_offset >> 9) + index_in_cluster,
7b88e48b 700 &acb->hd_qiov, acb->cur_nr_sectors,
7c80ab3f 701 qcow2_aio_write_cb, acb);
171e3d6b
KW
702 if (acb->hd_aiocb == NULL) {
703 ret = -EIO;
c644db3d 704 goto fail;
171e3d6b 705 }
f141eafe
AL
706
707 return;
708
c644db3d
KW
709fail:
710 if (acb->l2meta.nb_clusters != 0) {
711 QLIST_REMOVE(&acb->l2meta, next_in_flight);
712 }
f141eafe 713done:
f141eafe 714 acb->common.cb(acb->common.opaque, ret);
6f5f060b 715 qemu_iovec_destroy(&acb->hd_qiov);
f141eafe 716 qemu_aio_release(acb);
585f8587
FB
717}
718
7c80ab3f
JS
719static BlockDriverAIOCB *qcow2_aio_writev(BlockDriverState *bs,
720 int64_t sector_num,
721 QEMUIOVector *qiov, int nb_sectors,
722 BlockDriverCompletionFunc *cb,
723 void *opaque)
585f8587 724{
585f8587 725 BDRVQcowState *s = bs->opaque;
ce1a14dc 726 QCowAIOCB *acb;
3b46e624 727
585f8587
FB
728 s->cluster_cache_offset = -1; /* disable compressed cache */
729
7c80ab3f 730 acb = qcow2_aio_setup(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
ce1a14dc
PB
731 if (!acb)
732 return NULL;
3b46e624 733
7c80ab3f 734 qcow2_aio_write_cb(acb, 0);
ce1a14dc 735 return &acb->common;
585f8587
FB
736}
737
7c80ab3f 738static void qcow2_close(BlockDriverState *bs)
585f8587
FB
739{
740 BDRVQcowState *s = bs->opaque;
741 qemu_free(s->l1_table);
29c1a730
KW
742
743 qcow2_cache_flush(bs, s->l2_table_cache);
744 qcow2_cache_flush(bs, s->refcount_block_cache);
745
746 qcow2_cache_destroy(bs, s->l2_table_cache);
747 qcow2_cache_destroy(bs, s->refcount_block_cache);
748
585f8587
FB
749 qemu_free(s->cluster_cache);
750 qemu_free(s->cluster_data);
ed6ccf0f 751 qcow2_refcount_close(bs);
585f8587
FB
752}
753
756e6736
KW
754/*
755 * Updates the variable length parts of the qcow2 header, i.e. the backing file
756 * name and all extensions. qcow2 was not designed to allow such changes, so if
757 * we run out of space (we can only use the first cluster) this function may
758 * fail.
759 *
760 * Returns 0 on success, -errno in error cases.
761 */
762static int qcow2_update_ext_header(BlockDriverState *bs,
763 const char *backing_file, const char *backing_fmt)
764{
765 size_t backing_file_len = 0;
766 size_t backing_fmt_len = 0;
767 BDRVQcowState *s = bs->opaque;
768 QCowExtension ext_backing_fmt = {0, 0};
769 int ret;
770
771 /* Backing file format doesn't make sense without a backing file */
772 if (backing_fmt && !backing_file) {
773 return -EINVAL;
774 }
775
776 /* Prepare the backing file format extension if needed */
777 if (backing_fmt) {
778 ext_backing_fmt.len = cpu_to_be32(strlen(backing_fmt));
7c80ab3f 779 ext_backing_fmt.magic = cpu_to_be32(QCOW2_EXT_MAGIC_BACKING_FORMAT);
756e6736
KW
780 backing_fmt_len = ((sizeof(ext_backing_fmt)
781 + strlen(backing_fmt) + 7) & ~7);
782 }
783
784 /* Check if we can fit the new header into the first cluster */
785 if (backing_file) {
786 backing_file_len = strlen(backing_file);
787 }
788
789 size_t header_size = sizeof(QCowHeader) + backing_file_len
790 + backing_fmt_len;
791
792 if (header_size > s->cluster_size) {
793 return -ENOSPC;
794 }
795
796 /* Rewrite backing file name and qcow2 extensions */
797 size_t ext_size = header_size - sizeof(QCowHeader);
798 uint8_t buf[ext_size];
799 size_t offset = 0;
800 size_t backing_file_offset = 0;
801
802 if (backing_file) {
803 if (backing_fmt) {
804 int padding = backing_fmt_len -
805 (sizeof(ext_backing_fmt) + strlen(backing_fmt));
806
807 memcpy(buf + offset, &ext_backing_fmt, sizeof(ext_backing_fmt));
808 offset += sizeof(ext_backing_fmt);
809
810 memcpy(buf + offset, backing_fmt, strlen(backing_fmt));
811 offset += strlen(backing_fmt);
812
813 memset(buf + offset, 0, padding);
814 offset += padding;
815 }
816
817 memcpy(buf + offset, backing_file, backing_file_len);
818 backing_file_offset = sizeof(QCowHeader) + offset;
819 }
820
8b3b7206 821 ret = bdrv_pwrite_sync(bs->file, sizeof(QCowHeader), buf, ext_size);
756e6736
KW
822 if (ret < 0) {
823 goto fail;
824 }
825
826 /* Update header fields */
827 uint64_t be_backing_file_offset = cpu_to_be64(backing_file_offset);
828 uint32_t be_backing_file_size = cpu_to_be32(backing_file_len);
829
8b3b7206 830 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, backing_file_offset),
756e6736
KW
831 &be_backing_file_offset, sizeof(uint64_t));
832 if (ret < 0) {
833 goto fail;
834 }
835
8b3b7206 836 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, backing_file_size),
756e6736
KW
837 &be_backing_file_size, sizeof(uint32_t));
838 if (ret < 0) {
839 goto fail;
840 }
841
842 ret = 0;
843fail:
844 return ret;
845}
846
847static int qcow2_change_backing_file(BlockDriverState *bs,
848 const char *backing_file, const char *backing_fmt)
849{
850 return qcow2_update_ext_header(bs, backing_file, backing_fmt);
851}
852
a35e1c17
KW
853static int preallocate(BlockDriverState *bs)
854{
a35e1c17
KW
855 uint64_t nb_sectors;
856 uint64_t offset;
857 int num;
148da7ea 858 int ret;
a35e1c17
KW
859 QCowL2Meta meta;
860
861 nb_sectors = bdrv_getlength(bs) >> 9;
862 offset = 0;
72cf2d4f 863 QLIST_INIT(&meta.dependent_requests);
148da7ea 864 meta.cluster_offset = 0;
a35e1c17
KW
865
866 while (nb_sectors) {
867 num = MIN(nb_sectors, INT_MAX >> 9);
148da7ea 868 ret = qcow2_alloc_cluster_offset(bs, offset, 0, num, &num, &meta);
148da7ea 869 if (ret < 0) {
19dbcbf7 870 return ret;
a35e1c17
KW
871 }
872
19dbcbf7
KW
873 ret = qcow2_alloc_cluster_link_l2(bs, &meta);
874 if (ret < 0) {
148da7ea 875 qcow2_free_any_clusters(bs, meta.cluster_offset, meta.nb_clusters);
19dbcbf7 876 return ret;
a35e1c17
KW
877 }
878
f214978a
KW
879 /* There are no dependent requests, but we need to remove our request
880 * from the list of in-flight requests */
881 run_dependent_requests(&meta);
882
a35e1c17
KW
883 /* TODO Preallocate data if requested */
884
885 nb_sectors -= num;
886 offset += num << 9;
887 }
888
889 /*
890 * It is expected that the image file is large enough to actually contain
891 * all of the allocated clusters (otherwise we get failing reads after
892 * EOF). Extend the image to the last allocated sector.
893 */
148da7ea 894 if (meta.cluster_offset != 0) {
ea80b906
KW
895 uint8_t buf[512];
896 memset(buf, 0, 512);
19dbcbf7
KW
897 ret = bdrv_write(bs->file, (meta.cluster_offset >> 9) + num - 1, buf, 1);
898 if (ret < 0) {
899 return ret;
900 }
a35e1c17
KW
901 }
902
903 return 0;
904}
905
7c80ab3f
JS
906static int qcow2_create2(const char *filename, int64_t total_size,
907 const char *backing_file, const char *backing_format,
908 int flags, size_t cluster_size, int prealloc,
909 QEMUOptionParameter *options)
a9420734
KW
910{
911 /* Calulate cluster_bits */
912 int cluster_bits;
913 cluster_bits = ffs(cluster_size) - 1;
914 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
915 (1 << cluster_bits) != cluster_size)
916 {
917 error_report(
918 "Cluster size must be a power of two between %d and %dk\n",
919 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
920 return -EINVAL;
921 }
922
923 /*
924 * Open the image file and write a minimal qcow2 header.
925 *
926 * We keep things simple and start with a zero-sized image. We also
927 * do without refcount blocks or a L1 table for now. We'll fix the
928 * inconsistency later.
929 *
930 * We do need a refcount table because growing the refcount table means
931 * allocating two new refcount blocks - the seconds of which would be at
932 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
933 * size for any qcow2 image.
934 */
935 BlockDriverState* bs;
936 QCowHeader header;
937 uint8_t* refcount_table;
938 int ret;
939
940 ret = bdrv_create_file(filename, options);
941 if (ret < 0) {
942 return ret;
943 }
944
945 ret = bdrv_file_open(&bs, filename, BDRV_O_RDWR);
946 if (ret < 0) {
947 return ret;
948 }
949
950 /* Write the header */
951 memset(&header, 0, sizeof(header));
952 header.magic = cpu_to_be32(QCOW_MAGIC);
953 header.version = cpu_to_be32(QCOW_VERSION);
954 header.cluster_bits = cpu_to_be32(cluster_bits);
955 header.size = cpu_to_be64(0);
956 header.l1_table_offset = cpu_to_be64(0);
957 header.l1_size = cpu_to_be32(0);
958 header.refcount_table_offset = cpu_to_be64(cluster_size);
959 header.refcount_table_clusters = cpu_to_be32(1);
960
961 if (flags & BLOCK_FLAG_ENCRYPT) {
962 header.crypt_method = cpu_to_be32(QCOW_CRYPT_AES);
963 } else {
964 header.crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
965 }
966
967 ret = bdrv_pwrite(bs, 0, &header, sizeof(header));
968 if (ret < 0) {
969 goto out;
970 }
971
972 /* Write an empty refcount table */
973 refcount_table = qemu_mallocz(cluster_size);
974 ret = bdrv_pwrite(bs, cluster_size, refcount_table, cluster_size);
975 qemu_free(refcount_table);
976
977 if (ret < 0) {
978 goto out;
979 }
980
981 bdrv_close(bs);
982
983 /*
984 * And now open the image and make it consistent first (i.e. increase the
985 * refcount of the cluster that is occupied by the header and the refcount
986 * table)
987 */
988 BlockDriver* drv = bdrv_find_format("qcow2");
989 assert(drv != NULL);
7edb1c3a
KW
990 ret = bdrv_open(bs, filename,
991 BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH, drv);
a9420734
KW
992 if (ret < 0) {
993 goto out;
994 }
995
996 ret = qcow2_alloc_clusters(bs, 2 * cluster_size);
997 if (ret < 0) {
998 goto out;
999
1000 } else if (ret != 0) {
1001 error_report("Huh, first cluster in empty image is already in use?");
1002 abort();
1003 }
1004
1005 /* Okay, now that we have a valid image, let's give it the right size */
1006 ret = bdrv_truncate(bs, total_size * BDRV_SECTOR_SIZE);
1007 if (ret < 0) {
1008 goto out;
1009 }
1010
1011 /* Want a backing file? There you go.*/
1012 if (backing_file) {
1013 ret = bdrv_change_backing_file(bs, backing_file, backing_format);
1014 if (ret < 0) {
1015 goto out;
1016 }
1017 }
1018
1019 /* And if we're supposed to preallocate metadata, do that now */
1020 if (prealloc) {
1021 ret = preallocate(bs);
1022 if (ret < 0) {
1023 goto out;
1024 }
1025 }
1026
1027 ret = 0;
1028out:
1029 bdrv_delete(bs);
1030 return ret;
1031}
de5f3f40 1032
7c80ab3f 1033static int qcow2_create(const char *filename, QEMUOptionParameter *options)
de5f3f40
KW
1034{
1035 const char *backing_file = NULL;
1036 const char *backing_fmt = NULL;
1037 uint64_t sectors = 0;
1038 int flags = 0;
1039 size_t cluster_size = 65536;
1040 int prealloc = 0;
1041
1042 /* Read out options */
1043 while (options && options->name) {
1044 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
1045 sectors = options->value.n / 512;
1046 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
1047 backing_file = options->value.s;
1048 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FMT)) {
1049 backing_fmt = options->value.s;
1050 } else if (!strcmp(options->name, BLOCK_OPT_ENCRYPT)) {
1051 flags |= options->value.n ? BLOCK_FLAG_ENCRYPT : 0;
1052 } else if (!strcmp(options->name, BLOCK_OPT_CLUSTER_SIZE)) {
1053 if (options->value.n) {
1054 cluster_size = options->value.n;
1055 }
1056 } else if (!strcmp(options->name, BLOCK_OPT_PREALLOC)) {
1057 if (!options->value.s || !strcmp(options->value.s, "off")) {
1058 prealloc = 0;
1059 } else if (!strcmp(options->value.s, "metadata")) {
1060 prealloc = 1;
1061 } else {
1062 fprintf(stderr, "Invalid preallocation mode: '%s'\n",
1063 options->value.s);
1064 return -EINVAL;
1065 }
1066 }
1067 options++;
1068 }
1069
1070 if (backing_file && prealloc) {
1071 fprintf(stderr, "Backing file and preallocation cannot be used at "
1072 "the same time\n");
1073 return -EINVAL;
1074 }
1075
7c80ab3f
JS
1076 return qcow2_create2(filename, sectors, backing_file, backing_fmt, flags,
1077 cluster_size, prealloc, options);
de5f3f40
KW
1078}
1079
7c80ab3f 1080static int qcow2_make_empty(BlockDriverState *bs)
20d97356
BS
1081{
1082#if 0
1083 /* XXX: not correct */
1084 BDRVQcowState *s = bs->opaque;
1085 uint32_t l1_length = s->l1_size * sizeof(uint64_t);
1086 int ret;
1087
1088 memset(s->l1_table, 0, l1_length);
66f82cee 1089 if (bdrv_pwrite(bs->file, s->l1_table_offset, s->l1_table, l1_length) < 0)
20d97356 1090 return -1;
66f82cee 1091 ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length);
20d97356
BS
1092 if (ret < 0)
1093 return ret;
1094
1095 l2_cache_reset(bs);
1096#endif
1097 return 0;
1098}
1099
5ea929e3
KW
1100static int qcow2_discard(BlockDriverState *bs, int64_t sector_num,
1101 int nb_sectors)
1102{
1103 return qcow2_discard_clusters(bs, sector_num << BDRV_SECTOR_BITS,
1104 nb_sectors);
1105}
1106
419b19d9
SH
1107static int qcow2_truncate(BlockDriverState *bs, int64_t offset)
1108{
1109 BDRVQcowState *s = bs->opaque;
1110 int ret, new_l1_size;
1111
1112 if (offset & 511) {
1113 return -EINVAL;
1114 }
1115
1116 /* cannot proceed if image has snapshots */
1117 if (s->nb_snapshots) {
1118 return -ENOTSUP;
1119 }
1120
1121 /* shrinking is currently not supported */
1122 if (offset < bs->total_sectors * 512) {
1123 return -ENOTSUP;
1124 }
1125
1126 new_l1_size = size_to_l1(s, offset);
72893756 1127 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
419b19d9
SH
1128 if (ret < 0) {
1129 return ret;
1130 }
1131
1132 /* write updated header.size */
1133 offset = cpu_to_be64(offset);
8b3b7206
KW
1134 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
1135 &offset, sizeof(uint64_t));
419b19d9
SH
1136 if (ret < 0) {
1137 return ret;
1138 }
1139
1140 s->l1_vm_state_index = new_l1_size;
1141 return 0;
1142}
1143
20d97356
BS
1144/* XXX: put compressed sectors first, then all the cluster aligned
1145 tables to avoid losing bytes in alignment */
7c80ab3f
JS
1146static int qcow2_write_compressed(BlockDriverState *bs, int64_t sector_num,
1147 const uint8_t *buf, int nb_sectors)
20d97356
BS
1148{
1149 BDRVQcowState *s = bs->opaque;
1150 z_stream strm;
1151 int ret, out_len;
1152 uint8_t *out_buf;
1153 uint64_t cluster_offset;
1154
1155 if (nb_sectors == 0) {
1156 /* align end of file to a sector boundary to ease reading with
1157 sector based I/Os */
66f82cee 1158 cluster_offset = bdrv_getlength(bs->file);
20d97356 1159 cluster_offset = (cluster_offset + 511) & ~511;
66f82cee 1160 bdrv_truncate(bs->file, cluster_offset);
20d97356
BS
1161 return 0;
1162 }
1163
1164 if (nb_sectors != s->cluster_sectors)
1165 return -EINVAL;
1166
1167 out_buf = qemu_malloc(s->cluster_size + (s->cluster_size / 1000) + 128);
1168
1169 /* best compression, small window, no zlib header */
1170 memset(&strm, 0, sizeof(strm));
1171 ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
1172 Z_DEFLATED, -12,
1173 9, Z_DEFAULT_STRATEGY);
1174 if (ret != 0) {
1175 qemu_free(out_buf);
1176 return -1;
1177 }
1178
1179 strm.avail_in = s->cluster_size;
1180 strm.next_in = (uint8_t *)buf;
1181 strm.avail_out = s->cluster_size;
1182 strm.next_out = out_buf;
1183
1184 ret = deflate(&strm, Z_FINISH);
1185 if (ret != Z_STREAM_END && ret != Z_OK) {
1186 qemu_free(out_buf);
1187 deflateEnd(&strm);
1188 return -1;
1189 }
1190 out_len = strm.next_out - out_buf;
1191
1192 deflateEnd(&strm);
1193
1194 if (ret != Z_STREAM_END || out_len >= s->cluster_size) {
1195 /* could not compress: write normal cluster */
1196 bdrv_write(bs, sector_num, buf, s->cluster_sectors);
1197 } else {
1198 cluster_offset = qcow2_alloc_compressed_cluster_offset(bs,
1199 sector_num << 9, out_len);
1200 if (!cluster_offset)
1201 return -1;
1202 cluster_offset &= s->cluster_offset_mask;
66f82cee
KW
1203 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_COMPRESSED);
1204 if (bdrv_pwrite(bs->file, cluster_offset, out_buf, out_len) != out_len) {
20d97356
BS
1205 qemu_free(out_buf);
1206 return -1;
1207 }
1208 }
1209
1210 qemu_free(out_buf);
1211 return 0;
1212}
1213
7c80ab3f 1214static int qcow2_flush(BlockDriverState *bs)
20d97356 1215{
29c1a730
KW
1216 BDRVQcowState *s = bs->opaque;
1217 int ret;
1218
1219 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1220 if (ret < 0) {
1221 return ret;
1222 }
1223
1224 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1225 if (ret < 0) {
1226 return ret;
1227 }
1228
205ef796 1229 return bdrv_flush(bs->file);
20d97356
BS
1230}
1231
7c80ab3f
JS
1232static BlockDriverAIOCB *qcow2_aio_flush(BlockDriverState *bs,
1233 BlockDriverCompletionFunc *cb,
1234 void *opaque)
20d97356 1235{
29c1a730
KW
1236 BDRVQcowState *s = bs->opaque;
1237 int ret;
1238
1239 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1240 if (ret < 0) {
1241 return NULL;
1242 }
1243
1244 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1245 if (ret < 0) {
1246 return NULL;
1247 }
1248
66f82cee 1249 return bdrv_aio_flush(bs->file, cb, opaque);
20d97356
BS
1250}
1251
7c80ab3f 1252static int64_t qcow2_vm_state_offset(BDRVQcowState *s)
20d97356
BS
1253{
1254 return (int64_t)s->l1_vm_state_index << (s->cluster_bits + s->l2_bits);
1255}
1256
7c80ab3f 1257static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
20d97356
BS
1258{
1259 BDRVQcowState *s = bs->opaque;
1260 bdi->cluster_size = s->cluster_size;
7c80ab3f 1261 bdi->vm_state_offset = qcow2_vm_state_offset(s);
20d97356
BS
1262 return 0;
1263}
1264
1265
7c80ab3f 1266static int qcow2_check(BlockDriverState *bs, BdrvCheckResult *result)
20d97356 1267{
9ac228e0 1268 return qcow2_check_refcounts(bs, result);
20d97356
BS
1269}
1270
1271#if 0
1272static void dump_refcounts(BlockDriverState *bs)
1273{
1274 BDRVQcowState *s = bs->opaque;
1275 int64_t nb_clusters, k, k1, size;
1276 int refcount;
1277
66f82cee 1278 size = bdrv_getlength(bs->file);
20d97356
BS
1279 nb_clusters = size_to_clusters(s, size);
1280 for(k = 0; k < nb_clusters;) {
1281 k1 = k;
1282 refcount = get_refcount(bs, k);
1283 k++;
1284 while (k < nb_clusters && get_refcount(bs, k) == refcount)
1285 k++;
0bfcd599
BS
1286 printf("%" PRId64 ": refcount=%d nb=%" PRId64 "\n", k, refcount,
1287 k - k1);
20d97356
BS
1288 }
1289}
1290#endif
1291
7c80ab3f
JS
1292static int qcow2_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1293 int64_t pos, int size)
20d97356
BS
1294{
1295 BDRVQcowState *s = bs->opaque;
1296 int growable = bs->growable;
1297 int ret;
1298
66f82cee 1299 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
20d97356 1300 bs->growable = 1;
7c80ab3f 1301 ret = bdrv_pwrite(bs, qcow2_vm_state_offset(s) + pos, buf, size);
20d97356
BS
1302 bs->growable = growable;
1303
1304 return ret;
1305}
1306
7c80ab3f
JS
1307static int qcow2_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1308 int64_t pos, int size)
20d97356
BS
1309{
1310 BDRVQcowState *s = bs->opaque;
1311 int growable = bs->growable;
1312 int ret;
1313
66f82cee 1314 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
20d97356 1315 bs->growable = 1;
7c80ab3f 1316 ret = bdrv_pread(bs, qcow2_vm_state_offset(s) + pos, buf, size);
20d97356
BS
1317 bs->growable = growable;
1318
1319 return ret;
1320}
1321
7c80ab3f 1322static QEMUOptionParameter qcow2_create_options[] = {
20d97356
BS
1323 {
1324 .name = BLOCK_OPT_SIZE,
1325 .type = OPT_SIZE,
1326 .help = "Virtual disk size"
1327 },
1328 {
1329 .name = BLOCK_OPT_BACKING_FILE,
1330 .type = OPT_STRING,
1331 .help = "File name of a base image"
1332 },
1333 {
1334 .name = BLOCK_OPT_BACKING_FMT,
1335 .type = OPT_STRING,
1336 .help = "Image format of the base image"
1337 },
1338 {
1339 .name = BLOCK_OPT_ENCRYPT,
1340 .type = OPT_FLAG,
1341 .help = "Encrypt the image"
1342 },
1343 {
1344 .name = BLOCK_OPT_CLUSTER_SIZE,
1345 .type = OPT_SIZE,
1346 .help = "qcow2 cluster size"
1347 },
1348 {
1349 .name = BLOCK_OPT_PREALLOC,
1350 .type = OPT_STRING,
1351 .help = "Preallocation mode (allowed values: off, metadata)"
1352 },
1353 { NULL }
1354};
1355
1356static BlockDriver bdrv_qcow2 = {
7c80ab3f
JS
1357 .format_name = "qcow2",
1358 .instance_size = sizeof(BDRVQcowState),
1359 .bdrv_probe = qcow2_probe,
1360 .bdrv_open = qcow2_open,
1361 .bdrv_close = qcow2_close,
1362 .bdrv_create = qcow2_create,
1363 .bdrv_flush = qcow2_flush,
1364 .bdrv_is_allocated = qcow2_is_allocated,
1365 .bdrv_set_key = qcow2_set_key,
1366 .bdrv_make_empty = qcow2_make_empty,
1367
1368 .bdrv_aio_readv = qcow2_aio_readv,
1369 .bdrv_aio_writev = qcow2_aio_writev,
1370 .bdrv_aio_flush = qcow2_aio_flush,
419b19d9 1371
5ea929e3 1372 .bdrv_discard = qcow2_discard,
419b19d9 1373 .bdrv_truncate = qcow2_truncate,
7c80ab3f 1374 .bdrv_write_compressed = qcow2_write_compressed,
20d97356
BS
1375
1376 .bdrv_snapshot_create = qcow2_snapshot_create,
1377 .bdrv_snapshot_goto = qcow2_snapshot_goto,
1378 .bdrv_snapshot_delete = qcow2_snapshot_delete,
1379 .bdrv_snapshot_list = qcow2_snapshot_list,
51ef6727 1380 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
7c80ab3f 1381 .bdrv_get_info = qcow2_get_info,
20d97356 1382
7c80ab3f
JS
1383 .bdrv_save_vmstate = qcow2_save_vmstate,
1384 .bdrv_load_vmstate = qcow2_load_vmstate,
20d97356
BS
1385
1386 .bdrv_change_backing_file = qcow2_change_backing_file,
1387
7c80ab3f
JS
1388 .create_options = qcow2_create_options,
1389 .bdrv_check = qcow2_check,
20d97356
BS
1390};
1391
5efa9d5a
AL
1392static void bdrv_qcow2_init(void)
1393{
1394 bdrv_register(&bdrv_qcow2);
1395}
1396
1397block_init(bdrv_qcow2_init);