xref: /qemu/qemu-img.c (revision 44efba2d713aca076c411594d0c1a2b99155eeb3)
1 /*
2  * QEMU disk image utility
3  *
4  * Copyright (c) 2003-2008 Fabrice Bellard
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 
25 #include "qemu/osdep.h"
26 #include <getopt.h>
27 
28 #include "qemu/help-texts.h"
29 #include "qemu/qemu-progress.h"
30 #include "qemu-version.h"
31 #include "qapi/error.h"
32 #include "qapi/qapi-commands-block-core.h"
33 #include "qapi/qapi-visit-block-core.h"
34 #include "qapi/qobject-output-visitor.h"
35 #include "qapi/qmp/qjson.h"
36 #include "qapi/qmp/qdict.h"
37 #include "qemu/cutils.h"
38 #include "qemu/config-file.h"
39 #include "qemu/option.h"
40 #include "qemu/error-report.h"
41 #include "qemu/log.h"
42 #include "qemu/main-loop.h"
43 #include "qemu/module.h"
44 #include "qemu/sockets.h"
45 #include "qemu/units.h"
46 #include "qemu/memalign.h"
47 #include "qom/object_interfaces.h"
48 #include "sysemu/block-backend.h"
49 #include "block/block_int.h"
50 #include "block/blockjob.h"
51 #include "block/dirty-bitmap.h"
52 #include "block/qapi.h"
53 #include "crypto/init.h"
54 #include "trace/control.h"
55 #include "qemu/throttle.h"
56 #include "block/throttle-groups.h"
57 
58 #define QEMU_IMG_VERSION "qemu-img version " QEMU_FULL_VERSION \
59                           "\n" QEMU_COPYRIGHT "\n"
60 
61 typedef struct img_cmd_t {
62     const char *name;
63     int (*handler)(int argc, char **argv);
64 } img_cmd_t;
65 
66 enum {
67     OPTION_OUTPUT = 256,
68     OPTION_BACKING_CHAIN = 257,
69     OPTION_OBJECT = 258,
70     OPTION_IMAGE_OPTS = 259,
71     OPTION_PATTERN = 260,
72     OPTION_FLUSH_INTERVAL = 261,
73     OPTION_NO_DRAIN = 262,
74     OPTION_TARGET_IMAGE_OPTS = 263,
75     OPTION_SIZE = 264,
76     OPTION_PREALLOCATION = 265,
77     OPTION_SHRINK = 266,
78     OPTION_SALVAGE = 267,
79     OPTION_TARGET_IS_ZERO = 268,
80     OPTION_ADD = 269,
81     OPTION_REMOVE = 270,
82     OPTION_CLEAR = 271,
83     OPTION_ENABLE = 272,
84     OPTION_DISABLE = 273,
85     OPTION_MERGE = 274,
86     OPTION_BITMAPS = 275,
87     OPTION_FORCE = 276,
88     OPTION_SKIP_BROKEN = 277,
89 };
90 
91 typedef enum OutputFormat {
92     OFORMAT_JSON,
93     OFORMAT_HUMAN,
94 } OutputFormat;
95 
96 /* Default to cache=writeback as data integrity is not important for qemu-img */
97 #define BDRV_DEFAULT_CACHE "writeback"
98 
99 static void format_print(void *opaque, const char *name)
100 {
101     printf(" %s", name);
102 }
103 
104 static G_NORETURN G_GNUC_PRINTF(1, 2)
105 void error_exit(const char *fmt, ...)
106 {
107     va_list ap;
108 
109     va_start(ap, fmt);
110     error_vreport(fmt, ap);
111     va_end(ap);
112 
113     error_printf("Try 'qemu-img --help' for more information\n");
114     exit(EXIT_FAILURE);
115 }
116 
117 static G_NORETURN
118 void missing_argument(const char *option)
119 {
120     error_exit("missing argument for option '%s'", option);
121 }
122 
123 static G_NORETURN
124 void unrecognized_option(const char *option)
125 {
126     error_exit("unrecognized option '%s'", option);
127 }
128 
129 /* Please keep in synch with docs/tools/qemu-img.rst */
130 static G_NORETURN
131 void help(void)
132 {
133     const char *help_msg =
134            QEMU_IMG_VERSION
135            "usage: qemu-img [standard options] command [command options]\n"
136            "QEMU disk image utility\n"
137            "\n"
138            "    '-h', '--help'       display this help and exit\n"
139            "    '-V', '--version'    output version information and exit\n"
140            "    '-T', '--trace'      [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
141            "                         specify tracing options\n"
142            "\n"
143            "Command syntax:\n"
144 #define DEF(option, callback, arg_string)        \
145            "  " arg_string "\n"
146 #include "qemu-img-cmds.h"
147 #undef DEF
148            "\n"
149            "Command parameters:\n"
150            "  'filename' is a disk image filename\n"
151            "  'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
152            "    manual page for a description of the object properties. The most common\n"
153            "    object type is a 'secret', which is used to supply passwords and/or\n"
154            "    encryption keys.\n"
155            "  'fmt' is the disk image format. It is guessed automatically in most cases\n"
156            "  'cache' is the cache mode used to write the output disk image, the valid\n"
157            "    options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
158            "    'directsync' and 'unsafe' (default for convert)\n"
159            "  'src_cache' is the cache mode used to read input disk images, the valid\n"
160            "    options are the same as for the 'cache' option\n"
161            "  'size' is the disk image size in bytes. Optional suffixes\n"
162            "    'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
163            "    'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P)  are\n"
164            "    supported. 'b' is ignored.\n"
165            "  'output_filename' is the destination disk image filename\n"
166            "  'output_fmt' is the destination format\n"
167            "  'options' is a comma separated list of format specific options in a\n"
168            "    name=value format. Use -o help for an overview of the options supported by\n"
169            "    the used format\n"
170            "  'snapshot_param' is param used for internal snapshot, format\n"
171            "    is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
172            "    '[ID_OR_NAME]'\n"
173            "  '-c' indicates that target image must be compressed (qcow format only)\n"
174            "  '-u' allows unsafe backing chains. For rebasing, it is assumed that old and\n"
175            "       new backing file match exactly. The image doesn't need a working\n"
176            "       backing file before rebasing in this case (useful for renaming the\n"
177            "       backing file). For image creation, allow creating without attempting\n"
178            "       to open the backing file.\n"
179            "  '-h' with or without a command shows this help and lists the supported formats\n"
180            "  '-p' show progress of command (only certain commands)\n"
181            "  '-q' use Quiet mode - do not print any output (except errors)\n"
182            "  '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
183            "       contain only zeros for qemu-img to create a sparse image during\n"
184            "       conversion. If the number of bytes is 0, the source will not be scanned for\n"
185            "       unallocated or zero sectors, and the destination image will always be\n"
186            "       fully allocated\n"
187            "  '--output' takes the format in which the output must be done (human or json)\n"
188            "  '-n' skips the target volume creation (useful if the volume is created\n"
189            "       prior to running qemu-img)\n"
190            "\n"
191            "Parameters to bitmap subcommand:\n"
192            "  'bitmap' is the name of the bitmap to manipulate, through one or more\n"
193            "       actions from '--add', '--remove', '--clear', '--enable', '--disable',\n"
194            "       or '--merge source'\n"
195            "  '-g granularity' sets the granularity for '--add' actions\n"
196            "  '-b source' and '-F src_fmt' tell '--merge' actions to find the source\n"
197            "       bitmaps from an alternative file\n"
198            "\n"
199            "Parameters to check subcommand:\n"
200            "  '-r' tries to repair any inconsistencies that are found during the check.\n"
201            "       '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
202            "       kinds of errors, with a higher risk of choosing the wrong fix or\n"
203            "       hiding corruption that has already occurred.\n"
204            "\n"
205            "Parameters to convert subcommand:\n"
206            "  '--bitmaps' copies all top-level persistent bitmaps to destination\n"
207            "  '-m' specifies how many coroutines work in parallel during the convert\n"
208            "       process (defaults to 8)\n"
209            "  '-W' allow to write to the target out of order rather than sequential\n"
210            "\n"
211            "Parameters to snapshot subcommand:\n"
212            "  'snapshot' is the name of the snapshot to create, apply or delete\n"
213            "  '-a' applies a snapshot (revert disk to saved state)\n"
214            "  '-c' creates a snapshot\n"
215            "  '-d' deletes a snapshot\n"
216            "  '-l' lists all snapshots in the given image\n"
217            "\n"
218            "Parameters to compare subcommand:\n"
219            "  '-f' first image format\n"
220            "  '-F' second image format\n"
221            "  '-s' run in Strict mode - fail on different image size or sector allocation\n"
222            "\n"
223            "Parameters to dd subcommand:\n"
224            "  'bs=BYTES' read and write up to BYTES bytes at a time "
225            "(default: 512)\n"
226            "  'count=N' copy only N input blocks\n"
227            "  'if=FILE' read from FILE\n"
228            "  'of=FILE' write to FILE\n"
229            "  'skip=N' skip N bs-sized blocks at the start of input\n";
230 
231     printf("%s\nSupported formats:", help_msg);
232     bdrv_iterate_format(format_print, NULL, false);
233     printf("\n\n" QEMU_HELP_BOTTOM "\n");
234     exit(EXIT_SUCCESS);
235 }
236 
237 /*
238  * Is @optarg safe for accumulate_options()?
239  * It is when multiple of them can be joined together separated by ','.
240  * To make that work, @optarg must not start with ',' (or else a
241  * separating ',' preceding it gets escaped), and it must not end with
242  * an odd number of ',' (or else a separating ',' following it gets
243  * escaped), or be empty (or else a separating ',' preceding it can
244  * escape a separating ',' following it).
245  *
246  */
247 static bool is_valid_option_list(const char *optarg)
248 {
249     size_t len = strlen(optarg);
250     size_t i;
251 
252     if (!optarg[0] || optarg[0] == ',') {
253         return false;
254     }
255 
256     for (i = len; i > 0 && optarg[i - 1] == ','; i--) {
257     }
258     if ((len - i) % 2) {
259         return false;
260     }
261 
262     return true;
263 }
264 
265 static int accumulate_options(char **options, char *optarg)
266 {
267     char *new_options;
268 
269     if (!is_valid_option_list(optarg)) {
270         error_report("Invalid option list: %s", optarg);
271         return -1;
272     }
273 
274     if (!*options) {
275         *options = g_strdup(optarg);
276     } else {
277         new_options = g_strdup_printf("%s,%s", *options, optarg);
278         g_free(*options);
279         *options = new_options;
280     }
281     return 0;
282 }
283 
284 static QemuOptsList qemu_source_opts = {
285     .name = "source",
286     .implied_opt_name = "file",
287     .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head),
288     .desc = {
289         { }
290     },
291 };
292 
293 static int G_GNUC_PRINTF(2, 3) qprintf(bool quiet, const char *fmt, ...)
294 {
295     int ret = 0;
296     if (!quiet) {
297         va_list args;
298         va_start(args, fmt);
299         ret = vprintf(fmt, args);
300         va_end(args);
301     }
302     return ret;
303 }
304 
305 
306 static int print_block_option_help(const char *filename, const char *fmt)
307 {
308     BlockDriver *drv, *proto_drv;
309     QemuOptsList *create_opts = NULL;
310     Error *local_err = NULL;
311 
312     /* Find driver and parse its options */
313     drv = bdrv_find_format(fmt);
314     if (!drv) {
315         error_report("Unknown file format '%s'", fmt);
316         return 1;
317     }
318 
319     if (!drv->create_opts) {
320         error_report("Format driver '%s' does not support image creation", fmt);
321         return 1;
322     }
323 
324     create_opts = qemu_opts_append(create_opts, drv->create_opts);
325     if (filename) {
326         proto_drv = bdrv_find_protocol(filename, true, &local_err);
327         if (!proto_drv) {
328             error_report_err(local_err);
329             qemu_opts_free(create_opts);
330             return 1;
331         }
332         if (!proto_drv->create_opts) {
333             error_report("Protocol driver '%s' does not support image creation",
334                          proto_drv->format_name);
335             qemu_opts_free(create_opts);
336             return 1;
337         }
338         create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
339     }
340 
341     if (filename) {
342         printf("Supported options:\n");
343     } else {
344         printf("Supported %s options:\n", fmt);
345     }
346     qemu_opts_print_help(create_opts, false);
347     qemu_opts_free(create_opts);
348 
349     if (!filename) {
350         printf("\n"
351                "The protocol level may support further options.\n"
352                "Specify the target filename to include those options.\n");
353     }
354 
355     return 0;
356 }
357 
358 
359 static BlockBackend *img_open_opts(const char *optstr,
360                                    QemuOpts *opts, int flags, bool writethrough,
361                                    bool quiet, bool force_share)
362 {
363     QDict *options;
364     Error *local_err = NULL;
365     BlockBackend *blk;
366     options = qemu_opts_to_qdict(opts, NULL);
367     if (force_share) {
368         if (qdict_haskey(options, BDRV_OPT_FORCE_SHARE)
369             && strcmp(qdict_get_str(options, BDRV_OPT_FORCE_SHARE), "on")) {
370             error_report("--force-share/-U conflicts with image options");
371             qobject_unref(options);
372             return NULL;
373         }
374         qdict_put_str(options, BDRV_OPT_FORCE_SHARE, "on");
375     }
376     blk = blk_new_open(NULL, NULL, options, flags, &local_err);
377     if (!blk) {
378         error_reportf_err(local_err, "Could not open '%s': ", optstr);
379         return NULL;
380     }
381     blk_set_enable_write_cache(blk, !writethrough);
382 
383     return blk;
384 }
385 
386 static BlockBackend *img_open_file(const char *filename,
387                                    QDict *options,
388                                    const char *fmt, int flags,
389                                    bool writethrough, bool quiet,
390                                    bool force_share)
391 {
392     BlockBackend *blk;
393     Error *local_err = NULL;
394 
395     if (!options) {
396         options = qdict_new();
397     }
398     if (fmt) {
399         qdict_put_str(options, "driver", fmt);
400     }
401 
402     if (force_share) {
403         qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
404     }
405     blk = blk_new_open(filename, NULL, options, flags, &local_err);
406     if (!blk) {
407         error_reportf_err(local_err, "Could not open '%s': ", filename);
408         return NULL;
409     }
410     blk_set_enable_write_cache(blk, !writethrough);
411 
412     return blk;
413 }
414 
415 
416 static int img_add_key_secrets(void *opaque,
417                                const char *name, const char *value,
418                                Error **errp)
419 {
420     QDict *options = opaque;
421 
422     if (g_str_has_suffix(name, "key-secret")) {
423         qdict_put_str(options, name, value);
424     }
425 
426     return 0;
427 }
428 
429 
430 static BlockBackend *img_open(bool image_opts,
431                               const char *filename,
432                               const char *fmt, int flags, bool writethrough,
433                               bool quiet, bool force_share)
434 {
435     BlockBackend *blk;
436     if (image_opts) {
437         QemuOpts *opts;
438         if (fmt) {
439             error_report("--image-opts and --format are mutually exclusive");
440             return NULL;
441         }
442         opts = qemu_opts_parse_noisily(qemu_find_opts("source"),
443                                        filename, true);
444         if (!opts) {
445             return NULL;
446         }
447         blk = img_open_opts(filename, opts, flags, writethrough, quiet,
448                             force_share);
449     } else {
450         blk = img_open_file(filename, NULL, fmt, flags, writethrough, quiet,
451                             force_share);
452     }
453 
454     if (blk) {
455         blk_set_force_allow_inactivate(blk);
456     }
457 
458     return blk;
459 }
460 
461 
462 static int add_old_style_options(const char *fmt, QemuOpts *opts,
463                                  const char *base_filename,
464                                  const char *base_fmt)
465 {
466     if (base_filename) {
467         if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
468                           NULL)) {
469             error_report("Backing file not supported for file format '%s'",
470                          fmt);
471             return -1;
472         }
473     }
474     if (base_fmt) {
475         if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
476             error_report("Backing file format not supported for file "
477                          "format '%s'", fmt);
478             return -1;
479         }
480     }
481     return 0;
482 }
483 
484 static int64_t cvtnum_full(const char *name, const char *value, int64_t min,
485                            int64_t max)
486 {
487     int err;
488     uint64_t res;
489 
490     err = qemu_strtosz(value, NULL, &res);
491     if (err < 0 && err != -ERANGE) {
492         error_report("Invalid %s specified. You may use "
493                      "k, M, G, T, P or E suffixes for", name);
494         error_report("kilobytes, megabytes, gigabytes, terabytes, "
495                      "petabytes and exabytes.");
496         return err;
497     }
498     if (err == -ERANGE || res > max || res < min) {
499         error_report("Invalid %s specified. Must be between %" PRId64
500                      " and %" PRId64 ".", name, min, max);
501         return -ERANGE;
502     }
503     return res;
504 }
505 
506 static int64_t cvtnum(const char *name, const char *value)
507 {
508     return cvtnum_full(name, value, 0, INT64_MAX);
509 }
510 
511 static int img_create(int argc, char **argv)
512 {
513     int c;
514     uint64_t img_size = -1;
515     const char *fmt = "raw";
516     const char *base_fmt = NULL;
517     const char *filename;
518     const char *base_filename = NULL;
519     char *options = NULL;
520     Error *local_err = NULL;
521     bool quiet = false;
522     int flags = 0;
523 
524     for(;;) {
525         static const struct option long_options[] = {
526             {"help", no_argument, 0, 'h'},
527             {"object", required_argument, 0, OPTION_OBJECT},
528             {0, 0, 0, 0}
529         };
530         c = getopt_long(argc, argv, ":F:b:f:ho:qu",
531                         long_options, NULL);
532         if (c == -1) {
533             break;
534         }
535         switch(c) {
536         case ':':
537             missing_argument(argv[optind - 1]);
538             break;
539         case '?':
540             unrecognized_option(argv[optind - 1]);
541             break;
542         case 'h':
543             help();
544             break;
545         case 'F':
546             base_fmt = optarg;
547             break;
548         case 'b':
549             base_filename = optarg;
550             break;
551         case 'f':
552             fmt = optarg;
553             break;
554         case 'o':
555             if (accumulate_options(&options, optarg) < 0) {
556                 goto fail;
557             }
558             break;
559         case 'q':
560             quiet = true;
561             break;
562         case 'u':
563             flags |= BDRV_O_NO_BACKING;
564             break;
565         case OPTION_OBJECT:
566             user_creatable_process_cmdline(optarg);
567             break;
568         }
569     }
570 
571     /* Get the filename */
572     filename = (optind < argc) ? argv[optind] : NULL;
573     if (options && has_help_option(options)) {
574         g_free(options);
575         return print_block_option_help(filename, fmt);
576     }
577 
578     if (optind >= argc) {
579         error_exit("Expecting image file name");
580     }
581     optind++;
582 
583     /* Get image size, if specified */
584     if (optind < argc) {
585         int64_t sval;
586 
587         sval = cvtnum("image size", argv[optind++]);
588         if (sval < 0) {
589             goto fail;
590         }
591         img_size = (uint64_t)sval;
592     }
593     if (optind != argc) {
594         error_exit("Unexpected argument: %s", argv[optind]);
595     }
596 
597     bdrv_img_create(filename, fmt, base_filename, base_fmt,
598                     options, img_size, flags, quiet, &local_err);
599     if (local_err) {
600         error_reportf_err(local_err, "%s: ", filename);
601         goto fail;
602     }
603 
604     g_free(options);
605     return 0;
606 
607 fail:
608     g_free(options);
609     return 1;
610 }
611 
612 static void dump_json_image_check(ImageCheck *check, bool quiet)
613 {
614     GString *str;
615     QObject *obj;
616     Visitor *v = qobject_output_visitor_new(&obj);
617 
618     visit_type_ImageCheck(v, NULL, &check, &error_abort);
619     visit_complete(v, &obj);
620     str = qobject_to_json_pretty(obj, true);
621     assert(str != NULL);
622     qprintf(quiet, "%s\n", str->str);
623     qobject_unref(obj);
624     visit_free(v);
625     g_string_free(str, true);
626 }
627 
628 static void dump_human_image_check(ImageCheck *check, bool quiet)
629 {
630     if (!(check->corruptions || check->leaks || check->check_errors)) {
631         qprintf(quiet, "No errors were found on the image.\n");
632     } else {
633         if (check->corruptions) {
634             qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
635                     "Data may be corrupted, or further writes to the image "
636                     "may corrupt it.\n",
637                     check->corruptions);
638         }
639 
640         if (check->leaks) {
641             qprintf(quiet,
642                     "\n%" PRId64 " leaked clusters were found on the image.\n"
643                     "This means waste of disk space, but no harm to data.\n",
644                     check->leaks);
645         }
646 
647         if (check->check_errors) {
648             qprintf(quiet,
649                     "\n%" PRId64
650                     " internal errors have occurred during the check.\n",
651                     check->check_errors);
652         }
653     }
654 
655     if (check->total_clusters != 0 && check->allocated_clusters != 0) {
656         qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
657                 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
658                 check->allocated_clusters, check->total_clusters,
659                 check->allocated_clusters * 100.0 / check->total_clusters,
660                 check->fragmented_clusters * 100.0 / check->allocated_clusters,
661                 check->compressed_clusters * 100.0 /
662                 check->allocated_clusters);
663     }
664 
665     if (check->image_end_offset) {
666         qprintf(quiet,
667                 "Image end offset: %" PRId64 "\n", check->image_end_offset);
668     }
669 }
670 
671 static int collect_image_check(BlockDriverState *bs,
672                    ImageCheck *check,
673                    const char *filename,
674                    const char *fmt,
675                    int fix)
676 {
677     int ret;
678     BdrvCheckResult result;
679 
680     ret = bdrv_check(bs, &result, fix);
681     if (ret < 0) {
682         return ret;
683     }
684 
685     check->filename                 = g_strdup(filename);
686     check->format                   = g_strdup(bdrv_get_format_name(bs));
687     check->check_errors             = result.check_errors;
688     check->corruptions              = result.corruptions;
689     check->has_corruptions          = result.corruptions != 0;
690     check->leaks                    = result.leaks;
691     check->has_leaks                = result.leaks != 0;
692     check->corruptions_fixed        = result.corruptions_fixed;
693     check->has_corruptions_fixed    = result.corruptions_fixed != 0;
694     check->leaks_fixed              = result.leaks_fixed;
695     check->has_leaks_fixed          = result.leaks_fixed != 0;
696     check->image_end_offset         = result.image_end_offset;
697     check->has_image_end_offset     = result.image_end_offset != 0;
698     check->total_clusters           = result.bfi.total_clusters;
699     check->has_total_clusters       = result.bfi.total_clusters != 0;
700     check->allocated_clusters       = result.bfi.allocated_clusters;
701     check->has_allocated_clusters   = result.bfi.allocated_clusters != 0;
702     check->fragmented_clusters      = result.bfi.fragmented_clusters;
703     check->has_fragmented_clusters  = result.bfi.fragmented_clusters != 0;
704     check->compressed_clusters      = result.bfi.compressed_clusters;
705     check->has_compressed_clusters  = result.bfi.compressed_clusters != 0;
706 
707     return 0;
708 }
709 
710 /*
711  * Checks an image for consistency. Exit codes:
712  *
713  *  0 - Check completed, image is good
714  *  1 - Check not completed because of internal errors
715  *  2 - Check completed, image is corrupted
716  *  3 - Check completed, image has leaked clusters, but is good otherwise
717  * 63 - Checks are not supported by the image format
718  */
719 static int img_check(int argc, char **argv)
720 {
721     int c, ret;
722     OutputFormat output_format = OFORMAT_HUMAN;
723     const char *filename, *fmt, *output, *cache;
724     BlockBackend *blk;
725     BlockDriverState *bs;
726     int fix = 0;
727     int flags = BDRV_O_CHECK;
728     bool writethrough;
729     ImageCheck *check;
730     bool quiet = false;
731     bool image_opts = false;
732     bool force_share = false;
733 
734     fmt = NULL;
735     output = NULL;
736     cache = BDRV_DEFAULT_CACHE;
737 
738     for(;;) {
739         int option_index = 0;
740         static const struct option long_options[] = {
741             {"help", no_argument, 0, 'h'},
742             {"format", required_argument, 0, 'f'},
743             {"repair", required_argument, 0, 'r'},
744             {"output", required_argument, 0, OPTION_OUTPUT},
745             {"object", required_argument, 0, OPTION_OBJECT},
746             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
747             {"force-share", no_argument, 0, 'U'},
748             {0, 0, 0, 0}
749         };
750         c = getopt_long(argc, argv, ":hf:r:T:qU",
751                         long_options, &option_index);
752         if (c == -1) {
753             break;
754         }
755         switch(c) {
756         case ':':
757             missing_argument(argv[optind - 1]);
758             break;
759         case '?':
760             unrecognized_option(argv[optind - 1]);
761             break;
762         case 'h':
763             help();
764             break;
765         case 'f':
766             fmt = optarg;
767             break;
768         case 'r':
769             flags |= BDRV_O_RDWR;
770 
771             if (!strcmp(optarg, "leaks")) {
772                 fix = BDRV_FIX_LEAKS;
773             } else if (!strcmp(optarg, "all")) {
774                 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
775             } else {
776                 error_exit("Unknown option value for -r "
777                            "(expecting 'leaks' or 'all'): %s", optarg);
778             }
779             break;
780         case OPTION_OUTPUT:
781             output = optarg;
782             break;
783         case 'T':
784             cache = optarg;
785             break;
786         case 'q':
787             quiet = true;
788             break;
789         case 'U':
790             force_share = true;
791             break;
792         case OPTION_OBJECT:
793             user_creatable_process_cmdline(optarg);
794             break;
795         case OPTION_IMAGE_OPTS:
796             image_opts = true;
797             break;
798         }
799     }
800     if (optind != argc - 1) {
801         error_exit("Expecting one image file name");
802     }
803     filename = argv[optind++];
804 
805     if (output && !strcmp(output, "json")) {
806         output_format = OFORMAT_JSON;
807     } else if (output && !strcmp(output, "human")) {
808         output_format = OFORMAT_HUMAN;
809     } else if (output) {
810         error_report("--output must be used with human or json as argument.");
811         return 1;
812     }
813 
814     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
815     if (ret < 0) {
816         error_report("Invalid source cache option: %s", cache);
817         return 1;
818     }
819 
820     blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
821                    force_share);
822     if (!blk) {
823         return 1;
824     }
825     bs = blk_bs(blk);
826 
827     check = g_new0(ImageCheck, 1);
828     ret = collect_image_check(bs, check, filename, fmt, fix);
829 
830     if (ret == -ENOTSUP) {
831         error_report("This image format does not support checks");
832         ret = 63;
833         goto fail;
834     }
835 
836     if (check->corruptions_fixed || check->leaks_fixed) {
837         int corruptions_fixed, leaks_fixed;
838         bool has_leaks_fixed, has_corruptions_fixed;
839 
840         leaks_fixed         = check->leaks_fixed;
841         has_leaks_fixed     = check->has_leaks_fixed;
842         corruptions_fixed   = check->corruptions_fixed;
843         has_corruptions_fixed = check->has_corruptions_fixed;
844 
845         if (output_format == OFORMAT_HUMAN) {
846             qprintf(quiet,
847                     "The following inconsistencies were found and repaired:\n\n"
848                     "    %" PRId64 " leaked clusters\n"
849                     "    %" PRId64 " corruptions\n\n"
850                     "Double checking the fixed image now...\n",
851                     check->leaks_fixed,
852                     check->corruptions_fixed);
853         }
854 
855         qapi_free_ImageCheck(check);
856         check = g_new0(ImageCheck, 1);
857         ret = collect_image_check(bs, check, filename, fmt, 0);
858 
859         check->leaks_fixed          = leaks_fixed;
860         check->has_leaks_fixed      = has_leaks_fixed;
861         check->corruptions_fixed    = corruptions_fixed;
862         check->has_corruptions_fixed = has_corruptions_fixed;
863     }
864 
865     if (!ret) {
866         switch (output_format) {
867         case OFORMAT_HUMAN:
868             dump_human_image_check(check, quiet);
869             break;
870         case OFORMAT_JSON:
871             dump_json_image_check(check, quiet);
872             break;
873         }
874     }
875 
876     if (ret || check->check_errors) {
877         if (ret) {
878             error_report("Check failed: %s", strerror(-ret));
879         } else {
880             error_report("Check failed");
881         }
882         ret = 1;
883         goto fail;
884     }
885 
886     if (check->corruptions) {
887         ret = 2;
888     } else if (check->leaks) {
889         ret = 3;
890     } else {
891         ret = 0;
892     }
893 
894 fail:
895     qapi_free_ImageCheck(check);
896     blk_unref(blk);
897     return ret;
898 }
899 
900 typedef struct CommonBlockJobCBInfo {
901     BlockDriverState *bs;
902     Error **errp;
903 } CommonBlockJobCBInfo;
904 
905 static void common_block_job_cb(void *opaque, int ret)
906 {
907     CommonBlockJobCBInfo *cbi = opaque;
908 
909     if (ret < 0) {
910         error_setg_errno(cbi->errp, -ret, "Block job failed");
911     }
912 }
913 
914 static void run_block_job(BlockJob *job, Error **errp)
915 {
916     uint64_t progress_current, progress_total;
917     AioContext *aio_context = block_job_get_aio_context(job);
918     int ret = 0;
919 
920     job_lock();
921     job_ref_locked(&job->job);
922     do {
923         float progress = 0.0f;
924         job_unlock();
925         aio_poll(aio_context, true);
926 
927         progress_get_snapshot(&job->job.progress, &progress_current,
928                               &progress_total);
929         if (progress_total) {
930             progress = (float)progress_current / progress_total * 100.f;
931         }
932         qemu_progress_print(progress, 0);
933         job_lock();
934     } while (!job_is_ready_locked(&job->job) &&
935              !job_is_completed_locked(&job->job));
936 
937     if (!job_is_completed_locked(&job->job)) {
938         ret = job_complete_sync_locked(&job->job, errp);
939     } else {
940         ret = job->job.ret;
941     }
942     job_unref_locked(&job->job);
943     job_unlock();
944 
945     /* publish completion progress only when success */
946     if (!ret) {
947         qemu_progress_print(100.f, 0);
948     }
949 }
950 
951 static int img_commit(int argc, char **argv)
952 {
953     int c, ret, flags;
954     const char *filename, *fmt, *cache, *base;
955     BlockBackend *blk;
956     BlockDriverState *bs, *base_bs;
957     BlockJob *job;
958     bool progress = false, quiet = false, drop = false;
959     bool writethrough;
960     Error *local_err = NULL;
961     CommonBlockJobCBInfo cbi;
962     bool image_opts = false;
963     AioContext *aio_context;
964     int64_t rate_limit = 0;
965 
966     fmt = NULL;
967     cache = BDRV_DEFAULT_CACHE;
968     base = NULL;
969     for(;;) {
970         static const struct option long_options[] = {
971             {"help", no_argument, 0, 'h'},
972             {"object", required_argument, 0, OPTION_OBJECT},
973             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
974             {0, 0, 0, 0}
975         };
976         c = getopt_long(argc, argv, ":f:ht:b:dpqr:",
977                         long_options, NULL);
978         if (c == -1) {
979             break;
980         }
981         switch(c) {
982         case ':':
983             missing_argument(argv[optind - 1]);
984             break;
985         case '?':
986             unrecognized_option(argv[optind - 1]);
987             break;
988         case 'h':
989             help();
990             break;
991         case 'f':
992             fmt = optarg;
993             break;
994         case 't':
995             cache = optarg;
996             break;
997         case 'b':
998             base = optarg;
999             /* -b implies -d */
1000             drop = true;
1001             break;
1002         case 'd':
1003             drop = true;
1004             break;
1005         case 'p':
1006             progress = true;
1007             break;
1008         case 'q':
1009             quiet = true;
1010             break;
1011         case 'r':
1012             rate_limit = cvtnum("rate limit", optarg);
1013             if (rate_limit < 0) {
1014                 return 1;
1015             }
1016             break;
1017         case OPTION_OBJECT:
1018             user_creatable_process_cmdline(optarg);
1019             break;
1020         case OPTION_IMAGE_OPTS:
1021             image_opts = true;
1022             break;
1023         }
1024     }
1025 
1026     /* Progress is not shown in Quiet mode */
1027     if (quiet) {
1028         progress = false;
1029     }
1030 
1031     if (optind != argc - 1) {
1032         error_exit("Expecting one image file name");
1033     }
1034     filename = argv[optind++];
1035 
1036     flags = BDRV_O_RDWR | BDRV_O_UNMAP;
1037     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
1038     if (ret < 0) {
1039         error_report("Invalid cache option: %s", cache);
1040         return 1;
1041     }
1042 
1043     blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
1044                    false);
1045     if (!blk) {
1046         return 1;
1047     }
1048     bs = blk_bs(blk);
1049 
1050     qemu_progress_init(progress, 1.f);
1051     qemu_progress_print(0.f, 100);
1052 
1053     if (base) {
1054         base_bs = bdrv_find_backing_image(bs, base);
1055         if (!base_bs) {
1056             error_setg(&local_err,
1057                        "Did not find '%s' in the backing chain of '%s'",
1058                        base, filename);
1059             goto done;
1060         }
1061     } else {
1062         /* This is different from QMP, which by default uses the deepest file in
1063          * the backing chain (i.e., the very base); however, the traditional
1064          * behavior of qemu-img commit is using the immediate backing file. */
1065         base_bs = bdrv_backing_chain_next(bs);
1066         if (!base_bs) {
1067             error_setg(&local_err, "Image does not have a backing file");
1068             goto done;
1069         }
1070     }
1071 
1072     cbi = (CommonBlockJobCBInfo){
1073         .errp = &local_err,
1074         .bs   = bs,
1075     };
1076 
1077     aio_context = bdrv_get_aio_context(bs);
1078     aio_context_acquire(aio_context);
1079     commit_active_start("commit", bs, base_bs, JOB_DEFAULT, rate_limit,
1080                         BLOCKDEV_ON_ERROR_REPORT, NULL, common_block_job_cb,
1081                         &cbi, false, &local_err);
1082     aio_context_release(aio_context);
1083     if (local_err) {
1084         goto done;
1085     }
1086 
1087     /* When the block job completes, the BlockBackend reference will point to
1088      * the old backing file. In order to avoid that the top image is already
1089      * deleted, so we can still empty it afterwards, increment the reference
1090      * counter here preemptively. */
1091     if (!drop) {
1092         bdrv_ref(bs);
1093     }
1094 
1095     job = block_job_get("commit");
1096     assert(job);
1097     run_block_job(job, &local_err);
1098     if (local_err) {
1099         goto unref_backing;
1100     }
1101 
1102     if (!drop) {
1103         BlockBackend *old_backing_blk;
1104 
1105         old_backing_blk = blk_new_with_bs(bs, BLK_PERM_WRITE, BLK_PERM_ALL,
1106                                           &local_err);
1107         if (!old_backing_blk) {
1108             goto unref_backing;
1109         }
1110         ret = blk_make_empty(old_backing_blk, &local_err);
1111         blk_unref(old_backing_blk);
1112         if (ret == -ENOTSUP) {
1113             error_free(local_err);
1114             local_err = NULL;
1115         } else if (ret < 0) {
1116             goto unref_backing;
1117         }
1118     }
1119 
1120 unref_backing:
1121     if (!drop) {
1122         bdrv_unref(bs);
1123     }
1124 
1125 done:
1126     qemu_progress_end();
1127 
1128     /*
1129      * Manually inactivate the image first because this way we can know whether
1130      * an error occurred. blk_unref() doesn't tell us about failures.
1131      */
1132     ret = bdrv_inactivate_all();
1133     if (ret < 0 && !local_err) {
1134         error_setg_errno(&local_err, -ret, "Error while closing the image");
1135     }
1136     blk_unref(blk);
1137 
1138     if (local_err) {
1139         error_report_err(local_err);
1140         return 1;
1141     }
1142 
1143     qprintf(quiet, "Image committed.\n");
1144     return 0;
1145 }
1146 
1147 /*
1148  * Returns -1 if 'buf' contains only zeroes, otherwise the byte index
1149  * of the first sector boundary within buf where the sector contains a
1150  * non-zero byte.  This function is robust to a buffer that is not
1151  * sector-aligned.
1152  */
1153 static int64_t find_nonzero(const uint8_t *buf, int64_t n)
1154 {
1155     int64_t i;
1156     int64_t end = QEMU_ALIGN_DOWN(n, BDRV_SECTOR_SIZE);
1157 
1158     for (i = 0; i < end; i += BDRV_SECTOR_SIZE) {
1159         if (!buffer_is_zero(buf + i, BDRV_SECTOR_SIZE)) {
1160             return i;
1161         }
1162     }
1163     if (i < n && !buffer_is_zero(buf + i, n - end)) {
1164         return i;
1165     }
1166     return -1;
1167 }
1168 
1169 /*
1170  * Returns true iff the first sector pointed to by 'buf' contains at least
1171  * a non-NUL byte.
1172  *
1173  * 'pnum' is set to the number of sectors (including and immediately following
1174  * the first one) that are known to be in the same allocated/unallocated state.
1175  * The function will try to align the end offset to alignment boundaries so
1176  * that the request will at least end aligned and consecutive requests will
1177  * also start at an aligned offset.
1178  */
1179 static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum,
1180                                 int64_t sector_num, int alignment)
1181 {
1182     bool is_zero;
1183     int i, tail;
1184 
1185     if (n <= 0) {
1186         *pnum = 0;
1187         return 0;
1188     }
1189     is_zero = buffer_is_zero(buf, BDRV_SECTOR_SIZE);
1190     for(i = 1; i < n; i++) {
1191         buf += BDRV_SECTOR_SIZE;
1192         if (is_zero != buffer_is_zero(buf, BDRV_SECTOR_SIZE)) {
1193             break;
1194         }
1195     }
1196 
1197     if (i == n) {
1198         /*
1199          * The whole buf is the same.
1200          * No reason to split it into chunks, so return now.
1201          */
1202         *pnum = i;
1203         return !is_zero;
1204     }
1205 
1206     tail = (sector_num + i) & (alignment - 1);
1207     if (tail) {
1208         if (is_zero && i <= tail) {
1209             /*
1210              * For sure next sector after i is data, and it will rewrite this
1211              * tail anyway due to RMW. So, let's just write data now.
1212              */
1213             is_zero = false;
1214         }
1215         if (!is_zero) {
1216             /* If possible, align up end offset of allocated areas. */
1217             i += alignment - tail;
1218             i = MIN(i, n);
1219         } else {
1220             /*
1221              * For sure next sector after i is data, and it will rewrite this
1222              * tail anyway due to RMW. Better is avoid RMW and write zeroes up
1223              * to aligned bound.
1224              */
1225             i -= tail;
1226         }
1227     }
1228     *pnum = i;
1229     return !is_zero;
1230 }
1231 
1232 /*
1233  * Like is_allocated_sectors, but if the buffer starts with a used sector,
1234  * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1235  * breaking up write requests for only small sparse areas.
1236  */
1237 static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1238     int min, int64_t sector_num, int alignment)
1239 {
1240     int ret;
1241     int num_checked, num_used;
1242 
1243     if (n < min) {
1244         min = n;
1245     }
1246 
1247     ret = is_allocated_sectors(buf, n, pnum, sector_num, alignment);
1248     if (!ret) {
1249         return ret;
1250     }
1251 
1252     num_used = *pnum;
1253     buf += BDRV_SECTOR_SIZE * *pnum;
1254     n -= *pnum;
1255     sector_num += *pnum;
1256     num_checked = num_used;
1257 
1258     while (n > 0) {
1259         ret = is_allocated_sectors(buf, n, pnum, sector_num, alignment);
1260 
1261         buf += BDRV_SECTOR_SIZE * *pnum;
1262         n -= *pnum;
1263         sector_num += *pnum;
1264         num_checked += *pnum;
1265         if (ret) {
1266             num_used = num_checked;
1267         } else if (*pnum >= min) {
1268             break;
1269         }
1270     }
1271 
1272     *pnum = num_used;
1273     return 1;
1274 }
1275 
1276 /*
1277  * Compares two buffers sector by sector. Returns 0 if the first
1278  * sector of each buffer matches, non-zero otherwise.
1279  *
1280  * pnum is set to the sector-aligned size of the buffer prefix that
1281  * has the same matching status as the first sector.
1282  */
1283 static int compare_buffers(const uint8_t *buf1, const uint8_t *buf2,
1284                            int64_t bytes, int64_t *pnum)
1285 {
1286     bool res;
1287     int64_t i = MIN(bytes, BDRV_SECTOR_SIZE);
1288 
1289     assert(bytes > 0);
1290 
1291     res = !!memcmp(buf1, buf2, i);
1292     while (i < bytes) {
1293         int64_t len = MIN(bytes - i, BDRV_SECTOR_SIZE);
1294 
1295         if (!!memcmp(buf1 + i, buf2 + i, len) != res) {
1296             break;
1297         }
1298         i += len;
1299     }
1300 
1301     *pnum = i;
1302     return res;
1303 }
1304 
1305 #define IO_BUF_SIZE (2 * MiB)
1306 
1307 /*
1308  * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1309  *
1310  * Intended for use by 'qemu-img compare': Returns 0 in case sectors are
1311  * filled with 0, 1 if sectors contain non-zero data (this is a comparison
1312  * failure), and 4 on error (the exit status for read errors), after emitting
1313  * an error message.
1314  *
1315  * @param blk:  BlockBackend for the image
1316  * @param offset: Starting offset to check
1317  * @param bytes: Number of bytes to check
1318  * @param filename: Name of disk file we are checking (logging purpose)
1319  * @param buffer: Allocated buffer for storing read data
1320  * @param quiet: Flag for quiet mode
1321  */
1322 static int check_empty_sectors(BlockBackend *blk, int64_t offset,
1323                                int64_t bytes, const char *filename,
1324                                uint8_t *buffer, bool quiet)
1325 {
1326     int ret = 0;
1327     int64_t idx;
1328 
1329     ret = blk_pread(blk, offset, bytes, buffer, 0);
1330     if (ret < 0) {
1331         error_report("Error while reading offset %" PRId64 " of %s: %s",
1332                      offset, filename, strerror(-ret));
1333         return 4;
1334     }
1335     idx = find_nonzero(buffer, bytes);
1336     if (idx >= 0) {
1337         qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1338                 offset + idx);
1339         return 1;
1340     }
1341 
1342     return 0;
1343 }
1344 
1345 /*
1346  * Compares two images. Exit codes:
1347  *
1348  * 0 - Images are identical or the requested help was printed
1349  * 1 - Images differ
1350  * >1 - Error occurred
1351  */
1352 static int img_compare(int argc, char **argv)
1353 {
1354     const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
1355     BlockBackend *blk1, *blk2;
1356     BlockDriverState *bs1, *bs2;
1357     int64_t total_size1, total_size2;
1358     uint8_t *buf1 = NULL, *buf2 = NULL;
1359     int64_t pnum1, pnum2;
1360     int allocated1, allocated2;
1361     int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1362     bool progress = false, quiet = false, strict = false;
1363     int flags;
1364     bool writethrough;
1365     int64_t total_size;
1366     int64_t offset = 0;
1367     int64_t chunk;
1368     int c;
1369     uint64_t progress_base;
1370     bool image_opts = false;
1371     bool force_share = false;
1372 
1373     cache = BDRV_DEFAULT_CACHE;
1374     for (;;) {
1375         static const struct option long_options[] = {
1376             {"help", no_argument, 0, 'h'},
1377             {"object", required_argument, 0, OPTION_OBJECT},
1378             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
1379             {"force-share", no_argument, 0, 'U'},
1380             {0, 0, 0, 0}
1381         };
1382         c = getopt_long(argc, argv, ":hf:F:T:pqsU",
1383                         long_options, NULL);
1384         if (c == -1) {
1385             break;
1386         }
1387         switch (c) {
1388         case ':':
1389             missing_argument(argv[optind - 1]);
1390             break;
1391         case '?':
1392             unrecognized_option(argv[optind - 1]);
1393             break;
1394         case 'h':
1395             help();
1396             break;
1397         case 'f':
1398             fmt1 = optarg;
1399             break;
1400         case 'F':
1401             fmt2 = optarg;
1402             break;
1403         case 'T':
1404             cache = optarg;
1405             break;
1406         case 'p':
1407             progress = true;
1408             break;
1409         case 'q':
1410             quiet = true;
1411             break;
1412         case 's':
1413             strict = true;
1414             break;
1415         case 'U':
1416             force_share = true;
1417             break;
1418         case OPTION_OBJECT:
1419             {
1420                 Error *local_err = NULL;
1421 
1422                 if (!user_creatable_add_from_str(optarg, &local_err)) {
1423                     if (local_err) {
1424                         error_report_err(local_err);
1425                         exit(2);
1426                     } else {
1427                         /* Help was printed */
1428                         exit(EXIT_SUCCESS);
1429                     }
1430                 }
1431                 break;
1432             }
1433         case OPTION_IMAGE_OPTS:
1434             image_opts = true;
1435             break;
1436         }
1437     }
1438 
1439     /* Progress is not shown in Quiet mode */
1440     if (quiet) {
1441         progress = false;
1442     }
1443 
1444 
1445     if (optind != argc - 2) {
1446         error_exit("Expecting two image file names");
1447     }
1448     filename1 = argv[optind++];
1449     filename2 = argv[optind++];
1450 
1451     /* Initialize before goto out */
1452     qemu_progress_init(progress, 2.0);
1453 
1454     flags = 0;
1455     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
1456     if (ret < 0) {
1457         error_report("Invalid source cache option: %s", cache);
1458         ret = 2;
1459         goto out3;
1460     }
1461 
1462     blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet,
1463                     force_share);
1464     if (!blk1) {
1465         ret = 2;
1466         goto out3;
1467     }
1468 
1469     blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet,
1470                     force_share);
1471     if (!blk2) {
1472         ret = 2;
1473         goto out2;
1474     }
1475     bs1 = blk_bs(blk1);
1476     bs2 = blk_bs(blk2);
1477 
1478     buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1479     buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1480     total_size1 = blk_getlength(blk1);
1481     if (total_size1 < 0) {
1482         error_report("Can't get size of %s: %s",
1483                      filename1, strerror(-total_size1));
1484         ret = 4;
1485         goto out;
1486     }
1487     total_size2 = blk_getlength(blk2);
1488     if (total_size2 < 0) {
1489         error_report("Can't get size of %s: %s",
1490                      filename2, strerror(-total_size2));
1491         ret = 4;
1492         goto out;
1493     }
1494     total_size = MIN(total_size1, total_size2);
1495     progress_base = MAX(total_size1, total_size2);
1496 
1497     qemu_progress_print(0, 100);
1498 
1499     if (strict && total_size1 != total_size2) {
1500         ret = 1;
1501         qprintf(quiet, "Strict mode: Image size mismatch!\n");
1502         goto out;
1503     }
1504 
1505     while (offset < total_size) {
1506         int status1, status2;
1507 
1508         status1 = bdrv_block_status_above(bs1, NULL, offset,
1509                                           total_size1 - offset, &pnum1, NULL,
1510                                           NULL);
1511         if (status1 < 0) {
1512             ret = 3;
1513             error_report("Sector allocation test failed for %s", filename1);
1514             goto out;
1515         }
1516         allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
1517 
1518         status2 = bdrv_block_status_above(bs2, NULL, offset,
1519                                           total_size2 - offset, &pnum2, NULL,
1520                                           NULL);
1521         if (status2 < 0) {
1522             ret = 3;
1523             error_report("Sector allocation test failed for %s", filename2);
1524             goto out;
1525         }
1526         allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1527 
1528         assert(pnum1 && pnum2);
1529         chunk = MIN(pnum1, pnum2);
1530 
1531         if (strict) {
1532             if (status1 != status2) {
1533                 ret = 1;
1534                 qprintf(quiet, "Strict mode: Offset %" PRId64
1535                         " block status mismatch!\n", offset);
1536                 goto out;
1537             }
1538         }
1539         if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1540             /* nothing to do */
1541         } else if (allocated1 == allocated2) {
1542             if (allocated1) {
1543                 int64_t pnum;
1544 
1545                 chunk = MIN(chunk, IO_BUF_SIZE);
1546                 ret = blk_pread(blk1, offset, chunk, buf1, 0);
1547                 if (ret < 0) {
1548                     error_report("Error while reading offset %" PRId64
1549                                  " of %s: %s",
1550                                  offset, filename1, strerror(-ret));
1551                     ret = 4;
1552                     goto out;
1553                 }
1554                 ret = blk_pread(blk2, offset, chunk, buf2, 0);
1555                 if (ret < 0) {
1556                     error_report("Error while reading offset %" PRId64
1557                                  " of %s: %s",
1558                                  offset, filename2, strerror(-ret));
1559                     ret = 4;
1560                     goto out;
1561                 }
1562                 ret = compare_buffers(buf1, buf2, chunk, &pnum);
1563                 if (ret || pnum != chunk) {
1564                     qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1565                             offset + (ret ? 0 : pnum));
1566                     ret = 1;
1567                     goto out;
1568                 }
1569             }
1570         } else {
1571             chunk = MIN(chunk, IO_BUF_SIZE);
1572             if (allocated1) {
1573                 ret = check_empty_sectors(blk1, offset, chunk,
1574                                           filename1, buf1, quiet);
1575             } else {
1576                 ret = check_empty_sectors(blk2, offset, chunk,
1577                                           filename2, buf1, quiet);
1578             }
1579             if (ret) {
1580                 goto out;
1581             }
1582         }
1583         offset += chunk;
1584         qemu_progress_print(((float) chunk / progress_base) * 100, 100);
1585     }
1586 
1587     if (total_size1 != total_size2) {
1588         BlockBackend *blk_over;
1589         const char *filename_over;
1590 
1591         qprintf(quiet, "Warning: Image size mismatch!\n");
1592         if (total_size1 > total_size2) {
1593             blk_over = blk1;
1594             filename_over = filename1;
1595         } else {
1596             blk_over = blk2;
1597             filename_over = filename2;
1598         }
1599 
1600         while (offset < progress_base) {
1601             ret = bdrv_block_status_above(blk_bs(blk_over), NULL, offset,
1602                                           progress_base - offset, &chunk,
1603                                           NULL, NULL);
1604             if (ret < 0) {
1605                 ret = 3;
1606                 error_report("Sector allocation test failed for %s",
1607                              filename_over);
1608                 goto out;
1609 
1610             }
1611             if (ret & BDRV_BLOCK_ALLOCATED && !(ret & BDRV_BLOCK_ZERO)) {
1612                 chunk = MIN(chunk, IO_BUF_SIZE);
1613                 ret = check_empty_sectors(blk_over, offset, chunk,
1614                                           filename_over, buf1, quiet);
1615                 if (ret) {
1616                     goto out;
1617                 }
1618             }
1619             offset += chunk;
1620             qemu_progress_print(((float) chunk / progress_base) * 100, 100);
1621         }
1622     }
1623 
1624     qprintf(quiet, "Images are identical.\n");
1625     ret = 0;
1626 
1627 out:
1628     qemu_vfree(buf1);
1629     qemu_vfree(buf2);
1630     blk_unref(blk2);
1631 out2:
1632     blk_unref(blk1);
1633 out3:
1634     qemu_progress_end();
1635     return ret;
1636 }
1637 
1638 /* Convenience wrapper around qmp_block_dirty_bitmap_merge */
1639 static void do_dirty_bitmap_merge(const char *dst_node, const char *dst_name,
1640                                   const char *src_node, const char *src_name,
1641                                   Error **errp)
1642 {
1643     BlockDirtyBitmapOrStr *merge_src;
1644     BlockDirtyBitmapOrStrList *list = NULL;
1645 
1646     merge_src = g_new0(BlockDirtyBitmapOrStr, 1);
1647     merge_src->type = QTYPE_QDICT;
1648     merge_src->u.external.node = g_strdup(src_node);
1649     merge_src->u.external.name = g_strdup(src_name);
1650     QAPI_LIST_PREPEND(list, merge_src);
1651     qmp_block_dirty_bitmap_merge(dst_node, dst_name, list, errp);
1652     qapi_free_BlockDirtyBitmapOrStrList(list);
1653 }
1654 
1655 enum ImgConvertBlockStatus {
1656     BLK_DATA,
1657     BLK_ZERO,
1658     BLK_BACKING_FILE,
1659 };
1660 
1661 #define MAX_COROUTINES 16
1662 #define CONVERT_THROTTLE_GROUP "img_convert"
1663 
1664 typedef struct ImgConvertState {
1665     BlockBackend **src;
1666     int64_t *src_sectors;
1667     int *src_alignment;
1668     int src_num;
1669     int64_t total_sectors;
1670     int64_t allocated_sectors;
1671     int64_t allocated_done;
1672     int64_t sector_num;
1673     int64_t wr_offs;
1674     enum ImgConvertBlockStatus status;
1675     int64_t sector_next_status;
1676     BlockBackend *target;
1677     bool has_zero_init;
1678     bool compressed;
1679     bool target_is_new;
1680     bool target_has_backing;
1681     int64_t target_backing_sectors; /* negative if unknown */
1682     bool wr_in_order;
1683     bool copy_range;
1684     bool salvage;
1685     bool quiet;
1686     int min_sparse;
1687     int alignment;
1688     size_t cluster_sectors;
1689     size_t buf_sectors;
1690     long num_coroutines;
1691     int running_coroutines;
1692     Coroutine *co[MAX_COROUTINES];
1693     int64_t wait_sector_num[MAX_COROUTINES];
1694     CoMutex lock;
1695     int ret;
1696 } ImgConvertState;
1697 
1698 static void convert_select_part(ImgConvertState *s, int64_t sector_num,
1699                                 int *src_cur, int64_t *src_cur_offset)
1700 {
1701     *src_cur = 0;
1702     *src_cur_offset = 0;
1703     while (sector_num - *src_cur_offset >= s->src_sectors[*src_cur]) {
1704         *src_cur_offset += s->src_sectors[*src_cur];
1705         (*src_cur)++;
1706         assert(*src_cur < s->src_num);
1707     }
1708 }
1709 
1710 static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1711 {
1712     int64_t src_cur_offset;
1713     int ret, n, src_cur;
1714     bool post_backing_zero = false;
1715 
1716     convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1717 
1718     assert(s->total_sectors > sector_num);
1719     n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1720 
1721     if (s->target_backing_sectors >= 0) {
1722         if (sector_num >= s->target_backing_sectors) {
1723             post_backing_zero = true;
1724         } else if (sector_num + n > s->target_backing_sectors) {
1725             /* Split requests around target_backing_sectors (because
1726              * starting from there, zeros are handled differently) */
1727             n = s->target_backing_sectors - sector_num;
1728         }
1729     }
1730 
1731     if (s->sector_next_status <= sector_num) {
1732         uint64_t offset = (sector_num - src_cur_offset) * BDRV_SECTOR_SIZE;
1733         int64_t count;
1734         int tail;
1735         BlockDriverState *src_bs = blk_bs(s->src[src_cur]);
1736         BlockDriverState *base;
1737 
1738         if (s->target_has_backing) {
1739             base = bdrv_cow_bs(bdrv_skip_filters(src_bs));
1740         } else {
1741             base = NULL;
1742         }
1743 
1744         do {
1745             count = n * BDRV_SECTOR_SIZE;
1746 
1747             ret = bdrv_block_status_above(src_bs, base, offset, count, &count,
1748                                           NULL, NULL);
1749 
1750             if (ret < 0) {
1751                 if (s->salvage) {
1752                     if (n == 1) {
1753                         if (!s->quiet) {
1754                             warn_report("error while reading block status at "
1755                                         "offset %" PRIu64 ": %s", offset,
1756                                         strerror(-ret));
1757                         }
1758                         /* Just try to read the data, then */
1759                         ret = BDRV_BLOCK_DATA;
1760                         count = BDRV_SECTOR_SIZE;
1761                     } else {
1762                         /* Retry on a shorter range */
1763                         n = DIV_ROUND_UP(n, 4);
1764                     }
1765                 } else {
1766                     error_report("error while reading block status at offset "
1767                                  "%" PRIu64 ": %s", offset, strerror(-ret));
1768                     return ret;
1769                 }
1770             }
1771         } while (ret < 0);
1772 
1773         n = DIV_ROUND_UP(count, BDRV_SECTOR_SIZE);
1774 
1775         /*
1776          * Avoid that s->sector_next_status becomes unaligned to the source
1777          * request alignment and/or cluster size to avoid unnecessary read
1778          * cycles.
1779          */
1780         tail = (sector_num - src_cur_offset + n) % s->src_alignment[src_cur];
1781         if (n > tail) {
1782             n -= tail;
1783         }
1784 
1785         if (ret & BDRV_BLOCK_ZERO) {
1786             s->status = post_backing_zero ? BLK_BACKING_FILE : BLK_ZERO;
1787         } else if (ret & BDRV_BLOCK_DATA) {
1788             s->status = BLK_DATA;
1789         } else {
1790             s->status = s->target_has_backing ? BLK_BACKING_FILE : BLK_DATA;
1791         }
1792 
1793         s->sector_next_status = sector_num + n;
1794     }
1795 
1796     n = MIN(n, s->sector_next_status - sector_num);
1797     if (s->status == BLK_DATA) {
1798         n = MIN(n, s->buf_sectors);
1799     }
1800 
1801     /* We need to write complete clusters for compressed images, so if an
1802      * unallocated area is shorter than that, we must consider the whole
1803      * cluster allocated. */
1804     if (s->compressed) {
1805         if (n < s->cluster_sectors) {
1806             n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1807             s->status = BLK_DATA;
1808         } else {
1809             n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1810         }
1811     }
1812 
1813     return n;
1814 }
1815 
1816 static int coroutine_fn convert_co_read(ImgConvertState *s, int64_t sector_num,
1817                                         int nb_sectors, uint8_t *buf)
1818 {
1819     uint64_t single_read_until = 0;
1820     int n, ret;
1821 
1822     assert(nb_sectors <= s->buf_sectors);
1823     while (nb_sectors > 0) {
1824         BlockBackend *blk;
1825         int src_cur;
1826         int64_t bs_sectors, src_cur_offset;
1827         uint64_t offset;
1828 
1829         /* In the case of compression with multiple source files, we can get a
1830          * nb_sectors that spreads into the next part. So we must be able to
1831          * read across multiple BDSes for one convert_read() call. */
1832         convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1833         blk = s->src[src_cur];
1834         bs_sectors = s->src_sectors[src_cur];
1835 
1836         offset = (sector_num - src_cur_offset) << BDRV_SECTOR_BITS;
1837 
1838         n = MIN(nb_sectors, bs_sectors - (sector_num - src_cur_offset));
1839         if (single_read_until > offset) {
1840             n = 1;
1841         }
1842 
1843         ret = blk_co_pread(blk, offset, n << BDRV_SECTOR_BITS, buf, 0);
1844         if (ret < 0) {
1845             if (s->salvage) {
1846                 if (n > 1) {
1847                     single_read_until = offset + (n << BDRV_SECTOR_BITS);
1848                     continue;
1849                 } else {
1850                     if (!s->quiet) {
1851                         warn_report("error while reading offset %" PRIu64
1852                                     ": %s", offset, strerror(-ret));
1853                     }
1854                     memset(buf, 0, BDRV_SECTOR_SIZE);
1855                 }
1856             } else {
1857                 return ret;
1858             }
1859         }
1860 
1861         sector_num += n;
1862         nb_sectors -= n;
1863         buf += n * BDRV_SECTOR_SIZE;
1864     }
1865 
1866     return 0;
1867 }
1868 
1869 
1870 static int coroutine_fn convert_co_write(ImgConvertState *s, int64_t sector_num,
1871                                          int nb_sectors, uint8_t *buf,
1872                                          enum ImgConvertBlockStatus status)
1873 {
1874     int ret;
1875 
1876     while (nb_sectors > 0) {
1877         int n = nb_sectors;
1878         BdrvRequestFlags flags = s->compressed ? BDRV_REQ_WRITE_COMPRESSED : 0;
1879 
1880         switch (status) {
1881         case BLK_BACKING_FILE:
1882             /* If we have a backing file, leave clusters unallocated that are
1883              * unallocated in the source image, so that the backing file is
1884              * visible at the respective offset. */
1885             assert(s->target_has_backing);
1886             break;
1887 
1888         case BLK_DATA:
1889             /* If we're told to keep the target fully allocated (-S 0) or there
1890              * is real non-zero data, we must write it. Otherwise we can treat
1891              * it as zero sectors.
1892              * Compressed clusters need to be written as a whole, so in that
1893              * case we can only save the write if the buffer is completely
1894              * zeroed. */
1895             if (!s->min_sparse ||
1896                 (!s->compressed &&
1897                  is_allocated_sectors_min(buf, n, &n, s->min_sparse,
1898                                           sector_num, s->alignment)) ||
1899                 (s->compressed &&
1900                  !buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)))
1901             {
1902                 ret = blk_co_pwrite(s->target, sector_num << BDRV_SECTOR_BITS,
1903                                     n << BDRV_SECTOR_BITS, buf, flags);
1904                 if (ret < 0) {
1905                     return ret;
1906                 }
1907                 break;
1908             }
1909             /* fall-through */
1910 
1911         case BLK_ZERO:
1912             if (s->has_zero_init) {
1913                 assert(!s->target_has_backing);
1914                 break;
1915             }
1916             ret = blk_co_pwrite_zeroes(s->target,
1917                                        sector_num << BDRV_SECTOR_BITS,
1918                                        n << BDRV_SECTOR_BITS,
1919                                        BDRV_REQ_MAY_UNMAP);
1920             if (ret < 0) {
1921                 return ret;
1922             }
1923             break;
1924         }
1925 
1926         sector_num += n;
1927         nb_sectors -= n;
1928         buf += n * BDRV_SECTOR_SIZE;
1929     }
1930 
1931     return 0;
1932 }
1933 
1934 static int coroutine_fn convert_co_copy_range(ImgConvertState *s, int64_t sector_num,
1935                                               int nb_sectors)
1936 {
1937     int n, ret;
1938 
1939     while (nb_sectors > 0) {
1940         BlockBackend *blk;
1941         int src_cur;
1942         int64_t bs_sectors, src_cur_offset;
1943         int64_t offset;
1944 
1945         convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1946         offset = (sector_num - src_cur_offset) << BDRV_SECTOR_BITS;
1947         blk = s->src[src_cur];
1948         bs_sectors = s->src_sectors[src_cur];
1949 
1950         n = MIN(nb_sectors, bs_sectors - (sector_num - src_cur_offset));
1951 
1952         ret = blk_co_copy_range(blk, offset, s->target,
1953                                 sector_num << BDRV_SECTOR_BITS,
1954                                 n << BDRV_SECTOR_BITS, 0, 0);
1955         if (ret < 0) {
1956             return ret;
1957         }
1958 
1959         sector_num += n;
1960         nb_sectors -= n;
1961     }
1962     return 0;
1963 }
1964 
1965 static void coroutine_fn convert_co_do_copy(void *opaque)
1966 {
1967     ImgConvertState *s = opaque;
1968     uint8_t *buf = NULL;
1969     int ret, i;
1970     int index = -1;
1971 
1972     for (i = 0; i < s->num_coroutines; i++) {
1973         if (s->co[i] == qemu_coroutine_self()) {
1974             index = i;
1975             break;
1976         }
1977     }
1978     assert(index >= 0);
1979 
1980     s->running_coroutines++;
1981     buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1982 
1983     while (1) {
1984         int n;
1985         int64_t sector_num;
1986         enum ImgConvertBlockStatus status;
1987         bool copy_range;
1988 
1989         qemu_co_mutex_lock(&s->lock);
1990         if (s->ret != -EINPROGRESS || s->sector_num >= s->total_sectors) {
1991             qemu_co_mutex_unlock(&s->lock);
1992             break;
1993         }
1994         n = convert_iteration_sectors(s, s->sector_num);
1995         if (n < 0) {
1996             qemu_co_mutex_unlock(&s->lock);
1997             s->ret = n;
1998             break;
1999         }
2000         /* save current sector and allocation status to local variables */
2001         sector_num = s->sector_num;
2002         status = s->status;
2003         if (!s->min_sparse && s->status == BLK_ZERO) {
2004             n = MIN(n, s->buf_sectors);
2005         }
2006         /* increment global sector counter so that other coroutines can
2007          * already continue reading beyond this request */
2008         s->sector_num += n;
2009         qemu_co_mutex_unlock(&s->lock);
2010 
2011         if (status == BLK_DATA || (!s->min_sparse && status == BLK_ZERO)) {
2012             s->allocated_done += n;
2013             qemu_progress_print(100.0 * s->allocated_done /
2014                                         s->allocated_sectors, 0);
2015         }
2016 
2017 retry:
2018         copy_range = s->copy_range && s->status == BLK_DATA;
2019         if (status == BLK_DATA && !copy_range) {
2020             ret = convert_co_read(s, sector_num, n, buf);
2021             if (ret < 0) {
2022                 error_report("error while reading at byte %lld: %s",
2023                              sector_num * BDRV_SECTOR_SIZE, strerror(-ret));
2024                 s->ret = ret;
2025             }
2026         } else if (!s->min_sparse && status == BLK_ZERO) {
2027             status = BLK_DATA;
2028             memset(buf, 0x00, n * BDRV_SECTOR_SIZE);
2029         }
2030 
2031         if (s->wr_in_order) {
2032             /* keep writes in order */
2033             while (s->wr_offs != sector_num && s->ret == -EINPROGRESS) {
2034                 s->wait_sector_num[index] = sector_num;
2035                 qemu_coroutine_yield();
2036             }
2037             s->wait_sector_num[index] = -1;
2038         }
2039 
2040         if (s->ret == -EINPROGRESS) {
2041             if (copy_range) {
2042                 ret = convert_co_copy_range(s, sector_num, n);
2043                 if (ret) {
2044                     s->copy_range = false;
2045                     goto retry;
2046                 }
2047             } else {
2048                 ret = convert_co_write(s, sector_num, n, buf, status);
2049             }
2050             if (ret < 0) {
2051                 error_report("error while writing at byte %lld: %s",
2052                              sector_num * BDRV_SECTOR_SIZE, strerror(-ret));
2053                 s->ret = ret;
2054             }
2055         }
2056 
2057         if (s->wr_in_order) {
2058             /* reenter the coroutine that might have waited
2059              * for this write to complete */
2060             s->wr_offs = sector_num + n;
2061             for (i = 0; i < s->num_coroutines; i++) {
2062                 if (s->co[i] && s->wait_sector_num[i] == s->wr_offs) {
2063                     /*
2064                      * A -> B -> A cannot occur because A has
2065                      * s->wait_sector_num[i] == -1 during A -> B.  Therefore
2066                      * B will never enter A during this time window.
2067                      */
2068                     qemu_coroutine_enter(s->co[i]);
2069                     break;
2070                 }
2071             }
2072         }
2073     }
2074 
2075     qemu_vfree(buf);
2076     s->co[index] = NULL;
2077     s->running_coroutines--;
2078     if (!s->running_coroutines && s->ret == -EINPROGRESS) {
2079         /* the convert job finished successfully */
2080         s->ret = 0;
2081     }
2082 }
2083 
2084 static int convert_do_copy(ImgConvertState *s)
2085 {
2086     int ret, i, n;
2087     int64_t sector_num = 0;
2088 
2089     /* Check whether we have zero initialisation or can get it efficiently */
2090     if (!s->has_zero_init && s->target_is_new && s->min_sparse &&
2091         !s->target_has_backing) {
2092         s->has_zero_init = bdrv_has_zero_init(blk_bs(s->target));
2093     }
2094 
2095     /* Allocate buffer for copied data. For compressed images, only one cluster
2096      * can be copied at a time. */
2097     if (s->compressed) {
2098         if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
2099             error_report("invalid cluster size");
2100             return -EINVAL;
2101         }
2102         s->buf_sectors = s->cluster_sectors;
2103     }
2104 
2105     while (sector_num < s->total_sectors) {
2106         n = convert_iteration_sectors(s, sector_num);
2107         if (n < 0) {
2108             return n;
2109         }
2110         if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
2111         {
2112             s->allocated_sectors += n;
2113         }
2114         sector_num += n;
2115     }
2116 
2117     /* Do the copy */
2118     s->sector_next_status = 0;
2119     s->ret = -EINPROGRESS;
2120 
2121     qemu_co_mutex_init(&s->lock);
2122     for (i = 0; i < s->num_coroutines; i++) {
2123         s->co[i] = qemu_coroutine_create(convert_co_do_copy, s);
2124         s->wait_sector_num[i] = -1;
2125         qemu_coroutine_enter(s->co[i]);
2126     }
2127 
2128     while (s->running_coroutines) {
2129         main_loop_wait(false);
2130     }
2131 
2132     if (s->compressed && !s->ret) {
2133         /* signal EOF to align */
2134         ret = blk_pwrite_compressed(s->target, 0, 0, NULL);
2135         if (ret < 0) {
2136             return ret;
2137         }
2138     }
2139 
2140     return s->ret;
2141 }
2142 
2143 /* Check that bitmaps can be copied, or output an error */
2144 static int convert_check_bitmaps(BlockDriverState *src, bool skip_broken)
2145 {
2146     BdrvDirtyBitmap *bm;
2147 
2148     if (!bdrv_supports_persistent_dirty_bitmap(src)) {
2149         error_report("Source lacks bitmap support");
2150         return -1;
2151     }
2152     FOR_EACH_DIRTY_BITMAP(src, bm) {
2153         if (!bdrv_dirty_bitmap_get_persistence(bm)) {
2154             continue;
2155         }
2156         if (!skip_broken && bdrv_dirty_bitmap_inconsistent(bm)) {
2157             error_report("Cannot copy inconsistent bitmap '%s'",
2158                          bdrv_dirty_bitmap_name(bm));
2159             error_printf("Try --skip-broken-bitmaps, or "
2160                          "use 'qemu-img bitmap --remove' to delete it\n");
2161             return -1;
2162         }
2163     }
2164     return 0;
2165 }
2166 
2167 static int convert_copy_bitmaps(BlockDriverState *src, BlockDriverState *dst,
2168                                 bool skip_broken)
2169 {
2170     BdrvDirtyBitmap *bm;
2171     Error *err = NULL;
2172 
2173     FOR_EACH_DIRTY_BITMAP(src, bm) {
2174         const char *name;
2175 
2176         if (!bdrv_dirty_bitmap_get_persistence(bm)) {
2177             continue;
2178         }
2179         name = bdrv_dirty_bitmap_name(bm);
2180         if (skip_broken && bdrv_dirty_bitmap_inconsistent(bm)) {
2181             warn_report("Skipping inconsistent bitmap '%s'", name);
2182             continue;
2183         }
2184         qmp_block_dirty_bitmap_add(dst->node_name, name,
2185                                    true, bdrv_dirty_bitmap_granularity(bm),
2186                                    true, true,
2187                                    true, !bdrv_dirty_bitmap_enabled(bm),
2188                                    &err);
2189         if (err) {
2190             error_reportf_err(err, "Failed to create bitmap %s: ", name);
2191             return -1;
2192         }
2193 
2194         do_dirty_bitmap_merge(dst->node_name, name, src->node_name, name,
2195                               &err);
2196         if (err) {
2197             error_reportf_err(err, "Failed to populate bitmap %s: ", name);
2198             qmp_block_dirty_bitmap_remove(dst->node_name, name, NULL);
2199             return -1;
2200         }
2201     }
2202 
2203     return 0;
2204 }
2205 
2206 #define MAX_BUF_SECTORS 32768
2207 
2208 static void set_rate_limit(BlockBackend *blk, int64_t rate_limit)
2209 {
2210     ThrottleConfig cfg;
2211 
2212     throttle_config_init(&cfg);
2213     cfg.buckets[THROTTLE_BPS_WRITE].avg = rate_limit;
2214 
2215     blk_io_limits_enable(blk, CONVERT_THROTTLE_GROUP);
2216     blk_set_io_limits(blk, &cfg);
2217 }
2218 
2219 static int img_convert(int argc, char **argv)
2220 {
2221     int c, bs_i, flags, src_flags = BDRV_O_NO_SHARE;
2222     const char *fmt = NULL, *out_fmt = NULL, *cache = "unsafe",
2223                *src_cache = BDRV_DEFAULT_CACHE, *out_baseimg = NULL,
2224                *out_filename, *out_baseimg_param, *snapshot_name = NULL,
2225                *backing_fmt = NULL;
2226     BlockDriver *drv = NULL, *proto_drv = NULL;
2227     BlockDriverInfo bdi;
2228     BlockDriverState *out_bs;
2229     QemuOpts *opts = NULL, *sn_opts = NULL;
2230     QemuOptsList *create_opts = NULL;
2231     QDict *open_opts = NULL;
2232     char *options = NULL;
2233     Error *local_err = NULL;
2234     bool writethrough, src_writethrough, image_opts = false,
2235          skip_create = false, progress = false, tgt_image_opts = false;
2236     int64_t ret = -EINVAL;
2237     bool force_share = false;
2238     bool explict_min_sparse = false;
2239     bool bitmaps = false;
2240     bool skip_broken = false;
2241     int64_t rate_limit = 0;
2242 
2243     ImgConvertState s = (ImgConvertState) {
2244         /* Need at least 4k of zeros for sparse detection */
2245         .min_sparse         = 8,
2246         .copy_range         = false,
2247         .buf_sectors        = IO_BUF_SIZE / BDRV_SECTOR_SIZE,
2248         .wr_in_order        = true,
2249         .num_coroutines     = 8,
2250     };
2251 
2252     for(;;) {
2253         static const struct option long_options[] = {
2254             {"help", no_argument, 0, 'h'},
2255             {"object", required_argument, 0, OPTION_OBJECT},
2256             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
2257             {"force-share", no_argument, 0, 'U'},
2258             {"target-image-opts", no_argument, 0, OPTION_TARGET_IMAGE_OPTS},
2259             {"salvage", no_argument, 0, OPTION_SALVAGE},
2260             {"target-is-zero", no_argument, 0, OPTION_TARGET_IS_ZERO},
2261             {"bitmaps", no_argument, 0, OPTION_BITMAPS},
2262             {"skip-broken-bitmaps", no_argument, 0, OPTION_SKIP_BROKEN},
2263             {0, 0, 0, 0}
2264         };
2265         c = getopt_long(argc, argv, ":hf:O:B:CcF:o:l:S:pt:T:qnm:WUr:",
2266                         long_options, NULL);
2267         if (c == -1) {
2268             break;
2269         }
2270         switch(c) {
2271         case ':':
2272             missing_argument(argv[optind - 1]);
2273             break;
2274         case '?':
2275             unrecognized_option(argv[optind - 1]);
2276             break;
2277         case 'h':
2278             help();
2279             break;
2280         case 'f':
2281             fmt = optarg;
2282             break;
2283         case 'O':
2284             out_fmt = optarg;
2285             break;
2286         case 'B':
2287             out_baseimg = optarg;
2288             break;
2289         case 'C':
2290             s.copy_range = true;
2291             break;
2292         case 'c':
2293             s.compressed = true;
2294             break;
2295         case 'F':
2296             backing_fmt = optarg;
2297             break;
2298         case 'o':
2299             if (accumulate_options(&options, optarg) < 0) {
2300                 goto fail_getopt;
2301             }
2302             break;
2303         case 'l':
2304             if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
2305                 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
2306                                                   optarg, false);
2307                 if (!sn_opts) {
2308                     error_report("Failed in parsing snapshot param '%s'",
2309                                  optarg);
2310                     goto fail_getopt;
2311                 }
2312             } else {
2313                 snapshot_name = optarg;
2314             }
2315             break;
2316         case 'S':
2317         {
2318             int64_t sval;
2319 
2320             sval = cvtnum("buffer size for sparse output", optarg);
2321             if (sval < 0) {
2322                 goto fail_getopt;
2323             } else if (!QEMU_IS_ALIGNED(sval, BDRV_SECTOR_SIZE) ||
2324                 sval / BDRV_SECTOR_SIZE > MAX_BUF_SECTORS) {
2325                 error_report("Invalid buffer size for sparse output specified. "
2326                     "Valid sizes are multiples of %llu up to %llu. Select "
2327                     "0 to disable sparse detection (fully allocates output).",
2328                     BDRV_SECTOR_SIZE, MAX_BUF_SECTORS * BDRV_SECTOR_SIZE);
2329                 goto fail_getopt;
2330             }
2331 
2332             s.min_sparse = sval / BDRV_SECTOR_SIZE;
2333             explict_min_sparse = true;
2334             break;
2335         }
2336         case 'p':
2337             progress = true;
2338             break;
2339         case 't':
2340             cache = optarg;
2341             break;
2342         case 'T':
2343             src_cache = optarg;
2344             break;
2345         case 'q':
2346             s.quiet = true;
2347             break;
2348         case 'n':
2349             skip_create = true;
2350             break;
2351         case 'm':
2352             if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) ||
2353                 s.num_coroutines < 1 || s.num_coroutines > MAX_COROUTINES) {
2354                 error_report("Invalid number of coroutines. Allowed number of"
2355                              " coroutines is between 1 and %d", MAX_COROUTINES);
2356                 goto fail_getopt;
2357             }
2358             break;
2359         case 'W':
2360             s.wr_in_order = false;
2361             break;
2362         case 'U':
2363             force_share = true;
2364             break;
2365         case 'r':
2366             rate_limit = cvtnum("rate limit", optarg);
2367             if (rate_limit < 0) {
2368                 goto fail_getopt;
2369             }
2370             break;
2371         case OPTION_OBJECT:
2372             user_creatable_process_cmdline(optarg);
2373             break;
2374         case OPTION_IMAGE_OPTS:
2375             image_opts = true;
2376             break;
2377         case OPTION_SALVAGE:
2378             s.salvage = true;
2379             break;
2380         case OPTION_TARGET_IMAGE_OPTS:
2381             tgt_image_opts = true;
2382             break;
2383         case OPTION_TARGET_IS_ZERO:
2384             /*
2385              * The user asserting that the target is blank has the
2386              * same effect as the target driver supporting zero
2387              * initialisation.
2388              */
2389             s.has_zero_init = true;
2390             break;
2391         case OPTION_BITMAPS:
2392             bitmaps = true;
2393             break;
2394         case OPTION_SKIP_BROKEN:
2395             skip_broken = true;
2396             break;
2397         }
2398     }
2399 
2400     if (!out_fmt && !tgt_image_opts) {
2401         out_fmt = "raw";
2402     }
2403 
2404     if (skip_broken && !bitmaps) {
2405         error_report("Use of --skip-broken-bitmaps requires --bitmaps");
2406         goto fail_getopt;
2407     }
2408 
2409     if (s.compressed && s.copy_range) {
2410         error_report("Cannot enable copy offloading when -c is used");
2411         goto fail_getopt;
2412     }
2413 
2414     if (explict_min_sparse && s.copy_range) {
2415         error_report("Cannot enable copy offloading when -S is used");
2416         goto fail_getopt;
2417     }
2418 
2419     if (s.copy_range && s.salvage) {
2420         error_report("Cannot use copy offloading in salvaging mode");
2421         goto fail_getopt;
2422     }
2423 
2424     if (tgt_image_opts && !skip_create) {
2425         error_report("--target-image-opts requires use of -n flag");
2426         goto fail_getopt;
2427     }
2428 
2429     if (skip_create && options) {
2430         error_report("-o has no effect when skipping image creation");
2431         goto fail_getopt;
2432     }
2433 
2434     if (s.has_zero_init && !skip_create) {
2435         error_report("--target-is-zero requires use of -n flag");
2436         goto fail_getopt;
2437     }
2438 
2439     s.src_num = argc - optind - 1;
2440     out_filename = s.src_num >= 1 ? argv[argc - 1] : NULL;
2441 
2442     if (options && has_help_option(options)) {
2443         if (out_fmt) {
2444             ret = print_block_option_help(out_filename, out_fmt);
2445             goto fail_getopt;
2446         } else {
2447             error_report("Option help requires a format be specified");
2448             goto fail_getopt;
2449         }
2450     }
2451 
2452     if (s.src_num < 1) {
2453         error_report("Must specify image file name");
2454         goto fail_getopt;
2455     }
2456 
2457     /* ret is still -EINVAL until here */
2458     ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
2459     if (ret < 0) {
2460         error_report("Invalid source cache option: %s", src_cache);
2461         goto fail_getopt;
2462     }
2463 
2464     /* Initialize before goto out */
2465     if (s.quiet) {
2466         progress = false;
2467     }
2468     qemu_progress_init(progress, 1.0);
2469     qemu_progress_print(0, 100);
2470 
2471     s.src = g_new0(BlockBackend *, s.src_num);
2472     s.src_sectors = g_new(int64_t, s.src_num);
2473     s.src_alignment = g_new(int, s.src_num);
2474 
2475     for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2476         BlockDriverState *src_bs;
2477         s.src[bs_i] = img_open(image_opts, argv[optind + bs_i],
2478                                fmt, src_flags, src_writethrough, s.quiet,
2479                                force_share);
2480         if (!s.src[bs_i]) {
2481             ret = -1;
2482             goto out;
2483         }
2484         s.src_sectors[bs_i] = blk_nb_sectors(s.src[bs_i]);
2485         if (s.src_sectors[bs_i] < 0) {
2486             error_report("Could not get size of %s: %s",
2487                          argv[optind + bs_i], strerror(-s.src_sectors[bs_i]));
2488             ret = -1;
2489             goto out;
2490         }
2491         src_bs = blk_bs(s.src[bs_i]);
2492         s.src_alignment[bs_i] = DIV_ROUND_UP(src_bs->bl.request_alignment,
2493                                              BDRV_SECTOR_SIZE);
2494         if (!bdrv_get_info(src_bs, &bdi)) {
2495             s.src_alignment[bs_i] = MAX(s.src_alignment[bs_i],
2496                                         bdi.cluster_size / BDRV_SECTOR_SIZE);
2497         }
2498         s.total_sectors += s.src_sectors[bs_i];
2499     }
2500 
2501     if (sn_opts) {
2502         bdrv_snapshot_load_tmp(blk_bs(s.src[0]),
2503                                qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
2504                                qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
2505                                &local_err);
2506     } else if (snapshot_name != NULL) {
2507         if (s.src_num > 1) {
2508             error_report("No support for concatenating multiple snapshot");
2509             ret = -1;
2510             goto out;
2511         }
2512 
2513         bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s.src[0]), snapshot_name,
2514                                              &local_err);
2515     }
2516     if (local_err) {
2517         error_reportf_err(local_err, "Failed to load snapshot: ");
2518         ret = -1;
2519         goto out;
2520     }
2521 
2522     if (!skip_create) {
2523         /* Find driver and parse its options */
2524         drv = bdrv_find_format(out_fmt);
2525         if (!drv) {
2526             error_report("Unknown file format '%s'", out_fmt);
2527             ret = -1;
2528             goto out;
2529         }
2530 
2531         proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
2532         if (!proto_drv) {
2533             error_report_err(local_err);
2534             ret = -1;
2535             goto out;
2536         }
2537 
2538         if (!drv->create_opts) {
2539             error_report("Format driver '%s' does not support image creation",
2540                          drv->format_name);
2541             ret = -1;
2542             goto out;
2543         }
2544 
2545         if (!proto_drv->create_opts) {
2546             error_report("Protocol driver '%s' does not support image creation",
2547                          proto_drv->format_name);
2548             ret = -1;
2549             goto out;
2550         }
2551 
2552         create_opts = qemu_opts_append(create_opts, drv->create_opts);
2553         create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
2554 
2555         opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
2556         if (options) {
2557             if (!qemu_opts_do_parse(opts, options, NULL, &local_err)) {
2558                 error_report_err(local_err);
2559                 ret = -1;
2560                 goto out;
2561             }
2562         }
2563 
2564         qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
2565                             s.total_sectors * BDRV_SECTOR_SIZE, &error_abort);
2566         ret = add_old_style_options(out_fmt, opts, out_baseimg, backing_fmt);
2567         if (ret < 0) {
2568             goto out;
2569         }
2570     }
2571 
2572     /* Get backing file name if -o backing_file was used */
2573     out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
2574     if (out_baseimg_param) {
2575         out_baseimg = out_baseimg_param;
2576     }
2577     s.target_has_backing = (bool) out_baseimg;
2578 
2579     if (s.has_zero_init && s.target_has_backing) {
2580         error_report("Cannot use --target-is-zero when the destination "
2581                      "image has a backing file");
2582         goto out;
2583     }
2584 
2585     if (s.src_num > 1 && out_baseimg) {
2586         error_report("Having a backing file for the target makes no sense when "
2587                      "concatenating multiple input images");
2588         ret = -1;
2589         goto out;
2590     }
2591 
2592     if (out_baseimg_param) {
2593         if (!qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT)) {
2594             error_report("Use of backing file requires explicit "
2595                          "backing format");
2596             ret = -1;
2597             goto out;
2598         }
2599     }
2600 
2601     /* Check if compression is supported */
2602     if (s.compressed) {
2603         bool encryption =
2604             qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2605         const char *encryptfmt =
2606             qemu_opt_get(opts, BLOCK_OPT_ENCRYPT_FORMAT);
2607         const char *preallocation =
2608             qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
2609 
2610         if (drv && !block_driver_can_compress(drv)) {
2611             error_report("Compression not supported for this file format");
2612             ret = -1;
2613             goto out;
2614         }
2615 
2616         if (encryption || encryptfmt) {
2617             error_report("Compression and encryption not supported at "
2618                          "the same time");
2619             ret = -1;
2620             goto out;
2621         }
2622 
2623         if (preallocation
2624             && strcmp(preallocation, "off"))
2625         {
2626             error_report("Compression and preallocation not supported at "
2627                          "the same time");
2628             ret = -1;
2629             goto out;
2630         }
2631     }
2632 
2633     /* Determine if bitmaps need copying */
2634     if (bitmaps) {
2635         if (s.src_num > 1) {
2636             error_report("Copying bitmaps only possible with single source");
2637             ret = -1;
2638             goto out;
2639         }
2640         ret = convert_check_bitmaps(blk_bs(s.src[0]), skip_broken);
2641         if (ret < 0) {
2642             goto out;
2643         }
2644     }
2645 
2646     /*
2647      * The later open call will need any decryption secrets, and
2648      * bdrv_create() will purge "opts", so extract them now before
2649      * they are lost.
2650      */
2651     if (!skip_create) {
2652         open_opts = qdict_new();
2653         qemu_opt_foreach(opts, img_add_key_secrets, open_opts, &error_abort);
2654 
2655         /* Create the new image */
2656         ret = bdrv_create(drv, out_filename, opts, &local_err);
2657         if (ret < 0) {
2658             error_reportf_err(local_err, "%s: error while converting %s: ",
2659                               out_filename, out_fmt);
2660             goto out;
2661         }
2662     }
2663 
2664     s.target_is_new = !skip_create;
2665 
2666     flags = s.min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
2667     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
2668     if (ret < 0) {
2669         error_report("Invalid cache option: %s", cache);
2670         goto out;
2671     }
2672 
2673     if (flags & BDRV_O_NOCACHE) {
2674         /*
2675          * If we open the target with O_DIRECT, it may be necessary to
2676          * extend its size to align to the physical sector size.
2677          */
2678         flags |= BDRV_O_RESIZE;
2679     }
2680 
2681     if (skip_create) {
2682         s.target = img_open(tgt_image_opts, out_filename, out_fmt,
2683                             flags, writethrough, s.quiet, false);
2684     } else {
2685         /* TODO ultimately we should allow --target-image-opts
2686          * to be used even when -n is not given.
2687          * That has to wait for bdrv_create to be improved
2688          * to allow filenames in option syntax
2689          */
2690         s.target = img_open_file(out_filename, open_opts, out_fmt,
2691                                  flags, writethrough, s.quiet, false);
2692         open_opts = NULL; /* blk_new_open will have freed it */
2693     }
2694     if (!s.target) {
2695         ret = -1;
2696         goto out;
2697     }
2698     out_bs = blk_bs(s.target);
2699 
2700     if (bitmaps && !bdrv_supports_persistent_dirty_bitmap(out_bs)) {
2701         error_report("Format driver '%s' does not support bitmaps",
2702                      out_bs->drv->format_name);
2703         ret = -1;
2704         goto out;
2705     }
2706 
2707     if (s.compressed && !block_driver_can_compress(out_bs->drv)) {
2708         error_report("Compression not supported for this file format");
2709         ret = -1;
2710         goto out;
2711     }
2712 
2713     /* increase bufsectors from the default 4096 (2M) if opt_transfer
2714      * or discard_alignment of the out_bs is greater. Limit to
2715      * MAX_BUF_SECTORS as maximum which is currently 32768 (16MB). */
2716     s.buf_sectors = MIN(MAX_BUF_SECTORS,
2717                         MAX(s.buf_sectors,
2718                             MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
2719                                 out_bs->bl.pdiscard_alignment >>
2720                                 BDRV_SECTOR_BITS)));
2721 
2722     /* try to align the write requests to the destination to avoid unnecessary
2723      * RMW cycles. */
2724     s.alignment = MAX(pow2floor(s.min_sparse),
2725                       DIV_ROUND_UP(out_bs->bl.request_alignment,
2726                                    BDRV_SECTOR_SIZE));
2727     assert(is_power_of_2(s.alignment));
2728 
2729     if (skip_create) {
2730         int64_t output_sectors = blk_nb_sectors(s.target);
2731         if (output_sectors < 0) {
2732             error_report("unable to get output image length: %s",
2733                          strerror(-output_sectors));
2734             ret = -1;
2735             goto out;
2736         } else if (output_sectors < s.total_sectors) {
2737             error_report("output file is smaller than input file");
2738             ret = -1;
2739             goto out;
2740         }
2741     }
2742 
2743     if (s.target_has_backing && s.target_is_new) {
2744         /* Errors are treated as "backing length unknown" (which means
2745          * s.target_backing_sectors has to be negative, which it will
2746          * be automatically).  The backing file length is used only
2747          * for optimizations, so such a case is not fatal. */
2748         s.target_backing_sectors =
2749             bdrv_nb_sectors(bdrv_backing_chain_next(out_bs));
2750     } else {
2751         s.target_backing_sectors = -1;
2752     }
2753 
2754     ret = bdrv_get_info(out_bs, &bdi);
2755     if (ret < 0) {
2756         if (s.compressed) {
2757             error_report("could not get block driver info");
2758             goto out;
2759         }
2760     } else {
2761         s.compressed = s.compressed || bdi.needs_compressed_writes;
2762         s.cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2763     }
2764 
2765     if (rate_limit) {
2766         set_rate_limit(s.target, rate_limit);
2767     }
2768 
2769     ret = convert_do_copy(&s);
2770 
2771     /* Now copy the bitmaps */
2772     if (bitmaps && ret == 0) {
2773         ret = convert_copy_bitmaps(blk_bs(s.src[0]), out_bs, skip_broken);
2774     }
2775 
2776 out:
2777     if (!ret) {
2778         qemu_progress_print(100, 0);
2779     }
2780     qemu_progress_end();
2781     qemu_opts_del(opts);
2782     qemu_opts_free(create_opts);
2783     qobject_unref(open_opts);
2784     blk_unref(s.target);
2785     if (s.src) {
2786         for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2787             blk_unref(s.src[bs_i]);
2788         }
2789         g_free(s.src);
2790     }
2791     g_free(s.src_sectors);
2792     g_free(s.src_alignment);
2793 fail_getopt:
2794     qemu_opts_del(sn_opts);
2795     g_free(options);
2796 
2797     return !!ret;
2798 }
2799 
2800 
2801 static void dump_snapshots(BlockDriverState *bs)
2802 {
2803     QEMUSnapshotInfo *sn_tab, *sn;
2804     int nb_sns, i;
2805 
2806     nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2807     if (nb_sns <= 0)
2808         return;
2809     printf("Snapshot list:\n");
2810     bdrv_snapshot_dump(NULL);
2811     printf("\n");
2812     for(i = 0; i < nb_sns; i++) {
2813         sn = &sn_tab[i];
2814         bdrv_snapshot_dump(sn);
2815         printf("\n");
2816     }
2817     g_free(sn_tab);
2818 }
2819 
2820 static void dump_json_image_info_list(ImageInfoList *list)
2821 {
2822     GString *str;
2823     QObject *obj;
2824     Visitor *v = qobject_output_visitor_new(&obj);
2825 
2826     visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2827     visit_complete(v, &obj);
2828     str = qobject_to_json_pretty(obj, true);
2829     assert(str != NULL);
2830     printf("%s\n", str->str);
2831     qobject_unref(obj);
2832     visit_free(v);
2833     g_string_free(str, true);
2834 }
2835 
2836 static void dump_json_image_info(ImageInfo *info)
2837 {
2838     GString *str;
2839     QObject *obj;
2840     Visitor *v = qobject_output_visitor_new(&obj);
2841 
2842     visit_type_ImageInfo(v, NULL, &info, &error_abort);
2843     visit_complete(v, &obj);
2844     str = qobject_to_json_pretty(obj, true);
2845     assert(str != NULL);
2846     printf("%s\n", str->str);
2847     qobject_unref(obj);
2848     visit_free(v);
2849     g_string_free(str, true);
2850 }
2851 
2852 static void dump_human_image_info_list(ImageInfoList *list)
2853 {
2854     ImageInfoList *elem;
2855     bool delim = false;
2856 
2857     for (elem = list; elem; elem = elem->next) {
2858         if (delim) {
2859             printf("\n");
2860         }
2861         delim = true;
2862 
2863         bdrv_image_info_dump(elem->value);
2864     }
2865 }
2866 
2867 static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2868 {
2869     return strcmp(a, b) == 0;
2870 }
2871 
2872 /**
2873  * Open an image file chain and return an ImageInfoList
2874  *
2875  * @filename: topmost image filename
2876  * @fmt: topmost image format (may be NULL to autodetect)
2877  * @chain: true  - enumerate entire backing file chain
2878  *         false - only topmost image file
2879  *
2880  * Returns a list of ImageInfo objects or NULL if there was an error opening an
2881  * image file.  If there was an error a message will have been printed to
2882  * stderr.
2883  */
2884 static ImageInfoList *collect_image_info_list(bool image_opts,
2885                                               const char *filename,
2886                                               const char *fmt,
2887                                               bool chain, bool force_share)
2888 {
2889     ImageInfoList *head = NULL;
2890     ImageInfoList **tail = &head;
2891     GHashTable *filenames;
2892     Error *err = NULL;
2893 
2894     filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2895 
2896     while (filename) {
2897         BlockBackend *blk;
2898         BlockDriverState *bs;
2899         ImageInfo *info;
2900 
2901         if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2902             error_report("Backing file '%s' creates an infinite loop.",
2903                          filename);
2904             goto err;
2905         }
2906         g_hash_table_insert(filenames, (gpointer)filename, NULL);
2907 
2908         blk = img_open(image_opts, filename, fmt,
2909                        BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false,
2910                        force_share);
2911         if (!blk) {
2912             goto err;
2913         }
2914         bs = blk_bs(blk);
2915 
2916         bdrv_query_image_info(bs, &info, &err);
2917         if (err) {
2918             error_report_err(err);
2919             blk_unref(blk);
2920             goto err;
2921         }
2922 
2923         QAPI_LIST_APPEND(tail, info);
2924 
2925         blk_unref(blk);
2926 
2927         /* Clear parameters that only apply to the topmost image */
2928         filename = fmt = NULL;
2929         image_opts = false;
2930 
2931         if (chain) {
2932             if (info->full_backing_filename) {
2933                 filename = info->full_backing_filename;
2934             } else if (info->backing_filename) {
2935                 error_report("Could not determine absolute backing filename,"
2936                              " but backing filename '%s' present",
2937                              info->backing_filename);
2938                 goto err;
2939             }
2940             if (info->backing_filename_format) {
2941                 fmt = info->backing_filename_format;
2942             }
2943         }
2944     }
2945     g_hash_table_destroy(filenames);
2946     return head;
2947 
2948 err:
2949     qapi_free_ImageInfoList(head);
2950     g_hash_table_destroy(filenames);
2951     return NULL;
2952 }
2953 
2954 static int img_info(int argc, char **argv)
2955 {
2956     int c;
2957     OutputFormat output_format = OFORMAT_HUMAN;
2958     bool chain = false;
2959     const char *filename, *fmt, *output;
2960     ImageInfoList *list;
2961     bool image_opts = false;
2962     bool force_share = false;
2963 
2964     fmt = NULL;
2965     output = NULL;
2966     for(;;) {
2967         int option_index = 0;
2968         static const struct option long_options[] = {
2969             {"help", no_argument, 0, 'h'},
2970             {"format", required_argument, 0, 'f'},
2971             {"output", required_argument, 0, OPTION_OUTPUT},
2972             {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
2973             {"object", required_argument, 0, OPTION_OBJECT},
2974             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
2975             {"force-share", no_argument, 0, 'U'},
2976             {0, 0, 0, 0}
2977         };
2978         c = getopt_long(argc, argv, ":f:hU",
2979                         long_options, &option_index);
2980         if (c == -1) {
2981             break;
2982         }
2983         switch(c) {
2984         case ':':
2985             missing_argument(argv[optind - 1]);
2986             break;
2987         case '?':
2988             unrecognized_option(argv[optind - 1]);
2989             break;
2990         case 'h':
2991             help();
2992             break;
2993         case 'f':
2994             fmt = optarg;
2995             break;
2996         case 'U':
2997             force_share = true;
2998             break;
2999         case OPTION_OUTPUT:
3000             output = optarg;
3001             break;
3002         case OPTION_BACKING_CHAIN:
3003             chain = true;
3004             break;
3005         case OPTION_OBJECT:
3006             user_creatable_process_cmdline(optarg);
3007             break;
3008         case OPTION_IMAGE_OPTS:
3009             image_opts = true;
3010             break;
3011         }
3012     }
3013     if (optind != argc - 1) {
3014         error_exit("Expecting one image file name");
3015     }
3016     filename = argv[optind++];
3017 
3018     if (output && !strcmp(output, "json")) {
3019         output_format = OFORMAT_JSON;
3020     } else if (output && !strcmp(output, "human")) {
3021         output_format = OFORMAT_HUMAN;
3022     } else if (output) {
3023         error_report("--output must be used with human or json as argument.");
3024         return 1;
3025     }
3026 
3027     list = collect_image_info_list(image_opts, filename, fmt, chain,
3028                                    force_share);
3029     if (!list) {
3030         return 1;
3031     }
3032 
3033     switch (output_format) {
3034     case OFORMAT_HUMAN:
3035         dump_human_image_info_list(list);
3036         break;
3037     case OFORMAT_JSON:
3038         if (chain) {
3039             dump_json_image_info_list(list);
3040         } else {
3041             dump_json_image_info(list->value);
3042         }
3043         break;
3044     }
3045 
3046     qapi_free_ImageInfoList(list);
3047     return 0;
3048 }
3049 
3050 static int dump_map_entry(OutputFormat output_format, MapEntry *e,
3051                           MapEntry *next)
3052 {
3053     switch (output_format) {
3054     case OFORMAT_HUMAN:
3055         if (e->data && !e->has_offset) {
3056             error_report("File contains external, encrypted or compressed clusters.");
3057             return -1;
3058         }
3059         if (e->data && !e->zero) {
3060             printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
3061                    e->start, e->length,
3062                    e->has_offset ? e->offset : 0,
3063                    e->filename ?: "");
3064         }
3065         /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
3066          * Modify the flags here to allow more coalescing.
3067          */
3068         if (next && (!next->data || next->zero)) {
3069             next->data = false;
3070             next->zero = true;
3071         }
3072         break;
3073     case OFORMAT_JSON:
3074         printf("{ \"start\": %"PRId64", \"length\": %"PRId64","
3075                " \"depth\": %"PRId64", \"present\": %s, \"zero\": %s,"
3076                " \"data\": %s", e->start, e->length, e->depth,
3077                e->present ? "true" : "false",
3078                e->zero ? "true" : "false",
3079                e->data ? "true" : "false");
3080         if (e->has_offset) {
3081             printf(", \"offset\": %"PRId64"", e->offset);
3082         }
3083         putchar('}');
3084 
3085         if (next) {
3086             puts(",");
3087         }
3088         break;
3089     }
3090     return 0;
3091 }
3092 
3093 static int get_block_status(BlockDriverState *bs, int64_t offset,
3094                             int64_t bytes, MapEntry *e)
3095 {
3096     int ret;
3097     int depth;
3098     BlockDriverState *file;
3099     bool has_offset;
3100     int64_t map;
3101     char *filename = NULL;
3102 
3103     /* As an optimization, we could cache the current range of unallocated
3104      * clusters in each file of the chain, and avoid querying the same
3105      * range repeatedly.
3106      */
3107 
3108     depth = 0;
3109     for (;;) {
3110         bs = bdrv_skip_filters(bs);
3111         ret = bdrv_block_status(bs, offset, bytes, &bytes, &map, &file);
3112         if (ret < 0) {
3113             return ret;
3114         }
3115         assert(bytes);
3116         if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
3117             break;
3118         }
3119         bs = bdrv_cow_bs(bs);
3120         if (bs == NULL) {
3121             ret = 0;
3122             break;
3123         }
3124 
3125         depth++;
3126     }
3127 
3128     has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
3129 
3130     if (file && has_offset) {
3131         bdrv_refresh_filename(file);
3132         filename = file->filename;
3133     }
3134 
3135     *e = (MapEntry) {
3136         .start = offset,
3137         .length = bytes,
3138         .data = !!(ret & BDRV_BLOCK_DATA),
3139         .zero = !!(ret & BDRV_BLOCK_ZERO),
3140         .offset = map,
3141         .has_offset = has_offset,
3142         .depth = depth,
3143         .present = !!(ret & BDRV_BLOCK_ALLOCATED),
3144         .filename = filename,
3145     };
3146 
3147     return 0;
3148 }
3149 
3150 static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
3151 {
3152     if (curr->length == 0) {
3153         return false;
3154     }
3155     if (curr->zero != next->zero ||
3156         curr->data != next->data ||
3157         curr->depth != next->depth ||
3158         curr->present != next->present ||
3159         !curr->filename != !next->filename ||
3160         curr->has_offset != next->has_offset) {
3161         return false;
3162     }
3163     if (curr->filename && strcmp(curr->filename, next->filename)) {
3164         return false;
3165     }
3166     if (curr->has_offset && curr->offset + curr->length != next->offset) {
3167         return false;
3168     }
3169     return true;
3170 }
3171 
3172 static int img_map(int argc, char **argv)
3173 {
3174     int c;
3175     OutputFormat output_format = OFORMAT_HUMAN;
3176     BlockBackend *blk;
3177     BlockDriverState *bs;
3178     const char *filename, *fmt, *output;
3179     int64_t length;
3180     MapEntry curr = { .length = 0 }, next;
3181     int ret = 0;
3182     bool image_opts = false;
3183     bool force_share = false;
3184     int64_t start_offset = 0;
3185     int64_t max_length = -1;
3186 
3187     fmt = NULL;
3188     output = NULL;
3189     for (;;) {
3190         int option_index = 0;
3191         static const struct option long_options[] = {
3192             {"help", no_argument, 0, 'h'},
3193             {"format", required_argument, 0, 'f'},
3194             {"output", required_argument, 0, OPTION_OUTPUT},
3195             {"object", required_argument, 0, OPTION_OBJECT},
3196             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3197             {"force-share", no_argument, 0, 'U'},
3198             {"start-offset", required_argument, 0, 's'},
3199             {"max-length", required_argument, 0, 'l'},
3200             {0, 0, 0, 0}
3201         };
3202         c = getopt_long(argc, argv, ":f:s:l:hU",
3203                         long_options, &option_index);
3204         if (c == -1) {
3205             break;
3206         }
3207         switch (c) {
3208         case ':':
3209             missing_argument(argv[optind - 1]);
3210             break;
3211         case '?':
3212             unrecognized_option(argv[optind - 1]);
3213             break;
3214         case 'h':
3215             help();
3216             break;
3217         case 'f':
3218             fmt = optarg;
3219             break;
3220         case 'U':
3221             force_share = true;
3222             break;
3223         case OPTION_OUTPUT:
3224             output = optarg;
3225             break;
3226         case 's':
3227             start_offset = cvtnum("start offset", optarg);
3228             if (start_offset < 0) {
3229                 return 1;
3230             }
3231             break;
3232         case 'l':
3233             max_length = cvtnum("max length", optarg);
3234             if (max_length < 0) {
3235                 return 1;
3236             }
3237             break;
3238         case OPTION_OBJECT:
3239             user_creatable_process_cmdline(optarg);
3240             break;
3241         case OPTION_IMAGE_OPTS:
3242             image_opts = true;
3243             break;
3244         }
3245     }
3246     if (optind != argc - 1) {
3247         error_exit("Expecting one image file name");
3248     }
3249     filename = argv[optind];
3250 
3251     if (output && !strcmp(output, "json")) {
3252         output_format = OFORMAT_JSON;
3253     } else if (output && !strcmp(output, "human")) {
3254         output_format = OFORMAT_HUMAN;
3255     } else if (output) {
3256         error_report("--output must be used with human or json as argument.");
3257         return 1;
3258     }
3259 
3260     blk = img_open(image_opts, filename, fmt, 0, false, false, force_share);
3261     if (!blk) {
3262         return 1;
3263     }
3264     bs = blk_bs(blk);
3265 
3266     if (output_format == OFORMAT_HUMAN) {
3267         printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
3268     } else if (output_format == OFORMAT_JSON) {
3269         putchar('[');
3270     }
3271 
3272     length = blk_getlength(blk);
3273     if (length < 0) {
3274         error_report("Failed to get size for '%s'", filename);
3275         return 1;
3276     }
3277     if (max_length != -1) {
3278         length = MIN(start_offset + max_length, length);
3279     }
3280 
3281     curr.start = start_offset;
3282     while (curr.start + curr.length < length) {
3283         int64_t offset = curr.start + curr.length;
3284         int64_t n = length - offset;
3285 
3286         ret = get_block_status(bs, offset, n, &next);
3287         if (ret < 0) {
3288             error_report("Could not read file metadata: %s", strerror(-ret));
3289             goto out;
3290         }
3291 
3292         if (entry_mergeable(&curr, &next)) {
3293             curr.length += next.length;
3294             continue;
3295         }
3296 
3297         if (curr.length > 0) {
3298             ret = dump_map_entry(output_format, &curr, &next);
3299             if (ret < 0) {
3300                 goto out;
3301             }
3302         }
3303         curr = next;
3304     }
3305 
3306     ret = dump_map_entry(output_format, &curr, NULL);
3307     if (output_format == OFORMAT_JSON) {
3308         puts("]");
3309     }
3310 
3311 out:
3312     blk_unref(blk);
3313     return ret < 0;
3314 }
3315 
3316 #define SNAPSHOT_LIST   1
3317 #define SNAPSHOT_CREATE 2
3318 #define SNAPSHOT_APPLY  3
3319 #define SNAPSHOT_DELETE 4
3320 
3321 static int img_snapshot(int argc, char **argv)
3322 {
3323     BlockBackend *blk;
3324     BlockDriverState *bs;
3325     QEMUSnapshotInfo sn;
3326     char *filename, *snapshot_name = NULL;
3327     int c, ret = 0, bdrv_oflags;
3328     int action = 0;
3329     bool quiet = false;
3330     Error *err = NULL;
3331     bool image_opts = false;
3332     bool force_share = false;
3333     int64_t rt;
3334 
3335     bdrv_oflags = BDRV_O_RDWR;
3336     /* Parse commandline parameters */
3337     for(;;) {
3338         static const struct option long_options[] = {
3339             {"help", no_argument, 0, 'h'},
3340             {"object", required_argument, 0, OPTION_OBJECT},
3341             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3342             {"force-share", no_argument, 0, 'U'},
3343             {0, 0, 0, 0}
3344         };
3345         c = getopt_long(argc, argv, ":la:c:d:hqU",
3346                         long_options, NULL);
3347         if (c == -1) {
3348             break;
3349         }
3350         switch(c) {
3351         case ':':
3352             missing_argument(argv[optind - 1]);
3353             break;
3354         case '?':
3355             unrecognized_option(argv[optind - 1]);
3356             break;
3357         case 'h':
3358             help();
3359             return 0;
3360         case 'l':
3361             if (action) {
3362                 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3363                 return 0;
3364             }
3365             action = SNAPSHOT_LIST;
3366             bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
3367             break;
3368         case 'a':
3369             if (action) {
3370                 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3371                 return 0;
3372             }
3373             action = SNAPSHOT_APPLY;
3374             snapshot_name = optarg;
3375             break;
3376         case 'c':
3377             if (action) {
3378                 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3379                 return 0;
3380             }
3381             action = SNAPSHOT_CREATE;
3382             snapshot_name = optarg;
3383             break;
3384         case 'd':
3385             if (action) {
3386                 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3387                 return 0;
3388             }
3389             action = SNAPSHOT_DELETE;
3390             snapshot_name = optarg;
3391             break;
3392         case 'q':
3393             quiet = true;
3394             break;
3395         case 'U':
3396             force_share = true;
3397             break;
3398         case OPTION_OBJECT:
3399             user_creatable_process_cmdline(optarg);
3400             break;
3401         case OPTION_IMAGE_OPTS:
3402             image_opts = true;
3403             break;
3404         }
3405     }
3406 
3407     if (optind != argc - 1) {
3408         error_exit("Expecting one image file name");
3409     }
3410     filename = argv[optind++];
3411 
3412     /* Open the image */
3413     blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet,
3414                    force_share);
3415     if (!blk) {
3416         return 1;
3417     }
3418     bs = blk_bs(blk);
3419 
3420     /* Perform the requested action */
3421     switch(action) {
3422     case SNAPSHOT_LIST:
3423         dump_snapshots(bs);
3424         break;
3425 
3426     case SNAPSHOT_CREATE:
3427         memset(&sn, 0, sizeof(sn));
3428         pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
3429 
3430         rt = g_get_real_time();
3431         sn.date_sec = rt / G_USEC_PER_SEC;
3432         sn.date_nsec = (rt % G_USEC_PER_SEC) * 1000;
3433 
3434         ret = bdrv_snapshot_create(bs, &sn);
3435         if (ret) {
3436             error_report("Could not create snapshot '%s': %d (%s)",
3437                 snapshot_name, ret, strerror(-ret));
3438         }
3439         break;
3440 
3441     case SNAPSHOT_APPLY:
3442         ret = bdrv_snapshot_goto(bs, snapshot_name, &err);
3443         if (ret) {
3444             error_reportf_err(err, "Could not apply snapshot '%s': ",
3445                               snapshot_name);
3446         }
3447         break;
3448 
3449     case SNAPSHOT_DELETE:
3450         ret = bdrv_snapshot_find(bs, &sn, snapshot_name);
3451         if (ret < 0) {
3452             error_report("Could not delete snapshot '%s': snapshot not "
3453                          "found", snapshot_name);
3454             ret = 1;
3455         } else {
3456             ret = bdrv_snapshot_delete(bs, sn.id_str, sn.name, &err);
3457             if (ret < 0) {
3458                 error_reportf_err(err, "Could not delete snapshot '%s': ",
3459                                   snapshot_name);
3460                 ret = 1;
3461             }
3462         }
3463         break;
3464     }
3465 
3466     /* Cleanup */
3467     blk_unref(blk);
3468     if (ret) {
3469         return 1;
3470     }
3471     return 0;
3472 }
3473 
3474 static int img_rebase(int argc, char **argv)
3475 {
3476     BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
3477     uint8_t *buf_old = NULL;
3478     uint8_t *buf_new = NULL;
3479     BlockDriverState *bs = NULL, *prefix_chain_bs = NULL;
3480     BlockDriverState *unfiltered_bs;
3481     char *filename;
3482     const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
3483     int c, flags, src_flags, ret;
3484     bool writethrough, src_writethrough;
3485     int unsafe = 0;
3486     bool force_share = false;
3487     int progress = 0;
3488     bool quiet = false;
3489     Error *local_err = NULL;
3490     bool image_opts = false;
3491 
3492     /* Parse commandline parameters */
3493     fmt = NULL;
3494     cache = BDRV_DEFAULT_CACHE;
3495     src_cache = BDRV_DEFAULT_CACHE;
3496     out_baseimg = NULL;
3497     out_basefmt = NULL;
3498     for(;;) {
3499         static const struct option long_options[] = {
3500             {"help", no_argument, 0, 'h'},
3501             {"object", required_argument, 0, OPTION_OBJECT},
3502             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3503             {"force-share", no_argument, 0, 'U'},
3504             {0, 0, 0, 0}
3505         };
3506         c = getopt_long(argc, argv, ":hf:F:b:upt:T:qU",
3507                         long_options, NULL);
3508         if (c == -1) {
3509             break;
3510         }
3511         switch(c) {
3512         case ':':
3513             missing_argument(argv[optind - 1]);
3514             break;
3515         case '?':
3516             unrecognized_option(argv[optind - 1]);
3517             break;
3518         case 'h':
3519             help();
3520             return 0;
3521         case 'f':
3522             fmt = optarg;
3523             break;
3524         case 'F':
3525             out_basefmt = optarg;
3526             break;
3527         case 'b':
3528             out_baseimg = optarg;
3529             break;
3530         case 'u':
3531             unsafe = 1;
3532             break;
3533         case 'p':
3534             progress = 1;
3535             break;
3536         case 't':
3537             cache = optarg;
3538             break;
3539         case 'T':
3540             src_cache = optarg;
3541             break;
3542         case 'q':
3543             quiet = true;
3544             break;
3545         case OPTION_OBJECT:
3546             user_creatable_process_cmdline(optarg);
3547             break;
3548         case OPTION_IMAGE_OPTS:
3549             image_opts = true;
3550             break;
3551         case 'U':
3552             force_share = true;
3553             break;
3554         }
3555     }
3556 
3557     if (quiet) {
3558         progress = 0;
3559     }
3560 
3561     if (optind != argc - 1) {
3562         error_exit("Expecting one image file name");
3563     }
3564     if (!unsafe && !out_baseimg) {
3565         error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
3566     }
3567     filename = argv[optind++];
3568 
3569     qemu_progress_init(progress, 2.0);
3570     qemu_progress_print(0, 100);
3571 
3572     flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
3573     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
3574     if (ret < 0) {
3575         error_report("Invalid cache option: %s", cache);
3576         goto out;
3577     }
3578 
3579     src_flags = 0;
3580     ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
3581     if (ret < 0) {
3582         error_report("Invalid source cache option: %s", src_cache);
3583         goto out;
3584     }
3585 
3586     /* The source files are opened read-only, don't care about WCE */
3587     assert((src_flags & BDRV_O_RDWR) == 0);
3588     (void) src_writethrough;
3589 
3590     /*
3591      * Open the images.
3592      *
3593      * Ignore the old backing file for unsafe rebase in case we want to correct
3594      * the reference to a renamed or moved backing file.
3595      */
3596     blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3597                    false);
3598     if (!blk) {
3599         ret = -1;
3600         goto out;
3601     }
3602     bs = blk_bs(blk);
3603 
3604     unfiltered_bs = bdrv_skip_filters(bs);
3605 
3606     if (out_basefmt != NULL) {
3607         if (bdrv_find_format(out_basefmt) == NULL) {
3608             error_report("Invalid format name: '%s'", out_basefmt);
3609             ret = -1;
3610             goto out;
3611         }
3612     }
3613 
3614     /* For safe rebasing we need to compare old and new backing file */
3615     if (!unsafe) {
3616         QDict *options = NULL;
3617         BlockDriverState *base_bs = bdrv_cow_bs(unfiltered_bs);
3618 
3619         if (base_bs) {
3620             blk_old_backing = blk_new(qemu_get_aio_context(),
3621                                       BLK_PERM_CONSISTENT_READ,
3622                                       BLK_PERM_ALL);
3623             ret = blk_insert_bs(blk_old_backing, base_bs,
3624                                 &local_err);
3625             if (ret < 0) {
3626                 error_reportf_err(local_err,
3627                                   "Could not reuse old backing file '%s': ",
3628                                   base_bs->filename);
3629                 goto out;
3630             }
3631         } else {
3632             blk_old_backing = NULL;
3633         }
3634 
3635         if (out_baseimg[0]) {
3636             const char *overlay_filename;
3637             char *out_real_path;
3638 
3639             options = qdict_new();
3640             if (out_basefmt) {
3641                 qdict_put_str(options, "driver", out_basefmt);
3642             }
3643             if (force_share) {
3644                 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
3645             }
3646 
3647             bdrv_refresh_filename(bs);
3648             overlay_filename = bs->exact_filename[0] ? bs->exact_filename
3649                                                      : bs->filename;
3650             out_real_path =
3651                 bdrv_get_full_backing_filename_from_filename(overlay_filename,
3652                                                              out_baseimg,
3653                                                              &local_err);
3654             if (local_err) {
3655                 qobject_unref(options);
3656                 error_reportf_err(local_err,
3657                                   "Could not resolve backing filename: ");
3658                 ret = -1;
3659                 goto out;
3660             }
3661 
3662             /*
3663              * Find out whether we rebase an image on top of a previous image
3664              * in its chain.
3665              */
3666             prefix_chain_bs = bdrv_find_backing_image(bs, out_real_path);
3667             if (prefix_chain_bs) {
3668                 qobject_unref(options);
3669                 g_free(out_real_path);
3670 
3671                 blk_new_backing = blk_new(qemu_get_aio_context(),
3672                                           BLK_PERM_CONSISTENT_READ,
3673                                           BLK_PERM_ALL);
3674                 ret = blk_insert_bs(blk_new_backing, prefix_chain_bs,
3675                                     &local_err);
3676                 if (ret < 0) {
3677                     error_reportf_err(local_err,
3678                                       "Could not reuse backing file '%s': ",
3679                                       out_baseimg);
3680                     goto out;
3681                 }
3682             } else {
3683                 blk_new_backing = blk_new_open(out_real_path, NULL,
3684                                                options, src_flags, &local_err);
3685                 g_free(out_real_path);
3686                 if (!blk_new_backing) {
3687                     error_reportf_err(local_err,
3688                                       "Could not open new backing file '%s': ",
3689                                       out_baseimg);
3690                     ret = -1;
3691                     goto out;
3692                 }
3693             }
3694         }
3695     }
3696 
3697     /*
3698      * Check each unallocated cluster in the COW file. If it is unallocated,
3699      * accesses go to the backing file. We must therefore compare this cluster
3700      * in the old and new backing file, and if they differ we need to copy it
3701      * from the old backing file into the COW file.
3702      *
3703      * If qemu-img crashes during this step, no harm is done. The content of
3704      * the image is the same as the original one at any time.
3705      */
3706     if (!unsafe) {
3707         int64_t size;
3708         int64_t old_backing_size = 0;
3709         int64_t new_backing_size = 0;
3710         uint64_t offset;
3711         int64_t n;
3712         float local_progress = 0;
3713 
3714         buf_old = blk_blockalign(blk, IO_BUF_SIZE);
3715         buf_new = blk_blockalign(blk, IO_BUF_SIZE);
3716 
3717         size = blk_getlength(blk);
3718         if (size < 0) {
3719             error_report("Could not get size of '%s': %s",
3720                          filename, strerror(-size));
3721             ret = -1;
3722             goto out;
3723         }
3724         if (blk_old_backing) {
3725             old_backing_size = blk_getlength(blk_old_backing);
3726             if (old_backing_size < 0) {
3727                 char backing_name[PATH_MAX];
3728 
3729                 bdrv_get_backing_filename(bs, backing_name,
3730                                           sizeof(backing_name));
3731                 error_report("Could not get size of '%s': %s",
3732                              backing_name, strerror(-old_backing_size));
3733                 ret = -1;
3734                 goto out;
3735             }
3736         }
3737         if (blk_new_backing) {
3738             new_backing_size = blk_getlength(blk_new_backing);
3739             if (new_backing_size < 0) {
3740                 error_report("Could not get size of '%s': %s",
3741                              out_baseimg, strerror(-new_backing_size));
3742                 ret = -1;
3743                 goto out;
3744             }
3745         }
3746 
3747         if (size != 0) {
3748             local_progress = (float)100 / (size / MIN(size, IO_BUF_SIZE));
3749         }
3750 
3751         for (offset = 0; offset < size; offset += n) {
3752             bool buf_old_is_zero = false;
3753 
3754             /* How many bytes can we handle with the next read? */
3755             n = MIN(IO_BUF_SIZE, size - offset);
3756 
3757             /* If the cluster is allocated, we don't need to take action */
3758             ret = bdrv_is_allocated(unfiltered_bs, offset, n, &n);
3759             if (ret < 0) {
3760                 error_report("error while reading image metadata: %s",
3761                              strerror(-ret));
3762                 goto out;
3763             }
3764             if (ret) {
3765                 continue;
3766             }
3767 
3768             if (prefix_chain_bs) {
3769                 /*
3770                  * If cluster wasn't changed since prefix_chain, we don't need
3771                  * to take action
3772                  */
3773                 ret = bdrv_is_allocated_above(bdrv_cow_bs(unfiltered_bs),
3774                                               prefix_chain_bs, false,
3775                                               offset, n, &n);
3776                 if (ret < 0) {
3777                     error_report("error while reading image metadata: %s",
3778                                  strerror(-ret));
3779                     goto out;
3780                 }
3781                 if (!ret) {
3782                     continue;
3783                 }
3784             }
3785 
3786             /*
3787              * Read old and new backing file and take into consideration that
3788              * backing files may be smaller than the COW image.
3789              */
3790             if (offset >= old_backing_size) {
3791                 memset(buf_old, 0, n);
3792                 buf_old_is_zero = true;
3793             } else {
3794                 if (offset + n > old_backing_size) {
3795                     n = old_backing_size - offset;
3796                 }
3797 
3798                 ret = blk_pread(blk_old_backing, offset, n, buf_old, 0);
3799                 if (ret < 0) {
3800                     error_report("error while reading from old backing file");
3801                     goto out;
3802                 }
3803             }
3804 
3805             if (offset >= new_backing_size || !blk_new_backing) {
3806                 memset(buf_new, 0, n);
3807             } else {
3808                 if (offset + n > new_backing_size) {
3809                     n = new_backing_size - offset;
3810                 }
3811 
3812                 ret = blk_pread(blk_new_backing, offset, n, buf_new, 0);
3813                 if (ret < 0) {
3814                     error_report("error while reading from new backing file");
3815                     goto out;
3816                 }
3817             }
3818 
3819             /* If they differ, we need to write to the COW file */
3820             uint64_t written = 0;
3821 
3822             while (written < n) {
3823                 int64_t pnum;
3824 
3825                 if (compare_buffers(buf_old + written, buf_new + written,
3826                                     n - written, &pnum))
3827                 {
3828                     if (buf_old_is_zero) {
3829                         ret = blk_pwrite_zeroes(blk, offset + written, pnum, 0);
3830                     } else {
3831                         ret = blk_pwrite(blk, offset + written, pnum,
3832                                          buf_old + written, 0);
3833                     }
3834                     if (ret < 0) {
3835                         error_report("Error while writing to COW image: %s",
3836                             strerror(-ret));
3837                         goto out;
3838                     }
3839                 }
3840 
3841                 written += pnum;
3842             }
3843             qemu_progress_print(local_progress, 100);
3844         }
3845     }
3846 
3847     /*
3848      * Change the backing file. All clusters that are different from the old
3849      * backing file are overwritten in the COW file now, so the visible content
3850      * doesn't change when we switch the backing file.
3851      */
3852     if (out_baseimg && *out_baseimg) {
3853         ret = bdrv_change_backing_file(unfiltered_bs, out_baseimg, out_basefmt,
3854                                        true);
3855     } else {
3856         ret = bdrv_change_backing_file(unfiltered_bs, NULL, NULL, false);
3857     }
3858 
3859     if (ret == -ENOSPC) {
3860         error_report("Could not change the backing file to '%s': No "
3861                      "space left in the file header", out_baseimg);
3862     } else if (ret == -EINVAL && out_baseimg && !out_basefmt) {
3863         error_report("Could not change the backing file to '%s': backing "
3864                      "format must be specified", out_baseimg);
3865     } else if (ret < 0) {
3866         error_report("Could not change the backing file to '%s': %s",
3867             out_baseimg, strerror(-ret));
3868     }
3869 
3870     qemu_progress_print(100, 0);
3871     /*
3872      * TODO At this point it is possible to check if any clusters that are
3873      * allocated in the COW file are the same in the backing file. If so, they
3874      * could be dropped from the COW file. Don't do this before switching the
3875      * backing file, in case of a crash this would lead to corruption.
3876      */
3877 out:
3878     qemu_progress_end();
3879     /* Cleanup */
3880     if (!unsafe) {
3881         blk_unref(blk_old_backing);
3882         blk_unref(blk_new_backing);
3883     }
3884     qemu_vfree(buf_old);
3885     qemu_vfree(buf_new);
3886 
3887     blk_unref(blk);
3888     if (ret) {
3889         return 1;
3890     }
3891     return 0;
3892 }
3893 
3894 static int img_resize(int argc, char **argv)
3895 {
3896     Error *err = NULL;
3897     int c, ret, relative;
3898     const char *filename, *fmt, *size;
3899     int64_t n, total_size, current_size;
3900     bool quiet = false;
3901     BlockBackend *blk = NULL;
3902     PreallocMode prealloc = PREALLOC_MODE_OFF;
3903     QemuOpts *param;
3904 
3905     static QemuOptsList resize_options = {
3906         .name = "resize_options",
3907         .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3908         .desc = {
3909             {
3910                 .name = BLOCK_OPT_SIZE,
3911                 .type = QEMU_OPT_SIZE,
3912                 .help = "Virtual disk size"
3913             }, {
3914                 /* end of list */
3915             }
3916         },
3917     };
3918     bool image_opts = false;
3919     bool shrink = false;
3920 
3921     /* Remove size from argv manually so that negative numbers are not treated
3922      * as options by getopt. */
3923     if (argc < 3) {
3924         error_exit("Not enough arguments");
3925         return 1;
3926     }
3927 
3928     size = argv[--argc];
3929 
3930     /* Parse getopt arguments */
3931     fmt = NULL;
3932     for(;;) {
3933         static const struct option long_options[] = {
3934             {"help", no_argument, 0, 'h'},
3935             {"object", required_argument, 0, OPTION_OBJECT},
3936             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3937             {"preallocation", required_argument, 0, OPTION_PREALLOCATION},
3938             {"shrink", no_argument, 0, OPTION_SHRINK},
3939             {0, 0, 0, 0}
3940         };
3941         c = getopt_long(argc, argv, ":f:hq",
3942                         long_options, NULL);
3943         if (c == -1) {
3944             break;
3945         }
3946         switch(c) {
3947         case ':':
3948             missing_argument(argv[optind - 1]);
3949             break;
3950         case '?':
3951             unrecognized_option(argv[optind - 1]);
3952             break;
3953         case 'h':
3954             help();
3955             break;
3956         case 'f':
3957             fmt = optarg;
3958             break;
3959         case 'q':
3960             quiet = true;
3961             break;
3962         case OPTION_OBJECT:
3963             user_creatable_process_cmdline(optarg);
3964             break;
3965         case OPTION_IMAGE_OPTS:
3966             image_opts = true;
3967             break;
3968         case OPTION_PREALLOCATION:
3969             prealloc = qapi_enum_parse(&PreallocMode_lookup, optarg,
3970                                        PREALLOC_MODE__MAX, NULL);
3971             if (prealloc == PREALLOC_MODE__MAX) {
3972                 error_report("Invalid preallocation mode '%s'", optarg);
3973                 return 1;
3974             }
3975             break;
3976         case OPTION_SHRINK:
3977             shrink = true;
3978             break;
3979         }
3980     }
3981     if (optind != argc - 1) {
3982         error_exit("Expecting image file name and size");
3983     }
3984     filename = argv[optind++];
3985 
3986     /* Choose grow, shrink, or absolute resize mode */
3987     switch (size[0]) {
3988     case '+':
3989         relative = 1;
3990         size++;
3991         break;
3992     case '-':
3993         relative = -1;
3994         size++;
3995         break;
3996     default:
3997         relative = 0;
3998         break;
3999     }
4000 
4001     /* Parse size */
4002     param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
4003     if (!qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err)) {
4004         error_report_err(err);
4005         ret = -1;
4006         qemu_opts_del(param);
4007         goto out;
4008     }
4009     n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
4010     qemu_opts_del(param);
4011 
4012     blk = img_open(image_opts, filename, fmt,
4013                    BDRV_O_RDWR | BDRV_O_RESIZE, false, quiet,
4014                    false);
4015     if (!blk) {
4016         ret = -1;
4017         goto out;
4018     }
4019 
4020     current_size = blk_getlength(blk);
4021     if (current_size < 0) {
4022         error_report("Failed to inquire current image length: %s",
4023                      strerror(-current_size));
4024         ret = -1;
4025         goto out;
4026     }
4027 
4028     if (relative) {
4029         total_size = current_size + n * relative;
4030     } else {
4031         total_size = n;
4032     }
4033     if (total_size <= 0) {
4034         error_report("New image size must be positive");
4035         ret = -1;
4036         goto out;
4037     }
4038 
4039     if (total_size <= current_size && prealloc != PREALLOC_MODE_OFF) {
4040         error_report("Preallocation can only be used for growing images");
4041         ret = -1;
4042         goto out;
4043     }
4044 
4045     if (total_size < current_size && !shrink) {
4046         error_report("Use the --shrink option to perform a shrink operation.");
4047         warn_report("Shrinking an image will delete all data beyond the "
4048                     "shrunken image's end. Before performing such an "
4049                     "operation, make sure there is no important data there.");
4050         ret = -1;
4051         goto out;
4052     }
4053 
4054     /*
4055      * The user expects the image to have the desired size after
4056      * resizing, so pass @exact=true.  It is of no use to report
4057      * success when the image has not actually been resized.
4058      */
4059     ret = blk_truncate(blk, total_size, true, prealloc, 0, &err);
4060     if (!ret) {
4061         qprintf(quiet, "Image resized.\n");
4062     } else {
4063         error_report_err(err);
4064     }
4065 out:
4066     blk_unref(blk);
4067     if (ret) {
4068         return 1;
4069     }
4070     return 0;
4071 }
4072 
4073 static void amend_status_cb(BlockDriverState *bs,
4074                             int64_t offset, int64_t total_work_size,
4075                             void *opaque)
4076 {
4077     qemu_progress_print(100.f * offset / total_work_size, 0);
4078 }
4079 
4080 static int print_amend_option_help(const char *format)
4081 {
4082     BlockDriver *drv;
4083 
4084     /* Find driver and parse its options */
4085     drv = bdrv_find_format(format);
4086     if (!drv) {
4087         error_report("Unknown file format '%s'", format);
4088         return 1;
4089     }
4090 
4091     if (!drv->bdrv_amend_options) {
4092         error_report("Format driver '%s' does not support option amendment",
4093                      format);
4094         return 1;
4095     }
4096 
4097     /* Every driver supporting amendment must have amend_opts */
4098     assert(drv->amend_opts);
4099 
4100     printf("Amend options for '%s':\n", format);
4101     qemu_opts_print_help(drv->amend_opts, false);
4102     return 0;
4103 }
4104 
4105 static int img_amend(int argc, char **argv)
4106 {
4107     Error *err = NULL;
4108     int c, ret = 0;
4109     char *options = NULL;
4110     QemuOptsList *amend_opts = NULL;
4111     QemuOpts *opts = NULL;
4112     const char *fmt = NULL, *filename, *cache;
4113     int flags;
4114     bool writethrough;
4115     bool quiet = false, progress = false;
4116     BlockBackend *blk = NULL;
4117     BlockDriverState *bs = NULL;
4118     bool image_opts = false;
4119     bool force = false;
4120 
4121     cache = BDRV_DEFAULT_CACHE;
4122     for (;;) {
4123         static const struct option long_options[] = {
4124             {"help", no_argument, 0, 'h'},
4125             {"object", required_argument, 0, OPTION_OBJECT},
4126             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4127             {"force", no_argument, 0, OPTION_FORCE},
4128             {0, 0, 0, 0}
4129         };
4130         c = getopt_long(argc, argv, ":ho:f:t:pq",
4131                         long_options, NULL);
4132         if (c == -1) {
4133             break;
4134         }
4135 
4136         switch (c) {
4137         case ':':
4138             missing_argument(argv[optind - 1]);
4139             break;
4140         case '?':
4141             unrecognized_option(argv[optind - 1]);
4142             break;
4143         case 'h':
4144             help();
4145             break;
4146         case 'o':
4147             if (accumulate_options(&options, optarg) < 0) {
4148                 ret = -1;
4149                 goto out_no_progress;
4150             }
4151             break;
4152         case 'f':
4153             fmt = optarg;
4154             break;
4155         case 't':
4156             cache = optarg;
4157             break;
4158         case 'p':
4159             progress = true;
4160             break;
4161         case 'q':
4162             quiet = true;
4163             break;
4164         case OPTION_OBJECT:
4165             user_creatable_process_cmdline(optarg);
4166             break;
4167         case OPTION_IMAGE_OPTS:
4168             image_opts = true;
4169             break;
4170         case OPTION_FORCE:
4171             force = true;
4172             break;
4173         }
4174     }
4175 
4176     if (!options) {
4177         error_exit("Must specify options (-o)");
4178     }
4179 
4180     if (quiet) {
4181         progress = false;
4182     }
4183     qemu_progress_init(progress, 1.0);
4184 
4185     filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
4186     if (fmt && has_help_option(options)) {
4187         /* If a format is explicitly specified (and possibly no filename is
4188          * given), print option help here */
4189         ret = print_amend_option_help(fmt);
4190         goto out;
4191     }
4192 
4193     if (optind != argc - 1) {
4194         error_report("Expecting one image file name");
4195         ret = -1;
4196         goto out;
4197     }
4198 
4199     flags = BDRV_O_RDWR;
4200     ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
4201     if (ret < 0) {
4202         error_report("Invalid cache option: %s", cache);
4203         goto out;
4204     }
4205 
4206     blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
4207                    false);
4208     if (!blk) {
4209         ret = -1;
4210         goto out;
4211     }
4212     bs = blk_bs(blk);
4213 
4214     fmt = bs->drv->format_name;
4215 
4216     if (has_help_option(options)) {
4217         /* If the format was auto-detected, print option help here */
4218         ret = print_amend_option_help(fmt);
4219         goto out;
4220     }
4221 
4222     if (!bs->drv->bdrv_amend_options) {
4223         error_report("Format driver '%s' does not support option amendment",
4224                      fmt);
4225         ret = -1;
4226         goto out;
4227     }
4228 
4229     /* Every driver supporting amendment must have amend_opts */
4230     assert(bs->drv->amend_opts);
4231 
4232     amend_opts = qemu_opts_append(amend_opts, bs->drv->amend_opts);
4233     opts = qemu_opts_create(amend_opts, NULL, 0, &error_abort);
4234     if (!qemu_opts_do_parse(opts, options, NULL, &err)) {
4235         /* Try to parse options using the create options */
4236         amend_opts = qemu_opts_append(amend_opts, bs->drv->create_opts);
4237         qemu_opts_del(opts);
4238         opts = qemu_opts_create(amend_opts, NULL, 0, &error_abort);
4239         if (qemu_opts_do_parse(opts, options, NULL, NULL)) {
4240             error_append_hint(&err,
4241                               "This option is only supported for image creation\n");
4242         }
4243 
4244         error_report_err(err);
4245         ret = -1;
4246         goto out;
4247     }
4248 
4249     /* In case the driver does not call amend_status_cb() */
4250     qemu_progress_print(0.f, 0);
4251     ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL, force, &err);
4252     qemu_progress_print(100.f, 0);
4253     if (ret < 0) {
4254         error_report_err(err);
4255         goto out;
4256     }
4257 
4258 out:
4259     qemu_progress_end();
4260 
4261 out_no_progress:
4262     blk_unref(blk);
4263     qemu_opts_del(opts);
4264     qemu_opts_free(amend_opts);
4265     g_free(options);
4266 
4267     if (ret) {
4268         return 1;
4269     }
4270     return 0;
4271 }
4272 
4273 typedef struct BenchData {
4274     BlockBackend *blk;
4275     uint64_t image_size;
4276     bool write;
4277     int bufsize;
4278     int step;
4279     int nrreq;
4280     int n;
4281     int flush_interval;
4282     bool drain_on_flush;
4283     uint8_t *buf;
4284     QEMUIOVector *qiov;
4285 
4286     int in_flight;
4287     bool in_flush;
4288     uint64_t offset;
4289 } BenchData;
4290 
4291 static void bench_undrained_flush_cb(void *opaque, int ret)
4292 {
4293     if (ret < 0) {
4294         error_report("Failed flush request: %s", strerror(-ret));
4295         exit(EXIT_FAILURE);
4296     }
4297 }
4298 
4299 static void bench_cb(void *opaque, int ret)
4300 {
4301     BenchData *b = opaque;
4302     BlockAIOCB *acb;
4303 
4304     if (ret < 0) {
4305         error_report("Failed request: %s", strerror(-ret));
4306         exit(EXIT_FAILURE);
4307     }
4308 
4309     if (b->in_flush) {
4310         /* Just finished a flush with drained queue: Start next requests */
4311         assert(b->in_flight == 0);
4312         b->in_flush = false;
4313     } else if (b->in_flight > 0) {
4314         int remaining = b->n - b->in_flight;
4315 
4316         b->n--;
4317         b->in_flight--;
4318 
4319         /* Time for flush? Drain queue if requested, then flush */
4320         if (b->flush_interval && remaining % b->flush_interval == 0) {
4321             if (!b->in_flight || !b->drain_on_flush) {
4322                 BlockCompletionFunc *cb;
4323 
4324                 if (b->drain_on_flush) {
4325                     b->in_flush = true;
4326                     cb = bench_cb;
4327                 } else {
4328                     cb = bench_undrained_flush_cb;
4329                 }
4330 
4331                 acb = blk_aio_flush(b->blk, cb, b);
4332                 if (!acb) {
4333                     error_report("Failed to issue flush request");
4334                     exit(EXIT_FAILURE);
4335                 }
4336             }
4337             if (b->drain_on_flush) {
4338                 return;
4339             }
4340         }
4341     }
4342 
4343     while (b->n > b->in_flight && b->in_flight < b->nrreq) {
4344         int64_t offset = b->offset;
4345         /* blk_aio_* might look for completed I/Os and kick bench_cb
4346          * again, so make sure this operation is counted by in_flight
4347          * and b->offset is ready for the next submission.
4348          */
4349         b->in_flight++;
4350         b->offset += b->step;
4351         b->offset %= b->image_size;
4352         if (b->write) {
4353             acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b);
4354         } else {
4355             acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b);
4356         }
4357         if (!acb) {
4358             error_report("Failed to issue request");
4359             exit(EXIT_FAILURE);
4360         }
4361     }
4362 }
4363 
4364 static int img_bench(int argc, char **argv)
4365 {
4366     int c, ret = 0;
4367     const char *fmt = NULL, *filename;
4368     bool quiet = false;
4369     bool image_opts = false;
4370     bool is_write = false;
4371     int count = 75000;
4372     int depth = 64;
4373     int64_t offset = 0;
4374     size_t bufsize = 4096;
4375     int pattern = 0;
4376     size_t step = 0;
4377     int flush_interval = 0;
4378     bool drain_on_flush = true;
4379     int64_t image_size;
4380     BlockBackend *blk = NULL;
4381     BenchData data = {};
4382     int flags = 0;
4383     bool writethrough = false;
4384     struct timeval t1, t2;
4385     int i;
4386     bool force_share = false;
4387     size_t buf_size = 0;
4388 
4389     for (;;) {
4390         static const struct option long_options[] = {
4391             {"help", no_argument, 0, 'h'},
4392             {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
4393             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4394             {"pattern", required_argument, 0, OPTION_PATTERN},
4395             {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
4396             {"force-share", no_argument, 0, 'U'},
4397             {0, 0, 0, 0}
4398         };
4399         c = getopt_long(argc, argv, ":hc:d:f:ni:o:qs:S:t:wU", long_options,
4400                         NULL);
4401         if (c == -1) {
4402             break;
4403         }
4404 
4405         switch (c) {
4406         case ':':
4407             missing_argument(argv[optind - 1]);
4408             break;
4409         case '?':
4410             unrecognized_option(argv[optind - 1]);
4411             break;
4412         case 'h':
4413             help();
4414             break;
4415         case 'c':
4416         {
4417             unsigned long res;
4418 
4419             if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
4420                 error_report("Invalid request count specified");
4421                 return 1;
4422             }
4423             count = res;
4424             break;
4425         }
4426         case 'd':
4427         {
4428             unsigned long res;
4429 
4430             if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
4431                 error_report("Invalid queue depth specified");
4432                 return 1;
4433             }
4434             depth = res;
4435             break;
4436         }
4437         case 'f':
4438             fmt = optarg;
4439             break;
4440         case 'n':
4441             flags |= BDRV_O_NATIVE_AIO;
4442             break;
4443         case 'i':
4444             ret = bdrv_parse_aio(optarg, &flags);
4445             if (ret < 0) {
4446                 error_report("Invalid aio option: %s", optarg);
4447                 ret = -1;
4448                 goto out;
4449             }
4450             break;
4451         case 'o':
4452         {
4453             offset = cvtnum("offset", optarg);
4454             if (offset < 0) {
4455                 return 1;
4456             }
4457             break;
4458         }
4459             break;
4460         case 'q':
4461             quiet = true;
4462             break;
4463         case 's':
4464         {
4465             int64_t sval;
4466 
4467             sval = cvtnum_full("buffer size", optarg, 0, INT_MAX);
4468             if (sval < 0) {
4469                 return 1;
4470             }
4471 
4472             bufsize = sval;
4473             break;
4474         }
4475         case 'S':
4476         {
4477             int64_t sval;
4478 
4479             sval = cvtnum_full("step_size", optarg, 0, INT_MAX);
4480             if (sval < 0) {
4481                 return 1;
4482             }
4483 
4484             step = sval;
4485             break;
4486         }
4487         case 't':
4488             ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
4489             if (ret < 0) {
4490                 error_report("Invalid cache mode");
4491                 ret = -1;
4492                 goto out;
4493             }
4494             break;
4495         case 'w':
4496             flags |= BDRV_O_RDWR;
4497             is_write = true;
4498             break;
4499         case 'U':
4500             force_share = true;
4501             break;
4502         case OPTION_PATTERN:
4503         {
4504             unsigned long res;
4505 
4506             if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) {
4507                 error_report("Invalid pattern byte specified");
4508                 return 1;
4509             }
4510             pattern = res;
4511             break;
4512         }
4513         case OPTION_FLUSH_INTERVAL:
4514         {
4515             unsigned long res;
4516 
4517             if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
4518                 error_report("Invalid flush interval specified");
4519                 return 1;
4520             }
4521             flush_interval = res;
4522             break;
4523         }
4524         case OPTION_NO_DRAIN:
4525             drain_on_flush = false;
4526             break;
4527         case OPTION_IMAGE_OPTS:
4528             image_opts = true;
4529             break;
4530         }
4531     }
4532 
4533     if (optind != argc - 1) {
4534         error_exit("Expecting one image file name");
4535     }
4536     filename = argv[argc - 1];
4537 
4538     if (!is_write && flush_interval) {
4539         error_report("--flush-interval is only available in write tests");
4540         ret = -1;
4541         goto out;
4542     }
4543     if (flush_interval && flush_interval < depth) {
4544         error_report("Flush interval can't be smaller than depth");
4545         ret = -1;
4546         goto out;
4547     }
4548 
4549     blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
4550                    force_share);
4551     if (!blk) {
4552         ret = -1;
4553         goto out;
4554     }
4555 
4556     image_size = blk_getlength(blk);
4557     if (image_size < 0) {
4558         ret = image_size;
4559         goto out;
4560     }
4561 
4562     data = (BenchData) {
4563         .blk            = blk,
4564         .image_size     = image_size,
4565         .bufsize        = bufsize,
4566         .step           = step ?: bufsize,
4567         .nrreq          = depth,
4568         .n              = count,
4569         .offset         = offset,
4570         .write          = is_write,
4571         .flush_interval = flush_interval,
4572         .drain_on_flush = drain_on_flush,
4573     };
4574     printf("Sending %d %s requests, %d bytes each, %d in parallel "
4575            "(starting at offset %" PRId64 ", step size %d)\n",
4576            data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
4577            data.offset, data.step);
4578     if (flush_interval) {
4579         printf("Sending flush every %d requests\n", flush_interval);
4580     }
4581 
4582     buf_size = data.nrreq * data.bufsize;
4583     data.buf = blk_blockalign(blk, buf_size);
4584     memset(data.buf, pattern, data.nrreq * data.bufsize);
4585 
4586     blk_register_buf(blk, data.buf, buf_size, &error_fatal);
4587 
4588     data.qiov = g_new(QEMUIOVector, data.nrreq);
4589     for (i = 0; i < data.nrreq; i++) {
4590         qemu_iovec_init(&data.qiov[i], 1);
4591         qemu_iovec_add(&data.qiov[i],
4592                        data.buf + i * data.bufsize, data.bufsize);
4593     }
4594 
4595     gettimeofday(&t1, NULL);
4596     bench_cb(&data, 0);
4597 
4598     while (data.n > 0) {
4599         main_loop_wait(false);
4600     }
4601     gettimeofday(&t2, NULL);
4602 
4603     printf("Run completed in %3.3f seconds.\n",
4604            (t2.tv_sec - t1.tv_sec)
4605            + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
4606 
4607 out:
4608     if (data.buf) {
4609         blk_unregister_buf(blk, data.buf, buf_size);
4610     }
4611     qemu_vfree(data.buf);
4612     blk_unref(blk);
4613 
4614     if (ret) {
4615         return 1;
4616     }
4617     return 0;
4618 }
4619 
4620 enum ImgBitmapAct {
4621     BITMAP_ADD,
4622     BITMAP_REMOVE,
4623     BITMAP_CLEAR,
4624     BITMAP_ENABLE,
4625     BITMAP_DISABLE,
4626     BITMAP_MERGE,
4627 };
4628 typedef struct ImgBitmapAction {
4629     enum ImgBitmapAct act;
4630     const char *src; /* only used for merge */
4631     QSIMPLEQ_ENTRY(ImgBitmapAction) next;
4632 } ImgBitmapAction;
4633 
4634 static int img_bitmap(int argc, char **argv)
4635 {
4636     Error *err = NULL;
4637     int c, ret = 1;
4638     QemuOpts *opts = NULL;
4639     const char *fmt = NULL, *src_fmt = NULL, *src_filename = NULL;
4640     const char *filename, *bitmap;
4641     BlockBackend *blk = NULL, *src = NULL;
4642     BlockDriverState *bs = NULL, *src_bs = NULL;
4643     bool image_opts = false;
4644     int64_t granularity = 0;
4645     bool add = false, merge = false;
4646     QSIMPLEQ_HEAD(, ImgBitmapAction) actions;
4647     ImgBitmapAction *act, *act_next;
4648     const char *op;
4649 
4650     QSIMPLEQ_INIT(&actions);
4651 
4652     for (;;) {
4653         static const struct option long_options[] = {
4654             {"help", no_argument, 0, 'h'},
4655             {"object", required_argument, 0, OPTION_OBJECT},
4656             {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4657             {"add", no_argument, 0, OPTION_ADD},
4658             {"remove", no_argument, 0, OPTION_REMOVE},
4659             {"clear", no_argument, 0, OPTION_CLEAR},
4660             {"enable", no_argument, 0, OPTION_ENABLE},
4661             {"disable", no_argument, 0, OPTION_DISABLE},
4662             {"merge", required_argument, 0, OPTION_MERGE},
4663             {"granularity", required_argument, 0, 'g'},
4664             {"source-file", required_argument, 0, 'b'},
4665             {"source-format", required_argument, 0, 'F'},
4666             {0, 0, 0, 0}
4667         };
4668         c = getopt_long(argc, argv, ":b:f:F:g:h", long_options, NULL);
4669         if (c == -1) {
4670             break;
4671         }
4672 
4673         switch (c) {
4674         case ':':
4675             missing_argument(argv[optind - 1]);
4676             break;
4677         case '?':
4678             unrecognized_option(argv[optind - 1]);
4679             break;
4680         case 'h':
4681             help();
4682             break;
4683         case 'b':
4684             src_filename = optarg;
4685             break;
4686         case 'f':
4687             fmt = optarg;
4688             break;
4689         case 'F':
4690             src_fmt = optarg;
4691             break;
4692         case 'g':
4693             granularity = cvtnum("granularity", optarg);
4694             if (granularity < 0) {
4695                 return 1;
4696             }
4697             break;
4698         case OPTION_ADD:
4699             act = g_new0(ImgBitmapAction, 1);
4700             act->act = BITMAP_ADD;
4701             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4702             add = true;
4703             break;
4704         case OPTION_REMOVE:
4705             act = g_new0(ImgBitmapAction, 1);
4706             act->act = BITMAP_REMOVE;
4707             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4708             break;
4709         case OPTION_CLEAR:
4710             act = g_new0(ImgBitmapAction, 1);
4711             act->act = BITMAP_CLEAR;
4712             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4713             break;
4714         case OPTION_ENABLE:
4715             act = g_new0(ImgBitmapAction, 1);
4716             act->act = BITMAP_ENABLE;
4717             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4718             break;
4719         case OPTION_DISABLE:
4720             act = g_new0(ImgBitmapAction, 1);
4721             act->act = BITMAP_DISABLE;
4722             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4723             break;
4724         case OPTION_MERGE:
4725             act = g_new0(ImgBitmapAction, 1);
4726             act->act = BITMAP_MERGE;
4727             act->src = optarg;
4728             QSIMPLEQ_INSERT_TAIL(&actions, act, next);
4729             merge = true;
4730             break;
4731         case OPTION_OBJECT:
4732             user_creatable_process_cmdline(optarg);
4733             break;
4734         case OPTION_IMAGE_OPTS:
4735             image_opts = true;
4736             break;
4737         }
4738     }
4739 
4740     if (QSIMPLEQ_EMPTY(&actions)) {
4741         error_report("Need at least one of --add, --remove, --clear, "
4742                      "--enable, --disable, or --merge");
4743         goto out;
4744     }
4745 
4746     if (granularity && !add) {
4747         error_report("granularity only supported with --add");
4748         goto out;
4749     }
4750     if (src_fmt && !src_filename) {
4751         error_report("-F only supported with -b");
4752         goto out;
4753     }
4754     if (src_filename && !merge) {
4755         error_report("Merge bitmap source file only supported with "
4756                      "--merge");
4757         goto out;
4758     }
4759 
4760     if (optind != argc - 2) {
4761         error_report("Expecting filename and bitmap name");
4762         goto out;
4763     }
4764 
4765     filename = argv[optind];
4766     bitmap = argv[optind + 1];
4767 
4768     /*
4769      * No need to open backing chains; we will be manipulating bitmaps
4770      * directly in this image without reference to image contents.
4771      */
4772     blk = img_open(image_opts, filename, fmt, BDRV_O_RDWR | BDRV_O_NO_BACKING,
4773                    false, false, false);
4774     if (!blk) {
4775         goto out;
4776     }
4777     bs = blk_bs(blk);
4778     if (src_filename) {
4779         src = img_open(false, src_filename, src_fmt, BDRV_O_NO_BACKING,
4780                        false, false, false);
4781         if (!src) {
4782             goto out;
4783         }
4784         src_bs = blk_bs(src);
4785     } else {
4786         src_bs = bs;
4787     }
4788 
4789     QSIMPLEQ_FOREACH_SAFE(act, &actions, next, act_next) {
4790         switch (act->act) {
4791         case BITMAP_ADD:
4792             qmp_block_dirty_bitmap_add(bs->node_name, bitmap,
4793                                        !!granularity, granularity, true, true,
4794                                        false, false, &err);
4795             op = "add";
4796             break;
4797         case BITMAP_REMOVE:
4798             qmp_block_dirty_bitmap_remove(bs->node_name, bitmap, &err);
4799             op = "remove";
4800             break;
4801         case BITMAP_CLEAR:
4802             qmp_block_dirty_bitmap_clear(bs->node_name, bitmap, &err);
4803             op = "clear";
4804             break;
4805         case BITMAP_ENABLE:
4806             qmp_block_dirty_bitmap_enable(bs->node_name, bitmap, &err);
4807             op = "enable";
4808             break;
4809         case BITMAP_DISABLE:
4810             qmp_block_dirty_bitmap_disable(bs->node_name, bitmap, &err);
4811             op = "disable";
4812             break;
4813         case BITMAP_MERGE:
4814             do_dirty_bitmap_merge(bs->node_name, bitmap, src_bs->node_name,
4815                                   act->src, &err);
4816             op = "merge";
4817             break;
4818         default:
4819             g_assert_not_reached();
4820         }
4821 
4822         if (err) {
4823             error_reportf_err(err, "Operation %s on bitmap %s failed: ",
4824                               op, bitmap);
4825             goto out;
4826         }
4827         g_free(act);
4828     }
4829 
4830     ret = 0;
4831 
4832  out:
4833     blk_unref(src);
4834     blk_unref(blk);
4835     qemu_opts_del(opts);
4836     return ret;
4837 }
4838 
4839 #define C_BS      01
4840 #define C_COUNT   02
4841 #define C_IF      04
4842 #define C_OF      010
4843 #define C_SKIP    020
4844 
4845 struct DdInfo {
4846     unsigned int flags;
4847     int64_t count;
4848 };
4849 
4850 struct DdIo {
4851     int bsz;    /* Block size */
4852     char *filename;
4853     uint8_t *buf;
4854     int64_t offset;
4855 };
4856 
4857 struct DdOpts {
4858     const char *name;
4859     int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
4860     unsigned int flag;
4861 };
4862 
4863 static int img_dd_bs(const char *arg,
4864                      struct DdIo *in, struct DdIo *out,
4865                      struct DdInfo *dd)
4866 {
4867     int64_t res;
4868 
4869     res = cvtnum_full("bs", arg, 1, INT_MAX);
4870 
4871     if (res < 0) {
4872         return 1;
4873     }
4874     in->bsz = out->bsz = res;
4875 
4876     return 0;
4877 }
4878 
4879 static int img_dd_count(const char *arg,
4880                         struct DdIo *in, struct DdIo *out,
4881                         struct DdInfo *dd)
4882 {
4883     dd->count = cvtnum("count", arg);
4884 
4885     if (dd->count < 0) {
4886         return 1;
4887     }
4888 
4889     return 0;
4890 }
4891 
4892 static int img_dd_if(const char *arg,
4893                      struct DdIo *in, struct DdIo *out,
4894                      struct DdInfo *dd)
4895 {
4896     in->filename = g_strdup(arg);
4897 
4898     return 0;
4899 }
4900 
4901 static int img_dd_of(const char *arg,
4902                      struct DdIo *in, struct DdIo *out,
4903                      struct DdInfo *dd)
4904 {
4905     out->filename = g_strdup(arg);
4906 
4907     return 0;
4908 }
4909 
4910 static int img_dd_skip(const char *arg,
4911                        struct DdIo *in, struct DdIo *out,
4912                        struct DdInfo *dd)
4913 {
4914     in->offset = cvtnum("skip", arg);
4915 
4916     if (in->offset < 0) {
4917         return 1;
4918     }
4919 
4920     return 0;
4921 }
4922 
4923 static int img_dd(int argc, char **argv)
4924 {
4925     int ret = 0;
4926     char *arg = NULL;
4927     char *tmp;
4928     BlockDriver *drv = NULL, *proto_drv = NULL;
4929     BlockBackend *blk1 = NULL, *blk2 = NULL;
4930     QemuOpts *opts = NULL;
4931     QemuOptsList *create_opts = NULL;
4932     Error *local_err = NULL;
4933     bool image_opts = false;
4934     int c, i;
4935     const char *out_fmt = "raw";
4936     const char *fmt = NULL;
4937     int64_t size = 0;
4938     int64_t out_pos, in_pos;
4939     bool force_share = false;
4940     struct DdInfo dd = {
4941         .flags = 0,
4942         .count = 0,
4943     };
4944     struct DdIo in = {
4945         .bsz = 512, /* Block size is by default 512 bytes */
4946         .filename = NULL,
4947         .buf = NULL,
4948         .offset = 0
4949     };
4950     struct DdIo out = {
4951         .bsz = 512,
4952         .filename = NULL,
4953         .buf = NULL,
4954         .offset = 0
4955     };
4956 
4957     const struct DdOpts options[] = {
4958         { "bs", img_dd_bs, C_BS },
4959         { "count", img_dd_count, C_COUNT },
4960         { "if", img_dd_if, C_IF },
4961         { "of", img_dd_of, C_OF },
4962         { "skip", img_dd_skip, C_SKIP },
4963         { NULL, NULL, 0 }
4964     };
4965     const struct option long_options[] = {
4966         { "help", no_argument, 0, 'h'},
4967         { "object", required_argument, 0, OPTION_OBJECT},
4968         { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4969         { "force-share", no_argument, 0, 'U'},
4970         { 0, 0, 0, 0 }
4971     };
4972 
4973     while ((c = getopt_long(argc, argv, ":hf:O:U", long_options, NULL))) {
4974         if (c == EOF) {
4975             break;
4976         }
4977         switch (c) {
4978         case 'O':
4979             out_fmt = optarg;
4980             break;
4981         case 'f':
4982             fmt = optarg;
4983             break;
4984         case ':':
4985             missing_argument(argv[optind - 1]);
4986             break;
4987         case '?':
4988             unrecognized_option(argv[optind - 1]);
4989             break;
4990         case 'h':
4991             help();
4992             break;
4993         case 'U':
4994             force_share = true;
4995             break;
4996         case OPTION_OBJECT:
4997             user_creatable_process_cmdline(optarg);
4998             break;
4999         case OPTION_IMAGE_OPTS:
5000             image_opts = true;
5001             break;
5002         }
5003     }
5004 
5005     for (i = optind; i < argc; i++) {
5006         int j;
5007         arg = g_strdup(argv[i]);
5008 
5009         tmp = strchr(arg, '=');
5010         if (tmp == NULL) {
5011             error_report("unrecognized operand %s", arg);
5012             ret = -1;
5013             goto out;
5014         }
5015 
5016         *tmp++ = '\0';
5017 
5018         for (j = 0; options[j].name != NULL; j++) {
5019             if (!strcmp(arg, options[j].name)) {
5020                 break;
5021             }
5022         }
5023         if (options[j].name == NULL) {
5024             error_report("unrecognized operand %s", arg);
5025             ret = -1;
5026             goto out;
5027         }
5028 
5029         if (options[j].f(tmp, &in, &out, &dd) != 0) {
5030             ret = -1;
5031             goto out;
5032         }
5033         dd.flags |= options[j].flag;
5034         g_free(arg);
5035         arg = NULL;
5036     }
5037 
5038     if (!(dd.flags & C_IF && dd.flags & C_OF)) {
5039         error_report("Must specify both input and output files");
5040         ret = -1;
5041         goto out;
5042     }
5043 
5044     blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
5045                     force_share);
5046 
5047     if (!blk1) {
5048         ret = -1;
5049         goto out;
5050     }
5051 
5052     drv = bdrv_find_format(out_fmt);
5053     if (!drv) {
5054         error_report("Unknown file format");
5055         ret = -1;
5056         goto out;
5057     }
5058     proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
5059 
5060     if (!proto_drv) {
5061         error_report_err(local_err);
5062         ret = -1;
5063         goto out;
5064     }
5065     if (!drv->create_opts) {
5066         error_report("Format driver '%s' does not support image creation",
5067                      drv->format_name);
5068         ret = -1;
5069         goto out;
5070     }
5071     if (!proto_drv->create_opts) {
5072         error_report("Protocol driver '%s' does not support image creation",
5073                      proto_drv->format_name);
5074         ret = -1;
5075         goto out;
5076     }
5077     create_opts = qemu_opts_append(create_opts, drv->create_opts);
5078     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5079 
5080     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5081 
5082     size = blk_getlength(blk1);
5083     if (size < 0) {
5084         error_report("Failed to get size for '%s'", in.filename);
5085         ret = -1;
5086         goto out;
5087     }
5088 
5089     if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
5090         dd.count * in.bsz < size) {
5091         size = dd.count * in.bsz;
5092     }
5093 
5094     /* Overflow means the specified offset is beyond input image's size */
5095     if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
5096                               size < in.bsz * in.offset)) {
5097         qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
5098     } else {
5099         qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
5100                             size - in.bsz * in.offset, &error_abort);
5101     }
5102 
5103     ret = bdrv_create(drv, out.filename, opts, &local_err);
5104     if (ret < 0) {
5105         error_reportf_err(local_err,
5106                           "%s: error while creating output image: ",
5107                           out.filename);
5108         ret = -1;
5109         goto out;
5110     }
5111 
5112     /* TODO, we can't honour --image-opts for the target,
5113      * since it needs to be given in a format compatible
5114      * with the bdrv_create() call above which does not
5115      * support image-opts style.
5116      */
5117     blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
5118                          false, false, false);
5119 
5120     if (!blk2) {
5121         ret = -1;
5122         goto out;
5123     }
5124 
5125     if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
5126                               size < in.offset * in.bsz)) {
5127         /* We give a warning if the skip option is bigger than the input
5128          * size and create an empty output disk image (i.e. like dd(1)).
5129          */
5130         error_report("%s: cannot skip to specified offset", in.filename);
5131         in_pos = size;
5132     } else {
5133         in_pos = in.offset * in.bsz;
5134     }
5135 
5136     in.buf = g_new(uint8_t, in.bsz);
5137 
5138     for (out_pos = 0; in_pos < size; ) {
5139         int bytes = (in_pos + in.bsz > size) ? size - in_pos : in.bsz;
5140 
5141         ret = blk_pread(blk1, in_pos, bytes, in.buf, 0);
5142         if (ret < 0) {
5143             error_report("error while reading from input image file: %s",
5144                          strerror(-ret));
5145             goto out;
5146         }
5147         in_pos += bytes;
5148 
5149         ret = blk_pwrite(blk2, out_pos, bytes, in.buf, 0);
5150         if (ret < 0) {
5151             error_report("error while writing to output image file: %s",
5152                          strerror(-ret));
5153             goto out;
5154         }
5155         out_pos += bytes;
5156     }
5157 
5158 out:
5159     g_free(arg);
5160     qemu_opts_del(opts);
5161     qemu_opts_free(create_opts);
5162     blk_unref(blk1);
5163     blk_unref(blk2);
5164     g_free(in.filename);
5165     g_free(out.filename);
5166     g_free(in.buf);
5167     g_free(out.buf);
5168 
5169     if (ret) {
5170         return 1;
5171     }
5172     return 0;
5173 }
5174 
5175 static void dump_json_block_measure_info(BlockMeasureInfo *info)
5176 {
5177     GString *str;
5178     QObject *obj;
5179     Visitor *v = qobject_output_visitor_new(&obj);
5180 
5181     visit_type_BlockMeasureInfo(v, NULL, &info, &error_abort);
5182     visit_complete(v, &obj);
5183     str = qobject_to_json_pretty(obj, true);
5184     assert(str != NULL);
5185     printf("%s\n", str->str);
5186     qobject_unref(obj);
5187     visit_free(v);
5188     g_string_free(str, true);
5189 }
5190 
5191 static int img_measure(int argc, char **argv)
5192 {
5193     static const struct option long_options[] = {
5194         {"help", no_argument, 0, 'h'},
5195         {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
5196         {"object", required_argument, 0, OPTION_OBJECT},
5197         {"output", required_argument, 0, OPTION_OUTPUT},
5198         {"size", required_argument, 0, OPTION_SIZE},
5199         {"force-share", no_argument, 0, 'U'},
5200         {0, 0, 0, 0}
5201     };
5202     OutputFormat output_format = OFORMAT_HUMAN;
5203     BlockBackend *in_blk = NULL;
5204     BlockDriver *drv;
5205     const char *filename = NULL;
5206     const char *fmt = NULL;
5207     const char *out_fmt = "raw";
5208     char *options = NULL;
5209     char *snapshot_name = NULL;
5210     bool force_share = false;
5211     QemuOpts *opts = NULL;
5212     QemuOpts *object_opts = NULL;
5213     QemuOpts *sn_opts = NULL;
5214     QemuOptsList *create_opts = NULL;
5215     bool image_opts = false;
5216     uint64_t img_size = UINT64_MAX;
5217     BlockMeasureInfo *info = NULL;
5218     Error *local_err = NULL;
5219     int ret = 1;
5220     int c;
5221 
5222     while ((c = getopt_long(argc, argv, "hf:O:o:l:U",
5223                             long_options, NULL)) != -1) {
5224         switch (c) {
5225         case '?':
5226         case 'h':
5227             help();
5228             break;
5229         case 'f':
5230             fmt = optarg;
5231             break;
5232         case 'O':
5233             out_fmt = optarg;
5234             break;
5235         case 'o':
5236             if (accumulate_options(&options, optarg) < 0) {
5237                 goto out;
5238             }
5239             break;
5240         case 'l':
5241             if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
5242                 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
5243                                                   optarg, false);
5244                 if (!sn_opts) {
5245                     error_report("Failed in parsing snapshot param '%s'",
5246                                  optarg);
5247                     goto out;
5248                 }
5249             } else {
5250                 snapshot_name = optarg;
5251             }
5252             break;
5253         case 'U':
5254             force_share = true;
5255             break;
5256         case OPTION_OBJECT:
5257             user_creatable_process_cmdline(optarg);
5258             break;
5259         case OPTION_IMAGE_OPTS:
5260             image_opts = true;
5261             break;
5262         case OPTION_OUTPUT:
5263             if (!strcmp(optarg, "json")) {
5264                 output_format = OFORMAT_JSON;
5265             } else if (!strcmp(optarg, "human")) {
5266                 output_format = OFORMAT_HUMAN;
5267             } else {
5268                 error_report("--output must be used with human or json "
5269                              "as argument.");
5270                 goto out;
5271             }
5272             break;
5273         case OPTION_SIZE:
5274         {
5275             int64_t sval;
5276 
5277             sval = cvtnum("image size", optarg);
5278             if (sval < 0) {
5279                 goto out;
5280             }
5281             img_size = (uint64_t)sval;
5282         }
5283         break;
5284         }
5285     }
5286 
5287     if (argc - optind > 1) {
5288         error_report("At most one filename argument is allowed.");
5289         goto out;
5290     } else if (argc - optind == 1) {
5291         filename = argv[optind];
5292     }
5293 
5294     if (!filename && (image_opts || fmt || snapshot_name || sn_opts)) {
5295         error_report("--image-opts, -f, and -l require a filename argument.");
5296         goto out;
5297     }
5298     if (filename && img_size != UINT64_MAX) {
5299         error_report("--size N cannot be used together with a filename.");
5300         goto out;
5301     }
5302     if (!filename && img_size == UINT64_MAX) {
5303         error_report("Either --size N or one filename must be specified.");
5304         goto out;
5305     }
5306 
5307     if (filename) {
5308         in_blk = img_open(image_opts, filename, fmt, 0,
5309                           false, false, force_share);
5310         if (!in_blk) {
5311             goto out;
5312         }
5313 
5314         if (sn_opts) {
5315             bdrv_snapshot_load_tmp(blk_bs(in_blk),
5316                     qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
5317                     qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
5318                     &local_err);
5319         } else if (snapshot_name != NULL) {
5320             bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk),
5321                     snapshot_name, &local_err);
5322         }
5323         if (local_err) {
5324             error_reportf_err(local_err, "Failed to load snapshot: ");
5325             goto out;
5326         }
5327     }
5328 
5329     drv = bdrv_find_format(out_fmt);
5330     if (!drv) {
5331         error_report("Unknown file format '%s'", out_fmt);
5332         goto out;
5333     }
5334     if (!drv->create_opts) {
5335         error_report("Format driver '%s' does not support image creation",
5336                      drv->format_name);
5337         goto out;
5338     }
5339 
5340     create_opts = qemu_opts_append(create_opts, drv->create_opts);
5341     create_opts = qemu_opts_append(create_opts, bdrv_file.create_opts);
5342     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5343     if (options) {
5344         if (!qemu_opts_do_parse(opts, options, NULL, &local_err)) {
5345             error_report_err(local_err);
5346             error_report("Invalid options for file format '%s'", out_fmt);
5347             goto out;
5348         }
5349     }
5350     if (img_size != UINT64_MAX) {
5351         qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
5352     }
5353 
5354     info = bdrv_measure(drv, opts, in_blk ? blk_bs(in_blk) : NULL, &local_err);
5355     if (local_err) {
5356         error_report_err(local_err);
5357         goto out;
5358     }
5359 
5360     if (output_format == OFORMAT_HUMAN) {
5361         printf("required size: %" PRIu64 "\n", info->required);
5362         printf("fully allocated size: %" PRIu64 "\n", info->fully_allocated);
5363         if (info->has_bitmaps) {
5364             printf("bitmaps size: %" PRIu64 "\n", info->bitmaps);
5365         }
5366     } else {
5367         dump_json_block_measure_info(info);
5368     }
5369 
5370     ret = 0;
5371 
5372 out:
5373     qapi_free_BlockMeasureInfo(info);
5374     qemu_opts_del(object_opts);
5375     qemu_opts_del(opts);
5376     qemu_opts_del(sn_opts);
5377     qemu_opts_free(create_opts);
5378     g_free(options);
5379     blk_unref(in_blk);
5380     return ret;
5381 }
5382 
5383 static const img_cmd_t img_cmds[] = {
5384 #define DEF(option, callback, arg_string)        \
5385     { option, callback },
5386 #include "qemu-img-cmds.h"
5387 #undef DEF
5388     { NULL, NULL, },
5389 };
5390 
5391 int main(int argc, char **argv)
5392 {
5393     const img_cmd_t *cmd;
5394     const char *cmdname;
5395     int c;
5396     static const struct option long_options[] = {
5397         {"help", no_argument, 0, 'h'},
5398         {"version", no_argument, 0, 'V'},
5399         {"trace", required_argument, NULL, 'T'},
5400         {0, 0, 0, 0}
5401     };
5402 
5403 #ifdef CONFIG_POSIX
5404     signal(SIGPIPE, SIG_IGN);
5405 #endif
5406 
5407     socket_init();
5408     error_init(argv[0]);
5409     module_call_init(MODULE_INIT_TRACE);
5410     qemu_init_exec_dir(argv[0]);
5411 
5412     qemu_init_main_loop(&error_fatal);
5413 
5414     qcrypto_init(&error_fatal);
5415 
5416     module_call_init(MODULE_INIT_QOM);
5417     bdrv_init();
5418     if (argc < 2) {
5419         error_exit("Not enough arguments");
5420     }
5421 
5422     qemu_add_opts(&qemu_source_opts);
5423     qemu_add_opts(&qemu_trace_opts);
5424 
5425     while ((c = getopt_long(argc, argv, "+:hVT:", long_options, NULL)) != -1) {
5426         switch (c) {
5427         case ':':
5428             missing_argument(argv[optind - 1]);
5429             return 0;
5430         case '?':
5431             unrecognized_option(argv[optind - 1]);
5432             return 0;
5433         case 'h':
5434             help();
5435             return 0;
5436         case 'V':
5437             printf(QEMU_IMG_VERSION);
5438             return 0;
5439         case 'T':
5440             trace_opt_parse(optarg);
5441             break;
5442         }
5443     }
5444 
5445     cmdname = argv[optind];
5446 
5447     /* reset getopt_long scanning */
5448     argc -= optind;
5449     if (argc < 1) {
5450         return 0;
5451     }
5452     argv += optind;
5453     qemu_reset_optind();
5454 
5455     if (!trace_init_backends()) {
5456         exit(1);
5457     }
5458     trace_init_file();
5459     qemu_set_log(LOG_TRACE, &error_fatal);
5460 
5461     /* find the command */
5462     for (cmd = img_cmds; cmd->name != NULL; cmd++) {
5463         if (!strcmp(cmdname, cmd->name)) {
5464             return cmd->handler(argc, argv);
5465         }
5466     }
5467 
5468     /* not found */
5469     error_exit("Command not found: %s", cmdname);
5470 }
5471