xref: /openbmc/qemu/block/qcow.c (revision 04e3aabd)
1 /*
2  * Block driver for the QCOW 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/osdep.h"
25 #include "qapi/error.h"
26 #include "qemu-common.h"
27 #include "qemu/error-report.h"
28 #include "block/block_int.h"
29 #include "sysemu/block-backend.h"
30 #include "qemu/module.h"
31 #include "qemu/bswap.h"
32 #include <zlib.h>
33 #include "qapi/qmp/qerror.h"
34 #include "qapi/qmp/qstring.h"
35 #include "crypto/block.h"
36 #include "migration/blocker.h"
37 #include "block/crypto.h"
38 
39 /**************************************************************/
40 /* QEMU COW block driver with compression and encryption support */
41 
42 #define QCOW_MAGIC (('Q' << 24) | ('F' << 16) | ('I' << 8) | 0xfb)
43 #define QCOW_VERSION 1
44 
45 #define QCOW_CRYPT_NONE 0
46 #define QCOW_CRYPT_AES  1
47 
48 #define QCOW_OFLAG_COMPRESSED (1LL << 63)
49 
50 typedef struct QCowHeader {
51     uint32_t magic;
52     uint32_t version;
53     uint64_t backing_file_offset;
54     uint32_t backing_file_size;
55     uint32_t mtime;
56     uint64_t size; /* in bytes */
57     uint8_t cluster_bits;
58     uint8_t l2_bits;
59     uint16_t padding;
60     uint32_t crypt_method;
61     uint64_t l1_table_offset;
62 } QEMU_PACKED QCowHeader;
63 
64 #define L2_CACHE_SIZE 16
65 
66 typedef struct BDRVQcowState {
67     int cluster_bits;
68     int cluster_size;
69     int cluster_sectors;
70     int l2_bits;
71     int l2_size;
72     unsigned int l1_size;
73     uint64_t cluster_offset_mask;
74     uint64_t l1_table_offset;
75     uint64_t *l1_table;
76     uint64_t *l2_cache;
77     uint64_t l2_cache_offsets[L2_CACHE_SIZE];
78     uint32_t l2_cache_counts[L2_CACHE_SIZE];
79     uint8_t *cluster_cache;
80     uint8_t *cluster_data;
81     uint64_t cluster_cache_offset;
82     QCryptoBlock *crypto; /* Disk encryption format driver */
83     uint32_t crypt_method_header;
84     CoMutex lock;
85     Error *migration_blocker;
86 } BDRVQcowState;
87 
88 static int decompress_cluster(BlockDriverState *bs, uint64_t cluster_offset);
89 
90 static int qcow_probe(const uint8_t *buf, int buf_size, const char *filename)
91 {
92     const QCowHeader *cow_header = (const void *)buf;
93 
94     if (buf_size >= sizeof(QCowHeader) &&
95         be32_to_cpu(cow_header->magic) == QCOW_MAGIC &&
96         be32_to_cpu(cow_header->version) == QCOW_VERSION)
97         return 100;
98     else
99         return 0;
100 }
101 
102 static QemuOptsList qcow_runtime_opts = {
103     .name = "qcow",
104     .head = QTAILQ_HEAD_INITIALIZER(qcow_runtime_opts.head),
105     .desc = {
106         BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET("encrypt."),
107         { /* end of list */ }
108     },
109 };
110 
111 static int qcow_open(BlockDriverState *bs, QDict *options, int flags,
112                      Error **errp)
113 {
114     BDRVQcowState *s = bs->opaque;
115     unsigned int len, i, shift;
116     int ret;
117     QCowHeader header;
118     Error *local_err = NULL;
119     QCryptoBlockOpenOptions *crypto_opts = NULL;
120     unsigned int cflags = 0;
121     QDict *encryptopts = NULL;
122     const char *encryptfmt;
123 
124     qdict_extract_subqdict(options, &encryptopts, "encrypt.");
125     encryptfmt = qdict_get_try_str(encryptopts, "format");
126 
127     bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file,
128                                false, errp);
129     if (!bs->file) {
130         ret = -EINVAL;
131         goto fail;
132     }
133 
134     ret = bdrv_pread(bs->file, 0, &header, sizeof(header));
135     if (ret < 0) {
136         goto fail;
137     }
138     be32_to_cpus(&header.magic);
139     be32_to_cpus(&header.version);
140     be64_to_cpus(&header.backing_file_offset);
141     be32_to_cpus(&header.backing_file_size);
142     be32_to_cpus(&header.mtime);
143     be64_to_cpus(&header.size);
144     be32_to_cpus(&header.crypt_method);
145     be64_to_cpus(&header.l1_table_offset);
146 
147     if (header.magic != QCOW_MAGIC) {
148         error_setg(errp, "Image not in qcow format");
149         ret = -EINVAL;
150         goto fail;
151     }
152     if (header.version != QCOW_VERSION) {
153         error_setg(errp, "Unsupported qcow version %" PRIu32, header.version);
154         ret = -ENOTSUP;
155         goto fail;
156     }
157 
158     if (header.size <= 1) {
159         error_setg(errp, "Image size is too small (must be at least 2 bytes)");
160         ret = -EINVAL;
161         goto fail;
162     }
163     if (header.cluster_bits < 9 || header.cluster_bits > 16) {
164         error_setg(errp, "Cluster size must be between 512 and 64k");
165         ret = -EINVAL;
166         goto fail;
167     }
168 
169     /* l2_bits specifies number of entries; storing a uint64_t in each entry,
170      * so bytes = num_entries << 3. */
171     if (header.l2_bits < 9 - 3 || header.l2_bits > 16 - 3) {
172         error_setg(errp, "L2 table size must be between 512 and 64k");
173         ret = -EINVAL;
174         goto fail;
175     }
176 
177     s->crypt_method_header = header.crypt_method;
178     if (s->crypt_method_header) {
179         if (bdrv_uses_whitelist() &&
180             s->crypt_method_header == QCOW_CRYPT_AES) {
181             error_setg(errp,
182                        "Use of AES-CBC encrypted qcow images is no longer "
183                        "supported in system emulators");
184             error_append_hint(errp,
185                               "You can use 'qemu-img convert' to convert your "
186                               "image to an alternative supported format, such "
187                               "as unencrypted qcow, or raw with the LUKS "
188                               "format instead.\n");
189             ret = -ENOSYS;
190             goto fail;
191         }
192         if (s->crypt_method_header == QCOW_CRYPT_AES) {
193             if (encryptfmt && !g_str_equal(encryptfmt, "aes")) {
194                 error_setg(errp,
195                            "Header reported 'aes' encryption format but "
196                            "options specify '%s'", encryptfmt);
197                 ret = -EINVAL;
198                 goto fail;
199             }
200             qdict_del(encryptopts, "format");
201             crypto_opts = block_crypto_open_opts_init(
202                 Q_CRYPTO_BLOCK_FORMAT_QCOW, encryptopts, errp);
203             if (!crypto_opts) {
204                 ret = -EINVAL;
205                 goto fail;
206             }
207 
208             if (flags & BDRV_O_NO_IO) {
209                 cflags |= QCRYPTO_BLOCK_OPEN_NO_IO;
210             }
211             s->crypto = qcrypto_block_open(crypto_opts, "encrypt.",
212                                            NULL, NULL, cflags, errp);
213             if (!s->crypto) {
214                 ret = -EINVAL;
215                 goto fail;
216             }
217         } else {
218             error_setg(errp, "invalid encryption method in qcow header");
219             ret = -EINVAL;
220             goto fail;
221         }
222         bs->encrypted = true;
223     } else {
224         if (encryptfmt) {
225             error_setg(errp, "No encryption in image header, but options "
226                        "specified format '%s'", encryptfmt);
227             ret = -EINVAL;
228             goto fail;
229         }
230     }
231     s->cluster_bits = header.cluster_bits;
232     s->cluster_size = 1 << s->cluster_bits;
233     s->cluster_sectors = 1 << (s->cluster_bits - 9);
234     s->l2_bits = header.l2_bits;
235     s->l2_size = 1 << s->l2_bits;
236     bs->total_sectors = header.size / 512;
237     s->cluster_offset_mask = (1LL << (63 - s->cluster_bits)) - 1;
238 
239     /* read the level 1 table */
240     shift = s->cluster_bits + s->l2_bits;
241     if (header.size > UINT64_MAX - (1LL << shift)) {
242         error_setg(errp, "Image too large");
243         ret = -EINVAL;
244         goto fail;
245     } else {
246         uint64_t l1_size = (header.size + (1LL << shift) - 1) >> shift;
247         if (l1_size > INT_MAX / sizeof(uint64_t)) {
248             error_setg(errp, "Image too large");
249             ret = -EINVAL;
250             goto fail;
251         }
252         s->l1_size = l1_size;
253     }
254 
255     s->l1_table_offset = header.l1_table_offset;
256     s->l1_table = g_try_new(uint64_t, s->l1_size);
257     if (s->l1_table == NULL) {
258         error_setg(errp, "Could not allocate memory for L1 table");
259         ret = -ENOMEM;
260         goto fail;
261     }
262 
263     ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table,
264                s->l1_size * sizeof(uint64_t));
265     if (ret < 0) {
266         goto fail;
267     }
268 
269     for(i = 0;i < s->l1_size; i++) {
270         be64_to_cpus(&s->l1_table[i]);
271     }
272 
273     /* alloc L2 cache (max. 64k * 16 * 8 = 8 MB) */
274     s->l2_cache =
275         qemu_try_blockalign(bs->file->bs,
276                             s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
277     if (s->l2_cache == NULL) {
278         error_setg(errp, "Could not allocate L2 table cache");
279         ret = -ENOMEM;
280         goto fail;
281     }
282     s->cluster_cache = g_malloc(s->cluster_size);
283     s->cluster_data = g_malloc(s->cluster_size);
284     s->cluster_cache_offset = -1;
285 
286     /* read the backing file name */
287     if (header.backing_file_offset != 0) {
288         len = header.backing_file_size;
289         if (len > 1023 || len >= sizeof(bs->backing_file)) {
290             error_setg(errp, "Backing file name too long");
291             ret = -EINVAL;
292             goto fail;
293         }
294         ret = bdrv_pread(bs->file, header.backing_file_offset,
295                    bs->backing_file, len);
296         if (ret < 0) {
297             goto fail;
298         }
299         bs->backing_file[len] = '\0';
300     }
301 
302     /* Disable migration when qcow images are used */
303     error_setg(&s->migration_blocker, "The qcow format used by node '%s' "
304                "does not support live migration",
305                bdrv_get_device_or_node_name(bs));
306     ret = migrate_add_blocker(s->migration_blocker, &local_err);
307     if (local_err) {
308         error_propagate(errp, local_err);
309         error_free(s->migration_blocker);
310         goto fail;
311     }
312 
313     QDECREF(encryptopts);
314     qapi_free_QCryptoBlockOpenOptions(crypto_opts);
315     qemu_co_mutex_init(&s->lock);
316     return 0;
317 
318  fail:
319     g_free(s->l1_table);
320     qemu_vfree(s->l2_cache);
321     g_free(s->cluster_cache);
322     g_free(s->cluster_data);
323     qcrypto_block_free(s->crypto);
324     QDECREF(encryptopts);
325     qapi_free_QCryptoBlockOpenOptions(crypto_opts);
326     return ret;
327 }
328 
329 
330 /* We have nothing to do for QCOW reopen, stubs just return
331  * success */
332 static int qcow_reopen_prepare(BDRVReopenState *state,
333                                BlockReopenQueue *queue, Error **errp)
334 {
335     return 0;
336 }
337 
338 
339 /* 'allocate' is:
340  *
341  * 0 to not allocate.
342  *
343  * 1 to allocate a normal cluster (for sector indexes 'n_start' to
344  * 'n_end')
345  *
346  * 2 to allocate a compressed cluster of size
347  * 'compressed_size'. 'compressed_size' must be > 0 and <
348  * cluster_size
349  *
350  * return 0 if not allocated.
351  */
352 static uint64_t get_cluster_offset(BlockDriverState *bs,
353                                    uint64_t offset, int allocate,
354                                    int compressed_size,
355                                    int n_start, int n_end)
356 {
357     BDRVQcowState *s = bs->opaque;
358     int min_index, i, j, l1_index, l2_index;
359     uint64_t l2_offset, *l2_table, cluster_offset, tmp;
360     uint32_t min_count;
361     int new_l2_table;
362 
363     l1_index = offset >> (s->l2_bits + s->cluster_bits);
364     l2_offset = s->l1_table[l1_index];
365     new_l2_table = 0;
366     if (!l2_offset) {
367         if (!allocate)
368             return 0;
369         /* allocate a new l2 entry */
370         l2_offset = bdrv_getlength(bs->file->bs);
371         /* round to cluster size */
372         l2_offset = (l2_offset + s->cluster_size - 1) & ~(s->cluster_size - 1);
373         /* update the L1 entry */
374         s->l1_table[l1_index] = l2_offset;
375         tmp = cpu_to_be64(l2_offset);
376         if (bdrv_pwrite_sync(bs->file,
377                 s->l1_table_offset + l1_index * sizeof(tmp),
378                 &tmp, sizeof(tmp)) < 0)
379             return 0;
380         new_l2_table = 1;
381     }
382     for(i = 0; i < L2_CACHE_SIZE; i++) {
383         if (l2_offset == s->l2_cache_offsets[i]) {
384             /* increment the hit count */
385             if (++s->l2_cache_counts[i] == 0xffffffff) {
386                 for(j = 0; j < L2_CACHE_SIZE; j++) {
387                     s->l2_cache_counts[j] >>= 1;
388                 }
389             }
390             l2_table = s->l2_cache + (i << s->l2_bits);
391             goto found;
392         }
393     }
394     /* not found: load a new entry in the least used one */
395     min_index = 0;
396     min_count = 0xffffffff;
397     for(i = 0; i < L2_CACHE_SIZE; i++) {
398         if (s->l2_cache_counts[i] < min_count) {
399             min_count = s->l2_cache_counts[i];
400             min_index = i;
401         }
402     }
403     l2_table = s->l2_cache + (min_index << s->l2_bits);
404     if (new_l2_table) {
405         memset(l2_table, 0, s->l2_size * sizeof(uint64_t));
406         if (bdrv_pwrite_sync(bs->file, l2_offset, l2_table,
407                 s->l2_size * sizeof(uint64_t)) < 0)
408             return 0;
409     } else {
410         if (bdrv_pread(bs->file, l2_offset, l2_table,
411                        s->l2_size * sizeof(uint64_t)) !=
412             s->l2_size * sizeof(uint64_t))
413             return 0;
414     }
415     s->l2_cache_offsets[min_index] = l2_offset;
416     s->l2_cache_counts[min_index] = 1;
417  found:
418     l2_index = (offset >> s->cluster_bits) & (s->l2_size - 1);
419     cluster_offset = be64_to_cpu(l2_table[l2_index]);
420     if (!cluster_offset ||
421         ((cluster_offset & QCOW_OFLAG_COMPRESSED) && allocate == 1)) {
422         if (!allocate)
423             return 0;
424         /* allocate a new cluster */
425         if ((cluster_offset & QCOW_OFLAG_COMPRESSED) &&
426             (n_end - n_start) < s->cluster_sectors) {
427             /* if the cluster is already compressed, we must
428                decompress it in the case it is not completely
429                overwritten */
430             if (decompress_cluster(bs, cluster_offset) < 0)
431                 return 0;
432             cluster_offset = bdrv_getlength(bs->file->bs);
433             cluster_offset = (cluster_offset + s->cluster_size - 1) &
434                 ~(s->cluster_size - 1);
435             /* write the cluster content */
436             if (bdrv_pwrite(bs->file, cluster_offset, s->cluster_cache,
437                             s->cluster_size) !=
438                 s->cluster_size)
439                 return -1;
440         } else {
441             cluster_offset = bdrv_getlength(bs->file->bs);
442             if (allocate == 1) {
443                 /* round to cluster size */
444                 cluster_offset = (cluster_offset + s->cluster_size - 1) &
445                     ~(s->cluster_size - 1);
446                 bdrv_truncate(bs->file, cluster_offset + s->cluster_size,
447                               PREALLOC_MODE_OFF, NULL);
448                 /* if encrypted, we must initialize the cluster
449                    content which won't be written */
450                 if (bs->encrypted &&
451                     (n_end - n_start) < s->cluster_sectors) {
452                     uint64_t start_sect;
453                     assert(s->crypto);
454                     start_sect = (offset & ~(s->cluster_size - 1)) >> 9;
455                     for(i = 0; i < s->cluster_sectors; i++) {
456                         if (i < n_start || i >= n_end) {
457                             memset(s->cluster_data, 0x00, 512);
458                             if (qcrypto_block_encrypt(s->crypto, start_sect + i,
459                                                       s->cluster_data,
460                                                       BDRV_SECTOR_SIZE,
461                                                       NULL) < 0) {
462                                 errno = EIO;
463                                 return -1;
464                             }
465                             if (bdrv_pwrite(bs->file,
466                                             cluster_offset + i * 512,
467                                             s->cluster_data, 512) != 512)
468                                 return -1;
469                         }
470                     }
471                 }
472             } else if (allocate == 2) {
473                 cluster_offset |= QCOW_OFLAG_COMPRESSED |
474                     (uint64_t)compressed_size << (63 - s->cluster_bits);
475             }
476         }
477         /* update L2 table */
478         tmp = cpu_to_be64(cluster_offset);
479         l2_table[l2_index] = tmp;
480         if (bdrv_pwrite_sync(bs->file, l2_offset + l2_index * sizeof(tmp),
481                 &tmp, sizeof(tmp)) < 0)
482             return 0;
483     }
484     return cluster_offset;
485 }
486 
487 static int64_t coroutine_fn qcow_co_get_block_status(BlockDriverState *bs,
488         int64_t sector_num, int nb_sectors, int *pnum, BlockDriverState **file)
489 {
490     BDRVQcowState *s = bs->opaque;
491     int index_in_cluster, n;
492     uint64_t cluster_offset;
493 
494     qemu_co_mutex_lock(&s->lock);
495     cluster_offset = get_cluster_offset(bs, sector_num << 9, 0, 0, 0, 0);
496     qemu_co_mutex_unlock(&s->lock);
497     index_in_cluster = sector_num & (s->cluster_sectors - 1);
498     n = s->cluster_sectors - index_in_cluster;
499     if (n > nb_sectors)
500         n = nb_sectors;
501     *pnum = n;
502     if (!cluster_offset) {
503         return 0;
504     }
505     if ((cluster_offset & QCOW_OFLAG_COMPRESSED) || s->crypto) {
506         return BDRV_BLOCK_DATA;
507     }
508     cluster_offset |= (index_in_cluster << BDRV_SECTOR_BITS);
509     *file = bs->file->bs;
510     return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID | cluster_offset;
511 }
512 
513 static int decompress_buffer(uint8_t *out_buf, int out_buf_size,
514                              const uint8_t *buf, int buf_size)
515 {
516     z_stream strm1, *strm = &strm1;
517     int ret, out_len;
518 
519     memset(strm, 0, sizeof(*strm));
520 
521     strm->next_in = (uint8_t *)buf;
522     strm->avail_in = buf_size;
523     strm->next_out = out_buf;
524     strm->avail_out = out_buf_size;
525 
526     ret = inflateInit2(strm, -12);
527     if (ret != Z_OK)
528         return -1;
529     ret = inflate(strm, Z_FINISH);
530     out_len = strm->next_out - out_buf;
531     if ((ret != Z_STREAM_END && ret != Z_BUF_ERROR) ||
532         out_len != out_buf_size) {
533         inflateEnd(strm);
534         return -1;
535     }
536     inflateEnd(strm);
537     return 0;
538 }
539 
540 static int decompress_cluster(BlockDriverState *bs, uint64_t cluster_offset)
541 {
542     BDRVQcowState *s = bs->opaque;
543     int ret, csize;
544     uint64_t coffset;
545 
546     coffset = cluster_offset & s->cluster_offset_mask;
547     if (s->cluster_cache_offset != coffset) {
548         csize = cluster_offset >> (63 - s->cluster_bits);
549         csize &= (s->cluster_size - 1);
550         ret = bdrv_pread(bs->file, coffset, s->cluster_data, csize);
551         if (ret != csize)
552             return -1;
553         if (decompress_buffer(s->cluster_cache, s->cluster_size,
554                               s->cluster_data, csize) < 0) {
555             return -1;
556         }
557         s->cluster_cache_offset = coffset;
558     }
559     return 0;
560 }
561 
562 static coroutine_fn int qcow_co_readv(BlockDriverState *bs, int64_t sector_num,
563                          int nb_sectors, QEMUIOVector *qiov)
564 {
565     BDRVQcowState *s = bs->opaque;
566     int index_in_cluster;
567     int ret = 0, n;
568     uint64_t cluster_offset;
569     struct iovec hd_iov;
570     QEMUIOVector hd_qiov;
571     uint8_t *buf;
572     void *orig_buf;
573 
574     if (qiov->niov > 1) {
575         buf = orig_buf = qemu_try_blockalign(bs, qiov->size);
576         if (buf == NULL) {
577             return -ENOMEM;
578         }
579     } else {
580         orig_buf = NULL;
581         buf = (uint8_t *)qiov->iov->iov_base;
582     }
583 
584     qemu_co_mutex_lock(&s->lock);
585 
586     while (nb_sectors != 0) {
587         /* prepare next request */
588         cluster_offset = get_cluster_offset(bs, sector_num << 9,
589                                                  0, 0, 0, 0);
590         index_in_cluster = sector_num & (s->cluster_sectors - 1);
591         n = s->cluster_sectors - index_in_cluster;
592         if (n > nb_sectors) {
593             n = nb_sectors;
594         }
595 
596         if (!cluster_offset) {
597             if (bs->backing) {
598                 /* read from the base image */
599                 hd_iov.iov_base = (void *)buf;
600                 hd_iov.iov_len = n * 512;
601                 qemu_iovec_init_external(&hd_qiov, &hd_iov, 1);
602                 qemu_co_mutex_unlock(&s->lock);
603                 ret = bdrv_co_readv(bs->backing, sector_num, n, &hd_qiov);
604                 qemu_co_mutex_lock(&s->lock);
605                 if (ret < 0) {
606                     goto fail;
607                 }
608             } else {
609                 /* Note: in this case, no need to wait */
610                 memset(buf, 0, 512 * n);
611             }
612         } else if (cluster_offset & QCOW_OFLAG_COMPRESSED) {
613             /* add AIO support for compressed blocks ? */
614             if (decompress_cluster(bs, cluster_offset) < 0) {
615                 goto fail;
616             }
617             memcpy(buf,
618                    s->cluster_cache + index_in_cluster * 512, 512 * n);
619         } else {
620             if ((cluster_offset & 511) != 0) {
621                 goto fail;
622             }
623             hd_iov.iov_base = (void *)buf;
624             hd_iov.iov_len = n * 512;
625             qemu_iovec_init_external(&hd_qiov, &hd_iov, 1);
626             qemu_co_mutex_unlock(&s->lock);
627             ret = bdrv_co_readv(bs->file,
628                                 (cluster_offset >> 9) + index_in_cluster,
629                                 n, &hd_qiov);
630             qemu_co_mutex_lock(&s->lock);
631             if (ret < 0) {
632                 break;
633             }
634             if (bs->encrypted) {
635                 assert(s->crypto);
636                 if (qcrypto_block_decrypt(s->crypto, sector_num, buf,
637                                           n * BDRV_SECTOR_SIZE, NULL) < 0) {
638                     goto fail;
639                 }
640             }
641         }
642         ret = 0;
643 
644         nb_sectors -= n;
645         sector_num += n;
646         buf += n * 512;
647     }
648 
649 done:
650     qemu_co_mutex_unlock(&s->lock);
651 
652     if (qiov->niov > 1) {
653         qemu_iovec_from_buf(qiov, 0, orig_buf, qiov->size);
654         qemu_vfree(orig_buf);
655     }
656 
657     return ret;
658 
659 fail:
660     ret = -EIO;
661     goto done;
662 }
663 
664 static coroutine_fn int qcow_co_writev(BlockDriverState *bs, int64_t sector_num,
665                           int nb_sectors, QEMUIOVector *qiov)
666 {
667     BDRVQcowState *s = bs->opaque;
668     int index_in_cluster;
669     uint64_t cluster_offset;
670     int ret = 0, n;
671     struct iovec hd_iov;
672     QEMUIOVector hd_qiov;
673     uint8_t *buf;
674     void *orig_buf;
675 
676     s->cluster_cache_offset = -1; /* disable compressed cache */
677 
678     /* We must always copy the iov when encrypting, so we
679      * don't modify the original data buffer during encryption */
680     if (bs->encrypted || qiov->niov > 1) {
681         buf = orig_buf = qemu_try_blockalign(bs, qiov->size);
682         if (buf == NULL) {
683             return -ENOMEM;
684         }
685         qemu_iovec_to_buf(qiov, 0, buf, qiov->size);
686     } else {
687         orig_buf = NULL;
688         buf = (uint8_t *)qiov->iov->iov_base;
689     }
690 
691     qemu_co_mutex_lock(&s->lock);
692 
693     while (nb_sectors != 0) {
694 
695         index_in_cluster = sector_num & (s->cluster_sectors - 1);
696         n = s->cluster_sectors - index_in_cluster;
697         if (n > nb_sectors) {
698             n = nb_sectors;
699         }
700         cluster_offset = get_cluster_offset(bs, sector_num << 9, 1, 0,
701                                             index_in_cluster,
702                                             index_in_cluster + n);
703         if (!cluster_offset || (cluster_offset & 511) != 0) {
704             ret = -EIO;
705             break;
706         }
707         if (bs->encrypted) {
708             assert(s->crypto);
709             if (qcrypto_block_encrypt(s->crypto, sector_num, buf,
710                                       n * BDRV_SECTOR_SIZE, NULL) < 0) {
711                 ret = -EIO;
712                 break;
713             }
714         }
715 
716         hd_iov.iov_base = (void *)buf;
717         hd_iov.iov_len = n * 512;
718         qemu_iovec_init_external(&hd_qiov, &hd_iov, 1);
719         qemu_co_mutex_unlock(&s->lock);
720         ret = bdrv_co_writev(bs->file,
721                              (cluster_offset >> 9) + index_in_cluster,
722                              n, &hd_qiov);
723         qemu_co_mutex_lock(&s->lock);
724         if (ret < 0) {
725             break;
726         }
727         ret = 0;
728 
729         nb_sectors -= n;
730         sector_num += n;
731         buf += n * 512;
732     }
733     qemu_co_mutex_unlock(&s->lock);
734 
735     qemu_vfree(orig_buf);
736 
737     return ret;
738 }
739 
740 static void qcow_close(BlockDriverState *bs)
741 {
742     BDRVQcowState *s = bs->opaque;
743 
744     qcrypto_block_free(s->crypto);
745     s->crypto = NULL;
746     g_free(s->l1_table);
747     qemu_vfree(s->l2_cache);
748     g_free(s->cluster_cache);
749     g_free(s->cluster_data);
750 
751     migrate_del_blocker(s->migration_blocker);
752     error_free(s->migration_blocker);
753 }
754 
755 static int qcow_create(const char *filename, QemuOpts *opts, Error **errp)
756 {
757     int header_size, backing_filename_len, l1_size, shift, i;
758     QCowHeader header;
759     uint8_t *tmp;
760     int64_t total_size = 0;
761     char *backing_file = NULL;
762     Error *local_err = NULL;
763     int ret;
764     BlockBackend *qcow_blk;
765     char *encryptfmt = NULL;
766     QDict *options;
767     QDict *encryptopts = NULL;
768     QCryptoBlockCreateOptions *crypto_opts = NULL;
769     QCryptoBlock *crypto = NULL;
770 
771     /* Read out options */
772     total_size = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
773                           BDRV_SECTOR_SIZE);
774     if (total_size == 0) {
775         error_setg(errp, "Image size is too small, cannot be zero length");
776         ret = -EINVAL;
777         goto cleanup;
778     }
779 
780     backing_file = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE);
781     encryptfmt = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT);
782     if (encryptfmt) {
783         if (qemu_opt_get(opts, BLOCK_OPT_ENCRYPT)) {
784             error_setg(errp, "Options " BLOCK_OPT_ENCRYPT " and "
785                        BLOCK_OPT_ENCRYPT_FORMAT " are mutually exclusive");
786             ret = -EINVAL;
787             goto cleanup;
788         }
789     } else if (qemu_opt_get_bool_del(opts, BLOCK_OPT_ENCRYPT, false)) {
790         encryptfmt = g_strdup("aes");
791     }
792 
793     ret = bdrv_create_file(filename, opts, &local_err);
794     if (ret < 0) {
795         error_propagate(errp, local_err);
796         goto cleanup;
797     }
798 
799     qcow_blk = blk_new_open(filename, NULL, NULL,
800                             BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL,
801                             &local_err);
802     if (qcow_blk == NULL) {
803         error_propagate(errp, local_err);
804         ret = -EIO;
805         goto cleanup;
806     }
807 
808     blk_set_allow_write_beyond_eof(qcow_blk, true);
809 
810     ret = blk_truncate(qcow_blk, 0, PREALLOC_MODE_OFF, errp);
811     if (ret < 0) {
812         goto exit;
813     }
814 
815     memset(&header, 0, sizeof(header));
816     header.magic = cpu_to_be32(QCOW_MAGIC);
817     header.version = cpu_to_be32(QCOW_VERSION);
818     header.size = cpu_to_be64(total_size);
819     header_size = sizeof(header);
820     backing_filename_len = 0;
821     if (backing_file) {
822         if (strcmp(backing_file, "fat:")) {
823             header.backing_file_offset = cpu_to_be64(header_size);
824             backing_filename_len = strlen(backing_file);
825             header.backing_file_size = cpu_to_be32(backing_filename_len);
826             header_size += backing_filename_len;
827         } else {
828             /* special backing file for vvfat */
829             g_free(backing_file);
830             backing_file = NULL;
831         }
832         header.cluster_bits = 9; /* 512 byte cluster to avoid copying
833                                     unmodified sectors */
834         header.l2_bits = 12; /* 32 KB L2 tables */
835     } else {
836         header.cluster_bits = 12; /* 4 KB clusters */
837         header.l2_bits = 9; /* 4 KB L2 tables */
838     }
839     header_size = (header_size + 7) & ~7;
840     shift = header.cluster_bits + header.l2_bits;
841     l1_size = (total_size + (1LL << shift) - 1) >> shift;
842 
843     header.l1_table_offset = cpu_to_be64(header_size);
844 
845     options = qemu_opts_to_qdict(opts, NULL);
846     qdict_extract_subqdict(options, &encryptopts, "encrypt.");
847     QDECREF(options);
848     if (encryptfmt) {
849         if (!g_str_equal(encryptfmt, "aes")) {
850             error_setg(errp, "Unknown encryption format '%s', expected 'aes'",
851                        encryptfmt);
852             ret = -EINVAL;
853             goto exit;
854         }
855         header.crypt_method = cpu_to_be32(QCOW_CRYPT_AES);
856 
857         crypto_opts = block_crypto_create_opts_init(
858             Q_CRYPTO_BLOCK_FORMAT_QCOW, encryptopts, errp);
859         if (!crypto_opts) {
860             ret = -EINVAL;
861             goto exit;
862         }
863 
864         crypto = qcrypto_block_create(crypto_opts, "encrypt.",
865                                       NULL, NULL, NULL, errp);
866         if (!crypto) {
867             ret = -EINVAL;
868             goto exit;
869         }
870     } else {
871         header.crypt_method = cpu_to_be32(QCOW_CRYPT_NONE);
872     }
873 
874     /* write all the data */
875     ret = blk_pwrite(qcow_blk, 0, &header, sizeof(header), 0);
876     if (ret != sizeof(header)) {
877         goto exit;
878     }
879 
880     if (backing_file) {
881         ret = blk_pwrite(qcow_blk, sizeof(header),
882                          backing_file, backing_filename_len, 0);
883         if (ret != backing_filename_len) {
884             goto exit;
885         }
886     }
887 
888     tmp = g_malloc0(BDRV_SECTOR_SIZE);
889     for (i = 0; i < DIV_ROUND_UP(sizeof(uint64_t) * l1_size, BDRV_SECTOR_SIZE);
890          i++) {
891         ret = blk_pwrite(qcow_blk, header_size + BDRV_SECTOR_SIZE * i,
892                          tmp, BDRV_SECTOR_SIZE, 0);
893         if (ret != BDRV_SECTOR_SIZE) {
894             g_free(tmp);
895             goto exit;
896         }
897     }
898 
899     g_free(tmp);
900     ret = 0;
901 exit:
902     blk_unref(qcow_blk);
903 cleanup:
904     QDECREF(encryptopts);
905     g_free(encryptfmt);
906     qcrypto_block_free(crypto);
907     qapi_free_QCryptoBlockCreateOptions(crypto_opts);
908     g_free(backing_file);
909     return ret;
910 }
911 
912 static int qcow_make_empty(BlockDriverState *bs)
913 {
914     BDRVQcowState *s = bs->opaque;
915     uint32_t l1_length = s->l1_size * sizeof(uint64_t);
916     int ret;
917 
918     memset(s->l1_table, 0, l1_length);
919     if (bdrv_pwrite_sync(bs->file, s->l1_table_offset, s->l1_table,
920             l1_length) < 0)
921         return -1;
922     ret = bdrv_truncate(bs->file, s->l1_table_offset + l1_length,
923                         PREALLOC_MODE_OFF, NULL);
924     if (ret < 0)
925         return ret;
926 
927     memset(s->l2_cache, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
928     memset(s->l2_cache_offsets, 0, L2_CACHE_SIZE * sizeof(uint64_t));
929     memset(s->l2_cache_counts, 0, L2_CACHE_SIZE * sizeof(uint32_t));
930 
931     return 0;
932 }
933 
934 /* XXX: put compressed sectors first, then all the cluster aligned
935    tables to avoid losing bytes in alignment */
936 static coroutine_fn int
937 qcow_co_pwritev_compressed(BlockDriverState *bs, uint64_t offset,
938                            uint64_t bytes, QEMUIOVector *qiov)
939 {
940     BDRVQcowState *s = bs->opaque;
941     QEMUIOVector hd_qiov;
942     struct iovec iov;
943     z_stream strm;
944     int ret, out_len;
945     uint8_t *buf, *out_buf;
946     uint64_t cluster_offset;
947 
948     buf = qemu_blockalign(bs, s->cluster_size);
949     if (bytes != s->cluster_size) {
950         if (bytes > s->cluster_size ||
951             offset + bytes != bs->total_sectors << BDRV_SECTOR_BITS)
952         {
953             qemu_vfree(buf);
954             return -EINVAL;
955         }
956         /* Zero-pad last write if image size is not cluster aligned */
957         memset(buf + bytes, 0, s->cluster_size - bytes);
958     }
959     qemu_iovec_to_buf(qiov, 0, buf, qiov->size);
960 
961     out_buf = g_malloc(s->cluster_size);
962 
963     /* best compression, small window, no zlib header */
964     memset(&strm, 0, sizeof(strm));
965     ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
966                        Z_DEFLATED, -12,
967                        9, Z_DEFAULT_STRATEGY);
968     if (ret != 0) {
969         ret = -EINVAL;
970         goto fail;
971     }
972 
973     strm.avail_in = s->cluster_size;
974     strm.next_in = (uint8_t *)buf;
975     strm.avail_out = s->cluster_size;
976     strm.next_out = out_buf;
977 
978     ret = deflate(&strm, Z_FINISH);
979     if (ret != Z_STREAM_END && ret != Z_OK) {
980         deflateEnd(&strm);
981         ret = -EINVAL;
982         goto fail;
983     }
984     out_len = strm.next_out - out_buf;
985 
986     deflateEnd(&strm);
987 
988     if (ret != Z_STREAM_END || out_len >= s->cluster_size) {
989         /* could not compress: write normal cluster */
990         ret = qcow_co_writev(bs, offset >> BDRV_SECTOR_BITS,
991                              bytes >> BDRV_SECTOR_BITS, qiov);
992         if (ret < 0) {
993             goto fail;
994         }
995         goto success;
996     }
997     qemu_co_mutex_lock(&s->lock);
998     cluster_offset = get_cluster_offset(bs, offset, 2, out_len, 0, 0);
999     qemu_co_mutex_unlock(&s->lock);
1000     if (cluster_offset == 0) {
1001         ret = -EIO;
1002         goto fail;
1003     }
1004     cluster_offset &= s->cluster_offset_mask;
1005 
1006     iov = (struct iovec) {
1007         .iov_base   = out_buf,
1008         .iov_len    = out_len,
1009     };
1010     qemu_iovec_init_external(&hd_qiov, &iov, 1);
1011     ret = bdrv_co_pwritev(bs->file, cluster_offset, out_len, &hd_qiov, 0);
1012     if (ret < 0) {
1013         goto fail;
1014     }
1015 success:
1016     ret = 0;
1017 fail:
1018     qemu_vfree(buf);
1019     g_free(out_buf);
1020     return ret;
1021 }
1022 
1023 static int qcow_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1024 {
1025     BDRVQcowState *s = bs->opaque;
1026     bdi->cluster_size = s->cluster_size;
1027     return 0;
1028 }
1029 
1030 static QemuOptsList qcow_create_opts = {
1031     .name = "qcow-create-opts",
1032     .head = QTAILQ_HEAD_INITIALIZER(qcow_create_opts.head),
1033     .desc = {
1034         {
1035             .name = BLOCK_OPT_SIZE,
1036             .type = QEMU_OPT_SIZE,
1037             .help = "Virtual disk size"
1038         },
1039         {
1040             .name = BLOCK_OPT_BACKING_FILE,
1041             .type = QEMU_OPT_STRING,
1042             .help = "File name of a base image"
1043         },
1044         {
1045             .name = BLOCK_OPT_ENCRYPT,
1046             .type = QEMU_OPT_BOOL,
1047             .help = "Encrypt the image with format 'aes'. (Deprecated "
1048                     "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)",
1049         },
1050         {
1051             .name = BLOCK_OPT_ENCRYPT_FORMAT,
1052             .type = QEMU_OPT_STRING,
1053             .help = "Encrypt the image, format choices: 'aes'",
1054         },
1055         BLOCK_CRYPTO_OPT_DEF_QCOW_KEY_SECRET("encrypt."),
1056         { /* end of list */ }
1057     }
1058 };
1059 
1060 static BlockDriver bdrv_qcow = {
1061     .format_name	= "qcow",
1062     .instance_size	= sizeof(BDRVQcowState),
1063     .bdrv_probe		= qcow_probe,
1064     .bdrv_open		= qcow_open,
1065     .bdrv_close		= qcow_close,
1066     .bdrv_child_perm        = bdrv_format_default_perms,
1067     .bdrv_reopen_prepare    = qcow_reopen_prepare,
1068     .bdrv_create            = qcow_create,
1069     .bdrv_has_zero_init     = bdrv_has_zero_init_1,
1070     .supports_backing       = true,
1071 
1072     .bdrv_co_readv          = qcow_co_readv,
1073     .bdrv_co_writev         = qcow_co_writev,
1074     .bdrv_co_get_block_status   = qcow_co_get_block_status,
1075 
1076     .bdrv_make_empty        = qcow_make_empty,
1077     .bdrv_co_pwritev_compressed = qcow_co_pwritev_compressed,
1078     .bdrv_get_info          = qcow_get_info,
1079 
1080     .create_opts            = &qcow_create_opts,
1081 };
1082 
1083 static void bdrv_qcow_init(void)
1084 {
1085     bdrv_register(&bdrv_qcow);
1086 }
1087 
1088 block_init(bdrv_qcow_init);
1089