]>
Commit | Line | Data |
---|---|---|
585f8587 FB |
1 | /* |
2 | * Block driver for the QCOW version 2 format | |
5fafdf24 | 3 | * |
585f8587 | 4 | * Copyright (c) 2004-2006 Fabrice Bellard |
5fafdf24 | 5 | * |
585f8587 FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
e688df6b | 24 | |
80c71a24 | 25 | #include "qemu/osdep.h" |
2714f13d | 26 | |
609f45ea | 27 | #include "block/qdict.h" |
23588797 | 28 | #include "sysemu/block-backend.h" |
db725815 | 29 | #include "qemu/main-loop.h" |
1de7afc9 | 30 | #include "qemu/module.h" |
0d8c41da | 31 | #include "qcow2.h" |
1de7afc9 | 32 | #include "qemu/error-report.h" |
e688df6b | 33 | #include "qapi/error.h" |
9af23989 | 34 | #include "qapi/qapi-events-block-core.h" |
6b673957 MA |
35 | #include "qapi/qmp/qdict.h" |
36 | #include "qapi/qmp/qstring.h" | |
3cce16f4 | 37 | #include "trace.h" |
1bd0e2d1 | 38 | #include "qemu/option_int.h" |
f348b6d1 | 39 | #include "qemu/cutils.h" |
58369e22 | 40 | #include "qemu/bswap.h" |
b76b4f60 KW |
41 | #include "qapi/qobject-input-visitor.h" |
42 | #include "qapi/qapi-visit-block-core.h" | |
0d8c41da | 43 | #include "crypto.h" |
d710cf57 | 44 | #include "block/aio_task.h" |
585f8587 FB |
45 | |
46 | /* | |
47 | Differences with QCOW: | |
48 | ||
49 | - Support for multiple incremental snapshots. | |
50 | - Memory management by reference counts. | |
51 | - Clusters which have a reference count of one have the bit | |
52 | QCOW_OFLAG_COPIED to optimize write performance. | |
5fafdf24 | 53 | - Size of compressed clusters is stored in sectors to reduce bit usage |
585f8587 FB |
54 | in the cluster offsets. |
55 | - Support for storing additional data (such as the VM state) in the | |
3b46e624 | 56 | snapshots. |
585f8587 FB |
57 | - If a backing store is used, the cluster size is not constrained |
58 | (could be backported to QCOW). | |
59 | - L2 tables have always a size of one cluster. | |
60 | */ | |
61 | ||
9b80ddf3 AL |
62 | |
63 | typedef struct { | |
64 | uint32_t magic; | |
65 | uint32_t len; | |
c4217f64 | 66 | } QEMU_PACKED QCowExtension; |
21d82ac9 | 67 | |
7c80ab3f | 68 | #define QCOW2_EXT_MAGIC_END 0 |
8098969c | 69 | #define QCOW2_EXT_MAGIC_BACKING_FORMAT 0xe2792aca |
cfcc4c62 | 70 | #define QCOW2_EXT_MAGIC_FEATURE_TABLE 0x6803f857 |
4652b8f3 | 71 | #define QCOW2_EXT_MAGIC_CRYPTO_HEADER 0x0537be77 |
88ddffae | 72 | #define QCOW2_EXT_MAGIC_BITMAPS 0x23852875 |
93c24936 | 73 | #define QCOW2_EXT_MAGIC_DATA_FILE 0x44415441 |
9b80ddf3 | 74 | |
c3c10f72 VSO |
75 | static int coroutine_fn |
76 | qcow2_co_preadv_compressed(BlockDriverState *bs, | |
9c4269d5 | 77 | uint64_t cluster_descriptor, |
c3c10f72 VSO |
78 | uint64_t offset, |
79 | uint64_t bytes, | |
df893d25 VSO |
80 | QEMUIOVector *qiov, |
81 | size_t qiov_offset); | |
c3c10f72 | 82 | |
7c80ab3f | 83 | static int qcow2_probe(const uint8_t *buf, int buf_size, const char *filename) |
585f8587 FB |
84 | { |
85 | const QCowHeader *cow_header = (const void *)buf; | |
3b46e624 | 86 | |
585f8587 FB |
87 | if (buf_size >= sizeof(QCowHeader) && |
88 | be32_to_cpu(cow_header->magic) == QCOW_MAGIC && | |
6744cbab | 89 | be32_to_cpu(cow_header->version) >= 2) |
585f8587 FB |
90 | return 100; |
91 | else | |
92 | return 0; | |
93 | } | |
94 | ||
9b80ddf3 | 95 | |
4652b8f3 DB |
96 | static ssize_t qcow2_crypto_hdr_read_func(QCryptoBlock *block, size_t offset, |
97 | uint8_t *buf, size_t buflen, | |
98 | void *opaque, Error **errp) | |
99 | { | |
100 | BlockDriverState *bs = opaque; | |
101 | BDRVQcow2State *s = bs->opaque; | |
102 | ssize_t ret; | |
103 | ||
104 | if ((offset + buflen) > s->crypto_header.length) { | |
105 | error_setg(errp, "Request for data outside of extension header"); | |
106 | return -1; | |
107 | } | |
108 | ||
109 | ret = bdrv_pread(bs->file, | |
110 | s->crypto_header.offset + offset, buf, buflen); | |
111 | if (ret < 0) { | |
112 | error_setg_errno(errp, -ret, "Could not read encryption header"); | |
113 | return -1; | |
114 | } | |
115 | return ret; | |
116 | } | |
117 | ||
118 | ||
119 | static ssize_t qcow2_crypto_hdr_init_func(QCryptoBlock *block, size_t headerlen, | |
120 | void *opaque, Error **errp) | |
121 | { | |
122 | BlockDriverState *bs = opaque; | |
123 | BDRVQcow2State *s = bs->opaque; | |
124 | int64_t ret; | |
125 | int64_t clusterlen; | |
126 | ||
127 | ret = qcow2_alloc_clusters(bs, headerlen); | |
128 | if (ret < 0) { | |
129 | error_setg_errno(errp, -ret, | |
130 | "Cannot allocate cluster for LUKS header size %zu", | |
131 | headerlen); | |
132 | return -1; | |
133 | } | |
134 | ||
135 | s->crypto_header.length = headerlen; | |
136 | s->crypto_header.offset = ret; | |
137 | ||
087ab8e7 DB |
138 | /* |
139 | * Zero fill all space in cluster so it has predictable | |
140 | * content, as we may not initialize some regions of the | |
141 | * header (eg only 1 out of 8 key slots will be initialized) | |
142 | */ | |
4652b8f3 | 143 | clusterlen = size_to_clusters(s, headerlen) * s->cluster_size; |
966b000f | 144 | assert(qcow2_pre_write_overlap_check(bs, 0, ret, clusterlen, false) == 0); |
4652b8f3 | 145 | ret = bdrv_pwrite_zeroes(bs->file, |
087ab8e7 DB |
146 | ret, |
147 | clusterlen, 0); | |
4652b8f3 DB |
148 | if (ret < 0) { |
149 | error_setg_errno(errp, -ret, "Could not zero fill encryption header"); | |
150 | return -1; | |
151 | } | |
152 | ||
153 | return ret; | |
154 | } | |
155 | ||
156 | ||
157 | static ssize_t qcow2_crypto_hdr_write_func(QCryptoBlock *block, size_t offset, | |
158 | const uint8_t *buf, size_t buflen, | |
159 | void *opaque, Error **errp) | |
160 | { | |
161 | BlockDriverState *bs = opaque; | |
162 | BDRVQcow2State *s = bs->opaque; | |
163 | ssize_t ret; | |
164 | ||
165 | if ((offset + buflen) > s->crypto_header.length) { | |
166 | error_setg(errp, "Request for data outside of extension header"); | |
167 | return -1; | |
168 | } | |
169 | ||
170 | ret = bdrv_pwrite(bs->file, | |
171 | s->crypto_header.offset + offset, buf, buflen); | |
172 | if (ret < 0) { | |
173 | error_setg_errno(errp, -ret, "Could not read encryption header"); | |
174 | return -1; | |
175 | } | |
176 | return ret; | |
177 | } | |
178 | ||
90766d9d ML |
179 | static QDict* |
180 | qcow2_extract_crypto_opts(QemuOpts *opts, const char *fmt, Error **errp) | |
181 | { | |
182 | QDict *cryptoopts_qdict; | |
183 | QDict *opts_qdict; | |
184 | ||
185 | /* Extract "encrypt." options into a qdict */ | |
186 | opts_qdict = qemu_opts_to_qdict(opts, NULL); | |
187 | qdict_extract_subqdict(opts_qdict, &cryptoopts_qdict, "encrypt."); | |
188 | qobject_unref(opts_qdict); | |
189 | qdict_put_str(cryptoopts_qdict, "format", fmt); | |
190 | return cryptoopts_qdict; | |
191 | } | |
4652b8f3 | 192 | |
a951a631 | 193 | /* |
9b80ddf3 AL |
194 | * read qcow2 extension and fill bs |
195 | * start reading from start_offset | |
196 | * finish reading upon magic of value 0 or when end_offset reached | |
197 | * unknown magic is skipped (future extension this version knows nothing about) | |
198 | * return 0 upon success, non-0 otherwise | |
199 | */ | |
7c80ab3f | 200 | static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset, |
3ef6c40a | 201 | uint64_t end_offset, void **p_feature_table, |
88ddffae VSO |
202 | int flags, bool *need_update_header, |
203 | Error **errp) | |
9b80ddf3 | 204 | { |
ff99129a | 205 | BDRVQcow2State *s = bs->opaque; |
9b80ddf3 AL |
206 | QCowExtension ext; |
207 | uint64_t offset; | |
75bab85c | 208 | int ret; |
88ddffae VSO |
209 | Qcow2BitmapHeaderExt bitmaps_ext; |
210 | ||
211 | if (need_update_header != NULL) { | |
212 | *need_update_header = false; | |
213 | } | |
9b80ddf3 AL |
214 | |
215 | #ifdef DEBUG_EXT | |
7c80ab3f | 216 | printf("qcow2_read_extensions: start=%ld end=%ld\n", start_offset, end_offset); |
9b80ddf3 AL |
217 | #endif |
218 | offset = start_offset; | |
219 | while (offset < end_offset) { | |
220 | ||
221 | #ifdef DEBUG_EXT | |
222 | /* Sanity check */ | |
223 | if (offset > s->cluster_size) | |
7c80ab3f | 224 | printf("qcow2_read_extension: suspicious offset %lu\n", offset); |
9b80ddf3 | 225 | |
9b2260cb | 226 | printf("attempting to read extended header in offset %lu\n", offset); |
9b80ddf3 AL |
227 | #endif |
228 | ||
cf2ab8fc | 229 | ret = bdrv_pread(bs->file, offset, &ext, sizeof(ext)); |
3ef6c40a HR |
230 | if (ret < 0) { |
231 | error_setg_errno(errp, -ret, "qcow2_read_extension: ERROR: " | |
232 | "pread fail from offset %" PRIu64, offset); | |
9b80ddf3 AL |
233 | return 1; |
234 | } | |
3b698f52 PM |
235 | ext.magic = be32_to_cpu(ext.magic); |
236 | ext.len = be32_to_cpu(ext.len); | |
9b80ddf3 AL |
237 | offset += sizeof(ext); |
238 | #ifdef DEBUG_EXT | |
239 | printf("ext.magic = 0x%x\n", ext.magic); | |
240 | #endif | |
2ebafc85 | 241 | if (offset > end_offset || ext.len > end_offset - offset) { |
3ef6c40a | 242 | error_setg(errp, "Header extension too large"); |
64ca6aee KW |
243 | return -EINVAL; |
244 | } | |
245 | ||
9b80ddf3 | 246 | switch (ext.magic) { |
7c80ab3f | 247 | case QCOW2_EXT_MAGIC_END: |
9b80ddf3 | 248 | return 0; |
f965509c | 249 | |
7c80ab3f | 250 | case QCOW2_EXT_MAGIC_BACKING_FORMAT: |
f965509c | 251 | if (ext.len >= sizeof(bs->backing_format)) { |
521b2b5d HR |
252 | error_setg(errp, "ERROR: ext_backing_format: len=%" PRIu32 |
253 | " too large (>=%zu)", ext.len, | |
254 | sizeof(bs->backing_format)); | |
f965509c AL |
255 | return 2; |
256 | } | |
cf2ab8fc | 257 | ret = bdrv_pread(bs->file, offset, bs->backing_format, ext.len); |
3ef6c40a HR |
258 | if (ret < 0) { |
259 | error_setg_errno(errp, -ret, "ERROR: ext_backing_format: " | |
260 | "Could not read format name"); | |
f965509c | 261 | return 3; |
3ef6c40a | 262 | } |
f965509c | 263 | bs->backing_format[ext.len] = '\0'; |
e4603fe1 | 264 | s->image_backing_format = g_strdup(bs->backing_format); |
f965509c AL |
265 | #ifdef DEBUG_EXT |
266 | printf("Qcow2: Got format extension %s\n", bs->backing_format); | |
267 | #endif | |
f965509c AL |
268 | break; |
269 | ||
cfcc4c62 KW |
270 | case QCOW2_EXT_MAGIC_FEATURE_TABLE: |
271 | if (p_feature_table != NULL) { | |
5f14f31d | 272 | void *feature_table = g_malloc0(ext.len + 2 * sizeof(Qcow2Feature)); |
cf2ab8fc | 273 | ret = bdrv_pread(bs->file, offset , feature_table, ext.len); |
cfcc4c62 | 274 | if (ret < 0) { |
3ef6c40a HR |
275 | error_setg_errno(errp, -ret, "ERROR: ext_feature_table: " |
276 | "Could not read table"); | |
cfcc4c62 KW |
277 | return ret; |
278 | } | |
279 | ||
280 | *p_feature_table = feature_table; | |
281 | } | |
282 | break; | |
283 | ||
4652b8f3 DB |
284 | case QCOW2_EXT_MAGIC_CRYPTO_HEADER: { |
285 | unsigned int cflags = 0; | |
286 | if (s->crypt_method_header != QCOW_CRYPT_LUKS) { | |
287 | error_setg(errp, "CRYPTO header extension only " | |
288 | "expected with LUKS encryption method"); | |
289 | return -EINVAL; | |
290 | } | |
291 | if (ext.len != sizeof(Qcow2CryptoHeaderExtension)) { | |
292 | error_setg(errp, "CRYPTO header extension size %u, " | |
293 | "but expected size %zu", ext.len, | |
294 | sizeof(Qcow2CryptoHeaderExtension)); | |
295 | return -EINVAL; | |
296 | } | |
297 | ||
298 | ret = bdrv_pread(bs->file, offset, &s->crypto_header, ext.len); | |
299 | if (ret < 0) { | |
300 | error_setg_errno(errp, -ret, | |
301 | "Unable to read CRYPTO header extension"); | |
302 | return ret; | |
303 | } | |
3b698f52 PM |
304 | s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset); |
305 | s->crypto_header.length = be64_to_cpu(s->crypto_header.length); | |
4652b8f3 DB |
306 | |
307 | if ((s->crypto_header.offset % s->cluster_size) != 0) { | |
308 | error_setg(errp, "Encryption header offset '%" PRIu64 "' is " | |
309 | "not a multiple of cluster size '%u'", | |
310 | s->crypto_header.offset, s->cluster_size); | |
311 | return -EINVAL; | |
312 | } | |
313 | ||
314 | if (flags & BDRV_O_NO_IO) { | |
315 | cflags |= QCRYPTO_BLOCK_OPEN_NO_IO; | |
316 | } | |
1cd9a787 | 317 | s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.", |
4652b8f3 | 318 | qcow2_crypto_hdr_read_func, |
8ac0f15f | 319 | bs, cflags, QCOW2_MAX_THREADS, errp); |
4652b8f3 DB |
320 | if (!s->crypto) { |
321 | return -EINVAL; | |
322 | } | |
323 | } break; | |
324 | ||
88ddffae VSO |
325 | case QCOW2_EXT_MAGIC_BITMAPS: |
326 | if (ext.len != sizeof(bitmaps_ext)) { | |
327 | error_setg_errno(errp, -ret, "bitmaps_ext: " | |
328 | "Invalid extension length"); | |
329 | return -EINVAL; | |
330 | } | |
331 | ||
332 | if (!(s->autoclear_features & QCOW2_AUTOCLEAR_BITMAPS)) { | |
c9ceb3ec HR |
333 | if (s->qcow_version < 3) { |
334 | /* Let's be a bit more specific */ | |
335 | warn_report("This qcow2 v2 image contains bitmaps, but " | |
336 | "they may have been modified by a program " | |
337 | "without persistent bitmap support; so now " | |
338 | "they must all be considered inconsistent"); | |
339 | } else { | |
340 | warn_report("a program lacking bitmap support " | |
341 | "modified this file, so all bitmaps are now " | |
342 | "considered inconsistent"); | |
343 | } | |
55d527a9 AF |
344 | error_printf("Some clusters may be leaked, " |
345 | "run 'qemu-img check -r' on the image " | |
88ddffae VSO |
346 | "file to fix."); |
347 | if (need_update_header != NULL) { | |
348 | /* Updating is needed to drop invalid bitmap extension. */ | |
349 | *need_update_header = true; | |
350 | } | |
351 | break; | |
352 | } | |
353 | ||
354 | ret = bdrv_pread(bs->file, offset, &bitmaps_ext, ext.len); | |
355 | if (ret < 0) { | |
356 | error_setg_errno(errp, -ret, "bitmaps_ext: " | |
357 | "Could not read ext header"); | |
358 | return ret; | |
359 | } | |
360 | ||
361 | if (bitmaps_ext.reserved32 != 0) { | |
362 | error_setg_errno(errp, -ret, "bitmaps_ext: " | |
363 | "Reserved field is not zero"); | |
364 | return -EINVAL; | |
365 | } | |
366 | ||
3b698f52 PM |
367 | bitmaps_ext.nb_bitmaps = be32_to_cpu(bitmaps_ext.nb_bitmaps); |
368 | bitmaps_ext.bitmap_directory_size = | |
369 | be64_to_cpu(bitmaps_ext.bitmap_directory_size); | |
370 | bitmaps_ext.bitmap_directory_offset = | |
371 | be64_to_cpu(bitmaps_ext.bitmap_directory_offset); | |
88ddffae VSO |
372 | |
373 | if (bitmaps_ext.nb_bitmaps > QCOW2_MAX_BITMAPS) { | |
374 | error_setg(errp, | |
375 | "bitmaps_ext: Image has %" PRIu32 " bitmaps, " | |
376 | "exceeding the QEMU supported maximum of %d", | |
377 | bitmaps_ext.nb_bitmaps, QCOW2_MAX_BITMAPS); | |
378 | return -EINVAL; | |
379 | } | |
380 | ||
381 | if (bitmaps_ext.nb_bitmaps == 0) { | |
382 | error_setg(errp, "found bitmaps extension with zero bitmaps"); | |
383 | return -EINVAL; | |
384 | } | |
385 | ||
74e60fb5 | 386 | if (offset_into_cluster(s, bitmaps_ext.bitmap_directory_offset)) { |
88ddffae VSO |
387 | error_setg(errp, "bitmaps_ext: " |
388 | "invalid bitmap directory offset"); | |
389 | return -EINVAL; | |
390 | } | |
391 | ||
392 | if (bitmaps_ext.bitmap_directory_size > | |
393 | QCOW2_MAX_BITMAP_DIRECTORY_SIZE) { | |
394 | error_setg(errp, "bitmaps_ext: " | |
395 | "bitmap directory size (%" PRIu64 ") exceeds " | |
396 | "the maximum supported size (%d)", | |
397 | bitmaps_ext.bitmap_directory_size, | |
398 | QCOW2_MAX_BITMAP_DIRECTORY_SIZE); | |
399 | return -EINVAL; | |
400 | } | |
401 | ||
402 | s->nb_bitmaps = bitmaps_ext.nb_bitmaps; | |
403 | s->bitmap_directory_offset = | |
404 | bitmaps_ext.bitmap_directory_offset; | |
405 | s->bitmap_directory_size = | |
406 | bitmaps_ext.bitmap_directory_size; | |
407 | ||
408 | #ifdef DEBUG_EXT | |
409 | printf("Qcow2: Got bitmaps extension: " | |
410 | "offset=%" PRIu64 " nb_bitmaps=%" PRIu32 "\n", | |
411 | s->bitmap_directory_offset, s->nb_bitmaps); | |
412 | #endif | |
413 | break; | |
414 | ||
9b890bdc KW |
415 | case QCOW2_EXT_MAGIC_DATA_FILE: |
416 | { | |
417 | s->image_data_file = g_malloc0(ext.len + 1); | |
418 | ret = bdrv_pread(bs->file, offset, s->image_data_file, ext.len); | |
419 | if (ret < 0) { | |
420 | error_setg_errno(errp, -ret, | |
421 | "ERROR: Could not read data file name"); | |
422 | return ret; | |
423 | } | |
424 | #ifdef DEBUG_EXT | |
425 | printf("Qcow2: Got external data file %s\n", s->image_data_file); | |
426 | #endif | |
427 | break; | |
428 | } | |
429 | ||
9b80ddf3 | 430 | default: |
75bab85c | 431 | /* unknown magic - save it in case we need to rewrite the header */ |
4096974e EB |
432 | /* If you add a new feature, make sure to also update the fast |
433 | * path of qcow2_make_empty() to deal with it. */ | |
75bab85c KW |
434 | { |
435 | Qcow2UnknownHeaderExtension *uext; | |
436 | ||
437 | uext = g_malloc0(sizeof(*uext) + ext.len); | |
438 | uext->magic = ext.magic; | |
439 | uext->len = ext.len; | |
440 | QLIST_INSERT_HEAD(&s->unknown_header_ext, uext, next); | |
441 | ||
cf2ab8fc | 442 | ret = bdrv_pread(bs->file, offset , uext->data, uext->len); |
75bab85c | 443 | if (ret < 0) { |
3ef6c40a HR |
444 | error_setg_errno(errp, -ret, "ERROR: unknown extension: " |
445 | "Could not read data"); | |
75bab85c KW |
446 | return ret; |
447 | } | |
75bab85c | 448 | } |
9b80ddf3 AL |
449 | break; |
450 | } | |
fd29b4bb KW |
451 | |
452 | offset += ((ext.len + 7) & ~7); | |
9b80ddf3 AL |
453 | } |
454 | ||
455 | return 0; | |
456 | } | |
457 | ||
75bab85c KW |
458 | static void cleanup_unknown_header_ext(BlockDriverState *bs) |
459 | { | |
ff99129a | 460 | BDRVQcow2State *s = bs->opaque; |
75bab85c KW |
461 | Qcow2UnknownHeaderExtension *uext, *next; |
462 | ||
463 | QLIST_FOREACH_SAFE(uext, &s->unknown_header_ext, next, next) { | |
464 | QLIST_REMOVE(uext, next); | |
465 | g_free(uext); | |
466 | } | |
467 | } | |
9b80ddf3 | 468 | |
a55448b3 HR |
469 | static void report_unsupported_feature(Error **errp, Qcow2Feature *table, |
470 | uint64_t mask) | |
cfcc4c62 | 471 | { |
7cdca2e2 | 472 | g_autoptr(GString) features = g_string_sized_new(60); |
12ac6d3d | 473 | |
cfcc4c62 KW |
474 | while (table && table->name[0] != '\0') { |
475 | if (table->type == QCOW2_FEAT_TYPE_INCOMPATIBLE) { | |
12ac6d3d | 476 | if (mask & (1ULL << table->bit)) { |
7cdca2e2 AG |
477 | if (features->len > 0) { |
478 | g_string_append(features, ", "); | |
479 | } | |
480 | g_string_append_printf(features, "%.46s", table->name); | |
12ac6d3d | 481 | mask &= ~(1ULL << table->bit); |
cfcc4c62 KW |
482 | } |
483 | } | |
484 | table++; | |
485 | } | |
486 | ||
487 | if (mask) { | |
7cdca2e2 AG |
488 | if (features->len > 0) { |
489 | g_string_append(features, ", "); | |
490 | } | |
491 | g_string_append_printf(features, | |
492 | "Unknown incompatible feature: %" PRIx64, mask); | |
cfcc4c62 | 493 | } |
12ac6d3d | 494 | |
7cdca2e2 | 495 | error_setg(errp, "Unsupported qcow2 feature(s): %s", features->str); |
cfcc4c62 KW |
496 | } |
497 | ||
bfe8043e SH |
498 | /* |
499 | * Sets the dirty bit and flushes afterwards if necessary. | |
500 | * | |
501 | * The incompatible_features bit is only set if the image file header was | |
502 | * updated successfully. Therefore it is not required to check the return | |
503 | * value of this function. | |
504 | */ | |
280d3735 | 505 | int qcow2_mark_dirty(BlockDriverState *bs) |
bfe8043e | 506 | { |
ff99129a | 507 | BDRVQcow2State *s = bs->opaque; |
bfe8043e SH |
508 | uint64_t val; |
509 | int ret; | |
510 | ||
511 | assert(s->qcow_version >= 3); | |
512 | ||
513 | if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) { | |
514 | return 0; /* already dirty */ | |
515 | } | |
516 | ||
517 | val = cpu_to_be64(s->incompatible_features | QCOW2_INCOMPAT_DIRTY); | |
d9ca2ea2 | 518 | ret = bdrv_pwrite(bs->file, offsetof(QCowHeader, incompatible_features), |
bfe8043e SH |
519 | &val, sizeof(val)); |
520 | if (ret < 0) { | |
521 | return ret; | |
522 | } | |
9a4f4c31 | 523 | ret = bdrv_flush(bs->file->bs); |
bfe8043e SH |
524 | if (ret < 0) { |
525 | return ret; | |
526 | } | |
527 | ||
528 | /* Only treat image as dirty if the header was updated successfully */ | |
529 | s->incompatible_features |= QCOW2_INCOMPAT_DIRTY; | |
530 | return 0; | |
531 | } | |
532 | ||
c61d0004 SH |
533 | /* |
534 | * Clears the dirty bit and flushes before if necessary. Only call this | |
535 | * function when there are no pending requests, it does not guard against | |
536 | * concurrent requests dirtying the image. | |
537 | */ | |
538 | static int qcow2_mark_clean(BlockDriverState *bs) | |
539 | { | |
ff99129a | 540 | BDRVQcow2State *s = bs->opaque; |
c61d0004 SH |
541 | |
542 | if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) { | |
4c2e5f8f KW |
543 | int ret; |
544 | ||
545 | s->incompatible_features &= ~QCOW2_INCOMPAT_DIRTY; | |
546 | ||
8b220eb7 | 547 | ret = qcow2_flush_caches(bs); |
c61d0004 SH |
548 | if (ret < 0) { |
549 | return ret; | |
550 | } | |
551 | ||
c61d0004 SH |
552 | return qcow2_update_header(bs); |
553 | } | |
554 | return 0; | |
555 | } | |
556 | ||
69c98726 HR |
557 | /* |
558 | * Marks the image as corrupt. | |
559 | */ | |
560 | int qcow2_mark_corrupt(BlockDriverState *bs) | |
561 | { | |
ff99129a | 562 | BDRVQcow2State *s = bs->opaque; |
69c98726 HR |
563 | |
564 | s->incompatible_features |= QCOW2_INCOMPAT_CORRUPT; | |
565 | return qcow2_update_header(bs); | |
566 | } | |
567 | ||
568 | /* | |
569 | * Marks the image as consistent, i.e., unsets the corrupt bit, and flushes | |
570 | * before if necessary. | |
571 | */ | |
572 | int qcow2_mark_consistent(BlockDriverState *bs) | |
573 | { | |
ff99129a | 574 | BDRVQcow2State *s = bs->opaque; |
69c98726 HR |
575 | |
576 | if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) { | |
8b220eb7 | 577 | int ret = qcow2_flush_caches(bs); |
69c98726 HR |
578 | if (ret < 0) { |
579 | return ret; | |
580 | } | |
581 | ||
582 | s->incompatible_features &= ~QCOW2_INCOMPAT_CORRUPT; | |
583 | return qcow2_update_header(bs); | |
584 | } | |
585 | return 0; | |
586 | } | |
587 | ||
8bc584fe HR |
588 | static void qcow2_add_check_result(BdrvCheckResult *out, |
589 | const BdrvCheckResult *src, | |
590 | bool set_allocation_info) | |
591 | { | |
592 | out->corruptions += src->corruptions; | |
593 | out->leaks += src->leaks; | |
594 | out->check_errors += src->check_errors; | |
595 | out->corruptions_fixed += src->corruptions_fixed; | |
596 | out->leaks_fixed += src->leaks_fixed; | |
597 | ||
598 | if (set_allocation_info) { | |
599 | out->image_end_offset = src->image_end_offset; | |
600 | out->bfi = src->bfi; | |
601 | } | |
602 | } | |
603 | ||
2fd61638 PB |
604 | static int coroutine_fn qcow2_co_check_locked(BlockDriverState *bs, |
605 | BdrvCheckResult *result, | |
606 | BdrvCheckMode fix) | |
acbe5982 | 607 | { |
8bc584fe HR |
608 | BdrvCheckResult snapshot_res = {}; |
609 | BdrvCheckResult refcount_res = {}; | |
610 | int ret; | |
611 | ||
612 | memset(result, 0, sizeof(*result)); | |
613 | ||
614 | ret = qcow2_check_read_snapshot_table(bs, &snapshot_res, fix); | |
8bc584fe | 615 | if (ret < 0) { |
fe446b5d | 616 | qcow2_add_check_result(result, &snapshot_res, false); |
8bc584fe HR |
617 | return ret; |
618 | } | |
619 | ||
620 | ret = qcow2_check_refcounts(bs, &refcount_res, fix); | |
621 | qcow2_add_check_result(result, &refcount_res, true); | |
fe446b5d HR |
622 | if (ret < 0) { |
623 | qcow2_add_check_result(result, &snapshot_res, false); | |
624 | return ret; | |
625 | } | |
626 | ||
627 | ret = qcow2_check_fix_snapshot_table(bs, &snapshot_res, fix); | |
628 | qcow2_add_check_result(result, &snapshot_res, false); | |
acbe5982 SH |
629 | if (ret < 0) { |
630 | return ret; | |
631 | } | |
632 | ||
633 | if (fix && result->check_errors == 0 && result->corruptions == 0) { | |
24530f3e HR |
634 | ret = qcow2_mark_clean(bs); |
635 | if (ret < 0) { | |
636 | return ret; | |
637 | } | |
638 | return qcow2_mark_consistent(bs); | |
acbe5982 SH |
639 | } |
640 | return ret; | |
641 | } | |
642 | ||
2fd61638 PB |
643 | static int coroutine_fn qcow2_co_check(BlockDriverState *bs, |
644 | BdrvCheckResult *result, | |
645 | BdrvCheckMode fix) | |
646 | { | |
647 | BDRVQcow2State *s = bs->opaque; | |
648 | int ret; | |
649 | ||
650 | qemu_co_mutex_lock(&s->lock); | |
651 | ret = qcow2_co_check_locked(bs, result, fix); | |
652 | qemu_co_mutex_unlock(&s->lock); | |
653 | return ret; | |
654 | } | |
655 | ||
0cf0e598 AG |
656 | int qcow2_validate_table(BlockDriverState *bs, uint64_t offset, |
657 | uint64_t entries, size_t entry_len, | |
658 | int64_t max_size_bytes, const char *table_name, | |
659 | Error **errp) | |
8c7de283 | 660 | { |
ff99129a | 661 | BDRVQcow2State *s = bs->opaque; |
8c7de283 | 662 | |
0cf0e598 AG |
663 | if (entries > max_size_bytes / entry_len) { |
664 | error_setg(errp, "%s too large", table_name); | |
665 | return -EFBIG; | |
8c7de283 KW |
666 | } |
667 | ||
0cf0e598 AG |
668 | /* Use signed INT64_MAX as the maximum even for uint64_t header fields, |
669 | * because values will be passed to qemu functions taking int64_t. */ | |
670 | if ((INT64_MAX - entries * entry_len < offset) || | |
671 | (offset_into_cluster(s, offset) != 0)) { | |
672 | error_setg(errp, "%s offset invalid", table_name); | |
8c7de283 KW |
673 | return -EINVAL; |
674 | } | |
675 | ||
676 | return 0; | |
677 | } | |
678 | ||
8a2ce0bc AG |
679 | static const char *const mutable_opts[] = { |
680 | QCOW2_OPT_LAZY_REFCOUNTS, | |
681 | QCOW2_OPT_DISCARD_REQUEST, | |
682 | QCOW2_OPT_DISCARD_SNAPSHOT, | |
683 | QCOW2_OPT_DISCARD_OTHER, | |
684 | QCOW2_OPT_OVERLAP, | |
685 | QCOW2_OPT_OVERLAP_TEMPLATE, | |
686 | QCOW2_OPT_OVERLAP_MAIN_HEADER, | |
687 | QCOW2_OPT_OVERLAP_ACTIVE_L1, | |
688 | QCOW2_OPT_OVERLAP_ACTIVE_L2, | |
689 | QCOW2_OPT_OVERLAP_REFCOUNT_TABLE, | |
690 | QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK, | |
691 | QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE, | |
692 | QCOW2_OPT_OVERLAP_INACTIVE_L1, | |
693 | QCOW2_OPT_OVERLAP_INACTIVE_L2, | |
694 | QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY, | |
695 | QCOW2_OPT_CACHE_SIZE, | |
696 | QCOW2_OPT_L2_CACHE_SIZE, | |
697 | QCOW2_OPT_L2_CACHE_ENTRY_SIZE, | |
698 | QCOW2_OPT_REFCOUNT_CACHE_SIZE, | |
699 | QCOW2_OPT_CACHE_CLEAN_INTERVAL, | |
700 | NULL | |
701 | }; | |
702 | ||
74c4510a KW |
703 | static QemuOptsList qcow2_runtime_opts = { |
704 | .name = "qcow2", | |
705 | .head = QTAILQ_HEAD_INITIALIZER(qcow2_runtime_opts.head), | |
706 | .desc = { | |
707 | { | |
64aa99d3 | 708 | .name = QCOW2_OPT_LAZY_REFCOUNTS, |
74c4510a KW |
709 | .type = QEMU_OPT_BOOL, |
710 | .help = "Postpone refcount updates", | |
711 | }, | |
67af674e KW |
712 | { |
713 | .name = QCOW2_OPT_DISCARD_REQUEST, | |
714 | .type = QEMU_OPT_BOOL, | |
715 | .help = "Pass guest discard requests to the layer below", | |
716 | }, | |
717 | { | |
718 | .name = QCOW2_OPT_DISCARD_SNAPSHOT, | |
719 | .type = QEMU_OPT_BOOL, | |
720 | .help = "Generate discard requests when snapshot related space " | |
721 | "is freed", | |
722 | }, | |
723 | { | |
724 | .name = QCOW2_OPT_DISCARD_OTHER, | |
725 | .type = QEMU_OPT_BOOL, | |
726 | .help = "Generate discard requests when other clusters are freed", | |
727 | }, | |
05de7e86 HR |
728 | { |
729 | .name = QCOW2_OPT_OVERLAP, | |
730 | .type = QEMU_OPT_STRING, | |
731 | .help = "Selects which overlap checks to perform from a range of " | |
732 | "templates (none, constant, cached, all)", | |
733 | }, | |
ee42b5ce HR |
734 | { |
735 | .name = QCOW2_OPT_OVERLAP_TEMPLATE, | |
736 | .type = QEMU_OPT_STRING, | |
737 | .help = "Selects which overlap checks to perform from a range of " | |
738 | "templates (none, constant, cached, all)", | |
739 | }, | |
05de7e86 HR |
740 | { |
741 | .name = QCOW2_OPT_OVERLAP_MAIN_HEADER, | |
742 | .type = QEMU_OPT_BOOL, | |
743 | .help = "Check for unintended writes into the main qcow2 header", | |
744 | }, | |
745 | { | |
746 | .name = QCOW2_OPT_OVERLAP_ACTIVE_L1, | |
747 | .type = QEMU_OPT_BOOL, | |
748 | .help = "Check for unintended writes into the active L1 table", | |
749 | }, | |
750 | { | |
751 | .name = QCOW2_OPT_OVERLAP_ACTIVE_L2, | |
752 | .type = QEMU_OPT_BOOL, | |
753 | .help = "Check for unintended writes into an active L2 table", | |
754 | }, | |
755 | { | |
756 | .name = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE, | |
757 | .type = QEMU_OPT_BOOL, | |
758 | .help = "Check for unintended writes into the refcount table", | |
759 | }, | |
760 | { | |
761 | .name = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK, | |
762 | .type = QEMU_OPT_BOOL, | |
763 | .help = "Check for unintended writes into a refcount block", | |
764 | }, | |
765 | { | |
766 | .name = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE, | |
767 | .type = QEMU_OPT_BOOL, | |
768 | .help = "Check for unintended writes into the snapshot table", | |
769 | }, | |
770 | { | |
771 | .name = QCOW2_OPT_OVERLAP_INACTIVE_L1, | |
772 | .type = QEMU_OPT_BOOL, | |
773 | .help = "Check for unintended writes into an inactive L1 table", | |
774 | }, | |
775 | { | |
776 | .name = QCOW2_OPT_OVERLAP_INACTIVE_L2, | |
777 | .type = QEMU_OPT_BOOL, | |
778 | .help = "Check for unintended writes into an inactive L2 table", | |
779 | }, | |
0e4e4318 VSO |
780 | { |
781 | .name = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY, | |
782 | .type = QEMU_OPT_BOOL, | |
783 | .help = "Check for unintended writes into the bitmap directory", | |
784 | }, | |
6c1c8d5d HR |
785 | { |
786 | .name = QCOW2_OPT_CACHE_SIZE, | |
787 | .type = QEMU_OPT_SIZE, | |
788 | .help = "Maximum combined metadata (L2 tables and refcount blocks) " | |
789 | "cache size", | |
790 | }, | |
791 | { | |
792 | .name = QCOW2_OPT_L2_CACHE_SIZE, | |
793 | .type = QEMU_OPT_SIZE, | |
794 | .help = "Maximum L2 table cache size", | |
795 | }, | |
1221fe6f AG |
796 | { |
797 | .name = QCOW2_OPT_L2_CACHE_ENTRY_SIZE, | |
798 | .type = QEMU_OPT_SIZE, | |
799 | .help = "Size of each entry in the L2 cache", | |
800 | }, | |
6c1c8d5d HR |
801 | { |
802 | .name = QCOW2_OPT_REFCOUNT_CACHE_SIZE, | |
803 | .type = QEMU_OPT_SIZE, | |
804 | .help = "Maximum refcount block cache size", | |
805 | }, | |
279621c0 AG |
806 | { |
807 | .name = QCOW2_OPT_CACHE_CLEAN_INTERVAL, | |
808 | .type = QEMU_OPT_NUMBER, | |
809 | .help = "Clean unused cache entries after this time (in seconds)", | |
810 | }, | |
4652b8f3 DB |
811 | BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", |
812 | "ID of secret providing qcow2 AES key or LUKS passphrase"), | |
74c4510a KW |
813 | { /* end of list */ } |
814 | }, | |
815 | }; | |
816 | ||
4092e99d | 817 | static const char *overlap_bool_option_names[QCOW2_OL_MAX_BITNR] = { |
0e4e4318 VSO |
818 | [QCOW2_OL_MAIN_HEADER_BITNR] = QCOW2_OPT_OVERLAP_MAIN_HEADER, |
819 | [QCOW2_OL_ACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L1, | |
820 | [QCOW2_OL_ACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_ACTIVE_L2, | |
821 | [QCOW2_OL_REFCOUNT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_TABLE, | |
822 | [QCOW2_OL_REFCOUNT_BLOCK_BITNR] = QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK, | |
823 | [QCOW2_OL_SNAPSHOT_TABLE_BITNR] = QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE, | |
824 | [QCOW2_OL_INACTIVE_L1_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L1, | |
825 | [QCOW2_OL_INACTIVE_L2_BITNR] = QCOW2_OPT_OVERLAP_INACTIVE_L2, | |
826 | [QCOW2_OL_BITMAP_DIRECTORY_BITNR] = QCOW2_OPT_OVERLAP_BITMAP_DIRECTORY, | |
4092e99d HR |
827 | }; |
828 | ||
279621c0 AG |
829 | static void cache_clean_timer_cb(void *opaque) |
830 | { | |
831 | BlockDriverState *bs = opaque; | |
ff99129a | 832 | BDRVQcow2State *s = bs->opaque; |
b2f68bff AG |
833 | qcow2_cache_clean_unused(s->l2_table_cache); |
834 | qcow2_cache_clean_unused(s->refcount_block_cache); | |
279621c0 AG |
835 | timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + |
836 | (int64_t) s->cache_clean_interval * 1000); | |
837 | } | |
838 | ||
839 | static void cache_clean_timer_init(BlockDriverState *bs, AioContext *context) | |
840 | { | |
ff99129a | 841 | BDRVQcow2State *s = bs->opaque; |
279621c0 AG |
842 | if (s->cache_clean_interval > 0) { |
843 | s->cache_clean_timer = aio_timer_new(context, QEMU_CLOCK_VIRTUAL, | |
844 | SCALE_MS, cache_clean_timer_cb, | |
845 | bs); | |
846 | timer_mod(s->cache_clean_timer, qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL) + | |
847 | (int64_t) s->cache_clean_interval * 1000); | |
848 | } | |
849 | } | |
850 | ||
851 | static void cache_clean_timer_del(BlockDriverState *bs) | |
852 | { | |
ff99129a | 853 | BDRVQcow2State *s = bs->opaque; |
279621c0 | 854 | if (s->cache_clean_timer) { |
279621c0 AG |
855 | timer_free(s->cache_clean_timer); |
856 | s->cache_clean_timer = NULL; | |
857 | } | |
858 | } | |
859 | ||
860 | static void qcow2_detach_aio_context(BlockDriverState *bs) | |
861 | { | |
862 | cache_clean_timer_del(bs); | |
863 | } | |
864 | ||
865 | static void qcow2_attach_aio_context(BlockDriverState *bs, | |
866 | AioContext *new_context) | |
867 | { | |
868 | cache_clean_timer_init(bs, new_context); | |
869 | } | |
870 | ||
bc85ef26 HR |
871 | static void read_cache_sizes(BlockDriverState *bs, QemuOpts *opts, |
872 | uint64_t *l2_cache_size, | |
1221fe6f | 873 | uint64_t *l2_cache_entry_size, |
6c1c8d5d HR |
874 | uint64_t *refcount_cache_size, Error **errp) |
875 | { | |
ff99129a | 876 | BDRVQcow2State *s = bs->opaque; |
b749562d | 877 | uint64_t combined_cache_size, l2_cache_max_setting; |
6c1c8d5d | 878 | bool l2_cache_size_set, refcount_cache_size_set, combined_cache_size_set; |
af39bd0d | 879 | bool l2_cache_entry_size_set; |
7af5eea9 | 880 | int min_refcount_cache = MIN_REFCOUNT_CACHE_SIZE * s->cluster_size; |
b749562d | 881 | uint64_t virtual_disk_size = bs->total_sectors * BDRV_SECTOR_SIZE; |
b70d0820 AG |
882 | uint64_t max_l2_entries = DIV_ROUND_UP(virtual_disk_size, s->cluster_size); |
883 | /* An L2 table is always one cluster in size so the max cache size | |
884 | * should be a multiple of the cluster size. */ | |
c8fd8554 | 885 | uint64_t max_l2_cache = ROUND_UP(max_l2_entries * l2_entry_size(s), |
b70d0820 | 886 | s->cluster_size); |
6c1c8d5d HR |
887 | |
888 | combined_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_CACHE_SIZE); | |
889 | l2_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_SIZE); | |
890 | refcount_cache_size_set = qemu_opt_get(opts, QCOW2_OPT_REFCOUNT_CACHE_SIZE); | |
af39bd0d | 891 | l2_cache_entry_size_set = qemu_opt_get(opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE); |
6c1c8d5d HR |
892 | |
893 | combined_cache_size = qemu_opt_get_size(opts, QCOW2_OPT_CACHE_SIZE, 0); | |
b749562d LB |
894 | l2_cache_max_setting = qemu_opt_get_size(opts, QCOW2_OPT_L2_CACHE_SIZE, |
895 | DEFAULT_L2_CACHE_MAX_SIZE); | |
6c1c8d5d HR |
896 | *refcount_cache_size = qemu_opt_get_size(opts, |
897 | QCOW2_OPT_REFCOUNT_CACHE_SIZE, 0); | |
898 | ||
1221fe6f AG |
899 | *l2_cache_entry_size = qemu_opt_get_size( |
900 | opts, QCOW2_OPT_L2_CACHE_ENTRY_SIZE, s->cluster_size); | |
901 | ||
b749562d LB |
902 | *l2_cache_size = MIN(max_l2_cache, l2_cache_max_setting); |
903 | ||
6c1c8d5d HR |
904 | if (combined_cache_size_set) { |
905 | if (l2_cache_size_set && refcount_cache_size_set) { | |
906 | error_setg(errp, QCOW2_OPT_CACHE_SIZE ", " QCOW2_OPT_L2_CACHE_SIZE | |
907 | " and " QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not be set " | |
308999e9 | 908 | "at the same time"); |
6c1c8d5d | 909 | return; |
b749562d LB |
910 | } else if (l2_cache_size_set && |
911 | (l2_cache_max_setting > combined_cache_size)) { | |
6c1c8d5d HR |
912 | error_setg(errp, QCOW2_OPT_L2_CACHE_SIZE " may not exceed " |
913 | QCOW2_OPT_CACHE_SIZE); | |
914 | return; | |
915 | } else if (*refcount_cache_size > combined_cache_size) { | |
916 | error_setg(errp, QCOW2_OPT_REFCOUNT_CACHE_SIZE " may not exceed " | |
917 | QCOW2_OPT_CACHE_SIZE); | |
918 | return; | |
919 | } | |
920 | ||
921 | if (l2_cache_size_set) { | |
922 | *refcount_cache_size = combined_cache_size - *l2_cache_size; | |
923 | } else if (refcount_cache_size_set) { | |
924 | *l2_cache_size = combined_cache_size - *refcount_cache_size; | |
925 | } else { | |
52253998 AG |
926 | /* Assign as much memory as possible to the L2 cache, and |
927 | * use the remainder for the refcount cache */ | |
928 | if (combined_cache_size >= max_l2_cache + min_refcount_cache) { | |
929 | *l2_cache_size = max_l2_cache; | |
930 | *refcount_cache_size = combined_cache_size - *l2_cache_size; | |
931 | } else { | |
932 | *refcount_cache_size = | |
933 | MIN(combined_cache_size, min_refcount_cache); | |
934 | *l2_cache_size = combined_cache_size - *refcount_cache_size; | |
935 | } | |
6c1c8d5d | 936 | } |
6c1c8d5d | 937 | } |
af39bd0d AG |
938 | |
939 | /* | |
940 | * If the L2 cache is not enough to cover the whole disk then | |
941 | * default to 4KB entries. Smaller entries reduce the cost of | |
942 | * loads and evictions and increase I/O performance. | |
943 | */ | |
944 | if (*l2_cache_size < max_l2_cache && !l2_cache_entry_size_set) { | |
945 | *l2_cache_entry_size = MIN(s->cluster_size, 4096); | |
946 | } | |
947 | ||
657ada52 LB |
948 | /* l2_cache_size and refcount_cache_size are ensured to have at least |
949 | * their minimum values in qcow2_update_options_prepare() */ | |
1221fe6f AG |
950 | |
951 | if (*l2_cache_entry_size < (1 << MIN_CLUSTER_BITS) || | |
952 | *l2_cache_entry_size > s->cluster_size || | |
953 | !is_power_of_2(*l2_cache_entry_size)) { | |
954 | error_setg(errp, "L2 cache entry size must be a power of two " | |
955 | "between %d and the cluster size (%d)", | |
956 | 1 << MIN_CLUSTER_BITS, s->cluster_size); | |
957 | return; | |
958 | } | |
6c1c8d5d HR |
959 | } |
960 | ||
ee55b173 KW |
961 | typedef struct Qcow2ReopenState { |
962 | Qcow2Cache *l2_table_cache; | |
963 | Qcow2Cache *refcount_block_cache; | |
3c2e511a | 964 | int l2_slice_size; /* Number of entries in a slice of the L2 table */ |
ee55b173 KW |
965 | bool use_lazy_refcounts; |
966 | int overlap_check; | |
967 | bool discard_passthrough[QCOW2_DISCARD_MAX]; | |
968 | uint64_t cache_clean_interval; | |
b25b387f | 969 | QCryptoBlockOpenOptions *crypto_opts; /* Disk encryption runtime options */ |
ee55b173 KW |
970 | } Qcow2ReopenState; |
971 | ||
972 | static int qcow2_update_options_prepare(BlockDriverState *bs, | |
973 | Qcow2ReopenState *r, | |
974 | QDict *options, int flags, | |
975 | Error **errp) | |
4c75d1a1 KW |
976 | { |
977 | BDRVQcow2State *s = bs->opaque; | |
94edf3fb | 978 | QemuOpts *opts = NULL; |
4c75d1a1 KW |
979 | const char *opt_overlap_check, *opt_overlap_check_template; |
980 | int overlap_check_template = 0; | |
1221fe6f | 981 | uint64_t l2_cache_size, l2_cache_entry_size, refcount_cache_size; |
4c75d1a1 | 982 | int i; |
b25b387f DB |
983 | const char *encryptfmt; |
984 | QDict *encryptopts = NULL; | |
94edf3fb | 985 | Error *local_err = NULL; |
4c75d1a1 KW |
986 | int ret; |
987 | ||
b25b387f DB |
988 | qdict_extract_subqdict(options, &encryptopts, "encrypt."); |
989 | encryptfmt = qdict_get_try_str(encryptopts, "format"); | |
990 | ||
94edf3fb | 991 | opts = qemu_opts_create(&qcow2_runtime_opts, NULL, 0, &error_abort); |
af175e85 | 992 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
94edf3fb KW |
993 | ret = -EINVAL; |
994 | goto fail; | |
995 | } | |
996 | ||
997 | /* get L2 table/refcount block cache size from command line options */ | |
1221fe6f AG |
998 | read_cache_sizes(bs, opts, &l2_cache_size, &l2_cache_entry_size, |
999 | &refcount_cache_size, &local_err); | |
94edf3fb KW |
1000 | if (local_err) { |
1001 | error_propagate(errp, local_err); | |
1002 | ret = -EINVAL; | |
1003 | goto fail; | |
1004 | } | |
1005 | ||
1221fe6f | 1006 | l2_cache_size /= l2_cache_entry_size; |
94edf3fb KW |
1007 | if (l2_cache_size < MIN_L2_CACHE_SIZE) { |
1008 | l2_cache_size = MIN_L2_CACHE_SIZE; | |
1009 | } | |
1010 | if (l2_cache_size > INT_MAX) { | |
1011 | error_setg(errp, "L2 cache size too big"); | |
1012 | ret = -EINVAL; | |
1013 | goto fail; | |
1014 | } | |
1015 | ||
1016 | refcount_cache_size /= s->cluster_size; | |
1017 | if (refcount_cache_size < MIN_REFCOUNT_CACHE_SIZE) { | |
1018 | refcount_cache_size = MIN_REFCOUNT_CACHE_SIZE; | |
1019 | } | |
1020 | if (refcount_cache_size > INT_MAX) { | |
1021 | error_setg(errp, "Refcount cache size too big"); | |
1022 | ret = -EINVAL; | |
1023 | goto fail; | |
1024 | } | |
1025 | ||
5b0959a7 KW |
1026 | /* alloc new L2 table/refcount block cache, flush old one */ |
1027 | if (s->l2_table_cache) { | |
1028 | ret = qcow2_cache_flush(bs, s->l2_table_cache); | |
1029 | if (ret) { | |
1030 | error_setg_errno(errp, -ret, "Failed to flush the L2 table cache"); | |
1031 | goto fail; | |
1032 | } | |
1033 | } | |
1034 | ||
1035 | if (s->refcount_block_cache) { | |
1036 | ret = qcow2_cache_flush(bs, s->refcount_block_cache); | |
1037 | if (ret) { | |
1038 | error_setg_errno(errp, -ret, | |
1039 | "Failed to flush the refcount block cache"); | |
1040 | goto fail; | |
1041 | } | |
1042 | } | |
1043 | ||
c8fd8554 | 1044 | r->l2_slice_size = l2_cache_entry_size / l2_entry_size(s); |
1221fe6f AG |
1045 | r->l2_table_cache = qcow2_cache_create(bs, l2_cache_size, |
1046 | l2_cache_entry_size); | |
1047 | r->refcount_block_cache = qcow2_cache_create(bs, refcount_cache_size, | |
1048 | s->cluster_size); | |
ee55b173 | 1049 | if (r->l2_table_cache == NULL || r->refcount_block_cache == NULL) { |
94edf3fb KW |
1050 | error_setg(errp, "Could not allocate metadata caches"); |
1051 | ret = -ENOMEM; | |
1052 | goto fail; | |
1053 | } | |
1054 | ||
1055 | /* New interval for cache cleanup timer */ | |
ee55b173 | 1056 | r->cache_clean_interval = |
5b0959a7 | 1057 | qemu_opt_get_number(opts, QCOW2_OPT_CACHE_CLEAN_INTERVAL, |
e957b50b | 1058 | DEFAULT_CACHE_CLEAN_INTERVAL); |
91203f08 AG |
1059 | #ifndef CONFIG_LINUX |
1060 | if (r->cache_clean_interval != 0) { | |
1061 | error_setg(errp, QCOW2_OPT_CACHE_CLEAN_INTERVAL | |
1062 | " not supported on this host"); | |
1063 | ret = -EINVAL; | |
1064 | goto fail; | |
1065 | } | |
1066 | #endif | |
ee55b173 | 1067 | if (r->cache_clean_interval > UINT_MAX) { |
94edf3fb KW |
1068 | error_setg(errp, "Cache clean interval too big"); |
1069 | ret = -EINVAL; | |
1070 | goto fail; | |
1071 | } | |
94edf3fb | 1072 | |
5b0959a7 | 1073 | /* lazy-refcounts; flush if going from enabled to disabled */ |
ee55b173 | 1074 | r->use_lazy_refcounts = qemu_opt_get_bool(opts, QCOW2_OPT_LAZY_REFCOUNTS, |
4c75d1a1 | 1075 | (s->compatible_features & QCOW2_COMPAT_LAZY_REFCOUNTS)); |
ee55b173 | 1076 | if (r->use_lazy_refcounts && s->qcow_version < 3) { |
007dbc39 KW |
1077 | error_setg(errp, "Lazy refcounts require a qcow2 image with at least " |
1078 | "qemu 1.1 compatibility level"); | |
1079 | ret = -EINVAL; | |
1080 | goto fail; | |
1081 | } | |
4c75d1a1 | 1082 | |
5b0959a7 KW |
1083 | if (s->use_lazy_refcounts && !r->use_lazy_refcounts) { |
1084 | ret = qcow2_mark_clean(bs); | |
1085 | if (ret < 0) { | |
1086 | error_setg_errno(errp, -ret, "Failed to disable lazy refcounts"); | |
1087 | goto fail; | |
1088 | } | |
1089 | } | |
1090 | ||
007dbc39 | 1091 | /* Overlap check options */ |
4c75d1a1 KW |
1092 | opt_overlap_check = qemu_opt_get(opts, QCOW2_OPT_OVERLAP); |
1093 | opt_overlap_check_template = qemu_opt_get(opts, QCOW2_OPT_OVERLAP_TEMPLATE); | |
1094 | if (opt_overlap_check_template && opt_overlap_check && | |
1095 | strcmp(opt_overlap_check_template, opt_overlap_check)) | |
1096 | { | |
1097 | error_setg(errp, "Conflicting values for qcow2 options '" | |
1098 | QCOW2_OPT_OVERLAP "' ('%s') and '" QCOW2_OPT_OVERLAP_TEMPLATE | |
1099 | "' ('%s')", opt_overlap_check, opt_overlap_check_template); | |
1100 | ret = -EINVAL; | |
1101 | goto fail; | |
1102 | } | |
1103 | if (!opt_overlap_check) { | |
1104 | opt_overlap_check = opt_overlap_check_template ?: "cached"; | |
1105 | } | |
1106 | ||
1107 | if (!strcmp(opt_overlap_check, "none")) { | |
1108 | overlap_check_template = 0; | |
1109 | } else if (!strcmp(opt_overlap_check, "constant")) { | |
1110 | overlap_check_template = QCOW2_OL_CONSTANT; | |
1111 | } else if (!strcmp(opt_overlap_check, "cached")) { | |
1112 | overlap_check_template = QCOW2_OL_CACHED; | |
1113 | } else if (!strcmp(opt_overlap_check, "all")) { | |
1114 | overlap_check_template = QCOW2_OL_ALL; | |
1115 | } else { | |
1116 | error_setg(errp, "Unsupported value '%s' for qcow2 option " | |
1117 | "'overlap-check'. Allowed are any of the following: " | |
1118 | "none, constant, cached, all", opt_overlap_check); | |
1119 | ret = -EINVAL; | |
1120 | goto fail; | |
1121 | } | |
1122 | ||
ee55b173 | 1123 | r->overlap_check = 0; |
4c75d1a1 KW |
1124 | for (i = 0; i < QCOW2_OL_MAX_BITNR; i++) { |
1125 | /* overlap-check defines a template bitmask, but every flag may be | |
1126 | * overwritten through the associated boolean option */ | |
ee55b173 | 1127 | r->overlap_check |= |
4c75d1a1 KW |
1128 | qemu_opt_get_bool(opts, overlap_bool_option_names[i], |
1129 | overlap_check_template & (1 << i)) << i; | |
1130 | } | |
1131 | ||
ee55b173 KW |
1132 | r->discard_passthrough[QCOW2_DISCARD_NEVER] = false; |
1133 | r->discard_passthrough[QCOW2_DISCARD_ALWAYS] = true; | |
1134 | r->discard_passthrough[QCOW2_DISCARD_REQUEST] = | |
007dbc39 KW |
1135 | qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_REQUEST, |
1136 | flags & BDRV_O_UNMAP); | |
ee55b173 | 1137 | r->discard_passthrough[QCOW2_DISCARD_SNAPSHOT] = |
007dbc39 | 1138 | qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_SNAPSHOT, true); |
ee55b173 | 1139 | r->discard_passthrough[QCOW2_DISCARD_OTHER] = |
007dbc39 KW |
1140 | qemu_opt_get_bool(opts, QCOW2_OPT_DISCARD_OTHER, false); |
1141 | ||
b25b387f DB |
1142 | switch (s->crypt_method_header) { |
1143 | case QCOW_CRYPT_NONE: | |
1144 | if (encryptfmt) { | |
1145 | error_setg(errp, "No encryption in image header, but options " | |
1146 | "specified format '%s'", encryptfmt); | |
1147 | ret = -EINVAL; | |
1148 | goto fail; | |
1149 | } | |
1150 | break; | |
1151 | ||
1152 | case QCOW_CRYPT_AES: | |
1153 | if (encryptfmt && !g_str_equal(encryptfmt, "aes")) { | |
1154 | error_setg(errp, | |
1155 | "Header reported 'aes' encryption format but " | |
1156 | "options specify '%s'", encryptfmt); | |
1157 | ret = -EINVAL; | |
1158 | goto fail; | |
1159 | } | |
796d3239 MA |
1160 | qdict_put_str(encryptopts, "format", "qcow"); |
1161 | r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp); | |
b25b387f DB |
1162 | break; |
1163 | ||
4652b8f3 DB |
1164 | case QCOW_CRYPT_LUKS: |
1165 | if (encryptfmt && !g_str_equal(encryptfmt, "luks")) { | |
1166 | error_setg(errp, | |
1167 | "Header reported 'luks' encryption format but " | |
1168 | "options specify '%s'", encryptfmt); | |
1169 | ret = -EINVAL; | |
1170 | goto fail; | |
1171 | } | |
796d3239 MA |
1172 | qdict_put_str(encryptopts, "format", "luks"); |
1173 | r->crypto_opts = block_crypto_open_opts_init(encryptopts, errp); | |
4652b8f3 DB |
1174 | break; |
1175 | ||
b25b387f DB |
1176 | default: |
1177 | error_setg(errp, "Unsupported encryption method %d", | |
1178 | s->crypt_method_header); | |
1179 | break; | |
1180 | } | |
1181 | if (s->crypt_method_header != QCOW_CRYPT_NONE && !r->crypto_opts) { | |
1182 | ret = -EINVAL; | |
1183 | goto fail; | |
1184 | } | |
1185 | ||
4c75d1a1 KW |
1186 | ret = 0; |
1187 | fail: | |
cb3e7f08 | 1188 | qobject_unref(encryptopts); |
94edf3fb KW |
1189 | qemu_opts_del(opts); |
1190 | opts = NULL; | |
ee55b173 KW |
1191 | return ret; |
1192 | } | |
1193 | ||
1194 | static void qcow2_update_options_commit(BlockDriverState *bs, | |
1195 | Qcow2ReopenState *r) | |
1196 | { | |
1197 | BDRVQcow2State *s = bs->opaque; | |
1198 | int i; | |
1199 | ||
5b0959a7 | 1200 | if (s->l2_table_cache) { |
e64d4072 | 1201 | qcow2_cache_destroy(s->l2_table_cache); |
5b0959a7 KW |
1202 | } |
1203 | if (s->refcount_block_cache) { | |
e64d4072 | 1204 | qcow2_cache_destroy(s->refcount_block_cache); |
5b0959a7 | 1205 | } |
ee55b173 KW |
1206 | s->l2_table_cache = r->l2_table_cache; |
1207 | s->refcount_block_cache = r->refcount_block_cache; | |
3c2e511a | 1208 | s->l2_slice_size = r->l2_slice_size; |
ee55b173 KW |
1209 | |
1210 | s->overlap_check = r->overlap_check; | |
1211 | s->use_lazy_refcounts = r->use_lazy_refcounts; | |
1212 | ||
1213 | for (i = 0; i < QCOW2_DISCARD_MAX; i++) { | |
1214 | s->discard_passthrough[i] = r->discard_passthrough[i]; | |
1215 | } | |
1216 | ||
5b0959a7 KW |
1217 | if (s->cache_clean_interval != r->cache_clean_interval) { |
1218 | cache_clean_timer_del(bs); | |
1219 | s->cache_clean_interval = r->cache_clean_interval; | |
1220 | cache_clean_timer_init(bs, bdrv_get_aio_context(bs)); | |
1221 | } | |
b25b387f DB |
1222 | |
1223 | qapi_free_QCryptoBlockOpenOptions(s->crypto_opts); | |
1224 | s->crypto_opts = r->crypto_opts; | |
ee55b173 KW |
1225 | } |
1226 | ||
1227 | static void qcow2_update_options_abort(BlockDriverState *bs, | |
1228 | Qcow2ReopenState *r) | |
1229 | { | |
1230 | if (r->l2_table_cache) { | |
e64d4072 | 1231 | qcow2_cache_destroy(r->l2_table_cache); |
ee55b173 KW |
1232 | } |
1233 | if (r->refcount_block_cache) { | |
e64d4072 | 1234 | qcow2_cache_destroy(r->refcount_block_cache); |
ee55b173 | 1235 | } |
b25b387f | 1236 | qapi_free_QCryptoBlockOpenOptions(r->crypto_opts); |
ee55b173 KW |
1237 | } |
1238 | ||
1239 | static int qcow2_update_options(BlockDriverState *bs, QDict *options, | |
1240 | int flags, Error **errp) | |
1241 | { | |
1242 | Qcow2ReopenState r = {}; | |
1243 | int ret; | |
1244 | ||
1245 | ret = qcow2_update_options_prepare(bs, &r, options, flags, errp); | |
1246 | if (ret >= 0) { | |
1247 | qcow2_update_options_commit(bs, &r); | |
1248 | } else { | |
1249 | qcow2_update_options_abort(bs, &r); | |
1250 | } | |
94edf3fb | 1251 | |
4c75d1a1 KW |
1252 | return ret; |
1253 | } | |
1254 | ||
572ad978 DP |
1255 | static int validate_compression_type(BDRVQcow2State *s, Error **errp) |
1256 | { | |
1257 | switch (s->compression_type) { | |
1258 | case QCOW2_COMPRESSION_TYPE_ZLIB: | |
d298ac10 DP |
1259 | #ifdef CONFIG_ZSTD |
1260 | case QCOW2_COMPRESSION_TYPE_ZSTD: | |
1261 | #endif | |
572ad978 DP |
1262 | break; |
1263 | ||
1264 | default: | |
1265 | error_setg(errp, "qcow2: unknown compression type: %u", | |
1266 | s->compression_type); | |
1267 | return -ENOTSUP; | |
1268 | } | |
1269 | ||
1270 | /* | |
1271 | * if the compression type differs from QCOW2_COMPRESSION_TYPE_ZLIB | |
1272 | * the incompatible feature flag must be set | |
1273 | */ | |
1274 | if (s->compression_type == QCOW2_COMPRESSION_TYPE_ZLIB) { | |
1275 | if (s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION) { | |
1276 | error_setg(errp, "qcow2: Compression type incompatible feature " | |
1277 | "bit must not be set"); | |
1278 | return -EINVAL; | |
1279 | } | |
1280 | } else { | |
1281 | if (!(s->incompatible_features & QCOW2_INCOMPAT_COMPRESSION)) { | |
1282 | error_setg(errp, "qcow2: Compression type incompatible feature " | |
1283 | "bit must be set"); | |
1284 | return -EINVAL; | |
1285 | } | |
1286 | } | |
1287 | ||
1288 | return 0; | |
1289 | } | |
1290 | ||
1fafcd93 PB |
1291 | /* Called with s->lock held. */ |
1292 | static int coroutine_fn qcow2_do_open(BlockDriverState *bs, QDict *options, | |
1293 | int flags, Error **errp) | |
585f8587 | 1294 | { |
bc520249 | 1295 | ERRP_GUARD(); |
ff99129a | 1296 | BDRVQcow2State *s = bs->opaque; |
6d33e8e7 KW |
1297 | unsigned int len, i; |
1298 | int ret = 0; | |
585f8587 | 1299 | QCowHeader header; |
9b80ddf3 | 1300 | uint64_t ext_end; |
2cf7cfa1 | 1301 | uint64_t l1_vm_state_index; |
88ddffae | 1302 | bool update_header = false; |
585f8587 | 1303 | |
cf2ab8fc | 1304 | ret = bdrv_pread(bs->file, 0, &header, sizeof(header)); |
6d85a57e | 1305 | if (ret < 0) { |
3ef6c40a | 1306 | error_setg_errno(errp, -ret, "Could not read qcow2 header"); |
585f8587 | 1307 | goto fail; |
6d85a57e | 1308 | } |
3b698f52 PM |
1309 | header.magic = be32_to_cpu(header.magic); |
1310 | header.version = be32_to_cpu(header.version); | |
1311 | header.backing_file_offset = be64_to_cpu(header.backing_file_offset); | |
1312 | header.backing_file_size = be32_to_cpu(header.backing_file_size); | |
1313 | header.size = be64_to_cpu(header.size); | |
1314 | header.cluster_bits = be32_to_cpu(header.cluster_bits); | |
1315 | header.crypt_method = be32_to_cpu(header.crypt_method); | |
1316 | header.l1_table_offset = be64_to_cpu(header.l1_table_offset); | |
1317 | header.l1_size = be32_to_cpu(header.l1_size); | |
1318 | header.refcount_table_offset = be64_to_cpu(header.refcount_table_offset); | |
1319 | header.refcount_table_clusters = | |
1320 | be32_to_cpu(header.refcount_table_clusters); | |
1321 | header.snapshots_offset = be64_to_cpu(header.snapshots_offset); | |
1322 | header.nb_snapshots = be32_to_cpu(header.nb_snapshots); | |
3b46e624 | 1323 | |
e8cdcec1 | 1324 | if (header.magic != QCOW_MAGIC) { |
3ef6c40a | 1325 | error_setg(errp, "Image is not in qcow2 format"); |
76abe407 | 1326 | ret = -EINVAL; |
585f8587 | 1327 | goto fail; |
6d85a57e | 1328 | } |
6744cbab | 1329 | if (header.version < 2 || header.version > 3) { |
a55448b3 | 1330 | error_setg(errp, "Unsupported qcow2 version %" PRIu32, header.version); |
6744cbab KW |
1331 | ret = -ENOTSUP; |
1332 | goto fail; | |
1333 | } | |
1334 | ||
1335 | s->qcow_version = header.version; | |
1336 | ||
24342f2c KW |
1337 | /* Initialise cluster size */ |
1338 | if (header.cluster_bits < MIN_CLUSTER_BITS || | |
1339 | header.cluster_bits > MAX_CLUSTER_BITS) { | |
521b2b5d HR |
1340 | error_setg(errp, "Unsupported cluster size: 2^%" PRIu32, |
1341 | header.cluster_bits); | |
24342f2c KW |
1342 | ret = -EINVAL; |
1343 | goto fail; | |
1344 | } | |
1345 | ||
1346 | s->cluster_bits = header.cluster_bits; | |
1347 | s->cluster_size = 1 << s->cluster_bits; | |
24342f2c | 1348 | |
6744cbab KW |
1349 | /* Initialise version 3 header fields */ |
1350 | if (header.version == 2) { | |
1351 | header.incompatible_features = 0; | |
1352 | header.compatible_features = 0; | |
1353 | header.autoclear_features = 0; | |
1354 | header.refcount_order = 4; | |
1355 | header.header_length = 72; | |
1356 | } else { | |
3b698f52 PM |
1357 | header.incompatible_features = |
1358 | be64_to_cpu(header.incompatible_features); | |
1359 | header.compatible_features = be64_to_cpu(header.compatible_features); | |
1360 | header.autoclear_features = be64_to_cpu(header.autoclear_features); | |
1361 | header.refcount_order = be32_to_cpu(header.refcount_order); | |
1362 | header.header_length = be32_to_cpu(header.header_length); | |
24342f2c KW |
1363 | |
1364 | if (header.header_length < 104) { | |
1365 | error_setg(errp, "qcow2 header too short"); | |
1366 | ret = -EINVAL; | |
1367 | goto fail; | |
1368 | } | |
1369 | } | |
1370 | ||
1371 | if (header.header_length > s->cluster_size) { | |
1372 | error_setg(errp, "qcow2 header exceeds cluster size"); | |
1373 | ret = -EINVAL; | |
1374 | goto fail; | |
6744cbab KW |
1375 | } |
1376 | ||
1377 | if (header.header_length > sizeof(header)) { | |
1378 | s->unknown_header_fields_size = header.header_length - sizeof(header); | |
1379 | s->unknown_header_fields = g_malloc(s->unknown_header_fields_size); | |
cf2ab8fc | 1380 | ret = bdrv_pread(bs->file, sizeof(header), s->unknown_header_fields, |
6744cbab KW |
1381 | s->unknown_header_fields_size); |
1382 | if (ret < 0) { | |
3ef6c40a HR |
1383 | error_setg_errno(errp, -ret, "Could not read unknown qcow2 header " |
1384 | "fields"); | |
6744cbab KW |
1385 | goto fail; |
1386 | } | |
1387 | } | |
1388 | ||
a1b3955c KW |
1389 | if (header.backing_file_offset > s->cluster_size) { |
1390 | error_setg(errp, "Invalid backing file offset"); | |
1391 | ret = -EINVAL; | |
1392 | goto fail; | |
1393 | } | |
1394 | ||
cfcc4c62 KW |
1395 | if (header.backing_file_offset) { |
1396 | ext_end = header.backing_file_offset; | |
1397 | } else { | |
1398 | ext_end = 1 << header.cluster_bits; | |
1399 | } | |
1400 | ||
6744cbab KW |
1401 | /* Handle feature bits */ |
1402 | s->incompatible_features = header.incompatible_features; | |
1403 | s->compatible_features = header.compatible_features; | |
1404 | s->autoclear_features = header.autoclear_features; | |
1405 | ||
572ad978 DP |
1406 | /* |
1407 | * Handle compression type | |
1408 | * Older qcow2 images don't contain the compression type header. | |
1409 | * Distinguish them by the header length and use | |
1410 | * the only valid (default) compression type in that case | |
1411 | */ | |
1412 | if (header.header_length > offsetof(QCowHeader, compression_type)) { | |
1413 | s->compression_type = header.compression_type; | |
1414 | } else { | |
1415 | s->compression_type = QCOW2_COMPRESSION_TYPE_ZLIB; | |
1416 | } | |
1417 | ||
1418 | ret = validate_compression_type(s, errp); | |
1419 | if (ret) { | |
1420 | goto fail; | |
1421 | } | |
1422 | ||
c61d0004 | 1423 | if (s->incompatible_features & ~QCOW2_INCOMPAT_MASK) { |
cfcc4c62 KW |
1424 | void *feature_table = NULL; |
1425 | qcow2_read_extensions(bs, header.header_length, ext_end, | |
88ddffae | 1426 | &feature_table, flags, NULL, NULL); |
a55448b3 | 1427 | report_unsupported_feature(errp, feature_table, |
c61d0004 SH |
1428 | s->incompatible_features & |
1429 | ~QCOW2_INCOMPAT_MASK); | |
6744cbab | 1430 | ret = -ENOTSUP; |
c5a33ee9 | 1431 | g_free(feature_table); |
6744cbab KW |
1432 | goto fail; |
1433 | } | |
1434 | ||
69c98726 HR |
1435 | if (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT) { |
1436 | /* Corrupt images may not be written to unless they are being repaired | |
1437 | */ | |
1438 | if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_CHECK)) { | |
3ef6c40a HR |
1439 | error_setg(errp, "qcow2: Image is corrupt; cannot be opened " |
1440 | "read/write"); | |
69c98726 HR |
1441 | ret = -EACCES; |
1442 | goto fail; | |
1443 | } | |
1444 | } | |
1445 | ||
d0346b55 AG |
1446 | s->subclusters_per_cluster = |
1447 | has_subclusters(s) ? QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER : 1; | |
1448 | s->subcluster_size = s->cluster_size / s->subclusters_per_cluster; | |
1449 | s->subcluster_bits = ctz32(s->subcluster_size); | |
1450 | ||
7be20252 AG |
1451 | if (s->subcluster_size < (1 << MIN_CLUSTER_BITS)) { |
1452 | error_setg(errp, "Unsupported subcluster size: %d", s->subcluster_size); | |
1453 | ret = -EINVAL; | |
1454 | goto fail; | |
1455 | } | |
1456 | ||
6744cbab | 1457 | /* Check support for various header values */ |
b72faf9f HR |
1458 | if (header.refcount_order > 6) { |
1459 | error_setg(errp, "Reference count entry width too large; may not " | |
1460 | "exceed 64 bits"); | |
1461 | ret = -EINVAL; | |
e8cdcec1 KW |
1462 | goto fail; |
1463 | } | |
b6481f37 | 1464 | s->refcount_order = header.refcount_order; |
346a53df HR |
1465 | s->refcount_bits = 1 << s->refcount_order; |
1466 | s->refcount_max = UINT64_C(1) << (s->refcount_bits - 1); | |
1467 | s->refcount_max += s->refcount_max - 1; | |
6744cbab | 1468 | |
585f8587 | 1469 | s->crypt_method_header = header.crypt_method; |
6d85a57e | 1470 | if (s->crypt_method_header) { |
e6ff69bf DB |
1471 | if (bdrv_uses_whitelist() && |
1472 | s->crypt_method_header == QCOW_CRYPT_AES) { | |
8c0dcbc4 DB |
1473 | error_setg(errp, |
1474 | "Use of AES-CBC encrypted qcow2 images is no longer " | |
1475 | "supported in system emulators"); | |
1476 | error_append_hint(errp, | |
1477 | "You can use 'qemu-img convert' to convert your " | |
1478 | "image to an alternative supported format, such " | |
1479 | "as unencrypted qcow2, or raw with the LUKS " | |
1480 | "format instead.\n"); | |
1481 | ret = -ENOSYS; | |
1482 | goto fail; | |
e6ff69bf DB |
1483 | } |
1484 | ||
4652b8f3 DB |
1485 | if (s->crypt_method_header == QCOW_CRYPT_AES) { |
1486 | s->crypt_physical_offset = false; | |
1487 | } else { | |
1488 | /* Assuming LUKS and any future crypt methods we | |
1489 | * add will all use physical offsets, due to the | |
1490 | * fact that the alternative is insecure... */ | |
1491 | s->crypt_physical_offset = true; | |
1492 | } | |
1493 | ||
54115412 | 1494 | bs->encrypted = true; |
6d85a57e | 1495 | } |
24342f2c | 1496 | |
c8fd8554 | 1497 | s->l2_bits = s->cluster_bits - ctz32(l2_entry_size(s)); |
585f8587 | 1498 | s->l2_size = 1 << s->l2_bits; |
1d13d654 HR |
1499 | /* 2^(s->refcount_order - 3) is the refcount width in bytes */ |
1500 | s->refcount_block_bits = s->cluster_bits - (s->refcount_order - 3); | |
1501 | s->refcount_block_size = 1 << s->refcount_block_bits; | |
bd016b91 | 1502 | bs->total_sectors = header.size / BDRV_SECTOR_SIZE; |
585f8587 FB |
1503 | s->csize_shift = (62 - (s->cluster_bits - 8)); |
1504 | s->csize_mask = (1 << (s->cluster_bits - 8)) - 1; | |
1505 | s->cluster_offset_mask = (1LL << s->csize_shift) - 1; | |
5dab2fad | 1506 | |
585f8587 | 1507 | s->refcount_table_offset = header.refcount_table_offset; |
5fafdf24 | 1508 | s->refcount_table_size = |
585f8587 FB |
1509 | header.refcount_table_clusters << (s->cluster_bits - 3); |
1510 | ||
951053a9 AG |
1511 | if (header.refcount_table_clusters == 0 && !(flags & BDRV_O_CHECK)) { |
1512 | error_setg(errp, "Image does not contain a reference count table"); | |
1513 | ret = -EINVAL; | |
1514 | goto fail; | |
1515 | } | |
1516 | ||
0cf0e598 AG |
1517 | ret = qcow2_validate_table(bs, s->refcount_table_offset, |
1518 | header.refcount_table_clusters, | |
1519 | s->cluster_size, QCOW_MAX_REFTABLE_SIZE, | |
1520 | "Reference count table", errp); | |
8c7de283 | 1521 | if (ret < 0) { |
8c7de283 KW |
1522 | goto fail; |
1523 | } | |
1524 | ||
8bc584fe HR |
1525 | if (!(flags & BDRV_O_CHECK)) { |
1526 | /* | |
1527 | * The total size in bytes of the snapshot table is checked in | |
1528 | * qcow2_read_snapshots() because the size of each snapshot is | |
1529 | * variable and we don't know it yet. | |
1530 | * Here we only check the offset and number of snapshots. | |
1531 | */ | |
1532 | ret = qcow2_validate_table(bs, header.snapshots_offset, | |
1533 | header.nb_snapshots, | |
1534 | sizeof(QCowSnapshotHeader), | |
1535 | sizeof(QCowSnapshotHeader) * | |
1536 | QCOW_MAX_SNAPSHOTS, | |
1537 | "Snapshot table", errp); | |
1538 | if (ret < 0) { | |
1539 | goto fail; | |
1540 | } | |
ce48f2f4 KW |
1541 | } |
1542 | ||
585f8587 | 1543 | /* read the level 1 table */ |
0cf0e598 | 1544 | ret = qcow2_validate_table(bs, header.l1_table_offset, |
02b1ecfa | 1545 | header.l1_size, L1E_SIZE, |
0cf0e598 AG |
1546 | QCOW_MAX_L1_SIZE, "Active L1 table", errp); |
1547 | if (ret < 0) { | |
2d51c32c KW |
1548 | goto fail; |
1549 | } | |
585f8587 | 1550 | s->l1_size = header.l1_size; |
0cf0e598 | 1551 | s->l1_table_offset = header.l1_table_offset; |
2cf7cfa1 KW |
1552 | |
1553 | l1_vm_state_index = size_to_l1(s, header.size); | |
1554 | if (l1_vm_state_index > INT_MAX) { | |
3ef6c40a | 1555 | error_setg(errp, "Image is too big"); |
2cf7cfa1 KW |
1556 | ret = -EFBIG; |
1557 | goto fail; | |
1558 | } | |
1559 | s->l1_vm_state_index = l1_vm_state_index; | |
1560 | ||
585f8587 FB |
1561 | /* the L1 table must contain at least enough entries to put |
1562 | header.size bytes */ | |
6d85a57e | 1563 | if (s->l1_size < s->l1_vm_state_index) { |
3ef6c40a | 1564 | error_setg(errp, "L1 table is too small"); |
6d85a57e | 1565 | ret = -EINVAL; |
585f8587 | 1566 | goto fail; |
6d85a57e | 1567 | } |
2d51c32c | 1568 | |
d191d12d | 1569 | if (s->l1_size > 0) { |
02b1ecfa | 1570 | s->l1_table = qemu_try_blockalign(bs->file->bs, s->l1_size * L1E_SIZE); |
de82815d KW |
1571 | if (s->l1_table == NULL) { |
1572 | error_setg(errp, "Could not allocate L1 table"); | |
1573 | ret = -ENOMEM; | |
1574 | goto fail; | |
1575 | } | |
cf2ab8fc | 1576 | ret = bdrv_pread(bs->file, s->l1_table_offset, s->l1_table, |
02b1ecfa | 1577 | s->l1_size * L1E_SIZE); |
6d85a57e | 1578 | if (ret < 0) { |
3ef6c40a | 1579 | error_setg_errno(errp, -ret, "Could not read L1 table"); |
d191d12d | 1580 | goto fail; |
6d85a57e | 1581 | } |
d191d12d | 1582 | for(i = 0;i < s->l1_size; i++) { |
3b698f52 | 1583 | s->l1_table[i] = be64_to_cpu(s->l1_table[i]); |
d191d12d | 1584 | } |
585f8587 | 1585 | } |
29c1a730 | 1586 | |
94edf3fb KW |
1587 | /* Parse driver-specific options */ |
1588 | ret = qcow2_update_options(bs, options, flags, errp); | |
90efa0ea KW |
1589 | if (ret < 0) { |
1590 | goto fail; | |
1591 | } | |
1592 | ||
06d9260f | 1593 | s->flags = flags; |
3b46e624 | 1594 | |
6d85a57e JS |
1595 | ret = qcow2_refcount_init(bs); |
1596 | if (ret != 0) { | |
3ef6c40a | 1597 | error_setg_errno(errp, -ret, "Could not initialize refcount handling"); |
585f8587 | 1598 | goto fail; |
6d85a57e | 1599 | } |
585f8587 | 1600 | |
72cf2d4f | 1601 | QLIST_INIT(&s->cluster_allocs); |
0b919fae | 1602 | QTAILQ_INIT(&s->discards); |
f214978a | 1603 | |
9b80ddf3 | 1604 | /* read qcow2 extensions */ |
3ef6c40a | 1605 | if (qcow2_read_extensions(bs, header.header_length, ext_end, NULL, |
af175e85 | 1606 | flags, &update_header, errp)) { |
6d85a57e | 1607 | ret = -EINVAL; |
9b80ddf3 | 1608 | goto fail; |
6d85a57e | 1609 | } |
9b80ddf3 | 1610 | |
0e8c08be | 1611 | /* Open external data file */ |
8b1869da HR |
1612 | s->data_file = bdrv_open_child(NULL, options, "data-file", bs, |
1613 | &child_of_bds, BDRV_CHILD_DATA, | |
bc520249 VSO |
1614 | true, errp); |
1615 | if (*errp) { | |
0e8c08be KW |
1616 | ret = -EINVAL; |
1617 | goto fail; | |
1618 | } | |
1619 | ||
1620 | if (s->incompatible_features & QCOW2_INCOMPAT_DATA_FILE) { | |
9b890bdc KW |
1621 | if (!s->data_file && s->image_data_file) { |
1622 | s->data_file = bdrv_open_child(s->image_data_file, options, | |
8b1869da HR |
1623 | "data-file", bs, &child_of_bds, |
1624 | BDRV_CHILD_DATA, false, errp); | |
9b890bdc KW |
1625 | if (!s->data_file) { |
1626 | ret = -EINVAL; | |
1627 | goto fail; | |
1628 | } | |
1629 | } | |
0e8c08be KW |
1630 | if (!s->data_file) { |
1631 | error_setg(errp, "'data-file' is required for this image"); | |
1632 | ret = -EINVAL; | |
1633 | goto fail; | |
1634 | } | |
8b1869da HR |
1635 | |
1636 | /* No data here */ | |
1637 | bs->file->role &= ~BDRV_CHILD_DATA; | |
1638 | ||
1639 | /* Must succeed because we have given up permissions if anything */ | |
1640 | bdrv_child_refresh_perms(bs, bs->file, &error_abort); | |
0e8c08be KW |
1641 | } else { |
1642 | if (s->data_file) { | |
1643 | error_setg(errp, "'data-file' can only be set for images with an " | |
1644 | "external data file"); | |
1645 | ret = -EINVAL; | |
1646 | goto fail; | |
6c3944dc KW |
1647 | } |
1648 | ||
1649 | s->data_file = bs->file; | |
1650 | ||
1651 | if (data_file_is_raw(bs)) { | |
1652 | error_setg(errp, "data-file-raw requires a data file"); | |
1653 | ret = -EINVAL; | |
1654 | goto fail; | |
0e8c08be KW |
1655 | } |
1656 | } | |
93c24936 | 1657 | |
4652b8f3 DB |
1658 | /* qcow2_read_extension may have set up the crypto context |
1659 | * if the crypt method needs a header region, some methods | |
1660 | * don't need header extensions, so must check here | |
1661 | */ | |
1662 | if (s->crypt_method_header && !s->crypto) { | |
1663 | if (s->crypt_method_header == QCOW_CRYPT_AES) { | |
1664 | unsigned int cflags = 0; | |
1665 | if (flags & BDRV_O_NO_IO) { | |
1666 | cflags |= QCRYPTO_BLOCK_OPEN_NO_IO; | |
1667 | } | |
1cd9a787 | 1668 | s->crypto = qcrypto_block_open(s->crypto_opts, "encrypt.", |
8ac0f15f VSO |
1669 | NULL, NULL, cflags, |
1670 | QCOW2_MAX_THREADS, errp); | |
4652b8f3 DB |
1671 | if (!s->crypto) { |
1672 | ret = -EINVAL; | |
1673 | goto fail; | |
1674 | } | |
1675 | } else if (!(flags & BDRV_O_NO_IO)) { | |
1676 | error_setg(errp, "Missing CRYPTO header for crypt method %d", | |
1677 | s->crypt_method_header); | |
b25b387f DB |
1678 | ret = -EINVAL; |
1679 | goto fail; | |
1680 | } | |
1681 | } | |
1682 | ||
585f8587 FB |
1683 | /* read the backing file name */ |
1684 | if (header.backing_file_offset != 0) { | |
1685 | len = header.backing_file_size; | |
9a29e18f | 1686 | if (len > MIN(1023, s->cluster_size - header.backing_file_offset) || |
e729fa6a | 1687 | len >= sizeof(bs->backing_file)) { |
6d33e8e7 KW |
1688 | error_setg(errp, "Backing file name too long"); |
1689 | ret = -EINVAL; | |
1690 | goto fail; | |
6d85a57e | 1691 | } |
cf2ab8fc | 1692 | ret = bdrv_pread(bs->file, header.backing_file_offset, |
998c2019 | 1693 | bs->auto_backing_file, len); |
6d85a57e | 1694 | if (ret < 0) { |
3ef6c40a | 1695 | error_setg_errno(errp, -ret, "Could not read backing file name"); |
585f8587 | 1696 | goto fail; |
6d85a57e | 1697 | } |
998c2019 HR |
1698 | bs->auto_backing_file[len] = '\0'; |
1699 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), | |
1700 | bs->auto_backing_file); | |
1701 | s->image_backing_file = g_strdup(bs->auto_backing_file); | |
585f8587 | 1702 | } |
42deb29f | 1703 | |
8bc584fe HR |
1704 | /* |
1705 | * Internal snapshots; skip reading them in check mode, because | |
1706 | * we do not need them then, and we do not want to abort because | |
1707 | * of a broken table. | |
1708 | */ | |
1709 | if (!(flags & BDRV_O_CHECK)) { | |
1710 | s->snapshots_offset = header.snapshots_offset; | |
1711 | s->nb_snapshots = header.nb_snapshots; | |
11b128f4 | 1712 | |
8bc584fe HR |
1713 | ret = qcow2_read_snapshots(bs, errp); |
1714 | if (ret < 0) { | |
1715 | goto fail; | |
1716 | } | |
6d85a57e | 1717 | } |
585f8587 | 1718 | |
af7b708d | 1719 | /* Clear unknown autoclear feature bits */ |
88ddffae | 1720 | update_header |= s->autoclear_features & ~QCOW2_AUTOCLEAR_MASK; |
d1258dd0 VSO |
1721 | update_header = |
1722 | update_header && !bs->read_only && !(flags & BDRV_O_INACTIVE); | |
1723 | if (update_header) { | |
88ddffae | 1724 | s->autoclear_features &= QCOW2_AUTOCLEAR_MASK; |
d1258dd0 VSO |
1725 | } |
1726 | ||
9c98f145 VSO |
1727 | /* == Handle persistent dirty bitmaps == |
1728 | * | |
1729 | * We want load dirty bitmaps in three cases: | |
1730 | * | |
1731 | * 1. Normal open of the disk in active mode, not related to invalidation | |
1732 | * after migration. | |
1733 | * | |
1734 | * 2. Invalidation of the target vm after pre-copy phase of migration, if | |
1735 | * bitmaps are _not_ migrating through migration channel, i.e. | |
1736 | * 'dirty-bitmaps' capability is disabled. | |
1737 | * | |
1738 | * 3. Invalidation of source vm after failed or canceled migration. | |
1739 | * This is a very interesting case. There are two possible types of | |
1740 | * bitmaps: | |
1741 | * | |
1742 | * A. Stored on inactivation and removed. They should be loaded from the | |
1743 | * image. | |
1744 | * | |
1745 | * B. Not stored: not-persistent bitmaps and bitmaps, migrated through | |
1746 | * the migration channel (with dirty-bitmaps capability). | |
1747 | * | |
1748 | * On the other hand, there are two possible sub-cases: | |
1749 | * | |
1750 | * 3.1 disk was changed by somebody else while were inactive. In this | |
1751 | * case all in-RAM dirty bitmaps (both persistent and not) are | |
1752 | * definitely invalid. And we don't have any method to determine | |
1753 | * this. | |
1754 | * | |
1755 | * Simple and safe thing is to just drop all the bitmaps of type B on | |
1756 | * inactivation. But in this case we lose bitmaps in valid 4.2 case. | |
1757 | * | |
1758 | * On the other hand, resuming source vm, if disk was already changed | |
1759 | * is a bad thing anyway: not only bitmaps, the whole vm state is | |
1760 | * out of sync with disk. | |
1761 | * | |
1762 | * This means, that user or management tool, who for some reason | |
1763 | * decided to resume source vm, after disk was already changed by | |
1764 | * target vm, should at least drop all dirty bitmaps by hand. | |
1765 | * | |
1766 | * So, we can ignore this case for now, but TODO: "generation" | |
1767 | * extension for qcow2, to determine, that image was changed after | |
1768 | * last inactivation. And if it is changed, we will drop (or at least | |
1769 | * mark as 'invalid' all the bitmaps of type B, both persistent | |
1770 | * and not). | |
1771 | * | |
1772 | * 3.2 disk was _not_ changed while were inactive. Bitmaps may be saved | |
1773 | * to disk ('dirty-bitmaps' capability disabled), or not saved | |
1774 | * ('dirty-bitmaps' capability enabled), but we don't need to care | |
1775 | * of: let's load bitmaps as always: stored bitmaps will be loaded, | |
1776 | * and not stored has flag IN_USE=1 in the image and will be skipped | |
1777 | * on loading. | |
1778 | * | |
1779 | * One remaining possible case when we don't want load bitmaps: | |
1780 | * | |
1781 | * 4. Open disk in inactive mode in target vm (bitmaps are migrating or | |
1782 | * will be loaded on invalidation, no needs try loading them before) | |
1783 | */ | |
1784 | ||
1785 | if (!(bdrv_get_flags(bs) & BDRV_O_INACTIVE)) { | |
1786 | /* It's case 1, 2 or 3.2. Or 3.1 which is BUG in management layer. */ | |
0c1e9d2a VSO |
1787 | bool header_updated; |
1788 | if (!qcow2_load_dirty_bitmaps(bs, &header_updated, errp)) { | |
66be5c3e T |
1789 | ret = -EINVAL; |
1790 | goto fail; | |
1791 | } | |
9c98f145 VSO |
1792 | |
1793 | update_header = update_header && !header_updated; | |
d1258dd0 | 1794 | } |
d1258dd0 VSO |
1795 | |
1796 | if (update_header) { | |
af7b708d SH |
1797 | ret = qcow2_update_header(bs); |
1798 | if (ret < 0) { | |
3ef6c40a | 1799 | error_setg_errno(errp, -ret, "Could not update qcow2 header"); |
af7b708d SH |
1800 | goto fail; |
1801 | } | |
1802 | } | |
1803 | ||
3b650816 KW |
1804 | bs->supported_zero_flags = header.version >= 3 ? |
1805 | BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK : 0; | |
f01643fb | 1806 | bs->supported_truncate_flags = BDRV_REQ_ZERO_WRITE; |
68d100e9 | 1807 | |
c61d0004 | 1808 | /* Repair image if dirty */ |
04c01a5c | 1809 | if (!(flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) && !bs->read_only && |
058f8f16 | 1810 | (s->incompatible_features & QCOW2_INCOMPAT_DIRTY)) { |
c61d0004 SH |
1811 | BdrvCheckResult result = {0}; |
1812 | ||
2fd61638 PB |
1813 | ret = qcow2_co_check_locked(bs, &result, |
1814 | BDRV_FIX_ERRORS | BDRV_FIX_LEAKS); | |
791fff50 HR |
1815 | if (ret < 0 || result.check_errors) { |
1816 | if (ret >= 0) { | |
1817 | ret = -EIO; | |
1818 | } | |
3ef6c40a | 1819 | error_setg_errno(errp, -ret, "Could not repair dirty image"); |
c61d0004 SH |
1820 | goto fail; |
1821 | } | |
1822 | } | |
1823 | ||
585f8587 | 1824 | #ifdef DEBUG_ALLOC |
6cbc3031 PH |
1825 | { |
1826 | BdrvCheckResult result = {0}; | |
b35278f7 | 1827 | qcow2_check_refcounts(bs, &result, 0); |
6cbc3031 | 1828 | } |
585f8587 | 1829 | #endif |
ceb029cd | 1830 | |
6f13a316 | 1831 | qemu_co_queue_init(&s->thread_task_queue); |
ceb029cd | 1832 | |
6d85a57e | 1833 | return ret; |
585f8587 FB |
1834 | |
1835 | fail: | |
9b890bdc | 1836 | g_free(s->image_data_file); |
0e8c08be KW |
1837 | if (has_data_file(bs)) { |
1838 | bdrv_unref_child(bs, s->data_file); | |
808cf3cb | 1839 | s->data_file = NULL; |
0e8c08be | 1840 | } |
6744cbab | 1841 | g_free(s->unknown_header_fields); |
75bab85c | 1842 | cleanup_unknown_header_ext(bs); |
ed6ccf0f KW |
1843 | qcow2_free_snapshots(bs); |
1844 | qcow2_refcount_close(bs); | |
de82815d | 1845 | qemu_vfree(s->l1_table); |
cf93980e HR |
1846 | /* else pre-write overlap checks in cache_destroy may crash */ |
1847 | s->l1_table = NULL; | |
279621c0 | 1848 | cache_clean_timer_del(bs); |
29c1a730 | 1849 | if (s->l2_table_cache) { |
e64d4072 | 1850 | qcow2_cache_destroy(s->l2_table_cache); |
29c1a730 | 1851 | } |
c5a33ee9 | 1852 | if (s->refcount_block_cache) { |
e64d4072 | 1853 | qcow2_cache_destroy(s->refcount_block_cache); |
c5a33ee9 | 1854 | } |
b25b387f DB |
1855 | qcrypto_block_free(s->crypto); |
1856 | qapi_free_QCryptoBlockOpenOptions(s->crypto_opts); | |
6d85a57e | 1857 | return ret; |
585f8587 FB |
1858 | } |
1859 | ||
1fafcd93 PB |
1860 | typedef struct QCow2OpenCo { |
1861 | BlockDriverState *bs; | |
1862 | QDict *options; | |
1863 | int flags; | |
1864 | Error **errp; | |
1865 | int ret; | |
1866 | } QCow2OpenCo; | |
1867 | ||
1868 | static void coroutine_fn qcow2_open_entry(void *opaque) | |
1869 | { | |
1870 | QCow2OpenCo *qoc = opaque; | |
1871 | BDRVQcow2State *s = qoc->bs->opaque; | |
1872 | ||
1873 | qemu_co_mutex_lock(&s->lock); | |
1874 | qoc->ret = qcow2_do_open(qoc->bs, qoc->options, qoc->flags, qoc->errp); | |
1875 | qemu_co_mutex_unlock(&s->lock); | |
1876 | } | |
1877 | ||
4e4bf5c4 KW |
1878 | static int qcow2_open(BlockDriverState *bs, QDict *options, int flags, |
1879 | Error **errp) | |
1880 | { | |
1fafcd93 PB |
1881 | BDRVQcow2State *s = bs->opaque; |
1882 | QCow2OpenCo qoc = { | |
1883 | .bs = bs, | |
1884 | .options = options, | |
1885 | .flags = flags, | |
1886 | .errp = errp, | |
1887 | .ret = -EINPROGRESS | |
1888 | }; | |
1889 | ||
8b1869da HR |
1890 | bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds, |
1891 | BDRV_CHILD_IMAGE, false, errp); | |
4e4bf5c4 KW |
1892 | if (!bs->file) { |
1893 | return -EINVAL; | |
1894 | } | |
1895 | ||
1fafcd93 PB |
1896 | /* Initialise locks */ |
1897 | qemu_co_mutex_init(&s->lock); | |
1898 | ||
1899 | if (qemu_in_coroutine()) { | |
1900 | /* From bdrv_co_create. */ | |
1901 | qcow2_open_entry(&qoc); | |
1902 | } else { | |
4720cbee | 1903 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); |
1fafcd93 PB |
1904 | qemu_coroutine_enter(qemu_coroutine_create(qcow2_open_entry, &qoc)); |
1905 | BDRV_POLL_WHILE(bs, qoc.ret == -EINPROGRESS); | |
1906 | } | |
1907 | return qoc.ret; | |
4e4bf5c4 KW |
1908 | } |
1909 | ||
3baca891 | 1910 | static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp) |
d34682cd | 1911 | { |
ff99129a | 1912 | BDRVQcow2State *s = bs->opaque; |
d34682cd | 1913 | |
a84178cc EB |
1914 | if (bs->encrypted) { |
1915 | /* Encryption works on a sector granularity */ | |
6f8f015c | 1916 | bs->bl.request_alignment = qcrypto_block_get_sector_size(s->crypto); |
a84178cc | 1917 | } |
a6841a2d | 1918 | bs->bl.pwrite_zeroes_alignment = s->subcluster_size; |
ecdbead6 | 1919 | bs->bl.pdiscard_alignment = s->cluster_size; |
d34682cd KW |
1920 | } |
1921 | ||
21d82ac9 JC |
1922 | static int qcow2_reopen_prepare(BDRVReopenState *state, |
1923 | BlockReopenQueue *queue, Error **errp) | |
1924 | { | |
5b0959a7 | 1925 | Qcow2ReopenState *r; |
4c2e5f8f KW |
1926 | int ret; |
1927 | ||
5b0959a7 KW |
1928 | r = g_new0(Qcow2ReopenState, 1); |
1929 | state->opaque = r; | |
1930 | ||
1931 | ret = qcow2_update_options_prepare(state->bs, r, state->options, | |
1932 | state->flags, errp); | |
1933 | if (ret < 0) { | |
1934 | goto fail; | |
1935 | } | |
1936 | ||
1937 | /* We need to write out any unwritten data if we reopen read-only. */ | |
4c2e5f8f | 1938 | if ((state->flags & BDRV_O_RDWR) == 0) { |
169b8793 VSO |
1939 | ret = qcow2_reopen_bitmaps_ro(state->bs, errp); |
1940 | if (ret < 0) { | |
1941 | goto fail; | |
1942 | } | |
1943 | ||
4c2e5f8f KW |
1944 | ret = bdrv_flush(state->bs); |
1945 | if (ret < 0) { | |
5b0959a7 | 1946 | goto fail; |
4c2e5f8f KW |
1947 | } |
1948 | ||
1949 | ret = qcow2_mark_clean(state->bs); | |
1950 | if (ret < 0) { | |
5b0959a7 | 1951 | goto fail; |
4c2e5f8f KW |
1952 | } |
1953 | } | |
1954 | ||
21d82ac9 | 1955 | return 0; |
5b0959a7 KW |
1956 | |
1957 | fail: | |
1958 | qcow2_update_options_abort(state->bs, r); | |
1959 | g_free(r); | |
1960 | return ret; | |
1961 | } | |
1962 | ||
1963 | static void qcow2_reopen_commit(BDRVReopenState *state) | |
1964 | { | |
1965 | qcow2_update_options_commit(state->bs, state->opaque); | |
65eb7c85 PK |
1966 | g_free(state->opaque); |
1967 | } | |
1968 | ||
1969 | static void qcow2_reopen_commit_post(BDRVReopenState *state) | |
1970 | { | |
4dd09f62 VSO |
1971 | if (state->flags & BDRV_O_RDWR) { |
1972 | Error *local_err = NULL; | |
1973 | ||
1974 | if (qcow2_reopen_bitmaps_rw(state->bs, &local_err) < 0) { | |
1975 | /* | |
1976 | * This is not fatal, bitmaps just left read-only, so all following | |
1977 | * writes will fail. User can remove read-only bitmaps to unblock | |
1978 | * writes or retry reopen. | |
1979 | */ | |
1980 | error_reportf_err(local_err, | |
1981 | "%s: Failed to make dirty bitmaps writable: ", | |
1982 | bdrv_get_node_name(state->bs)); | |
1983 | } | |
1984 | } | |
5b0959a7 KW |
1985 | } |
1986 | ||
1987 | static void qcow2_reopen_abort(BDRVReopenState *state) | |
1988 | { | |
1989 | qcow2_update_options_abort(state->bs, state->opaque); | |
1990 | g_free(state->opaque); | |
21d82ac9 JC |
1991 | } |
1992 | ||
5365f44d KW |
1993 | static void qcow2_join_options(QDict *options, QDict *old_options) |
1994 | { | |
1995 | bool has_new_overlap_template = | |
1996 | qdict_haskey(options, QCOW2_OPT_OVERLAP) || | |
1997 | qdict_haskey(options, QCOW2_OPT_OVERLAP_TEMPLATE); | |
1998 | bool has_new_total_cache_size = | |
1999 | qdict_haskey(options, QCOW2_OPT_CACHE_SIZE); | |
2000 | bool has_all_cache_options; | |
2001 | ||
2002 | /* New overlap template overrides all old overlap options */ | |
2003 | if (has_new_overlap_template) { | |
2004 | qdict_del(old_options, QCOW2_OPT_OVERLAP); | |
2005 | qdict_del(old_options, QCOW2_OPT_OVERLAP_TEMPLATE); | |
2006 | qdict_del(old_options, QCOW2_OPT_OVERLAP_MAIN_HEADER); | |
2007 | qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L1); | |
2008 | qdict_del(old_options, QCOW2_OPT_OVERLAP_ACTIVE_L2); | |
2009 | qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_TABLE); | |
2010 | qdict_del(old_options, QCOW2_OPT_OVERLAP_REFCOUNT_BLOCK); | |
2011 | qdict_del(old_options, QCOW2_OPT_OVERLAP_SNAPSHOT_TABLE); | |
2012 | qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L1); | |
2013 | qdict_del(old_options, QCOW2_OPT_OVERLAP_INACTIVE_L2); | |
2014 | } | |
2015 | ||
2016 | /* New total cache size overrides all old options */ | |
2017 | if (qdict_haskey(options, QCOW2_OPT_CACHE_SIZE)) { | |
2018 | qdict_del(old_options, QCOW2_OPT_L2_CACHE_SIZE); | |
2019 | qdict_del(old_options, QCOW2_OPT_REFCOUNT_CACHE_SIZE); | |
2020 | } | |
2021 | ||
2022 | qdict_join(options, old_options, false); | |
2023 | ||
2024 | /* | |
2025 | * If after merging all cache size options are set, an old total size is | |
2026 | * overwritten. Do keep all options, however, if all three are new. The | |
2027 | * resulting error message is what we want to happen. | |
2028 | */ | |
2029 | has_all_cache_options = | |
2030 | qdict_haskey(options, QCOW2_OPT_CACHE_SIZE) || | |
2031 | qdict_haskey(options, QCOW2_OPT_L2_CACHE_SIZE) || | |
2032 | qdict_haskey(options, QCOW2_OPT_REFCOUNT_CACHE_SIZE); | |
2033 | ||
2034 | if (has_all_cache_options && !has_new_total_cache_size) { | |
2035 | qdict_del(options, QCOW2_OPT_CACHE_SIZE); | |
2036 | } | |
2037 | } | |
2038 | ||
a320fb04 EB |
2039 | static int coroutine_fn qcow2_co_block_status(BlockDriverState *bs, |
2040 | bool want_zero, | |
2041 | int64_t offset, int64_t count, | |
2042 | int64_t *pnum, int64_t *map, | |
2043 | BlockDriverState **file) | |
585f8587 | 2044 | { |
ff99129a | 2045 | BDRVQcow2State *s = bs->opaque; |
388e5816 | 2046 | uint64_t host_offset; |
ecfe1863 | 2047 | unsigned int bytes; |
10dabdc5 | 2048 | QCow2SubclusterType type; |
74e60fb5 | 2049 | int ret, status = 0; |
585f8587 | 2050 | |
5e978550 KW |
2051 | qemu_co_mutex_lock(&s->lock); |
2052 | ||
69f47505 VSO |
2053 | if (!s->metadata_preallocation_checked) { |
2054 | ret = qcow2_detect_metadata_preallocation(bs); | |
2055 | s->metadata_preallocation = (ret == 1); | |
2056 | s->metadata_preallocation_checked = true; | |
2057 | } | |
2058 | ||
a320fb04 | 2059 | bytes = MIN(INT_MAX, count); |
ca4a0bb8 | 2060 | ret = qcow2_get_host_offset(bs, offset, &bytes, &host_offset, &type); |
f8a2e5e3 | 2061 | qemu_co_mutex_unlock(&s->lock); |
1c46efaa | 2062 | if (ret < 0) { |
d663640c | 2063 | return ret; |
1c46efaa | 2064 | } |
095a9c58 | 2065 | |
a320fb04 | 2066 | *pnum = bytes; |
ecfe1863 | 2067 | |
10dabdc5 | 2068 | if ((type == QCOW2_SUBCLUSTER_NORMAL || |
97490a14 AG |
2069 | type == QCOW2_SUBCLUSTER_ZERO_ALLOC || |
2070 | type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) && !s->crypto) { | |
388e5816 | 2071 | *map = host_offset; |
37be1403 | 2072 | *file = s->data_file->bs; |
a320fb04 | 2073 | status |= BDRV_BLOCK_OFFSET_VALID; |
4bc74be9 | 2074 | } |
10dabdc5 AG |
2075 | if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN || |
2076 | type == QCOW2_SUBCLUSTER_ZERO_ALLOC) { | |
4bc74be9 | 2077 | status |= BDRV_BLOCK_ZERO; |
97490a14 AG |
2078 | } else if (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && |
2079 | type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC) { | |
4bc74be9 PB |
2080 | status |= BDRV_BLOCK_DATA; |
2081 | } | |
69f47505 VSO |
2082 | if (s->metadata_preallocation && (status & BDRV_BLOCK_DATA) && |
2083 | (status & BDRV_BLOCK_OFFSET_VALID)) | |
2084 | { | |
2085 | status |= BDRV_BLOCK_RECURSE; | |
2086 | } | |
4bc74be9 | 2087 | return status; |
585f8587 FB |
2088 | } |
2089 | ||
fd9fcd37 FZ |
2090 | static coroutine_fn int qcow2_handle_l2meta(BlockDriverState *bs, |
2091 | QCowL2Meta **pl2meta, | |
2092 | bool link_l2) | |
2093 | { | |
2094 | int ret = 0; | |
2095 | QCowL2Meta *l2meta = *pl2meta; | |
2096 | ||
2097 | while (l2meta != NULL) { | |
2098 | QCowL2Meta *next; | |
2099 | ||
354d930d | 2100 | if (link_l2) { |
fd9fcd37 FZ |
2101 | ret = qcow2_alloc_cluster_link_l2(bs, l2meta); |
2102 | if (ret) { | |
2103 | goto out; | |
2104 | } | |
8b24cd14 KW |
2105 | } else { |
2106 | qcow2_alloc_cluster_abort(bs, l2meta); | |
fd9fcd37 FZ |
2107 | } |
2108 | ||
2109 | /* Take the request off the list of running requests */ | |
f7bd5bba | 2110 | QLIST_REMOVE(l2meta, next_in_flight); |
fd9fcd37 FZ |
2111 | |
2112 | qemu_co_queue_restart_all(&l2meta->dependent_requests); | |
2113 | ||
2114 | next = l2meta->next; | |
2115 | g_free(l2meta); | |
2116 | l2meta = next; | |
2117 | } | |
2118 | out: | |
2119 | *pl2meta = l2meta; | |
2120 | return ret; | |
2121 | } | |
2122 | ||
88f468e5 VSO |
2123 | static coroutine_fn int |
2124 | qcow2_co_preadv_encrypted(BlockDriverState *bs, | |
9c4269d5 | 2125 | uint64_t host_offset, |
88f468e5 VSO |
2126 | uint64_t offset, |
2127 | uint64_t bytes, | |
2128 | QEMUIOVector *qiov, | |
2129 | uint64_t qiov_offset) | |
2130 | { | |
2131 | int ret; | |
2132 | BDRVQcow2State *s = bs->opaque; | |
2133 | uint8_t *buf; | |
2134 | ||
2135 | assert(bs->encrypted && s->crypto); | |
2136 | assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size); | |
2137 | ||
2138 | /* | |
2139 | * For encrypted images, read everything into a temporary | |
2140 | * contiguous buffer on which the AES functions can work. | |
2141 | * Also, decryption in a separate buffer is better as it | |
2142 | * prevents the guest from learning information about the | |
2143 | * encrypted nature of the virtual disk. | |
2144 | */ | |
2145 | ||
2146 | buf = qemu_try_blockalign(s->data_file->bs, bytes); | |
2147 | if (buf == NULL) { | |
2148 | return -ENOMEM; | |
2149 | } | |
2150 | ||
2151 | BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO); | |
9c4269d5 | 2152 | ret = bdrv_co_pread(s->data_file, host_offset, bytes, buf, 0); |
88f468e5 VSO |
2153 | if (ret < 0) { |
2154 | goto fail; | |
2155 | } | |
2156 | ||
9c4269d5 | 2157 | if (qcow2_co_decrypt(bs, host_offset, offset, buf, bytes) < 0) |
88f468e5 VSO |
2158 | { |
2159 | ret = -EIO; | |
2160 | goto fail; | |
2161 | } | |
2162 | qemu_iovec_from_buf(qiov, qiov_offset, buf, bytes); | |
2163 | ||
2164 | fail: | |
2165 | qemu_vfree(buf); | |
2166 | ||
2167 | return ret; | |
2168 | } | |
2169 | ||
d710cf57 VSO |
2170 | typedef struct Qcow2AioTask { |
2171 | AioTask task; | |
2172 | ||
2173 | BlockDriverState *bs; | |
10dabdc5 | 2174 | QCow2SubclusterType subcluster_type; /* only for read */ |
9c4269d5 | 2175 | uint64_t host_offset; /* or full descriptor in compressed clusters */ |
d710cf57 VSO |
2176 | uint64_t offset; |
2177 | uint64_t bytes; | |
2178 | QEMUIOVector *qiov; | |
2179 | uint64_t qiov_offset; | |
2180 | QCowL2Meta *l2meta; /* only for write */ | |
2181 | } Qcow2AioTask; | |
2182 | ||
2183 | static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task); | |
2184 | static coroutine_fn int qcow2_add_task(BlockDriverState *bs, | |
2185 | AioTaskPool *pool, | |
2186 | AioTaskFunc func, | |
10dabdc5 | 2187 | QCow2SubclusterType subcluster_type, |
9c4269d5 | 2188 | uint64_t host_offset, |
d710cf57 VSO |
2189 | uint64_t offset, |
2190 | uint64_t bytes, | |
2191 | QEMUIOVector *qiov, | |
2192 | size_t qiov_offset, | |
2193 | QCowL2Meta *l2meta) | |
2194 | { | |
2195 | Qcow2AioTask local_task; | |
2196 | Qcow2AioTask *task = pool ? g_new(Qcow2AioTask, 1) : &local_task; | |
2197 | ||
2198 | *task = (Qcow2AioTask) { | |
2199 | .task.func = func, | |
2200 | .bs = bs, | |
10dabdc5 | 2201 | .subcluster_type = subcluster_type, |
d710cf57 | 2202 | .qiov = qiov, |
9c4269d5 | 2203 | .host_offset = host_offset, |
d710cf57 VSO |
2204 | .offset = offset, |
2205 | .bytes = bytes, | |
2206 | .qiov_offset = qiov_offset, | |
2207 | .l2meta = l2meta, | |
2208 | }; | |
2209 | ||
2210 | trace_qcow2_add_task(qemu_coroutine_self(), bs, pool, | |
2211 | func == qcow2_co_preadv_task_entry ? "read" : "write", | |
10dabdc5 | 2212 | subcluster_type, host_offset, offset, bytes, |
d710cf57 VSO |
2213 | qiov, qiov_offset); |
2214 | ||
2215 | if (!pool) { | |
2216 | return func(&task->task); | |
2217 | } | |
2218 | ||
2219 | aio_task_pool_start_task(pool, &task->task); | |
2220 | ||
2221 | return 0; | |
2222 | } | |
2223 | ||
88f468e5 | 2224 | static coroutine_fn int qcow2_co_preadv_task(BlockDriverState *bs, |
10dabdc5 | 2225 | QCow2SubclusterType subc_type, |
9c4269d5 | 2226 | uint64_t host_offset, |
88f468e5 VSO |
2227 | uint64_t offset, uint64_t bytes, |
2228 | QEMUIOVector *qiov, | |
2229 | size_t qiov_offset) | |
2230 | { | |
2231 | BDRVQcow2State *s = bs->opaque; | |
88f468e5 | 2232 | |
10dabdc5 AG |
2233 | switch (subc_type) { |
2234 | case QCOW2_SUBCLUSTER_ZERO_PLAIN: | |
2235 | case QCOW2_SUBCLUSTER_ZERO_ALLOC: | |
88f468e5 VSO |
2236 | /* Both zero types are handled in qcow2_co_preadv_part */ |
2237 | g_assert_not_reached(); | |
2238 | ||
10dabdc5 | 2239 | case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN: |
97490a14 | 2240 | case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC: |
88f468e5 VSO |
2241 | assert(bs->backing); /* otherwise handled in qcow2_co_preadv_part */ |
2242 | ||
2243 | BLKDBG_EVENT(bs->file, BLKDBG_READ_BACKING_AIO); | |
2244 | return bdrv_co_preadv_part(bs->backing, offset, bytes, | |
2245 | qiov, qiov_offset, 0); | |
2246 | ||
10dabdc5 | 2247 | case QCOW2_SUBCLUSTER_COMPRESSED: |
9c4269d5 | 2248 | return qcow2_co_preadv_compressed(bs, host_offset, |
88f468e5 VSO |
2249 | offset, bytes, qiov, qiov_offset); |
2250 | ||
10dabdc5 | 2251 | case QCOW2_SUBCLUSTER_NORMAL: |
88f468e5 | 2252 | if (bs->encrypted) { |
9c4269d5 | 2253 | return qcow2_co_preadv_encrypted(bs, host_offset, |
88f468e5 VSO |
2254 | offset, bytes, qiov, qiov_offset); |
2255 | } | |
2256 | ||
2257 | BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO); | |
9c4269d5 | 2258 | return bdrv_co_preadv_part(s->data_file, host_offset, |
88f468e5 VSO |
2259 | bytes, qiov, qiov_offset, 0); |
2260 | ||
2261 | default: | |
2262 | g_assert_not_reached(); | |
2263 | } | |
2264 | ||
2265 | g_assert_not_reached(); | |
2266 | } | |
2267 | ||
d710cf57 VSO |
2268 | static coroutine_fn int qcow2_co_preadv_task_entry(AioTask *task) |
2269 | { | |
2270 | Qcow2AioTask *t = container_of(task, Qcow2AioTask, task); | |
2271 | ||
2272 | assert(!t->l2meta); | |
2273 | ||
10dabdc5 AG |
2274 | return qcow2_co_preadv_task(t->bs, t->subcluster_type, |
2275 | t->host_offset, t->offset, t->bytes, | |
2276 | t->qiov, t->qiov_offset); | |
d710cf57 VSO |
2277 | } |
2278 | ||
df893d25 VSO |
2279 | static coroutine_fn int qcow2_co_preadv_part(BlockDriverState *bs, |
2280 | uint64_t offset, uint64_t bytes, | |
2281 | QEMUIOVector *qiov, | |
2282 | size_t qiov_offset, int flags) | |
585f8587 | 2283 | { |
ff99129a | 2284 | BDRVQcow2State *s = bs->opaque; |
d710cf57 | 2285 | int ret = 0; |
ecfe1863 | 2286 | unsigned int cur_bytes; /* number of bytes in current iteration */ |
388e5816 | 2287 | uint64_t host_offset = 0; |
10dabdc5 | 2288 | QCow2SubclusterType type; |
d710cf57 | 2289 | AioTaskPool *aio = NULL; |
585f8587 | 2290 | |
d710cf57 | 2291 | while (bytes != 0 && aio_task_pool_status(aio) == 0) { |
5ebaa27e | 2292 | /* prepare next request */ |
ecfe1863 | 2293 | cur_bytes = MIN(bytes, INT_MAX); |
b25b387f | 2294 | if (s->crypto) { |
ecfe1863 KW |
2295 | cur_bytes = MIN(cur_bytes, |
2296 | QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size); | |
585f8587 | 2297 | } |
5ebaa27e | 2298 | |
f24196d3 | 2299 | qemu_co_mutex_lock(&s->lock); |
ca4a0bb8 AG |
2300 | ret = qcow2_get_host_offset(bs, offset, &cur_bytes, |
2301 | &host_offset, &type); | |
f24196d3 | 2302 | qemu_co_mutex_unlock(&s->lock); |
8af36488 | 2303 | if (ret < 0) { |
d710cf57 | 2304 | goto out; |
8af36488 | 2305 | } |
bd28f835 | 2306 | |
10dabdc5 AG |
2307 | if (type == QCOW2_SUBCLUSTER_ZERO_PLAIN || |
2308 | type == QCOW2_SUBCLUSTER_ZERO_ALLOC || | |
97490a14 AG |
2309 | (type == QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && !bs->backing) || |
2310 | (type == QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC && !bs->backing)) | |
88f468e5 | 2311 | { |
df893d25 | 2312 | qemu_iovec_memset(qiov, qiov_offset, 0, cur_bytes); |
88f468e5 | 2313 | } else { |
d710cf57 VSO |
2314 | if (!aio && cur_bytes != bytes) { |
2315 | aio = aio_task_pool_new(QCOW2_MAX_WORKERS); | |
2316 | } | |
ca4a0bb8 | 2317 | ret = qcow2_add_task(bs, aio, qcow2_co_preadv_task_entry, type, |
9c4269d5 | 2318 | host_offset, offset, cur_bytes, |
d710cf57 | 2319 | qiov, qiov_offset, NULL); |
5ebaa27e | 2320 | if (ret < 0) { |
d710cf57 | 2321 | goto out; |
5ebaa27e | 2322 | } |
faf575c1 | 2323 | } |
f141eafe | 2324 | |
ecfe1863 KW |
2325 | bytes -= cur_bytes; |
2326 | offset += cur_bytes; | |
df893d25 | 2327 | qiov_offset += cur_bytes; |
5ebaa27e | 2328 | } |
68d100e9 | 2329 | |
d710cf57 VSO |
2330 | out: |
2331 | if (aio) { | |
2332 | aio_task_pool_wait_all(aio); | |
2333 | if (ret == 0) { | |
2334 | ret = aio_task_pool_status(aio); | |
2335 | } | |
2336 | g_free(aio); | |
2337 | } | |
2338 | ||
2339 | return ret; | |
585f8587 FB |
2340 | } |
2341 | ||
ee22a9d8 AG |
2342 | /* Check if it's possible to merge a write request with the writing of |
2343 | * the data from the COW regions */ | |
2344 | static bool merge_cow(uint64_t offset, unsigned bytes, | |
5396234b VSO |
2345 | QEMUIOVector *qiov, size_t qiov_offset, |
2346 | QCowL2Meta *l2meta) | |
ee22a9d8 AG |
2347 | { |
2348 | QCowL2Meta *m; | |
2349 | ||
2350 | for (m = l2meta; m != NULL; m = m->next) { | |
2351 | /* If both COW regions are empty then there's nothing to merge */ | |
2352 | if (m->cow_start.nb_bytes == 0 && m->cow_end.nb_bytes == 0) { | |
2353 | continue; | |
2354 | } | |
2355 | ||
c8bb23cb AN |
2356 | /* If COW regions are handled already, skip this too */ |
2357 | if (m->skip_cow) { | |
2358 | continue; | |
2359 | } | |
2360 | ||
3441ad4b AG |
2361 | /* |
2362 | * The write request should start immediately after the first | |
2363 | * COW region. This does not always happen because the area | |
2364 | * touched by the request can be larger than the one defined | |
2365 | * by @m (a single request can span an area consisting of a | |
2366 | * mix of previously unallocated and allocated clusters, that | |
2367 | * is why @l2meta is a list). | |
2368 | */ | |
ee22a9d8 | 2369 | if (l2meta_cow_start(m) + m->cow_start.nb_bytes != offset) { |
3441ad4b AG |
2370 | /* In this case the request starts before this region */ |
2371 | assert(offset < l2meta_cow_start(m)); | |
2372 | assert(m->cow_start.nb_bytes == 0); | |
ee22a9d8 AG |
2373 | continue; |
2374 | } | |
2375 | ||
3441ad4b AG |
2376 | /* The write request should end immediately before the second |
2377 | * COW region (see above for why it does not always happen) */ | |
ee22a9d8 | 2378 | if (m->offset + m->cow_end.offset != offset + bytes) { |
3441ad4b AG |
2379 | assert(offset + bytes > m->offset + m->cow_end.offset); |
2380 | assert(m->cow_end.nb_bytes == 0); | |
ee22a9d8 AG |
2381 | continue; |
2382 | } | |
2383 | ||
2384 | /* Make sure that adding both COW regions to the QEMUIOVector | |
2385 | * does not exceed IOV_MAX */ | |
5396234b | 2386 | if (qemu_iovec_subvec_niov(qiov, qiov_offset, bytes) > IOV_MAX - 2) { |
ee22a9d8 AG |
2387 | continue; |
2388 | } | |
2389 | ||
5396234b VSO |
2390 | m->data_qiov = qiov; |
2391 | m->data_qiov_offset = qiov_offset; | |
ee22a9d8 AG |
2392 | return true; |
2393 | } | |
2394 | ||
2395 | return false; | |
2396 | } | |
2397 | ||
46cd1e8a AG |
2398 | /* |
2399 | * Return 1 if the COW regions read as zeroes, 0 if not, < 0 on error. | |
2400 | * Note that returning 0 does not guarantee non-zero data. | |
2401 | */ | |
2402 | static int is_zero_cow(BlockDriverState *bs, QCowL2Meta *m) | |
c8bb23cb AN |
2403 | { |
2404 | /* | |
2405 | * This check is designed for optimization shortcut so it must be | |
2406 | * efficient. | |
46cd1e8a AG |
2407 | * Instead of is_zero(), use bdrv_co_is_zero_fast() as it is |
2408 | * faster (but not as accurate and can result in false negatives). | |
c8bb23cb | 2409 | */ |
46cd1e8a AG |
2410 | int ret = bdrv_co_is_zero_fast(bs, m->offset + m->cow_start.offset, |
2411 | m->cow_start.nb_bytes); | |
2412 | if (ret <= 0) { | |
2413 | return ret; | |
2414 | } | |
2415 | ||
2416 | return bdrv_co_is_zero_fast(bs, m->offset + m->cow_end.offset, | |
2417 | m->cow_end.nb_bytes); | |
c8bb23cb AN |
2418 | } |
2419 | ||
2420 | static int handle_alloc_space(BlockDriverState *bs, QCowL2Meta *l2meta) | |
2421 | { | |
2422 | BDRVQcow2State *s = bs->opaque; | |
2423 | QCowL2Meta *m; | |
2424 | ||
2425 | if (!(s->data_file->bs->supported_zero_flags & BDRV_REQ_NO_FALLBACK)) { | |
2426 | return 0; | |
2427 | } | |
2428 | ||
2429 | if (bs->encrypted) { | |
2430 | return 0; | |
2431 | } | |
2432 | ||
2433 | for (m = l2meta; m != NULL; m = m->next) { | |
2434 | int ret; | |
bf4a66ee AG |
2435 | uint64_t start_offset = m->alloc_offset + m->cow_start.offset; |
2436 | unsigned nb_bytes = m->cow_end.offset + m->cow_end.nb_bytes - | |
2437 | m->cow_start.offset; | |
c8bb23cb AN |
2438 | |
2439 | if (!m->cow_start.nb_bytes && !m->cow_end.nb_bytes) { | |
2440 | continue; | |
2441 | } | |
2442 | ||
46cd1e8a AG |
2443 | ret = is_zero_cow(bs, m); |
2444 | if (ret < 0) { | |
2445 | return ret; | |
2446 | } else if (ret == 0) { | |
c8bb23cb AN |
2447 | continue; |
2448 | } | |
2449 | ||
2450 | /* | |
2451 | * instead of writing zero COW buffers, | |
2452 | * efficiently zero out the whole clusters | |
2453 | */ | |
2454 | ||
bf4a66ee | 2455 | ret = qcow2_pre_write_overlap_check(bs, 0, start_offset, nb_bytes, |
c8bb23cb AN |
2456 | true); |
2457 | if (ret < 0) { | |
2458 | return ret; | |
2459 | } | |
2460 | ||
2461 | BLKDBG_EVENT(bs->file, BLKDBG_CLUSTER_ALLOC_SPACE); | |
bf4a66ee | 2462 | ret = bdrv_co_pwrite_zeroes(s->data_file, start_offset, nb_bytes, |
c8bb23cb AN |
2463 | BDRV_REQ_NO_FALLBACK); |
2464 | if (ret < 0) { | |
2465 | if (ret != -ENOTSUP && ret != -EAGAIN) { | |
2466 | return ret; | |
2467 | } | |
2468 | continue; | |
2469 | } | |
2470 | ||
2471 | trace_qcow2_skip_cow(qemu_coroutine_self(), m->offset, m->nb_clusters); | |
2472 | m->skip_cow = true; | |
2473 | } | |
2474 | return 0; | |
2475 | } | |
2476 | ||
6aa7a263 VSO |
2477 | /* |
2478 | * qcow2_co_pwritev_task | |
2479 | * Called with s->lock unlocked | |
2480 | * l2meta - if not NULL, qcow2_co_pwritev_task() will consume it. Caller must | |
2481 | * not use it somehow after qcow2_co_pwritev_task() call | |
2482 | */ | |
2483 | static coroutine_fn int qcow2_co_pwritev_task(BlockDriverState *bs, | |
9c4269d5 | 2484 | uint64_t host_offset, |
6aa7a263 VSO |
2485 | uint64_t offset, uint64_t bytes, |
2486 | QEMUIOVector *qiov, | |
2487 | uint64_t qiov_offset, | |
2488 | QCowL2Meta *l2meta) | |
2489 | { | |
2490 | int ret; | |
2491 | BDRVQcow2State *s = bs->opaque; | |
2492 | void *crypt_buf = NULL; | |
6aa7a263 VSO |
2493 | QEMUIOVector encrypted_qiov; |
2494 | ||
2495 | if (bs->encrypted) { | |
2496 | assert(s->crypto); | |
2497 | assert(bytes <= QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size); | |
2498 | crypt_buf = qemu_try_blockalign(bs->file->bs, bytes); | |
2499 | if (crypt_buf == NULL) { | |
2500 | ret = -ENOMEM; | |
2501 | goto out_unlocked; | |
2502 | } | |
2503 | qemu_iovec_to_buf(qiov, qiov_offset, crypt_buf, bytes); | |
2504 | ||
9c4269d5 | 2505 | if (qcow2_co_encrypt(bs, host_offset, offset, crypt_buf, bytes) < 0) { |
6aa7a263 VSO |
2506 | ret = -EIO; |
2507 | goto out_unlocked; | |
2508 | } | |
2509 | ||
2510 | qemu_iovec_init_buf(&encrypted_qiov, crypt_buf, bytes); | |
2511 | qiov = &encrypted_qiov; | |
2512 | qiov_offset = 0; | |
2513 | } | |
2514 | ||
2515 | /* Try to efficiently initialize the physical space with zeroes */ | |
2516 | ret = handle_alloc_space(bs, l2meta); | |
2517 | if (ret < 0) { | |
2518 | goto out_unlocked; | |
2519 | } | |
2520 | ||
2521 | /* | |
2522 | * If we need to do COW, check if it's possible to merge the | |
2523 | * writing of the guest data together with that of the COW regions. | |
2524 | * If it's not possible (or not necessary) then write the | |
2525 | * guest data now. | |
2526 | */ | |
2527 | if (!merge_cow(offset, bytes, qiov, qiov_offset, l2meta)) { | |
2528 | BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO); | |
9c4269d5 AG |
2529 | trace_qcow2_writev_data(qemu_coroutine_self(), host_offset); |
2530 | ret = bdrv_co_pwritev_part(s->data_file, host_offset, | |
6aa7a263 VSO |
2531 | bytes, qiov, qiov_offset, 0); |
2532 | if (ret < 0) { | |
2533 | goto out_unlocked; | |
2534 | } | |
2535 | } | |
2536 | ||
2537 | qemu_co_mutex_lock(&s->lock); | |
2538 | ||
2539 | ret = qcow2_handle_l2meta(bs, &l2meta, true); | |
2540 | goto out_locked; | |
2541 | ||
2542 | out_unlocked: | |
2543 | qemu_co_mutex_lock(&s->lock); | |
2544 | ||
2545 | out_locked: | |
2546 | qcow2_handle_l2meta(bs, &l2meta, false); | |
2547 | qemu_co_mutex_unlock(&s->lock); | |
2548 | ||
2549 | qemu_vfree(crypt_buf); | |
2550 | ||
2551 | return ret; | |
2552 | } | |
2553 | ||
d710cf57 VSO |
2554 | static coroutine_fn int qcow2_co_pwritev_task_entry(AioTask *task) |
2555 | { | |
2556 | Qcow2AioTask *t = container_of(task, Qcow2AioTask, task); | |
2557 | ||
10dabdc5 | 2558 | assert(!t->subcluster_type); |
d710cf57 | 2559 | |
9c4269d5 | 2560 | return qcow2_co_pwritev_task(t->bs, t->host_offset, |
d710cf57 VSO |
2561 | t->offset, t->bytes, t->qiov, t->qiov_offset, |
2562 | t->l2meta); | |
2563 | } | |
2564 | ||
5396234b VSO |
2565 | static coroutine_fn int qcow2_co_pwritev_part( |
2566 | BlockDriverState *bs, uint64_t offset, uint64_t bytes, | |
2567 | QEMUIOVector *qiov, size_t qiov_offset, int flags) | |
585f8587 | 2568 | { |
ff99129a | 2569 | BDRVQcow2State *s = bs->opaque; |
d46a0bb2 | 2570 | int offset_in_cluster; |
68d100e9 | 2571 | int ret; |
d46a0bb2 | 2572 | unsigned int cur_bytes; /* number of sectors in current iteration */ |
bfd0989a | 2573 | uint64_t host_offset; |
8d2497c3 | 2574 | QCowL2Meta *l2meta = NULL; |
d710cf57 | 2575 | AioTaskPool *aio = NULL; |
c2271403 | 2576 | |
d46a0bb2 | 2577 | trace_qcow2_writev_start_req(qemu_coroutine_self(), offset, bytes); |
3cce16f4 | 2578 | |
d710cf57 | 2579 | while (bytes != 0 && aio_task_pool_status(aio) == 0) { |
3fc48d09 | 2580 | |
f50f88b9 | 2581 | l2meta = NULL; |
cf5c1a23 | 2582 | |
3cce16f4 | 2583 | trace_qcow2_writev_start_part(qemu_coroutine_self()); |
d46a0bb2 KW |
2584 | offset_in_cluster = offset_into_cluster(s, offset); |
2585 | cur_bytes = MIN(bytes, INT_MAX); | |
2586 | if (bs->encrypted) { | |
2587 | cur_bytes = MIN(cur_bytes, | |
2588 | QCOW_MAX_CRYPT_CLUSTERS * s->cluster_size | |
2589 | - offset_in_cluster); | |
5ebaa27e | 2590 | } |
095a9c58 | 2591 | |
6aa7a263 VSO |
2592 | qemu_co_mutex_lock(&s->lock); |
2593 | ||
bfd0989a AG |
2594 | ret = qcow2_alloc_host_offset(bs, offset, &cur_bytes, |
2595 | &host_offset, &l2meta); | |
5ebaa27e | 2596 | if (ret < 0) { |
5447c3a0 | 2597 | goto out_locked; |
5ebaa27e | 2598 | } |
148da7ea | 2599 | |
bfd0989a | 2600 | ret = qcow2_pre_write_overlap_check(bs, 0, host_offset, |
5447c3a0 VSO |
2601 | cur_bytes, true); |
2602 | if (ret < 0) { | |
2603 | goto out_locked; | |
2604 | } | |
2605 | ||
2606 | qemu_co_mutex_unlock(&s->lock); | |
2607 | ||
d710cf57 VSO |
2608 | if (!aio && cur_bytes != bytes) { |
2609 | aio = aio_task_pool_new(QCOW2_MAX_WORKERS); | |
2610 | } | |
2611 | ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_task_entry, 0, | |
bfd0989a | 2612 | host_offset, offset, |
9c4269d5 | 2613 | cur_bytes, qiov, qiov_offset, l2meta); |
6aa7a263 | 2614 | l2meta = NULL; /* l2meta is consumed by qcow2_co_pwritev_task() */ |
c8bb23cb | 2615 | if (ret < 0) { |
6aa7a263 | 2616 | goto fail_nometa; |
f50f88b9 | 2617 | } |
0fa9131a | 2618 | |
d46a0bb2 KW |
2619 | bytes -= cur_bytes; |
2620 | offset += cur_bytes; | |
6aa7a263 | 2621 | qiov_offset += cur_bytes; |
d46a0bb2 | 2622 | trace_qcow2_writev_done_part(qemu_coroutine_self(), cur_bytes); |
5ebaa27e | 2623 | } |
3fc48d09 | 2624 | ret = 0; |
faf575c1 | 2625 | |
5447c3a0 VSO |
2626 | qemu_co_mutex_lock(&s->lock); |
2627 | ||
2628 | out_locked: | |
fd9fcd37 | 2629 | qcow2_handle_l2meta(bs, &l2meta, false); |
0fa9131a | 2630 | |
a8c57408 PB |
2631 | qemu_co_mutex_unlock(&s->lock); |
2632 | ||
6aa7a263 | 2633 | fail_nometa: |
d710cf57 VSO |
2634 | if (aio) { |
2635 | aio_task_pool_wait_all(aio); | |
2636 | if (ret == 0) { | |
2637 | ret = aio_task_pool_status(aio); | |
2638 | } | |
2639 | g_free(aio); | |
2640 | } | |
2641 | ||
3cce16f4 | 2642 | trace_qcow2_writev_done_req(qemu_coroutine_self(), ret); |
42496d62 | 2643 | |
68d100e9 | 2644 | return ret; |
585f8587 FB |
2645 | } |
2646 | ||
ec6d8912 KW |
2647 | static int qcow2_inactivate(BlockDriverState *bs) |
2648 | { | |
2649 | BDRVQcow2State *s = bs->opaque; | |
2650 | int ret, result = 0; | |
5f72826e | 2651 | Error *local_err = NULL; |
ec6d8912 | 2652 | |
644ddbb7 | 2653 | qcow2_store_persistent_dirty_bitmaps(bs, true, &local_err); |
83a8c775 PB |
2654 | if (local_err != NULL) { |
2655 | result = -EINVAL; | |
132adb68 VSO |
2656 | error_reportf_err(local_err, "Lost persistent bitmaps during " |
2657 | "inactivation of node '%s': ", | |
2658 | bdrv_get_device_or_node_name(bs)); | |
83a8c775 PB |
2659 | } |
2660 | ||
ec6d8912 KW |
2661 | ret = qcow2_cache_flush(bs, s->l2_table_cache); |
2662 | if (ret) { | |
2663 | result = ret; | |
2664 | error_report("Failed to flush the L2 table cache: %s", | |
2665 | strerror(-ret)); | |
2666 | } | |
2667 | ||
2668 | ret = qcow2_cache_flush(bs, s->refcount_block_cache); | |
2669 | if (ret) { | |
2670 | result = ret; | |
2671 | error_report("Failed to flush the refcount block cache: %s", | |
2672 | strerror(-ret)); | |
2673 | } | |
2674 | ||
2675 | if (result == 0) { | |
2676 | qcow2_mark_clean(bs); | |
2677 | } | |
2678 | ||
2679 | return result; | |
2680 | } | |
2681 | ||
7c80ab3f | 2682 | static void qcow2_close(BlockDriverState *bs) |
585f8587 | 2683 | { |
ff99129a | 2684 | BDRVQcow2State *s = bs->opaque; |
de82815d | 2685 | qemu_vfree(s->l1_table); |
cf93980e HR |
2686 | /* else pre-write overlap checks in cache_destroy may crash */ |
2687 | s->l1_table = NULL; | |
29c1a730 | 2688 | |
140fd5a6 | 2689 | if (!(s->flags & BDRV_O_INACTIVE)) { |
ec6d8912 | 2690 | qcow2_inactivate(bs); |
27eb6c09 | 2691 | } |
c61d0004 | 2692 | |
279621c0 | 2693 | cache_clean_timer_del(bs); |
e64d4072 AG |
2694 | qcow2_cache_destroy(s->l2_table_cache); |
2695 | qcow2_cache_destroy(s->refcount_block_cache); | |
29c1a730 | 2696 | |
b25b387f DB |
2697 | qcrypto_block_free(s->crypto); |
2698 | s->crypto = NULL; | |
4aebf0f0 | 2699 | qapi_free_QCryptoBlockOpenOptions(s->crypto_opts); |
f6fa64f6 | 2700 | |
6744cbab | 2701 | g_free(s->unknown_header_fields); |
75bab85c | 2702 | cleanup_unknown_header_ext(bs); |
6744cbab | 2703 | |
9b890bdc | 2704 | g_free(s->image_data_file); |
e4603fe1 KW |
2705 | g_free(s->image_backing_file); |
2706 | g_free(s->image_backing_format); | |
2707 | ||
0e8c08be KW |
2708 | if (has_data_file(bs)) { |
2709 | bdrv_unref_child(bs, s->data_file); | |
808cf3cb | 2710 | s->data_file = NULL; |
0e8c08be KW |
2711 | } |
2712 | ||
ed6ccf0f | 2713 | qcow2_refcount_close(bs); |
28c1202b | 2714 | qcow2_free_snapshots(bs); |
585f8587 FB |
2715 | } |
2716 | ||
2b148f39 PB |
2717 | static void coroutine_fn qcow2_co_invalidate_cache(BlockDriverState *bs, |
2718 | Error **errp) | |
06d9260f | 2719 | { |
ff99129a | 2720 | BDRVQcow2State *s = bs->opaque; |
06d9260f | 2721 | int flags = s->flags; |
b25b387f | 2722 | QCryptoBlock *crypto = NULL; |
acdfb480 | 2723 | QDict *options; |
5a8a30db KW |
2724 | Error *local_err = NULL; |
2725 | int ret; | |
06d9260f AL |
2726 | |
2727 | /* | |
2728 | * Backing files are read-only which makes all of their metadata immutable, | |
2729 | * that means we don't have to worry about reopening them here. | |
2730 | */ | |
2731 | ||
b25b387f DB |
2732 | crypto = s->crypto; |
2733 | s->crypto = NULL; | |
06d9260f AL |
2734 | |
2735 | qcow2_close(bs); | |
2736 | ||
ff99129a | 2737 | memset(s, 0, sizeof(BDRVQcow2State)); |
d475e5ac | 2738 | options = qdict_clone_shallow(bs->options); |
5a8a30db | 2739 | |
140fd5a6 | 2740 | flags &= ~BDRV_O_INACTIVE; |
2b148f39 | 2741 | qemu_co_mutex_lock(&s->lock); |
4e4bf5c4 | 2742 | ret = qcow2_do_open(bs, options, flags, &local_err); |
2b148f39 | 2743 | qemu_co_mutex_unlock(&s->lock); |
cb3e7f08 | 2744 | qobject_unref(options); |
5a8a30db | 2745 | if (local_err) { |
4b576648 MA |
2746 | error_propagate_prepend(errp, local_err, |
2747 | "Could not reopen qcow2 layer: "); | |
191fb11b | 2748 | bs->drv = NULL; |
5a8a30db KW |
2749 | return; |
2750 | } else if (ret < 0) { | |
2751 | error_setg_errno(errp, -ret, "Could not reopen qcow2 layer"); | |
191fb11b | 2752 | bs->drv = NULL; |
5a8a30db KW |
2753 | return; |
2754 | } | |
acdfb480 | 2755 | |
b25b387f | 2756 | s->crypto = crypto; |
06d9260f AL |
2757 | } |
2758 | ||
e24e49e6 KW |
2759 | static size_t header_ext_add(char *buf, uint32_t magic, const void *s, |
2760 | size_t len, size_t buflen) | |
2761 | { | |
2762 | QCowExtension *ext_backing_fmt = (QCowExtension*) buf; | |
2763 | size_t ext_len = sizeof(QCowExtension) + ((len + 7) & ~7); | |
2764 | ||
2765 | if (buflen < ext_len) { | |
2766 | return -ENOSPC; | |
2767 | } | |
2768 | ||
2769 | *ext_backing_fmt = (QCowExtension) { | |
2770 | .magic = cpu_to_be32(magic), | |
2771 | .len = cpu_to_be32(len), | |
2772 | }; | |
0647d47c SH |
2773 | |
2774 | if (len) { | |
2775 | memcpy(buf + sizeof(QCowExtension), s, len); | |
2776 | } | |
e24e49e6 KW |
2777 | |
2778 | return ext_len; | |
2779 | } | |
2780 | ||
756e6736 | 2781 | /* |
e24e49e6 KW |
2782 | * Updates the qcow2 header, including the variable length parts of it, i.e. |
2783 | * the backing file name and all extensions. qcow2 was not designed to allow | |
2784 | * such changes, so if we run out of space (we can only use the first cluster) | |
2785 | * this function may fail. | |
756e6736 KW |
2786 | * |
2787 | * Returns 0 on success, -errno in error cases. | |
2788 | */ | |
e24e49e6 | 2789 | int qcow2_update_header(BlockDriverState *bs) |
756e6736 | 2790 | { |
ff99129a | 2791 | BDRVQcow2State *s = bs->opaque; |
e24e49e6 KW |
2792 | QCowHeader *header; |
2793 | char *buf; | |
2794 | size_t buflen = s->cluster_size; | |
756e6736 | 2795 | int ret; |
e24e49e6 KW |
2796 | uint64_t total_size; |
2797 | uint32_t refcount_table_clusters; | |
6744cbab | 2798 | size_t header_length; |
75bab85c | 2799 | Qcow2UnknownHeaderExtension *uext; |
756e6736 | 2800 | |
e24e49e6 | 2801 | buf = qemu_blockalign(bs, buflen); |
756e6736 | 2802 | |
e24e49e6 KW |
2803 | /* Header structure */ |
2804 | header = (QCowHeader*) buf; | |
756e6736 | 2805 | |
e24e49e6 KW |
2806 | if (buflen < sizeof(*header)) { |
2807 | ret = -ENOSPC; | |
2808 | goto fail; | |
756e6736 KW |
2809 | } |
2810 | ||
6744cbab | 2811 | header_length = sizeof(*header) + s->unknown_header_fields_size; |
e24e49e6 KW |
2812 | total_size = bs->total_sectors * BDRV_SECTOR_SIZE; |
2813 | refcount_table_clusters = s->refcount_table_size >> (s->cluster_bits - 3); | |
2814 | ||
572ad978 DP |
2815 | ret = validate_compression_type(s, NULL); |
2816 | if (ret) { | |
2817 | goto fail; | |
2818 | } | |
2819 | ||
e24e49e6 | 2820 | *header = (QCowHeader) { |
6744cbab | 2821 | /* Version 2 fields */ |
e24e49e6 | 2822 | .magic = cpu_to_be32(QCOW_MAGIC), |
6744cbab | 2823 | .version = cpu_to_be32(s->qcow_version), |
e24e49e6 KW |
2824 | .backing_file_offset = 0, |
2825 | .backing_file_size = 0, | |
2826 | .cluster_bits = cpu_to_be32(s->cluster_bits), | |
2827 | .size = cpu_to_be64(total_size), | |
2828 | .crypt_method = cpu_to_be32(s->crypt_method_header), | |
2829 | .l1_size = cpu_to_be32(s->l1_size), | |
2830 | .l1_table_offset = cpu_to_be64(s->l1_table_offset), | |
2831 | .refcount_table_offset = cpu_to_be64(s->refcount_table_offset), | |
2832 | .refcount_table_clusters = cpu_to_be32(refcount_table_clusters), | |
2833 | .nb_snapshots = cpu_to_be32(s->nb_snapshots), | |
2834 | .snapshots_offset = cpu_to_be64(s->snapshots_offset), | |
6744cbab KW |
2835 | |
2836 | /* Version 3 fields */ | |
2837 | .incompatible_features = cpu_to_be64(s->incompatible_features), | |
2838 | .compatible_features = cpu_to_be64(s->compatible_features), | |
2839 | .autoclear_features = cpu_to_be64(s->autoclear_features), | |
b6481f37 | 2840 | .refcount_order = cpu_to_be32(s->refcount_order), |
6744cbab | 2841 | .header_length = cpu_to_be32(header_length), |
572ad978 | 2842 | .compression_type = s->compression_type, |
e24e49e6 | 2843 | }; |
756e6736 | 2844 | |
6744cbab KW |
2845 | /* For older versions, write a shorter header */ |
2846 | switch (s->qcow_version) { | |
2847 | case 2: | |
2848 | ret = offsetof(QCowHeader, incompatible_features); | |
2849 | break; | |
2850 | case 3: | |
2851 | ret = sizeof(*header); | |
2852 | break; | |
2853 | default: | |
b6c14762 JM |
2854 | ret = -EINVAL; |
2855 | goto fail; | |
6744cbab KW |
2856 | } |
2857 | ||
2858 | buf += ret; | |
2859 | buflen -= ret; | |
2860 | memset(buf, 0, buflen); | |
2861 | ||
2862 | /* Preserve any unknown field in the header */ | |
2863 | if (s->unknown_header_fields_size) { | |
2864 | if (buflen < s->unknown_header_fields_size) { | |
2865 | ret = -ENOSPC; | |
2866 | goto fail; | |
2867 | } | |
2868 | ||
2869 | memcpy(buf, s->unknown_header_fields, s->unknown_header_fields_size); | |
2870 | buf += s->unknown_header_fields_size; | |
2871 | buflen -= s->unknown_header_fields_size; | |
2872 | } | |
756e6736 | 2873 | |
e24e49e6 | 2874 | /* Backing file format header extension */ |
e4603fe1 | 2875 | if (s->image_backing_format) { |
e24e49e6 | 2876 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BACKING_FORMAT, |
e4603fe1 KW |
2877 | s->image_backing_format, |
2878 | strlen(s->image_backing_format), | |
e24e49e6 KW |
2879 | buflen); |
2880 | if (ret < 0) { | |
2881 | goto fail; | |
756e6736 KW |
2882 | } |
2883 | ||
e24e49e6 KW |
2884 | buf += ret; |
2885 | buflen -= ret; | |
756e6736 KW |
2886 | } |
2887 | ||
9b890bdc KW |
2888 | /* External data file header extension */ |
2889 | if (has_data_file(bs) && s->image_data_file) { | |
2890 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_DATA_FILE, | |
2891 | s->image_data_file, strlen(s->image_data_file), | |
2892 | buflen); | |
2893 | if (ret < 0) { | |
2894 | goto fail; | |
2895 | } | |
2896 | ||
2897 | buf += ret; | |
2898 | buflen -= ret; | |
2899 | } | |
2900 | ||
4652b8f3 DB |
2901 | /* Full disk encryption header pointer extension */ |
2902 | if (s->crypto_header.offset != 0) { | |
3b698f52 PM |
2903 | s->crypto_header.offset = cpu_to_be64(s->crypto_header.offset); |
2904 | s->crypto_header.length = cpu_to_be64(s->crypto_header.length); | |
4652b8f3 DB |
2905 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_CRYPTO_HEADER, |
2906 | &s->crypto_header, sizeof(s->crypto_header), | |
2907 | buflen); | |
3b698f52 PM |
2908 | s->crypto_header.offset = be64_to_cpu(s->crypto_header.offset); |
2909 | s->crypto_header.length = be64_to_cpu(s->crypto_header.length); | |
4652b8f3 DB |
2910 | if (ret < 0) { |
2911 | goto fail; | |
2912 | } | |
2913 | buf += ret; | |
2914 | buflen -= ret; | |
2915 | } | |
2916 | ||
e7be13ad EB |
2917 | /* |
2918 | * Feature table. A mere 8 feature names occupies 392 bytes, and | |
2919 | * when coupled with the v3 minimum header of 104 bytes plus the | |
2920 | * 8-byte end-of-extension marker, that would leave only 8 bytes | |
2921 | * for a backing file name in an image with 512-byte clusters. | |
2922 | * Thus, we choose to omit this header for cluster sizes 4k and | |
2923 | * smaller. | |
2924 | */ | |
2925 | if (s->qcow_version >= 3 && s->cluster_size > 4096) { | |
bb40ebce | 2926 | static const Qcow2Feature features[] = { |
1a4828c7 KW |
2927 | { |
2928 | .type = QCOW2_FEAT_TYPE_INCOMPATIBLE, | |
2929 | .bit = QCOW2_INCOMPAT_DIRTY_BITNR, | |
2930 | .name = "dirty bit", | |
2931 | }, | |
2932 | { | |
2933 | .type = QCOW2_FEAT_TYPE_INCOMPATIBLE, | |
2934 | .bit = QCOW2_INCOMPAT_CORRUPT_BITNR, | |
2935 | .name = "corrupt bit", | |
2936 | }, | |
93c24936 KW |
2937 | { |
2938 | .type = QCOW2_FEAT_TYPE_INCOMPATIBLE, | |
2939 | .bit = QCOW2_INCOMPAT_DATA_FILE_BITNR, | |
2940 | .name = "external data file", | |
2941 | }, | |
572ad978 DP |
2942 | { |
2943 | .type = QCOW2_FEAT_TYPE_INCOMPATIBLE, | |
2944 | .bit = QCOW2_INCOMPAT_COMPRESSION_BITNR, | |
2945 | .name = "compression type", | |
2946 | }, | |
7be20252 AG |
2947 | { |
2948 | .type = QCOW2_FEAT_TYPE_INCOMPATIBLE, | |
2949 | .bit = QCOW2_INCOMPAT_EXTL2_BITNR, | |
2950 | .name = "extended L2 entries", | |
2951 | }, | |
1a4828c7 KW |
2952 | { |
2953 | .type = QCOW2_FEAT_TYPE_COMPATIBLE, | |
2954 | .bit = QCOW2_COMPAT_LAZY_REFCOUNTS_BITNR, | |
2955 | .name = "lazy refcounts", | |
2956 | }, | |
bb40ebce EB |
2957 | { |
2958 | .type = QCOW2_FEAT_TYPE_AUTOCLEAR, | |
2959 | .bit = QCOW2_AUTOCLEAR_BITMAPS_BITNR, | |
2960 | .name = "bitmaps", | |
2961 | }, | |
2962 | { | |
2963 | .type = QCOW2_FEAT_TYPE_AUTOCLEAR, | |
2964 | .bit = QCOW2_AUTOCLEAR_DATA_FILE_RAW_BITNR, | |
2965 | .name = "raw external data", | |
2966 | }, | |
1a4828c7 KW |
2967 | }; |
2968 | ||
2969 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_FEATURE_TABLE, | |
2970 | features, sizeof(features), buflen); | |
2971 | if (ret < 0) { | |
2972 | goto fail; | |
2973 | } | |
2974 | buf += ret; | |
2975 | buflen -= ret; | |
cfcc4c62 | 2976 | } |
cfcc4c62 | 2977 | |
88ddffae VSO |
2978 | /* Bitmap extension */ |
2979 | if (s->nb_bitmaps > 0) { | |
2980 | Qcow2BitmapHeaderExt bitmaps_header = { | |
2981 | .nb_bitmaps = cpu_to_be32(s->nb_bitmaps), | |
2982 | .bitmap_directory_size = | |
2983 | cpu_to_be64(s->bitmap_directory_size), | |
2984 | .bitmap_directory_offset = | |
2985 | cpu_to_be64(s->bitmap_directory_offset) | |
2986 | }; | |
2987 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_BITMAPS, | |
2988 | &bitmaps_header, sizeof(bitmaps_header), | |
2989 | buflen); | |
2990 | if (ret < 0) { | |
2991 | goto fail; | |
2992 | } | |
2993 | buf += ret; | |
2994 | buflen -= ret; | |
2995 | } | |
2996 | ||
75bab85c KW |
2997 | /* Keep unknown header extensions */ |
2998 | QLIST_FOREACH(uext, &s->unknown_header_ext, next) { | |
2999 | ret = header_ext_add(buf, uext->magic, uext->data, uext->len, buflen); | |
3000 | if (ret < 0) { | |
3001 | goto fail; | |
3002 | } | |
3003 | ||
3004 | buf += ret; | |
3005 | buflen -= ret; | |
3006 | } | |
3007 | ||
e24e49e6 KW |
3008 | /* End of header extensions */ |
3009 | ret = header_ext_add(buf, QCOW2_EXT_MAGIC_END, NULL, 0, buflen); | |
756e6736 KW |
3010 | if (ret < 0) { |
3011 | goto fail; | |
3012 | } | |
3013 | ||
e24e49e6 KW |
3014 | buf += ret; |
3015 | buflen -= ret; | |
756e6736 | 3016 | |
e24e49e6 | 3017 | /* Backing file name */ |
e4603fe1 KW |
3018 | if (s->image_backing_file) { |
3019 | size_t backing_file_len = strlen(s->image_backing_file); | |
e24e49e6 KW |
3020 | |
3021 | if (buflen < backing_file_len) { | |
3022 | ret = -ENOSPC; | |
3023 | goto fail; | |
3024 | } | |
3025 | ||
00ea1881 | 3026 | /* Using strncpy is ok here, since buf is not NUL-terminated. */ |
e4603fe1 | 3027 | strncpy(buf, s->image_backing_file, buflen); |
e24e49e6 KW |
3028 | |
3029 | header->backing_file_offset = cpu_to_be64(buf - ((char*) header)); | |
3030 | header->backing_file_size = cpu_to_be32(backing_file_len); | |
756e6736 KW |
3031 | } |
3032 | ||
e24e49e6 | 3033 | /* Write the new header */ |
d9ca2ea2 | 3034 | ret = bdrv_pwrite(bs->file, 0, header, s->cluster_size); |
756e6736 KW |
3035 | if (ret < 0) { |
3036 | goto fail; | |
3037 | } | |
3038 | ||
3039 | ret = 0; | |
3040 | fail: | |
e24e49e6 | 3041 | qemu_vfree(header); |
756e6736 KW |
3042 | return ret; |
3043 | } | |
3044 | ||
3045 | static int qcow2_change_backing_file(BlockDriverState *bs, | |
3046 | const char *backing_file, const char *backing_fmt) | |
3047 | { | |
ff99129a | 3048 | BDRVQcow2State *s = bs->opaque; |
e4603fe1 | 3049 | |
6c3944dc KW |
3050 | /* Adding a backing file means that the external data file alone won't be |
3051 | * enough to make sense of the content */ | |
3052 | if (backing_file && data_file_is_raw(bs)) { | |
3053 | return -EINVAL; | |
3054 | } | |
3055 | ||
4e876bcf HR |
3056 | if (backing_file && strlen(backing_file) > 1023) { |
3057 | return -EINVAL; | |
3058 | } | |
3059 | ||
998c2019 HR |
3060 | pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file), |
3061 | backing_file ?: ""); | |
e24e49e6 KW |
3062 | pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: ""); |
3063 | pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: ""); | |
3064 | ||
e4603fe1 KW |
3065 | g_free(s->image_backing_file); |
3066 | g_free(s->image_backing_format); | |
3067 | ||
3068 | s->image_backing_file = backing_file ? g_strdup(bs->backing_file) : NULL; | |
3069 | s->image_backing_format = backing_fmt ? g_strdup(bs->backing_format) : NULL; | |
3070 | ||
e24e49e6 | 3071 | return qcow2_update_header(bs); |
756e6736 KW |
3072 | } |
3073 | ||
60900b7b KW |
3074 | static int qcow2_set_up_encryption(BlockDriverState *bs, |
3075 | QCryptoBlockCreateOptions *cryptoopts, | |
3076 | Error **errp) | |
3077 | { | |
3078 | BDRVQcow2State *s = bs->opaque; | |
3079 | QCryptoBlock *crypto = NULL; | |
3080 | int fmt, ret; | |
3081 | ||
3082 | switch (cryptoopts->format) { | |
3083 | case Q_CRYPTO_BLOCK_FORMAT_LUKS: | |
3084 | fmt = QCOW_CRYPT_LUKS; | |
3085 | break; | |
3086 | case Q_CRYPTO_BLOCK_FORMAT_QCOW: | |
3087 | fmt = QCOW_CRYPT_AES; | |
3088 | break; | |
3089 | default: | |
3090 | error_setg(errp, "Crypto format not supported in qcow2"); | |
3091 | return -EINVAL; | |
b25b387f | 3092 | } |
60900b7b | 3093 | |
4652b8f3 | 3094 | s->crypt_method_header = fmt; |
b25b387f | 3095 | |
1cd9a787 | 3096 | crypto = qcrypto_block_create(cryptoopts, "encrypt.", |
4652b8f3 DB |
3097 | qcow2_crypto_hdr_init_func, |
3098 | qcow2_crypto_hdr_write_func, | |
b25b387f DB |
3099 | bs, errp); |
3100 | if (!crypto) { | |
60900b7b | 3101 | return -EINVAL; |
b25b387f DB |
3102 | } |
3103 | ||
3104 | ret = qcow2_update_header(bs); | |
3105 | if (ret < 0) { | |
3106 | error_setg_errno(errp, -ret, "Could not write encryption header"); | |
3107 | goto out; | |
3108 | } | |
3109 | ||
60900b7b | 3110 | ret = 0; |
b25b387f | 3111 | out: |
b25b387f | 3112 | qcrypto_block_free(crypto); |
b25b387f DB |
3113 | return ret; |
3114 | } | |
3115 | ||
7bc45dc1 HR |
3116 | /** |
3117 | * Preallocates metadata structures for data clusters between @offset (in the | |
3118 | * guest disk) and @new_length (which is thus generally the new guest disk | |
3119 | * size). | |
3120 | * | |
3121 | * Returns: 0 on success, -errno on failure. | |
3122 | */ | |
47e86b86 | 3123 | static int coroutine_fn preallocate_co(BlockDriverState *bs, uint64_t offset, |
718c0fce KW |
3124 | uint64_t new_length, PreallocMode mode, |
3125 | Error **errp) | |
a35e1c17 | 3126 | { |
93e32b3e | 3127 | BDRVQcow2State *s = bs->opaque; |
d46a0bb2 | 3128 | uint64_t bytes; |
060bee89 | 3129 | uint64_t host_offset = 0; |
718c0fce | 3130 | int64_t file_length; |
d46a0bb2 | 3131 | unsigned int cur_bytes; |
148da7ea | 3132 | int ret; |
1a52b73d | 3133 | QCowL2Meta *meta = NULL, *m; |
a35e1c17 | 3134 | |
7bc45dc1 HR |
3135 | assert(offset <= new_length); |
3136 | bytes = new_length - offset; | |
a35e1c17 | 3137 | |
d46a0bb2 | 3138 | while (bytes) { |
f29fbf7c | 3139 | cur_bytes = MIN(bytes, QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size)); |
bfd0989a AG |
3140 | ret = qcow2_alloc_host_offset(bs, offset, &cur_bytes, |
3141 | &host_offset, &meta); | |
148da7ea | 3142 | if (ret < 0) { |
360bd074 | 3143 | error_setg_errno(errp, -ret, "Allocating clusters failed"); |
1a52b73d | 3144 | goto out; |
a35e1c17 KW |
3145 | } |
3146 | ||
1a52b73d AG |
3147 | for (m = meta; m != NULL; m = m->next) { |
3148 | m->prealloc = true; | |
3149 | } | |
c792707f | 3150 | |
1a52b73d AG |
3151 | ret = qcow2_handle_l2meta(bs, &meta, true); |
3152 | if (ret < 0) { | |
3153 | error_setg_errno(errp, -ret, "Mapping clusters failed"); | |
3154 | goto out; | |
f50f88b9 | 3155 | } |
f214978a | 3156 | |
a35e1c17 KW |
3157 | /* TODO Preallocate data if requested */ |
3158 | ||
d46a0bb2 KW |
3159 | bytes -= cur_bytes; |
3160 | offset += cur_bytes; | |
a35e1c17 KW |
3161 | } |
3162 | ||
3163 | /* | |
3164 | * It is expected that the image file is large enough to actually contain | |
3165 | * all of the allocated clusters (otherwise we get failing reads after | |
3166 | * EOF). Extend the image to the last allocated sector. | |
3167 | */ | |
718c0fce KW |
3168 | file_length = bdrv_getlength(s->data_file->bs); |
3169 | if (file_length < 0) { | |
3170 | error_setg_errno(errp, -file_length, "Could not get file size"); | |
1a52b73d AG |
3171 | ret = file_length; |
3172 | goto out; | |
718c0fce KW |
3173 | } |
3174 | ||
3175 | if (host_offset + cur_bytes > file_length) { | |
3176 | if (mode == PREALLOC_MODE_METADATA) { | |
3177 | mode = PREALLOC_MODE_OFF; | |
3178 | } | |
c80d8b06 | 3179 | ret = bdrv_co_truncate(s->data_file, host_offset + cur_bytes, false, |
7b8e4857 | 3180 | mode, 0, errp); |
19dbcbf7 | 3181 | if (ret < 0) { |
1a52b73d | 3182 | goto out; |
19dbcbf7 | 3183 | } |
a35e1c17 KW |
3184 | } |
3185 | ||
1a52b73d AG |
3186 | ret = 0; |
3187 | ||
3188 | out: | |
3189 | qcow2_handle_l2meta(bs, &meta, false); | |
3190 | return ret; | |
a35e1c17 KW |
3191 | } |
3192 | ||
7c5bcc42 SH |
3193 | /* qcow2_refcount_metadata_size: |
3194 | * @clusters: number of clusters to refcount (including data and L1/L2 tables) | |
3195 | * @cluster_size: size of a cluster, in bytes | |
3196 | * @refcount_order: refcount bits power-of-2 exponent | |
12cc30a8 HR |
3197 | * @generous_increase: allow for the refcount table to be 1.5x as large as it |
3198 | * needs to be | |
7c5bcc42 SH |
3199 | * |
3200 | * Returns: Number of bytes required for refcount blocks and table metadata. | |
3201 | */ | |
12cc30a8 HR |
3202 | int64_t qcow2_refcount_metadata_size(int64_t clusters, size_t cluster_size, |
3203 | int refcount_order, bool generous_increase, | |
3204 | uint64_t *refblock_count) | |
7c5bcc42 SH |
3205 | { |
3206 | /* | |
3207 | * Every host cluster is reference-counted, including metadata (even | |
3208 | * refcount metadata is recursively included). | |
3209 | * | |
3210 | * An accurate formula for the size of refcount metadata size is difficult | |
3211 | * to derive. An easier method of calculation is finding the fixed point | |
3212 | * where no further refcount blocks or table clusters are required to | |
3213 | * reference count every cluster. | |
3214 | */ | |
02b1ecfa | 3215 | int64_t blocks_per_table_cluster = cluster_size / REFTABLE_ENTRY_SIZE; |
7c5bcc42 SH |
3216 | int64_t refcounts_per_block = cluster_size * 8 / (1 << refcount_order); |
3217 | int64_t table = 0; /* number of refcount table clusters */ | |
3218 | int64_t blocks = 0; /* number of refcount block clusters */ | |
3219 | int64_t last; | |
3220 | int64_t n = 0; | |
3221 | ||
3222 | do { | |
3223 | last = n; | |
3224 | blocks = DIV_ROUND_UP(clusters + table + blocks, refcounts_per_block); | |
3225 | table = DIV_ROUND_UP(blocks, blocks_per_table_cluster); | |
3226 | n = clusters + blocks + table; | |
12cc30a8 HR |
3227 | |
3228 | if (n == last && generous_increase) { | |
3229 | clusters += DIV_ROUND_UP(table, 2); | |
3230 | n = 0; /* force another loop */ | |
3231 | generous_increase = false; | |
3232 | } | |
7c5bcc42 SH |
3233 | } while (n != last); |
3234 | ||
12cc30a8 HR |
3235 | if (refblock_count) { |
3236 | *refblock_count = blocks; | |
3237 | } | |
3238 | ||
7c5bcc42 SH |
3239 | return (blocks + table) * cluster_size; |
3240 | } | |
3241 | ||
95c67e3b SH |
3242 | /** |
3243 | * qcow2_calc_prealloc_size: | |
3244 | * @total_size: virtual disk size in bytes | |
3245 | * @cluster_size: cluster size in bytes | |
3246 | * @refcount_order: refcount bits power-of-2 exponent | |
0dd07b29 | 3247 | * @extended_l2: true if the image has extended L2 entries |
95c67e3b SH |
3248 | * |
3249 | * Returns: Total number of bytes required for the fully allocated image | |
3250 | * (including metadata). | |
3251 | */ | |
3252 | static int64_t qcow2_calc_prealloc_size(int64_t total_size, | |
3253 | size_t cluster_size, | |
0dd07b29 AG |
3254 | int refcount_order, |
3255 | bool extended_l2) | |
95c67e3b | 3256 | { |
95c67e3b | 3257 | int64_t meta_size = 0; |
7c5bcc42 | 3258 | uint64_t nl1e, nl2e; |
9e029689 | 3259 | int64_t aligned_total_size = ROUND_UP(total_size, cluster_size); |
0dd07b29 | 3260 | size_t l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL; |
95c67e3b SH |
3261 | |
3262 | /* header: 1 cluster */ | |
3263 | meta_size += cluster_size; | |
3264 | ||
3265 | /* total size of L2 tables */ | |
3266 | nl2e = aligned_total_size / cluster_size; | |
0dd07b29 AG |
3267 | nl2e = ROUND_UP(nl2e, cluster_size / l2e_size); |
3268 | meta_size += nl2e * l2e_size; | |
95c67e3b SH |
3269 | |
3270 | /* total size of L1 tables */ | |
0dd07b29 | 3271 | nl1e = nl2e * l2e_size / cluster_size; |
02b1ecfa AG |
3272 | nl1e = ROUND_UP(nl1e, cluster_size / L1E_SIZE); |
3273 | meta_size += nl1e * L1E_SIZE; | |
95c67e3b | 3274 | |
7c5bcc42 SH |
3275 | /* total size of refcount table and blocks */ |
3276 | meta_size += qcow2_refcount_metadata_size( | |
3277 | (meta_size + aligned_total_size) / cluster_size, | |
12cc30a8 | 3278 | cluster_size, refcount_order, false, NULL); |
95c67e3b SH |
3279 | |
3280 | return meta_size + aligned_total_size; | |
3281 | } | |
3282 | ||
7be20252 AG |
3283 | static bool validate_cluster_size(size_t cluster_size, bool extended_l2, |
3284 | Error **errp) | |
a9420734 | 3285 | { |
29ca9e45 | 3286 | int cluster_bits = ctz32(cluster_size); |
a9420734 KW |
3287 | if (cluster_bits < MIN_CLUSTER_BITS || cluster_bits > MAX_CLUSTER_BITS || |
3288 | (1 << cluster_bits) != cluster_size) | |
3289 | { | |
3ef6c40a HR |
3290 | error_setg(errp, "Cluster size must be a power of two between %d and " |
3291 | "%dk", 1 << MIN_CLUSTER_BITS, 1 << (MAX_CLUSTER_BITS - 10)); | |
29ca9e45 KW |
3292 | return false; |
3293 | } | |
7be20252 AG |
3294 | |
3295 | if (extended_l2) { | |
3296 | unsigned min_cluster_size = | |
3297 | (1 << MIN_CLUSTER_BITS) * QCOW_EXTL2_SUBCLUSTERS_PER_CLUSTER; | |
3298 | if (cluster_size < min_cluster_size) { | |
3299 | error_setg(errp, "Extended L2 entries are only supported with " | |
3300 | "cluster sizes of at least %u bytes", min_cluster_size); | |
3301 | return false; | |
3302 | } | |
3303 | } | |
3304 | ||
29ca9e45 KW |
3305 | return true; |
3306 | } | |
3307 | ||
7be20252 AG |
3308 | static size_t qcow2_opt_get_cluster_size_del(QemuOpts *opts, bool extended_l2, |
3309 | Error **errp) | |
29ca9e45 KW |
3310 | { |
3311 | size_t cluster_size; | |
3312 | ||
3313 | cluster_size = qemu_opt_get_size_del(opts, BLOCK_OPT_CLUSTER_SIZE, | |
3314 | DEFAULT_CLUSTER_SIZE); | |
7be20252 | 3315 | if (!validate_cluster_size(cluster_size, extended_l2, errp)) { |
0eb4a8c1 SH |
3316 | return 0; |
3317 | } | |
3318 | return cluster_size; | |
3319 | } | |
3320 | ||
3321 | static int qcow2_opt_get_version_del(QemuOpts *opts, Error **errp) | |
3322 | { | |
3323 | char *buf; | |
3324 | int ret; | |
3325 | ||
3326 | buf = qemu_opt_get_del(opts, BLOCK_OPT_COMPAT_LEVEL); | |
3327 | if (!buf) { | |
3328 | ret = 3; /* default */ | |
3329 | } else if (!strcmp(buf, "0.10")) { | |
3330 | ret = 2; | |
3331 | } else if (!strcmp(buf, "1.1")) { | |
3332 | ret = 3; | |
3333 | } else { | |
3334 | error_setg(errp, "Invalid compatibility level: '%s'", buf); | |
3335 | ret = -EINVAL; | |
3336 | } | |
3337 | g_free(buf); | |
3338 | return ret; | |
3339 | } | |
3340 | ||
3341 | static uint64_t qcow2_opt_get_refcount_bits_del(QemuOpts *opts, int version, | |
3342 | Error **errp) | |
3343 | { | |
3344 | uint64_t refcount_bits; | |
3345 | ||
3346 | refcount_bits = qemu_opt_get_number_del(opts, BLOCK_OPT_REFCOUNT_BITS, 16); | |
3347 | if (refcount_bits > 64 || !is_power_of_2(refcount_bits)) { | |
3348 | error_setg(errp, "Refcount width must be a power of two and may not " | |
3349 | "exceed 64 bits"); | |
3350 | return 0; | |
3351 | } | |
3352 | ||
3353 | if (version < 3 && refcount_bits != 16) { | |
3354 | error_setg(errp, "Different refcount widths than 16 bits require " | |
3355 | "compatibility level 1.1 or above (use compat=1.1 or " | |
3356 | "greater)"); | |
3357 | return 0; | |
a9420734 KW |
3358 | } |
3359 | ||
0eb4a8c1 SH |
3360 | return refcount_bits; |
3361 | } | |
3362 | ||
c274393a | 3363 | static int coroutine_fn |
60900b7b | 3364 | qcow2_co_create(BlockdevCreateOptions *create_options, Error **errp) |
0eb4a8c1 | 3365 | { |
29ca9e45 | 3366 | BlockdevCreateOptionsQcow2 *qcow2_opts; |
0eb4a8c1 SH |
3367 | QDict *options; |
3368 | ||
a9420734 KW |
3369 | /* |
3370 | * Open the image file and write a minimal qcow2 header. | |
3371 | * | |
3372 | * We keep things simple and start with a zero-sized image. We also | |
3373 | * do without refcount blocks or a L1 table for now. We'll fix the | |
3374 | * inconsistency later. | |
3375 | * | |
3376 | * We do need a refcount table because growing the refcount table means | |
a951a631 | 3377 | * allocating two new refcount blocks - the second of which would be at |
a9420734 KW |
3378 | * 2 GB for 64k clusters, and we don't want to have a 2 GB initial file |
3379 | * size for any qcow2 image. | |
3380 | */ | |
e1d74bc6 KW |
3381 | BlockBackend *blk = NULL; |
3382 | BlockDriverState *bs = NULL; | |
dcc98687 | 3383 | BlockDriverState *data_bs = NULL; |
f8413b3c | 3384 | QCowHeader *header; |
29ca9e45 KW |
3385 | size_t cluster_size; |
3386 | int version; | |
3387 | int refcount_order; | |
5f14f31d | 3388 | uint64_t *refcount_table; |
a9420734 | 3389 | int ret; |
572ad978 | 3390 | uint8_t compression_type = QCOW2_COMPRESSION_TYPE_ZLIB; |
a9420734 | 3391 | |
29ca9e45 KW |
3392 | assert(create_options->driver == BLOCKDEV_DRIVER_QCOW2); |
3393 | qcow2_opts = &create_options->u.qcow2; | |
3394 | ||
e1d74bc6 KW |
3395 | bs = bdrv_open_blockdev_ref(qcow2_opts->file, errp); |
3396 | if (bs == NULL) { | |
3397 | return -EIO; | |
3398 | } | |
3399 | ||
3400 | /* Validate options and set default values */ | |
29ca9e45 | 3401 | if (!QEMU_IS_ALIGNED(qcow2_opts->size, BDRV_SECTOR_SIZE)) { |
3afea402 AG |
3402 | error_setg(errp, "Image size must be a multiple of %u bytes", |
3403 | (unsigned) BDRV_SECTOR_SIZE); | |
29ca9e45 KW |
3404 | ret = -EINVAL; |
3405 | goto out; | |
3406 | } | |
3407 | ||
3408 | if (qcow2_opts->has_version) { | |
3409 | switch (qcow2_opts->version) { | |
3410 | case BLOCKDEV_QCOW2_VERSION_V2: | |
3411 | version = 2; | |
3412 | break; | |
3413 | case BLOCKDEV_QCOW2_VERSION_V3: | |
3414 | version = 3; | |
3415 | break; | |
3416 | default: | |
3417 | g_assert_not_reached(); | |
3418 | } | |
3419 | } else { | |
3420 | version = 3; | |
3421 | } | |
3422 | ||
3423 | if (qcow2_opts->has_cluster_size) { | |
3424 | cluster_size = qcow2_opts->cluster_size; | |
3425 | } else { | |
3426 | cluster_size = DEFAULT_CLUSTER_SIZE; | |
3427 | } | |
3428 | ||
7be20252 AG |
3429 | if (!qcow2_opts->has_extended_l2) { |
3430 | qcow2_opts->extended_l2 = false; | |
3431 | } | |
3432 | if (qcow2_opts->extended_l2) { | |
3433 | if (version < 3) { | |
3434 | error_setg(errp, "Extended L2 entries are only supported with " | |
3435 | "compatibility level 1.1 and above (use version=v3 or " | |
3436 | "greater)"); | |
3437 | ret = -EINVAL; | |
3438 | goto out; | |
3439 | } | |
3440 | } | |
3441 | ||
3442 | if (!validate_cluster_size(cluster_size, qcow2_opts->extended_l2, errp)) { | |
e1d74bc6 KW |
3443 | ret = -EINVAL; |
3444 | goto out; | |
29ca9e45 KW |
3445 | } |
3446 | ||
3447 | if (!qcow2_opts->has_preallocation) { | |
3448 | qcow2_opts->preallocation = PREALLOC_MODE_OFF; | |
3449 | } | |
3450 | if (qcow2_opts->has_backing_file && | |
2118771d AG |
3451 | qcow2_opts->preallocation != PREALLOC_MODE_OFF && |
3452 | !qcow2_opts->extended_l2) | |
29ca9e45 | 3453 | { |
2118771d AG |
3454 | error_setg(errp, "Backing file and preallocation can only be used at " |
3455 | "the same time if extended_l2 is on"); | |
e1d74bc6 KW |
3456 | ret = -EINVAL; |
3457 | goto out; | |
29ca9e45 KW |
3458 | } |
3459 | if (qcow2_opts->has_backing_fmt && !qcow2_opts->has_backing_file) { | |
3460 | error_setg(errp, "Backing format cannot be used without backing file"); | |
e1d74bc6 KW |
3461 | ret = -EINVAL; |
3462 | goto out; | |
29ca9e45 KW |
3463 | } |
3464 | ||
3465 | if (!qcow2_opts->has_lazy_refcounts) { | |
3466 | qcow2_opts->lazy_refcounts = false; | |
3467 | } | |
3468 | if (version < 3 && qcow2_opts->lazy_refcounts) { | |
3469 | error_setg(errp, "Lazy refcounts only supported with compatibility " | |
b76b4f60 | 3470 | "level 1.1 and above (use version=v3 or greater)"); |
e1d74bc6 KW |
3471 | ret = -EINVAL; |
3472 | goto out; | |
29ca9e45 KW |
3473 | } |
3474 | ||
3475 | if (!qcow2_opts->has_refcount_bits) { | |
3476 | qcow2_opts->refcount_bits = 16; | |
3477 | } | |
3478 | if (qcow2_opts->refcount_bits > 64 || | |
3479 | !is_power_of_2(qcow2_opts->refcount_bits)) | |
3480 | { | |
3481 | error_setg(errp, "Refcount width must be a power of two and may not " | |
3482 | "exceed 64 bits"); | |
e1d74bc6 KW |
3483 | ret = -EINVAL; |
3484 | goto out; | |
29ca9e45 KW |
3485 | } |
3486 | if (version < 3 && qcow2_opts->refcount_bits != 16) { | |
3487 | error_setg(errp, "Different refcount widths than 16 bits require " | |
b76b4f60 | 3488 | "compatibility level 1.1 or above (use version=v3 or " |
29ca9e45 | 3489 | "greater)"); |
e1d74bc6 KW |
3490 | ret = -EINVAL; |
3491 | goto out; | |
29ca9e45 KW |
3492 | } |
3493 | refcount_order = ctz32(qcow2_opts->refcount_bits); | |
3494 | ||
6c3944dc KW |
3495 | if (qcow2_opts->data_file_raw && !qcow2_opts->data_file) { |
3496 | error_setg(errp, "data-file-raw requires data-file"); | |
3497 | ret = -EINVAL; | |
3498 | goto out; | |
3499 | } | |
3500 | if (qcow2_opts->data_file_raw && qcow2_opts->has_backing_file) { | |
3501 | error_setg(errp, "Backing file and data-file-raw cannot be used at " | |
3502 | "the same time"); | |
3503 | ret = -EINVAL; | |
3504 | goto out; | |
3505 | } | |
3506 | ||
dcc98687 KW |
3507 | if (qcow2_opts->data_file) { |
3508 | if (version < 3) { | |
3509 | error_setg(errp, "External data files are only supported with " | |
3510 | "compatibility level 1.1 and above (use version=v3 or " | |
3511 | "greater)"); | |
3512 | ret = -EINVAL; | |
3513 | goto out; | |
3514 | } | |
3515 | data_bs = bdrv_open_blockdev_ref(qcow2_opts->data_file, errp); | |
a0cf8363 | 3516 | if (data_bs == NULL) { |
dcc98687 KW |
3517 | ret = -EIO; |
3518 | goto out; | |
3519 | } | |
3520 | } | |
29ca9e45 | 3521 | |
572ad978 DP |
3522 | if (qcow2_opts->has_compression_type && |
3523 | qcow2_opts->compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) { | |
3524 | ||
3525 | ret = -EINVAL; | |
3526 | ||
3527 | if (version < 3) { | |
3528 | error_setg(errp, "Non-zlib compression type is only supported with " | |
3529 | "compatibility level 1.1 and above (use version=v3 or " | |
3530 | "greater)"); | |
3531 | goto out; | |
3532 | } | |
3533 | ||
3534 | switch (qcow2_opts->compression_type) { | |
d298ac10 DP |
3535 | #ifdef CONFIG_ZSTD |
3536 | case QCOW2_COMPRESSION_TYPE_ZSTD: | |
3537 | break; | |
3538 | #endif | |
572ad978 DP |
3539 | default: |
3540 | error_setg(errp, "Unknown compression type"); | |
3541 | goto out; | |
3542 | } | |
3543 | ||
3544 | compression_type = qcow2_opts->compression_type; | |
3545 | } | |
3546 | ||
29ca9e45 | 3547 | /* Create BlockBackend to write to the image */ |
a3aeeab5 EB |
3548 | blk = blk_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL, |
3549 | errp); | |
3550 | if (!blk) { | |
3551 | ret = -EPERM; | |
cbf2b7c4 | 3552 | goto out; |
a9420734 | 3553 | } |
23588797 KW |
3554 | blk_set_allow_write_beyond_eof(blk, true); |
3555 | ||
a9420734 | 3556 | /* Write the header */ |
f8413b3c KW |
3557 | QEMU_BUILD_BUG_ON((1 << MIN_CLUSTER_BITS) < sizeof(*header)); |
3558 | header = g_malloc0(cluster_size); | |
3559 | *header = (QCowHeader) { | |
3560 | .magic = cpu_to_be32(QCOW_MAGIC), | |
3561 | .version = cpu_to_be32(version), | |
0eb4a8c1 | 3562 | .cluster_bits = cpu_to_be32(ctz32(cluster_size)), |
f8413b3c KW |
3563 | .size = cpu_to_be64(0), |
3564 | .l1_table_offset = cpu_to_be64(0), | |
3565 | .l1_size = cpu_to_be32(0), | |
3566 | .refcount_table_offset = cpu_to_be64(cluster_size), | |
3567 | .refcount_table_clusters = cpu_to_be32(1), | |
bd4b167f | 3568 | .refcount_order = cpu_to_be32(refcount_order), |
572ad978 DP |
3569 | /* don't deal with endianness since compression_type is 1 byte long */ |
3570 | .compression_type = compression_type, | |
f8413b3c KW |
3571 | .header_length = cpu_to_be32(sizeof(*header)), |
3572 | }; | |
a9420734 | 3573 | |
b25b387f DB |
3574 | /* We'll update this to correct value later */ |
3575 | header->crypt_method = cpu_to_be32(QCOW_CRYPT_NONE); | |
a9420734 | 3576 | |
29ca9e45 | 3577 | if (qcow2_opts->lazy_refcounts) { |
f8413b3c | 3578 | header->compatible_features |= |
bfe8043e SH |
3579 | cpu_to_be64(QCOW2_COMPAT_LAZY_REFCOUNTS); |
3580 | } | |
dcc98687 KW |
3581 | if (data_bs) { |
3582 | header->incompatible_features |= | |
3583 | cpu_to_be64(QCOW2_INCOMPAT_DATA_FILE); | |
3584 | } | |
6c3944dc KW |
3585 | if (qcow2_opts->data_file_raw) { |
3586 | header->autoclear_features |= | |
3587 | cpu_to_be64(QCOW2_AUTOCLEAR_DATA_FILE_RAW); | |
3588 | } | |
572ad978 DP |
3589 | if (compression_type != QCOW2_COMPRESSION_TYPE_ZLIB) { |
3590 | header->incompatible_features |= | |
3591 | cpu_to_be64(QCOW2_INCOMPAT_COMPRESSION); | |
3592 | } | |
bfe8043e | 3593 | |
7be20252 AG |
3594 | if (qcow2_opts->extended_l2) { |
3595 | header->incompatible_features |= | |
3596 | cpu_to_be64(QCOW2_INCOMPAT_EXTL2); | |
3597 | } | |
3598 | ||
8341f00d | 3599 | ret = blk_pwrite(blk, 0, header, cluster_size, 0); |
f8413b3c | 3600 | g_free(header); |
a9420734 | 3601 | if (ret < 0) { |
3ef6c40a | 3602 | error_setg_errno(errp, -ret, "Could not write qcow2 header"); |
a9420734 KW |
3603 | goto out; |
3604 | } | |
3605 | ||
b106ad91 KW |
3606 | /* Write a refcount table with one refcount block */ |
3607 | refcount_table = g_malloc0(2 * cluster_size); | |
3608 | refcount_table[0] = cpu_to_be64(2 * cluster_size); | |
8341f00d | 3609 | ret = blk_pwrite(blk, cluster_size, refcount_table, 2 * cluster_size, 0); |
7267c094 | 3610 | g_free(refcount_table); |
a9420734 KW |
3611 | |
3612 | if (ret < 0) { | |
3ef6c40a | 3613 | error_setg_errno(errp, -ret, "Could not write refcount table"); |
a9420734 KW |
3614 | goto out; |
3615 | } | |
3616 | ||
23588797 KW |
3617 | blk_unref(blk); |
3618 | blk = NULL; | |
a9420734 KW |
3619 | |
3620 | /* | |
3621 | * And now open the image and make it consistent first (i.e. increase the | |
3622 | * refcount of the cluster that is occupied by the header and the refcount | |
3623 | * table) | |
3624 | */ | |
e6641719 | 3625 | options = qdict_new(); |
46f5ac20 | 3626 | qdict_put_str(options, "driver", "qcow2"); |
cbf2b7c4 | 3627 | qdict_put_str(options, "file", bs->node_name); |
dcc98687 KW |
3628 | if (data_bs) { |
3629 | qdict_put_str(options, "data-file", data_bs->node_name); | |
3630 | } | |
cbf2b7c4 | 3631 | blk = blk_new_open(NULL, NULL, options, |
55880601 | 3632 | BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_NO_FLUSH, |
af175e85 | 3633 | errp); |
23588797 | 3634 | if (blk == NULL) { |
23588797 | 3635 | ret = -EIO; |
a9420734 KW |
3636 | goto out; |
3637 | } | |
3638 | ||
23588797 | 3639 | ret = qcow2_alloc_clusters(blk_bs(blk), 3 * cluster_size); |
a9420734 | 3640 | if (ret < 0) { |
3ef6c40a HR |
3641 | error_setg_errno(errp, -ret, "Could not allocate clusters for qcow2 " |
3642 | "header and refcount table"); | |
a9420734 KW |
3643 | goto out; |
3644 | ||
3645 | } else if (ret != 0) { | |
3646 | error_report("Huh, first cluster in empty image is already in use?"); | |
3647 | abort(); | |
3648 | } | |
3649 | ||
9b890bdc KW |
3650 | /* Set the external data file if necessary */ |
3651 | if (data_bs) { | |
3652 | BDRVQcow2State *s = blk_bs(blk)->opaque; | |
3653 | s->image_data_file = g_strdup(data_bs->filename); | |
3654 | } | |
3655 | ||
b527c9b3 | 3656 | /* Create a full header (including things like feature table) */ |
23588797 | 3657 | ret = qcow2_update_header(blk_bs(blk)); |
b527c9b3 KW |
3658 | if (ret < 0) { |
3659 | error_setg_errno(errp, -ret, "Could not update qcow2 header"); | |
3660 | goto out; | |
3661 | } | |
3662 | ||
a9420734 | 3663 | /* Okay, now that we have a valid image, let's give it the right size */ |
c80d8b06 | 3664 | ret = blk_truncate(blk, qcow2_opts->size, false, qcow2_opts->preallocation, |
8c6242b6 | 3665 | 0, errp); |
a9420734 | 3666 | if (ret < 0) { |
ed3d2ec9 | 3667 | error_prepend(errp, "Could not resize image: "); |
a9420734 KW |
3668 | goto out; |
3669 | } | |
3670 | ||
a951a631 | 3671 | /* Want a backing file? There you go. */ |
29ca9e45 KW |
3672 | if (qcow2_opts->has_backing_file) { |
3673 | const char *backing_format = NULL; | |
3674 | ||
3675 | if (qcow2_opts->has_backing_fmt) { | |
3676 | backing_format = BlockdevDriver_str(qcow2_opts->backing_fmt); | |
3677 | } | |
3678 | ||
3679 | ret = bdrv_change_backing_file(blk_bs(blk), qcow2_opts->backing_file, | |
e54ee1b3 | 3680 | backing_format, false); |
a9420734 | 3681 | if (ret < 0) { |
3ef6c40a | 3682 | error_setg_errno(errp, -ret, "Could not assign backing file '%s' " |
29ca9e45 KW |
3683 | "with format '%s'", qcow2_opts->backing_file, |
3684 | backing_format); | |
a9420734 KW |
3685 | goto out; |
3686 | } | |
3687 | } | |
3688 | ||
b25b387f | 3689 | /* Want encryption? There you go. */ |
60900b7b KW |
3690 | if (qcow2_opts->has_encrypt) { |
3691 | ret = qcow2_set_up_encryption(blk_bs(blk), qcow2_opts->encrypt, errp); | |
b25b387f DB |
3692 | if (ret < 0) { |
3693 | goto out; | |
3694 | } | |
3695 | } | |
3696 | ||
23588797 KW |
3697 | blk_unref(blk); |
3698 | blk = NULL; | |
ba2ab2f2 | 3699 | |
b25b387f DB |
3700 | /* Reopen the image without BDRV_O_NO_FLUSH to flush it before returning. |
3701 | * Using BDRV_O_NO_IO, since encryption is now setup we don't want to | |
3702 | * have to setup decryption context. We're not doing any I/O on the top | |
3703 | * level BlockDriverState, only lower layers, where BDRV_O_NO_IO does | |
3704 | * not have effect. | |
3705 | */ | |
e6641719 | 3706 | options = qdict_new(); |
46f5ac20 | 3707 | qdict_put_str(options, "driver", "qcow2"); |
cbf2b7c4 | 3708 | qdict_put_str(options, "file", bs->node_name); |
dcc98687 KW |
3709 | if (data_bs) { |
3710 | qdict_put_str(options, "data-file", data_bs->node_name); | |
3711 | } | |
cbf2b7c4 | 3712 | blk = blk_new_open(NULL, NULL, options, |
b25b387f | 3713 | BDRV_O_RDWR | BDRV_O_NO_BACKING | BDRV_O_NO_IO, |
af175e85 | 3714 | errp); |
23588797 | 3715 | if (blk == NULL) { |
23588797 | 3716 | ret = -EIO; |
ba2ab2f2 HR |
3717 | goto out; |
3718 | } | |
3719 | ||
a9420734 KW |
3720 | ret = 0; |
3721 | out: | |
e1d74bc6 KW |
3722 | blk_unref(blk); |
3723 | bdrv_unref(bs); | |
dcc98687 | 3724 | bdrv_unref(data_bs); |
a9420734 KW |
3725 | return ret; |
3726 | } | |
de5f3f40 | 3727 | |
b92902df ML |
3728 | static int coroutine_fn qcow2_co_create_opts(BlockDriver *drv, |
3729 | const char *filename, | |
3730 | QemuOpts *opts, | |
efc75e2a | 3731 | Error **errp) |
de5f3f40 | 3732 | { |
b76b4f60 | 3733 | BlockdevCreateOptions *create_options = NULL; |
92adf9db | 3734 | QDict *qdict; |
b76b4f60 | 3735 | Visitor *v; |
cbf2b7c4 | 3736 | BlockDriverState *bs = NULL; |
9b890bdc | 3737 | BlockDriverState *data_bs = NULL; |
b76b4f60 | 3738 | const char *val; |
3ef6c40a | 3739 | int ret; |
de5f3f40 | 3740 | |
b76b4f60 KW |
3741 | /* Only the keyval visitor supports the dotted syntax needed for |
3742 | * encryption, so go through a QDict before getting a QAPI type. Ignore | |
3743 | * options meant for the protocol layer so that the visitor doesn't | |
3744 | * complain. */ | |
3745 | qdict = qemu_opts_to_qdict_filtered(opts, NULL, bdrv_qcow2.create_opts, | |
3746 | true); | |
3747 | ||
3748 | /* Handle encryption options */ | |
3749 | val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT); | |
3750 | if (val && !strcmp(val, "on")) { | |
3751 | qdict_put_str(qdict, BLOCK_OPT_ENCRYPT, "qcow"); | |
3752 | } else if (val && !strcmp(val, "off")) { | |
3753 | qdict_del(qdict, BLOCK_OPT_ENCRYPT); | |
3754 | } | |
3755 | ||
3756 | val = qdict_get_try_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT); | |
3757 | if (val && !strcmp(val, "aes")) { | |
3758 | qdict_put_str(qdict, BLOCK_OPT_ENCRYPT_FORMAT, "qcow"); | |
3759 | } | |
3760 | ||
3761 | /* Convert compat=0.10/1.1 into compat=v2/v3, to be renamed into | |
3762 | * version=v2/v3 below. */ | |
3763 | val = qdict_get_try_str(qdict, BLOCK_OPT_COMPAT_LEVEL); | |
3764 | if (val && !strcmp(val, "0.10")) { | |
3765 | qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v2"); | |
3766 | } else if (val && !strcmp(val, "1.1")) { | |
3767 | qdict_put_str(qdict, BLOCK_OPT_COMPAT_LEVEL, "v3"); | |
3768 | } | |
3769 | ||
3770 | /* Change legacy command line options into QMP ones */ | |
3771 | static const QDictRenames opt_renames[] = { | |
3772 | { BLOCK_OPT_BACKING_FILE, "backing-file" }, | |
3773 | { BLOCK_OPT_BACKING_FMT, "backing-fmt" }, | |
3774 | { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" }, | |
3775 | { BLOCK_OPT_LAZY_REFCOUNTS, "lazy-refcounts" }, | |
7be20252 | 3776 | { BLOCK_OPT_EXTL2, "extended-l2" }, |
b76b4f60 KW |
3777 | { BLOCK_OPT_REFCOUNT_BITS, "refcount-bits" }, |
3778 | { BLOCK_OPT_ENCRYPT, BLOCK_OPT_ENCRYPT_FORMAT }, | |
3779 | { BLOCK_OPT_COMPAT_LEVEL, "version" }, | |
6c3944dc | 3780 | { BLOCK_OPT_DATA_FILE_RAW, "data-file-raw" }, |
572ad978 | 3781 | { BLOCK_OPT_COMPRESSION_TYPE, "compression-type" }, |
b76b4f60 KW |
3782 | { NULL, NULL }, |
3783 | }; | |
3784 | ||
3785 | if (!qdict_rename_keys(qdict, opt_renames, errp)) { | |
29ca9e45 KW |
3786 | ret = -EINVAL; |
3787 | goto finish; | |
3788 | } | |
60900b7b | 3789 | |
b76b4f60 KW |
3790 | /* Create and open the file (protocol layer) */ |
3791 | ret = bdrv_create_file(filename, opts, errp); | |
3792 | if (ret < 0) { | |
0eb4a8c1 SH |
3793 | goto finish; |
3794 | } | |
b76b4f60 KW |
3795 | |
3796 | bs = bdrv_open(filename, NULL, NULL, | |
3797 | BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp); | |
3798 | if (bs == NULL) { | |
3799 | ret = -EIO; | |
1bd0e2d1 CL |
3800 | goto finish; |
3801 | } | |
0eb4a8c1 | 3802 | |
9b890bdc KW |
3803 | /* Create and open an external data file (protocol layer) */ |
3804 | val = qdict_get_try_str(qdict, BLOCK_OPT_DATA_FILE); | |
3805 | if (val) { | |
3806 | ret = bdrv_create_file(val, opts, errp); | |
3807 | if (ret < 0) { | |
3808 | goto finish; | |
3809 | } | |
3810 | ||
3811 | data_bs = bdrv_open(val, NULL, NULL, | |
3812 | BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, | |
3813 | errp); | |
3814 | if (data_bs == NULL) { | |
3815 | ret = -EIO; | |
3816 | goto finish; | |
3817 | } | |
3818 | ||
3819 | qdict_del(qdict, BLOCK_OPT_DATA_FILE); | |
3820 | qdict_put_str(qdict, "data-file", data_bs->node_name); | |
3821 | } | |
3822 | ||
b76b4f60 KW |
3823 | /* Set 'driver' and 'node' options */ |
3824 | qdict_put_str(qdict, "driver", "qcow2"); | |
3825 | qdict_put_str(qdict, "file", bs->node_name); | |
3826 | ||
3827 | /* Now get the QAPI type BlockdevCreateOptions */ | |
af91062e MA |
3828 | v = qobject_input_visitor_new_flat_confused(qdict, errp); |
3829 | if (!v) { | |
1bd0e2d1 CL |
3830 | ret = -EINVAL; |
3831 | goto finish; | |
3832 | } | |
3833 | ||
b11a093c | 3834 | visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp); |
b76b4f60 | 3835 | visit_free(v); |
b11a093c | 3836 | if (!create_options) { |
bd4b167f HR |
3837 | ret = -EINVAL; |
3838 | goto finish; | |
3839 | } | |
3840 | ||
b76b4f60 KW |
3841 | /* Silently round up size */ |
3842 | create_options->u.qcow2.size = ROUND_UP(create_options->u.qcow2.size, | |
3843 | BDRV_SECTOR_SIZE); | |
cbf2b7c4 KW |
3844 | |
3845 | /* Create the qcow2 image (format layer) */ | |
b76b4f60 | 3846 | ret = qcow2_co_create(create_options, errp); |
6094cbeb | 3847 | finish: |
cbf2b7c4 | 3848 | if (ret < 0) { |
6094cbeb ML |
3849 | bdrv_co_delete_file_noerr(bs); |
3850 | bdrv_co_delete_file_noerr(data_bs); | |
3851 | } else { | |
3852 | ret = 0; | |
cbf2b7c4 | 3853 | } |
1bd0e2d1 | 3854 | |
cb3e7f08 | 3855 | qobject_unref(qdict); |
cbf2b7c4 | 3856 | bdrv_unref(bs); |
9b890bdc | 3857 | bdrv_unref(data_bs); |
b76b4f60 | 3858 | qapi_free_BlockdevCreateOptions(create_options); |
3ef6c40a | 3859 | return ret; |
de5f3f40 KW |
3860 | } |
3861 | ||
2928abce | 3862 | |
f06f6b66 | 3863 | static bool is_zero(BlockDriverState *bs, int64_t offset, int64_t bytes) |
2928abce | 3864 | { |
31826642 EB |
3865 | int64_t nr; |
3866 | int res; | |
f06f6b66 EB |
3867 | |
3868 | /* Clamp to image length, before checking status of underlying sectors */ | |
8cbf74b2 EB |
3869 | if (offset + bytes > bs->total_sectors * BDRV_SECTOR_SIZE) { |
3870 | bytes = bs->total_sectors * BDRV_SECTOR_SIZE - offset; | |
fbaa6bb3 EB |
3871 | } |
3872 | ||
f06f6b66 | 3873 | if (!bytes) { |
ebb718a5 EB |
3874 | return true; |
3875 | } | |
67c095c8 VSO |
3876 | |
3877 | /* | |
3878 | * bdrv_block_status_above doesn't merge different types of zeros, for | |
3879 | * example, zeros which come from the region which is unallocated in | |
3880 | * the whole backing chain, and zeros which come because of a short | |
3881 | * backing file. So, we need a loop. | |
3882 | */ | |
3883 | do { | |
3884 | res = bdrv_block_status_above(bs, NULL, offset, bytes, &nr, NULL, NULL); | |
3885 | offset += nr; | |
3886 | bytes -= nr; | |
3887 | } while (res >= 0 && (res & BDRV_BLOCK_ZERO) && nr && bytes); | |
3888 | ||
3889 | return res >= 0 && (res & BDRV_BLOCK_ZERO) && bytes == 0; | |
2928abce DL |
3890 | } |
3891 | ||
5544b59f | 3892 | static coroutine_fn int qcow2_co_pwrite_zeroes(BlockDriverState *bs, |
f5a5ca79 | 3893 | int64_t offset, int bytes, BdrvRequestFlags flags) |
621f0589 KW |
3894 | { |
3895 | int ret; | |
ff99129a | 3896 | BDRVQcow2State *s = bs->opaque; |
621f0589 | 3897 | |
a6841a2d AG |
3898 | uint32_t head = offset_into_subcluster(s, offset); |
3899 | uint32_t tail = ROUND_UP(offset + bytes, s->subcluster_size) - | |
3900 | (offset + bytes); | |
2928abce | 3901 | |
f5a5ca79 MP |
3902 | trace_qcow2_pwrite_zeroes_start_req(qemu_coroutine_self(), offset, bytes); |
3903 | if (offset + bytes == bs->total_sectors * BDRV_SECTOR_SIZE) { | |
fbaa6bb3 EB |
3904 | tail = 0; |
3905 | } | |
5a64e942 | 3906 | |
ebb718a5 | 3907 | if (head || tail) { |
ebb718a5 | 3908 | uint64_t off; |
ecfe1863 | 3909 | unsigned int nr; |
10dabdc5 | 3910 | QCow2SubclusterType type; |
2928abce | 3911 | |
a6841a2d | 3912 | assert(head + bytes + tail <= s->subcluster_size); |
2928abce | 3913 | |
ebb718a5 | 3914 | /* check whether remainder of cluster already reads as zero */ |
f06f6b66 | 3915 | if (!(is_zero(bs, offset - head, head) && |
a6841a2d | 3916 | is_zero(bs, offset + bytes, tail))) { |
2928abce DL |
3917 | return -ENOTSUP; |
3918 | } | |
3919 | ||
2928abce DL |
3920 | qemu_co_mutex_lock(&s->lock); |
3921 | /* We can have new write after previous check */ | |
a6841a2d AG |
3922 | offset -= head; |
3923 | bytes = s->subcluster_size; | |
3924 | nr = s->subcluster_size; | |
ca4a0bb8 AG |
3925 | ret = qcow2_get_host_offset(bs, offset, &nr, &off, &type); |
3926 | if (ret < 0 || | |
10dabdc5 | 3927 | (type != QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN && |
97490a14 | 3928 | type != QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC && |
10dabdc5 AG |
3929 | type != QCOW2_SUBCLUSTER_ZERO_PLAIN && |
3930 | type != QCOW2_SUBCLUSTER_ZERO_ALLOC)) { | |
2928abce | 3931 | qemu_co_mutex_unlock(&s->lock); |
580384d6 | 3932 | return ret < 0 ? ret : -ENOTSUP; |
2928abce DL |
3933 | } |
3934 | } else { | |
3935 | qemu_co_mutex_lock(&s->lock); | |
621f0589 KW |
3936 | } |
3937 | ||
f5a5ca79 | 3938 | trace_qcow2_pwrite_zeroes(qemu_coroutine_self(), offset, bytes); |
5a64e942 | 3939 | |
a6841a2d AG |
3940 | /* Whatever is left can use real zero subclusters */ |
3941 | ret = qcow2_subcluster_zeroize(bs, offset, bytes, flags); | |
621f0589 KW |
3942 | qemu_co_mutex_unlock(&s->lock); |
3943 | ||
3944 | return ret; | |
3945 | } | |
3946 | ||
82e8a788 | 3947 | static coroutine_fn int qcow2_co_pdiscard(BlockDriverState *bs, |
f5a5ca79 | 3948 | int64_t offset, int bytes) |
5ea929e3 | 3949 | { |
6db39ae2 | 3950 | int ret; |
ff99129a | 3951 | BDRVQcow2State *s = bs->opaque; |
6db39ae2 | 3952 | |
80f5c011 AG |
3953 | /* If the image does not support QCOW_OFLAG_ZERO then discarding |
3954 | * clusters could expose stale data from the backing file. */ | |
3955 | if (s->qcow_version < 3 && bs->backing) { | |
3956 | return -ENOTSUP; | |
3957 | } | |
3958 | ||
f5a5ca79 MP |
3959 | if (!QEMU_IS_ALIGNED(offset | bytes, s->cluster_size)) { |
3960 | assert(bytes < s->cluster_size); | |
048c5fd1 EB |
3961 | /* Ignore partial clusters, except for the special case of the |
3962 | * complete partial cluster at the end of an unaligned file */ | |
3963 | if (!QEMU_IS_ALIGNED(offset, s->cluster_size) || | |
f5a5ca79 | 3964 | offset + bytes != bs->total_sectors * BDRV_SECTOR_SIZE) { |
048c5fd1 EB |
3965 | return -ENOTSUP; |
3966 | } | |
49228d1e EB |
3967 | } |
3968 | ||
6db39ae2 | 3969 | qemu_co_mutex_lock(&s->lock); |
f5a5ca79 | 3970 | ret = qcow2_cluster_discard(bs, offset, bytes, QCOW2_DISCARD_REQUEST, |
d2cb36af | 3971 | false); |
6db39ae2 PB |
3972 | qemu_co_mutex_unlock(&s->lock); |
3973 | return ret; | |
5ea929e3 KW |
3974 | } |
3975 | ||
fd9fcd37 FZ |
3976 | static int coroutine_fn |
3977 | qcow2_co_copy_range_from(BlockDriverState *bs, | |
3978 | BdrvChild *src, uint64_t src_offset, | |
3979 | BdrvChild *dst, uint64_t dst_offset, | |
67b51fb9 VSO |
3980 | uint64_t bytes, BdrvRequestFlags read_flags, |
3981 | BdrvRequestFlags write_flags) | |
fd9fcd37 FZ |
3982 | { |
3983 | BDRVQcow2State *s = bs->opaque; | |
3984 | int ret; | |
3985 | unsigned int cur_bytes; /* number of bytes in current iteration */ | |
3986 | BdrvChild *child = NULL; | |
67b51fb9 | 3987 | BdrvRequestFlags cur_write_flags; |
fd9fcd37 FZ |
3988 | |
3989 | assert(!bs->encrypted); | |
3990 | qemu_co_mutex_lock(&s->lock); | |
3991 | ||
3992 | while (bytes != 0) { | |
3993 | uint64_t copy_offset = 0; | |
10dabdc5 | 3994 | QCow2SubclusterType type; |
fd9fcd37 FZ |
3995 | /* prepare next request */ |
3996 | cur_bytes = MIN(bytes, INT_MAX); | |
67b51fb9 | 3997 | cur_write_flags = write_flags; |
fd9fcd37 | 3998 | |
ca4a0bb8 AG |
3999 | ret = qcow2_get_host_offset(bs, src_offset, &cur_bytes, |
4000 | ©_offset, &type); | |
fd9fcd37 FZ |
4001 | if (ret < 0) { |
4002 | goto out; | |
4003 | } | |
4004 | ||
ca4a0bb8 | 4005 | switch (type) { |
10dabdc5 | 4006 | case QCOW2_SUBCLUSTER_UNALLOCATED_PLAIN: |
97490a14 | 4007 | case QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC: |
fd9fcd37 FZ |
4008 | if (bs->backing && bs->backing->bs) { |
4009 | int64_t backing_length = bdrv_getlength(bs->backing->bs); | |
4010 | if (src_offset >= backing_length) { | |
67b51fb9 | 4011 | cur_write_flags |= BDRV_REQ_ZERO_WRITE; |
fd9fcd37 FZ |
4012 | } else { |
4013 | child = bs->backing; | |
4014 | cur_bytes = MIN(cur_bytes, backing_length - src_offset); | |
4015 | copy_offset = src_offset; | |
4016 | } | |
4017 | } else { | |
67b51fb9 | 4018 | cur_write_flags |= BDRV_REQ_ZERO_WRITE; |
fd9fcd37 FZ |
4019 | } |
4020 | break; | |
4021 | ||
10dabdc5 AG |
4022 | case QCOW2_SUBCLUSTER_ZERO_PLAIN: |
4023 | case QCOW2_SUBCLUSTER_ZERO_ALLOC: | |
67b51fb9 | 4024 | cur_write_flags |= BDRV_REQ_ZERO_WRITE; |
fd9fcd37 FZ |
4025 | break; |
4026 | ||
10dabdc5 | 4027 | case QCOW2_SUBCLUSTER_COMPRESSED: |
fd9fcd37 FZ |
4028 | ret = -ENOTSUP; |
4029 | goto out; | |
fd9fcd37 | 4030 | |
10dabdc5 | 4031 | case QCOW2_SUBCLUSTER_NORMAL: |
966b000f | 4032 | child = s->data_file; |
fd9fcd37 FZ |
4033 | break; |
4034 | ||
4035 | default: | |
4036 | abort(); | |
4037 | } | |
4038 | qemu_co_mutex_unlock(&s->lock); | |
4039 | ret = bdrv_co_copy_range_from(child, | |
4040 | copy_offset, | |
4041 | dst, dst_offset, | |
67b51fb9 | 4042 | cur_bytes, read_flags, cur_write_flags); |
fd9fcd37 FZ |
4043 | qemu_co_mutex_lock(&s->lock); |
4044 | if (ret < 0) { | |
4045 | goto out; | |
4046 | } | |
4047 | ||
4048 | bytes -= cur_bytes; | |
4049 | src_offset += cur_bytes; | |
4050 | dst_offset += cur_bytes; | |
4051 | } | |
4052 | ret = 0; | |
4053 | ||
4054 | out: | |
4055 | qemu_co_mutex_unlock(&s->lock); | |
4056 | return ret; | |
4057 | } | |
4058 | ||
4059 | static int coroutine_fn | |
4060 | qcow2_co_copy_range_to(BlockDriverState *bs, | |
4061 | BdrvChild *src, uint64_t src_offset, | |
4062 | BdrvChild *dst, uint64_t dst_offset, | |
67b51fb9 VSO |
4063 | uint64_t bytes, BdrvRequestFlags read_flags, |
4064 | BdrvRequestFlags write_flags) | |
fd9fcd37 FZ |
4065 | { |
4066 | BDRVQcow2State *s = bs->opaque; | |
fd9fcd37 FZ |
4067 | int ret; |
4068 | unsigned int cur_bytes; /* number of sectors in current iteration */ | |
bfd0989a | 4069 | uint64_t host_offset; |
fd9fcd37 FZ |
4070 | QCowL2Meta *l2meta = NULL; |
4071 | ||
4072 | assert(!bs->encrypted); | |
fd9fcd37 FZ |
4073 | |
4074 | qemu_co_mutex_lock(&s->lock); | |
4075 | ||
4076 | while (bytes != 0) { | |
4077 | ||
4078 | l2meta = NULL; | |
4079 | ||
fd9fcd37 FZ |
4080 | cur_bytes = MIN(bytes, INT_MAX); |
4081 | ||
4082 | /* TODO: | |
4083 | * If src->bs == dst->bs, we could simply copy by incrementing | |
4084 | * the refcnt, without copying user data. | |
4085 | * Or if src->bs == dst->bs->backing->bs, we could copy by discarding. */ | |
bfd0989a AG |
4086 | ret = qcow2_alloc_host_offset(bs, dst_offset, &cur_bytes, |
4087 | &host_offset, &l2meta); | |
fd9fcd37 FZ |
4088 | if (ret < 0) { |
4089 | goto fail; | |
4090 | } | |
4091 | ||
bfd0989a AG |
4092 | ret = qcow2_pre_write_overlap_check(bs, 0, host_offset, cur_bytes, |
4093 | true); | |
fd9fcd37 FZ |
4094 | if (ret < 0) { |
4095 | goto fail; | |
4096 | } | |
4097 | ||
4098 | qemu_co_mutex_unlock(&s->lock); | |
bfd0989a | 4099 | ret = bdrv_co_copy_range_to(src, src_offset, s->data_file, host_offset, |
67b51fb9 | 4100 | cur_bytes, read_flags, write_flags); |
fd9fcd37 FZ |
4101 | qemu_co_mutex_lock(&s->lock); |
4102 | if (ret < 0) { | |
4103 | goto fail; | |
4104 | } | |
4105 | ||
4106 | ret = qcow2_handle_l2meta(bs, &l2meta, true); | |
4107 | if (ret) { | |
4108 | goto fail; | |
4109 | } | |
4110 | ||
4111 | bytes -= cur_bytes; | |
e06f4639 | 4112 | src_offset += cur_bytes; |
fd9fcd37 FZ |
4113 | dst_offset += cur_bytes; |
4114 | } | |
4115 | ret = 0; | |
4116 | ||
4117 | fail: | |
4118 | qcow2_handle_l2meta(bs, &l2meta, false); | |
4119 | ||
4120 | qemu_co_mutex_unlock(&s->lock); | |
4121 | ||
fd9fcd37 FZ |
4122 | trace_qcow2_writev_done_req(qemu_coroutine_self(), ret); |
4123 | ||
4124 | return ret; | |
4125 | } | |
4126 | ||
061ca8a3 | 4127 | static int coroutine_fn qcow2_co_truncate(BlockDriverState *bs, int64_t offset, |
c80d8b06 | 4128 | bool exact, PreallocMode prealloc, |
92b92799 | 4129 | BdrvRequestFlags flags, Error **errp) |
419b19d9 | 4130 | { |
ff99129a | 4131 | BDRVQcow2State *s = bs->opaque; |
95b98f34 | 4132 | uint64_t old_length; |
2cf7cfa1 KW |
4133 | int64_t new_l1_size; |
4134 | int ret; | |
45b4949c | 4135 | QDict *options; |
419b19d9 | 4136 | |
772d1f97 HR |
4137 | if (prealloc != PREALLOC_MODE_OFF && prealloc != PREALLOC_MODE_METADATA && |
4138 | prealloc != PREALLOC_MODE_FALLOC && prealloc != PREALLOC_MODE_FULL) | |
4139 | { | |
8243ccb7 | 4140 | error_setg(errp, "Unsupported preallocation mode '%s'", |
977c736f | 4141 | PreallocMode_str(prealloc)); |
8243ccb7 HR |
4142 | return -ENOTSUP; |
4143 | } | |
4144 | ||
3afea402 AG |
4145 | if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) { |
4146 | error_setg(errp, "The new size must be a multiple of %u", | |
4147 | (unsigned) BDRV_SECTOR_SIZE); | |
419b19d9 SH |
4148 | return -EINVAL; |
4149 | } | |
4150 | ||
061ca8a3 KW |
4151 | qemu_co_mutex_lock(&s->lock); |
4152 | ||
7fa140ab EB |
4153 | /* |
4154 | * Even though we store snapshot size for all images, it was not | |
4155 | * required until v3, so it is not safe to proceed for v2. | |
4156 | */ | |
4157 | if (s->nb_snapshots && s->qcow_version < 3) { | |
4158 | error_setg(errp, "Can't resize a v2 image which has snapshots"); | |
061ca8a3 KW |
4159 | ret = -ENOTSUP; |
4160 | goto fail; | |
419b19d9 SH |
4161 | } |
4162 | ||
ee1244a2 | 4163 | /* See qcow2-bitmap.c for which bitmap scenarios prevent a resize. */ |
d19c6b36 | 4164 | if (qcow2_truncate_bitmaps_check(bs, errp)) { |
061ca8a3 KW |
4165 | ret = -ENOTSUP; |
4166 | goto fail; | |
88ddffae VSO |
4167 | } |
4168 | ||
bd016b91 | 4169 | old_length = bs->total_sectors * BDRV_SECTOR_SIZE; |
46b732cd | 4170 | new_l1_size = size_to_l1(s, offset); |
95b98f34 | 4171 | |
95b98f34 | 4172 | if (offset < old_length) { |
163bc39d | 4173 | int64_t last_cluster, old_file_size; |
46b732cd PB |
4174 | if (prealloc != PREALLOC_MODE_OFF) { |
4175 | error_setg(errp, | |
4176 | "Preallocation can't be used for shrinking an image"); | |
061ca8a3 KW |
4177 | ret = -EINVAL; |
4178 | goto fail; | |
46b732cd | 4179 | } |
419b19d9 | 4180 | |
46b732cd PB |
4181 | ret = qcow2_cluster_discard(bs, ROUND_UP(offset, s->cluster_size), |
4182 | old_length - ROUND_UP(offset, | |
4183 | s->cluster_size), | |
4184 | QCOW2_DISCARD_ALWAYS, true); | |
4185 | if (ret < 0) { | |
4186 | error_setg_errno(errp, -ret, "Failed to discard cropped clusters"); | |
061ca8a3 | 4187 | goto fail; |
46b732cd PB |
4188 | } |
4189 | ||
4190 | ret = qcow2_shrink_l1_table(bs, new_l1_size); | |
4191 | if (ret < 0) { | |
4192 | error_setg_errno(errp, -ret, | |
4193 | "Failed to reduce the number of L2 tables"); | |
061ca8a3 | 4194 | goto fail; |
46b732cd PB |
4195 | } |
4196 | ||
4197 | ret = qcow2_shrink_reftable(bs); | |
4198 | if (ret < 0) { | |
4199 | error_setg_errno(errp, -ret, | |
4200 | "Failed to discard unused refblocks"); | |
061ca8a3 | 4201 | goto fail; |
46b732cd | 4202 | } |
163bc39d PB |
4203 | |
4204 | old_file_size = bdrv_getlength(bs->file->bs); | |
4205 | if (old_file_size < 0) { | |
4206 | error_setg_errno(errp, -old_file_size, | |
4207 | "Failed to inquire current file length"); | |
061ca8a3 KW |
4208 | ret = old_file_size; |
4209 | goto fail; | |
163bc39d PB |
4210 | } |
4211 | last_cluster = qcow2_get_last_cluster(bs, old_file_size); | |
4212 | if (last_cluster < 0) { | |
4213 | error_setg_errno(errp, -last_cluster, | |
4214 | "Failed to find the last cluster"); | |
061ca8a3 KW |
4215 | ret = last_cluster; |
4216 | goto fail; | |
163bc39d PB |
4217 | } |
4218 | if ((last_cluster + 1) * s->cluster_size < old_file_size) { | |
233521b1 HR |
4219 | Error *local_err = NULL; |
4220 | ||
e61a28a9 HR |
4221 | /* |
4222 | * Do not pass @exact here: It will not help the user if | |
4223 | * we get an error here just because they wanted to shrink | |
4224 | * their qcow2 image (on a block device) with qemu-img. | |
4225 | * (And on the qcow2 layer, the @exact requirement is | |
4226 | * always fulfilled, so there is no need to pass it on.) | |
4227 | */ | |
061ca8a3 | 4228 | bdrv_co_truncate(bs->file, (last_cluster + 1) * s->cluster_size, |
7b8e4857 | 4229 | false, PREALLOC_MODE_OFF, 0, &local_err); |
233521b1 HR |
4230 | if (local_err) { |
4231 | warn_reportf_err(local_err, | |
4232 | "Failed to truncate the tail of the image: "); | |
163bc39d PB |
4233 | } |
4234 | } | |
46b732cd PB |
4235 | } else { |
4236 | ret = qcow2_grow_l1_table(bs, new_l1_size, true); | |
4237 | if (ret < 0) { | |
4238 | error_setg_errno(errp, -ret, "Failed to grow the L1 table"); | |
061ca8a3 | 4239 | goto fail; |
46b732cd | 4240 | } |
419b19d9 SH |
4241 | } |
4242 | ||
95b98f34 HR |
4243 | switch (prealloc) { |
4244 | case PREALLOC_MODE_OFF: | |
718c0fce | 4245 | if (has_data_file(bs)) { |
e61a28a9 HR |
4246 | /* |
4247 | * If the caller wants an exact resize, the external data | |
4248 | * file should be resized to the exact target size, too, | |
4249 | * so we pass @exact here. | |
4250 | */ | |
7b8e4857 KW |
4251 | ret = bdrv_co_truncate(s->data_file, offset, exact, prealloc, 0, |
4252 | errp); | |
718c0fce KW |
4253 | if (ret < 0) { |
4254 | goto fail; | |
4255 | } | |
4256 | } | |
95b98f34 HR |
4257 | break; |
4258 | ||
4259 | case PREALLOC_MODE_METADATA: | |
718c0fce | 4260 | ret = preallocate_co(bs, old_length, offset, prealloc, errp); |
95b98f34 | 4261 | if (ret < 0) { |
061ca8a3 | 4262 | goto fail; |
95b98f34 HR |
4263 | } |
4264 | break; | |
4265 | ||
772d1f97 HR |
4266 | case PREALLOC_MODE_FALLOC: |
4267 | case PREALLOC_MODE_FULL: | |
4268 | { | |
4269 | int64_t allocation_start, host_offset, guest_offset; | |
4270 | int64_t clusters_allocated; | |
4b96fa38 | 4271 | int64_t old_file_size, last_cluster, new_file_size; |
772d1f97 | 4272 | uint64_t nb_new_data_clusters, nb_new_l2_tables; |
40dee943 | 4273 | bool subclusters_need_allocation = false; |
772d1f97 | 4274 | |
966b000f KW |
4275 | /* With a data file, preallocation means just allocating the metadata |
4276 | * and forwarding the truncate request to the data file */ | |
4277 | if (has_data_file(bs)) { | |
718c0fce | 4278 | ret = preallocate_co(bs, old_length, offset, prealloc, errp); |
966b000f | 4279 | if (ret < 0) { |
966b000f KW |
4280 | goto fail; |
4281 | } | |
4282 | break; | |
4283 | } | |
4284 | ||
772d1f97 HR |
4285 | old_file_size = bdrv_getlength(bs->file->bs); |
4286 | if (old_file_size < 0) { | |
4287 | error_setg_errno(errp, -old_file_size, | |
4288 | "Failed to inquire current file length"); | |
061ca8a3 KW |
4289 | ret = old_file_size; |
4290 | goto fail; | |
772d1f97 | 4291 | } |
4b96fa38 HR |
4292 | |
4293 | last_cluster = qcow2_get_last_cluster(bs, old_file_size); | |
4294 | if (last_cluster >= 0) { | |
4295 | old_file_size = (last_cluster + 1) * s->cluster_size; | |
4296 | } else { | |
4297 | old_file_size = ROUND_UP(old_file_size, s->cluster_size); | |
4298 | } | |
772d1f97 | 4299 | |
a5675f39 AG |
4300 | nb_new_data_clusters = (ROUND_UP(offset, s->cluster_size) - |
4301 | start_of_cluster(s, old_length)) >> s->cluster_bits; | |
772d1f97 HR |
4302 | |
4303 | /* This is an overestimation; we will not actually allocate space for | |
4304 | * these in the file but just make sure the new refcount structures are | |
4305 | * able to cover them so we will not have to allocate new refblocks | |
4306 | * while entering the data blocks in the potentially new L2 tables. | |
4307 | * (We do not actually care where the L2 tables are placed. Maybe they | |
4308 | * are already allocated or they can be placed somewhere before | |
4309 | * @old_file_size. It does not matter because they will be fully | |
4310 | * allocated automatically, so they do not need to be covered by the | |
4311 | * preallocation. All that matters is that we will not have to allocate | |
4312 | * new refcount structures for them.) */ | |
4313 | nb_new_l2_tables = DIV_ROUND_UP(nb_new_data_clusters, | |
c8fd8554 | 4314 | s->cluster_size / l2_entry_size(s)); |
772d1f97 HR |
4315 | /* The cluster range may not be aligned to L2 boundaries, so add one L2 |
4316 | * table for a potential head/tail */ | |
4317 | nb_new_l2_tables++; | |
4318 | ||
4319 | allocation_start = qcow2_refcount_area(bs, old_file_size, | |
4320 | nb_new_data_clusters + | |
4321 | nb_new_l2_tables, | |
4322 | true, 0, 0); | |
4323 | if (allocation_start < 0) { | |
4324 | error_setg_errno(errp, -allocation_start, | |
4325 | "Failed to resize refcount structures"); | |
061ca8a3 KW |
4326 | ret = allocation_start; |
4327 | goto fail; | |
772d1f97 HR |
4328 | } |
4329 | ||
4330 | clusters_allocated = qcow2_alloc_clusters_at(bs, allocation_start, | |
4331 | nb_new_data_clusters); | |
4332 | if (clusters_allocated < 0) { | |
4333 | error_setg_errno(errp, -clusters_allocated, | |
4334 | "Failed to allocate data clusters"); | |
061ca8a3 KW |
4335 | ret = clusters_allocated; |
4336 | goto fail; | |
772d1f97 HR |
4337 | } |
4338 | ||
4339 | assert(clusters_allocated == nb_new_data_clusters); | |
4340 | ||
4341 | /* Allocate the data area */ | |
4342 | new_file_size = allocation_start + | |
4343 | nb_new_data_clusters * s->cluster_size; | |
eb8a0cf3 KW |
4344 | /* |
4345 | * Image file grows, so @exact does not matter. | |
4346 | * | |
4347 | * If we need to zero out the new area, try first whether the protocol | |
4348 | * driver can already take care of this. | |
4349 | */ | |
4350 | if (flags & BDRV_REQ_ZERO_WRITE) { | |
4351 | ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, | |
4352 | BDRV_REQ_ZERO_WRITE, NULL); | |
4353 | if (ret >= 0) { | |
4354 | flags &= ~BDRV_REQ_ZERO_WRITE; | |
40dee943 AG |
4355 | /* Ensure that we read zeroes and not backing file data */ |
4356 | subclusters_need_allocation = true; | |
eb8a0cf3 KW |
4357 | } |
4358 | } else { | |
4359 | ret = -1; | |
4360 | } | |
4361 | if (ret < 0) { | |
4362 | ret = bdrv_co_truncate(bs->file, new_file_size, false, prealloc, 0, | |
4363 | errp); | |
4364 | } | |
772d1f97 HR |
4365 | if (ret < 0) { |
4366 | error_prepend(errp, "Failed to resize underlying file: "); | |
4367 | qcow2_free_clusters(bs, allocation_start, | |
4368 | nb_new_data_clusters * s->cluster_size, | |
4369 | QCOW2_DISCARD_OTHER); | |
061ca8a3 | 4370 | goto fail; |
772d1f97 HR |
4371 | } |
4372 | ||
4373 | /* Create the necessary L2 entries */ | |
4374 | host_offset = allocation_start; | |
4375 | guest_offset = old_length; | |
4376 | while (nb_new_data_clusters) { | |
13bec229 AG |
4377 | int64_t nb_clusters = MIN( |
4378 | nb_new_data_clusters, | |
4379 | s->l2_slice_size - offset_to_l2_slice_index(s, guest_offset)); | |
a5675f39 AG |
4380 | unsigned cow_start_length = offset_into_cluster(s, guest_offset); |
4381 | QCowL2Meta allocation; | |
4382 | guest_offset = start_of_cluster(s, guest_offset); | |
4383 | allocation = (QCowL2Meta) { | |
772d1f97 HR |
4384 | .offset = guest_offset, |
4385 | .alloc_offset = host_offset, | |
4386 | .nb_clusters = nb_clusters, | |
a5675f39 AG |
4387 | .cow_start = { |
4388 | .offset = 0, | |
4389 | .nb_bytes = cow_start_length, | |
4390 | }, | |
4391 | .cow_end = { | |
4392 | .offset = nb_clusters << s->cluster_bits, | |
4393 | .nb_bytes = 0, | |
4394 | }, | |
40dee943 | 4395 | .prealloc = !subclusters_need_allocation, |
772d1f97 HR |
4396 | }; |
4397 | qemu_co_queue_init(&allocation.dependent_requests); | |
4398 | ||
4399 | ret = qcow2_alloc_cluster_link_l2(bs, &allocation); | |
4400 | if (ret < 0) { | |
4401 | error_setg_errno(errp, -ret, "Failed to update L2 tables"); | |
4402 | qcow2_free_clusters(bs, host_offset, | |
4403 | nb_new_data_clusters * s->cluster_size, | |
4404 | QCOW2_DISCARD_OTHER); | |
061ca8a3 | 4405 | goto fail; |
772d1f97 HR |
4406 | } |
4407 | ||
4408 | guest_offset += nb_clusters * s->cluster_size; | |
4409 | host_offset += nb_clusters * s->cluster_size; | |
4410 | nb_new_data_clusters -= nb_clusters; | |
4411 | } | |
4412 | break; | |
4413 | } | |
4414 | ||
95b98f34 HR |
4415 | default: |
4416 | g_assert_not_reached(); | |
4417 | } | |
4418 | ||
f01643fb | 4419 | if ((flags & BDRV_REQ_ZERO_WRITE) && offset > old_length) { |
a6841a2d | 4420 | uint64_t zero_start = QEMU_ALIGN_UP(old_length, s->subcluster_size); |
f01643fb KW |
4421 | |
4422 | /* | |
a6841a2d AG |
4423 | * Use zero clusters as much as we can. qcow2_subcluster_zeroize() |
4424 | * requires a subcluster-aligned start. The end may be unaligned if | |
4425 | * it is at the end of the image (which it is here). | |
f01643fb | 4426 | */ |
e4d7019e | 4427 | if (offset > zero_start) { |
a6841a2d AG |
4428 | ret = qcow2_subcluster_zeroize(bs, zero_start, offset - zero_start, |
4429 | 0); | |
e4d7019e AG |
4430 | if (ret < 0) { |
4431 | error_setg_errno(errp, -ret, "Failed to zero out new clusters"); | |
4432 | goto fail; | |
4433 | } | |
f01643fb KW |
4434 | } |
4435 | ||
4436 | /* Write explicit zeros for the unaligned head */ | |
4437 | if (zero_start > old_length) { | |
e4d7019e | 4438 | uint64_t len = MIN(zero_start, offset) - old_length; |
f01643fb KW |
4439 | uint8_t *buf = qemu_blockalign0(bs, len); |
4440 | QEMUIOVector qiov; | |
4441 | qemu_iovec_init_buf(&qiov, buf, len); | |
4442 | ||
4443 | qemu_co_mutex_unlock(&s->lock); | |
4444 | ret = qcow2_co_pwritev_part(bs, old_length, len, &qiov, 0, 0); | |
4445 | qemu_co_mutex_lock(&s->lock); | |
4446 | ||
4447 | qemu_vfree(buf); | |
4448 | if (ret < 0) { | |
4449 | error_setg_errno(errp, -ret, "Failed to zero out the new area"); | |
4450 | goto fail; | |
4451 | } | |
4452 | } | |
4453 | } | |
4454 | ||
95b98f34 HR |
4455 | if (prealloc != PREALLOC_MODE_OFF) { |
4456 | /* Flush metadata before actually changing the image size */ | |
061ca8a3 | 4457 | ret = qcow2_write_caches(bs); |
95b98f34 HR |
4458 | if (ret < 0) { |
4459 | error_setg_errno(errp, -ret, | |
4460 | "Failed to flush the preallocated area to disk"); | |
061ca8a3 | 4461 | goto fail; |
95b98f34 HR |
4462 | } |
4463 | } | |
4464 | ||
45b4949c LB |
4465 | bs->total_sectors = offset / BDRV_SECTOR_SIZE; |
4466 | ||
419b19d9 SH |
4467 | /* write updated header.size */ |
4468 | offset = cpu_to_be64(offset); | |
d9ca2ea2 | 4469 | ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size), |
02b1ecfa | 4470 | &offset, sizeof(offset)); |
419b19d9 | 4471 | if (ret < 0) { |
f59adb32 | 4472 | error_setg_errno(errp, -ret, "Failed to update the image size"); |
061ca8a3 | 4473 | goto fail; |
419b19d9 SH |
4474 | } |
4475 | ||
4476 | s->l1_vm_state_index = new_l1_size; | |
45b4949c LB |
4477 | |
4478 | /* Update cache sizes */ | |
4479 | options = qdict_clone_shallow(bs->options); | |
4480 | ret = qcow2_update_options(bs, options, s->flags, errp); | |
4481 | qobject_unref(options); | |
4482 | if (ret < 0) { | |
4483 | goto fail; | |
4484 | } | |
061ca8a3 KW |
4485 | ret = 0; |
4486 | fail: | |
4487 | qemu_co_mutex_unlock(&s->lock); | |
4488 | return ret; | |
419b19d9 SH |
4489 | } |
4490 | ||
fcccefc5 | 4491 | static coroutine_fn int |
0d483dce | 4492 | qcow2_co_pwritev_compressed_task(BlockDriverState *bs, |
5396234b VSO |
4493 | uint64_t offset, uint64_t bytes, |
4494 | QEMUIOVector *qiov, size_t qiov_offset) | |
20d97356 | 4495 | { |
ff99129a | 4496 | BDRVQcow2State *s = bs->opaque; |
2714f13d | 4497 | int ret; |
e1f4a37a | 4498 | ssize_t out_len; |
fcccefc5 | 4499 | uint8_t *buf, *out_buf; |
77e023ff | 4500 | uint64_t cluster_offset; |
20d97356 | 4501 | |
0d483dce AS |
4502 | assert(bytes == s->cluster_size || (bytes < s->cluster_size && |
4503 | (offset + bytes == bs->total_sectors << BDRV_SECTOR_BITS))); | |
3e3b838f | 4504 | |
a2c0ca6f | 4505 | buf = qemu_blockalign(bs, s->cluster_size); |
0d483dce | 4506 | if (bytes < s->cluster_size) { |
a2c0ca6f PB |
4507 | /* Zero-pad last write if image size is not cluster aligned */ |
4508 | memset(buf + bytes, 0, s->cluster_size - bytes); | |
f4d38bef | 4509 | } |
5396234b | 4510 | qemu_iovec_to_buf(qiov, qiov_offset, buf, bytes); |
20d97356 | 4511 | |
ebf7bba0 | 4512 | out_buf = g_malloc(s->cluster_size); |
20d97356 | 4513 | |
6994fd78 VSO |
4514 | out_len = qcow2_co_compress(bs, out_buf, s->cluster_size - 1, |
4515 | buf, s->cluster_size); | |
e1f4a37a | 4516 | if (out_len == -ENOMEM) { |
20d97356 | 4517 | /* could not compress: write normal cluster */ |
5396234b | 4518 | ret = qcow2_co_pwritev_part(bs, offset, bytes, qiov, qiov_offset, 0); |
8f1efd00 KW |
4519 | if (ret < 0) { |
4520 | goto fail; | |
4521 | } | |
fcccefc5 | 4522 | goto success; |
e1f4a37a AG |
4523 | } else if (out_len < 0) { |
4524 | ret = -EINVAL; | |
4525 | goto fail; | |
fcccefc5 | 4526 | } |
cf93980e | 4527 | |
fcccefc5 | 4528 | qemu_co_mutex_lock(&s->lock); |
77e023ff KW |
4529 | ret = qcow2_alloc_compressed_cluster_offset(bs, offset, out_len, |
4530 | &cluster_offset); | |
4531 | if (ret < 0) { | |
fcccefc5 | 4532 | qemu_co_mutex_unlock(&s->lock); |
fcccefc5 PB |
4533 | goto fail; |
4534 | } | |
cf93980e | 4535 | |
966b000f | 4536 | ret = qcow2_pre_write_overlap_check(bs, 0, cluster_offset, out_len, true); |
fcccefc5 PB |
4537 | qemu_co_mutex_unlock(&s->lock); |
4538 | if (ret < 0) { | |
4539 | goto fail; | |
20d97356 BS |
4540 | } |
4541 | ||
966b000f | 4542 | BLKDBG_EVENT(s->data_file, BLKDBG_WRITE_COMPRESSED); |
b00cb15b | 4543 | ret = bdrv_co_pwrite(s->data_file, cluster_offset, out_len, out_buf, 0); |
fcccefc5 PB |
4544 | if (ret < 0) { |
4545 | goto fail; | |
4546 | } | |
4547 | success: | |
8f1efd00 KW |
4548 | ret = 0; |
4549 | fail: | |
fcccefc5 | 4550 | qemu_vfree(buf); |
7267c094 | 4551 | g_free(out_buf); |
8f1efd00 | 4552 | return ret; |
20d97356 BS |
4553 | } |
4554 | ||
0d483dce AS |
4555 | static coroutine_fn int qcow2_co_pwritev_compressed_task_entry(AioTask *task) |
4556 | { | |
4557 | Qcow2AioTask *t = container_of(task, Qcow2AioTask, task); | |
4558 | ||
10dabdc5 | 4559 | assert(!t->subcluster_type && !t->l2meta); |
0d483dce AS |
4560 | |
4561 | return qcow2_co_pwritev_compressed_task(t->bs, t->offset, t->bytes, t->qiov, | |
4562 | t->qiov_offset); | |
4563 | } | |
4564 | ||
4565 | /* | |
4566 | * XXX: put compressed sectors first, then all the cluster aligned | |
4567 | * tables to avoid losing bytes in alignment | |
4568 | */ | |
4569 | static coroutine_fn int | |
4570 | qcow2_co_pwritev_compressed_part(BlockDriverState *bs, | |
4571 | uint64_t offset, uint64_t bytes, | |
4572 | QEMUIOVector *qiov, size_t qiov_offset) | |
4573 | { | |
4574 | BDRVQcow2State *s = bs->opaque; | |
4575 | AioTaskPool *aio = NULL; | |
4576 | int ret = 0; | |
4577 | ||
4578 | if (has_data_file(bs)) { | |
4579 | return -ENOTSUP; | |
4580 | } | |
4581 | ||
4582 | if (bytes == 0) { | |
4583 | /* | |
4584 | * align end of file to a sector boundary to ease reading with | |
4585 | * sector based I/Os | |
4586 | */ | |
4587 | int64_t len = bdrv_getlength(bs->file->bs); | |
4588 | if (len < 0) { | |
4589 | return len; | |
4590 | } | |
7b8e4857 KW |
4591 | return bdrv_co_truncate(bs->file, len, false, PREALLOC_MODE_OFF, 0, |
4592 | NULL); | |
0d483dce AS |
4593 | } |
4594 | ||
4595 | if (offset_into_cluster(s, offset)) { | |
4596 | return -EINVAL; | |
4597 | } | |
4598 | ||
fb43d2d4 AG |
4599 | if (offset_into_cluster(s, bytes) && |
4600 | (offset + bytes) != (bs->total_sectors << BDRV_SECTOR_BITS)) { | |
4601 | return -EINVAL; | |
4602 | } | |
4603 | ||
0d483dce AS |
4604 | while (bytes && aio_task_pool_status(aio) == 0) { |
4605 | uint64_t chunk_size = MIN(bytes, s->cluster_size); | |
4606 | ||
4607 | if (!aio && chunk_size != bytes) { | |
4608 | aio = aio_task_pool_new(QCOW2_MAX_WORKERS); | |
4609 | } | |
4610 | ||
4611 | ret = qcow2_add_task(bs, aio, qcow2_co_pwritev_compressed_task_entry, | |
4612 | 0, 0, offset, chunk_size, qiov, qiov_offset, NULL); | |
4613 | if (ret < 0) { | |
4614 | break; | |
4615 | } | |
4616 | qiov_offset += chunk_size; | |
4617 | offset += chunk_size; | |
4618 | bytes -= chunk_size; | |
4619 | } | |
4620 | ||
4621 | if (aio) { | |
4622 | aio_task_pool_wait_all(aio); | |
4623 | if (ret == 0) { | |
4624 | ret = aio_task_pool_status(aio); | |
4625 | } | |
4626 | g_free(aio); | |
4627 | } | |
4628 | ||
4629 | return ret; | |
4630 | } | |
4631 | ||
c3c10f72 VSO |
4632 | static int coroutine_fn |
4633 | qcow2_co_preadv_compressed(BlockDriverState *bs, | |
9c4269d5 | 4634 | uint64_t cluster_descriptor, |
c3c10f72 VSO |
4635 | uint64_t offset, |
4636 | uint64_t bytes, | |
df893d25 VSO |
4637 | QEMUIOVector *qiov, |
4638 | size_t qiov_offset) | |
f4b3e2a9 VSO |
4639 | { |
4640 | BDRVQcow2State *s = bs->opaque; | |
c3c10f72 | 4641 | int ret = 0, csize, nb_csectors; |
f4b3e2a9 | 4642 | uint64_t coffset; |
c3c10f72 | 4643 | uint8_t *buf, *out_buf; |
c3c10f72 | 4644 | int offset_in_cluster = offset_into_cluster(s, offset); |
f4b3e2a9 | 4645 | |
9c4269d5 AG |
4646 | coffset = cluster_descriptor & s->cluster_offset_mask; |
4647 | nb_csectors = ((cluster_descriptor >> s->csize_shift) & s->csize_mask) + 1; | |
b6c24694 AG |
4648 | csize = nb_csectors * QCOW2_COMPRESSED_SECTOR_SIZE - |
4649 | (coffset & ~QCOW2_COMPRESSED_SECTOR_MASK); | |
f4b3e2a9 | 4650 | |
c3c10f72 VSO |
4651 | buf = g_try_malloc(csize); |
4652 | if (!buf) { | |
4653 | return -ENOMEM; | |
4654 | } | |
f4b3e2a9 | 4655 | |
c3c10f72 | 4656 | out_buf = qemu_blockalign(bs, s->cluster_size); |
c068a1cd | 4657 | |
c3c10f72 | 4658 | BLKDBG_EVENT(bs->file, BLKDBG_READ_COMPRESSED); |
b00cb15b | 4659 | ret = bdrv_co_pread(bs->file, coffset, csize, buf, 0); |
c3c10f72 VSO |
4660 | if (ret < 0) { |
4661 | goto fail; | |
f4b3e2a9 | 4662 | } |
c3c10f72 | 4663 | |
e23c9d7a | 4664 | if (qcow2_co_decompress(bs, out_buf, s->cluster_size, buf, csize) < 0) { |
c3c10f72 VSO |
4665 | ret = -EIO; |
4666 | goto fail; | |
4667 | } | |
4668 | ||
df893d25 | 4669 | qemu_iovec_from_buf(qiov, qiov_offset, out_buf + offset_in_cluster, bytes); |
c3c10f72 VSO |
4670 | |
4671 | fail: | |
4672 | qemu_vfree(out_buf); | |
4673 | g_free(buf); | |
4674 | ||
4675 | return ret; | |
f4b3e2a9 VSO |
4676 | } |
4677 | ||
94054183 HR |
4678 | static int make_completely_empty(BlockDriverState *bs) |
4679 | { | |
ff99129a | 4680 | BDRVQcow2State *s = bs->opaque; |
ed3d2ec9 | 4681 | Error *local_err = NULL; |
94054183 HR |
4682 | int ret, l1_clusters; |
4683 | int64_t offset; | |
4684 | uint64_t *new_reftable = NULL; | |
4685 | uint64_t rt_entry, l1_size2; | |
4686 | struct { | |
4687 | uint64_t l1_offset; | |
4688 | uint64_t reftable_offset; | |
4689 | uint32_t reftable_clusters; | |
4690 | } QEMU_PACKED l1_ofs_rt_ofs_cls; | |
4691 | ||
4692 | ret = qcow2_cache_empty(bs, s->l2_table_cache); | |
4693 | if (ret < 0) { | |
4694 | goto fail; | |
4695 | } | |
4696 | ||
4697 | ret = qcow2_cache_empty(bs, s->refcount_block_cache); | |
4698 | if (ret < 0) { | |
4699 | goto fail; | |
4700 | } | |
4701 | ||
4702 | /* Refcounts will be broken utterly */ | |
4703 | ret = qcow2_mark_dirty(bs); | |
4704 | if (ret < 0) { | |
4705 | goto fail; | |
4706 | } | |
4707 | ||
4708 | BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE); | |
4709 | ||
02b1ecfa AG |
4710 | l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE); |
4711 | l1_size2 = (uint64_t)s->l1_size * L1E_SIZE; | |
94054183 HR |
4712 | |
4713 | /* After this call, neither the in-memory nor the on-disk refcount | |
4714 | * information accurately describe the actual references */ | |
4715 | ||
720ff280 | 4716 | ret = bdrv_pwrite_zeroes(bs->file, s->l1_table_offset, |
74021bc4 | 4717 | l1_clusters * s->cluster_size, 0); |
94054183 HR |
4718 | if (ret < 0) { |
4719 | goto fail_broken_refcounts; | |
4720 | } | |
4721 | memset(s->l1_table, 0, l1_size2); | |
4722 | ||
4723 | BLKDBG_EVENT(bs->file, BLKDBG_EMPTY_IMAGE_PREPARE); | |
4724 | ||
4725 | /* Overwrite enough clusters at the beginning of the sectors to place | |
4726 | * the refcount table, a refcount block and the L1 table in; this may | |
4727 | * overwrite parts of the existing refcount and L1 table, which is not | |
4728 | * an issue because the dirty flag is set, complete data loss is in fact | |
4729 | * desired and partial data loss is consequently fine as well */ | |
720ff280 | 4730 | ret = bdrv_pwrite_zeroes(bs->file, s->cluster_size, |
74021bc4 | 4731 | (2 + l1_clusters) * s->cluster_size, 0); |
94054183 HR |
4732 | /* This call (even if it failed overall) may have overwritten on-disk |
4733 | * refcount structures; in that case, the in-memory refcount information | |
4734 | * will probably differ from the on-disk information which makes the BDS | |
4735 | * unusable */ | |
4736 | if (ret < 0) { | |
4737 | goto fail_broken_refcounts; | |
4738 | } | |
4739 | ||
4740 | BLKDBG_EVENT(bs->file, BLKDBG_L1_UPDATE); | |
4741 | BLKDBG_EVENT(bs->file, BLKDBG_REFTABLE_UPDATE); | |
4742 | ||
4743 | /* "Create" an empty reftable (one cluster) directly after the image | |
4744 | * header and an empty L1 table three clusters after the image header; | |
4745 | * the cluster between those two will be used as the first refblock */ | |
f1f7a1dd PM |
4746 | l1_ofs_rt_ofs_cls.l1_offset = cpu_to_be64(3 * s->cluster_size); |
4747 | l1_ofs_rt_ofs_cls.reftable_offset = cpu_to_be64(s->cluster_size); | |
4748 | l1_ofs_rt_ofs_cls.reftable_clusters = cpu_to_be32(1); | |
d9ca2ea2 | 4749 | ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, l1_table_offset), |
94054183 HR |
4750 | &l1_ofs_rt_ofs_cls, sizeof(l1_ofs_rt_ofs_cls)); |
4751 | if (ret < 0) { | |
4752 | goto fail_broken_refcounts; | |
4753 | } | |
4754 | ||
4755 | s->l1_table_offset = 3 * s->cluster_size; | |
4756 | ||
02b1ecfa | 4757 | new_reftable = g_try_new0(uint64_t, s->cluster_size / REFTABLE_ENTRY_SIZE); |
94054183 HR |
4758 | if (!new_reftable) { |
4759 | ret = -ENOMEM; | |
4760 | goto fail_broken_refcounts; | |
4761 | } | |
4762 | ||
4763 | s->refcount_table_offset = s->cluster_size; | |
02b1ecfa | 4764 | s->refcount_table_size = s->cluster_size / REFTABLE_ENTRY_SIZE; |
7061a078 | 4765 | s->max_refcount_table_index = 0; |
94054183 HR |
4766 | |
4767 | g_free(s->refcount_table); | |
4768 | s->refcount_table = new_reftable; | |
4769 | new_reftable = NULL; | |
4770 | ||
4771 | /* Now the in-memory refcount information again corresponds to the on-disk | |
4772 | * information (reftable is empty and no refblocks (the refblock cache is | |
4773 | * empty)); however, this means some clusters (e.g. the image header) are | |
4774 | * referenced, but not refcounted, but the normal qcow2 code assumes that | |
4775 | * the in-memory information is always correct */ | |
4776 | ||
4777 | BLKDBG_EVENT(bs->file, BLKDBG_REFBLOCK_ALLOC); | |
4778 | ||
4779 | /* Enter the first refblock into the reftable */ | |
4780 | rt_entry = cpu_to_be64(2 * s->cluster_size); | |
d9ca2ea2 | 4781 | ret = bdrv_pwrite_sync(bs->file, s->cluster_size, |
94054183 HR |
4782 | &rt_entry, sizeof(rt_entry)); |
4783 | if (ret < 0) { | |
4784 | goto fail_broken_refcounts; | |
4785 | } | |
4786 | s->refcount_table[0] = 2 * s->cluster_size; | |
4787 | ||
4788 | s->free_cluster_index = 0; | |
4789 | assert(3 + l1_clusters <= s->refcount_block_size); | |
4790 | offset = qcow2_alloc_clusters(bs, 3 * s->cluster_size + l1_size2); | |
4791 | if (offset < 0) { | |
4792 | ret = offset; | |
4793 | goto fail_broken_refcounts; | |
4794 | } else if (offset > 0) { | |
4795 | error_report("First cluster in emptied image is in use"); | |
4796 | abort(); | |
4797 | } | |
4798 | ||
4799 | /* Now finally the in-memory information corresponds to the on-disk | |
4800 | * structures and is correct */ | |
4801 | ret = qcow2_mark_clean(bs); | |
4802 | if (ret < 0) { | |
4803 | goto fail; | |
4804 | } | |
4805 | ||
c80d8b06 | 4806 | ret = bdrv_truncate(bs->file, (3 + l1_clusters) * s->cluster_size, false, |
7b8e4857 | 4807 | PREALLOC_MODE_OFF, 0, &local_err); |
94054183 | 4808 | if (ret < 0) { |
ed3d2ec9 | 4809 | error_report_err(local_err); |
94054183 HR |
4810 | goto fail; |
4811 | } | |
4812 | ||
4813 | return 0; | |
4814 | ||
4815 | fail_broken_refcounts: | |
4816 | /* The BDS is unusable at this point. If we wanted to make it usable, we | |
4817 | * would have to call qcow2_refcount_close(), qcow2_refcount_init(), | |
4818 | * qcow2_check_refcounts(), qcow2_refcount_close() and qcow2_refcount_init() | |
4819 | * again. However, because the functions which could have caused this error | |
4820 | * path to be taken are used by those functions as well, it's very likely | |
4821 | * that that sequence will fail as well. Therefore, just eject the BDS. */ | |
4822 | bs->drv = NULL; | |
4823 | ||
4824 | fail: | |
4825 | g_free(new_reftable); | |
4826 | return ret; | |
4827 | } | |
4828 | ||
491d27e2 HR |
4829 | static int qcow2_make_empty(BlockDriverState *bs) |
4830 | { | |
ff99129a | 4831 | BDRVQcow2State *s = bs->opaque; |
d2cb36af EB |
4832 | uint64_t offset, end_offset; |
4833 | int step = QEMU_ALIGN_DOWN(INT_MAX, s->cluster_size); | |
94054183 HR |
4834 | int l1_clusters, ret = 0; |
4835 | ||
02b1ecfa | 4836 | l1_clusters = DIV_ROUND_UP(s->l1_size, s->cluster_size / L1E_SIZE); |
94054183 | 4837 | |
4096974e | 4838 | if (s->qcow_version >= 3 && !s->snapshots && !s->nb_bitmaps && |
f0603329 | 4839 | 3 + l1_clusters <= s->refcount_block_size && |
db04524f KW |
4840 | s->crypt_method_header != QCOW_CRYPT_LUKS && |
4841 | !has_data_file(bs)) { | |
4096974e EB |
4842 | /* The following function only works for qcow2 v3 images (it |
4843 | * requires the dirty flag) and only as long as there are no | |
4844 | * features that reserve extra clusters (such as snapshots, | |
4845 | * LUKS header, or persistent bitmaps), because it completely | |
4846 | * empties the image. Furthermore, the L1 table and three | |
4847 | * additional clusters (image header, refcount table, one | |
db04524f KW |
4848 | * refcount block) have to fit inside one refcount block. It |
4849 | * only resets the image file, i.e. does not work with an | |
4850 | * external data file. */ | |
94054183 HR |
4851 | return make_completely_empty(bs); |
4852 | } | |
491d27e2 | 4853 | |
94054183 HR |
4854 | /* This fallback code simply discards every active cluster; this is slow, |
4855 | * but works in all cases */ | |
d2cb36af EB |
4856 | end_offset = bs->total_sectors * BDRV_SECTOR_SIZE; |
4857 | for (offset = 0; offset < end_offset; offset += step) { | |
491d27e2 HR |
4858 | /* As this function is generally used after committing an external |
4859 | * snapshot, QCOW2_DISCARD_SNAPSHOT seems appropriate. Also, the | |
4860 | * default action for this kind of discard is to pass the discard, | |
4861 | * which will ideally result in an actually smaller image file, as | |
4862 | * is probably desired. */ | |
d2cb36af EB |
4863 | ret = qcow2_cluster_discard(bs, offset, MIN(step, end_offset - offset), |
4864 | QCOW2_DISCARD_SNAPSHOT, true); | |
491d27e2 HR |
4865 | if (ret < 0) { |
4866 | break; | |
4867 | } | |
4868 | } | |
4869 | ||
4870 | return ret; | |
4871 | } | |
4872 | ||
a968168c | 4873 | static coroutine_fn int qcow2_co_flush_to_os(BlockDriverState *bs) |
20d97356 | 4874 | { |
ff99129a | 4875 | BDRVQcow2State *s = bs->opaque; |
29c1a730 KW |
4876 | int ret; |
4877 | ||
8b94ff85 | 4878 | qemu_co_mutex_lock(&s->lock); |
8b220eb7 | 4879 | ret = qcow2_write_caches(bs); |
8b94ff85 | 4880 | qemu_co_mutex_unlock(&s->lock); |
29c1a730 | 4881 | |
8b220eb7 | 4882 | return ret; |
eb489bb1 KW |
4883 | } |
4884 | ||
c501c352 SH |
4885 | static BlockMeasureInfo *qcow2_measure(QemuOpts *opts, BlockDriverState *in_bs, |
4886 | Error **errp) | |
4887 | { | |
4888 | Error *local_err = NULL; | |
4889 | BlockMeasureInfo *info; | |
4890 | uint64_t required = 0; /* bytes that contribute to required size */ | |
4891 | uint64_t virtual_size; /* disk size as seen by guest */ | |
4892 | uint64_t refcount_bits; | |
4893 | uint64_t l2_tables; | |
61914f89 | 4894 | uint64_t luks_payload_size = 0; |
c501c352 SH |
4895 | size_t cluster_size; |
4896 | int version; | |
4897 | char *optstr; | |
4898 | PreallocMode prealloc; | |
4899 | bool has_backing_file; | |
61914f89 | 4900 | bool has_luks; |
7be20252 | 4901 | bool extended_l2; |
0dd07b29 | 4902 | size_t l2e_size; |
c501c352 SH |
4903 | |
4904 | /* Parse image creation options */ | |
7be20252 AG |
4905 | extended_l2 = qemu_opt_get_bool_del(opts, BLOCK_OPT_EXTL2, false); |
4906 | ||
4907 | cluster_size = qcow2_opt_get_cluster_size_del(opts, extended_l2, | |
4908 | &local_err); | |
c501c352 SH |
4909 | if (local_err) { |
4910 | goto err; | |
4911 | } | |
4912 | ||
4913 | version = qcow2_opt_get_version_del(opts, &local_err); | |
4914 | if (local_err) { | |
4915 | goto err; | |
4916 | } | |
4917 | ||
4918 | refcount_bits = qcow2_opt_get_refcount_bits_del(opts, version, &local_err); | |
4919 | if (local_err) { | |
4920 | goto err; | |
4921 | } | |
4922 | ||
4923 | optstr = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); | |
f7abe0ec | 4924 | prealloc = qapi_enum_parse(&PreallocMode_lookup, optstr, |
06c60b6c | 4925 | PREALLOC_MODE_OFF, &local_err); |
c501c352 SH |
4926 | g_free(optstr); |
4927 | if (local_err) { | |
4928 | goto err; | |
4929 | } | |
4930 | ||
4931 | optstr = qemu_opt_get_del(opts, BLOCK_OPT_BACKING_FILE); | |
4932 | has_backing_file = !!optstr; | |
4933 | g_free(optstr); | |
4934 | ||
61914f89 SH |
4935 | optstr = qemu_opt_get_del(opts, BLOCK_OPT_ENCRYPT_FORMAT); |
4936 | has_luks = optstr && strcmp(optstr, "luks") == 0; | |
4937 | g_free(optstr); | |
4938 | ||
4939 | if (has_luks) { | |
6d49d3a8 | 4940 | g_autoptr(QCryptoBlockCreateOptions) create_opts = NULL; |
90766d9d | 4941 | QDict *cryptoopts = qcow2_extract_crypto_opts(opts, "luks", errp); |
61914f89 SH |
4942 | size_t headerlen; |
4943 | ||
6d49d3a8 SH |
4944 | create_opts = block_crypto_create_opts_init(cryptoopts, errp); |
4945 | qobject_unref(cryptoopts); | |
4946 | if (!create_opts) { | |
4947 | goto err; | |
4948 | } | |
4949 | ||
4950 | if (!qcrypto_block_calculate_payload_offset(create_opts, | |
4951 | "encrypt.", | |
4952 | &headerlen, | |
4953 | &local_err)) { | |
61914f89 SH |
4954 | goto err; |
4955 | } | |
4956 | ||
4957 | luks_payload_size = ROUND_UP(headerlen, cluster_size); | |
4958 | } | |
4959 | ||
9e029689 AG |
4960 | virtual_size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); |
4961 | virtual_size = ROUND_UP(virtual_size, cluster_size); | |
c501c352 SH |
4962 | |
4963 | /* Check that virtual disk size is valid */ | |
0dd07b29 | 4964 | l2e_size = extended_l2 ? L2E_SIZE_EXTENDED : L2E_SIZE_NORMAL; |
c501c352 | 4965 | l2_tables = DIV_ROUND_UP(virtual_size / cluster_size, |
0dd07b29 | 4966 | cluster_size / l2e_size); |
02b1ecfa | 4967 | if (l2_tables * L1E_SIZE > QCOW_MAX_L1_SIZE) { |
c501c352 SH |
4968 | error_setg(&local_err, "The image size is too large " |
4969 | "(try using a larger cluster size)"); | |
4970 | goto err; | |
4971 | } | |
4972 | ||
4973 | /* Account for input image */ | |
4974 | if (in_bs) { | |
4975 | int64_t ssize = bdrv_getlength(in_bs); | |
4976 | if (ssize < 0) { | |
4977 | error_setg_errno(&local_err, -ssize, | |
4978 | "Unable to get image virtual_size"); | |
4979 | goto err; | |
4980 | } | |
4981 | ||
9e029689 | 4982 | virtual_size = ROUND_UP(ssize, cluster_size); |
c501c352 SH |
4983 | |
4984 | if (has_backing_file) { | |
4985 | /* We don't how much of the backing chain is shared by the input | |
4986 | * image and the new image file. In the worst case the new image's | |
4987 | * backing file has nothing in common with the input image. Be | |
4988 | * conservative and assume all clusters need to be written. | |
4989 | */ | |
4990 | required = virtual_size; | |
4991 | } else { | |
b85ee453 | 4992 | int64_t offset; |
31826642 | 4993 | int64_t pnum = 0; |
c501c352 | 4994 | |
31826642 EB |
4995 | for (offset = 0; offset < ssize; offset += pnum) { |
4996 | int ret; | |
c501c352 | 4997 | |
31826642 EB |
4998 | ret = bdrv_block_status_above(in_bs, NULL, offset, |
4999 | ssize - offset, &pnum, NULL, | |
5000 | NULL); | |
c501c352 SH |
5001 | if (ret < 0) { |
5002 | error_setg_errno(&local_err, -ret, | |
5003 | "Unable to get block status"); | |
5004 | goto err; | |
5005 | } | |
5006 | ||
5007 | if (ret & BDRV_BLOCK_ZERO) { | |
5008 | /* Skip zero regions (safe with no backing file) */ | |
5009 | } else if ((ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) == | |
5010 | (BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED)) { | |
5011 | /* Extend pnum to end of cluster for next iteration */ | |
31826642 | 5012 | pnum = ROUND_UP(offset + pnum, cluster_size) - offset; |
c501c352 SH |
5013 | |
5014 | /* Count clusters we've seen */ | |
31826642 | 5015 | required += offset % cluster_size + pnum; |
c501c352 SH |
5016 | } |
5017 | } | |
5018 | } | |
5019 | } | |
5020 | ||
5021 | /* Take into account preallocation. Nothing special is needed for | |
5022 | * PREALLOC_MODE_METADATA since metadata is always counted. | |
5023 | */ | |
5024 | if (prealloc == PREALLOC_MODE_FULL || prealloc == PREALLOC_MODE_FALLOC) { | |
5025 | required = virtual_size; | |
5026 | } | |
5027 | ||
5d72c68b | 5028 | info = g_new0(BlockMeasureInfo, 1); |
0dd07b29 | 5029 | info->fully_allocated = luks_payload_size + |
c501c352 | 5030 | qcow2_calc_prealloc_size(virtual_size, cluster_size, |
0dd07b29 | 5031 | ctz32(refcount_bits), extended_l2); |
c501c352 | 5032 | |
5d72c68b EB |
5033 | /* |
5034 | * Remove data clusters that are not required. This overestimates the | |
c501c352 | 5035 | * required size because metadata needed for the fully allocated file is |
5d72c68b EB |
5036 | * still counted. Show bitmaps only if both source and destination |
5037 | * would support them. | |
c501c352 SH |
5038 | */ |
5039 | info->required = info->fully_allocated - virtual_size + required; | |
5d72c68b EB |
5040 | info->has_bitmaps = version >= 3 && in_bs && |
5041 | bdrv_supports_persistent_dirty_bitmap(in_bs); | |
5042 | if (info->has_bitmaps) { | |
5043 | info->bitmaps = qcow2_get_persistent_dirty_bitmap_size(in_bs, | |
5044 | cluster_size); | |
5045 | } | |
c501c352 SH |
5046 | return info; |
5047 | ||
5048 | err: | |
5049 | error_propagate(errp, local_err); | |
5050 | return NULL; | |
5051 | } | |
5052 | ||
7c80ab3f | 5053 | static int qcow2_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
20d97356 | 5054 | { |
ff99129a | 5055 | BDRVQcow2State *s = bs->opaque; |
20d97356 | 5056 | bdi->cluster_size = s->cluster_size; |
7c80ab3f | 5057 | bdi->vm_state_offset = qcow2_vm_state_offset(s); |
20d97356 BS |
5058 | return 0; |
5059 | } | |
5060 | ||
1bf6e9ca AS |
5061 | static ImageInfoSpecific *qcow2_get_specific_info(BlockDriverState *bs, |
5062 | Error **errp) | |
37764dfb | 5063 | { |
ff99129a | 5064 | BDRVQcow2State *s = bs->opaque; |
0a12f6f8 DB |
5065 | ImageInfoSpecific *spec_info; |
5066 | QCryptoBlockInfo *encrypt_info = NULL; | |
37764dfb | 5067 | |
0a12f6f8 | 5068 | if (s->crypto != NULL) { |
83bad8cb VSO |
5069 | encrypt_info = qcrypto_block_get_info(s->crypto, errp); |
5070 | if (!encrypt_info) { | |
1bf6e9ca AS |
5071 | return NULL; |
5072 | } | |
0a12f6f8 DB |
5073 | } |
5074 | ||
5075 | spec_info = g_new(ImageInfoSpecific, 1); | |
37764dfb | 5076 | *spec_info = (ImageInfoSpecific){ |
6a8f9661 | 5077 | .type = IMAGE_INFO_SPECIFIC_KIND_QCOW2, |
b8968c87 | 5078 | .u.qcow2.data = g_new0(ImageInfoSpecificQCow2, 1), |
37764dfb HR |
5079 | }; |
5080 | if (s->qcow_version == 2) { | |
32bafa8f | 5081 | *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){ |
0709c5a1 HR |
5082 | .compat = g_strdup("0.10"), |
5083 | .refcount_bits = s->refcount_bits, | |
37764dfb HR |
5084 | }; |
5085 | } else if (s->qcow_version == 3) { | |
b8968c87 | 5086 | Qcow2BitmapInfoList *bitmaps; |
83bad8cb | 5087 | if (!qcow2_get_bitmap_info_list(bs, &bitmaps, errp)) { |
b8968c87 | 5088 | qapi_free_ImageInfoSpecific(spec_info); |
71eaec2e | 5089 | qapi_free_QCryptoBlockInfo(encrypt_info); |
b8968c87 AS |
5090 | return NULL; |
5091 | } | |
32bafa8f | 5092 | *spec_info->u.qcow2.data = (ImageInfoSpecificQCow2){ |
37764dfb HR |
5093 | .compat = g_strdup("1.1"), |
5094 | .lazy_refcounts = s->compatible_features & | |
5095 | QCOW2_COMPAT_LAZY_REFCOUNTS, | |
5096 | .has_lazy_refcounts = true, | |
9009b196 HR |
5097 | .corrupt = s->incompatible_features & |
5098 | QCOW2_INCOMPAT_CORRUPT, | |
5099 | .has_corrupt = true, | |
7be20252 AG |
5100 | .has_extended_l2 = true, |
5101 | .extended_l2 = has_subclusters(s), | |
0709c5a1 | 5102 | .refcount_bits = s->refcount_bits, |
b8968c87 AS |
5103 | .has_bitmaps = !!bitmaps, |
5104 | .bitmaps = bitmaps, | |
9b890bdc KW |
5105 | .has_data_file = !!s->image_data_file, |
5106 | .data_file = g_strdup(s->image_data_file), | |
6c3944dc KW |
5107 | .has_data_file_raw = has_data_file(bs), |
5108 | .data_file_raw = data_file_is_raw(bs), | |
572ad978 | 5109 | .compression_type = s->compression_type, |
37764dfb | 5110 | }; |
b1fc8f93 DL |
5111 | } else { |
5112 | /* if this assertion fails, this probably means a new version was | |
5113 | * added without having it covered here */ | |
5114 | assert(false); | |
37764dfb HR |
5115 | } |
5116 | ||
0a12f6f8 DB |
5117 | if (encrypt_info) { |
5118 | ImageInfoSpecificQCow2Encryption *qencrypt = | |
5119 | g_new(ImageInfoSpecificQCow2Encryption, 1); | |
5120 | switch (encrypt_info->format) { | |
5121 | case Q_CRYPTO_BLOCK_FORMAT_QCOW: | |
5122 | qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_AES; | |
0a12f6f8 DB |
5123 | break; |
5124 | case Q_CRYPTO_BLOCK_FORMAT_LUKS: | |
5125 | qencrypt->format = BLOCKDEV_QCOW2_ENCRYPTION_FORMAT_LUKS; | |
5126 | qencrypt->u.luks = encrypt_info->u.luks; | |
5127 | break; | |
5128 | default: | |
5129 | abort(); | |
5130 | } | |
5131 | /* Since we did shallow copy above, erase any pointers | |
5132 | * in the original info */ | |
5133 | memset(&encrypt_info->u, 0, sizeof(encrypt_info->u)); | |
5134 | qapi_free_QCryptoBlockInfo(encrypt_info); | |
5135 | ||
5136 | spec_info->u.qcow2.data->has_encrypt = true; | |
5137 | spec_info->u.qcow2.data->encrypt = qencrypt; | |
5138 | } | |
5139 | ||
37764dfb HR |
5140 | return spec_info; |
5141 | } | |
5142 | ||
38841dcd HR |
5143 | static int qcow2_has_zero_init(BlockDriverState *bs) |
5144 | { | |
5145 | BDRVQcow2State *s = bs->opaque; | |
5146 | bool preallocated; | |
5147 | ||
5148 | if (qemu_in_coroutine()) { | |
5149 | qemu_co_mutex_lock(&s->lock); | |
5150 | } | |
5151 | /* | |
5152 | * Check preallocation status: Preallocated images have all L2 | |
5153 | * tables allocated, nonpreallocated images have none. It is | |
5154 | * therefore enough to check the first one. | |
5155 | */ | |
5156 | preallocated = s->l1_size > 0 && s->l1_table[0] != 0; | |
5157 | if (qemu_in_coroutine()) { | |
5158 | qemu_co_mutex_unlock(&s->lock); | |
5159 | } | |
5160 | ||
5161 | if (!preallocated) { | |
5162 | return 1; | |
5163 | } else if (bs->encrypted) { | |
5164 | return 0; | |
5165 | } else { | |
5166 | return bdrv_has_zero_init(s->data_file->bs); | |
5167 | } | |
5168 | } | |
5169 | ||
cf8074b3 KW |
5170 | static int qcow2_save_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, |
5171 | int64_t pos) | |
20d97356 | 5172 | { |
ff99129a | 5173 | BDRVQcow2State *s = bs->opaque; |
20d97356 | 5174 | |
66f82cee | 5175 | BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_SAVE); |
5396234b VSO |
5176 | return bs->drv->bdrv_co_pwritev_part(bs, qcow2_vm_state_offset(s) + pos, |
5177 | qiov->size, qiov, 0, 0); | |
20d97356 BS |
5178 | } |
5179 | ||
5ddda0b8 KW |
5180 | static int qcow2_load_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, |
5181 | int64_t pos) | |
20d97356 | 5182 | { |
ff99129a | 5183 | BDRVQcow2State *s = bs->opaque; |
20d97356 | 5184 | |
66f82cee | 5185 | BLKDBG_EVENT(bs->file, BLKDBG_VMSTATE_LOAD); |
df893d25 VSO |
5186 | return bs->drv->bdrv_co_preadv_part(bs, qcow2_vm_state_offset(s) + pos, |
5187 | qiov->size, qiov, 0, 0); | |
20d97356 BS |
5188 | } |
5189 | ||
9296b3ed HR |
5190 | /* |
5191 | * Downgrades an image's version. To achieve this, any incompatible features | |
5192 | * have to be removed. | |
5193 | */ | |
4057a2b2 | 5194 | static int qcow2_downgrade(BlockDriverState *bs, int target_version, |
d1402b50 HR |
5195 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, |
5196 | Error **errp) | |
9296b3ed | 5197 | { |
ff99129a | 5198 | BDRVQcow2State *s = bs->opaque; |
9296b3ed HR |
5199 | int current_version = s->qcow_version; |
5200 | int ret; | |
7fa140ab | 5201 | int i; |
9296b3ed | 5202 | |
d1402b50 HR |
5203 | /* This is qcow2_downgrade(), not qcow2_upgrade() */ |
5204 | assert(target_version < current_version); | |
5205 | ||
5206 | /* There are no other versions (now) that you can downgrade to */ | |
5207 | assert(target_version == 2); | |
9296b3ed HR |
5208 | |
5209 | if (s->refcount_order != 4) { | |
d1402b50 | 5210 | error_setg(errp, "compat=0.10 requires refcount_bits=16"); |
9296b3ed HR |
5211 | return -ENOTSUP; |
5212 | } | |
5213 | ||
966b000f KW |
5214 | if (has_data_file(bs)) { |
5215 | error_setg(errp, "Cannot downgrade an image with a data file"); | |
5216 | return -ENOTSUP; | |
5217 | } | |
5218 | ||
7fa140ab EB |
5219 | /* |
5220 | * If any internal snapshot has a different size than the current | |
5221 | * image size, or VM state size that exceeds 32 bits, downgrading | |
5222 | * is unsafe. Even though we would still use v3-compliant output | |
5223 | * to preserve that data, other v2 programs might not realize | |
5224 | * those optional fields are important. | |
5225 | */ | |
5226 | for (i = 0; i < s->nb_snapshots; i++) { | |
5227 | if (s->snapshots[i].vm_state_size > UINT32_MAX || | |
5228 | s->snapshots[i].disk_size != bs->total_sectors * BDRV_SECTOR_SIZE) { | |
5229 | error_setg(errp, "Internal snapshots prevent downgrade of image"); | |
5230 | return -ENOTSUP; | |
5231 | } | |
5232 | } | |
5233 | ||
9296b3ed HR |
5234 | /* clear incompatible features */ |
5235 | if (s->incompatible_features & QCOW2_INCOMPAT_DIRTY) { | |
5236 | ret = qcow2_mark_clean(bs); | |
5237 | if (ret < 0) { | |
d1402b50 | 5238 | error_setg_errno(errp, -ret, "Failed to make the image clean"); |
9296b3ed HR |
5239 | return ret; |
5240 | } | |
5241 | } | |
5242 | ||
5243 | /* with QCOW2_INCOMPAT_CORRUPT, it is pretty much impossible to get here in | |
5244 | * the first place; if that happens nonetheless, returning -ENOTSUP is the | |
5245 | * best thing to do anyway */ | |
5246 | ||
5247 | if (s->incompatible_features) { | |
d1402b50 HR |
5248 | error_setg(errp, "Cannot downgrade an image with incompatible features " |
5249 | "%#" PRIx64 " set", s->incompatible_features); | |
9296b3ed HR |
5250 | return -ENOTSUP; |
5251 | } | |
5252 | ||
5253 | /* since we can ignore compatible features, we can set them to 0 as well */ | |
5254 | s->compatible_features = 0; | |
5255 | /* if lazy refcounts have been used, they have already been fixed through | |
5256 | * clearing the dirty flag */ | |
5257 | ||
5258 | /* clearing autoclear features is trivial */ | |
5259 | s->autoclear_features = 0; | |
5260 | ||
8b13976d | 5261 | ret = qcow2_expand_zero_clusters(bs, status_cb, cb_opaque); |
9296b3ed | 5262 | if (ret < 0) { |
d1402b50 | 5263 | error_setg_errno(errp, -ret, "Failed to turn zero into data clusters"); |
9296b3ed HR |
5264 | return ret; |
5265 | } | |
5266 | ||
5267 | s->qcow_version = target_version; | |
5268 | ret = qcow2_update_header(bs); | |
5269 | if (ret < 0) { | |
5270 | s->qcow_version = current_version; | |
d1402b50 | 5271 | error_setg_errno(errp, -ret, "Failed to update the image header"); |
9296b3ed HR |
5272 | return ret; |
5273 | } | |
5274 | return 0; | |
5275 | } | |
5276 | ||
722efb0c HR |
5277 | /* |
5278 | * Upgrades an image's version. While newer versions encompass all | |
5279 | * features of older versions, some things may have to be presented | |
5280 | * differently. | |
5281 | */ | |
5282 | static int qcow2_upgrade(BlockDriverState *bs, int target_version, | |
5283 | BlockDriverAmendStatusCB *status_cb, void *cb_opaque, | |
5284 | Error **errp) | |
5285 | { | |
5286 | BDRVQcow2State *s = bs->opaque; | |
0a85af35 | 5287 | bool need_snapshot_update; |
722efb0c | 5288 | int current_version = s->qcow_version; |
0a85af35 | 5289 | int i; |
722efb0c HR |
5290 | int ret; |
5291 | ||
5292 | /* This is qcow2_upgrade(), not qcow2_downgrade() */ | |
5293 | assert(target_version > current_version); | |
5294 | ||
5295 | /* There are no other versions (yet) that you can upgrade to */ | |
5296 | assert(target_version == 3); | |
5297 | ||
0a85af35 HR |
5298 | status_cb(bs, 0, 2, cb_opaque); |
5299 | ||
5300 | /* | |
5301 | * In v2, snapshots do not need to have extra data. v3 requires | |
5302 | * the 64-bit VM state size and the virtual disk size to be | |
5303 | * present. | |
5304 | * qcow2_write_snapshots() will always write the list in the | |
5305 | * v3-compliant format. | |
5306 | */ | |
5307 | need_snapshot_update = false; | |
5308 | for (i = 0; i < s->nb_snapshots; i++) { | |
5309 | if (s->snapshots[i].extra_data_size < | |
5310 | sizeof_field(QCowSnapshotExtraData, vm_state_size_large) + | |
5311 | sizeof_field(QCowSnapshotExtraData, disk_size)) | |
5312 | { | |
5313 | need_snapshot_update = true; | |
5314 | break; | |
5315 | } | |
5316 | } | |
5317 | if (need_snapshot_update) { | |
5318 | ret = qcow2_write_snapshots(bs); | |
5319 | if (ret < 0) { | |
5320 | error_setg_errno(errp, -ret, "Failed to update the snapshot table"); | |
5321 | return ret; | |
5322 | } | |
5323 | } | |
5324 | status_cb(bs, 1, 2, cb_opaque); | |
722efb0c HR |
5325 | |
5326 | s->qcow_version = target_version; | |
5327 | ret = qcow2_update_header(bs); | |
5328 | if (ret < 0) { | |
5329 | s->qcow_version = current_version; | |
5330 | error_setg_errno(errp, -ret, "Failed to update the image header"); | |
5331 | return ret; | |
5332 | } | |
0a85af35 | 5333 | status_cb(bs, 2, 2, cb_opaque); |
722efb0c HR |
5334 | |
5335 | return 0; | |
5336 | } | |
5337 | ||
c293a809 HR |
5338 | typedef enum Qcow2AmendOperation { |
5339 | /* This is the value Qcow2AmendHelperCBInfo::last_operation will be | |
5340 | * statically initialized to so that the helper CB can discern the first | |
5341 | * invocation from an operation change */ | |
5342 | QCOW2_NO_OPERATION = 0, | |
5343 | ||
722efb0c | 5344 | QCOW2_UPGRADING, |
90766d9d | 5345 | QCOW2_UPDATING_ENCRYPTION, |
61ce55fc | 5346 | QCOW2_CHANGING_REFCOUNT_ORDER, |
c293a809 HR |
5347 | QCOW2_DOWNGRADING, |
5348 | } Qcow2AmendOperation; | |
5349 | ||
5350 | typedef struct Qcow2AmendHelperCBInfo { | |
5351 | /* The code coordinating the amend operations should only modify | |
5352 | * these four fields; the rest will be managed by the CB */ | |
5353 | BlockDriverAmendStatusCB *original_status_cb; | |
5354 | void *original_cb_opaque; | |
5355 | ||
5356 | Qcow2AmendOperation current_operation; | |
5357 | ||
5358 | /* Total number of operations to perform (only set once) */ | |
5359 | int total_operations; | |
5360 | ||
5361 | /* The following fields are managed by the CB */ | |
5362 | ||
5363 | /* Number of operations completed */ | |
5364 | int operations_completed; | |
5365 | ||
5366 | /* Cumulative offset of all completed operations */ | |
5367 | int64_t offset_completed; | |
5368 | ||
5369 | Qcow2AmendOperation last_operation; | |
5370 | int64_t last_work_size; | |
5371 | } Qcow2AmendHelperCBInfo; | |
5372 | ||
5373 | static void qcow2_amend_helper_cb(BlockDriverState *bs, | |
5374 | int64_t operation_offset, | |
5375 | int64_t operation_work_size, void *opaque) | |
5376 | { | |
5377 | Qcow2AmendHelperCBInfo *info = opaque; | |
5378 | int64_t current_work_size; | |
5379 | int64_t projected_work_size; | |
5380 | ||
5381 | if (info->current_operation != info->last_operation) { | |
5382 | if (info->last_operation != QCOW2_NO_OPERATION) { | |
5383 | info->offset_completed += info->last_work_size; | |
5384 | info->operations_completed++; | |
5385 | } | |
5386 | ||
5387 | info->last_operation = info->current_operation; | |
5388 | } | |
5389 | ||
5390 | assert(info->total_operations > 0); | |
5391 | assert(info->operations_completed < info->total_operations); | |
5392 | ||
5393 | info->last_work_size = operation_work_size; | |
5394 | ||
5395 | current_work_size = info->offset_completed + operation_work_size; | |
5396 | ||
5397 | /* current_work_size is the total work size for (operations_completed + 1) | |
5398 | * operations (which includes this one), so multiply it by the number of | |
5399 | * operations not covered and divide it by the number of operations | |
5400 | * covered to get a projection for the operations not covered */ | |
5401 | projected_work_size = current_work_size * (info->total_operations - | |
5402 | info->operations_completed - 1) | |
5403 | / (info->operations_completed + 1); | |
5404 | ||
5405 | info->original_status_cb(bs, info->offset_completed + operation_offset, | |
5406 | current_work_size + projected_work_size, | |
5407 | info->original_cb_opaque); | |
5408 | } | |
5409 | ||
77485434 | 5410 | static int qcow2_amend_options(BlockDriverState *bs, QemuOpts *opts, |
8b13976d | 5411 | BlockDriverAmendStatusCB *status_cb, |
d1402b50 | 5412 | void *cb_opaque, |
a3579bfa | 5413 | bool force, |
d1402b50 | 5414 | Error **errp) |
9296b3ed | 5415 | { |
ff99129a | 5416 | BDRVQcow2State *s = bs->opaque; |
9296b3ed HR |
5417 | int old_version = s->qcow_version, new_version = old_version; |
5418 | uint64_t new_size = 0; | |
9b890bdc | 5419 | const char *backing_file = NULL, *backing_format = NULL, *data_file = NULL; |
9296b3ed | 5420 | bool lazy_refcounts = s->use_lazy_refcounts; |
6c3944dc | 5421 | bool data_file_raw = data_file_is_raw(bs); |
1bd0e2d1 | 5422 | const char *compat = NULL; |
61ce55fc | 5423 | int refcount_bits = s->refcount_bits; |
9296b3ed | 5424 | int ret; |
1bd0e2d1 | 5425 | QemuOptDesc *desc = opts->list->desc; |
c293a809 | 5426 | Qcow2AmendHelperCBInfo helper_cb_info; |
90766d9d | 5427 | bool encryption_update = false; |
9296b3ed | 5428 | |
1bd0e2d1 CL |
5429 | while (desc && desc->name) { |
5430 | if (!qemu_opt_find(opts, desc->name)) { | |
9296b3ed | 5431 | /* only change explicitly defined options */ |
1bd0e2d1 | 5432 | desc++; |
9296b3ed HR |
5433 | continue; |
5434 | } | |
5435 | ||
8a17b83c HR |
5436 | if (!strcmp(desc->name, BLOCK_OPT_COMPAT_LEVEL)) { |
5437 | compat = qemu_opt_get(opts, BLOCK_OPT_COMPAT_LEVEL); | |
1bd0e2d1 | 5438 | if (!compat) { |
9296b3ed | 5439 | /* preserve default */ |
f7077c98 | 5440 | } else if (!strcmp(compat, "0.10") || !strcmp(compat, "v2")) { |
9296b3ed | 5441 | new_version = 2; |
f7077c98 | 5442 | } else if (!strcmp(compat, "1.1") || !strcmp(compat, "v3")) { |
9296b3ed HR |
5443 | new_version = 3; |
5444 | } else { | |
d1402b50 | 5445 | error_setg(errp, "Unknown compatibility level %s", compat); |
9296b3ed HR |
5446 | return -EINVAL; |
5447 | } | |
8a17b83c HR |
5448 | } else if (!strcmp(desc->name, BLOCK_OPT_SIZE)) { |
5449 | new_size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0); | |
5450 | } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FILE)) { | |
5451 | backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); | |
5452 | } else if (!strcmp(desc->name, BLOCK_OPT_BACKING_FMT)) { | |
5453 | backing_format = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT); | |
90766d9d ML |
5454 | } else if (g_str_has_prefix(desc->name, "encrypt.")) { |
5455 | if (!s->crypto) { | |
5456 | error_setg(errp, | |
5457 | "Can't amend encryption options - encryption not present"); | |
5458 | return -EINVAL; | |
5459 | } | |
5460 | if (s->crypt_method_header != QCOW_CRYPT_LUKS) { | |
5461 | error_setg(errp, | |
5462 | "Only LUKS encryption options can be amended"); | |
5463 | return -ENOTSUP; | |
5464 | } | |
5465 | encryption_update = true; | |
8a17b83c HR |
5466 | } else if (!strcmp(desc->name, BLOCK_OPT_LAZY_REFCOUNTS)) { |
5467 | lazy_refcounts = qemu_opt_get_bool(opts, BLOCK_OPT_LAZY_REFCOUNTS, | |
1bd0e2d1 | 5468 | lazy_refcounts); |
06d05fa7 | 5469 | } else if (!strcmp(desc->name, BLOCK_OPT_REFCOUNT_BITS)) { |
61ce55fc HR |
5470 | refcount_bits = qemu_opt_get_number(opts, BLOCK_OPT_REFCOUNT_BITS, |
5471 | refcount_bits); | |
5472 | ||
5473 | if (refcount_bits <= 0 || refcount_bits > 64 || | |
5474 | !is_power_of_2(refcount_bits)) | |
5475 | { | |
d1402b50 HR |
5476 | error_setg(errp, "Refcount width must be a power of two and " |
5477 | "may not exceed 64 bits"); | |
61ce55fc HR |
5478 | return -EINVAL; |
5479 | } | |
9b890bdc KW |
5480 | } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE)) { |
5481 | data_file = qemu_opt_get(opts, BLOCK_OPT_DATA_FILE); | |
5482 | if (data_file && !has_data_file(bs)) { | |
5483 | error_setg(errp, "data-file can only be set for images that " | |
5484 | "use an external data file"); | |
5485 | return -EINVAL; | |
5486 | } | |
6c3944dc KW |
5487 | } else if (!strcmp(desc->name, BLOCK_OPT_DATA_FILE_RAW)) { |
5488 | data_file_raw = qemu_opt_get_bool(opts, BLOCK_OPT_DATA_FILE_RAW, | |
5489 | data_file_raw); | |
5490 | if (data_file_raw && !data_file_is_raw(bs)) { | |
5491 | error_setg(errp, "data-file-raw cannot be set on existing " | |
5492 | "images"); | |
5493 | return -EINVAL; | |
5494 | } | |
9296b3ed | 5495 | } else { |
164e0f89 | 5496 | /* if this point is reached, this probably means a new option was |
9296b3ed | 5497 | * added without having it covered here */ |
164e0f89 | 5498 | abort(); |
9296b3ed | 5499 | } |
1bd0e2d1 CL |
5500 | |
5501 | desc++; | |
9296b3ed HR |
5502 | } |
5503 | ||
c293a809 HR |
5504 | helper_cb_info = (Qcow2AmendHelperCBInfo){ |
5505 | .original_status_cb = status_cb, | |
5506 | .original_cb_opaque = cb_opaque, | |
722efb0c | 5507 | .total_operations = (new_version != old_version) |
90766d9d ML |
5508 | + (s->refcount_bits != refcount_bits) + |
5509 | (encryption_update == true) | |
c293a809 HR |
5510 | }; |
5511 | ||
1038bbb8 HR |
5512 | /* Upgrade first (some features may require compat=1.1) */ |
5513 | if (new_version > old_version) { | |
722efb0c HR |
5514 | helper_cb_info.current_operation = QCOW2_UPGRADING; |
5515 | ret = qcow2_upgrade(bs, new_version, &qcow2_amend_helper_cb, | |
5516 | &helper_cb_info, errp); | |
1038bbb8 | 5517 | if (ret < 0) { |
1038bbb8 | 5518 | return ret; |
9296b3ed HR |
5519 | } |
5520 | } | |
5521 | ||
90766d9d ML |
5522 | if (encryption_update) { |
5523 | QDict *amend_opts_dict; | |
5524 | QCryptoBlockAmendOptions *amend_opts; | |
5525 | ||
5526 | helper_cb_info.current_operation = QCOW2_UPDATING_ENCRYPTION; | |
5527 | amend_opts_dict = qcow2_extract_crypto_opts(opts, "luks", errp); | |
5528 | if (!amend_opts_dict) { | |
5529 | return -EINVAL; | |
5530 | } | |
5531 | amend_opts = block_crypto_amend_opts_init(amend_opts_dict, errp); | |
5532 | qobject_unref(amend_opts_dict); | |
5533 | if (!amend_opts) { | |
5534 | return -EINVAL; | |
5535 | } | |
5536 | ret = qcrypto_block_amend_options(s->crypto, | |
5537 | qcow2_crypto_hdr_read_func, | |
5538 | qcow2_crypto_hdr_write_func, | |
5539 | bs, | |
5540 | amend_opts, | |
5541 | force, | |
5542 | errp); | |
5543 | qapi_free_QCryptoBlockAmendOptions(amend_opts); | |
5544 | if (ret < 0) { | |
5545 | return ret; | |
5546 | } | |
5547 | } | |
5548 | ||
61ce55fc HR |
5549 | if (s->refcount_bits != refcount_bits) { |
5550 | int refcount_order = ctz32(refcount_bits); | |
61ce55fc HR |
5551 | |
5552 | if (new_version < 3 && refcount_bits != 16) { | |
d1402b50 HR |
5553 | error_setg(errp, "Refcount widths other than 16 bits require " |
5554 | "compatibility level 1.1 or above (use compat=1.1 or " | |
5555 | "greater)"); | |
61ce55fc HR |
5556 | return -EINVAL; |
5557 | } | |
5558 | ||
5559 | helper_cb_info.current_operation = QCOW2_CHANGING_REFCOUNT_ORDER; | |
5560 | ret = qcow2_change_refcount_order(bs, refcount_order, | |
5561 | &qcow2_amend_helper_cb, | |
d1402b50 | 5562 | &helper_cb_info, errp); |
61ce55fc | 5563 | if (ret < 0) { |
61ce55fc HR |
5564 | return ret; |
5565 | } | |
5566 | } | |
5567 | ||
6c3944dc KW |
5568 | /* data-file-raw blocks backing files, so clear it first if requested */ |
5569 | if (data_file_raw) { | |
5570 | s->autoclear_features |= QCOW2_AUTOCLEAR_DATA_FILE_RAW; | |
5571 | } else { | |
5572 | s->autoclear_features &= ~QCOW2_AUTOCLEAR_DATA_FILE_RAW; | |
5573 | } | |
5574 | ||
9b890bdc KW |
5575 | if (data_file) { |
5576 | g_free(s->image_data_file); | |
5577 | s->image_data_file = *data_file ? g_strdup(data_file) : NULL; | |
5578 | } | |
5579 | ||
5580 | ret = qcow2_update_header(bs); | |
5581 | if (ret < 0) { | |
5582 | error_setg_errno(errp, -ret, "Failed to update the image header"); | |
5583 | return ret; | |
5584 | } | |
5585 | ||
9296b3ed | 5586 | if (backing_file || backing_format) { |
bc5ee6da EB |
5587 | if (g_strcmp0(backing_file, s->image_backing_file) || |
5588 | g_strcmp0(backing_format, s->image_backing_format)) { | |
5589 | warn_report("Deprecated use of amend to alter the backing file; " | |
5590 | "use qemu-img rebase instead"); | |
5591 | } | |
e4603fe1 KW |
5592 | ret = qcow2_change_backing_file(bs, |
5593 | backing_file ?: s->image_backing_file, | |
5594 | backing_format ?: s->image_backing_format); | |
9296b3ed | 5595 | if (ret < 0) { |
d1402b50 | 5596 | error_setg_errno(errp, -ret, "Failed to change the backing file"); |
9296b3ed HR |
5597 | return ret; |
5598 | } | |
5599 | } | |
5600 | ||
5601 | if (s->use_lazy_refcounts != lazy_refcounts) { | |
5602 | if (lazy_refcounts) { | |
1038bbb8 | 5603 | if (new_version < 3) { |
d1402b50 HR |
5604 | error_setg(errp, "Lazy refcounts only supported with " |
5605 | "compatibility level 1.1 and above (use compat=1.1 " | |
5606 | "or greater)"); | |
9296b3ed HR |
5607 | return -EINVAL; |
5608 | } | |
5609 | s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS; | |
5610 | ret = qcow2_update_header(bs); | |
5611 | if (ret < 0) { | |
5612 | s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS; | |
d1402b50 | 5613 | error_setg_errno(errp, -ret, "Failed to update the image header"); |
9296b3ed HR |
5614 | return ret; |
5615 | } | |
5616 | s->use_lazy_refcounts = true; | |
5617 | } else { | |
5618 | /* make image clean first */ | |
5619 | ret = qcow2_mark_clean(bs); | |
5620 | if (ret < 0) { | |
d1402b50 | 5621 | error_setg_errno(errp, -ret, "Failed to make the image clean"); |
9296b3ed HR |
5622 | return ret; |
5623 | } | |
5624 | /* now disallow lazy refcounts */ | |
5625 | s->compatible_features &= ~QCOW2_COMPAT_LAZY_REFCOUNTS; | |
5626 | ret = qcow2_update_header(bs); | |
5627 | if (ret < 0) { | |
5628 | s->compatible_features |= QCOW2_COMPAT_LAZY_REFCOUNTS; | |
d1402b50 | 5629 | error_setg_errno(errp, -ret, "Failed to update the image header"); |
9296b3ed HR |
5630 | return ret; |
5631 | } | |
5632 | s->use_lazy_refcounts = false; | |
5633 | } | |
5634 | } | |
5635 | ||
5636 | if (new_size) { | |
a3aeeab5 EB |
5637 | BlockBackend *blk = blk_new_with_bs(bs, BLK_PERM_RESIZE, BLK_PERM_ALL, |
5638 | errp); | |
5639 | if (!blk) { | |
5640 | return -EPERM; | |
d7086422 KW |
5641 | } |
5642 | ||
e8d04f92 HR |
5643 | /* |
5644 | * Amending image options should ensure that the image has | |
5645 | * exactly the given new values, so pass exact=true here. | |
5646 | */ | |
8c6242b6 | 5647 | ret = blk_truncate(blk, new_size, true, PREALLOC_MODE_OFF, 0, errp); |
70b27f36 | 5648 | blk_unref(blk); |
9296b3ed HR |
5649 | if (ret < 0) { |
5650 | return ret; | |
5651 | } | |
5652 | } | |
5653 | ||
1038bbb8 HR |
5654 | /* Downgrade last (so unsupported features can be removed before) */ |
5655 | if (new_version < old_version) { | |
c293a809 HR |
5656 | helper_cb_info.current_operation = QCOW2_DOWNGRADING; |
5657 | ret = qcow2_downgrade(bs, new_version, &qcow2_amend_helper_cb, | |
d1402b50 | 5658 | &helper_cb_info, errp); |
1038bbb8 HR |
5659 | if (ret < 0) { |
5660 | return ret; | |
5661 | } | |
5662 | } | |
5663 | ||
9296b3ed HR |
5664 | return 0; |
5665 | } | |
5666 | ||
8ea1613d ML |
5667 | static int coroutine_fn qcow2_co_amend(BlockDriverState *bs, |
5668 | BlockdevAmendOptions *opts, | |
5669 | bool force, | |
5670 | Error **errp) | |
5671 | { | |
5672 | BlockdevAmendOptionsQcow2 *qopts = &opts->u.qcow2; | |
5673 | BDRVQcow2State *s = bs->opaque; | |
5674 | int ret = 0; | |
5675 | ||
5676 | if (qopts->has_encrypt) { | |
5677 | if (!s->crypto) { | |
5678 | error_setg(errp, "image is not encrypted, can't amend"); | |
5679 | return -EOPNOTSUPP; | |
5680 | } | |
5681 | ||
5682 | if (qopts->encrypt->format != Q_CRYPTO_BLOCK_FORMAT_LUKS) { | |
5683 | error_setg(errp, | |
5684 | "Amend can't be used to change the qcow2 encryption format"); | |
5685 | return -EOPNOTSUPP; | |
5686 | } | |
5687 | ||
5688 | if (s->crypt_method_header != QCOW_CRYPT_LUKS) { | |
5689 | error_setg(errp, | |
5690 | "Only LUKS encryption options can be amended for qcow2 with blockdev-amend"); | |
5691 | return -EOPNOTSUPP; | |
5692 | } | |
5693 | ||
5694 | ret = qcrypto_block_amend_options(s->crypto, | |
5695 | qcow2_crypto_hdr_read_func, | |
5696 | qcow2_crypto_hdr_write_func, | |
5697 | bs, | |
5698 | qopts->encrypt, | |
5699 | force, | |
5700 | errp); | |
5701 | } | |
5702 | return ret; | |
5703 | } | |
5704 | ||
85186ebd HR |
5705 | /* |
5706 | * If offset or size are negative, respectively, they will not be included in | |
5707 | * the BLOCK_IMAGE_CORRUPTED event emitted. | |
5708 | * fatal will be ignored for read-only BDS; corruptions found there will always | |
5709 | * be considered non-fatal. | |
5710 | */ | |
5711 | void qcow2_signal_corruption(BlockDriverState *bs, bool fatal, int64_t offset, | |
5712 | int64_t size, const char *message_format, ...) | |
5713 | { | |
ff99129a | 5714 | BDRVQcow2State *s = bs->opaque; |
dc881b44 | 5715 | const char *node_name; |
85186ebd HR |
5716 | char *message; |
5717 | va_list ap; | |
5718 | ||
ddf3b47e | 5719 | fatal = fatal && bdrv_is_writable(bs); |
85186ebd HR |
5720 | |
5721 | if (s->signaled_corruption && | |
5722 | (!fatal || (s->incompatible_features & QCOW2_INCOMPAT_CORRUPT))) | |
5723 | { | |
5724 | return; | |
5725 | } | |
5726 | ||
5727 | va_start(ap, message_format); | |
5728 | message = g_strdup_vprintf(message_format, ap); | |
5729 | va_end(ap); | |
5730 | ||
5731 | if (fatal) { | |
5732 | fprintf(stderr, "qcow2: Marking image as corrupt: %s; further " | |
5733 | "corruption events will be suppressed\n", message); | |
5734 | } else { | |
5735 | fprintf(stderr, "qcow2: Image is corrupt: %s; further non-fatal " | |
5736 | "corruption events will be suppressed\n", message); | |
5737 | } | |
5738 | ||
dc881b44 AG |
5739 | node_name = bdrv_get_node_name(bs); |
5740 | qapi_event_send_block_image_corrupted(bdrv_get_device_name(bs), | |
5741 | *node_name != '\0', node_name, | |
5742 | message, offset >= 0, offset, | |
5743 | size >= 0, size, | |
3ab72385 | 5744 | fatal); |
85186ebd HR |
5745 | g_free(message); |
5746 | ||
5747 | if (fatal) { | |
5748 | qcow2_mark_corrupt(bs); | |
5749 | bs->drv = NULL; /* make BDS unusable */ | |
5750 | } | |
5751 | ||
5752 | s->signaled_corruption = true; | |
5753 | } | |
5754 | ||
df373fb0 ML |
5755 | #define QCOW_COMMON_OPTIONS \ |
5756 | { \ | |
5757 | .name = BLOCK_OPT_SIZE, \ | |
5758 | .type = QEMU_OPT_SIZE, \ | |
5759 | .help = "Virtual disk size" \ | |
5760 | }, \ | |
5761 | { \ | |
5762 | .name = BLOCK_OPT_COMPAT_LEVEL, \ | |
5763 | .type = QEMU_OPT_STRING, \ | |
5764 | .help = "Compatibility level (v2 [0.10] or v3 [1.1])" \ | |
5765 | }, \ | |
5766 | { \ | |
5767 | .name = BLOCK_OPT_BACKING_FILE, \ | |
5768 | .type = QEMU_OPT_STRING, \ | |
5769 | .help = "File name of a base image" \ | |
5770 | }, \ | |
5771 | { \ | |
5772 | .name = BLOCK_OPT_BACKING_FMT, \ | |
5773 | .type = QEMU_OPT_STRING, \ | |
5774 | .help = "Image format of the base image" \ | |
5775 | }, \ | |
5776 | { \ | |
5777 | .name = BLOCK_OPT_DATA_FILE, \ | |
5778 | .type = QEMU_OPT_STRING, \ | |
5779 | .help = "File name of an external data file" \ | |
5780 | }, \ | |
5781 | { \ | |
5782 | .name = BLOCK_OPT_DATA_FILE_RAW, \ | |
5783 | .type = QEMU_OPT_BOOL, \ | |
5784 | .help = "The external data file must stay valid " \ | |
5785 | "as a raw image" \ | |
5786 | }, \ | |
df373fb0 ML |
5787 | { \ |
5788 | .name = BLOCK_OPT_LAZY_REFCOUNTS, \ | |
5789 | .type = QEMU_OPT_BOOL, \ | |
5790 | .help = "Postpone refcount updates", \ | |
5791 | .def_value_str = "off" \ | |
5792 | }, \ | |
5793 | { \ | |
5794 | .name = BLOCK_OPT_REFCOUNT_BITS, \ | |
5795 | .type = QEMU_OPT_NUMBER, \ | |
5796 | .help = "Width of a reference count entry in bits", \ | |
5797 | .def_value_str = "16" \ | |
df373fb0 ML |
5798 | } |
5799 | ||
1bd0e2d1 CL |
5800 | static QemuOptsList qcow2_create_opts = { |
5801 | .name = "qcow2-create-opts", | |
5802 | .head = QTAILQ_HEAD_INITIALIZER(qcow2_create_opts.head), | |
5803 | .desc = { | |
0b6786a9 ML |
5804 | { \ |
5805 | .name = BLOCK_OPT_ENCRYPT, \ | |
5806 | .type = QEMU_OPT_BOOL, \ | |
5807 | .help = "Encrypt the image with format 'aes'. (Deprecated " \ | |
5808 | "in favor of " BLOCK_OPT_ENCRYPT_FORMAT "=aes)", \ | |
5809 | }, \ | |
5810 | { \ | |
5811 | .name = BLOCK_OPT_ENCRYPT_FORMAT, \ | |
5812 | .type = QEMU_OPT_STRING, \ | |
5813 | .help = "Encrypt the image, format choices: 'aes', 'luks'", \ | |
5814 | }, \ | |
5815 | BLOCK_CRYPTO_OPT_DEF_KEY_SECRET("encrypt.", \ | |
5816 | "ID of secret providing qcow AES key or LUKS passphrase"), \ | |
5817 | BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_ALG("encrypt."), \ | |
5818 | BLOCK_CRYPTO_OPT_DEF_LUKS_CIPHER_MODE("encrypt."), \ | |
5819 | BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_ALG("encrypt."), \ | |
5820 | BLOCK_CRYPTO_OPT_DEF_LUKS_IVGEN_HASH_ALG("encrypt."), \ | |
5821 | BLOCK_CRYPTO_OPT_DEF_LUKS_HASH_ALG("encrypt."), \ | |
5822 | BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), \ | |
5823 | { \ | |
5824 | .name = BLOCK_OPT_CLUSTER_SIZE, \ | |
5825 | .type = QEMU_OPT_SIZE, \ | |
5826 | .help = "qcow2 cluster size", \ | |
5827 | .def_value_str = stringify(DEFAULT_CLUSTER_SIZE) \ | |
5828 | }, \ | |
7be20252 AG |
5829 | { \ |
5830 | .name = BLOCK_OPT_EXTL2, \ | |
5831 | .type = QEMU_OPT_BOOL, \ | |
5832 | .help = "Extended L2 tables", \ | |
5833 | .def_value_str = "off" \ | |
5834 | }, \ | |
0b6786a9 ML |
5835 | { \ |
5836 | .name = BLOCK_OPT_PREALLOC, \ | |
5837 | .type = QEMU_OPT_STRING, \ | |
5838 | .help = "Preallocation mode (allowed values: off, " \ | |
5839 | "metadata, falloc, full)" \ | |
5840 | }, \ | |
5841 | { \ | |
5842 | .name = BLOCK_OPT_COMPRESSION_TYPE, \ | |
5843 | .type = QEMU_OPT_STRING, \ | |
5844 | .help = "Compression method used for image cluster " \ | |
5845 | "compression", \ | |
5846 | .def_value_str = "zlib" \ | |
5847 | }, | |
df373fb0 ML |
5848 | QCOW_COMMON_OPTIONS, |
5849 | { /* end of list */ } | |
5850 | } | |
5851 | }; | |
5852 | ||
5853 | static QemuOptsList qcow2_amend_opts = { | |
5854 | .name = "qcow2-amend-opts", | |
5855 | .head = QTAILQ_HEAD_INITIALIZER(qcow2_amend_opts.head), | |
5856 | .desc = { | |
90766d9d ML |
5857 | BLOCK_CRYPTO_OPT_DEF_LUKS_STATE("encrypt."), |
5858 | BLOCK_CRYPTO_OPT_DEF_LUKS_KEYSLOT("encrypt."), | |
5859 | BLOCK_CRYPTO_OPT_DEF_LUKS_OLD_SECRET("encrypt."), | |
5860 | BLOCK_CRYPTO_OPT_DEF_LUKS_NEW_SECRET("encrypt."), | |
5861 | BLOCK_CRYPTO_OPT_DEF_LUKS_ITER_TIME("encrypt."), | |
df373fb0 | 5862 | QCOW_COMMON_OPTIONS, |
1bd0e2d1 CL |
5863 | { /* end of list */ } |
5864 | } | |
20d97356 BS |
5865 | }; |
5866 | ||
2654267c HR |
5867 | static const char *const qcow2_strong_runtime_opts[] = { |
5868 | "encrypt." BLOCK_CRYPTO_OPT_QCOW_KEY_SECRET, | |
5869 | ||
5870 | NULL | |
5871 | }; | |
5872 | ||
5f535a94 | 5873 | BlockDriver bdrv_qcow2 = { |
7c80ab3f | 5874 | .format_name = "qcow2", |
ff99129a | 5875 | .instance_size = sizeof(BDRVQcow2State), |
7c80ab3f JS |
5876 | .bdrv_probe = qcow2_probe, |
5877 | .bdrv_open = qcow2_open, | |
5878 | .bdrv_close = qcow2_close, | |
21d82ac9 | 5879 | .bdrv_reopen_prepare = qcow2_reopen_prepare, |
5b0959a7 | 5880 | .bdrv_reopen_commit = qcow2_reopen_commit, |
65eb7c85 | 5881 | .bdrv_reopen_commit_post = qcow2_reopen_commit_post, |
5b0959a7 | 5882 | .bdrv_reopen_abort = qcow2_reopen_abort, |
5365f44d | 5883 | .bdrv_join_options = qcow2_join_options, |
69dca43d | 5884 | .bdrv_child_perm = bdrv_default_perms, |
efc75e2a | 5885 | .bdrv_co_create_opts = qcow2_co_create_opts, |
b0292b85 | 5886 | .bdrv_co_create = qcow2_co_create, |
38841dcd | 5887 | .bdrv_has_zero_init = qcow2_has_zero_init, |
a320fb04 | 5888 | .bdrv_co_block_status = qcow2_co_block_status, |
7c80ab3f | 5889 | |
df893d25 | 5890 | .bdrv_co_preadv_part = qcow2_co_preadv_part, |
5396234b | 5891 | .bdrv_co_pwritev_part = qcow2_co_pwritev_part, |
eb489bb1 | 5892 | .bdrv_co_flush_to_os = qcow2_co_flush_to_os, |
419b19d9 | 5893 | |
5544b59f | 5894 | .bdrv_co_pwrite_zeroes = qcow2_co_pwrite_zeroes, |
82e8a788 | 5895 | .bdrv_co_pdiscard = qcow2_co_pdiscard, |
fd9fcd37 FZ |
5896 | .bdrv_co_copy_range_from = qcow2_co_copy_range_from, |
5897 | .bdrv_co_copy_range_to = qcow2_co_copy_range_to, | |
061ca8a3 | 5898 | .bdrv_co_truncate = qcow2_co_truncate, |
5396234b | 5899 | .bdrv_co_pwritev_compressed_part = qcow2_co_pwritev_compressed_part, |
491d27e2 | 5900 | .bdrv_make_empty = qcow2_make_empty, |
20d97356 BS |
5901 | |
5902 | .bdrv_snapshot_create = qcow2_snapshot_create, | |
5903 | .bdrv_snapshot_goto = qcow2_snapshot_goto, | |
5904 | .bdrv_snapshot_delete = qcow2_snapshot_delete, | |
5905 | .bdrv_snapshot_list = qcow2_snapshot_list, | |
1bd0e2d1 | 5906 | .bdrv_snapshot_load_tmp = qcow2_snapshot_load_tmp, |
c501c352 | 5907 | .bdrv_measure = qcow2_measure, |
1bd0e2d1 | 5908 | .bdrv_get_info = qcow2_get_info, |
37764dfb | 5909 | .bdrv_get_specific_info = qcow2_get_specific_info, |
20d97356 | 5910 | |
7c80ab3f JS |
5911 | .bdrv_save_vmstate = qcow2_save_vmstate, |
5912 | .bdrv_load_vmstate = qcow2_load_vmstate, | |
20d97356 | 5913 | |
d67066d8 | 5914 | .is_format = true, |
8ee79e70 | 5915 | .supports_backing = true, |
20d97356 BS |
5916 | .bdrv_change_backing_file = qcow2_change_backing_file, |
5917 | ||
d34682cd | 5918 | .bdrv_refresh_limits = qcow2_refresh_limits, |
2b148f39 | 5919 | .bdrv_co_invalidate_cache = qcow2_co_invalidate_cache, |
ec6d8912 | 5920 | .bdrv_inactivate = qcow2_inactivate, |
06d9260f | 5921 | |
1bd0e2d1 | 5922 | .create_opts = &qcow2_create_opts, |
df373fb0 | 5923 | .amend_opts = &qcow2_amend_opts, |
2654267c | 5924 | .strong_runtime_opts = qcow2_strong_runtime_opts, |
8a2ce0bc | 5925 | .mutable_opts = mutable_opts, |
2fd61638 | 5926 | .bdrv_co_check = qcow2_co_check, |
c282e1fd | 5927 | .bdrv_amend_options = qcow2_amend_options, |
8ea1613d | 5928 | .bdrv_co_amend = qcow2_co_amend, |
279621c0 AG |
5929 | |
5930 | .bdrv_detach_aio_context = qcow2_detach_aio_context, | |
5931 | .bdrv_attach_aio_context = qcow2_attach_aio_context, | |
1b6b0562 | 5932 | |
ef893b5c EB |
5933 | .bdrv_supports_persistent_dirty_bitmap = |
5934 | qcow2_supports_persistent_dirty_bitmap, | |
d2c3080e VSO |
5935 | .bdrv_co_can_store_new_dirty_bitmap = qcow2_co_can_store_new_dirty_bitmap, |
5936 | .bdrv_co_remove_persistent_dirty_bitmap = | |
5937 | qcow2_co_remove_persistent_dirty_bitmap, | |
20d97356 BS |
5938 | }; |
5939 | ||
5efa9d5a AL |
5940 | static void bdrv_qcow2_init(void) |
5941 | { | |
5942 | bdrv_register(&bdrv_qcow2); | |
5943 | } | |
5944 | ||
5945 | block_init(bdrv_qcow2_init); |