s390x/css: use SubchDev.orb
[qemu/ar7.git] / qemu-img.c
blob182e697f81c05721e6bcf46dd50ca5f2be32bef9
1 /*
2 * QEMU disk image utility
4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 #include "qemu/osdep.h"
25 #include "qemu-version.h"
26 #include "qapi/error.h"
27 #include "qapi/util.h"
28 #include "qapi-visit.h"
29 #include "qapi/qobject-output-visitor.h"
30 #include "qapi/qmp/qerror.h"
31 #include "qapi/qmp/qjson.h"
32 #include "qapi/qmp/qbool.h"
33 #include "qemu/cutils.h"
34 #include "qemu/config-file.h"
35 #include "qemu/option.h"
36 #include "qemu/error-report.h"
37 #include "qemu/log.h"
38 #include "qom/object_interfaces.h"
39 #include "sysemu/sysemu.h"
40 #include "sysemu/block-backend.h"
41 #include "block/block_int.h"
42 #include "block/blockjob.h"
43 #include "block/qapi.h"
44 #include "crypto/init.h"
45 #include "trace/control.h"
46 #include <getopt.h>
48 #define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
49 "\n" QEMU_COPYRIGHT "\n"
51 typedef struct img_cmd_t {
52 const char *name;
53 int (*handler)(int argc, char **argv);
54 } img_cmd_t;
56 enum {
57 OPTION_OUTPUT = 256,
58 OPTION_BACKING_CHAIN = 257,
59 OPTION_OBJECT = 258,
60 OPTION_IMAGE_OPTS = 259,
61 OPTION_PATTERN = 260,
62 OPTION_FLUSH_INTERVAL = 261,
63 OPTION_NO_DRAIN = 262,
64 OPTION_TARGET_IMAGE_OPTS = 263,
65 OPTION_SIZE = 264,
66 OPTION_PREALLOCATION = 265,
69 typedef enum OutputFormat {
70 OFORMAT_JSON,
71 OFORMAT_HUMAN,
72 } OutputFormat;
74 /* Default to cache=writeback as data integrity is not important for qemu-img */
75 #define BDRV_DEFAULT_CACHE "writeback"
77 static void format_print(void *opaque, const char *name)
79 printf(" %s", name);
82 static void QEMU_NORETURN GCC_FMT_ATTR(1, 2) error_exit(const char *fmt, ...)
84 va_list ap;
86 error_printf("qemu-img: ");
88 va_start(ap, fmt);
89 error_vprintf(fmt, ap);
90 va_end(ap);
92 error_printf("\nTry 'qemu-img --help' for more information\n");
93 exit(EXIT_FAILURE);
96 static void QEMU_NORETURN missing_argument(const char *option)
98 error_exit("missing argument for option '%s'", option);
101 static void QEMU_NORETURN unrecognized_option(const char *option)
103 error_exit("unrecognized option '%s'", option);
106 /* Please keep in synch with qemu-img.texi */
107 static void QEMU_NORETURN help(void)
109 const char *help_msg =
110 QEMU_IMG_VERSION
111 "usage: qemu-img [standard options] command [command options]\n"
112 "QEMU disk image utility\n"
113 "\n"
114 " '-h', '--help' display this help and exit\n"
115 " '-V', '--version' output version information and exit\n"
116 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
117 " specify tracing options\n"
118 "\n"
119 "Command syntax:\n"
120 #define DEF(option, callback, arg_string) \
121 " " arg_string "\n"
122 #include "qemu-img-cmds.h"
123 #undef DEF
124 #undef GEN_DOCS
125 "\n"
126 "Command parameters:\n"
127 " 'filename' is a disk image filename\n"
128 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
129 " manual page for a description of the object properties. The most common\n"
130 " object type is a 'secret', which is used to supply passwords and/or\n"
131 " encryption keys.\n"
132 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
133 " 'cache' is the cache mode used to write the output disk image, the valid\n"
134 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
135 " 'directsync' and 'unsafe' (default for convert)\n"
136 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
137 " options are the same as for the 'cache' option\n"
138 " 'size' is the disk image size in bytes. Optional suffixes\n"
139 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
140 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
141 " supported. 'b' is ignored.\n"
142 " 'output_filename' is the destination disk image filename\n"
143 " 'output_fmt' is the destination format\n"
144 " 'options' is a comma separated list of format specific options in a\n"
145 " name=value format. Use -o ? for an overview of the options supported by the\n"
146 " used format\n"
147 " 'snapshot_param' is param used for internal snapshot, format\n"
148 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
149 " '[ID_OR_NAME]'\n"
150 " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n"
151 " instead\n"
152 " '-c' indicates that target image must be compressed (qcow format only)\n"
153 " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
154 " match exactly. The image doesn't need a working backing file before\n"
155 " rebasing in this case (useful for renaming the backing file)\n"
156 " '-h' with or without a command shows this help and lists the supported formats\n"
157 " '-p' show progress of command (only certain commands)\n"
158 " '-q' use Quiet mode - do not print any output (except errors)\n"
159 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
160 " contain only zeros for qemu-img to create a sparse image during\n"
161 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
162 " unallocated or zero sectors, and the destination image will always be\n"
163 " fully allocated\n"
164 " '--output' takes the format in which the output must be done (human or json)\n"
165 " '-n' skips the target volume creation (useful if the volume is created\n"
166 " prior to running qemu-img)\n"
167 "\n"
168 "Parameters to check subcommand:\n"
169 " '-r' tries to repair any inconsistencies that are found during the check.\n"
170 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
171 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
172 " hiding corruption that has already occurred.\n"
173 "\n"
174 "Parameters to convert subcommand:\n"
175 " '-m' specifies how many coroutines work in parallel during the convert\n"
176 " process (defaults to 8)\n"
177 " '-W' allow to write to the target out of order rather than sequential\n"
178 "\n"
179 "Parameters to snapshot subcommand:\n"
180 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
181 " '-a' applies a snapshot (revert disk to saved state)\n"
182 " '-c' creates a snapshot\n"
183 " '-d' deletes a snapshot\n"
184 " '-l' lists all snapshots in the given image\n"
185 "\n"
186 "Parameters to compare subcommand:\n"
187 " '-f' first image format\n"
188 " '-F' second image format\n"
189 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
190 "\n"
191 "Parameters to dd subcommand:\n"
192 " 'bs=BYTES' read and write up to BYTES bytes at a time "
193 "(default: 512)\n"
194 " 'count=N' copy only N input blocks\n"
195 " 'if=FILE' read from FILE\n"
196 " 'of=FILE' write to FILE\n"
197 " 'skip=N' skip N bs-sized blocks at the start of input\n";
199 printf("%s\nSupported formats:", help_msg);
200 bdrv_iterate_format(format_print, NULL);
201 printf("\n");
202 exit(EXIT_SUCCESS);
205 static QemuOptsList qemu_object_opts = {
206 .name = "object",
207 .implied_opt_name = "qom-type",
208 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
209 .desc = {
214 static QemuOptsList qemu_source_opts = {
215 .name = "source",
216 .implied_opt_name = "file",
217 .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head),
218 .desc = {
223 static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
225 int ret = 0;
226 if (!quiet) {
227 va_list args;
228 va_start(args, fmt);
229 ret = vprintf(fmt, args);
230 va_end(args);
232 return ret;
236 static int print_block_option_help(const char *filename, const char *fmt)
238 BlockDriver *drv, *proto_drv;
239 QemuOptsList *create_opts = NULL;
240 Error *local_err = NULL;
242 /* Find driver and parse its options */
243 drv = bdrv_find_format(fmt);
244 if (!drv) {
245 error_report("Unknown file format '%s'", fmt);
246 return 1;
249 create_opts = qemu_opts_append(create_opts, drv->create_opts);
250 if (filename) {
251 proto_drv = bdrv_find_protocol(filename, true, &local_err);
252 if (!proto_drv) {
253 error_report_err(local_err);
254 qemu_opts_free(create_opts);
255 return 1;
257 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
260 qemu_opts_print_help(create_opts);
261 qemu_opts_free(create_opts);
262 return 0;
266 static BlockBackend *img_open_opts(const char *optstr,
267 QemuOpts *opts, int flags, bool writethrough,
268 bool quiet, bool force_share)
270 QDict *options;
271 Error *local_err = NULL;
272 BlockBackend *blk;
273 options = qemu_opts_to_qdict(opts, NULL);
274 if (force_share) {
275 if (qdict_haskey(options, BDRV_OPT_FORCE_SHARE)
276 && !qdict_get_bool(options, BDRV_OPT_FORCE_SHARE)) {
277 error_report("--force-share/-U conflicts with image options");
278 QDECREF(options);
279 return NULL;
281 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
283 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
284 if (!blk) {
285 error_reportf_err(local_err, "Could not open '%s': ", optstr);
286 return NULL;
288 blk_set_enable_write_cache(blk, !writethrough);
290 return blk;
293 static BlockBackend *img_open_file(const char *filename,
294 QDict *options,
295 const char *fmt, int flags,
296 bool writethrough, bool quiet,
297 bool force_share)
299 BlockBackend *blk;
300 Error *local_err = NULL;
302 if (!options) {
303 options = qdict_new();
305 if (fmt) {
306 qdict_put_str(options, "driver", fmt);
309 if (force_share) {
310 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
312 blk = blk_new_open(filename, NULL, options, flags, &local_err);
313 if (!blk) {
314 error_reportf_err(local_err, "Could not open '%s': ", filename);
315 return NULL;
317 blk_set_enable_write_cache(blk, !writethrough);
319 return blk;
323 static int img_add_key_secrets(void *opaque,
324 const char *name, const char *value,
325 Error **errp)
327 QDict *options = opaque;
329 if (g_str_has_suffix(name, "key-secret")) {
330 qdict_put_str(options, name, value);
333 return 0;
336 static BlockBackend *img_open_new_file(const char *filename,
337 QemuOpts *create_opts,
338 const char *fmt, int flags,
339 bool writethrough, bool quiet,
340 bool force_share)
342 QDict *options = NULL;
344 options = qdict_new();
345 qemu_opt_foreach(create_opts, img_add_key_secrets, options, &error_abort);
347 return img_open_file(filename, options, fmt, flags, writethrough, quiet,
348 force_share);
352 static BlockBackend *img_open(bool image_opts,
353 const char *filename,
354 const char *fmt, int flags, bool writethrough,
355 bool quiet, bool force_share)
357 BlockBackend *blk;
358 if (image_opts) {
359 QemuOpts *opts;
360 if (fmt) {
361 error_report("--image-opts and --format are mutually exclusive");
362 return NULL;
364 opts = qemu_opts_parse_noisily(qemu_find_opts("source"),
365 filename, true);
366 if (!opts) {
367 return NULL;
369 blk = img_open_opts(filename, opts, flags, writethrough, quiet,
370 force_share);
371 } else {
372 blk = img_open_file(filename, NULL, fmt, flags, writethrough, quiet,
373 force_share);
375 return blk;
379 static int add_old_style_options(const char *fmt, QemuOpts *opts,
380 const char *base_filename,
381 const char *base_fmt)
383 Error *err = NULL;
385 if (base_filename) {
386 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &err);
387 if (err) {
388 error_report("Backing file not supported for file format '%s'",
389 fmt);
390 error_free(err);
391 return -1;
394 if (base_fmt) {
395 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &err);
396 if (err) {
397 error_report("Backing file format not supported for file "
398 "format '%s'", fmt);
399 error_free(err);
400 return -1;
403 return 0;
406 static int64_t cvtnum(const char *s)
408 int err;
409 uint64_t value;
411 err = qemu_strtosz(s, NULL, &value);
412 if (err < 0) {
413 return err;
415 if (value > INT64_MAX) {
416 return -ERANGE;
418 return value;
421 static int img_create(int argc, char **argv)
423 int c;
424 uint64_t img_size = -1;
425 const char *fmt = "raw";
426 const char *base_fmt = NULL;
427 const char *filename;
428 const char *base_filename = NULL;
429 char *options = NULL;
430 Error *local_err = NULL;
431 bool quiet = false;
433 for(;;) {
434 static const struct option long_options[] = {
435 {"help", no_argument, 0, 'h'},
436 {"object", required_argument, 0, OPTION_OBJECT},
437 {0, 0, 0, 0}
439 c = getopt_long(argc, argv, ":F:b:f:ho:q",
440 long_options, NULL);
441 if (c == -1) {
442 break;
444 switch(c) {
445 case ':':
446 missing_argument(argv[optind - 1]);
447 break;
448 case '?':
449 unrecognized_option(argv[optind - 1]);
450 break;
451 case 'h':
452 help();
453 break;
454 case 'F':
455 base_fmt = optarg;
456 break;
457 case 'b':
458 base_filename = optarg;
459 break;
460 case 'f':
461 fmt = optarg;
462 break;
463 case 'o':
464 if (!is_valid_option_list(optarg)) {
465 error_report("Invalid option list: %s", optarg);
466 goto fail;
468 if (!options) {
469 options = g_strdup(optarg);
470 } else {
471 char *old_options = options;
472 options = g_strdup_printf("%s,%s", options, optarg);
473 g_free(old_options);
475 break;
476 case 'q':
477 quiet = true;
478 break;
479 case OPTION_OBJECT: {
480 QemuOpts *opts;
481 opts = qemu_opts_parse_noisily(&qemu_object_opts,
482 optarg, true);
483 if (!opts) {
484 goto fail;
486 } break;
490 /* Get the filename */
491 filename = (optind < argc) ? argv[optind] : NULL;
492 if (options && has_help_option(options)) {
493 g_free(options);
494 return print_block_option_help(filename, fmt);
497 if (optind >= argc) {
498 error_exit("Expecting image file name");
500 optind++;
502 if (qemu_opts_foreach(&qemu_object_opts,
503 user_creatable_add_opts_foreach,
504 NULL, NULL)) {
505 goto fail;
508 /* Get image size, if specified */
509 if (optind < argc) {
510 int64_t sval;
512 sval = cvtnum(argv[optind++]);
513 if (sval < 0) {
514 if (sval == -ERANGE) {
515 error_report("Image size must be less than 8 EiB!");
516 } else {
517 error_report("Invalid image size specified! You may use k, M, "
518 "G, T, P or E suffixes for ");
519 error_report("kilobytes, megabytes, gigabytes, terabytes, "
520 "petabytes and exabytes.");
522 goto fail;
524 img_size = (uint64_t)sval;
526 if (optind != argc) {
527 error_exit("Unexpected argument: %s", argv[optind]);
530 bdrv_img_create(filename, fmt, base_filename, base_fmt,
531 options, img_size, 0, quiet, &local_err);
532 if (local_err) {
533 error_reportf_err(local_err, "%s: ", filename);
534 goto fail;
537 g_free(options);
538 return 0;
540 fail:
541 g_free(options);
542 return 1;
545 static void dump_json_image_check(ImageCheck *check, bool quiet)
547 QString *str;
548 QObject *obj;
549 Visitor *v = qobject_output_visitor_new(&obj);
551 visit_type_ImageCheck(v, NULL, &check, &error_abort);
552 visit_complete(v, &obj);
553 str = qobject_to_json_pretty(obj);
554 assert(str != NULL);
555 qprintf(quiet, "%s\n", qstring_get_str(str));
556 qobject_decref(obj);
557 visit_free(v);
558 QDECREF(str);
561 static void dump_human_image_check(ImageCheck *check, bool quiet)
563 if (!(check->corruptions || check->leaks || check->check_errors)) {
564 qprintf(quiet, "No errors were found on the image.\n");
565 } else {
566 if (check->corruptions) {
567 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
568 "Data may be corrupted, or further writes to the image "
569 "may corrupt it.\n",
570 check->corruptions);
573 if (check->leaks) {
574 qprintf(quiet,
575 "\n%" PRId64 " leaked clusters were found on the image.\n"
576 "This means waste of disk space, but no harm to data.\n",
577 check->leaks);
580 if (check->check_errors) {
581 qprintf(quiet,
582 "\n%" PRId64
583 " internal errors have occurred during the check.\n",
584 check->check_errors);
588 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
589 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
590 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
591 check->allocated_clusters, check->total_clusters,
592 check->allocated_clusters * 100.0 / check->total_clusters,
593 check->fragmented_clusters * 100.0 / check->allocated_clusters,
594 check->compressed_clusters * 100.0 /
595 check->allocated_clusters);
598 if (check->image_end_offset) {
599 qprintf(quiet,
600 "Image end offset: %" PRId64 "\n", check->image_end_offset);
604 static int collect_image_check(BlockDriverState *bs,
605 ImageCheck *check,
606 const char *filename,
607 const char *fmt,
608 int fix)
610 int ret;
611 BdrvCheckResult result;
613 ret = bdrv_check(bs, &result, fix);
614 if (ret < 0) {
615 return ret;
618 check->filename = g_strdup(filename);
619 check->format = g_strdup(bdrv_get_format_name(bs));
620 check->check_errors = result.check_errors;
621 check->corruptions = result.corruptions;
622 check->has_corruptions = result.corruptions != 0;
623 check->leaks = result.leaks;
624 check->has_leaks = result.leaks != 0;
625 check->corruptions_fixed = result.corruptions_fixed;
626 check->has_corruptions_fixed = result.corruptions != 0;
627 check->leaks_fixed = result.leaks_fixed;
628 check->has_leaks_fixed = result.leaks != 0;
629 check->image_end_offset = result.image_end_offset;
630 check->has_image_end_offset = result.image_end_offset != 0;
631 check->total_clusters = result.bfi.total_clusters;
632 check->has_total_clusters = result.bfi.total_clusters != 0;
633 check->allocated_clusters = result.bfi.allocated_clusters;
634 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
635 check->fragmented_clusters = result.bfi.fragmented_clusters;
636 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
637 check->compressed_clusters = result.bfi.compressed_clusters;
638 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
640 return 0;
644 * Checks an image for consistency. Exit codes:
646 * 0 - Check completed, image is good
647 * 1 - Check not completed because of internal errors
648 * 2 - Check completed, image is corrupted
649 * 3 - Check completed, image has leaked clusters, but is good otherwise
650 * 63 - Checks are not supported by the image format
652 static int img_check(int argc, char **argv)
654 int c, ret;
655 OutputFormat output_format = OFORMAT_HUMAN;
656 const char *filename, *fmt, *output, *cache;
657 BlockBackend *blk;
658 BlockDriverState *bs;
659 int fix = 0;
660 int flags = BDRV_O_CHECK;
661 bool writethrough;
662 ImageCheck *check;
663 bool quiet = false;
664 bool image_opts = false;
665 bool force_share = false;
667 fmt = NULL;
668 output = NULL;
669 cache = BDRV_DEFAULT_CACHE;
671 for(;;) {
672 int option_index = 0;
673 static const struct option long_options[] = {
674 {"help", no_argument, 0, 'h'},
675 {"format", required_argument, 0, 'f'},
676 {"repair", required_argument, 0, 'r'},
677 {"output", required_argument, 0, OPTION_OUTPUT},
678 {"object", required_argument, 0, OPTION_OBJECT},
679 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
680 {"force-share", no_argument, 0, 'U'},
681 {0, 0, 0, 0}
683 c = getopt_long(argc, argv, ":hf:r:T:qU",
684 long_options, &option_index);
685 if (c == -1) {
686 break;
688 switch(c) {
689 case ':':
690 missing_argument(argv[optind - 1]);
691 break;
692 case '?':
693 unrecognized_option(argv[optind - 1]);
694 break;
695 case 'h':
696 help();
697 break;
698 case 'f':
699 fmt = optarg;
700 break;
701 case 'r':
702 flags |= BDRV_O_RDWR;
704 if (!strcmp(optarg, "leaks")) {
705 fix = BDRV_FIX_LEAKS;
706 } else if (!strcmp(optarg, "all")) {
707 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
708 } else {
709 error_exit("Unknown option value for -r "
710 "(expecting 'leaks' or 'all'): %s", optarg);
712 break;
713 case OPTION_OUTPUT:
714 output = optarg;
715 break;
716 case 'T':
717 cache = optarg;
718 break;
719 case 'q':
720 quiet = true;
721 break;
722 case 'U':
723 force_share = true;
724 break;
725 case OPTION_OBJECT: {
726 QemuOpts *opts;
727 opts = qemu_opts_parse_noisily(&qemu_object_opts,
728 optarg, true);
729 if (!opts) {
730 return 1;
732 } break;
733 case OPTION_IMAGE_OPTS:
734 image_opts = true;
735 break;
738 if (optind != argc - 1) {
739 error_exit("Expecting one image file name");
741 filename = argv[optind++];
743 if (output && !strcmp(output, "json")) {
744 output_format = OFORMAT_JSON;
745 } else if (output && !strcmp(output, "human")) {
746 output_format = OFORMAT_HUMAN;
747 } else if (output) {
748 error_report("--output must be used with human or json as argument.");
749 return 1;
752 if (qemu_opts_foreach(&qemu_object_opts,
753 user_creatable_add_opts_foreach,
754 NULL, NULL)) {
755 return 1;
758 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
759 if (ret < 0) {
760 error_report("Invalid source cache option: %s", cache);
761 return 1;
764 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
765 force_share);
766 if (!blk) {
767 return 1;
769 bs = blk_bs(blk);
771 check = g_new0(ImageCheck, 1);
772 ret = collect_image_check(bs, check, filename, fmt, fix);
774 if (ret == -ENOTSUP) {
775 error_report("This image format does not support checks");
776 ret = 63;
777 goto fail;
780 if (check->corruptions_fixed || check->leaks_fixed) {
781 int corruptions_fixed, leaks_fixed;
783 leaks_fixed = check->leaks_fixed;
784 corruptions_fixed = check->corruptions_fixed;
786 if (output_format == OFORMAT_HUMAN) {
787 qprintf(quiet,
788 "The following inconsistencies were found and repaired:\n\n"
789 " %" PRId64 " leaked clusters\n"
790 " %" PRId64 " corruptions\n\n"
791 "Double checking the fixed image now...\n",
792 check->leaks_fixed,
793 check->corruptions_fixed);
796 ret = collect_image_check(bs, check, filename, fmt, 0);
798 check->leaks_fixed = leaks_fixed;
799 check->corruptions_fixed = corruptions_fixed;
802 if (!ret) {
803 switch (output_format) {
804 case OFORMAT_HUMAN:
805 dump_human_image_check(check, quiet);
806 break;
807 case OFORMAT_JSON:
808 dump_json_image_check(check, quiet);
809 break;
813 if (ret || check->check_errors) {
814 if (ret) {
815 error_report("Check failed: %s", strerror(-ret));
816 } else {
817 error_report("Check failed");
819 ret = 1;
820 goto fail;
823 if (check->corruptions) {
824 ret = 2;
825 } else if (check->leaks) {
826 ret = 3;
827 } else {
828 ret = 0;
831 fail:
832 qapi_free_ImageCheck(check);
833 blk_unref(blk);
834 return ret;
837 typedef struct CommonBlockJobCBInfo {
838 BlockDriverState *bs;
839 Error **errp;
840 } CommonBlockJobCBInfo;
842 static void common_block_job_cb(void *opaque, int ret)
844 CommonBlockJobCBInfo *cbi = opaque;
846 if (ret < 0) {
847 error_setg_errno(cbi->errp, -ret, "Block job failed");
851 static void run_block_job(BlockJob *job, Error **errp)
853 AioContext *aio_context = blk_get_aio_context(job->blk);
854 int ret = 0;
856 aio_context_acquire(aio_context);
857 block_job_ref(job);
858 do {
859 aio_poll(aio_context, true);
860 qemu_progress_print(job->len ?
861 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
862 } while (!job->ready && !job->completed);
864 if (!job->completed) {
865 ret = block_job_complete_sync(job, errp);
866 } else {
867 ret = job->ret;
869 block_job_unref(job);
870 aio_context_release(aio_context);
872 /* publish completion progress only when success */
873 if (!ret) {
874 qemu_progress_print(100.f, 0);
878 static int img_commit(int argc, char **argv)
880 int c, ret, flags;
881 const char *filename, *fmt, *cache, *base;
882 BlockBackend *blk;
883 BlockDriverState *bs, *base_bs;
884 BlockJob *job;
885 bool progress = false, quiet = false, drop = false;
886 bool writethrough;
887 Error *local_err = NULL;
888 CommonBlockJobCBInfo cbi;
889 bool image_opts = false;
890 AioContext *aio_context;
892 fmt = NULL;
893 cache = BDRV_DEFAULT_CACHE;
894 base = NULL;
895 for(;;) {
896 static const struct option long_options[] = {
897 {"help", no_argument, 0, 'h'},
898 {"object", required_argument, 0, OPTION_OBJECT},
899 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
900 {0, 0, 0, 0}
902 c = getopt_long(argc, argv, ":f:ht:b:dpq",
903 long_options, NULL);
904 if (c == -1) {
905 break;
907 switch(c) {
908 case ':':
909 missing_argument(argv[optind - 1]);
910 break;
911 case '?':
912 unrecognized_option(argv[optind - 1]);
913 break;
914 case 'h':
915 help();
916 break;
917 case 'f':
918 fmt = optarg;
919 break;
920 case 't':
921 cache = optarg;
922 break;
923 case 'b':
924 base = optarg;
925 /* -b implies -d */
926 drop = true;
927 break;
928 case 'd':
929 drop = true;
930 break;
931 case 'p':
932 progress = true;
933 break;
934 case 'q':
935 quiet = true;
936 break;
937 case OPTION_OBJECT: {
938 QemuOpts *opts;
939 opts = qemu_opts_parse_noisily(&qemu_object_opts,
940 optarg, true);
941 if (!opts) {
942 return 1;
944 } break;
945 case OPTION_IMAGE_OPTS:
946 image_opts = true;
947 break;
951 /* Progress is not shown in Quiet mode */
952 if (quiet) {
953 progress = false;
956 if (optind != argc - 1) {
957 error_exit("Expecting one image file name");
959 filename = argv[optind++];
961 if (qemu_opts_foreach(&qemu_object_opts,
962 user_creatable_add_opts_foreach,
963 NULL, NULL)) {
964 return 1;
967 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
968 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
969 if (ret < 0) {
970 error_report("Invalid cache option: %s", cache);
971 return 1;
974 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
975 false);
976 if (!blk) {
977 return 1;
979 bs = blk_bs(blk);
981 qemu_progress_init(progress, 1.f);
982 qemu_progress_print(0.f, 100);
984 if (base) {
985 base_bs = bdrv_find_backing_image(bs, base);
986 if (!base_bs) {
987 error_setg(&local_err,
988 "Did not find '%s' in the backing chain of '%s'",
989 base, filename);
990 goto done;
992 } else {
993 /* This is different from QMP, which by default uses the deepest file in
994 * the backing chain (i.e., the very base); however, the traditional
995 * behavior of qemu-img commit is using the immediate backing file. */
996 base_bs = backing_bs(bs);
997 if (!base_bs) {
998 error_setg(&local_err, "Image does not have a backing file");
999 goto done;
1003 cbi = (CommonBlockJobCBInfo){
1004 .errp = &local_err,
1005 .bs = bs,
1008 aio_context = bdrv_get_aio_context(bs);
1009 aio_context_acquire(aio_context);
1010 commit_active_start("commit", bs, base_bs, BLOCK_JOB_DEFAULT, 0,
1011 BLOCKDEV_ON_ERROR_REPORT, NULL, common_block_job_cb,
1012 &cbi, false, &local_err);
1013 aio_context_release(aio_context);
1014 if (local_err) {
1015 goto done;
1018 /* When the block job completes, the BlockBackend reference will point to
1019 * the old backing file. In order to avoid that the top image is already
1020 * deleted, so we can still empty it afterwards, increment the reference
1021 * counter here preemptively. */
1022 if (!drop) {
1023 bdrv_ref(bs);
1026 job = block_job_get("commit");
1027 run_block_job(job, &local_err);
1028 if (local_err) {
1029 goto unref_backing;
1032 if (!drop && bs->drv->bdrv_make_empty) {
1033 ret = bs->drv->bdrv_make_empty(bs);
1034 if (ret) {
1035 error_setg_errno(&local_err, -ret, "Could not empty %s",
1036 filename);
1037 goto unref_backing;
1041 unref_backing:
1042 if (!drop) {
1043 bdrv_unref(bs);
1046 done:
1047 qemu_progress_end();
1049 blk_unref(blk);
1051 if (local_err) {
1052 error_report_err(local_err);
1053 return 1;
1056 qprintf(quiet, "Image committed.\n");
1057 return 0;
1061 * Returns true iff the first sector pointed to by 'buf' contains at least
1062 * a non-NUL byte.
1064 * 'pnum' is set to the number of sectors (including and immediately following
1065 * the first one) that are known to be in the same allocated/unallocated state.
1067 static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
1069 bool is_zero;
1070 int i;
1072 if (n <= 0) {
1073 *pnum = 0;
1074 return 0;
1076 is_zero = buffer_is_zero(buf, 512);
1077 for(i = 1; i < n; i++) {
1078 buf += 512;
1079 if (is_zero != buffer_is_zero(buf, 512)) {
1080 break;
1083 *pnum = i;
1084 return !is_zero;
1088 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1089 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1090 * breaking up write requests for only small sparse areas.
1092 static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1093 int min)
1095 int ret;
1096 int num_checked, num_used;
1098 if (n < min) {
1099 min = n;
1102 ret = is_allocated_sectors(buf, n, pnum);
1103 if (!ret) {
1104 return ret;
1107 num_used = *pnum;
1108 buf += BDRV_SECTOR_SIZE * *pnum;
1109 n -= *pnum;
1110 num_checked = num_used;
1112 while (n > 0) {
1113 ret = is_allocated_sectors(buf, n, pnum);
1115 buf += BDRV_SECTOR_SIZE * *pnum;
1116 n -= *pnum;
1117 num_checked += *pnum;
1118 if (ret) {
1119 num_used = num_checked;
1120 } else if (*pnum >= min) {
1121 break;
1125 *pnum = num_used;
1126 return 1;
1130 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1131 * buffers matches, non-zero otherwise.
1133 * pnum is set to the number of sectors (including and immediately following
1134 * the first one) that are known to have the same comparison result
1136 static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1137 int *pnum)
1139 bool res;
1140 int i;
1142 if (n <= 0) {
1143 *pnum = 0;
1144 return 0;
1147 res = !!memcmp(buf1, buf2, 512);
1148 for(i = 1; i < n; i++) {
1149 buf1 += 512;
1150 buf2 += 512;
1152 if (!!memcmp(buf1, buf2, 512) != res) {
1153 break;
1157 *pnum = i;
1158 return res;
1161 #define IO_BUF_SIZE (2 * 1024 * 1024)
1163 static int64_t sectors_to_bytes(int64_t sectors)
1165 return sectors << BDRV_SECTOR_BITS;
1168 static int64_t sectors_to_process(int64_t total, int64_t from)
1170 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1174 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1176 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1177 * data and negative value on error.
1179 * @param blk: BlockBackend for the image
1180 * @param sect_num: Number of first sector to check
1181 * @param sect_count: Number of sectors to check
1182 * @param filename: Name of disk file we are checking (logging purpose)
1183 * @param buffer: Allocated buffer for storing read data
1184 * @param quiet: Flag for quiet mode
1186 static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
1187 int sect_count, const char *filename,
1188 uint8_t *buffer, bool quiet)
1190 int pnum, ret = 0;
1191 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1192 sect_count << BDRV_SECTOR_BITS);
1193 if (ret < 0) {
1194 error_report("Error while reading offset %" PRId64 " of %s: %s",
1195 sectors_to_bytes(sect_num), filename, strerror(-ret));
1196 return ret;
1198 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1199 if (ret || pnum != sect_count) {
1200 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1201 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1202 return 1;
1205 return 0;
1209 * Compares two images. Exit codes:
1211 * 0 - Images are identical
1212 * 1 - Images differ
1213 * >1 - Error occurred
1215 static int img_compare(int argc, char **argv)
1217 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
1218 BlockBackend *blk1, *blk2;
1219 BlockDriverState *bs1, *bs2;
1220 int64_t total_sectors1, total_sectors2;
1221 uint8_t *buf1 = NULL, *buf2 = NULL;
1222 int pnum1, pnum2;
1223 int allocated1, allocated2;
1224 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1225 bool progress = false, quiet = false, strict = false;
1226 int flags;
1227 bool writethrough;
1228 int64_t total_sectors;
1229 int64_t sector_num = 0;
1230 int64_t nb_sectors;
1231 int c, pnum;
1232 uint64_t progress_base;
1233 bool image_opts = false;
1234 bool force_share = false;
1236 cache = BDRV_DEFAULT_CACHE;
1237 for (;;) {
1238 static const struct option long_options[] = {
1239 {"help", no_argument, 0, 'h'},
1240 {"object", required_argument, 0, OPTION_OBJECT},
1241 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
1242 {"force-share", no_argument, 0, 'U'},
1243 {0, 0, 0, 0}
1245 c = getopt_long(argc, argv, ":hf:F:T:pqsU",
1246 long_options, NULL);
1247 if (c == -1) {
1248 break;
1250 switch (c) {
1251 case ':':
1252 missing_argument(argv[optind - 1]);
1253 break;
1254 case '?':
1255 unrecognized_option(argv[optind - 1]);
1256 break;
1257 case 'h':
1258 help();
1259 break;
1260 case 'f':
1261 fmt1 = optarg;
1262 break;
1263 case 'F':
1264 fmt2 = optarg;
1265 break;
1266 case 'T':
1267 cache = optarg;
1268 break;
1269 case 'p':
1270 progress = true;
1271 break;
1272 case 'q':
1273 quiet = true;
1274 break;
1275 case 's':
1276 strict = true;
1277 break;
1278 case 'U':
1279 force_share = true;
1280 break;
1281 case OPTION_OBJECT: {
1282 QemuOpts *opts;
1283 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1284 optarg, true);
1285 if (!opts) {
1286 ret = 2;
1287 goto out4;
1289 } break;
1290 case OPTION_IMAGE_OPTS:
1291 image_opts = true;
1292 break;
1296 /* Progress is not shown in Quiet mode */
1297 if (quiet) {
1298 progress = false;
1302 if (optind != argc - 2) {
1303 error_exit("Expecting two image file names");
1305 filename1 = argv[optind++];
1306 filename2 = argv[optind++];
1308 if (qemu_opts_foreach(&qemu_object_opts,
1309 user_creatable_add_opts_foreach,
1310 NULL, NULL)) {
1311 ret = 2;
1312 goto out4;
1315 /* Initialize before goto out */
1316 qemu_progress_init(progress, 2.0);
1318 flags = 0;
1319 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
1320 if (ret < 0) {
1321 error_report("Invalid source cache option: %s", cache);
1322 ret = 2;
1323 goto out3;
1326 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet,
1327 force_share);
1328 if (!blk1) {
1329 ret = 2;
1330 goto out3;
1333 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet,
1334 force_share);
1335 if (!blk2) {
1336 ret = 2;
1337 goto out2;
1339 bs1 = blk_bs(blk1);
1340 bs2 = blk_bs(blk2);
1342 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1343 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1344 total_sectors1 = blk_nb_sectors(blk1);
1345 if (total_sectors1 < 0) {
1346 error_report("Can't get size of %s: %s",
1347 filename1, strerror(-total_sectors1));
1348 ret = 4;
1349 goto out;
1351 total_sectors2 = blk_nb_sectors(blk2);
1352 if (total_sectors2 < 0) {
1353 error_report("Can't get size of %s: %s",
1354 filename2, strerror(-total_sectors2));
1355 ret = 4;
1356 goto out;
1358 total_sectors = MIN(total_sectors1, total_sectors2);
1359 progress_base = MAX(total_sectors1, total_sectors2);
1361 qemu_progress_print(0, 100);
1363 if (strict && total_sectors1 != total_sectors2) {
1364 ret = 1;
1365 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1366 goto out;
1369 for (;;) {
1370 int64_t status1, status2;
1371 BlockDriverState *file;
1373 nb_sectors = sectors_to_process(total_sectors, sector_num);
1374 if (nb_sectors <= 0) {
1375 break;
1377 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1378 total_sectors1 - sector_num,
1379 &pnum1, &file);
1380 if (status1 < 0) {
1381 ret = 3;
1382 error_report("Sector allocation test failed for %s", filename1);
1383 goto out;
1385 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
1387 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1388 total_sectors2 - sector_num,
1389 &pnum2, &file);
1390 if (status2 < 0) {
1391 ret = 3;
1392 error_report("Sector allocation test failed for %s", filename2);
1393 goto out;
1395 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1396 if (pnum1) {
1397 nb_sectors = MIN(nb_sectors, pnum1);
1399 if (pnum2) {
1400 nb_sectors = MIN(nb_sectors, pnum2);
1403 if (strict) {
1404 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1405 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1406 ret = 1;
1407 qprintf(quiet, "Strict mode: Offset %" PRId64
1408 " block status mismatch!\n",
1409 sectors_to_bytes(sector_num));
1410 goto out;
1413 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1414 nb_sectors = MIN(pnum1, pnum2);
1415 } else if (allocated1 == allocated2) {
1416 if (allocated1) {
1417 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1418 nb_sectors << BDRV_SECTOR_BITS);
1419 if (ret < 0) {
1420 error_report("Error while reading offset %" PRId64 " of %s:"
1421 " %s", sectors_to_bytes(sector_num), filename1,
1422 strerror(-ret));
1423 ret = 4;
1424 goto out;
1426 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1427 nb_sectors << BDRV_SECTOR_BITS);
1428 if (ret < 0) {
1429 error_report("Error while reading offset %" PRId64
1430 " of %s: %s", sectors_to_bytes(sector_num),
1431 filename2, strerror(-ret));
1432 ret = 4;
1433 goto out;
1435 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1436 if (ret || pnum != nb_sectors) {
1437 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1438 sectors_to_bytes(
1439 ret ? sector_num : sector_num + pnum));
1440 ret = 1;
1441 goto out;
1444 } else {
1446 if (allocated1) {
1447 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
1448 filename1, buf1, quiet);
1449 } else {
1450 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
1451 filename2, buf1, quiet);
1453 if (ret) {
1454 if (ret < 0) {
1455 error_report("Error while reading offset %" PRId64 ": %s",
1456 sectors_to_bytes(sector_num), strerror(-ret));
1457 ret = 4;
1459 goto out;
1462 sector_num += nb_sectors;
1463 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1466 if (total_sectors1 != total_sectors2) {
1467 BlockBackend *blk_over;
1468 int64_t total_sectors_over;
1469 const char *filename_over;
1471 qprintf(quiet, "Warning: Image size mismatch!\n");
1472 if (total_sectors1 > total_sectors2) {
1473 total_sectors_over = total_sectors1;
1474 blk_over = blk1;
1475 filename_over = filename1;
1476 } else {
1477 total_sectors_over = total_sectors2;
1478 blk_over = blk2;
1479 filename_over = filename2;
1482 for (;;) {
1483 int64_t count;
1485 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1486 if (nb_sectors <= 0) {
1487 break;
1489 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL,
1490 sector_num * BDRV_SECTOR_SIZE,
1491 nb_sectors * BDRV_SECTOR_SIZE,
1492 &count);
1493 if (ret < 0) {
1494 ret = 3;
1495 error_report("Sector allocation test failed for %s",
1496 filename_over);
1497 goto out;
1500 /* TODO relax this once bdrv_is_allocated_above does not enforce
1501 * sector alignment */
1502 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
1503 nb_sectors = count >> BDRV_SECTOR_BITS;
1504 if (ret) {
1505 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
1506 filename_over, buf1, quiet);
1507 if (ret) {
1508 if (ret < 0) {
1509 error_report("Error while reading offset %" PRId64
1510 " of %s: %s", sectors_to_bytes(sector_num),
1511 filename_over, strerror(-ret));
1512 ret = 4;
1514 goto out;
1517 sector_num += nb_sectors;
1518 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1522 qprintf(quiet, "Images are identical.\n");
1523 ret = 0;
1525 out:
1526 qemu_vfree(buf1);
1527 qemu_vfree(buf2);
1528 blk_unref(blk2);
1529 out2:
1530 blk_unref(blk1);
1531 out3:
1532 qemu_progress_end();
1533 out4:
1534 return ret;
1537 enum ImgConvertBlockStatus {
1538 BLK_DATA,
1539 BLK_ZERO,
1540 BLK_BACKING_FILE,
1543 #define MAX_COROUTINES 16
1545 typedef struct ImgConvertState {
1546 BlockBackend **src;
1547 int64_t *src_sectors;
1548 int src_num;
1549 int64_t total_sectors;
1550 int64_t allocated_sectors;
1551 int64_t allocated_done;
1552 int64_t sector_num;
1553 int64_t wr_offs;
1554 enum ImgConvertBlockStatus status;
1555 int64_t sector_next_status;
1556 BlockBackend *target;
1557 bool has_zero_init;
1558 bool compressed;
1559 bool target_has_backing;
1560 bool wr_in_order;
1561 int min_sparse;
1562 size_t cluster_sectors;
1563 size_t buf_sectors;
1564 long num_coroutines;
1565 int running_coroutines;
1566 Coroutine *co[MAX_COROUTINES];
1567 int64_t wait_sector_num[MAX_COROUTINES];
1568 CoMutex lock;
1569 int ret;
1570 } ImgConvertState;
1572 static void convert_select_part(ImgConvertState *s, int64_t sector_num,
1573 int *src_cur, int64_t *src_cur_offset)
1575 *src_cur = 0;
1576 *src_cur_offset = 0;
1577 while (sector_num - *src_cur_offset >= s->src_sectors[*src_cur]) {
1578 *src_cur_offset += s->src_sectors[*src_cur];
1579 (*src_cur)++;
1580 assert(*src_cur < s->src_num);
1584 static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1586 int64_t ret, src_cur_offset;
1587 int n, src_cur;
1589 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1591 assert(s->total_sectors > sector_num);
1592 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1594 if (s->sector_next_status <= sector_num) {
1595 BlockDriverState *file;
1596 if (s->target_has_backing) {
1597 ret = bdrv_get_block_status(blk_bs(s->src[src_cur]),
1598 sector_num - src_cur_offset,
1599 n, &n, &file);
1600 } else {
1601 ret = bdrv_get_block_status_above(blk_bs(s->src[src_cur]), NULL,
1602 sector_num - src_cur_offset,
1603 n, &n, &file);
1605 if (ret < 0) {
1606 return ret;
1609 if (ret & BDRV_BLOCK_ZERO) {
1610 s->status = BLK_ZERO;
1611 } else if (ret & BDRV_BLOCK_DATA) {
1612 s->status = BLK_DATA;
1613 } else {
1614 s->status = s->target_has_backing ? BLK_BACKING_FILE : BLK_DATA;
1617 s->sector_next_status = sector_num + n;
1620 n = MIN(n, s->sector_next_status - sector_num);
1621 if (s->status == BLK_DATA) {
1622 n = MIN(n, s->buf_sectors);
1625 /* We need to write complete clusters for compressed images, so if an
1626 * unallocated area is shorter than that, we must consider the whole
1627 * cluster allocated. */
1628 if (s->compressed) {
1629 if (n < s->cluster_sectors) {
1630 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1631 s->status = BLK_DATA;
1632 } else {
1633 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1637 return n;
1640 static int coroutine_fn convert_co_read(ImgConvertState *s, int64_t sector_num,
1641 int nb_sectors, uint8_t *buf)
1643 int n, ret;
1644 QEMUIOVector qiov;
1645 struct iovec iov;
1647 assert(nb_sectors <= s->buf_sectors);
1648 while (nb_sectors > 0) {
1649 BlockBackend *blk;
1650 int src_cur;
1651 int64_t bs_sectors, src_cur_offset;
1653 /* In the case of compression with multiple source files, we can get a
1654 * nb_sectors that spreads into the next part. So we must be able to
1655 * read across multiple BDSes for one convert_read() call. */
1656 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1657 blk = s->src[src_cur];
1658 bs_sectors = s->src_sectors[src_cur];
1660 n = MIN(nb_sectors, bs_sectors - (sector_num - src_cur_offset));
1661 iov.iov_base = buf;
1662 iov.iov_len = n << BDRV_SECTOR_BITS;
1663 qemu_iovec_init_external(&qiov, &iov, 1);
1665 ret = blk_co_preadv(
1666 blk, (sector_num - src_cur_offset) << BDRV_SECTOR_BITS,
1667 n << BDRV_SECTOR_BITS, &qiov, 0);
1668 if (ret < 0) {
1669 return ret;
1672 sector_num += n;
1673 nb_sectors -= n;
1674 buf += n * BDRV_SECTOR_SIZE;
1677 return 0;
1681 static int coroutine_fn convert_co_write(ImgConvertState *s, int64_t sector_num,
1682 int nb_sectors, uint8_t *buf,
1683 enum ImgConvertBlockStatus status)
1685 int ret;
1686 QEMUIOVector qiov;
1687 struct iovec iov;
1689 while (nb_sectors > 0) {
1690 int n = nb_sectors;
1691 BdrvRequestFlags flags = s->compressed ? BDRV_REQ_WRITE_COMPRESSED : 0;
1693 switch (status) {
1694 case BLK_BACKING_FILE:
1695 /* If we have a backing file, leave clusters unallocated that are
1696 * unallocated in the source image, so that the backing file is
1697 * visible at the respective offset. */
1698 assert(s->target_has_backing);
1699 break;
1701 case BLK_DATA:
1702 /* If we're told to keep the target fully allocated (-S 0) or there
1703 * is real non-zero data, we must write it. Otherwise we can treat
1704 * it as zero sectors.
1705 * Compressed clusters need to be written as a whole, so in that
1706 * case we can only save the write if the buffer is completely
1707 * zeroed. */
1708 if (!s->min_sparse ||
1709 (!s->compressed &&
1710 is_allocated_sectors_min(buf, n, &n, s->min_sparse)) ||
1711 (s->compressed &&
1712 !buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)))
1714 iov.iov_base = buf;
1715 iov.iov_len = n << BDRV_SECTOR_BITS;
1716 qemu_iovec_init_external(&qiov, &iov, 1);
1718 ret = blk_co_pwritev(s->target, sector_num << BDRV_SECTOR_BITS,
1719 n << BDRV_SECTOR_BITS, &qiov, flags);
1720 if (ret < 0) {
1721 return ret;
1723 break;
1725 /* fall-through */
1727 case BLK_ZERO:
1728 if (s->has_zero_init) {
1729 assert(!s->target_has_backing);
1730 break;
1732 ret = blk_co_pwrite_zeroes(s->target,
1733 sector_num << BDRV_SECTOR_BITS,
1734 n << BDRV_SECTOR_BITS, 0);
1735 if (ret < 0) {
1736 return ret;
1738 break;
1741 sector_num += n;
1742 nb_sectors -= n;
1743 buf += n * BDRV_SECTOR_SIZE;
1746 return 0;
1749 static void coroutine_fn convert_co_do_copy(void *opaque)
1751 ImgConvertState *s = opaque;
1752 uint8_t *buf = NULL;
1753 int ret, i;
1754 int index = -1;
1756 for (i = 0; i < s->num_coroutines; i++) {
1757 if (s->co[i] == qemu_coroutine_self()) {
1758 index = i;
1759 break;
1762 assert(index >= 0);
1764 s->running_coroutines++;
1765 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1767 while (1) {
1768 int n;
1769 int64_t sector_num;
1770 enum ImgConvertBlockStatus status;
1772 qemu_co_mutex_lock(&s->lock);
1773 if (s->ret != -EINPROGRESS || s->sector_num >= s->total_sectors) {
1774 qemu_co_mutex_unlock(&s->lock);
1775 break;
1777 n = convert_iteration_sectors(s, s->sector_num);
1778 if (n < 0) {
1779 qemu_co_mutex_unlock(&s->lock);
1780 s->ret = n;
1781 break;
1783 /* save current sector and allocation status to local variables */
1784 sector_num = s->sector_num;
1785 status = s->status;
1786 if (!s->min_sparse && s->status == BLK_ZERO) {
1787 n = MIN(n, s->buf_sectors);
1789 /* increment global sector counter so that other coroutines can
1790 * already continue reading beyond this request */
1791 s->sector_num += n;
1792 qemu_co_mutex_unlock(&s->lock);
1794 if (status == BLK_DATA || (!s->min_sparse && status == BLK_ZERO)) {
1795 s->allocated_done += n;
1796 qemu_progress_print(100.0 * s->allocated_done /
1797 s->allocated_sectors, 0);
1800 if (status == BLK_DATA) {
1801 ret = convert_co_read(s, sector_num, n, buf);
1802 if (ret < 0) {
1803 error_report("error while reading sector %" PRId64
1804 ": %s", sector_num, strerror(-ret));
1805 s->ret = ret;
1807 } else if (!s->min_sparse && status == BLK_ZERO) {
1808 status = BLK_DATA;
1809 memset(buf, 0x00, n * BDRV_SECTOR_SIZE);
1812 if (s->wr_in_order) {
1813 /* keep writes in order */
1814 while (s->wr_offs != sector_num && s->ret == -EINPROGRESS) {
1815 s->wait_sector_num[index] = sector_num;
1816 qemu_coroutine_yield();
1818 s->wait_sector_num[index] = -1;
1821 if (s->ret == -EINPROGRESS) {
1822 ret = convert_co_write(s, sector_num, n, buf, status);
1823 if (ret < 0) {
1824 error_report("error while writing sector %" PRId64
1825 ": %s", sector_num, strerror(-ret));
1826 s->ret = ret;
1830 if (s->wr_in_order) {
1831 /* reenter the coroutine that might have waited
1832 * for this write to complete */
1833 s->wr_offs = sector_num + n;
1834 for (i = 0; i < s->num_coroutines; i++) {
1835 if (s->co[i] && s->wait_sector_num[i] == s->wr_offs) {
1837 * A -> B -> A cannot occur because A has
1838 * s->wait_sector_num[i] == -1 during A -> B. Therefore
1839 * B will never enter A during this time window.
1841 qemu_coroutine_enter(s->co[i]);
1842 break;
1848 qemu_vfree(buf);
1849 s->co[index] = NULL;
1850 s->running_coroutines--;
1851 if (!s->running_coroutines && s->ret == -EINPROGRESS) {
1852 /* the convert job finished successfully */
1853 s->ret = 0;
1857 static int convert_do_copy(ImgConvertState *s)
1859 int ret, i, n;
1860 int64_t sector_num = 0;
1862 /* Check whether we have zero initialisation or can get it efficiently */
1863 s->has_zero_init = s->min_sparse && !s->target_has_backing
1864 ? bdrv_has_zero_init(blk_bs(s->target))
1865 : false;
1867 if (!s->has_zero_init && !s->target_has_backing &&
1868 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1870 ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP);
1871 if (ret == 0) {
1872 s->has_zero_init = true;
1876 /* Allocate buffer for copied data. For compressed images, only one cluster
1877 * can be copied at a time. */
1878 if (s->compressed) {
1879 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1880 error_report("invalid cluster size");
1881 return -EINVAL;
1883 s->buf_sectors = s->cluster_sectors;
1886 while (sector_num < s->total_sectors) {
1887 n = convert_iteration_sectors(s, sector_num);
1888 if (n < 0) {
1889 return n;
1891 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1893 s->allocated_sectors += n;
1895 sector_num += n;
1898 /* Do the copy */
1899 s->sector_next_status = 0;
1900 s->ret = -EINPROGRESS;
1902 qemu_co_mutex_init(&s->lock);
1903 for (i = 0; i < s->num_coroutines; i++) {
1904 s->co[i] = qemu_coroutine_create(convert_co_do_copy, s);
1905 s->wait_sector_num[i] = -1;
1906 qemu_coroutine_enter(s->co[i]);
1909 while (s->running_coroutines) {
1910 main_loop_wait(false);
1913 if (s->compressed && !s->ret) {
1914 /* signal EOF to align */
1915 ret = blk_pwrite_compressed(s->target, 0, NULL, 0);
1916 if (ret < 0) {
1917 return ret;
1921 return s->ret;
1924 static int img_convert(int argc, char **argv)
1926 int c, bs_i, flags, src_flags = 0;
1927 const char *fmt = NULL, *out_fmt = NULL, *cache = "unsafe",
1928 *src_cache = BDRV_DEFAULT_CACHE, *out_baseimg = NULL,
1929 *out_filename, *out_baseimg_param, *snapshot_name = NULL;
1930 BlockDriver *drv = NULL, *proto_drv = NULL;
1931 BlockDriverInfo bdi;
1932 BlockDriverState *out_bs;
1933 QemuOpts *opts = NULL, *sn_opts = NULL;
1934 QemuOptsList *create_opts = NULL;
1935 char *options = NULL;
1936 Error *local_err = NULL;
1937 bool writethrough, src_writethrough, quiet = false, image_opts = false,
1938 skip_create = false, progress = false, tgt_image_opts = false;
1939 int64_t ret = -EINVAL;
1940 bool force_share = false;
1942 ImgConvertState s = (ImgConvertState) {
1943 /* Need at least 4k of zeros for sparse detection */
1944 .min_sparse = 8,
1945 .buf_sectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE,
1946 .wr_in_order = true,
1947 .num_coroutines = 8,
1950 for(;;) {
1951 static const struct option long_options[] = {
1952 {"help", no_argument, 0, 'h'},
1953 {"object", required_argument, 0, OPTION_OBJECT},
1954 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
1955 {"force-share", no_argument, 0, 'U'},
1956 {"target-image-opts", no_argument, 0, OPTION_TARGET_IMAGE_OPTS},
1957 {0, 0, 0, 0}
1959 c = getopt_long(argc, argv, ":hf:O:B:co:s:l:S:pt:T:qnm:WU",
1960 long_options, NULL);
1961 if (c == -1) {
1962 break;
1964 switch(c) {
1965 case ':':
1966 missing_argument(argv[optind - 1]);
1967 break;
1968 case '?':
1969 unrecognized_option(argv[optind - 1]);
1970 break;
1971 case 'h':
1972 help();
1973 break;
1974 case 'f':
1975 fmt = optarg;
1976 break;
1977 case 'O':
1978 out_fmt = optarg;
1979 break;
1980 case 'B':
1981 out_baseimg = optarg;
1982 break;
1983 case 'c':
1984 s.compressed = true;
1985 break;
1986 case 'o':
1987 if (!is_valid_option_list(optarg)) {
1988 error_report("Invalid option list: %s", optarg);
1989 goto fail_getopt;
1991 if (!options) {
1992 options = g_strdup(optarg);
1993 } else {
1994 char *old_options = options;
1995 options = g_strdup_printf("%s,%s", options, optarg);
1996 g_free(old_options);
1998 break;
1999 case 's':
2000 snapshot_name = optarg;
2001 break;
2002 case 'l':
2003 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
2004 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
2005 optarg, false);
2006 if (!sn_opts) {
2007 error_report("Failed in parsing snapshot param '%s'",
2008 optarg);
2009 goto fail_getopt;
2011 } else {
2012 snapshot_name = optarg;
2014 break;
2015 case 'S':
2017 int64_t sval;
2019 sval = cvtnum(optarg);
2020 if (sval < 0) {
2021 error_report("Invalid minimum zero buffer size for sparse output specified");
2022 goto fail_getopt;
2025 s.min_sparse = sval / BDRV_SECTOR_SIZE;
2026 break;
2028 case 'p':
2029 progress = true;
2030 break;
2031 case 't':
2032 cache = optarg;
2033 break;
2034 case 'T':
2035 src_cache = optarg;
2036 break;
2037 case 'q':
2038 quiet = true;
2039 break;
2040 case 'n':
2041 skip_create = true;
2042 break;
2043 case 'm':
2044 if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) ||
2045 s.num_coroutines < 1 || s.num_coroutines > MAX_COROUTINES) {
2046 error_report("Invalid number of coroutines. Allowed number of"
2047 " coroutines is between 1 and %d", MAX_COROUTINES);
2048 goto fail_getopt;
2050 break;
2051 case 'W':
2052 s.wr_in_order = false;
2053 break;
2054 case 'U':
2055 force_share = true;
2056 break;
2057 case OPTION_OBJECT: {
2058 QemuOpts *object_opts;
2059 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
2060 optarg, true);
2061 if (!object_opts) {
2062 goto fail_getopt;
2064 break;
2066 case OPTION_IMAGE_OPTS:
2067 image_opts = true;
2068 break;
2069 case OPTION_TARGET_IMAGE_OPTS:
2070 tgt_image_opts = true;
2071 break;
2075 if (!out_fmt && !tgt_image_opts) {
2076 out_fmt = "raw";
2079 if (qemu_opts_foreach(&qemu_object_opts,
2080 user_creatable_add_opts_foreach,
2081 NULL, NULL)) {
2082 goto fail_getopt;
2085 if (!s.wr_in_order && s.compressed) {
2086 error_report("Out of order write and compress are mutually exclusive");
2087 goto fail_getopt;
2090 if (tgt_image_opts && !skip_create) {
2091 error_report("--target-image-opts requires use of -n flag");
2092 goto fail_getopt;
2095 s.src_num = argc - optind - 1;
2096 out_filename = s.src_num >= 1 ? argv[argc - 1] : NULL;
2098 if (options && has_help_option(options)) {
2099 if (out_fmt) {
2100 ret = print_block_option_help(out_filename, out_fmt);
2101 goto fail_getopt;
2102 } else {
2103 error_report("Option help requires a format be specified");
2104 goto fail_getopt;
2108 if (s.src_num < 1) {
2109 error_report("Must specify image file name");
2110 goto fail_getopt;
2114 /* ret is still -EINVAL until here */
2115 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
2116 if (ret < 0) {
2117 error_report("Invalid source cache option: %s", src_cache);
2118 goto fail_getopt;
2121 /* Initialize before goto out */
2122 if (quiet) {
2123 progress = false;
2125 qemu_progress_init(progress, 1.0);
2126 qemu_progress_print(0, 100);
2128 s.src = g_new0(BlockBackend *, s.src_num);
2129 s.src_sectors = g_new(int64_t, s.src_num);
2131 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2132 s.src[bs_i] = img_open(image_opts, argv[optind + bs_i],
2133 fmt, src_flags, src_writethrough, quiet,
2134 force_share);
2135 if (!s.src[bs_i]) {
2136 ret = -1;
2137 goto out;
2139 s.src_sectors[bs_i] = blk_nb_sectors(s.src[bs_i]);
2140 if (s.src_sectors[bs_i] < 0) {
2141 error_report("Could not get size of %s: %s",
2142 argv[optind + bs_i], strerror(-s.src_sectors[bs_i]));
2143 ret = -1;
2144 goto out;
2146 s.total_sectors += s.src_sectors[bs_i];
2149 if (sn_opts) {
2150 bdrv_snapshot_load_tmp(blk_bs(s.src[0]),
2151 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
2152 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
2153 &local_err);
2154 } else if (snapshot_name != NULL) {
2155 if (s.src_num > 1) {
2156 error_report("No support for concatenating multiple snapshot");
2157 ret = -1;
2158 goto out;
2161 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s.src[0]), snapshot_name,
2162 &local_err);
2164 if (local_err) {
2165 error_reportf_err(local_err, "Failed to load snapshot: ");
2166 ret = -1;
2167 goto out;
2170 if (!skip_create) {
2171 /* Find driver and parse its options */
2172 drv = bdrv_find_format(out_fmt);
2173 if (!drv) {
2174 error_report("Unknown file format '%s'", out_fmt);
2175 ret = -1;
2176 goto out;
2179 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
2180 if (!proto_drv) {
2181 error_report_err(local_err);
2182 ret = -1;
2183 goto out;
2186 if (!drv->create_opts) {
2187 error_report("Format driver '%s' does not support image creation",
2188 drv->format_name);
2189 ret = -1;
2190 goto out;
2193 if (!proto_drv->create_opts) {
2194 error_report("Protocol driver '%s' does not support image creation",
2195 proto_drv->format_name);
2196 ret = -1;
2197 goto out;
2200 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2201 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
2203 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
2204 if (options) {
2205 qemu_opts_do_parse(opts, options, NULL, &local_err);
2206 if (local_err) {
2207 error_report_err(local_err);
2208 ret = -1;
2209 goto out;
2213 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, s.total_sectors * 512,
2214 &error_abort);
2215 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2216 if (ret < 0) {
2217 goto out;
2221 /* Get backing file name if -o backing_file was used */
2222 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
2223 if (out_baseimg_param) {
2224 out_baseimg = out_baseimg_param;
2226 s.target_has_backing = (bool) out_baseimg;
2228 if (s.src_num > 1 && out_baseimg) {
2229 error_report("Having a backing file for the target makes no sense when "
2230 "concatenating multiple input images");
2231 ret = -1;
2232 goto out;
2235 /* Check if compression is supported */
2236 if (s.compressed) {
2237 bool encryption =
2238 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2239 const char *encryptfmt =
2240 qemu_opt_get(opts, BLOCK_OPT_ENCRYPT_FORMAT);
2241 const char *preallocation =
2242 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
2244 if (drv && !drv->bdrv_co_pwritev_compressed) {
2245 error_report("Compression not supported for this file format");
2246 ret = -1;
2247 goto out;
2250 if (encryption || encryptfmt) {
2251 error_report("Compression and encryption not supported at "
2252 "the same time");
2253 ret = -1;
2254 goto out;
2257 if (preallocation
2258 && strcmp(preallocation, "off"))
2260 error_report("Compression and preallocation not supported at "
2261 "the same time");
2262 ret = -1;
2263 goto out;
2267 if (!skip_create) {
2268 /* Create the new image */
2269 ret = bdrv_create(drv, out_filename, opts, &local_err);
2270 if (ret < 0) {
2271 error_reportf_err(local_err, "%s: error while converting %s: ",
2272 out_filename, out_fmt);
2273 goto out;
2277 flags = s.min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
2278 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
2279 if (ret < 0) {
2280 error_report("Invalid cache option: %s", cache);
2281 goto out;
2284 if (skip_create) {
2285 s.target = img_open(tgt_image_opts, out_filename, out_fmt,
2286 flags, writethrough, quiet, false);
2287 } else {
2288 /* TODO ultimately we should allow --target-image-opts
2289 * to be used even when -n is not given.
2290 * That has to wait for bdrv_create to be improved
2291 * to allow filenames in option syntax
2293 s.target = img_open_new_file(out_filename, opts, out_fmt,
2294 flags, writethrough, quiet, false);
2296 if (!s.target) {
2297 ret = -1;
2298 goto out;
2300 out_bs = blk_bs(s.target);
2302 if (s.compressed && !out_bs->drv->bdrv_co_pwritev_compressed) {
2303 error_report("Compression not supported for this file format");
2304 ret = -1;
2305 goto out;
2308 /* increase bufsectors from the default 4096 (2M) if opt_transfer
2309 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2310 * as maximum. */
2311 s.buf_sectors = MIN(32768,
2312 MAX(s.buf_sectors,
2313 MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
2314 out_bs->bl.pdiscard_alignment >>
2315 BDRV_SECTOR_BITS)));
2317 if (skip_create) {
2318 int64_t output_sectors = blk_nb_sectors(s.target);
2319 if (output_sectors < 0) {
2320 error_report("unable to get output image length: %s",
2321 strerror(-output_sectors));
2322 ret = -1;
2323 goto out;
2324 } else if (output_sectors < s.total_sectors) {
2325 error_report("output file is smaller than input file");
2326 ret = -1;
2327 goto out;
2331 ret = bdrv_get_info(out_bs, &bdi);
2332 if (ret < 0) {
2333 if (s.compressed) {
2334 error_report("could not get block driver info");
2335 goto out;
2337 } else {
2338 s.compressed = s.compressed || bdi.needs_compressed_writes;
2339 s.cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2342 ret = convert_do_copy(&s);
2343 out:
2344 if (!ret) {
2345 qemu_progress_print(100, 0);
2347 qemu_progress_end();
2348 qemu_opts_del(opts);
2349 qemu_opts_free(create_opts);
2350 qemu_opts_del(sn_opts);
2351 blk_unref(s.target);
2352 if (s.src) {
2353 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2354 blk_unref(s.src[bs_i]);
2356 g_free(s.src);
2358 g_free(s.src_sectors);
2359 fail_getopt:
2360 g_free(options);
2362 return !!ret;
2366 static void dump_snapshots(BlockDriverState *bs)
2368 QEMUSnapshotInfo *sn_tab, *sn;
2369 int nb_sns, i;
2371 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2372 if (nb_sns <= 0)
2373 return;
2374 printf("Snapshot list:\n");
2375 bdrv_snapshot_dump(fprintf, stdout, NULL);
2376 printf("\n");
2377 for(i = 0; i < nb_sns; i++) {
2378 sn = &sn_tab[i];
2379 bdrv_snapshot_dump(fprintf, stdout, sn);
2380 printf("\n");
2382 g_free(sn_tab);
2385 static void dump_json_image_info_list(ImageInfoList *list)
2387 QString *str;
2388 QObject *obj;
2389 Visitor *v = qobject_output_visitor_new(&obj);
2391 visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2392 visit_complete(v, &obj);
2393 str = qobject_to_json_pretty(obj);
2394 assert(str != NULL);
2395 printf("%s\n", qstring_get_str(str));
2396 qobject_decref(obj);
2397 visit_free(v);
2398 QDECREF(str);
2401 static void dump_json_image_info(ImageInfo *info)
2403 QString *str;
2404 QObject *obj;
2405 Visitor *v = qobject_output_visitor_new(&obj);
2407 visit_type_ImageInfo(v, NULL, &info, &error_abort);
2408 visit_complete(v, &obj);
2409 str = qobject_to_json_pretty(obj);
2410 assert(str != NULL);
2411 printf("%s\n", qstring_get_str(str));
2412 qobject_decref(obj);
2413 visit_free(v);
2414 QDECREF(str);
2417 static void dump_human_image_info_list(ImageInfoList *list)
2419 ImageInfoList *elem;
2420 bool delim = false;
2422 for (elem = list; elem; elem = elem->next) {
2423 if (delim) {
2424 printf("\n");
2426 delim = true;
2428 bdrv_image_info_dump(fprintf, stdout, elem->value);
2432 static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2434 return strcmp(a, b) == 0;
2438 * Open an image file chain and return an ImageInfoList
2440 * @filename: topmost image filename
2441 * @fmt: topmost image format (may be NULL to autodetect)
2442 * @chain: true - enumerate entire backing file chain
2443 * false - only topmost image file
2445 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2446 * image file. If there was an error a message will have been printed to
2447 * stderr.
2449 static ImageInfoList *collect_image_info_list(bool image_opts,
2450 const char *filename,
2451 const char *fmt,
2452 bool chain, bool force_share)
2454 ImageInfoList *head = NULL;
2455 ImageInfoList **last = &head;
2456 GHashTable *filenames;
2457 Error *err = NULL;
2459 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2461 while (filename) {
2462 BlockBackend *blk;
2463 BlockDriverState *bs;
2464 ImageInfo *info;
2465 ImageInfoList *elem;
2467 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2468 error_report("Backing file '%s' creates an infinite loop.",
2469 filename);
2470 goto err;
2472 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2474 blk = img_open(image_opts, filename, fmt,
2475 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false,
2476 force_share);
2477 if (!blk) {
2478 goto err;
2480 bs = blk_bs(blk);
2482 bdrv_query_image_info(bs, &info, &err);
2483 if (err) {
2484 error_report_err(err);
2485 blk_unref(blk);
2486 goto err;
2489 elem = g_new0(ImageInfoList, 1);
2490 elem->value = info;
2491 *last = elem;
2492 last = &elem->next;
2494 blk_unref(blk);
2496 filename = fmt = NULL;
2497 if (chain) {
2498 if (info->has_full_backing_filename) {
2499 filename = info->full_backing_filename;
2500 } else if (info->has_backing_filename) {
2501 error_report("Could not determine absolute backing filename,"
2502 " but backing filename '%s' present",
2503 info->backing_filename);
2504 goto err;
2506 if (info->has_backing_filename_format) {
2507 fmt = info->backing_filename_format;
2511 g_hash_table_destroy(filenames);
2512 return head;
2514 err:
2515 qapi_free_ImageInfoList(head);
2516 g_hash_table_destroy(filenames);
2517 return NULL;
2520 static int img_info(int argc, char **argv)
2522 int c;
2523 OutputFormat output_format = OFORMAT_HUMAN;
2524 bool chain = false;
2525 const char *filename, *fmt, *output;
2526 ImageInfoList *list;
2527 bool image_opts = false;
2528 bool force_share = false;
2530 fmt = NULL;
2531 output = NULL;
2532 for(;;) {
2533 int option_index = 0;
2534 static const struct option long_options[] = {
2535 {"help", no_argument, 0, 'h'},
2536 {"format", required_argument, 0, 'f'},
2537 {"output", required_argument, 0, OPTION_OUTPUT},
2538 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
2539 {"object", required_argument, 0, OPTION_OBJECT},
2540 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
2541 {"force-share", no_argument, 0, 'U'},
2542 {0, 0, 0, 0}
2544 c = getopt_long(argc, argv, ":f:hU",
2545 long_options, &option_index);
2546 if (c == -1) {
2547 break;
2549 switch(c) {
2550 case ':':
2551 missing_argument(argv[optind - 1]);
2552 break;
2553 case '?':
2554 unrecognized_option(argv[optind - 1]);
2555 break;
2556 case 'h':
2557 help();
2558 break;
2559 case 'f':
2560 fmt = optarg;
2561 break;
2562 case 'U':
2563 force_share = true;
2564 break;
2565 case OPTION_OUTPUT:
2566 output = optarg;
2567 break;
2568 case OPTION_BACKING_CHAIN:
2569 chain = true;
2570 break;
2571 case OPTION_OBJECT: {
2572 QemuOpts *opts;
2573 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2574 optarg, true);
2575 if (!opts) {
2576 return 1;
2578 } break;
2579 case OPTION_IMAGE_OPTS:
2580 image_opts = true;
2581 break;
2584 if (optind != argc - 1) {
2585 error_exit("Expecting one image file name");
2587 filename = argv[optind++];
2589 if (output && !strcmp(output, "json")) {
2590 output_format = OFORMAT_JSON;
2591 } else if (output && !strcmp(output, "human")) {
2592 output_format = OFORMAT_HUMAN;
2593 } else if (output) {
2594 error_report("--output must be used with human or json as argument.");
2595 return 1;
2598 if (qemu_opts_foreach(&qemu_object_opts,
2599 user_creatable_add_opts_foreach,
2600 NULL, NULL)) {
2601 return 1;
2604 list = collect_image_info_list(image_opts, filename, fmt, chain,
2605 force_share);
2606 if (!list) {
2607 return 1;
2610 switch (output_format) {
2611 case OFORMAT_HUMAN:
2612 dump_human_image_info_list(list);
2613 break;
2614 case OFORMAT_JSON:
2615 if (chain) {
2616 dump_json_image_info_list(list);
2617 } else {
2618 dump_json_image_info(list->value);
2620 break;
2623 qapi_free_ImageInfoList(list);
2624 return 0;
2627 static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2628 MapEntry *next)
2630 switch (output_format) {
2631 case OFORMAT_HUMAN:
2632 if (e->data && !e->has_offset) {
2633 error_report("File contains external, encrypted or compressed clusters.");
2634 exit(1);
2636 if (e->data && !e->zero) {
2637 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
2638 e->start, e->length,
2639 e->has_offset ? e->offset : 0,
2640 e->has_filename ? e->filename : "");
2642 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2643 * Modify the flags here to allow more coalescing.
2645 if (next && (!next->data || next->zero)) {
2646 next->data = false;
2647 next->zero = true;
2649 break;
2650 case OFORMAT_JSON:
2651 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2652 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
2653 (e->start == 0 ? "[" : ",\n"),
2654 e->start, e->length, e->depth,
2655 e->zero ? "true" : "false",
2656 e->data ? "true" : "false");
2657 if (e->has_offset) {
2658 printf(", \"offset\": %"PRId64"", e->offset);
2660 putchar('}');
2662 if (!next) {
2663 printf("]\n");
2665 break;
2669 static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2670 int nb_sectors, MapEntry *e)
2672 int64_t ret;
2673 int depth;
2674 BlockDriverState *file;
2675 bool has_offset;
2677 /* As an optimization, we could cache the current range of unallocated
2678 * clusters in each file of the chain, and avoid querying the same
2679 * range repeatedly.
2682 depth = 0;
2683 for (;;) {
2684 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2685 &file);
2686 if (ret < 0) {
2687 return ret;
2689 assert(nb_sectors);
2690 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2691 break;
2693 bs = backing_bs(bs);
2694 if (bs == NULL) {
2695 ret = 0;
2696 break;
2699 depth++;
2702 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2704 *e = (MapEntry) {
2705 .start = sector_num * BDRV_SECTOR_SIZE,
2706 .length = nb_sectors * BDRV_SECTOR_SIZE,
2707 .data = !!(ret & BDRV_BLOCK_DATA),
2708 .zero = !!(ret & BDRV_BLOCK_ZERO),
2709 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2710 .has_offset = has_offset,
2711 .depth = depth,
2712 .has_filename = file && has_offset,
2713 .filename = file && has_offset ? file->filename : NULL,
2716 return 0;
2719 static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2721 if (curr->length == 0) {
2722 return false;
2724 if (curr->zero != next->zero ||
2725 curr->data != next->data ||
2726 curr->depth != next->depth ||
2727 curr->has_filename != next->has_filename ||
2728 curr->has_offset != next->has_offset) {
2729 return false;
2731 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2732 return false;
2734 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2735 return false;
2737 return true;
2740 static int img_map(int argc, char **argv)
2742 int c;
2743 OutputFormat output_format = OFORMAT_HUMAN;
2744 BlockBackend *blk;
2745 BlockDriverState *bs;
2746 const char *filename, *fmt, *output;
2747 int64_t length;
2748 MapEntry curr = { .length = 0 }, next;
2749 int ret = 0;
2750 bool image_opts = false;
2751 bool force_share = false;
2753 fmt = NULL;
2754 output = NULL;
2755 for (;;) {
2756 int option_index = 0;
2757 static const struct option long_options[] = {
2758 {"help", no_argument, 0, 'h'},
2759 {"format", required_argument, 0, 'f'},
2760 {"output", required_argument, 0, OPTION_OUTPUT},
2761 {"object", required_argument, 0, OPTION_OBJECT},
2762 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
2763 {"force-share", no_argument, 0, 'U'},
2764 {0, 0, 0, 0}
2766 c = getopt_long(argc, argv, ":f:hU",
2767 long_options, &option_index);
2768 if (c == -1) {
2769 break;
2771 switch (c) {
2772 case ':':
2773 missing_argument(argv[optind - 1]);
2774 break;
2775 case '?':
2776 unrecognized_option(argv[optind - 1]);
2777 break;
2778 case 'h':
2779 help();
2780 break;
2781 case 'f':
2782 fmt = optarg;
2783 break;
2784 case 'U':
2785 force_share = true;
2786 break;
2787 case OPTION_OUTPUT:
2788 output = optarg;
2789 break;
2790 case OPTION_OBJECT: {
2791 QemuOpts *opts;
2792 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2793 optarg, true);
2794 if (!opts) {
2795 return 1;
2797 } break;
2798 case OPTION_IMAGE_OPTS:
2799 image_opts = true;
2800 break;
2803 if (optind != argc - 1) {
2804 error_exit("Expecting one image file name");
2806 filename = argv[optind];
2808 if (output && !strcmp(output, "json")) {
2809 output_format = OFORMAT_JSON;
2810 } else if (output && !strcmp(output, "human")) {
2811 output_format = OFORMAT_HUMAN;
2812 } else if (output) {
2813 error_report("--output must be used with human or json as argument.");
2814 return 1;
2817 if (qemu_opts_foreach(&qemu_object_opts,
2818 user_creatable_add_opts_foreach,
2819 NULL, NULL)) {
2820 return 1;
2823 blk = img_open(image_opts, filename, fmt, 0, false, false, force_share);
2824 if (!blk) {
2825 return 1;
2827 bs = blk_bs(blk);
2829 if (output_format == OFORMAT_HUMAN) {
2830 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2833 length = blk_getlength(blk);
2834 while (curr.start + curr.length < length) {
2835 int64_t nsectors_left;
2836 int64_t sector_num;
2837 int n;
2839 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2841 /* Probe up to 1 GiB at a time. */
2842 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2843 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2844 ret = get_block_status(bs, sector_num, n, &next);
2846 if (ret < 0) {
2847 error_report("Could not read file metadata: %s", strerror(-ret));
2848 goto out;
2851 if (entry_mergeable(&curr, &next)) {
2852 curr.length += next.length;
2853 continue;
2856 if (curr.length > 0) {
2857 dump_map_entry(output_format, &curr, &next);
2859 curr = next;
2862 dump_map_entry(output_format, &curr, NULL);
2864 out:
2865 blk_unref(blk);
2866 return ret < 0;
2869 #define SNAPSHOT_LIST 1
2870 #define SNAPSHOT_CREATE 2
2871 #define SNAPSHOT_APPLY 3
2872 #define SNAPSHOT_DELETE 4
2874 static int img_snapshot(int argc, char **argv)
2876 BlockBackend *blk;
2877 BlockDriverState *bs;
2878 QEMUSnapshotInfo sn;
2879 char *filename, *snapshot_name = NULL;
2880 int c, ret = 0, bdrv_oflags;
2881 int action = 0;
2882 qemu_timeval tv;
2883 bool quiet = false;
2884 Error *err = NULL;
2885 bool image_opts = false;
2886 bool force_share = false;
2888 bdrv_oflags = BDRV_O_RDWR;
2889 /* Parse commandline parameters */
2890 for(;;) {
2891 static const struct option long_options[] = {
2892 {"help", no_argument, 0, 'h'},
2893 {"object", required_argument, 0, OPTION_OBJECT},
2894 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
2895 {"force-share", no_argument, 0, 'U'},
2896 {0, 0, 0, 0}
2898 c = getopt_long(argc, argv, ":la:c:d:hqU",
2899 long_options, NULL);
2900 if (c == -1) {
2901 break;
2903 switch(c) {
2904 case ':':
2905 missing_argument(argv[optind - 1]);
2906 break;
2907 case '?':
2908 unrecognized_option(argv[optind - 1]);
2909 break;
2910 case 'h':
2911 help();
2912 return 0;
2913 case 'l':
2914 if (action) {
2915 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2916 return 0;
2918 action = SNAPSHOT_LIST;
2919 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
2920 break;
2921 case 'a':
2922 if (action) {
2923 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2924 return 0;
2926 action = SNAPSHOT_APPLY;
2927 snapshot_name = optarg;
2928 break;
2929 case 'c':
2930 if (action) {
2931 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2932 return 0;
2934 action = SNAPSHOT_CREATE;
2935 snapshot_name = optarg;
2936 break;
2937 case 'd':
2938 if (action) {
2939 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2940 return 0;
2942 action = SNAPSHOT_DELETE;
2943 snapshot_name = optarg;
2944 break;
2945 case 'q':
2946 quiet = true;
2947 break;
2948 case 'U':
2949 force_share = true;
2950 break;
2951 case OPTION_OBJECT: {
2952 QemuOpts *opts;
2953 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2954 optarg, true);
2955 if (!opts) {
2956 return 1;
2958 } break;
2959 case OPTION_IMAGE_OPTS:
2960 image_opts = true;
2961 break;
2965 if (optind != argc - 1) {
2966 error_exit("Expecting one image file name");
2968 filename = argv[optind++];
2970 if (qemu_opts_foreach(&qemu_object_opts,
2971 user_creatable_add_opts_foreach,
2972 NULL, NULL)) {
2973 return 1;
2976 /* Open the image */
2977 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet,
2978 force_share);
2979 if (!blk) {
2980 return 1;
2982 bs = blk_bs(blk);
2984 /* Perform the requested action */
2985 switch(action) {
2986 case SNAPSHOT_LIST:
2987 dump_snapshots(bs);
2988 break;
2990 case SNAPSHOT_CREATE:
2991 memset(&sn, 0, sizeof(sn));
2992 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2994 qemu_gettimeofday(&tv);
2995 sn.date_sec = tv.tv_sec;
2996 sn.date_nsec = tv.tv_usec * 1000;
2998 ret = bdrv_snapshot_create(bs, &sn);
2999 if (ret) {
3000 error_report("Could not create snapshot '%s': %d (%s)",
3001 snapshot_name, ret, strerror(-ret));
3003 break;
3005 case SNAPSHOT_APPLY:
3006 ret = bdrv_snapshot_goto(bs, snapshot_name);
3007 if (ret) {
3008 error_report("Could not apply snapshot '%s': %d (%s)",
3009 snapshot_name, ret, strerror(-ret));
3011 break;
3013 case SNAPSHOT_DELETE:
3014 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
3015 if (err) {
3016 error_reportf_err(err, "Could not delete snapshot '%s': ",
3017 snapshot_name);
3018 ret = 1;
3020 break;
3023 /* Cleanup */
3024 blk_unref(blk);
3025 if (ret) {
3026 return 1;
3028 return 0;
3031 static int img_rebase(int argc, char **argv)
3033 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
3034 uint8_t *buf_old = NULL;
3035 uint8_t *buf_new = NULL;
3036 BlockDriverState *bs = NULL;
3037 char *filename;
3038 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
3039 int c, flags, src_flags, ret;
3040 bool writethrough, src_writethrough;
3041 int unsafe = 0;
3042 bool force_share = false;
3043 int progress = 0;
3044 bool quiet = false;
3045 Error *local_err = NULL;
3046 bool image_opts = false;
3048 /* Parse commandline parameters */
3049 fmt = NULL;
3050 cache = BDRV_DEFAULT_CACHE;
3051 src_cache = BDRV_DEFAULT_CACHE;
3052 out_baseimg = NULL;
3053 out_basefmt = NULL;
3054 for(;;) {
3055 static const struct option long_options[] = {
3056 {"help", no_argument, 0, 'h'},
3057 {"object", required_argument, 0, OPTION_OBJECT},
3058 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3059 {"force-share", no_argument, 0, 'U'},
3060 {0, 0, 0, 0}
3062 c = getopt_long(argc, argv, ":hf:F:b:upt:T:qU",
3063 long_options, NULL);
3064 if (c == -1) {
3065 break;
3067 switch(c) {
3068 case ':':
3069 missing_argument(argv[optind - 1]);
3070 break;
3071 case '?':
3072 unrecognized_option(argv[optind - 1]);
3073 break;
3074 case 'h':
3075 help();
3076 return 0;
3077 case 'f':
3078 fmt = optarg;
3079 break;
3080 case 'F':
3081 out_basefmt = optarg;
3082 break;
3083 case 'b':
3084 out_baseimg = optarg;
3085 break;
3086 case 'u':
3087 unsafe = 1;
3088 break;
3089 case 'p':
3090 progress = 1;
3091 break;
3092 case 't':
3093 cache = optarg;
3094 break;
3095 case 'T':
3096 src_cache = optarg;
3097 break;
3098 case 'q':
3099 quiet = true;
3100 break;
3101 case OPTION_OBJECT: {
3102 QemuOpts *opts;
3103 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3104 optarg, true);
3105 if (!opts) {
3106 return 1;
3108 } break;
3109 case OPTION_IMAGE_OPTS:
3110 image_opts = true;
3111 break;
3112 case 'U':
3113 force_share = true;
3114 break;
3118 if (quiet) {
3119 progress = 0;
3122 if (optind != argc - 1) {
3123 error_exit("Expecting one image file name");
3125 if (!unsafe && !out_baseimg) {
3126 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
3128 filename = argv[optind++];
3130 if (qemu_opts_foreach(&qemu_object_opts,
3131 user_creatable_add_opts_foreach,
3132 NULL, NULL)) {
3133 return 1;
3136 qemu_progress_init(progress, 2.0);
3137 qemu_progress_print(0, 100);
3139 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
3140 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
3141 if (ret < 0) {
3142 error_report("Invalid cache option: %s", cache);
3143 goto out;
3146 src_flags = 0;
3147 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
3148 if (ret < 0) {
3149 error_report("Invalid source cache option: %s", src_cache);
3150 goto out;
3153 /* The source files are opened read-only, don't care about WCE */
3154 assert((src_flags & BDRV_O_RDWR) == 0);
3155 (void) src_writethrough;
3158 * Open the images.
3160 * Ignore the old backing file for unsafe rebase in case we want to correct
3161 * the reference to a renamed or moved backing file.
3163 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3164 false);
3165 if (!blk) {
3166 ret = -1;
3167 goto out;
3169 bs = blk_bs(blk);
3171 if (out_basefmt != NULL) {
3172 if (bdrv_find_format(out_basefmt) == NULL) {
3173 error_report("Invalid format name: '%s'", out_basefmt);
3174 ret = -1;
3175 goto out;
3179 /* For safe rebasing we need to compare old and new backing file */
3180 if (!unsafe) {
3181 char backing_name[PATH_MAX];
3182 QDict *options = NULL;
3184 if (bs->backing_format[0] != '\0') {
3185 options = qdict_new();
3186 qdict_put_str(options, "driver", bs->backing_format);
3189 if (force_share) {
3190 if (!options) {
3191 options = qdict_new();
3193 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
3195 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3196 blk_old_backing = blk_new_open(backing_name, NULL,
3197 options, src_flags, &local_err);
3198 if (!blk_old_backing) {
3199 error_reportf_err(local_err,
3200 "Could not open old backing file '%s': ",
3201 backing_name);
3202 ret = -1;
3203 goto out;
3206 if (out_baseimg[0]) {
3207 options = qdict_new();
3208 if (out_basefmt) {
3209 qdict_put_str(options, "driver", out_basefmt);
3211 if (force_share) {
3212 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
3215 blk_new_backing = blk_new_open(out_baseimg, NULL,
3216 options, src_flags, &local_err);
3217 if (!blk_new_backing) {
3218 error_reportf_err(local_err,
3219 "Could not open new backing file '%s': ",
3220 out_baseimg);
3221 ret = -1;
3222 goto out;
3228 * Check each unallocated cluster in the COW file. If it is unallocated,
3229 * accesses go to the backing file. We must therefore compare this cluster
3230 * in the old and new backing file, and if they differ we need to copy it
3231 * from the old backing file into the COW file.
3233 * If qemu-img crashes during this step, no harm is done. The content of
3234 * the image is the same as the original one at any time.
3236 if (!unsafe) {
3237 int64_t num_sectors;
3238 int64_t old_backing_num_sectors;
3239 int64_t new_backing_num_sectors = 0;
3240 uint64_t sector;
3241 int n;
3242 int64_t count;
3243 float local_progress = 0;
3245 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
3246 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
3248 num_sectors = blk_nb_sectors(blk);
3249 if (num_sectors < 0) {
3250 error_report("Could not get size of '%s': %s",
3251 filename, strerror(-num_sectors));
3252 ret = -1;
3253 goto out;
3255 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
3256 if (old_backing_num_sectors < 0) {
3257 char backing_name[PATH_MAX];
3259 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3260 error_report("Could not get size of '%s': %s",
3261 backing_name, strerror(-old_backing_num_sectors));
3262 ret = -1;
3263 goto out;
3265 if (blk_new_backing) {
3266 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
3267 if (new_backing_num_sectors < 0) {
3268 error_report("Could not get size of '%s': %s",
3269 out_baseimg, strerror(-new_backing_num_sectors));
3270 ret = -1;
3271 goto out;
3275 if (num_sectors != 0) {
3276 local_progress = (float)100 /
3277 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3280 for (sector = 0; sector < num_sectors; sector += n) {
3282 /* How many sectors can we handle with the next read? */
3283 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3284 n = (IO_BUF_SIZE / 512);
3285 } else {
3286 n = num_sectors - sector;
3289 /* If the cluster is allocated, we don't need to take action */
3290 ret = bdrv_is_allocated(bs, sector << BDRV_SECTOR_BITS,
3291 n << BDRV_SECTOR_BITS, &count);
3292 if (ret < 0) {
3293 error_report("error while reading image metadata: %s",
3294 strerror(-ret));
3295 goto out;
3297 /* TODO relax this once bdrv_is_allocated does not enforce
3298 * sector alignment */
3299 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
3300 n = count >> BDRV_SECTOR_BITS;
3301 if (ret) {
3302 continue;
3306 * Read old and new backing file and take into consideration that
3307 * backing files may be smaller than the COW image.
3309 if (sector >= old_backing_num_sectors) {
3310 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3311 } else {
3312 if (sector + n > old_backing_num_sectors) {
3313 n = old_backing_num_sectors - sector;
3316 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3317 buf_old, n << BDRV_SECTOR_BITS);
3318 if (ret < 0) {
3319 error_report("error while reading from old backing file");
3320 goto out;
3324 if (sector >= new_backing_num_sectors || !blk_new_backing) {
3325 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3326 } else {
3327 if (sector + n > new_backing_num_sectors) {
3328 n = new_backing_num_sectors - sector;
3331 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3332 buf_new, n << BDRV_SECTOR_BITS);
3333 if (ret < 0) {
3334 error_report("error while reading from new backing file");
3335 goto out;
3339 /* If they differ, we need to write to the COW file */
3340 uint64_t written = 0;
3342 while (written < n) {
3343 int pnum;
3345 if (compare_sectors(buf_old + written * 512,
3346 buf_new + written * 512, n - written, &pnum))
3348 ret = blk_pwrite(blk,
3349 (sector + written) << BDRV_SECTOR_BITS,
3350 buf_old + written * 512,
3351 pnum << BDRV_SECTOR_BITS, 0);
3352 if (ret < 0) {
3353 error_report("Error while writing to COW image: %s",
3354 strerror(-ret));
3355 goto out;
3359 written += pnum;
3361 qemu_progress_print(local_progress, 100);
3366 * Change the backing file. All clusters that are different from the old
3367 * backing file are overwritten in the COW file now, so the visible content
3368 * doesn't change when we switch the backing file.
3370 if (out_baseimg && *out_baseimg) {
3371 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3372 } else {
3373 ret = bdrv_change_backing_file(bs, NULL, NULL);
3376 if (ret == -ENOSPC) {
3377 error_report("Could not change the backing file to '%s': No "
3378 "space left in the file header", out_baseimg);
3379 } else if (ret < 0) {
3380 error_report("Could not change the backing file to '%s': %s",
3381 out_baseimg, strerror(-ret));
3384 qemu_progress_print(100, 0);
3386 * TODO At this point it is possible to check if any clusters that are
3387 * allocated in the COW file are the same in the backing file. If so, they
3388 * could be dropped from the COW file. Don't do this before switching the
3389 * backing file, in case of a crash this would lead to corruption.
3391 out:
3392 qemu_progress_end();
3393 /* Cleanup */
3394 if (!unsafe) {
3395 blk_unref(blk_old_backing);
3396 blk_unref(blk_new_backing);
3398 qemu_vfree(buf_old);
3399 qemu_vfree(buf_new);
3401 blk_unref(blk);
3402 if (ret) {
3403 return 1;
3405 return 0;
3408 static int img_resize(int argc, char **argv)
3410 Error *err = NULL;
3411 int c, ret, relative;
3412 const char *filename, *fmt, *size;
3413 int64_t n, total_size, current_size;
3414 bool quiet = false;
3415 BlockBackend *blk = NULL;
3416 PreallocMode prealloc = PREALLOC_MODE_OFF;
3417 QemuOpts *param;
3419 static QemuOptsList resize_options = {
3420 .name = "resize_options",
3421 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3422 .desc = {
3424 .name = BLOCK_OPT_SIZE,
3425 .type = QEMU_OPT_SIZE,
3426 .help = "Virtual disk size"
3427 }, {
3428 /* end of list */
3432 bool image_opts = false;
3434 /* Remove size from argv manually so that negative numbers are not treated
3435 * as options by getopt. */
3436 if (argc < 3) {
3437 error_exit("Not enough arguments");
3438 return 1;
3441 size = argv[--argc];
3443 /* Parse getopt arguments */
3444 fmt = NULL;
3445 for(;;) {
3446 static const struct option long_options[] = {
3447 {"help", no_argument, 0, 'h'},
3448 {"object", required_argument, 0, OPTION_OBJECT},
3449 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3450 {"preallocation", required_argument, 0, OPTION_PREALLOCATION},
3451 {0, 0, 0, 0}
3453 c = getopt_long(argc, argv, ":f:hq",
3454 long_options, NULL);
3455 if (c == -1) {
3456 break;
3458 switch(c) {
3459 case ':':
3460 missing_argument(argv[optind - 1]);
3461 break;
3462 case '?':
3463 unrecognized_option(argv[optind - 1]);
3464 break;
3465 case 'h':
3466 help();
3467 break;
3468 case 'f':
3469 fmt = optarg;
3470 break;
3471 case 'q':
3472 quiet = true;
3473 break;
3474 case OPTION_OBJECT: {
3475 QemuOpts *opts;
3476 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3477 optarg, true);
3478 if (!opts) {
3479 return 1;
3481 } break;
3482 case OPTION_IMAGE_OPTS:
3483 image_opts = true;
3484 break;
3485 case OPTION_PREALLOCATION:
3486 prealloc = qapi_enum_parse(PreallocMode_lookup, optarg,
3487 PREALLOC_MODE__MAX, PREALLOC_MODE__MAX,
3488 NULL);
3489 if (prealloc == PREALLOC_MODE__MAX) {
3490 error_report("Invalid preallocation mode '%s'", optarg);
3491 return 1;
3493 break;
3496 if (optind != argc - 1) {
3497 error_exit("Expecting one image file name");
3499 filename = argv[optind++];
3501 if (qemu_opts_foreach(&qemu_object_opts,
3502 user_creatable_add_opts_foreach,
3503 NULL, NULL)) {
3504 return 1;
3507 /* Choose grow, shrink, or absolute resize mode */
3508 switch (size[0]) {
3509 case '+':
3510 relative = 1;
3511 size++;
3512 break;
3513 case '-':
3514 relative = -1;
3515 size++;
3516 break;
3517 default:
3518 relative = 0;
3519 break;
3522 /* Parse size */
3523 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
3524 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
3525 if (err) {
3526 error_report_err(err);
3527 ret = -1;
3528 qemu_opts_del(param);
3529 goto out;
3531 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3532 qemu_opts_del(param);
3534 blk = img_open(image_opts, filename, fmt,
3535 BDRV_O_RDWR | BDRV_O_RESIZE, false, quiet,
3536 false);
3537 if (!blk) {
3538 ret = -1;
3539 goto out;
3542 current_size = blk_getlength(blk);
3543 if (current_size < 0) {
3544 error_report("Failed to inquire current image length: %s",
3545 strerror(-current_size));
3546 ret = -1;
3547 goto out;
3550 if (relative) {
3551 total_size = current_size + n * relative;
3552 } else {
3553 total_size = n;
3555 if (total_size <= 0) {
3556 error_report("New image size must be positive");
3557 ret = -1;
3558 goto out;
3561 if (total_size <= current_size && prealloc != PREALLOC_MODE_OFF) {
3562 error_report("Preallocation can only be used for growing images");
3563 ret = -1;
3564 goto out;
3567 ret = blk_truncate(blk, total_size, prealloc, &err);
3568 if (!ret) {
3569 qprintf(quiet, "Image resized.\n");
3570 } else {
3571 error_report_err(err);
3573 out:
3574 blk_unref(blk);
3575 if (ret) {
3576 return 1;
3578 return 0;
3581 static void amend_status_cb(BlockDriverState *bs,
3582 int64_t offset, int64_t total_work_size,
3583 void *opaque)
3585 qemu_progress_print(100.f * offset / total_work_size, 0);
3588 static int img_amend(int argc, char **argv)
3590 Error *err = NULL;
3591 int c, ret = 0;
3592 char *options = NULL;
3593 QemuOptsList *create_opts = NULL;
3594 QemuOpts *opts = NULL;
3595 const char *fmt = NULL, *filename, *cache;
3596 int flags;
3597 bool writethrough;
3598 bool quiet = false, progress = false;
3599 BlockBackend *blk = NULL;
3600 BlockDriverState *bs = NULL;
3601 bool image_opts = false;
3603 cache = BDRV_DEFAULT_CACHE;
3604 for (;;) {
3605 static const struct option long_options[] = {
3606 {"help", no_argument, 0, 'h'},
3607 {"object", required_argument, 0, OPTION_OBJECT},
3608 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3609 {0, 0, 0, 0}
3611 c = getopt_long(argc, argv, ":ho:f:t:pq",
3612 long_options, NULL);
3613 if (c == -1) {
3614 break;
3617 switch (c) {
3618 case ':':
3619 missing_argument(argv[optind - 1]);
3620 break;
3621 case '?':
3622 unrecognized_option(argv[optind - 1]);
3623 break;
3624 case 'h':
3625 help();
3626 break;
3627 case 'o':
3628 if (!is_valid_option_list(optarg)) {
3629 error_report("Invalid option list: %s", optarg);
3630 ret = -1;
3631 goto out_no_progress;
3633 if (!options) {
3634 options = g_strdup(optarg);
3635 } else {
3636 char *old_options = options;
3637 options = g_strdup_printf("%s,%s", options, optarg);
3638 g_free(old_options);
3640 break;
3641 case 'f':
3642 fmt = optarg;
3643 break;
3644 case 't':
3645 cache = optarg;
3646 break;
3647 case 'p':
3648 progress = true;
3649 break;
3650 case 'q':
3651 quiet = true;
3652 break;
3653 case OPTION_OBJECT:
3654 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3655 optarg, true);
3656 if (!opts) {
3657 ret = -1;
3658 goto out_no_progress;
3660 break;
3661 case OPTION_IMAGE_OPTS:
3662 image_opts = true;
3663 break;
3667 if (!options) {
3668 error_exit("Must specify options (-o)");
3671 if (qemu_opts_foreach(&qemu_object_opts,
3672 user_creatable_add_opts_foreach,
3673 NULL, NULL)) {
3674 ret = -1;
3675 goto out_no_progress;
3678 if (quiet) {
3679 progress = false;
3681 qemu_progress_init(progress, 1.0);
3683 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3684 if (fmt && has_help_option(options)) {
3685 /* If a format is explicitly specified (and possibly no filename is
3686 * given), print option help here */
3687 ret = print_block_option_help(filename, fmt);
3688 goto out;
3691 if (optind != argc - 1) {
3692 error_report("Expecting one image file name");
3693 ret = -1;
3694 goto out;
3697 flags = BDRV_O_RDWR;
3698 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
3699 if (ret < 0) {
3700 error_report("Invalid cache option: %s", cache);
3701 goto out;
3704 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3705 false);
3706 if (!blk) {
3707 ret = -1;
3708 goto out;
3710 bs = blk_bs(blk);
3712 fmt = bs->drv->format_name;
3714 if (has_help_option(options)) {
3715 /* If the format was auto-detected, print option help here */
3716 ret = print_block_option_help(filename, fmt);
3717 goto out;
3720 if (!bs->drv->create_opts) {
3721 error_report("Format driver '%s' does not support any options to amend",
3722 fmt);
3723 ret = -1;
3724 goto out;
3727 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
3728 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
3729 qemu_opts_do_parse(opts, options, NULL, &err);
3730 if (err) {
3731 error_report_err(err);
3732 ret = -1;
3733 goto out;
3736 /* In case the driver does not call amend_status_cb() */
3737 qemu_progress_print(0.f, 0);
3738 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
3739 qemu_progress_print(100.f, 0);
3740 if (ret < 0) {
3741 error_report("Error while amending options: %s", strerror(-ret));
3742 goto out;
3745 out:
3746 qemu_progress_end();
3748 out_no_progress:
3749 blk_unref(blk);
3750 qemu_opts_del(opts);
3751 qemu_opts_free(create_opts);
3752 g_free(options);
3754 if (ret) {
3755 return 1;
3757 return 0;
3760 typedef struct BenchData {
3761 BlockBackend *blk;
3762 uint64_t image_size;
3763 bool write;
3764 int bufsize;
3765 int step;
3766 int nrreq;
3767 int n;
3768 int flush_interval;
3769 bool drain_on_flush;
3770 uint8_t *buf;
3771 QEMUIOVector *qiov;
3773 int in_flight;
3774 bool in_flush;
3775 uint64_t offset;
3776 } BenchData;
3778 static void bench_undrained_flush_cb(void *opaque, int ret)
3780 if (ret < 0) {
3781 error_report("Failed flush request: %s", strerror(-ret));
3782 exit(EXIT_FAILURE);
3786 static void bench_cb(void *opaque, int ret)
3788 BenchData *b = opaque;
3789 BlockAIOCB *acb;
3791 if (ret < 0) {
3792 error_report("Failed request: %s", strerror(-ret));
3793 exit(EXIT_FAILURE);
3796 if (b->in_flush) {
3797 /* Just finished a flush with drained queue: Start next requests */
3798 assert(b->in_flight == 0);
3799 b->in_flush = false;
3800 } else if (b->in_flight > 0) {
3801 int remaining = b->n - b->in_flight;
3803 b->n--;
3804 b->in_flight--;
3806 /* Time for flush? Drain queue if requested, then flush */
3807 if (b->flush_interval && remaining % b->flush_interval == 0) {
3808 if (!b->in_flight || !b->drain_on_flush) {
3809 BlockCompletionFunc *cb;
3811 if (b->drain_on_flush) {
3812 b->in_flush = true;
3813 cb = bench_cb;
3814 } else {
3815 cb = bench_undrained_flush_cb;
3818 acb = blk_aio_flush(b->blk, cb, b);
3819 if (!acb) {
3820 error_report("Failed to issue flush request");
3821 exit(EXIT_FAILURE);
3824 if (b->drain_on_flush) {
3825 return;
3830 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
3831 int64_t offset = b->offset;
3832 /* blk_aio_* might look for completed I/Os and kick bench_cb
3833 * again, so make sure this operation is counted by in_flight
3834 * and b->offset is ready for the next submission.
3836 b->in_flight++;
3837 b->offset += b->step;
3838 b->offset %= b->image_size;
3839 if (b->write) {
3840 acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b);
3841 } else {
3842 acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b);
3844 if (!acb) {
3845 error_report("Failed to issue request");
3846 exit(EXIT_FAILURE);
3851 static int img_bench(int argc, char **argv)
3853 int c, ret = 0;
3854 const char *fmt = NULL, *filename;
3855 bool quiet = false;
3856 bool image_opts = false;
3857 bool is_write = false;
3858 int count = 75000;
3859 int depth = 64;
3860 int64_t offset = 0;
3861 size_t bufsize = 4096;
3862 int pattern = 0;
3863 size_t step = 0;
3864 int flush_interval = 0;
3865 bool drain_on_flush = true;
3866 int64_t image_size;
3867 BlockBackend *blk = NULL;
3868 BenchData data = {};
3869 int flags = 0;
3870 bool writethrough = false;
3871 struct timeval t1, t2;
3872 int i;
3873 bool force_share = false;
3875 for (;;) {
3876 static const struct option long_options[] = {
3877 {"help", no_argument, 0, 'h'},
3878 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
3879 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3880 {"pattern", required_argument, 0, OPTION_PATTERN},
3881 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
3882 {"force-share", no_argument, 0, 'U'},
3883 {0, 0, 0, 0}
3885 c = getopt_long(argc, argv, ":hc:d:f:no:qs:S:t:wU", long_options, NULL);
3886 if (c == -1) {
3887 break;
3890 switch (c) {
3891 case ':':
3892 missing_argument(argv[optind - 1]);
3893 break;
3894 case '?':
3895 unrecognized_option(argv[optind - 1]);
3896 break;
3897 case 'h':
3898 help();
3899 break;
3900 case 'c':
3902 unsigned long res;
3904 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
3905 error_report("Invalid request count specified");
3906 return 1;
3908 count = res;
3909 break;
3911 case 'd':
3913 unsigned long res;
3915 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
3916 error_report("Invalid queue depth specified");
3917 return 1;
3919 depth = res;
3920 break;
3922 case 'f':
3923 fmt = optarg;
3924 break;
3925 case 'n':
3926 flags |= BDRV_O_NATIVE_AIO;
3927 break;
3928 case 'o':
3930 offset = cvtnum(optarg);
3931 if (offset < 0) {
3932 error_report("Invalid offset specified");
3933 return 1;
3935 break;
3937 break;
3938 case 'q':
3939 quiet = true;
3940 break;
3941 case 's':
3943 int64_t sval;
3945 sval = cvtnum(optarg);
3946 if (sval < 0 || sval > INT_MAX) {
3947 error_report("Invalid buffer size specified");
3948 return 1;
3951 bufsize = sval;
3952 break;
3954 case 'S':
3956 int64_t sval;
3958 sval = cvtnum(optarg);
3959 if (sval < 0 || sval > INT_MAX) {
3960 error_report("Invalid step size specified");
3961 return 1;
3964 step = sval;
3965 break;
3967 case 't':
3968 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3969 if (ret < 0) {
3970 error_report("Invalid cache mode");
3971 ret = -1;
3972 goto out;
3974 break;
3975 case 'w':
3976 flags |= BDRV_O_RDWR;
3977 is_write = true;
3978 break;
3979 case 'U':
3980 force_share = true;
3981 break;
3982 case OPTION_PATTERN:
3984 unsigned long res;
3986 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) {
3987 error_report("Invalid pattern byte specified");
3988 return 1;
3990 pattern = res;
3991 break;
3993 case OPTION_FLUSH_INTERVAL:
3995 unsigned long res;
3997 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
3998 error_report("Invalid flush interval specified");
3999 return 1;
4001 flush_interval = res;
4002 break;
4004 case OPTION_NO_DRAIN:
4005 drain_on_flush = false;
4006 break;
4007 case OPTION_IMAGE_OPTS:
4008 image_opts = true;
4009 break;
4013 if (optind != argc - 1) {
4014 error_exit("Expecting one image file name");
4016 filename = argv[argc - 1];
4018 if (!is_write && flush_interval) {
4019 error_report("--flush-interval is only available in write tests");
4020 ret = -1;
4021 goto out;
4023 if (flush_interval && flush_interval < depth) {
4024 error_report("Flush interval can't be smaller than depth");
4025 ret = -1;
4026 goto out;
4029 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
4030 force_share);
4031 if (!blk) {
4032 ret = -1;
4033 goto out;
4036 image_size = blk_getlength(blk);
4037 if (image_size < 0) {
4038 ret = image_size;
4039 goto out;
4042 data = (BenchData) {
4043 .blk = blk,
4044 .image_size = image_size,
4045 .bufsize = bufsize,
4046 .step = step ?: bufsize,
4047 .nrreq = depth,
4048 .n = count,
4049 .offset = offset,
4050 .write = is_write,
4051 .flush_interval = flush_interval,
4052 .drain_on_flush = drain_on_flush,
4054 printf("Sending %d %s requests, %d bytes each, %d in parallel "
4055 "(starting at offset %" PRId64 ", step size %d)\n",
4056 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
4057 data.offset, data.step);
4058 if (flush_interval) {
4059 printf("Sending flush every %d requests\n", flush_interval);
4062 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
4063 memset(data.buf, pattern, data.nrreq * data.bufsize);
4065 data.qiov = g_new(QEMUIOVector, data.nrreq);
4066 for (i = 0; i < data.nrreq; i++) {
4067 qemu_iovec_init(&data.qiov[i], 1);
4068 qemu_iovec_add(&data.qiov[i],
4069 data.buf + i * data.bufsize, data.bufsize);
4072 gettimeofday(&t1, NULL);
4073 bench_cb(&data, 0);
4075 while (data.n > 0) {
4076 main_loop_wait(false);
4078 gettimeofday(&t2, NULL);
4080 printf("Run completed in %3.3f seconds.\n",
4081 (t2.tv_sec - t1.tv_sec)
4082 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
4084 out:
4085 qemu_vfree(data.buf);
4086 blk_unref(blk);
4088 if (ret) {
4089 return 1;
4091 return 0;
4094 #define C_BS 01
4095 #define C_COUNT 02
4096 #define C_IF 04
4097 #define C_OF 010
4098 #define C_SKIP 020
4100 struct DdInfo {
4101 unsigned int flags;
4102 int64_t count;
4105 struct DdIo {
4106 int bsz; /* Block size */
4107 char *filename;
4108 uint8_t *buf;
4109 int64_t offset;
4112 struct DdOpts {
4113 const char *name;
4114 int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
4115 unsigned int flag;
4118 static int img_dd_bs(const char *arg,
4119 struct DdIo *in, struct DdIo *out,
4120 struct DdInfo *dd)
4122 int64_t res;
4124 res = cvtnum(arg);
4126 if (res <= 0 || res > INT_MAX) {
4127 error_report("invalid number: '%s'", arg);
4128 return 1;
4130 in->bsz = out->bsz = res;
4132 return 0;
4135 static int img_dd_count(const char *arg,
4136 struct DdIo *in, struct DdIo *out,
4137 struct DdInfo *dd)
4139 dd->count = cvtnum(arg);
4141 if (dd->count < 0) {
4142 error_report("invalid number: '%s'", arg);
4143 return 1;
4146 return 0;
4149 static int img_dd_if(const char *arg,
4150 struct DdIo *in, struct DdIo *out,
4151 struct DdInfo *dd)
4153 in->filename = g_strdup(arg);
4155 return 0;
4158 static int img_dd_of(const char *arg,
4159 struct DdIo *in, struct DdIo *out,
4160 struct DdInfo *dd)
4162 out->filename = g_strdup(arg);
4164 return 0;
4167 static int img_dd_skip(const char *arg,
4168 struct DdIo *in, struct DdIo *out,
4169 struct DdInfo *dd)
4171 in->offset = cvtnum(arg);
4173 if (in->offset < 0) {
4174 error_report("invalid number: '%s'", arg);
4175 return 1;
4178 return 0;
4181 static int img_dd(int argc, char **argv)
4183 int ret = 0;
4184 char *arg = NULL;
4185 char *tmp;
4186 BlockDriver *drv = NULL, *proto_drv = NULL;
4187 BlockBackend *blk1 = NULL, *blk2 = NULL;
4188 QemuOpts *opts = NULL;
4189 QemuOptsList *create_opts = NULL;
4190 Error *local_err = NULL;
4191 bool image_opts = false;
4192 int c, i;
4193 const char *out_fmt = "raw";
4194 const char *fmt = NULL;
4195 int64_t size = 0;
4196 int64_t block_count = 0, out_pos, in_pos;
4197 bool force_share = false;
4198 struct DdInfo dd = {
4199 .flags = 0,
4200 .count = 0,
4202 struct DdIo in = {
4203 .bsz = 512, /* Block size is by default 512 bytes */
4204 .filename = NULL,
4205 .buf = NULL,
4206 .offset = 0
4208 struct DdIo out = {
4209 .bsz = 512,
4210 .filename = NULL,
4211 .buf = NULL,
4212 .offset = 0
4215 const struct DdOpts options[] = {
4216 { "bs", img_dd_bs, C_BS },
4217 { "count", img_dd_count, C_COUNT },
4218 { "if", img_dd_if, C_IF },
4219 { "of", img_dd_of, C_OF },
4220 { "skip", img_dd_skip, C_SKIP },
4221 { NULL, NULL, 0 }
4223 const struct option long_options[] = {
4224 { "help", no_argument, 0, 'h'},
4225 { "object", required_argument, 0, OPTION_OBJECT},
4226 { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4227 { "force-share", no_argument, 0, 'U'},
4228 { 0, 0, 0, 0 }
4231 while ((c = getopt_long(argc, argv, ":hf:O:U", long_options, NULL))) {
4232 if (c == EOF) {
4233 break;
4235 switch (c) {
4236 case 'O':
4237 out_fmt = optarg;
4238 break;
4239 case 'f':
4240 fmt = optarg;
4241 break;
4242 case ':':
4243 missing_argument(argv[optind - 1]);
4244 break;
4245 case '?':
4246 unrecognized_option(argv[optind - 1]);
4247 break;
4248 case 'h':
4249 help();
4250 break;
4251 case 'U':
4252 force_share = true;
4253 break;
4254 case OPTION_OBJECT:
4255 if (!qemu_opts_parse_noisily(&qemu_object_opts, optarg, true)) {
4256 ret = -1;
4257 goto out;
4259 break;
4260 case OPTION_IMAGE_OPTS:
4261 image_opts = true;
4262 break;
4266 for (i = optind; i < argc; i++) {
4267 int j;
4268 arg = g_strdup(argv[i]);
4270 tmp = strchr(arg, '=');
4271 if (tmp == NULL) {
4272 error_report("unrecognized operand %s", arg);
4273 ret = -1;
4274 goto out;
4277 *tmp++ = '\0';
4279 for (j = 0; options[j].name != NULL; j++) {
4280 if (!strcmp(arg, options[j].name)) {
4281 break;
4284 if (options[j].name == NULL) {
4285 error_report("unrecognized operand %s", arg);
4286 ret = -1;
4287 goto out;
4290 if (options[j].f(tmp, &in, &out, &dd) != 0) {
4291 ret = -1;
4292 goto out;
4294 dd.flags |= options[j].flag;
4295 g_free(arg);
4296 arg = NULL;
4299 if (!(dd.flags & C_IF && dd.flags & C_OF)) {
4300 error_report("Must specify both input and output files");
4301 ret = -1;
4302 goto out;
4305 if (qemu_opts_foreach(&qemu_object_opts,
4306 user_creatable_add_opts_foreach,
4307 NULL, NULL)) {
4308 ret = -1;
4309 goto out;
4312 blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
4313 force_share);
4315 if (!blk1) {
4316 ret = -1;
4317 goto out;
4320 drv = bdrv_find_format(out_fmt);
4321 if (!drv) {
4322 error_report("Unknown file format");
4323 ret = -1;
4324 goto out;
4326 proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
4328 if (!proto_drv) {
4329 error_report_err(local_err);
4330 ret = -1;
4331 goto out;
4333 if (!drv->create_opts) {
4334 error_report("Format driver '%s' does not support image creation",
4335 drv->format_name);
4336 ret = -1;
4337 goto out;
4339 if (!proto_drv->create_opts) {
4340 error_report("Protocol driver '%s' does not support image creation",
4341 proto_drv->format_name);
4342 ret = -1;
4343 goto out;
4345 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4346 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4348 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4350 size = blk_getlength(blk1);
4351 if (size < 0) {
4352 error_report("Failed to get size for '%s'", in.filename);
4353 ret = -1;
4354 goto out;
4357 if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
4358 dd.count * in.bsz < size) {
4359 size = dd.count * in.bsz;
4362 /* Overflow means the specified offset is beyond input image's size */
4363 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4364 size < in.bsz * in.offset)) {
4365 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
4366 } else {
4367 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
4368 size - in.bsz * in.offset, &error_abort);
4371 ret = bdrv_create(drv, out.filename, opts, &local_err);
4372 if (ret < 0) {
4373 error_reportf_err(local_err,
4374 "%s: error while creating output image: ",
4375 out.filename);
4376 ret = -1;
4377 goto out;
4380 /* TODO, we can't honour --image-opts for the target,
4381 * since it needs to be given in a format compatible
4382 * with the bdrv_create() call above which does not
4383 * support image-opts style.
4385 blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
4386 false, false, false);
4388 if (!blk2) {
4389 ret = -1;
4390 goto out;
4393 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4394 size < in.offset * in.bsz)) {
4395 /* We give a warning if the skip option is bigger than the input
4396 * size and create an empty output disk image (i.e. like dd(1)).
4398 error_report("%s: cannot skip to specified offset", in.filename);
4399 in_pos = size;
4400 } else {
4401 in_pos = in.offset * in.bsz;
4404 in.buf = g_new(uint8_t, in.bsz);
4406 for (out_pos = 0; in_pos < size; block_count++) {
4407 int in_ret, out_ret;
4409 if (in_pos + in.bsz > size) {
4410 in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
4411 } else {
4412 in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
4414 if (in_ret < 0) {
4415 error_report("error while reading from input image file: %s",
4416 strerror(-in_ret));
4417 ret = -1;
4418 goto out;
4420 in_pos += in_ret;
4422 out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
4424 if (out_ret < 0) {
4425 error_report("error while writing to output image file: %s",
4426 strerror(-out_ret));
4427 ret = -1;
4428 goto out;
4430 out_pos += out_ret;
4433 out:
4434 g_free(arg);
4435 qemu_opts_del(opts);
4436 qemu_opts_free(create_opts);
4437 blk_unref(blk1);
4438 blk_unref(blk2);
4439 g_free(in.filename);
4440 g_free(out.filename);
4441 g_free(in.buf);
4442 g_free(out.buf);
4444 if (ret) {
4445 return 1;
4447 return 0;
4450 static void dump_json_block_measure_info(BlockMeasureInfo *info)
4452 QString *str;
4453 QObject *obj;
4454 Visitor *v = qobject_output_visitor_new(&obj);
4456 visit_type_BlockMeasureInfo(v, NULL, &info, &error_abort);
4457 visit_complete(v, &obj);
4458 str = qobject_to_json_pretty(obj);
4459 assert(str != NULL);
4460 printf("%s\n", qstring_get_str(str));
4461 qobject_decref(obj);
4462 visit_free(v);
4463 QDECREF(str);
4466 static int img_measure(int argc, char **argv)
4468 static const struct option long_options[] = {
4469 {"help", no_argument, 0, 'h'},
4470 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4471 {"object", required_argument, 0, OPTION_OBJECT},
4472 {"output", required_argument, 0, OPTION_OUTPUT},
4473 {"size", required_argument, 0, OPTION_SIZE},
4474 {"force-share", no_argument, 0, 'U'},
4475 {0, 0, 0, 0}
4477 OutputFormat output_format = OFORMAT_HUMAN;
4478 BlockBackend *in_blk = NULL;
4479 BlockDriver *drv;
4480 const char *filename = NULL;
4481 const char *fmt = NULL;
4482 const char *out_fmt = "raw";
4483 char *options = NULL;
4484 char *snapshot_name = NULL;
4485 bool force_share = false;
4486 QemuOpts *opts = NULL;
4487 QemuOpts *object_opts = NULL;
4488 QemuOpts *sn_opts = NULL;
4489 QemuOptsList *create_opts = NULL;
4490 bool image_opts = false;
4491 uint64_t img_size = UINT64_MAX;
4492 BlockMeasureInfo *info = NULL;
4493 Error *local_err = NULL;
4494 int ret = 1;
4495 int c;
4497 while ((c = getopt_long(argc, argv, "hf:O:o:l:U",
4498 long_options, NULL)) != -1) {
4499 switch (c) {
4500 case '?':
4501 case 'h':
4502 help();
4503 break;
4504 case 'f':
4505 fmt = optarg;
4506 break;
4507 case 'O':
4508 out_fmt = optarg;
4509 break;
4510 case 'o':
4511 if (!is_valid_option_list(optarg)) {
4512 error_report("Invalid option list: %s", optarg);
4513 goto out;
4515 if (!options) {
4516 options = g_strdup(optarg);
4517 } else {
4518 char *old_options = options;
4519 options = g_strdup_printf("%s,%s", options, optarg);
4520 g_free(old_options);
4522 break;
4523 case 'l':
4524 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
4525 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
4526 optarg, false);
4527 if (!sn_opts) {
4528 error_report("Failed in parsing snapshot param '%s'",
4529 optarg);
4530 goto out;
4532 } else {
4533 snapshot_name = optarg;
4535 break;
4536 case 'U':
4537 force_share = true;
4538 break;
4539 case OPTION_OBJECT:
4540 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
4541 optarg, true);
4542 if (!object_opts) {
4543 goto out;
4545 break;
4546 case OPTION_IMAGE_OPTS:
4547 image_opts = true;
4548 break;
4549 case OPTION_OUTPUT:
4550 if (!strcmp(optarg, "json")) {
4551 output_format = OFORMAT_JSON;
4552 } else if (!strcmp(optarg, "human")) {
4553 output_format = OFORMAT_HUMAN;
4554 } else {
4555 error_report("--output must be used with human or json "
4556 "as argument.");
4557 goto out;
4559 break;
4560 case OPTION_SIZE:
4562 int64_t sval;
4564 sval = cvtnum(optarg);
4565 if (sval < 0) {
4566 if (sval == -ERANGE) {
4567 error_report("Image size must be less than 8 EiB!");
4568 } else {
4569 error_report("Invalid image size specified! You may use "
4570 "k, M, G, T, P or E suffixes for ");
4571 error_report("kilobytes, megabytes, gigabytes, terabytes, "
4572 "petabytes and exabytes.");
4574 goto out;
4576 img_size = (uint64_t)sval;
4578 break;
4582 if (qemu_opts_foreach(&qemu_object_opts,
4583 user_creatable_add_opts_foreach,
4584 NULL, NULL)) {
4585 goto out;
4588 if (argc - optind > 1) {
4589 error_report("At most one filename argument is allowed.");
4590 goto out;
4591 } else if (argc - optind == 1) {
4592 filename = argv[optind];
4595 if (!filename &&
4596 (object_opts || image_opts || fmt || snapshot_name || sn_opts)) {
4597 error_report("--object, --image-opts, -f, and -l "
4598 "require a filename argument.");
4599 goto out;
4601 if (filename && img_size != UINT64_MAX) {
4602 error_report("--size N cannot be used together with a filename.");
4603 goto out;
4605 if (!filename && img_size == UINT64_MAX) {
4606 error_report("Either --size N or one filename must be specified.");
4607 goto out;
4610 if (filename) {
4611 in_blk = img_open(image_opts, filename, fmt, 0,
4612 false, false, force_share);
4613 if (!in_blk) {
4614 goto out;
4617 if (sn_opts) {
4618 bdrv_snapshot_load_tmp(blk_bs(in_blk),
4619 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
4620 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
4621 &local_err);
4622 } else if (snapshot_name != NULL) {
4623 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk),
4624 snapshot_name, &local_err);
4626 if (local_err) {
4627 error_reportf_err(local_err, "Failed to load snapshot: ");
4628 goto out;
4632 drv = bdrv_find_format(out_fmt);
4633 if (!drv) {
4634 error_report("Unknown file format '%s'", out_fmt);
4635 goto out;
4637 if (!drv->create_opts) {
4638 error_report("Format driver '%s' does not support image creation",
4639 drv->format_name);
4640 goto out;
4643 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4644 create_opts = qemu_opts_append(create_opts, bdrv_file.create_opts);
4645 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4646 if (options) {
4647 qemu_opts_do_parse(opts, options, NULL, &local_err);
4648 if (local_err) {
4649 error_report_err(local_err);
4650 error_report("Invalid options for file format '%s'", out_fmt);
4651 goto out;
4654 if (img_size != UINT64_MAX) {
4655 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4658 info = bdrv_measure(drv, opts, in_blk ? blk_bs(in_blk) : NULL, &local_err);
4659 if (local_err) {
4660 error_report_err(local_err);
4661 goto out;
4664 if (output_format == OFORMAT_HUMAN) {
4665 printf("required size: %" PRIu64 "\n", info->required);
4666 printf("fully allocated size: %" PRIu64 "\n", info->fully_allocated);
4667 } else {
4668 dump_json_block_measure_info(info);
4671 ret = 0;
4673 out:
4674 qapi_free_BlockMeasureInfo(info);
4675 qemu_opts_del(object_opts);
4676 qemu_opts_del(opts);
4677 qemu_opts_del(sn_opts);
4678 qemu_opts_free(create_opts);
4679 g_free(options);
4680 blk_unref(in_blk);
4681 return ret;
4684 static const img_cmd_t img_cmds[] = {
4685 #define DEF(option, callback, arg_string) \
4686 { option, callback },
4687 #include "qemu-img-cmds.h"
4688 #undef DEF
4689 #undef GEN_DOCS
4690 { NULL, NULL, },
4693 int main(int argc, char **argv)
4695 const img_cmd_t *cmd;
4696 const char *cmdname;
4697 Error *local_error = NULL;
4698 char *trace_file = NULL;
4699 int c;
4700 static const struct option long_options[] = {
4701 {"help", no_argument, 0, 'h'},
4702 {"version", no_argument, 0, 'V'},
4703 {"trace", required_argument, NULL, 'T'},
4704 {0, 0, 0, 0}
4707 #ifdef CONFIG_POSIX
4708 signal(SIGPIPE, SIG_IGN);
4709 #endif
4711 module_call_init(MODULE_INIT_TRACE);
4712 error_set_progname(argv[0]);
4713 qemu_init_exec_dir(argv[0]);
4715 if (qemu_init_main_loop(&local_error)) {
4716 error_report_err(local_error);
4717 exit(EXIT_FAILURE);
4720 qcrypto_init(&error_fatal);
4722 module_call_init(MODULE_INIT_QOM);
4723 bdrv_init();
4724 if (argc < 2) {
4725 error_exit("Not enough arguments");
4728 qemu_add_opts(&qemu_object_opts);
4729 qemu_add_opts(&qemu_source_opts);
4730 qemu_add_opts(&qemu_trace_opts);
4732 while ((c = getopt_long(argc, argv, "+:hVT:", long_options, NULL)) != -1) {
4733 switch (c) {
4734 case ':':
4735 missing_argument(argv[optind - 1]);
4736 return 0;
4737 case '?':
4738 unrecognized_option(argv[optind - 1]);
4739 return 0;
4740 case 'h':
4741 help();
4742 return 0;
4743 case 'V':
4744 printf(QEMU_IMG_VERSION);
4745 return 0;
4746 case 'T':
4747 g_free(trace_file);
4748 trace_file = trace_opt_parse(optarg);
4749 break;
4753 cmdname = argv[optind];
4755 /* reset getopt_long scanning */
4756 argc -= optind;
4757 if (argc < 1) {
4758 return 0;
4760 argv += optind;
4761 optind = 0;
4763 if (!trace_init_backends()) {
4764 exit(1);
4766 trace_init_file(trace_file);
4767 qemu_set_log(LOG_TRACE);
4769 /* find the command */
4770 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
4771 if (!strcmp(cmdname, cmd->name)) {
4772 return cmd->handler(argc, argv);
4776 /* not found */
4777 error_exit("Command not found: %s", cmdname);