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