]> git.proxmox.com Git - mirror_qemu.git/blob - block/parallels.c
parallels: Image repairing in parallels_open()
[mirror_qemu.git] / block / parallels.c
1 /*
2 * Block driver for Parallels disk image format
3 *
4 * Copyright (c) 2007 Alex Beregszaszi
5 * Copyright (c) 2015 Denis V. Lunev <den@openvz.org>
6 *
7 * This code was originally based on comparing different disk images created
8 * by Parallels. Currently it is based on opened OpenVZ sources
9 * available at
10 * http://git.openvz.org/?p=ploop;a=summary
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 * THE SOFTWARE.
29 */
30
31 #include "qemu/osdep.h"
32 #include "qemu/error-report.h"
33 #include "qapi/error.h"
34 #include "block/block_int.h"
35 #include "block/qdict.h"
36 #include "sysemu/block-backend.h"
37 #include "qemu/module.h"
38 #include "qemu/option.h"
39 #include "qapi/qmp/qdict.h"
40 #include "qapi/qobject-input-visitor.h"
41 #include "qapi/qapi-visit-block-core.h"
42 #include "qemu/bswap.h"
43 #include "qemu/bitmap.h"
44 #include "qemu/memalign.h"
45 #include "migration/blocker.h"
46 #include "parallels.h"
47
48 /**************************************************************/
49
50 #define HEADER_MAGIC "WithoutFreeSpace"
51 #define HEADER_MAGIC2 "WithouFreSpacExt"
52 #define HEADER_VERSION 2
53 #define HEADER_INUSE_MAGIC (0x746F6E59)
54 #define MAX_PARALLELS_IMAGE_FACTOR (1ull << 32)
55
56 static QEnumLookup prealloc_mode_lookup = {
57 .array = (const char *const[]) {
58 "falloc",
59 "truncate",
60 },
61 .size = PRL_PREALLOC_MODE__MAX
62 };
63
64 #define PARALLELS_OPT_PREALLOC_MODE "prealloc-mode"
65 #define PARALLELS_OPT_PREALLOC_SIZE "prealloc-size"
66
67 static QemuOptsList parallels_runtime_opts = {
68 .name = "parallels",
69 .head = QTAILQ_HEAD_INITIALIZER(parallels_runtime_opts.head),
70 .desc = {
71 {
72 .name = PARALLELS_OPT_PREALLOC_SIZE,
73 .type = QEMU_OPT_SIZE,
74 .help = "Preallocation size on image expansion",
75 .def_value_str = "128M",
76 },
77 {
78 .name = PARALLELS_OPT_PREALLOC_MODE,
79 .type = QEMU_OPT_STRING,
80 .help = "Preallocation mode on image expansion "
81 "(allowed values: falloc, truncate)",
82 .def_value_str = "falloc",
83 },
84 { /* end of list */ },
85 },
86 };
87
88 static QemuOptsList parallels_create_opts = {
89 .name = "parallels-create-opts",
90 .head = QTAILQ_HEAD_INITIALIZER(parallels_create_opts.head),
91 .desc = {
92 {
93 .name = BLOCK_OPT_SIZE,
94 .type = QEMU_OPT_SIZE,
95 .help = "Virtual disk size",
96 },
97 {
98 .name = BLOCK_OPT_CLUSTER_SIZE,
99 .type = QEMU_OPT_SIZE,
100 .help = "Parallels image cluster size",
101 .def_value_str = stringify(DEFAULT_CLUSTER_SIZE),
102 },
103 { /* end of list */ }
104 }
105 };
106
107
108 static int64_t bat2sect(BDRVParallelsState *s, uint32_t idx)
109 {
110 return (uint64_t)le32_to_cpu(s->bat_bitmap[idx]) * s->off_multiplier;
111 }
112
113 static uint32_t bat_entry_off(uint32_t idx)
114 {
115 return sizeof(ParallelsHeader) + sizeof(uint32_t) * idx;
116 }
117
118 static int64_t seek_to_sector(BDRVParallelsState *s, int64_t sector_num)
119 {
120 uint32_t index, offset;
121
122 index = sector_num / s->tracks;
123 offset = sector_num % s->tracks;
124
125 /* not allocated */
126 if ((index >= s->bat_size) || (s->bat_bitmap[index] == 0)) {
127 return -1;
128 }
129 return bat2sect(s, index) + offset;
130 }
131
132 static int cluster_remainder(BDRVParallelsState *s, int64_t sector_num,
133 int nb_sectors)
134 {
135 int ret = s->tracks - sector_num % s->tracks;
136 return MIN(nb_sectors, ret);
137 }
138
139 static uint32_t host_cluster_index(BDRVParallelsState *s, int64_t off)
140 {
141 off -= s->data_start << BDRV_SECTOR_BITS;
142 return off / s->cluster_size;
143 }
144
145 static int64_t block_status(BDRVParallelsState *s, int64_t sector_num,
146 int nb_sectors, int *pnum)
147 {
148 int64_t start_off = -2, prev_end_off = -2;
149
150 *pnum = 0;
151 while (nb_sectors > 0 || start_off == -2) {
152 int64_t offset = seek_to_sector(s, sector_num);
153 int to_end;
154
155 if (start_off == -2) {
156 start_off = offset;
157 prev_end_off = offset;
158 } else if (offset != prev_end_off) {
159 break;
160 }
161
162 to_end = cluster_remainder(s, sector_num, nb_sectors);
163 nb_sectors -= to_end;
164 sector_num += to_end;
165 *pnum += to_end;
166
167 if (offset > 0) {
168 prev_end_off += to_end;
169 }
170 }
171 return start_off;
172 }
173
174 static void parallels_set_bat_entry(BDRVParallelsState *s,
175 uint32_t index, uint32_t offset)
176 {
177 s->bat_bitmap[index] = cpu_to_le32(offset);
178 bitmap_set(s->bat_dirty_bmap, bat_entry_off(index) / s->bat_dirty_block, 1);
179 }
180
181 static int64_t coroutine_fn GRAPH_RDLOCK
182 allocate_clusters(BlockDriverState *bs, int64_t sector_num,
183 int nb_sectors, int *pnum)
184 {
185 int ret = 0;
186 BDRVParallelsState *s = bs->opaque;
187 int64_t pos, space, idx, to_allocate, i, len;
188
189 pos = block_status(s, sector_num, nb_sectors, pnum);
190 if (pos > 0) {
191 return pos;
192 }
193
194 idx = sector_num / s->tracks;
195 to_allocate = DIV_ROUND_UP(sector_num + *pnum, s->tracks) - idx;
196
197 /*
198 * This function is called only by parallels_co_writev(), which will never
199 * pass a sector_num at or beyond the end of the image (because the block
200 * layer never passes such a sector_num to that function). Therefore, idx
201 * is always below s->bat_size.
202 * block_status() will limit *pnum so that sector_num + *pnum will not
203 * exceed the image end. Therefore, idx + to_allocate cannot exceed
204 * s->bat_size.
205 * Note that s->bat_size is an unsigned int, therefore idx + to_allocate
206 * will always fit into a uint32_t.
207 */
208 assert(idx < s->bat_size && idx + to_allocate <= s->bat_size);
209
210 space = to_allocate * s->tracks;
211 len = bdrv_co_getlength(bs->file->bs);
212 if (len < 0) {
213 return len;
214 }
215 if (s->data_end + space > (len >> BDRV_SECTOR_BITS)) {
216 space += s->prealloc_size;
217 /*
218 * We require the expanded size to read back as zero. If the
219 * user permitted truncation, we try that; but if it fails, we
220 * force the safer-but-slower fallocate.
221 */
222 if (s->prealloc_mode == PRL_PREALLOC_MODE_TRUNCATE) {
223 ret = bdrv_co_truncate(bs->file,
224 (s->data_end + space) << BDRV_SECTOR_BITS,
225 false, PREALLOC_MODE_OFF,
226 BDRV_REQ_ZERO_WRITE, NULL);
227 if (ret == -ENOTSUP) {
228 s->prealloc_mode = PRL_PREALLOC_MODE_FALLOCATE;
229 }
230 }
231 if (s->prealloc_mode == PRL_PREALLOC_MODE_FALLOCATE) {
232 ret = bdrv_co_pwrite_zeroes(bs->file,
233 s->data_end << BDRV_SECTOR_BITS,
234 space << BDRV_SECTOR_BITS, 0);
235 }
236 if (ret < 0) {
237 return ret;
238 }
239 }
240
241 /*
242 * Try to read from backing to fill empty clusters
243 * FIXME: 1. previous write_zeroes may be redundant
244 * 2. most of data we read from backing will be rewritten by
245 * parallels_co_writev. On aligned-to-cluster write we do not need
246 * this read at all.
247 * 3. it would be good to combine write of data from backing and new
248 * data into one write call.
249 */
250 if (bs->backing) {
251 int64_t nb_cow_sectors = to_allocate * s->tracks;
252 int64_t nb_cow_bytes = nb_cow_sectors << BDRV_SECTOR_BITS;
253 void *buf = qemu_blockalign(bs, nb_cow_bytes);
254
255 ret = bdrv_co_pread(bs->backing, idx * s->tracks * BDRV_SECTOR_SIZE,
256 nb_cow_bytes, buf, 0);
257 if (ret < 0) {
258 qemu_vfree(buf);
259 return ret;
260 }
261
262 ret = bdrv_co_pwrite(bs->file, s->data_end * BDRV_SECTOR_SIZE,
263 nb_cow_bytes, buf, 0);
264 qemu_vfree(buf);
265 if (ret < 0) {
266 return ret;
267 }
268 }
269
270 for (i = 0; i < to_allocate; i++) {
271 parallels_set_bat_entry(s, idx + i, s->data_end / s->off_multiplier);
272 s->data_end += s->tracks;
273 }
274
275 return bat2sect(s, idx) + sector_num % s->tracks;
276 }
277
278
279 static int coroutine_fn GRAPH_RDLOCK
280 parallels_co_flush_to_os(BlockDriverState *bs)
281 {
282 BDRVParallelsState *s = bs->opaque;
283 unsigned long size = DIV_ROUND_UP(s->header_size, s->bat_dirty_block);
284 unsigned long bit;
285
286 qemu_co_mutex_lock(&s->lock);
287
288 bit = find_first_bit(s->bat_dirty_bmap, size);
289 while (bit < size) {
290 uint32_t off = bit * s->bat_dirty_block;
291 uint32_t to_write = s->bat_dirty_block;
292 int ret;
293
294 if (off + to_write > s->header_size) {
295 to_write = s->header_size - off;
296 }
297 ret = bdrv_co_pwrite(bs->file, off, to_write,
298 (uint8_t *)s->header + off, 0);
299 if (ret < 0) {
300 qemu_co_mutex_unlock(&s->lock);
301 return ret;
302 }
303 bit = find_next_bit(s->bat_dirty_bmap, size, bit + 1);
304 }
305 bitmap_zero(s->bat_dirty_bmap, size);
306
307 qemu_co_mutex_unlock(&s->lock);
308 return 0;
309 }
310
311
312 static int coroutine_fn parallels_co_block_status(BlockDriverState *bs,
313 bool want_zero,
314 int64_t offset,
315 int64_t bytes,
316 int64_t *pnum,
317 int64_t *map,
318 BlockDriverState **file)
319 {
320 BDRVParallelsState *s = bs->opaque;
321 int count;
322
323 assert(QEMU_IS_ALIGNED(offset | bytes, BDRV_SECTOR_SIZE));
324 qemu_co_mutex_lock(&s->lock);
325 offset = block_status(s, offset >> BDRV_SECTOR_BITS,
326 bytes >> BDRV_SECTOR_BITS, &count);
327 qemu_co_mutex_unlock(&s->lock);
328
329 *pnum = count * BDRV_SECTOR_SIZE;
330 if (offset < 0) {
331 return 0;
332 }
333
334 *map = offset * BDRV_SECTOR_SIZE;
335 *file = bs->file->bs;
336 return BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID;
337 }
338
339 static int coroutine_fn GRAPH_RDLOCK
340 parallels_co_writev(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
341 QEMUIOVector *qiov, int flags)
342 {
343 BDRVParallelsState *s = bs->opaque;
344 uint64_t bytes_done = 0;
345 QEMUIOVector hd_qiov;
346 int ret = 0;
347
348 qemu_iovec_init(&hd_qiov, qiov->niov);
349
350 while (nb_sectors > 0) {
351 int64_t position;
352 int n, nbytes;
353
354 qemu_co_mutex_lock(&s->lock);
355 position = allocate_clusters(bs, sector_num, nb_sectors, &n);
356 qemu_co_mutex_unlock(&s->lock);
357 if (position < 0) {
358 ret = (int)position;
359 break;
360 }
361
362 nbytes = n << BDRV_SECTOR_BITS;
363
364 qemu_iovec_reset(&hd_qiov);
365 qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);
366
367 ret = bdrv_co_pwritev(bs->file, position * BDRV_SECTOR_SIZE, nbytes,
368 &hd_qiov, 0);
369 if (ret < 0) {
370 break;
371 }
372
373 nb_sectors -= n;
374 sector_num += n;
375 bytes_done += nbytes;
376 }
377
378 qemu_iovec_destroy(&hd_qiov);
379 return ret;
380 }
381
382 static int coroutine_fn GRAPH_RDLOCK
383 parallels_co_readv(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
384 QEMUIOVector *qiov)
385 {
386 BDRVParallelsState *s = bs->opaque;
387 uint64_t bytes_done = 0;
388 QEMUIOVector hd_qiov;
389 int ret = 0;
390
391 qemu_iovec_init(&hd_qiov, qiov->niov);
392
393 while (nb_sectors > 0) {
394 int64_t position;
395 int n, nbytes;
396
397 qemu_co_mutex_lock(&s->lock);
398 position = block_status(s, sector_num, nb_sectors, &n);
399 qemu_co_mutex_unlock(&s->lock);
400
401 nbytes = n << BDRV_SECTOR_BITS;
402
403 qemu_iovec_reset(&hd_qiov);
404 qemu_iovec_concat(&hd_qiov, qiov, bytes_done, nbytes);
405
406 if (position < 0) {
407 if (bs->backing) {
408 ret = bdrv_co_preadv(bs->backing, sector_num * BDRV_SECTOR_SIZE,
409 nbytes, &hd_qiov, 0);
410 if (ret < 0) {
411 break;
412 }
413 } else {
414 qemu_iovec_memset(&hd_qiov, 0, 0, nbytes);
415 }
416 } else {
417 ret = bdrv_co_preadv(bs->file, position * BDRV_SECTOR_SIZE, nbytes,
418 &hd_qiov, 0);
419 if (ret < 0) {
420 break;
421 }
422 }
423
424 nb_sectors -= n;
425 sector_num += n;
426 bytes_done += nbytes;
427 }
428
429 qemu_iovec_destroy(&hd_qiov);
430 return ret;
431 }
432
433 static void parallels_check_unclean(BlockDriverState *bs,
434 BdrvCheckResult *res,
435 BdrvCheckMode fix)
436 {
437 BDRVParallelsState *s = bs->opaque;
438
439 if (!s->header_unclean) {
440 return;
441 }
442
443 fprintf(stderr, "%s image was not closed correctly\n",
444 fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR");
445 res->corruptions++;
446 if (fix & BDRV_FIX_ERRORS) {
447 /* parallels_close will do the job right */
448 res->corruptions_fixed++;
449 s->header_unclean = false;
450 }
451 }
452
453 static int coroutine_fn GRAPH_RDLOCK
454 parallels_check_outside_image(BlockDriverState *bs, BdrvCheckResult *res,
455 BdrvCheckMode fix)
456 {
457 BDRVParallelsState *s = bs->opaque;
458 uint32_t i;
459 int64_t off, high_off, size;
460
461 size = bdrv_co_getlength(bs->file->bs);
462 if (size < 0) {
463 res->check_errors++;
464 return size;
465 }
466
467 high_off = 0;
468 for (i = 0; i < s->bat_size; i++) {
469 off = bat2sect(s, i) << BDRV_SECTOR_BITS;
470 if (off + s->cluster_size > size) {
471 fprintf(stderr, "%s cluster %u is outside image\n",
472 fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR", i);
473 res->corruptions++;
474 if (fix & BDRV_FIX_ERRORS) {
475 parallels_set_bat_entry(s, i, 0);
476 res->corruptions_fixed++;
477 }
478 continue;
479 }
480 if (high_off < off) {
481 high_off = off;
482 }
483 }
484
485 if (high_off == 0) {
486 res->image_end_offset = s->data_end << BDRV_SECTOR_BITS;
487 } else {
488 res->image_end_offset = high_off + s->cluster_size;
489 s->data_end = res->image_end_offset >> BDRV_SECTOR_BITS;
490 }
491
492 return 0;
493 }
494
495 static int coroutine_fn GRAPH_RDLOCK
496 parallels_check_leak(BlockDriverState *bs, BdrvCheckResult *res,
497 BdrvCheckMode fix, bool explicit)
498 {
499 BDRVParallelsState *s = bs->opaque;
500 int64_t size;
501 int ret;
502
503 size = bdrv_getlength(bs->file->bs);
504 if (size < 0) {
505 res->check_errors++;
506 return size;
507 }
508
509 if (size > res->image_end_offset) {
510 int64_t count;
511 count = DIV_ROUND_UP(size - res->image_end_offset, s->cluster_size);
512 if (explicit) {
513 fprintf(stderr,
514 "%s space leaked at the end of the image %" PRId64 "\n",
515 fix & BDRV_FIX_LEAKS ? "Repairing" : "ERROR",
516 size - res->image_end_offset);
517 res->leaks += count;
518 }
519 if (fix & BDRV_FIX_LEAKS) {
520 Error *local_err = NULL;
521
522 /*
523 * In order to really repair the image, we must shrink it.
524 * That means we have to pass exact=true.
525 */
526 ret = bdrv_co_truncate(bs->file, res->image_end_offset, true,
527 PREALLOC_MODE_OFF, 0, &local_err);
528 if (ret < 0) {
529 error_report_err(local_err);
530 res->check_errors++;
531 return ret;
532 }
533 if (explicit) {
534 res->leaks_fixed += count;
535 }
536 }
537 }
538
539 return 0;
540 }
541
542 static int coroutine_fn GRAPH_RDLOCK
543 parallels_check_duplicate(BlockDriverState *bs, BdrvCheckResult *res,
544 BdrvCheckMode fix)
545 {
546 BDRVParallelsState *s = bs->opaque;
547 int64_t host_off, host_sector, guest_sector;
548 unsigned long *bitmap;
549 uint32_t i, bitmap_size, cluster_index, bat_entry;
550 int n, ret = 0;
551 uint64_t *buf = NULL;
552 bool fixed = false;
553
554 /*
555 * Create a bitmap of used clusters.
556 * If a bit is set, there is a BAT entry pointing to this cluster.
557 * Loop through the BAT entries, check bits relevant to an entry offset.
558 * If bit is set, this entry is duplicated. Otherwise set the bit.
559 *
560 * We shouldn't worry about newly allocated clusters outside the image
561 * because they are created higher then any existing cluster pointed by
562 * a BAT entry.
563 */
564 bitmap_size = host_cluster_index(s, res->image_end_offset);
565 if (bitmap_size == 0) {
566 return 0;
567 }
568 if (res->image_end_offset % s->cluster_size) {
569 /* A not aligned image end leads to a bitmap shorter by 1 */
570 bitmap_size++;
571 }
572
573 bitmap = bitmap_new(bitmap_size);
574
575 buf = qemu_blockalign(bs, s->cluster_size);
576
577 for (i = 0; i < s->bat_size; i++) {
578 host_off = bat2sect(s, i) << BDRV_SECTOR_BITS;
579 if (host_off == 0) {
580 continue;
581 }
582
583 cluster_index = host_cluster_index(s, host_off);
584 assert(cluster_index < bitmap_size);
585 if (!test_bit(cluster_index, bitmap)) {
586 bitmap_set(bitmap, cluster_index, 1);
587 continue;
588 }
589
590 /* this cluster duplicates another one */
591 fprintf(stderr, "%s duplicate offset in BAT entry %u\n",
592 fix & BDRV_FIX_ERRORS ? "Repairing" : "ERROR", i);
593
594 res->corruptions++;
595
596 if (!(fix & BDRV_FIX_ERRORS)) {
597 continue;
598 }
599
600 /*
601 * Reset the entry and allocate a new cluster
602 * for the relevant guest offset. In this way we let
603 * the lower layer to place the new cluster properly.
604 * Copy the original cluster to the allocated one.
605 * But before save the old offset value for repairing
606 * if we have an error.
607 */
608 bat_entry = s->bat_bitmap[i];
609 parallels_set_bat_entry(s, i, 0);
610
611 ret = bdrv_co_pread(bs->file, host_off, s->cluster_size, buf, 0);
612 if (ret < 0) {
613 res->check_errors++;
614 goto out_repair_bat;
615 }
616
617 guest_sector = (i * (int64_t)s->cluster_size) >> BDRV_SECTOR_BITS;
618 host_sector = allocate_clusters(bs, guest_sector, s->tracks, &n);
619 if (host_sector < 0) {
620 res->check_errors++;
621 goto out_repair_bat;
622 }
623 host_off = host_sector << BDRV_SECTOR_BITS;
624
625 ret = bdrv_co_pwrite(bs->file, host_off, s->cluster_size, buf, 0);
626 if (ret < 0) {
627 res->check_errors++;
628 goto out_repair_bat;
629 }
630
631 if (host_off + s->cluster_size > res->image_end_offset) {
632 res->image_end_offset = host_off + s->cluster_size;
633 }
634
635 /*
636 * In the future allocate_cluster() will reuse holed offsets
637 * inside the image. Keep the used clusters bitmap content
638 * consistent for the new allocated clusters too.
639 *
640 * Note, clusters allocated outside the current image are not
641 * considered, and the bitmap size doesn't change.
642 */
643 cluster_index = host_cluster_index(s, host_off);
644 if (cluster_index < bitmap_size) {
645 bitmap_set(bitmap, cluster_index, 1);
646 }
647
648 fixed = true;
649 res->corruptions_fixed++;
650
651 }
652
653 if (fixed) {
654 /*
655 * When new clusters are allocated, the file size increases by
656 * 128 Mb. We need to truncate the file to the right size. Let
657 * the leak fix code make its job without res changing.
658 */
659 ret = parallels_check_leak(bs, res, fix, false);
660 }
661
662 out_free:
663 g_free(buf);
664 g_free(bitmap);
665 return ret;
666 /*
667 * We can get here only from places where index and old_offset have
668 * meaningful values.
669 */
670 out_repair_bat:
671 s->bat_bitmap[i] = bat_entry;
672 goto out_free;
673 }
674
675 static void parallels_collect_statistics(BlockDriverState *bs,
676 BdrvCheckResult *res,
677 BdrvCheckMode fix)
678 {
679 BDRVParallelsState *s = bs->opaque;
680 int64_t off, prev_off;
681 uint32_t i;
682
683 res->bfi.total_clusters = s->bat_size;
684 res->bfi.compressed_clusters = 0; /* compression is not supported */
685
686 prev_off = 0;
687 for (i = 0; i < s->bat_size; i++) {
688 off = bat2sect(s, i) << BDRV_SECTOR_BITS;
689 /*
690 * If BDRV_FIX_ERRORS is not set, out-of-image BAT entries were not
691 * fixed. Skip not allocated and out-of-image BAT entries.
692 */
693 if (off == 0 || off + s->cluster_size > res->image_end_offset) {
694 prev_off = 0;
695 continue;
696 }
697
698 if (prev_off != 0 && (prev_off + s->cluster_size) != off) {
699 res->bfi.fragmented_clusters++;
700 }
701 prev_off = off;
702 res->bfi.allocated_clusters++;
703 }
704 }
705
706 static int coroutine_fn GRAPH_RDLOCK
707 parallels_co_check(BlockDriverState *bs, BdrvCheckResult *res,
708 BdrvCheckMode fix)
709 {
710 BDRVParallelsState *s = bs->opaque;
711 int ret;
712
713 WITH_QEMU_LOCK_GUARD(&s->lock) {
714 parallels_check_unclean(bs, res, fix);
715
716 ret = parallels_check_outside_image(bs, res, fix);
717 if (ret < 0) {
718 return ret;
719 }
720
721 ret = parallels_check_leak(bs, res, fix, true);
722 if (ret < 0) {
723 return ret;
724 }
725
726 ret = parallels_check_duplicate(bs, res, fix);
727 if (ret < 0) {
728 return ret;
729 }
730
731 parallels_collect_statistics(bs, res, fix);
732 }
733
734 ret = bdrv_co_flush(bs);
735 if (ret < 0) {
736 res->check_errors++;
737 }
738
739 return ret;
740 }
741
742
743 static int coroutine_fn GRAPH_UNLOCKED
744 parallels_co_create(BlockdevCreateOptions* opts, Error **errp)
745 {
746 BlockdevCreateOptionsParallels *parallels_opts;
747 BlockDriverState *bs;
748 BlockBackend *blk;
749 int64_t total_size, cl_size;
750 uint32_t bat_entries, bat_sectors;
751 ParallelsHeader header;
752 uint8_t tmp[BDRV_SECTOR_SIZE];
753 int ret;
754
755 assert(opts->driver == BLOCKDEV_DRIVER_PARALLELS);
756 parallels_opts = &opts->u.parallels;
757
758 /* Sanity checks */
759 total_size = parallels_opts->size;
760
761 if (parallels_opts->has_cluster_size) {
762 cl_size = parallels_opts->cluster_size;
763 } else {
764 cl_size = DEFAULT_CLUSTER_SIZE;
765 }
766
767 /* XXX What is the real limit here? This is an insanely large maximum. */
768 if (cl_size >= INT64_MAX / MAX_PARALLELS_IMAGE_FACTOR) {
769 error_setg(errp, "Cluster size is too large");
770 return -EINVAL;
771 }
772 if (total_size >= MAX_PARALLELS_IMAGE_FACTOR * cl_size) {
773 error_setg(errp, "Image size is too large for this cluster size");
774 return -E2BIG;
775 }
776
777 if (!QEMU_IS_ALIGNED(total_size, BDRV_SECTOR_SIZE)) {
778 error_setg(errp, "Image size must be a multiple of 512 bytes");
779 return -EINVAL;
780 }
781
782 if (!QEMU_IS_ALIGNED(cl_size, BDRV_SECTOR_SIZE)) {
783 error_setg(errp, "Cluster size must be a multiple of 512 bytes");
784 return -EINVAL;
785 }
786
787 /* Create BlockBackend to write to the image */
788 bs = bdrv_co_open_blockdev_ref(parallels_opts->file, errp);
789 if (bs == NULL) {
790 return -EIO;
791 }
792
793 blk = blk_co_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
794 errp);
795 if (!blk) {
796 ret = -EPERM;
797 goto out;
798 }
799 blk_set_allow_write_beyond_eof(blk, true);
800
801 /* Create image format */
802 bat_entries = DIV_ROUND_UP(total_size, cl_size);
803 bat_sectors = DIV_ROUND_UP(bat_entry_off(bat_entries), cl_size);
804 bat_sectors = (bat_sectors * cl_size) >> BDRV_SECTOR_BITS;
805
806 memset(&header, 0, sizeof(header));
807 memcpy(header.magic, HEADER_MAGIC2, sizeof(header.magic));
808 header.version = cpu_to_le32(HEADER_VERSION);
809 /* don't care much about geometry, it is not used on image level */
810 header.heads = cpu_to_le32(HEADS_NUMBER);
811 header.cylinders = cpu_to_le32(total_size / BDRV_SECTOR_SIZE
812 / HEADS_NUMBER / SEC_IN_CYL);
813 header.tracks = cpu_to_le32(cl_size >> BDRV_SECTOR_BITS);
814 header.bat_entries = cpu_to_le32(bat_entries);
815 header.nb_sectors = cpu_to_le64(DIV_ROUND_UP(total_size, BDRV_SECTOR_SIZE));
816 header.data_off = cpu_to_le32(bat_sectors);
817
818 /* write all the data */
819 memset(tmp, 0, sizeof(tmp));
820 memcpy(tmp, &header, sizeof(header));
821
822 ret = blk_co_pwrite(blk, 0, BDRV_SECTOR_SIZE, tmp, 0);
823 if (ret < 0) {
824 goto exit;
825 }
826 ret = blk_co_pwrite_zeroes(blk, BDRV_SECTOR_SIZE,
827 (bat_sectors - 1) << BDRV_SECTOR_BITS, 0);
828 if (ret < 0) {
829 goto exit;
830 }
831
832 ret = 0;
833 out:
834 blk_co_unref(blk);
835 bdrv_co_unref(bs);
836 return ret;
837
838 exit:
839 error_setg_errno(errp, -ret, "Failed to create Parallels image");
840 goto out;
841 }
842
843 static int coroutine_fn GRAPH_UNLOCKED
844 parallels_co_create_opts(BlockDriver *drv, const char *filename,
845 QemuOpts *opts, Error **errp)
846 {
847 BlockdevCreateOptions *create_options = NULL;
848 BlockDriverState *bs = NULL;
849 QDict *qdict;
850 Visitor *v;
851 int ret;
852
853 static const QDictRenames opt_renames[] = {
854 { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" },
855 { NULL, NULL },
856 };
857
858 /* Parse options and convert legacy syntax */
859 qdict = qemu_opts_to_qdict_filtered(opts, NULL, &parallels_create_opts,
860 true);
861
862 if (!qdict_rename_keys(qdict, opt_renames, errp)) {
863 ret = -EINVAL;
864 goto done;
865 }
866
867 /* Create and open the file (protocol layer) */
868 ret = bdrv_co_create_file(filename, opts, errp);
869 if (ret < 0) {
870 goto done;
871 }
872
873 bs = bdrv_co_open(filename, NULL, NULL,
874 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
875 if (bs == NULL) {
876 ret = -EIO;
877 goto done;
878 }
879
880 /* Now get the QAPI type BlockdevCreateOptions */
881 qdict_put_str(qdict, "driver", "parallels");
882 qdict_put_str(qdict, "file", bs->node_name);
883
884 v = qobject_input_visitor_new_flat_confused(qdict, errp);
885 if (!v) {
886 ret = -EINVAL;
887 goto done;
888 }
889
890 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
891 visit_free(v);
892 if (!create_options) {
893 ret = -EINVAL;
894 goto done;
895 }
896
897 /* Silently round up sizes */
898 create_options->u.parallels.size =
899 ROUND_UP(create_options->u.parallels.size, BDRV_SECTOR_SIZE);
900 create_options->u.parallels.cluster_size =
901 ROUND_UP(create_options->u.parallels.cluster_size, BDRV_SECTOR_SIZE);
902
903 /* Create the Parallels image (format layer) */
904 ret = parallels_co_create(create_options, errp);
905 if (ret < 0) {
906 goto done;
907 }
908 ret = 0;
909
910 done:
911 qobject_unref(qdict);
912 bdrv_co_unref(bs);
913 qapi_free_BlockdevCreateOptions(create_options);
914 return ret;
915 }
916
917
918 static int parallels_probe(const uint8_t *buf, int buf_size,
919 const char *filename)
920 {
921 const ParallelsHeader *ph = (const void *)buf;
922
923 if (buf_size < sizeof(ParallelsHeader)) {
924 return 0;
925 }
926
927 if ((!memcmp(ph->magic, HEADER_MAGIC, 16) ||
928 !memcmp(ph->magic, HEADER_MAGIC2, 16)) &&
929 (le32_to_cpu(ph->version) == HEADER_VERSION)) {
930 return 100;
931 }
932
933 return 0;
934 }
935
936 static int parallels_update_header(BlockDriverState *bs)
937 {
938 BDRVParallelsState *s = bs->opaque;
939 unsigned size = MAX(bdrv_opt_mem_align(bs->file->bs),
940 sizeof(ParallelsHeader));
941
942 if (size > s->header_size) {
943 size = s->header_size;
944 }
945 return bdrv_pwrite_sync(bs->file, 0, size, s->header, 0);
946 }
947
948 static int parallels_open(BlockDriverState *bs, QDict *options, int flags,
949 Error **errp)
950 {
951 BDRVParallelsState *s = bs->opaque;
952 ParallelsHeader ph;
953 int ret, size, i;
954 int64_t file_nb_sectors, sector;
955 QemuOpts *opts = NULL;
956 Error *local_err = NULL;
957 char *buf;
958
959 ret = bdrv_open_file_child(NULL, options, "file", bs, errp);
960 if (ret < 0) {
961 return ret;
962 }
963
964 file_nb_sectors = bdrv_nb_sectors(bs->file->bs);
965 if (file_nb_sectors < 0) {
966 return -EINVAL;
967 }
968
969 ret = bdrv_pread(bs->file, 0, sizeof(ph), &ph, 0);
970 if (ret < 0) {
971 goto fail;
972 }
973
974 bs->total_sectors = le64_to_cpu(ph.nb_sectors);
975
976 if (le32_to_cpu(ph.version) != HEADER_VERSION) {
977 goto fail_format;
978 }
979 if (!memcmp(ph.magic, HEADER_MAGIC, 16)) {
980 s->off_multiplier = 1;
981 bs->total_sectors = 0xffffffff & bs->total_sectors;
982 } else if (!memcmp(ph.magic, HEADER_MAGIC2, 16)) {
983 s->off_multiplier = le32_to_cpu(ph.tracks);
984 } else {
985 goto fail_format;
986 }
987
988 s->tracks = le32_to_cpu(ph.tracks);
989 if (s->tracks == 0) {
990 error_setg(errp, "Invalid image: Zero sectors per track");
991 ret = -EINVAL;
992 goto fail;
993 }
994 if (s->tracks > INT32_MAX/513) {
995 error_setg(errp, "Invalid image: Too big cluster");
996 ret = -EFBIG;
997 goto fail;
998 }
999 s->cluster_size = s->tracks << BDRV_SECTOR_BITS;
1000
1001 s->bat_size = le32_to_cpu(ph.bat_entries);
1002 if (s->bat_size > INT_MAX / sizeof(uint32_t)) {
1003 error_setg(errp, "Catalog too large");
1004 ret = -EFBIG;
1005 goto fail;
1006 }
1007
1008 size = bat_entry_off(s->bat_size);
1009 s->header_size = ROUND_UP(size, bdrv_opt_mem_align(bs->file->bs));
1010 s->header = qemu_try_blockalign(bs->file->bs, s->header_size);
1011 if (s->header == NULL) {
1012 ret = -ENOMEM;
1013 goto fail;
1014 }
1015 s->data_start = le32_to_cpu(ph.data_off);
1016 if (s->data_start == 0) {
1017 s->data_start = DIV_ROUND_UP(size, BDRV_SECTOR_SIZE);
1018 }
1019 s->data_end = s->data_start;
1020 if (s->data_end < (s->header_size >> BDRV_SECTOR_BITS)) {
1021 /*
1022 * There is not enough unused space to fit to block align between BAT
1023 * and actual data. We can't avoid read-modify-write...
1024 */
1025 s->header_size = size;
1026 }
1027
1028 ret = bdrv_pread(bs->file, 0, s->header_size, s->header, 0);
1029 if (ret < 0) {
1030 goto fail;
1031 }
1032 s->bat_bitmap = (uint32_t *)(s->header + 1);
1033
1034 if (le32_to_cpu(ph.inuse) == HEADER_INUSE_MAGIC) {
1035 s->header_unclean = true;
1036 }
1037
1038 opts = qemu_opts_create(&parallels_runtime_opts, NULL, 0, errp);
1039 if (!opts) {
1040 goto fail_options;
1041 }
1042
1043 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
1044 goto fail_options;
1045 }
1046
1047 s->prealloc_size =
1048 qemu_opt_get_size_del(opts, PARALLELS_OPT_PREALLOC_SIZE, 0);
1049 s->prealloc_size = MAX(s->tracks, s->prealloc_size >> BDRV_SECTOR_BITS);
1050 buf = qemu_opt_get_del(opts, PARALLELS_OPT_PREALLOC_MODE);
1051 /* prealloc_mode can be downgraded later during allocate_clusters */
1052 s->prealloc_mode = qapi_enum_parse(&prealloc_mode_lookup, buf,
1053 PRL_PREALLOC_MODE_FALLOCATE,
1054 &local_err);
1055 g_free(buf);
1056 if (local_err != NULL) {
1057 error_propagate(errp, local_err);
1058 goto fail_options;
1059 }
1060
1061 if (ph.ext_off) {
1062 if (flags & BDRV_O_RDWR) {
1063 /*
1064 * It's unsafe to open image RW if there is an extension (as we
1065 * don't support it). But parallels driver in QEMU historically
1066 * ignores the extension, so print warning and don't care.
1067 */
1068 warn_report("Format Extension ignored in RW mode");
1069 } else {
1070 ret = parallels_read_format_extension(
1071 bs, le64_to_cpu(ph.ext_off) << BDRV_SECTOR_BITS, errp);
1072 if (ret < 0) {
1073 goto fail;
1074 }
1075 }
1076 }
1077
1078 if ((flags & BDRV_O_RDWR) && !(flags & BDRV_O_INACTIVE)) {
1079 s->header->inuse = cpu_to_le32(HEADER_INUSE_MAGIC);
1080 ret = parallels_update_header(bs);
1081 if (ret < 0) {
1082 goto fail;
1083 }
1084 }
1085
1086 s->bat_dirty_block = 4 * qemu_real_host_page_size();
1087 s->bat_dirty_bmap =
1088 bitmap_new(DIV_ROUND_UP(s->header_size, s->bat_dirty_block));
1089
1090 /* Disable migration until bdrv_activate method is added */
1091 error_setg(&s->migration_blocker, "The Parallels format used by node '%s' "
1092 "does not support live migration",
1093 bdrv_get_device_or_node_name(bs));
1094 ret = migrate_add_blocker(s->migration_blocker, errp);
1095 if (ret < 0) {
1096 error_setg(errp, "Migration blocker error");
1097 goto fail;
1098 }
1099 qemu_co_mutex_init(&s->lock);
1100
1101 for (i = 0; i < s->bat_size; i++) {
1102 sector = bat2sect(s, i);
1103 if (sector + s->tracks > s->data_end) {
1104 s->data_end = sector + s->tracks;
1105 }
1106 }
1107
1108 /*
1109 * We don't repair the image here if it's opened for checks. Also we don't
1110 * want to change inactive images and can't change readonly images.
1111 */
1112 if ((flags & (BDRV_O_CHECK | BDRV_O_INACTIVE)) || !(flags & BDRV_O_RDWR)) {
1113 return 0;
1114 }
1115
1116 /*
1117 * Repair the image if it's dirty or
1118 * out-of-image corruption was detected.
1119 */
1120 if (s->data_end > file_nb_sectors || s->header_unclean) {
1121 BdrvCheckResult res;
1122 ret = bdrv_check(bs, &res, BDRV_FIX_ERRORS | BDRV_FIX_LEAKS);
1123 if (ret < 0) {
1124 error_setg_errno(errp, -ret, "Could not repair corrupted image");
1125 migrate_del_blocker(s->migration_blocker);
1126 goto fail;
1127 }
1128 }
1129
1130 return 0;
1131
1132 fail_format:
1133 error_setg(errp, "Image not in Parallels format");
1134 fail_options:
1135 ret = -EINVAL;
1136 fail:
1137 /*
1138 * "s" object was allocated by g_malloc0 so we can safely
1139 * try to free its fields even they were not allocated.
1140 */
1141 error_free(s->migration_blocker);
1142 g_free(s->bat_dirty_bmap);
1143 qemu_vfree(s->header);
1144 return ret;
1145 }
1146
1147
1148 static void parallels_close(BlockDriverState *bs)
1149 {
1150 BDRVParallelsState *s = bs->opaque;
1151
1152 if ((bs->open_flags & BDRV_O_RDWR) && !(bs->open_flags & BDRV_O_INACTIVE)) {
1153 s->header->inuse = 0;
1154 parallels_update_header(bs);
1155
1156 /* errors are ignored, so we might as well pass exact=true */
1157 bdrv_truncate(bs->file, s->data_end << BDRV_SECTOR_BITS, true,
1158 PREALLOC_MODE_OFF, 0, NULL);
1159 }
1160
1161 g_free(s->bat_dirty_bmap);
1162 qemu_vfree(s->header);
1163
1164 migrate_del_blocker(s->migration_blocker);
1165 error_free(s->migration_blocker);
1166 }
1167
1168 static BlockDriver bdrv_parallels = {
1169 .format_name = "parallels",
1170 .instance_size = sizeof(BDRVParallelsState),
1171 .bdrv_probe = parallels_probe,
1172 .bdrv_open = parallels_open,
1173 .bdrv_close = parallels_close,
1174 .bdrv_child_perm = bdrv_default_perms,
1175 .bdrv_co_block_status = parallels_co_block_status,
1176 .bdrv_has_zero_init = bdrv_has_zero_init_1,
1177 .bdrv_co_flush_to_os = parallels_co_flush_to_os,
1178 .bdrv_co_readv = parallels_co_readv,
1179 .bdrv_co_writev = parallels_co_writev,
1180 .is_format = true,
1181 .supports_backing = true,
1182 .bdrv_co_create = parallels_co_create,
1183 .bdrv_co_create_opts = parallels_co_create_opts,
1184 .bdrv_co_check = parallels_co_check,
1185 .create_opts = &parallels_create_opts,
1186 };
1187
1188 static void bdrv_parallels_init(void)
1189 {
1190 bdrv_register(&bdrv_parallels);
1191 }
1192
1193 block_init(bdrv_parallels_init);