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