]> git.proxmox.com Git - qemu.git/blob - block/qcow2.c
qcow2: Options to enable discard for freed clusters
[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/block_int.h"
26 #include "qemu/module.h"
27 #include <zlib.h>
28 #include "qemu/aes.h"
29 #include "block/qcow2.h"
30 #include "qemu/error-report.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qapi/qmp/qbool.h"
33 #include "trace.h"
34
35 /*
36 Differences with QCOW:
37
38 - Support for multiple incremental snapshots.
39 - Memory management by reference counts.
40 - Clusters which have a reference count of one have the bit
41 QCOW_OFLAG_COPIED to optimize write performance.
42 - Size of compressed clusters is stored in sectors to reduce bit usage
43 in the cluster offsets.
44 - Support for storing additional data (such as the VM state) in the
45 snapshots.
46 - If a backing store is used, the cluster size is not constrained
47 (could be backported to QCOW).
48 - L2 tables have always a size of one cluster.
49 */
50
51
52 typedef struct {
53 uint32_t magic;
54 uint32_t len;
55 } QCowExtension;
56
57 #define QCOW2_EXT_MAGIC_END 0
58 #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xE2792ACA
59 #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857
60
61 static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename)
62 {
63 const QCowHeader *cow_header = (const void *)buf;
64
65 if (buf_size >= sizeof(QCowHeader) &&
66 be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
67 be32_to_cpu(cow_header->version) >= 2)
68 return 100;
69 else
70 return 0;
71 }
72
73
74 /*
75 * read qcow2 extension and fill bs
76 * start reading from start_offset
77 * finish reading upon magic of value 0 or when end_offset reached
78 * unknown magic is skipped (future extension this version knows nothing about)
79 * return 0 upon success, non-0 otherwise
80 */
81 static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
82 uint64_t end_offset, void **p_feature_table)
83 {
84 BDRVQcowState *s = bs->opaque;
85 QCowExtension ext;
86 uint64_t offset;
87 int ret;
88
89 #ifdef DEBUG_EXT
90 printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset);
91 #endif
92 offset = start_offset;
93 while (offset < end_offset) {
94
95 #ifdef DEBUG_EXT
96 /* Sanity check */
97 if (offset > s->cluster_size)
98 printf("qcow2_read_extension: suspicious offset %lu\n", offset);
99
100 printf("attempting to read extended header in offset %lu\n", offset);
101 #endif
102
103 if (bdrv_pread(bs->file, offset, &ext, sizeof(ext)) != sizeof(ext)) {
104 fprintf(stderr, "qcow2_read_extension: ERROR: "
105 "pread fail from offset %" PRIu64 "\n",
106 offset);
107 return 1;
108 }
109 be32_to_cpus(&ext.magic);
110 be32_to_cpus(&ext.len);
111 offset += sizeof(ext);
112 #ifdef DEBUG_EXT
113 printf("ext.magic = 0x%x\n", ext.magic);
114 #endif
115 if (ext.len > end_offset - offset) {
116 error_report("Header extension too large");
117 return -EINVAL;
118 }
119
120 switch (ext.magic) {
121 case QCOW2_EXT_MAGIC_END:
122 return 0;
123
124 case QCOW2_EXT_MAGIC_BACKING_FORMAT:
125 if (ext.len >= sizeof(bs->backing_format)) {
126 fprintf(stderr, "ERROR: ext_backing_format: len=%u too large"
127 " (>=%zu)\n",
128 ext.len, sizeof(bs->backing_format));
129 return 2;
130 }
131 if (bdrv_pread(bs->file, offset , bs->backing_format,
132 ext.len) != ext.len)
133 return 3;
134 bs->backing_format[ext.len] = '\0';
135 #ifdef DEBUG_EXT
136 printf("Qcow2: Got format extension %s\n", bs->backing_format);
137 #endif
138 break;
139
140 case QCOW2_EXT_MAGIC_FEATURE_TABLE:
141 if (p_feature_table != NULL) {
142 void* feature_table = g_malloc0(ext.len + 2 * sizeof(Qcow2Feature));
143 ret = bdrv_pread(bs->file, offset , feature_table, ext.len);
144 if (ret < 0) {
145 return ret;
146 }
147
148 *p_feature_table = feature_table;
149 }
150 break;
151
152 default:
153 /* unknown magic - save it in case we need to rewrite the header */
154 {
155 Qcow2UnknownHeaderExtension *uext;
156
157 uext = g_malloc0(sizeof(*uext) + ext.len);
158 uext->magic = ext.magic;
159 uext->len = ext.len;
160 QLIST_INSERT_HEAD(&s->unknown_header_ext, uext, next);
161
162 ret = bdrv_pread(bs->file, offset , uext->data, uext->len);
163 if (ret < 0) {
164 return ret;
165 }
166 }
167 break;
168 }
169
170 offset += ((ext.len + 7) & ~7);
171 }
172
173 return 0;
174 }
175
176 static void cleanup_unknown_header_ext(BlockDriverState *bs)
177 {
178 BDRVQcowState *s = bs->opaque;
179 Qcow2UnknownHeaderExtension *uext, *next;
180
181 QLIST_FOREACH_SAFE(uext, &s->unknown_header_ext, next, next) {
182 QLIST_REMOVE(uext, next);
183 g_free(uext);
184 }
185 }
186
187 static void GCC_FMT_ATTR(2, 3) report_unsupported(BlockDriverState *bs,
188 const char *fmt, ...)
189 {
190 char msg[64];
191 va_list ap;
192
193 va_start(ap, fmt);
194 vsnprintf(msg, sizeof(msg), fmt, ap);
195 va_end(ap);
196
197 qerror_report(QERR_UNKNOWN_BLOCK_FORMAT_FEATURE,
198 bs->device_name, "qcow2", msg);
199 }
200
201 static void report_unsupported_feature(BlockDriverState *bs,
202 Qcow2Feature *table, uint64_t mask)
203 {
204 while (table && table->name[0] != '\0') {
205 if (table->type == QCOW2_FEAT_TYPE_INCOMPATIBLE) {
206 if (mask & (1 << table->bit)) {
207 report_unsupported(bs, "%.46s",table->name);
208 mask &= ~(1 << table->bit);
209 }
210 }
211 table++;
212 }
213
214 if (mask) {
215 report_unsupported(bs, "Unknown incompatible feature: %" PRIx64, mask);
216 }
217 }
218
219 /*
220 * Sets the dirty bit and flushes afterwards if necessary.
221 *
222 * The incompatible_features bit is only set if the image file header was
223 * updated successfully. Therefore it is not required to check the return
224 * value of this function.
225 */
226 int qcow2_mark_dirty(BlockDriverState *bs)
227 {
228 BDRVQcowState *s = bs->opaque;
229 uint64_t val;
230 int ret;
231
232 assert(s->qcow_version >= 3);
233
234 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
235 return 0; /* already dirty */
236 }
237
238 val = cpu_to_be64(s->incompatible_features | QCOW2_INCOMPAT_DIRTY);
239 ret = bdrv_pwrite(bs->file, offsetof(QCowHeader, incompatible_features),
240 &val, sizeof(val));
241 if (ret < 0) {
242 return ret;
243 }
244 ret = bdrv_flush(bs->file);
245 if (ret < 0) {
246 return ret;
247 }
248
249 /* Only treat image as dirty if the header was updated successfully */
250 s->incompatible_features |= QCOW2_INCOMPAT_DIRTY;
251 return 0;
252 }
253
254 /*
255 * Clears the dirty bit and flushes before if necessary. Only call this
256 * function when there are no pending requests, it does not guard against
257 * concurrent requests dirtying the image.
258 */
259 static int qcow2_mark_clean(BlockDriverState *bs)
260 {
261 BDRVQcowState *s = bs->opaque;
262
263 if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) {
264 int ret = bdrv_flush(bs);
265 if (ret < 0) {
266 return ret;
267 }
268
269 s->incompatible_features &= ~QCOW2_INCOMPAT_DIRTY;
270 return qcow2_update_header(bs);
271 }
272 return 0;
273 }
274
275 static int qcow2_check(BlockDriverState *bs, BdrvCheckResult *result,
276 BdrvCheckMode fix)
277 {
278 int ret = qcow2_check_refcounts(bs, result, fix);
279 if (ret < 0) {
280 return ret;
281 }
282
283 if (fix && result->check_errors == 0 && result->corruptions == 0) {
284 return qcow2_mark_clean(bs);
285 }
286 return ret;
287 }
288
289 static QemuOptsList qcow2_runtime_opts = {
290 .name = "qcow2",
291 .head = QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts.head),
292 .desc = {
293 {
294 .name = "lazy_refcounts",
295 .type = QEMU_OPT_BOOL,
296 .help = "Postpone refcount updates",
297 },
298 {
299 .name = QCOW2_OPT_DISCARD_REQUEST,
300 .type = QEMU_OPT_BOOL,
301 .help = "Pass guest discard requests to the layer below",
302 },
303 {
304 .name = QCOW2_OPT_DISCARD_SNAPSHOT,
305 .type = QEMU_OPT_BOOL,
306 .help = "Generate discard requests when snapshot related space "
307 "is freed",
308 },
309 {
310 .name = QCOW2_OPT_DISCARD_OTHER,
311 .type = QEMU_OPT_BOOL,
312 .help = "Generate discard requests when other clusters are freed",
313 },
314 { /* end of list */ }
315 },
316 };
317
318 static int qcow2_open(BlockDriverState *bs, QDict *options, int flags)
319 {
320 BDRVQcowState *s = bs->opaque;
321 int len, i, ret = 0;
322 QCowHeader header;
323 QemuOpts *opts;
324 Error *local_err = NULL;
325 uint64_t ext_end;
326 uint64_t l1_vm_state_index;
327
328 ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
329 if (ret < 0) {
330 goto fail;
331 }
332 be32_to_cpus(&header.magic);
333 be32_to_cpus(&header.version);
334 be64_to_cpus(&header.backing_file_offset);
335 be32_to_cpus(&header.backing_file_size);
336 be64_to_cpus(&header.size);
337 be32_to_cpus(&header.cluster_bits);
338 be32_to_cpus(&header.crypt_method);
339 be64_to_cpus(&header.l1_table_offset);
340 be32_to_cpus(&header.l1_size);
341 be64_to_cpus(&header.refcount_table_offset);
342 be32_to_cpus(&header.refcount_table_clusters);
343 be64_to_cpus(&header.snapshots_offset);
344 be32_to_cpus(&header.nb_snapshots);
345
346 if (header.magic != QCOW_MAGIC) {
347 ret = -EMEDIUMTYPE;
348 goto fail;
349 }
350 if (header.version < 2 || header.version > 3) {
351 report_unsupported(bs, "QCOW version %d", header.version);
352 ret = -ENOTSUP;
353 goto fail;
354 }
355
356 s->qcow_version = header.version;
357
358 /* Initialise version 3 header fields */
359 if (header.version == 2) {
360 header.incompatible_features = 0;
361 header.compatible_features = 0;
362 header.autoclear_features = 0;
363 header.refcount_order = 4;
364 header.header_length = 72;
365 } else {
366 be64_to_cpus(&header.incompatible_features);
367 be64_to_cpus(&header.compatible_features);
368 be64_to_cpus(&header.autoclear_features);
369 be32_to_cpus(&header.refcount_order);
370 be32_to_cpus(&header.header_length);
371 }
372
373 if (header.header_length > sizeof(header)) {
374 s->unknown_header_fields_size = header.header_length - sizeof(header);
375 s->unknown_header_fields = g_malloc(s->unknown_header_fields_size);
376 ret = bdrv_pread(bs->file, sizeof(header), s->unknown_header_fields,
377 s->unknown_header_fields_size);
378 if (ret < 0) {
379 goto fail;
380 }
381 }
382
383 if (header.backing_file_offset) {
384 ext_end = header.backing_file_offset;
385 } else {
386 ext_end = 1 << header.cluster_bits;
387 }
388
389 /* Handle feature bits */
390 s->incompatible_features = header.incompatible_features;
391 s->compatible_features = header.compatible_features;
392 s->autoclear_features = header.autoclear_features;
393
394 if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) {
395 void *feature_table = NULL;
396 qcow2_read_extensions(bs, header.header_length, ext_end,
397 &feature_table);
398 report_unsupported_feature(bs, feature_table,
399 s->incompatible_features &
400 ~QCOW2_INCOMPAT_MASK);
401 ret = -ENOTSUP;
402 goto fail;
403 }
404
405 /* Check support for various header values */
406 if (header.refcount_order != 4) {
407 report_unsupported(bs, "%d bit reference counts",
408 1 << header.refcount_order);
409 ret = -ENOTSUP;
410 goto fail;
411 }
412
413 if (header.cluster_bits < MIN_CLUSTER_BITS ||
414 header.cluster_bits > MAX_CLUSTER_BITS) {
415 ret = -EINVAL;
416 goto fail;
417 }
418 if (header.crypt_method > QCOW_CRYPT_AES) {
419 ret = -EINVAL;
420 goto fail;
421 }
422 s->crypt_method_header = header.crypt_method;
423 if (s->crypt_method_header) {
424 bs->encrypted = 1;
425 }
426 s->cluster_bits = header.cluster_bits;
427 s->cluster_size = 1 << s->cluster_bits;
428 s->cluster_sectors = 1 << (s->cluster_bits - 9);
429 s->l2_bits = s->cluster_bits - 3; /* L2 is always one cluster */
430 s->l2_size = 1 << s->l2_bits;
431 bs->total_sectors = header.size / 512;
432 s->csize_shift = (62 - (s->cluster_bits - 8));
433 s->csize_mask = (1 << (s->cluster_bits - 8)) - 1;
434 s->cluster_offset_mask = (1LL << s->csize_shift) - 1;
435 s->refcount_table_offset = header.refcount_table_offset;
436 s->refcount_table_size =
437 header.refcount_table_clusters << (s->cluster_bits - 3);
438
439 s->snapshots_offset = header.snapshots_offset;
440 s->nb_snapshots = header.nb_snapshots;
441
442 /* read the level 1 table */
443 s->l1_size = header.l1_size;
444
445 l1_vm_state_index = size_to_l1(s, header.size);
446 if (l1_vm_state_index > INT_MAX) {
447 ret = -EFBIG;
448 goto fail;
449 }
450 s->l1_vm_state_index = l1_vm_state_index;
451
452 /* the L1 table must contain at least enough entries to put
453 header.size bytes */
454 if (s->l1_size < s->l1_vm_state_index) {
455 ret = -EINVAL;
456 goto fail;
457 }
458 s->l1_table_offset = header.l1_table_offset;
459 if (s->l1_size > 0) {
460 s->l1_table = g_malloc0(
461 align_offset(s->l1_size * sizeof(uint64_t), 512));
462 ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
463 s->l1_size * sizeof(uint64_t));
464 if (ret < 0) {
465 goto fail;
466 }
467 for(i = 0;i < s->l1_size; i++) {
468 be64_to_cpus(&s->l1_table[i]);
469 }
470 }
471
472 /* alloc L2 table/refcount block cache */
473 s->l2_table_cache = qcow2_cache_create(bs, L2_CACHE_SIZE);
474 s->refcount_block_cache = qcow2_cache_create(bs, REFCOUNT_CACHE_SIZE);
475
476 s->cluster_cache = g_malloc(s->cluster_size);
477 /* one more sector for decompressed data alignment */
478 s->cluster_data = qemu_blockalign(bs, QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size
479 + 512);
480 s->cluster_cache_offset = -1;
481 s->flags = flags;
482
483 ret = qcow2_refcount_init(bs);
484 if (ret != 0) {
485 goto fail;
486 }
487
488 QLIST_INIT(&s->cluster_allocs);
489
490 /* read qcow2 extensions */
491 if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL)) {
492 ret = -EINVAL;
493 goto fail;
494 }
495
496 /* read the backing file name */
497 if (header.backing_file_offset != 0) {
498 len = header.backing_file_size;
499 if (len > 1023) {
500 len = 1023;
501 }
502 ret = bdrv_pread(bs->file, header.backing_file_offset,
503 bs->backing_file, len);
504 if (ret < 0) {
505 goto fail;
506 }
507 bs->backing_file[len] = '\0';
508 }
509
510 ret = qcow2_read_snapshots(bs);
511 if (ret < 0) {
512 goto fail;
513 }
514
515 /* Clear unknown autoclear feature bits */
516 if (!bs->read_only && s->autoclear_features != 0) {
517 s->autoclear_features = 0;
518 ret = qcow2_update_header(bs);
519 if (ret < 0) {
520 goto fail;
521 }
522 }
523
524 /* Initialise locks */
525 qemu_co_mutex_init(&s->lock);
526
527 /* Repair image if dirty */
528 if (!(flags & BDRV_O_CHECK) && !bs->read_only &&
529 (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) {
530 BdrvCheckResult result = {0};
531
532 ret = qcow2_check(bs, &result, BDRV_FIX_ERRORS);
533 if (ret < 0) {
534 goto fail;
535 }
536 }
537
538 /* Enable lazy_refcounts according to image and command line options */
539 opts = qemu_opts_create_nofail(&qcow2_runtime_opts);
540 qemu_opts_absorb_qdict(opts, options, &local_err);
541 if (error_is_set(&local_err)) {
542 qerror_report_err(local_err);
543 error_free(local_err);
544 ret = -EINVAL;
545 goto fail;
546 }
547
548 s->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS,
549 (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS));
550
551 s->discard_passthrough[QCOW2_DISCARD_NEVER] = false;
552 s->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true;
553 s->discard_passthrough[QCOW2_DISCARD_REQUEST] =
554 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST,
555 flags & BDRV_O_UNMAP);
556 s->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] =
557 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true);
558 s->discard_passthrough[QCOW2_DISCARD_OTHER] =
559 qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false);
560
561 qemu_opts_del(opts);
562
563 if (s->use_lazy_refcounts && s->qcow_version < 3) {
564 qerror_report(ERROR_CLASS_GENERIC_ERROR, "Lazy refcounts require "
565 "a qcow2 image with at least qemu 1.1 compatibility level");
566 ret = -EINVAL;
567 goto fail;
568 }
569
570 #ifdef DEBUG_ALLOC
571 {
572 BdrvCheckResult result = {0};
573 qcow2_check_refcounts(bs, &result, 0);
574 }
575 #endif
576 return ret;
577
578 fail:
579 g_free(s->unknown_header_fields);
580 cleanup_unknown_header_ext(bs);
581 qcow2_free_snapshots(bs);
582 qcow2_refcount_close(bs);
583 g_free(s->l1_table);
584 if (s->l2_table_cache) {
585 qcow2_cache_destroy(bs, s->l2_table_cache);
586 }
587 g_free(s->cluster_cache);
588 qemu_vfree(s->cluster_data);
589 return ret;
590 }
591
592 static int qcow2_set_key(BlockDriverState *bs, const char *key)
593 {
594 BDRVQcowState *s = bs->opaque;
595 uint8_t keybuf[16];
596 int len, i;
597
598 memset(keybuf, 0, 16);
599 len = strlen(key);
600 if (len > 16)
601 len = 16;
602 /* XXX: we could compress the chars to 7 bits to increase
603 entropy */
604 for(i = 0;i < len;i++) {
605 keybuf[i] = key[i];
606 }
607 s->crypt_method = s->crypt_method_header;
608
609 if (AES_set_encrypt_key(keybuf, 128, &s->aes_encrypt_key) != 0)
610 return -1;
611 if (AES_set_decrypt_key(keybuf, 128, &s->aes_decrypt_key) != 0)
612 return -1;
613 #if 0
614 /* test */
615 {
616 uint8_t in[16];
617 uint8_t out[16];
618 uint8_t tmp[16];
619 for(i=0;i<16;i++)
620 in[i] = i;
621 AES_encrypt(in, tmp, &s->aes_encrypt_key);
622 AES_decrypt(tmp, out, &s->aes_decrypt_key);
623 for(i = 0; i < 16; i++)
624 printf(" %02x", tmp[i]);
625 printf("\n");
626 for(i = 0; i < 16; i++)
627 printf(" %02x", out[i]);
628 printf("\n");
629 }
630 #endif
631 return 0;
632 }
633
634 /* We have nothing to do for QCOW2 reopen, stubs just return
635 * success */
636 static int qcow2_reopen_prepare(BDRVReopenState *state,
637 BlockReopenQueue *queue, Error **errp)
638 {
639 return 0;
640 }
641
642 static int coroutine_fn qcow2_co_is_allocated(BlockDriverState *bs,
643 int64_t sector_num, int nb_sectors, int *pnum)
644 {
645 BDRVQcowState *s = bs->opaque;
646 uint64_t cluster_offset;
647 int ret;
648
649 *pnum = nb_sectors;
650 /* FIXME We can get errors here, but the bdrv_co_is_allocated interface
651 * can't pass them on today */
652 qemu_co_mutex_lock(&s->lock);
653 ret = qcow2_get_cluster_offset(bs, sector_num << 9, pnum, &cluster_offset);
654 qemu_co_mutex_unlock(&s->lock);
655 if (ret < 0) {
656 *pnum = 0;
657 }
658
659 return (cluster_offset != 0) || (ret == QCOW2_CLUSTER_ZERO);
660 }
661
662 /* handle reading after the end of the backing file */
663 int qcow2_backing_read1(BlockDriverState *bs, QEMUIOVector *qiov,
664 int64_t sector_num, int nb_sectors)
665 {
666 int n1;
667 if ((sector_num + nb_sectors) <= bs->total_sectors)
668 return nb_sectors;
669 if (sector_num >= bs->total_sectors)
670 n1 = 0;
671 else
672 n1 = bs->total_sectors - sector_num;
673
674 qemu_iovec_memset(qiov, 512 * n1, 0, 512 * (nb_sectors - n1));
675
676 return n1;
677 }
678
679 static coroutine_fn int qcow2_co_readv(BlockDriverState *bs, int64_t sector_num,
680 int remaining_sectors, QEMUIOVector *qiov)
681 {
682 BDRVQcowState *s = bs->opaque;
683 int index_in_cluster, n1;
684 int ret;
685 int cur_nr_sectors; /* number of sectors in current iteration */
686 uint64_t cluster_offset = 0;
687 uint64_t bytes_done = 0;
688 QEMUIOVector hd_qiov;
689 uint8_t *cluster_data = NULL;
690
691 qemu_iovec_init(&hd_qiov, qiov->niov);
692
693 qemu_co_mutex_lock(&s->lock);
694
695 while (remaining_sectors != 0) {
696
697 /* prepare next request */
698 cur_nr_sectors = remaining_sectors;
699 if (s->crypt_method) {
700 cur_nr_sectors = MIN(cur_nr_sectors,
701 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
702 }
703
704 ret = qcow2_get_cluster_offset(bs, sector_num << 9,
705 &cur_nr_sectors, &cluster_offset);
706 if (ret < 0) {
707 goto fail;
708 }
709
710 index_in_cluster = sector_num & (s->cluster_sectors - 1);
711
712 qemu_iovec_reset(&hd_qiov);
713 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
714 cur_nr_sectors * 512);
715
716 switch (ret) {
717 case QCOW2_CLUSTER_UNALLOCATED:
718
719 if (bs->backing_hd) {
720 /* read from the base image */
721 n1 = qcow2_backing_read1(bs->backing_hd, &hd_qiov,
722 sector_num, cur_nr_sectors);
723 if (n1 > 0) {
724 BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO);
725 qemu_co_mutex_unlock(&s->lock);
726 ret = bdrv_co_readv(bs->backing_hd, sector_num,
727 n1, &hd_qiov);
728 qemu_co_mutex_lock(&s->lock);
729 if (ret < 0) {
730 goto fail;
731 }
732 }
733 } else {
734 /* Note: in this case, no need to wait */
735 qemu_iovec_memset(&hd_qiov, 0, 0, 512 * cur_nr_sectors);
736 }
737 break;
738
739 case QCOW2_CLUSTER_ZERO:
740 qemu_iovec_memset(&hd_qiov, 0, 0, 512 * cur_nr_sectors);
741 break;
742
743 case QCOW2_CLUSTER_COMPRESSED:
744 /* add AIO support for compressed blocks ? */
745 ret = qcow2_decompress_cluster(bs, cluster_offset);
746 if (ret < 0) {
747 goto fail;
748 }
749
750 qemu_iovec_from_buf(&hd_qiov, 0,
751 s->cluster_cache + index_in_cluster * 512,
752 512 * cur_nr_sectors);
753 break;
754
755 case QCOW2_CLUSTER_NORMAL:
756 if ((cluster_offset & 511) != 0) {
757 ret = -EIO;
758 goto fail;
759 }
760
761 if (s->crypt_method) {
762 /*
763 * For encrypted images, read everything into a temporary
764 * contiguous buffer on which the AES functions can work.
765 */
766 if (!cluster_data) {
767 cluster_data =
768 qemu_blockalign(bs, QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
769 }
770
771 assert(cur_nr_sectors <=
772 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors);
773 qemu_iovec_reset(&hd_qiov);
774 qemu_iovec_add(&hd_qiov, cluster_data,
775 512 * cur_nr_sectors);
776 }
777
778 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
779 qemu_co_mutex_unlock(&s->lock);
780 ret = bdrv_co_readv(bs->file,
781 (cluster_offset >> 9) + index_in_cluster,
782 cur_nr_sectors, &hd_qiov);
783 qemu_co_mutex_lock(&s->lock);
784 if (ret < 0) {
785 goto fail;
786 }
787 if (s->crypt_method) {
788 qcow2_encrypt_sectors(s, sector_num, cluster_data,
789 cluster_data, cur_nr_sectors, 0, &s->aes_decrypt_key);
790 qemu_iovec_from_buf(qiov, bytes_done,
791 cluster_data, 512 * cur_nr_sectors);
792 }
793 break;
794
795 default:
796 g_assert_not_reached();
797 ret = -EIO;
798 goto fail;
799 }
800
801 remaining_sectors -= cur_nr_sectors;
802 sector_num += cur_nr_sectors;
803 bytes_done += cur_nr_sectors * 512;
804 }
805 ret = 0;
806
807 fail:
808 qemu_co_mutex_unlock(&s->lock);
809
810 qemu_iovec_destroy(&hd_qiov);
811 qemu_vfree(cluster_data);
812
813 return ret;
814 }
815
816 static coroutine_fn int qcow2_co_writev(BlockDriverState *bs,
817 int64_t sector_num,
818 int remaining_sectors,
819 QEMUIOVector *qiov)
820 {
821 BDRVQcowState *s = bs->opaque;
822 int index_in_cluster;
823 int n_end;
824 int ret;
825 int cur_nr_sectors; /* number of sectors in current iteration */
826 uint64_t cluster_offset;
827 QEMUIOVector hd_qiov;
828 uint64_t bytes_done = 0;
829 uint8_t *cluster_data = NULL;
830 QCowL2Meta *l2meta = NULL;
831
832 trace_qcow2_writev_start_req(qemu_coroutine_self(), sector_num,
833 remaining_sectors);
834
835 qemu_iovec_init(&hd_qiov, qiov->niov);
836
837 s->cluster_cache_offset = -1; /* disable compressed cache */
838
839 qemu_co_mutex_lock(&s->lock);
840
841 while (remaining_sectors != 0) {
842
843 l2meta = NULL;
844
845 trace_qcow2_writev_start_part(qemu_coroutine_self());
846 index_in_cluster = sector_num & (s->cluster_sectors - 1);
847 n_end = index_in_cluster + remaining_sectors;
848 if (s->crypt_method &&
849 n_end > QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors) {
850 n_end = QCOW_MAX_CRYPT_CLUSTERS * s->cluster_sectors;
851 }
852
853 ret = qcow2_alloc_cluster_offset(bs, sector_num << 9,
854 index_in_cluster, n_end, &cur_nr_sectors, &cluster_offset, &l2meta);
855 if (ret < 0) {
856 goto fail;
857 }
858
859 assert((cluster_offset & 511) == 0);
860
861 qemu_iovec_reset(&hd_qiov);
862 qemu_iovec_concat(&hd_qiov, qiov, bytes_done,
863 cur_nr_sectors * 512);
864
865 if (s->crypt_method) {
866 if (!cluster_data) {
867 cluster_data = qemu_blockalign(bs, QCOW_MAX_CRYPT_CLUSTERS *
868 s->cluster_size);
869 }
870
871 assert(hd_qiov.size <=
872 QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size);
873 qemu_iovec_to_buf(&hd_qiov, 0, cluster_data, hd_qiov.size);
874
875 qcow2_encrypt_sectors(s, sector_num, cluster_data,
876 cluster_data, cur_nr_sectors, 1, &s->aes_encrypt_key);
877
878 qemu_iovec_reset(&hd_qiov);
879 qemu_iovec_add(&hd_qiov, cluster_data,
880 cur_nr_sectors * 512);
881 }
882
883 qemu_co_mutex_unlock(&s->lock);
884 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
885 trace_qcow2_writev_data(qemu_coroutine_self(),
886 (cluster_offset >> 9) + index_in_cluster);
887 ret = bdrv_co_writev(bs->file,
888 (cluster_offset >> 9) + index_in_cluster,
889 cur_nr_sectors, &hd_qiov);
890 qemu_co_mutex_lock(&s->lock);
891 if (ret < 0) {
892 goto fail;
893 }
894
895 while (l2meta != NULL) {
896 QCowL2Meta *next;
897
898 ret = qcow2_alloc_cluster_link_l2(bs, l2meta);
899 if (ret < 0) {
900 goto fail;
901 }
902
903 /* Take the request off the list of running requests */
904 if (l2meta->nb_clusters != 0) {
905 QLIST_REMOVE(l2meta, next_in_flight);
906 }
907
908 qemu_co_queue_restart_all(&l2meta->dependent_requests);
909
910 next = l2meta->next;
911 g_free(l2meta);
912 l2meta = next;
913 }
914
915 remaining_sectors -= cur_nr_sectors;
916 sector_num += cur_nr_sectors;
917 bytes_done += cur_nr_sectors * 512;
918 trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_nr_sectors);
919 }
920 ret = 0;
921
922 fail:
923 qemu_co_mutex_unlock(&s->lock);
924
925 while (l2meta != NULL) {
926 QCowL2Meta *next;
927
928 if (l2meta->nb_clusters != 0) {
929 QLIST_REMOVE(l2meta, next_in_flight);
930 }
931 qemu_co_queue_restart_all(&l2meta->dependent_requests);
932
933 next = l2meta->next;
934 g_free(l2meta);
935 l2meta = next;
936 }
937
938 qemu_iovec_destroy(&hd_qiov);
939 qemu_vfree(cluster_data);
940 trace_qcow2_writev_done_req(qemu_coroutine_self(), ret);
941
942 return ret;
943 }
944
945 static void qcow2_close(BlockDriverState *bs)
946 {
947 BDRVQcowState *s = bs->opaque;
948 g_free(s->l1_table);
949
950 qcow2_cache_flush(bs, s->l2_table_cache);
951 qcow2_cache_flush(bs, s->refcount_block_cache);
952
953 qcow2_mark_clean(bs);
954
955 qcow2_cache_destroy(bs, s->l2_table_cache);
956 qcow2_cache_destroy(bs, s->refcount_block_cache);
957
958 g_free(s->unknown_header_fields);
959 cleanup_unknown_header_ext(bs);
960
961 g_free(s->cluster_cache);
962 qemu_vfree(s->cluster_data);
963 qcow2_refcount_close(bs);
964 qcow2_free_snapshots(bs);
965 }
966
967 static void qcow2_invalidate_cache(BlockDriverState *bs)
968 {
969 BDRVQcowState *s = bs->opaque;
970 int flags = s->flags;
971 AES_KEY aes_encrypt_key;
972 AES_KEY aes_decrypt_key;
973 uint32_t crypt_method = 0;
974 QDict *options;
975
976 /*
977 * Backing files are read-only which makes all of their metadata immutable,
978 * that means we don't have to worry about reopening them here.
979 */
980
981 if (s->crypt_method) {
982 crypt_method = s->crypt_method;
983 memcpy(&aes_encrypt_key, &s->aes_encrypt_key, sizeof(aes_encrypt_key));
984 memcpy(&aes_decrypt_key, &s->aes_decrypt_key, sizeof(aes_decrypt_key));
985 }
986
987 qcow2_close(bs);
988
989 options = qdict_new();
990 qdict_put(options, QCOW2_OPT_LAZY_REFCOUNTS,
991 qbool_from_int(s->use_lazy_refcounts));
992
993 memset(s, 0, sizeof(BDRVQcowState));
994 qcow2_open(bs, options, flags);
995
996 QDECREF(options);
997
998 if (crypt_method) {
999 s->crypt_method = crypt_method;
1000 memcpy(&s->aes_encrypt_key, &aes_encrypt_key, sizeof(aes_encrypt_key));
1001 memcpy(&s->aes_decrypt_key, &aes_decrypt_key, sizeof(aes_decrypt_key));
1002 }
1003 }
1004
1005 static size_t header_ext_add(char *buf, uint32_t magic, const void *s,
1006 size_t len, size_t buflen)
1007 {
1008 QCowExtension *ext_backing_fmt = (QCowExtension*) buf;
1009 size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7);
1010
1011 if (buflen < ext_len) {
1012 return -ENOSPC;
1013 }
1014
1015 *ext_backing_fmt = (QCowExtension) {
1016 .magic = cpu_to_be32(magic),
1017 .len = cpu_to_be32(len),
1018 };
1019 memcpy(buf + sizeof(QCowExtension), s, len);
1020
1021 return ext_len;
1022 }
1023
1024 /*
1025 * Updates the qcow2 header, including the variable length parts of it, i.e.
1026 * the backing file name and all extensions. qcow2 was not designed to allow
1027 * such changes, so if we run out of space (we can only use the first cluster)
1028 * this function may fail.
1029 *
1030 * Returns 0 on success, -errno in error cases.
1031 */
1032 int qcow2_update_header(BlockDriverState *bs)
1033 {
1034 BDRVQcowState *s = bs->opaque;
1035 QCowHeader *header;
1036 char *buf;
1037 size_t buflen = s->cluster_size;
1038 int ret;
1039 uint64_t total_size;
1040 uint32_t refcount_table_clusters;
1041 size_t header_length;
1042 Qcow2UnknownHeaderExtension *uext;
1043
1044 buf = qemu_blockalign(bs, buflen);
1045
1046 /* Header structure */
1047 header = (QCowHeader*) buf;
1048
1049 if (buflen < sizeof(*header)) {
1050 ret = -ENOSPC;
1051 goto fail;
1052 }
1053
1054 header_length = sizeof(*header) + s->unknown_header_fields_size;
1055 total_size = bs->total_sectors * BDRV_SECTOR_SIZE;
1056 refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3);
1057
1058 *header = (QCowHeader) {
1059 /* Version 2 fields */
1060 .magic = cpu_to_be32(QCOW_MAGIC),
1061 .version = cpu_to_be32(s->qcow_version),
1062 .backing_file_offset = 0,
1063 .backing_file_size = 0,
1064 .cluster_bits = cpu_to_be32(s->cluster_bits),
1065 .size = cpu_to_be64(total_size),
1066 .crypt_method = cpu_to_be32(s->crypt_method_header),
1067 .l1_size = cpu_to_be32(s->l1_size),
1068 .l1_table_offset = cpu_to_be64(s->l1_table_offset),
1069 .refcount_table_offset = cpu_to_be64(s->refcount_table_offset),
1070 .refcount_table_clusters = cpu_to_be32(refcount_table_clusters),
1071 .nb_snapshots = cpu_to_be32(s->nb_snapshots),
1072 .snapshots_offset = cpu_to_be64(s->snapshots_offset),
1073
1074 /* Version 3 fields */
1075 .incompatible_features = cpu_to_be64(s->incompatible_features),
1076 .compatible_features = cpu_to_be64(s->compatible_features),
1077 .autoclear_features = cpu_to_be64(s->autoclear_features),
1078 .refcount_order = cpu_to_be32(3 + REFCOUNT_SHIFT),
1079 .header_length = cpu_to_be32(header_length),
1080 };
1081
1082 /* For older versions, write a shorter header */
1083 switch (s->qcow_version) {
1084 case 2:
1085 ret = offsetof(QCowHeader, incompatible_features);
1086 break;
1087 case 3:
1088 ret = sizeof(*header);
1089 break;
1090 default:
1091 ret = -EINVAL;
1092 goto fail;
1093 }
1094
1095 buf += ret;
1096 buflen -= ret;
1097 memset(buf, 0, buflen);
1098
1099 /* Preserve any unknown field in the header */
1100 if (s->unknown_header_fields_size) {
1101 if (buflen < s->unknown_header_fields_size) {
1102 ret = -ENOSPC;
1103 goto fail;
1104 }
1105
1106 memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size);
1107 buf += s->unknown_header_fields_size;
1108 buflen -= s->unknown_header_fields_size;
1109 }
1110
1111 /* Backing file format header extension */
1112 if (*bs->backing_format) {
1113 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT,
1114 bs->backing_format, strlen(bs->backing_format),
1115 buflen);
1116 if (ret < 0) {
1117 goto fail;
1118 }
1119
1120 buf += ret;
1121 buflen -= ret;
1122 }
1123
1124 /* Feature table */
1125 Qcow2Feature features[] = {
1126 {
1127 .type = QCOW2_FEAT_TYPE_INCOMPATIBLE,
1128 .bit = QCOW2_INCOMPAT_DIRTY_BITNR,
1129 .name = "dirty bit",
1130 },
1131 {
1132 .type = QCOW2_FEAT_TYPE_COMPATIBLE,
1133 .bit = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR,
1134 .name = "lazy refcounts",
1135 },
1136 };
1137
1138 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE,
1139 features, sizeof(features), buflen);
1140 if (ret < 0) {
1141 goto fail;
1142 }
1143 buf += ret;
1144 buflen -= ret;
1145
1146 /* Keep unknown header extensions */
1147 QLIST_FOREACH(uext, &s->unknown_header_ext, next) {
1148 ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen);
1149 if (ret < 0) {
1150 goto fail;
1151 }
1152
1153 buf += ret;
1154 buflen -= ret;
1155 }
1156
1157 /* End of header extensions */
1158 ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen);
1159 if (ret < 0) {
1160 goto fail;
1161 }
1162
1163 buf += ret;
1164 buflen -= ret;
1165
1166 /* Backing file name */
1167 if (*bs->backing_file) {
1168 size_t backing_file_len = strlen(bs->backing_file);
1169
1170 if (buflen < backing_file_len) {
1171 ret = -ENOSPC;
1172 goto fail;
1173 }
1174
1175 /* Using strncpy is ok here, since buf is not NUL-terminated. */
1176 strncpy(buf, bs->backing_file, buflen);
1177
1178 header->backing_file_offset = cpu_to_be64(buf - ((char*) header));
1179 header->backing_file_size = cpu_to_be32(backing_file_len);
1180 }
1181
1182 /* Write the new header */
1183 ret = bdrv_pwrite(bs->file, 0, header, s->cluster_size);
1184 if (ret < 0) {
1185 goto fail;
1186 }
1187
1188 ret = 0;
1189 fail:
1190 qemu_vfree(header);
1191 return ret;
1192 }
1193
1194 static int qcow2_change_backing_file(BlockDriverState *bs,
1195 const char *backing_file, const char *backing_fmt)
1196 {
1197 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
1198 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
1199
1200 return qcow2_update_header(bs);
1201 }
1202
1203 static int preallocate(BlockDriverState *bs)
1204 {
1205 uint64_t nb_sectors;
1206 uint64_t offset;
1207 uint64_t host_offset = 0;
1208 int num;
1209 int ret;
1210 QCowL2Meta *meta;
1211
1212 nb_sectors = bdrv_getlength(bs) >> 9;
1213 offset = 0;
1214
1215 while (nb_sectors) {
1216 num = MIN(nb_sectors, INT_MAX >> 9);
1217 ret = qcow2_alloc_cluster_offset(bs, offset, 0, num, &num,
1218 &host_offset, &meta);
1219 if (ret < 0) {
1220 return ret;
1221 }
1222
1223 ret = qcow2_alloc_cluster_link_l2(bs, meta);
1224 if (ret < 0) {
1225 qcow2_free_any_clusters(bs, meta->alloc_offset, meta->nb_clusters,
1226 QCOW2_DISCARD_NEVER);
1227 return ret;
1228 }
1229
1230 /* There are no dependent requests, but we need to remove our request
1231 * from the list of in-flight requests */
1232 if (meta != NULL) {
1233 QLIST_REMOVE(meta, next_in_flight);
1234 }
1235
1236 /* TODO Preallocate data if requested */
1237
1238 nb_sectors -= num;
1239 offset += num << 9;
1240 }
1241
1242 /*
1243 * It is expected that the image file is large enough to actually contain
1244 * all of the allocated clusters (otherwise we get failing reads after
1245 * EOF). Extend the image to the last allocated sector.
1246 */
1247 if (host_offset != 0) {
1248 uint8_t buf[512];
1249 memset(buf, 0, 512);
1250 ret = bdrv_write(bs->file, (host_offset >> 9) + num - 1, buf, 1);
1251 if (ret < 0) {
1252 return ret;
1253 }
1254 }
1255
1256 return 0;
1257 }
1258
1259 static int qcow2_create2(const char *filename, int64_t total_size,
1260 const char *backing_file, const char *backing_format,
1261 int flags, size_t cluster_size, int prealloc,
1262 QEMUOptionParameter *options, int version)
1263 {
1264 /* Calculate cluster_bits */
1265 int cluster_bits;
1266 cluster_bits = ffs(cluster_size) - 1;
1267 if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS ||
1268 (1 << cluster_bits) != cluster_size)
1269 {
1270 error_report(
1271 "Cluster size must be a power of two between %d and %dk",
1272 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10));
1273 return -EINVAL;
1274 }
1275
1276 /*
1277 * Open the image file and write a minimal qcow2 header.
1278 *
1279 * We keep things simple and start with a zero-sized image. We also
1280 * do without refcount blocks or a L1 table for now. We'll fix the
1281 * inconsistency later.
1282 *
1283 * We do need a refcount table because growing the refcount table means
1284 * allocating two new refcount blocks - the seconds of which would be at
1285 * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file
1286 * size for any qcow2 image.
1287 */
1288 BlockDriverState* bs;
1289 QCowHeader header;
1290 uint8_t* refcount_table;
1291 int ret;
1292
1293 ret = bdrv_create_file(filename, options);
1294 if (ret < 0) {
1295 return ret;
1296 }
1297
1298 ret = bdrv_file_open(&bs, filename, NULL, BDRV_O_RDWR);
1299 if (ret < 0) {
1300 return ret;
1301 }
1302
1303 /* Write the header */
1304 memset(&header, 0, sizeof(header));
1305 header.magic = cpu_to_be32(QCOW_MAGIC);
1306 header.version = cpu_to_be32(version);
1307 header.cluster_bits = cpu_to_be32(cluster_bits);
1308 header.size = cpu_to_be64(0);
1309 header.l1_table_offset = cpu_to_be64(0);
1310 header.l1_size = cpu_to_be32(0);
1311 header.refcount_table_offset = cpu_to_be64(cluster_size);
1312 header.refcount_table_clusters = cpu_to_be32(1);
1313 header.refcount_order = cpu_to_be32(3 + REFCOUNT_SHIFT);
1314 header.header_length = cpu_to_be32(sizeof(header));
1315
1316 if (flags & BLOCK_FLAG_ENCRYPT) {
1317 header.crypt_method = cpu_to_be32(QCOW_CRYPT_AES);
1318 } else {
1319 header.crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
1320 }
1321
1322 if (flags & BLOCK_FLAG_LAZY_REFCOUNTS) {
1323 header.compatible_features |=
1324 cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS);
1325 }
1326
1327 ret = bdrv_pwrite(bs, 0, &header, sizeof(header));
1328 if (ret < 0) {
1329 goto out;
1330 }
1331
1332 /* Write an empty refcount table */
1333 refcount_table = g_malloc0(cluster_size);
1334 ret = bdrv_pwrite(bs, cluster_size, refcount_table, cluster_size);
1335 g_free(refcount_table);
1336
1337 if (ret < 0) {
1338 goto out;
1339 }
1340
1341 bdrv_close(bs);
1342
1343 /*
1344 * And now open the image and make it consistent first (i.e. increase the
1345 * refcount of the cluster that is occupied by the header and the refcount
1346 * table)
1347 */
1348 BlockDriver* drv = bdrv_find_format("qcow2");
1349 assert(drv != NULL);
1350 ret = bdrv_open(bs, filename, NULL,
1351 BDRV_O_RDWR | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH, drv);
1352 if (ret < 0) {
1353 goto out;
1354 }
1355
1356 ret = qcow2_alloc_clusters(bs, 2 * cluster_size);
1357 if (ret < 0) {
1358 goto out;
1359
1360 } else if (ret != 0) {
1361 error_report("Huh, first cluster in empty image is already in use?");
1362 abort();
1363 }
1364
1365 /* Okay, now that we have a valid image, let's give it the right size */
1366 ret = bdrv_truncate(bs, total_size * BDRV_SECTOR_SIZE);
1367 if (ret < 0) {
1368 goto out;
1369 }
1370
1371 /* Want a backing file? There you go.*/
1372 if (backing_file) {
1373 ret = bdrv_change_backing_file(bs, backing_file, backing_format);
1374 if (ret < 0) {
1375 goto out;
1376 }
1377 }
1378
1379 /* And if we're supposed to preallocate metadata, do that now */
1380 if (prealloc) {
1381 BDRVQcowState *s = bs->opaque;
1382 qemu_co_mutex_lock(&s->lock);
1383 ret = preallocate(bs);
1384 qemu_co_mutex_unlock(&s->lock);
1385 if (ret < 0) {
1386 goto out;
1387 }
1388 }
1389
1390 ret = 0;
1391 out:
1392 bdrv_delete(bs);
1393 return ret;
1394 }
1395
1396 static int qcow2_create(const char *filename, QEMUOptionParameter *options)
1397 {
1398 const char *backing_file = NULL;
1399 const char *backing_fmt = NULL;
1400 uint64_t sectors = 0;
1401 int flags = 0;
1402 size_t cluster_size = DEFAULT_CLUSTER_SIZE;
1403 int prealloc = 0;
1404 int version = 2;
1405
1406 /* Read out options */
1407 while (options && options->name) {
1408 if (!strcmp(options->name, BLOCK_OPT_SIZE)) {
1409 sectors = options->value.n / 512;
1410 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FILE)) {
1411 backing_file = options->value.s;
1412 } else if (!strcmp(options->name, BLOCK_OPT_BACKING_FMT)) {
1413 backing_fmt = options->value.s;
1414 } else if (!strcmp(options->name, BLOCK_OPT_ENCRYPT)) {
1415 flags |= options->value.n ? BLOCK_FLAG_ENCRYPT : 0;
1416 } else if (!strcmp(options->name, BLOCK_OPT_CLUSTER_SIZE)) {
1417 if (options->value.n) {
1418 cluster_size = options->value.n;
1419 }
1420 } else if (!strcmp(options->name, BLOCK_OPT_PREALLOC)) {
1421 if (!options->value.s || !strcmp(options->value.s, "off")) {
1422 prealloc = 0;
1423 } else if (!strcmp(options->value.s, "metadata")) {
1424 prealloc = 1;
1425 } else {
1426 fprintf(stderr, "Invalid preallocation mode: '%s'\n",
1427 options->value.s);
1428 return -EINVAL;
1429 }
1430 } else if (!strcmp(options->name, BLOCK_OPT_COMPAT_LEVEL)) {
1431 if (!options->value.s || !strcmp(options->value.s, "0.10")) {
1432 version = 2;
1433 } else if (!strcmp(options->value.s, "1.1")) {
1434 version = 3;
1435 } else {
1436 fprintf(stderr, "Invalid compatibility level: '%s'\n",
1437 options->value.s);
1438 return -EINVAL;
1439 }
1440 } else if (!strcmp(options->name, BLOCK_OPT_LAZY_REFCOUNTS)) {
1441 flags |= options->value.n ? BLOCK_FLAG_LAZY_REFCOUNTS : 0;
1442 }
1443 options++;
1444 }
1445
1446 if (backing_file && prealloc) {
1447 fprintf(stderr, "Backing file and preallocation cannot be used at "
1448 "the same time\n");
1449 return -EINVAL;
1450 }
1451
1452 if (version < 3 && (flags & BLOCK_FLAG_LAZY_REFCOUNTS)) {
1453 fprintf(stderr, "Lazy refcounts only supported with compatibility "
1454 "level 1.1 and above (use compat=1.1 or greater)\n");
1455 return -EINVAL;
1456 }
1457
1458 return qcow2_create2(filename, sectors, backing_file, backing_fmt, flags,
1459 cluster_size, prealloc, options, version);
1460 }
1461
1462 static int qcow2_make_empty(BlockDriverState *bs)
1463 {
1464 #if 0
1465 /* XXX: not correct */
1466 BDRVQcowState *s = bs->opaque;
1467 uint32_t l1_length = s->l1_size * sizeof(uint64_t);
1468 int ret;
1469
1470 memset(s->l1_table, 0, l1_length);
1471 if (bdrv_pwrite(bs->file, s->l1_table_offset, s->l1_table, l1_length) < 0)
1472 return -1;
1473 ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length);
1474 if (ret < 0)
1475 return ret;
1476
1477 l2_cache_reset(bs);
1478 #endif
1479 return 0;
1480 }
1481
1482 static coroutine_fn int qcow2_co_write_zeroes(BlockDriverState *bs,
1483 int64_t sector_num, int nb_sectors)
1484 {
1485 int ret;
1486 BDRVQcowState *s = bs->opaque;
1487
1488 /* Emulate misaligned zero writes */
1489 if (sector_num % s->cluster_sectors || nb_sectors % s->cluster_sectors) {
1490 return -ENOTSUP;
1491 }
1492
1493 /* Whatever is left can use real zero clusters */
1494 qemu_co_mutex_lock(&s->lock);
1495 ret = qcow2_zero_clusters(bs, sector_num << BDRV_SECTOR_BITS,
1496 nb_sectors);
1497 qemu_co_mutex_unlock(&s->lock);
1498
1499 return ret;
1500 }
1501
1502 static coroutine_fn int qcow2_co_discard(BlockDriverState *bs,
1503 int64_t sector_num, int nb_sectors)
1504 {
1505 int ret;
1506 BDRVQcowState *s = bs->opaque;
1507
1508 qemu_co_mutex_lock(&s->lock);
1509 ret = qcow2_discard_clusters(bs, sector_num << BDRV_SECTOR_BITS,
1510 nb_sectors);
1511 qemu_co_mutex_unlock(&s->lock);
1512 return ret;
1513 }
1514
1515 static int qcow2_truncate(BlockDriverState *bs, int64_t offset)
1516 {
1517 BDRVQcowState *s = bs->opaque;
1518 int64_t new_l1_size;
1519 int ret;
1520
1521 if (offset & 511) {
1522 error_report("The new size must be a multiple of 512");
1523 return -EINVAL;
1524 }
1525
1526 /* cannot proceed if image has snapshots */
1527 if (s->nb_snapshots) {
1528 error_report("Can't resize an image which has snapshots");
1529 return -ENOTSUP;
1530 }
1531
1532 /* shrinking is currently not supported */
1533 if (offset < bs->total_sectors * 512) {
1534 error_report("qcow2 doesn't support shrinking images yet");
1535 return -ENOTSUP;
1536 }
1537
1538 new_l1_size = size_to_l1(s, offset);
1539 ret = qcow2_grow_l1_table(bs, new_l1_size, true);
1540 if (ret < 0) {
1541 return ret;
1542 }
1543
1544 /* write updated header.size */
1545 offset = cpu_to_be64(offset);
1546 ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),
1547 &offset, sizeof(uint64_t));
1548 if (ret < 0) {
1549 return ret;
1550 }
1551
1552 s->l1_vm_state_index = new_l1_size;
1553 return 0;
1554 }
1555
1556 /* XXX: put compressed sectors first, then all the cluster aligned
1557 tables to avoid losing bytes in alignment */
1558 static int qcow2_write_compressed(BlockDriverState *bs, int64_t sector_num,
1559 const uint8_t *buf, int nb_sectors)
1560 {
1561 BDRVQcowState *s = bs->opaque;
1562 z_stream strm;
1563 int ret, out_len;
1564 uint8_t *out_buf;
1565 uint64_t cluster_offset;
1566
1567 if (nb_sectors == 0) {
1568 /* align end of file to a sector boundary to ease reading with
1569 sector based I/Os */
1570 cluster_offset = bdrv_getlength(bs->file);
1571 cluster_offset = (cluster_offset + 511) & ~511;
1572 bdrv_truncate(bs->file, cluster_offset);
1573 return 0;
1574 }
1575
1576 if (nb_sectors != s->cluster_sectors) {
1577 ret = -EINVAL;
1578
1579 /* Zero-pad last write if image size is not cluster aligned */
1580 if (sector_num + nb_sectors == bs->total_sectors &&
1581 nb_sectors < s->cluster_sectors) {
1582 uint8_t *pad_buf = qemu_blockalign(bs, s->cluster_size);
1583 memset(pad_buf, 0, s->cluster_size);
1584 memcpy(pad_buf, buf, nb_sectors * BDRV_SECTOR_SIZE);
1585 ret = qcow2_write_compressed(bs, sector_num,
1586 pad_buf, s->cluster_sectors);
1587 qemu_vfree(pad_buf);
1588 }
1589 return ret;
1590 }
1591
1592 out_buf = g_malloc(s->cluster_size + (s->cluster_size / 1000) + 128);
1593
1594 /* best compression, small window, no zlib header */
1595 memset(&strm, 0, sizeof(strm));
1596 ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
1597 Z_DEFLATED, -12,
1598 9, Z_DEFAULT_STRATEGY);
1599 if (ret != 0) {
1600 ret = -EINVAL;
1601 goto fail;
1602 }
1603
1604 strm.avail_in = s->cluster_size;
1605 strm.next_in = (uint8_t *)buf;
1606 strm.avail_out = s->cluster_size;
1607 strm.next_out = out_buf;
1608
1609 ret = deflate(&strm, Z_FINISH);
1610 if (ret != Z_STREAM_END && ret != Z_OK) {
1611 deflateEnd(&strm);
1612 ret = -EINVAL;
1613 goto fail;
1614 }
1615 out_len = strm.next_out - out_buf;
1616
1617 deflateEnd(&strm);
1618
1619 if (ret != Z_STREAM_END || out_len >= s->cluster_size) {
1620 /* could not compress: write normal cluster */
1621 ret = bdrv_write(bs, sector_num, buf, s->cluster_sectors);
1622 if (ret < 0) {
1623 goto fail;
1624 }
1625 } else {
1626 cluster_offset = qcow2_alloc_compressed_cluster_offset(bs,
1627 sector_num << 9, out_len);
1628 if (!cluster_offset) {
1629 ret = -EIO;
1630 goto fail;
1631 }
1632 cluster_offset &= s->cluster_offset_mask;
1633 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_COMPRESSED);
1634 ret = bdrv_pwrite(bs->file, cluster_offset, out_buf, out_len);
1635 if (ret < 0) {
1636 goto fail;
1637 }
1638 }
1639
1640 ret = 0;
1641 fail:
1642 g_free(out_buf);
1643 return ret;
1644 }
1645
1646 static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs)
1647 {
1648 BDRVQcowState *s = bs->opaque;
1649 int ret;
1650
1651 qemu_co_mutex_lock(&s->lock);
1652 ret = qcow2_cache_flush(bs, s->l2_table_cache);
1653 if (ret < 0) {
1654 qemu_co_mutex_unlock(&s->lock);
1655 return ret;
1656 }
1657
1658 if (qcow2_need_accurate_refcounts(s)) {
1659 ret = qcow2_cache_flush(bs, s->refcount_block_cache);
1660 if (ret < 0) {
1661 qemu_co_mutex_unlock(&s->lock);
1662 return ret;
1663 }
1664 }
1665 qemu_co_mutex_unlock(&s->lock);
1666
1667 return 0;
1668 }
1669
1670 static int64_t qcow2_vm_state_offset(BDRVQcowState *s)
1671 {
1672 return (int64_t)s->l1_vm_state_index << (s->cluster_bits + s->l2_bits);
1673 }
1674
1675 static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1676 {
1677 BDRVQcowState *s = bs->opaque;
1678 bdi->cluster_size = s->cluster_size;
1679 bdi->vm_state_offset = qcow2_vm_state_offset(s);
1680 return 0;
1681 }
1682
1683 #if 0
1684 static void dump_refcounts(BlockDriverState *bs)
1685 {
1686 BDRVQcowState *s = bs->opaque;
1687 int64_t nb_clusters, k, k1, size;
1688 int refcount;
1689
1690 size = bdrv_getlength(bs->file);
1691 nb_clusters = size_to_clusters(s, size);
1692 for(k = 0; k < nb_clusters;) {
1693 k1 = k;
1694 refcount = get_refcount(bs, k);
1695 k++;
1696 while (k < nb_clusters && get_refcount(bs, k) == refcount)
1697 k++;
1698 printf("%" PRId64 ": refcount=%d nb=%" PRId64 "\n", k, refcount,
1699 k - k1);
1700 }
1701 }
1702 #endif
1703
1704 static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov,
1705 int64_t pos)
1706 {
1707 BDRVQcowState *s = bs->opaque;
1708 int growable = bs->growable;
1709 int ret;
1710
1711 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE);
1712 bs->growable = 1;
1713 ret = bdrv_pwritev(bs, qcow2_vm_state_offset(s) + pos, qiov);
1714 bs->growable = growable;
1715
1716 return ret;
1717 }
1718
1719 static int qcow2_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1720 int64_t pos, int size)
1721 {
1722 BDRVQcowState *s = bs->opaque;
1723 int growable = bs->growable;
1724 int ret;
1725
1726 BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD);
1727 bs->growable = 1;
1728 ret = bdrv_pread(bs, qcow2_vm_state_offset(s) + pos, buf, size);
1729 bs->growable = growable;
1730
1731 return ret;
1732 }
1733
1734 static QEMUOptionParameter qcow2_create_options[] = {
1735 {
1736 .name = BLOCK_OPT_SIZE,
1737 .type = OPT_SIZE,
1738 .help = "Virtual disk size"
1739 },
1740 {
1741 .name = BLOCK_OPT_COMPAT_LEVEL,
1742 .type = OPT_STRING,
1743 .help = "Compatibility level (0.10 or 1.1)"
1744 },
1745 {
1746 .name = BLOCK_OPT_BACKING_FILE,
1747 .type = OPT_STRING,
1748 .help = "File name of a base image"
1749 },
1750 {
1751 .name = BLOCK_OPT_BACKING_FMT,
1752 .type = OPT_STRING,
1753 .help = "Image format of the base image"
1754 },
1755 {
1756 .name = BLOCK_OPT_ENCRYPT,
1757 .type = OPT_FLAG,
1758 .help = "Encrypt the image"
1759 },
1760 {
1761 .name = BLOCK_OPT_CLUSTER_SIZE,
1762 .type = OPT_SIZE,
1763 .help = "qcow2 cluster size",
1764 .value = { .n = DEFAULT_CLUSTER_SIZE },
1765 },
1766 {
1767 .name = BLOCK_OPT_PREALLOC,
1768 .type = OPT_STRING,
1769 .help = "Preallocation mode (allowed values: off, metadata)"
1770 },
1771 {
1772 .name = BLOCK_OPT_LAZY_REFCOUNTS,
1773 .type = OPT_FLAG,
1774 .help = "Postpone refcount updates",
1775 },
1776 { NULL }
1777 };
1778
1779 static BlockDriver bdrv_qcow2 = {
1780 .format_name = "qcow2",
1781 .instance_size = sizeof(BDRVQcowState),
1782 .bdrv_probe = qcow2_probe,
1783 .bdrv_open = qcow2_open,
1784 .bdrv_close = qcow2_close,
1785 .bdrv_reopen_prepare = qcow2_reopen_prepare,
1786 .bdrv_create = qcow2_create,
1787 .bdrv_co_is_allocated = qcow2_co_is_allocated,
1788 .bdrv_set_key = qcow2_set_key,
1789 .bdrv_make_empty = qcow2_make_empty,
1790
1791 .bdrv_co_readv = qcow2_co_readv,
1792 .bdrv_co_writev = qcow2_co_writev,
1793 .bdrv_co_flush_to_os = qcow2_co_flush_to_os,
1794
1795 .bdrv_co_write_zeroes = qcow2_co_write_zeroes,
1796 .bdrv_co_discard = qcow2_co_discard,
1797 .bdrv_truncate = qcow2_truncate,
1798 .bdrv_write_compressed = qcow2_write_compressed,
1799
1800 .bdrv_snapshot_create = qcow2_snapshot_create,
1801 .bdrv_snapshot_goto = qcow2_snapshot_goto,
1802 .bdrv_snapshot_delete = qcow2_snapshot_delete,
1803 .bdrv_snapshot_list = qcow2_snapshot_list,
1804 .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp,
1805 .bdrv_get_info = qcow2_get_info,
1806
1807 .bdrv_save_vmstate = qcow2_save_vmstate,
1808 .bdrv_load_vmstate = qcow2_load_vmstate,
1809
1810 .bdrv_change_backing_file = qcow2_change_backing_file,
1811
1812 .bdrv_invalidate_cache = qcow2_invalidate_cache,
1813
1814 .create_options = qcow2_create_options,
1815 .bdrv_check = qcow2_check,
1816 };
1817
1818 static void bdrv_qcow2_init(void)
1819 {
1820 bdrv_register(&bdrv_qcow2);
1821 }
1822
1823 block_init(bdrv_qcow2_init);