2 * QEMU disk image utility
4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
28 #include "qemu-common.h"
29 #include "qemu-version.h"
30 #include "qapi/error.h"
31 #include "qapi/qapi-visit-block-core.h"
32 #include "qapi/qobject-output-visitor.h"
33 #include "qapi/qmp/qjson.h"
34 #include "qapi/qmp/qdict.h"
35 #include "qapi/qmp/qstring.h"
36 #include "qemu/cutils.h"
37 #include "qemu/config-file.h"
38 #include "qemu/option.h"
39 #include "qemu/error-report.h"
41 #include "qemu/main-loop.h"
42 #include "qemu/module.h"
43 #include "qemu/units.h"
44 #include "qom/object_interfaces.h"
45 #include "sysemu/block-backend.h"
46 #include "block/block_int.h"
47 #include "block/blockjob.h"
48 #include "block/qapi.h"
49 #include "crypto/init.h"
50 #include "trace/control.h"
52 #define QEMU_IMG_VERSION "qemu-img version " QEMU_FULL_VERSION \
53 "\n" QEMU_COPYRIGHT "\n"
55 typedef struct img_cmd_t
{
57 int (*handler
)(int argc
, char **argv
);
62 OPTION_BACKING_CHAIN
= 257,
64 OPTION_IMAGE_OPTS
= 259,
66 OPTION_FLUSH_INTERVAL
= 261,
67 OPTION_NO_DRAIN
= 262,
68 OPTION_TARGET_IMAGE_OPTS
= 263,
70 OPTION_PREALLOCATION
= 265,
73 OPTION_TARGET_IS_ZERO
= 268,
76 typedef enum OutputFormat
{
81 /* Default to cache=writeback as data integrity is not important for qemu-img */
82 #define BDRV_DEFAULT_CACHE "writeback"
84 static void format_print(void *opaque
, const char *name
)
89 static void QEMU_NORETURN
GCC_FMT_ATTR(1, 2) error_exit(const char *fmt
, ...)
94 error_vreport(fmt
, ap
);
97 error_printf("Try 'qemu-img --help' for more information\n");
101 static void QEMU_NORETURN
missing_argument(const char *option
)
103 error_exit("missing argument for option '%s'", option
);
106 static void QEMU_NORETURN
unrecognized_option(const char *option
)
108 error_exit("unrecognized option '%s'", option
);
111 /* Please keep in synch with qemu-img.texi */
112 static void QEMU_NORETURN
help(void)
114 const char *help_msg
=
116 "usage: qemu-img [standard options] command [command options]\n"
117 "QEMU disk image utility\n"
119 " '-h', '--help' display this help and exit\n"
120 " '-V', '--version' output version information and exit\n"
121 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
122 " specify tracing options\n"
125 #define DEF(option, callback, arg_string) \
127 #include "qemu-img-cmds.h"
130 "Command parameters:\n"
131 " 'filename' is a disk image filename\n"
132 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
133 " manual page for a description of the object properties. The most common\n"
134 " object type is a 'secret', which is used to supply passwords and/or\n"
135 " encryption keys.\n"
136 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
137 " 'cache' is the cache mode used to write the output disk image, the valid\n"
138 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
139 " 'directsync' and 'unsafe' (default for convert)\n"
140 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
141 " options are the same as for the 'cache' option\n"
142 " 'size' is the disk image size in bytes. Optional suffixes\n"
143 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
144 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
145 " supported. 'b' is ignored.\n"
146 " 'output_filename' is the destination disk image filename\n"
147 " 'output_fmt' is the destination format\n"
148 " 'options' is a comma separated list of format specific options in a\n"
149 " name=value format. Use -o ? for an overview of the options supported by the\n"
151 " 'snapshot_param' is param used for internal snapshot, format\n"
152 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
154 " '-c' indicates that target image must be compressed (qcow format only)\n"
155 " '-u' allows unsafe backing chains. For rebasing, it is assumed that old and\n"
156 " new backing file match exactly. The image doesn't need a working\n"
157 " backing file before rebasing in this case (useful for renaming the\n"
158 " backing file). For image creation, allow creating without attempting\n"
159 " to open the backing file.\n"
160 " '-h' with or without a command shows this help and lists the supported formats\n"
161 " '-p' show progress of command (only certain commands)\n"
162 " '-q' use Quiet mode - do not print any output (except errors)\n"
163 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
164 " contain only zeros for qemu-img to create a sparse image during\n"
165 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
166 " unallocated or zero sectors, and the destination image will always be\n"
168 " '--output' takes the format in which the output must be done (human or json)\n"
169 " '-n' skips the target volume creation (useful if the volume is created\n"
170 " prior to running qemu-img)\n"
172 "Parameters to check subcommand:\n"
173 " '-r' tries to repair any inconsistencies that are found during the check.\n"
174 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
175 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
176 " hiding corruption that has already occurred.\n"
178 "Parameters to convert subcommand:\n"
179 " '-m' specifies how many coroutines work in parallel during the convert\n"
180 " process (defaults to 8)\n"
181 " '-W' allow to write to the target out of order rather than sequential\n"
183 "Parameters to snapshot subcommand:\n"
184 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
185 " '-a' applies a snapshot (revert disk to saved state)\n"
186 " '-c' creates a snapshot\n"
187 " '-d' deletes a snapshot\n"
188 " '-l' lists all snapshots in the given image\n"
190 "Parameters to compare subcommand:\n"
191 " '-f' first image format\n"
192 " '-F' second image format\n"
193 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
195 "Parameters to dd subcommand:\n"
196 " 'bs=BYTES' read and write up to BYTES bytes at a time "
198 " 'count=N' copy only N input blocks\n"
199 " 'if=FILE' read from FILE\n"
200 " 'of=FILE' write to FILE\n"
201 " 'skip=N' skip N bs-sized blocks at the start of input\n";
203 printf("%s\nSupported formats:", help_msg
);
204 bdrv_iterate_format(format_print
, NULL
, false);
205 printf("\n\n" QEMU_HELP_BOTTOM
"\n");
209 static QemuOptsList qemu_object_opts
= {
211 .implied_opt_name
= "qom-type",
212 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
218 static bool qemu_img_object_print_help(const char *type
, QemuOpts
*opts
)
220 if (user_creatable_print_help(type
, opts
)) {
227 * Is @optarg safe for accumulate_options()?
228 * It is when multiple of them can be joined together separated by ','.
229 * To make that work, @optarg must not start with ',' (or else a
230 * separating ',' preceding it gets escaped), and it must not end with
231 * an odd number of ',' (or else a separating ',' following it gets
232 * escaped), or be empty (or else a separating ',' preceding it can
233 * escape a separating ',' following it).
236 static bool is_valid_option_list(const char *optarg
)
238 size_t len
= strlen(optarg
);
241 if (!optarg
[0] || optarg
[0] == ',') {
245 for (i
= len
; i
> 0 && optarg
[i
- 1] == ','; i
--) {
254 static int accumulate_options(char **options
, char *optarg
)
258 if (!is_valid_option_list(optarg
)) {
259 error_report("Invalid option list: %s", optarg
);
264 *options
= g_strdup(optarg
);
266 new_options
= g_strdup_printf("%s,%s", *options
, optarg
);
268 *options
= new_options
;
273 static QemuOptsList qemu_source_opts
= {
275 .implied_opt_name
= "file",
276 .head
= QTAILQ_HEAD_INITIALIZER(qemu_source_opts
.head
),
282 static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet
, const char *fmt
, ...)
288 ret
= vprintf(fmt
, args
);
295 static int print_block_option_help(const char *filename
, const char *fmt
)
297 BlockDriver
*drv
, *proto_drv
;
298 QemuOptsList
*create_opts
= NULL
;
299 Error
*local_err
= NULL
;
301 /* Find driver and parse its options */
302 drv
= bdrv_find_format(fmt
);
304 error_report("Unknown file format '%s'", fmt
);
308 if (!drv
->create_opts
) {
309 error_report("Format driver '%s' does not support image creation", fmt
);
313 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
315 proto_drv
= bdrv_find_protocol(filename
, true, &local_err
);
317 error_report_err(local_err
);
318 qemu_opts_free(create_opts
);
321 if (!proto_drv
->create_opts
) {
322 error_report("Protocol driver '%s' does not support image creation",
323 proto_drv
->format_name
);
324 qemu_opts_free(create_opts
);
327 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
331 printf("Supported options:\n");
333 printf("Supported %s options:\n", fmt
);
335 qemu_opts_print_help(create_opts
, false);
336 qemu_opts_free(create_opts
);
340 "The protocol level may support further options.\n"
341 "Specify the target filename to include those options.\n");
348 static BlockBackend
*img_open_opts(const char *optstr
,
349 QemuOpts
*opts
, int flags
, bool writethrough
,
350 bool quiet
, bool force_share
)
353 Error
*local_err
= NULL
;
355 options
= qemu_opts_to_qdict(opts
, NULL
);
357 if (qdict_haskey(options
, BDRV_OPT_FORCE_SHARE
)
358 && strcmp(qdict_get_str(options
, BDRV_OPT_FORCE_SHARE
), "on")) {
359 error_report("--force-share/-U conflicts with image options");
360 qobject_unref(options
);
363 qdict_put_str(options
, BDRV_OPT_FORCE_SHARE
, "on");
365 blk
= blk_new_open(NULL
, NULL
, options
, flags
, &local_err
);
367 error_reportf_err(local_err
, "Could not open '%s': ", optstr
);
370 blk_set_enable_write_cache(blk
, !writethrough
);
375 static BlockBackend
*img_open_file(const char *filename
,
377 const char *fmt
, int flags
,
378 bool writethrough
, bool quiet
,
382 Error
*local_err
= NULL
;
385 options
= qdict_new();
388 qdict_put_str(options
, "driver", fmt
);
392 qdict_put_bool(options
, BDRV_OPT_FORCE_SHARE
, true);
394 blk
= blk_new_open(filename
, NULL
, options
, flags
, &local_err
);
396 error_reportf_err(local_err
, "Could not open '%s': ", filename
);
399 blk_set_enable_write_cache(blk
, !writethrough
);
405 static int img_add_key_secrets(void *opaque
,
406 const char *name
, const char *value
,
409 QDict
*options
= opaque
;
411 if (g_str_has_suffix(name
, "key-secret")) {
412 qdict_put_str(options
, name
, value
);
419 static BlockBackend
*img_open(bool image_opts
,
420 const char *filename
,
421 const char *fmt
, int flags
, bool writethrough
,
422 bool quiet
, bool force_share
)
428 error_report("--image-opts and --format are mutually exclusive");
431 opts
= qemu_opts_parse_noisily(qemu_find_opts("source"),
436 blk
= img_open_opts(filename
, opts
, flags
, writethrough
, quiet
,
439 blk
= img_open_file(filename
, NULL
, fmt
, flags
, writethrough
, quiet
,
446 static int add_old_style_options(const char *fmt
, QemuOpts
*opts
,
447 const char *base_filename
,
448 const char *base_fmt
)
453 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
, &err
);
455 error_report("Backing file not supported for file format '%s'",
462 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, &err
);
464 error_report("Backing file format not supported for file "
473 static int64_t cvtnum_full(const char *name
, const char *value
, int64_t min
,
479 err
= qemu_strtosz(value
, NULL
, &res
);
480 if (err
< 0 && err
!= -ERANGE
) {
481 error_report("Invalid %s specified. You may use "
482 "k, M, G, T, P or E suffixes for", name
);
483 error_report("kilobytes, megabytes, gigabytes, terabytes, "
484 "petabytes and exabytes.");
487 if (err
== -ERANGE
|| res
> max
|| res
< min
) {
488 error_report("Invalid %s specified. Must be between %" PRId64
489 " and %" PRId64
".", name
, min
, max
);
495 static int64_t cvtnum(const char *name
, const char *value
)
497 return cvtnum_full(name
, value
, 0, INT64_MAX
);
500 static int img_create(int argc
, char **argv
)
503 uint64_t img_size
= -1;
504 const char *fmt
= "raw";
505 const char *base_fmt
= NULL
;
506 const char *filename
;
507 const char *base_filename
= NULL
;
508 char *options
= NULL
;
509 Error
*local_err
= NULL
;
514 static const struct option long_options
[] = {
515 {"help", no_argument
, 0, 'h'},
516 {"object", required_argument
, 0, OPTION_OBJECT
},
519 c
= getopt_long(argc
, argv
, ":F:b:f:ho:qu",
526 missing_argument(argv
[optind
- 1]);
529 unrecognized_option(argv
[optind
- 1]);
538 base_filename
= optarg
;
544 if (accumulate_options(&options
, optarg
) < 0) {
552 flags
|= BDRV_O_NO_BACKING
;
554 case OPTION_OBJECT
: {
556 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
565 /* Get the filename */
566 filename
= (optind
< argc
) ? argv
[optind
] : NULL
;
567 if (options
&& has_help_option(options
)) {
569 return print_block_option_help(filename
, fmt
);
572 if (optind
>= argc
) {
573 error_exit("Expecting image file name");
577 if (qemu_opts_foreach(&qemu_object_opts
,
578 user_creatable_add_opts_foreach
,
579 qemu_img_object_print_help
, &error_fatal
)) {
583 /* Get image size, if specified */
587 sval
= cvtnum("image size", argv
[optind
++]);
591 img_size
= (uint64_t)sval
;
593 if (optind
!= argc
) {
594 error_exit("Unexpected argument: %s", argv
[optind
]);
597 bdrv_img_create(filename
, fmt
, base_filename
, base_fmt
,
598 options
, img_size
, flags
, quiet
, &local_err
);
600 error_reportf_err(local_err
, "%s: ", filename
);
612 static void dump_json_image_check(ImageCheck
*check
, bool quiet
)
616 Visitor
*v
= qobject_output_visitor_new(&obj
);
618 visit_type_ImageCheck(v
, NULL
, &check
, &error_abort
);
619 visit_complete(v
, &obj
);
620 str
= qobject_to_json_pretty(obj
);
622 qprintf(quiet
, "%s\n", qstring_get_str(str
));
628 static void dump_human_image_check(ImageCheck
*check
, bool quiet
)
630 if (!(check
->corruptions
|| check
->leaks
|| check
->check_errors
)) {
631 qprintf(quiet
, "No errors were found on the image.\n");
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 "
642 "\n%" PRId64
" leaked clusters were found on the image.\n"
643 "This means waste of disk space, but no harm to data.\n",
647 if (check
->check_errors
) {
650 " internal errors have occurred during the check.\n",
651 check
->check_errors
);
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
);
665 if (check
->image_end_offset
) {
667 "Image end offset: %" PRId64
"\n", check
->image_end_offset
);
671 static int collect_image_check(BlockDriverState
*bs
,
673 const char *filename
,
678 BdrvCheckResult result
;
680 ret
= bdrv_check(bs
, &result
, fix
);
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;
711 * Checks an image for consistency. Exit codes:
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
719 static int img_check(int argc
, char **argv
)
722 OutputFormat output_format
= OFORMAT_HUMAN
;
723 const char *filename
, *fmt
, *output
, *cache
;
725 BlockDriverState
*bs
;
727 int flags
= BDRV_O_CHECK
;
731 bool image_opts
= false;
732 bool force_share
= false;
736 cache
= BDRV_DEFAULT_CACHE
;
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'},
750 c
= getopt_long(argc
, argv
, ":hf:r:T:qU",
751 long_options
, &option_index
);
757 missing_argument(argv
[optind
- 1]);
760 unrecognized_option(argv
[optind
- 1]);
769 flags
|= BDRV_O_RDWR
;
771 if (!strcmp(optarg
, "leaks")) {
772 fix
= BDRV_FIX_LEAKS
;
773 } else if (!strcmp(optarg
, "all")) {
774 fix
= BDRV_FIX_LEAKS
| BDRV_FIX_ERRORS
;
776 error_exit("Unknown option value for -r "
777 "(expecting 'leaks' or 'all'): %s", optarg
);
792 case OPTION_OBJECT
: {
794 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
800 case OPTION_IMAGE_OPTS
:
805 if (optind
!= argc
- 1) {
806 error_exit("Expecting one image file name");
808 filename
= argv
[optind
++];
810 if (output
&& !strcmp(output
, "json")) {
811 output_format
= OFORMAT_JSON
;
812 } else if (output
&& !strcmp(output
, "human")) {
813 output_format
= OFORMAT_HUMAN
;
815 error_report("--output must be used with human or json as argument.");
819 if (qemu_opts_foreach(&qemu_object_opts
,
820 user_creatable_add_opts_foreach
,
821 qemu_img_object_print_help
, &error_fatal
)) {
825 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
827 error_report("Invalid source cache option: %s", cache
);
831 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
838 check
= g_new0(ImageCheck
, 1);
839 ret
= collect_image_check(bs
, check
, filename
, fmt
, fix
);
841 if (ret
== -ENOTSUP
) {
842 error_report("This image format does not support checks");
847 if (check
->corruptions_fixed
|| check
->leaks_fixed
) {
848 int corruptions_fixed
, leaks_fixed
;
849 bool has_leaks_fixed
, has_corruptions_fixed
;
851 leaks_fixed
= check
->leaks_fixed
;
852 has_leaks_fixed
= check
->has_leaks_fixed
;
853 corruptions_fixed
= check
->corruptions_fixed
;
854 has_corruptions_fixed
= check
->has_corruptions_fixed
;
856 if (output_format
== OFORMAT_HUMAN
) {
858 "The following inconsistencies were found and repaired:\n\n"
859 " %" PRId64
" leaked clusters\n"
860 " %" PRId64
" corruptions\n\n"
861 "Double checking the fixed image now...\n",
863 check
->corruptions_fixed
);
866 qapi_free_ImageCheck(check
);
867 check
= g_new0(ImageCheck
, 1);
868 ret
= collect_image_check(bs
, check
, filename
, fmt
, 0);
870 check
->leaks_fixed
= leaks_fixed
;
871 check
->has_leaks_fixed
= has_leaks_fixed
;
872 check
->corruptions_fixed
= corruptions_fixed
;
873 check
->has_corruptions_fixed
= has_corruptions_fixed
;
877 switch (output_format
) {
879 dump_human_image_check(check
, quiet
);
882 dump_json_image_check(check
, quiet
);
887 if (ret
|| check
->check_errors
) {
889 error_report("Check failed: %s", strerror(-ret
));
891 error_report("Check failed");
897 if (check
->corruptions
) {
899 } else if (check
->leaks
) {
906 qapi_free_ImageCheck(check
);
911 typedef struct CommonBlockJobCBInfo
{
912 BlockDriverState
*bs
;
914 } CommonBlockJobCBInfo
;
916 static void common_block_job_cb(void *opaque
, int ret
)
918 CommonBlockJobCBInfo
*cbi
= opaque
;
921 error_setg_errno(cbi
->errp
, -ret
, "Block job failed");
925 static void run_block_job(BlockJob
*job
, Error
**errp
)
927 AioContext
*aio_context
= blk_get_aio_context(job
->blk
);
930 aio_context_acquire(aio_context
);
933 float progress
= 0.0f
;
934 aio_poll(aio_context
, true);
935 if (job
->job
.progress
.total
) {
936 progress
= (float)job
->job
.progress
.current
/
937 job
->job
.progress
.total
* 100.f
;
939 qemu_progress_print(progress
, 0);
940 } while (!job_is_ready(&job
->job
) && !job_is_completed(&job
->job
));
942 if (!job_is_completed(&job
->job
)) {
943 ret
= job_complete_sync(&job
->job
, errp
);
947 job_unref(&job
->job
);
948 aio_context_release(aio_context
);
950 /* publish completion progress only when success */
952 qemu_progress_print(100.f
, 0);
956 static int img_commit(int argc
, char **argv
)
959 const char *filename
, *fmt
, *cache
, *base
;
961 BlockDriverState
*bs
, *base_bs
;
963 bool progress
= false, quiet
= false, drop
= false;
965 Error
*local_err
= NULL
;
966 CommonBlockJobCBInfo cbi
;
967 bool image_opts
= false;
968 AioContext
*aio_context
;
971 cache
= BDRV_DEFAULT_CACHE
;
974 static const struct option long_options
[] = {
975 {"help", no_argument
, 0, 'h'},
976 {"object", required_argument
, 0, OPTION_OBJECT
},
977 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
980 c
= getopt_long(argc
, argv
, ":f:ht:b:dpq",
987 missing_argument(argv
[optind
- 1]);
990 unrecognized_option(argv
[optind
- 1]);
1015 case OPTION_OBJECT
: {
1017 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
1023 case OPTION_IMAGE_OPTS
:
1029 /* Progress is not shown in Quiet mode */
1034 if (optind
!= argc
- 1) {
1035 error_exit("Expecting one image file name");
1037 filename
= argv
[optind
++];
1039 if (qemu_opts_foreach(&qemu_object_opts
,
1040 user_creatable_add_opts_foreach
,
1041 qemu_img_object_print_help
, &error_fatal
)) {
1045 flags
= BDRV_O_RDWR
| BDRV_O_UNMAP
;
1046 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
1048 error_report("Invalid cache option: %s", cache
);
1052 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
1059 qemu_progress_init(progress
, 1.f
);
1060 qemu_progress_print(0.f
, 100);
1063 base_bs
= bdrv_find_backing_image(bs
, base
);
1065 error_setg(&local_err
,
1066 "Did not find '%s' in the backing chain of '%s'",
1071 /* This is different from QMP, which by default uses the deepest file in
1072 * the backing chain (i.e., the very base); however, the traditional
1073 * behavior of qemu-img commit is using the immediate backing file. */
1074 base_bs
= backing_bs(bs
);
1076 error_setg(&local_err
, "Image does not have a backing file");
1081 cbi
= (CommonBlockJobCBInfo
){
1086 aio_context
= bdrv_get_aio_context(bs
);
1087 aio_context_acquire(aio_context
);
1088 commit_active_start("commit", bs
, base_bs
, JOB_DEFAULT
, 0,
1089 BLOCKDEV_ON_ERROR_REPORT
, NULL
, common_block_job_cb
,
1090 &cbi
, false, &local_err
);
1091 aio_context_release(aio_context
);
1096 /* When the block job completes, the BlockBackend reference will point to
1097 * the old backing file. In order to avoid that the top image is already
1098 * deleted, so we can still empty it afterwards, increment the reference
1099 * counter here preemptively. */
1104 job
= block_job_get("commit");
1106 run_block_job(job
, &local_err
);
1111 if (!drop
&& bs
->drv
->bdrv_make_empty
) {
1112 ret
= bs
->drv
->bdrv_make_empty(bs
);
1114 error_setg_errno(&local_err
, -ret
, "Could not empty %s",
1126 qemu_progress_end();
1131 error_report_err(local_err
);
1135 qprintf(quiet
, "Image committed.\n");
1140 * Returns -1 if 'buf' contains only zeroes, otherwise the byte index
1141 * of the first sector boundary within buf where the sector contains a
1142 * non-zero byte. This function is robust to a buffer that is not
1145 static int64_t find_nonzero(const uint8_t *buf
, int64_t n
)
1148 int64_t end
= QEMU_ALIGN_DOWN(n
, BDRV_SECTOR_SIZE
);
1150 for (i
= 0; i
< end
; i
+= BDRV_SECTOR_SIZE
) {
1151 if (!buffer_is_zero(buf
+ i
, BDRV_SECTOR_SIZE
)) {
1155 if (i
< n
&& !buffer_is_zero(buf
+ i
, n
- end
)) {
1162 * Returns true iff the first sector pointed to by 'buf' contains at least
1165 * 'pnum' is set to the number of sectors (including and immediately following
1166 * the first one) that are known to be in the same allocated/unallocated state.
1167 * The function will try to align the end offset to alignment boundaries so
1168 * that the request will at least end aligned and consequtive requests will
1169 * also start at an aligned offset.
1171 static int is_allocated_sectors(const uint8_t *buf
, int n
, int *pnum
,
1172 int64_t sector_num
, int alignment
)
1181 is_zero
= buffer_is_zero(buf
, 512);
1182 for(i
= 1; i
< n
; i
++) {
1184 if (is_zero
!= buffer_is_zero(buf
, 512)) {
1189 tail
= (sector_num
+ i
) & (alignment
- 1);
1191 if (is_zero
&& i
<= tail
) {
1192 /* treat unallocated areas which only consist
1193 * of a small tail as allocated. */
1197 /* align up end offset of allocated areas. */
1198 i
+= alignment
- tail
;
1201 /* align down end offset of zero areas. */
1210 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1211 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1212 * breaking up write requests for only small sparse areas.
1214 static int is_allocated_sectors_min(const uint8_t *buf
, int n
, int *pnum
,
1215 int min
, int64_t sector_num
, int alignment
)
1218 int num_checked
, num_used
;
1224 ret
= is_allocated_sectors(buf
, n
, pnum
, sector_num
, alignment
);
1230 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1232 sector_num
+= *pnum
;
1233 num_checked
= num_used
;
1236 ret
= is_allocated_sectors(buf
, n
, pnum
, sector_num
, alignment
);
1238 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1240 sector_num
+= *pnum
;
1241 num_checked
+= *pnum
;
1243 num_used
= num_checked
;
1244 } else if (*pnum
>= min
) {
1254 * Compares two buffers sector by sector. Returns 0 if the first
1255 * sector of each buffer matches, non-zero otherwise.
1257 * pnum is set to the sector-aligned size of the buffer prefix that
1258 * has the same matching status as the first sector.
1260 static int compare_buffers(const uint8_t *buf1
, const uint8_t *buf2
,
1261 int64_t bytes
, int64_t *pnum
)
1264 int64_t i
= MIN(bytes
, BDRV_SECTOR_SIZE
);
1268 res
= !!memcmp(buf1
, buf2
, i
);
1270 int64_t len
= MIN(bytes
- i
, BDRV_SECTOR_SIZE
);
1272 if (!!memcmp(buf1
+ i
, buf2
+ i
, len
) != res
) {
1282 #define IO_BUF_SIZE (2 * MiB)
1285 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1287 * Intended for use by 'qemu-img compare': Returns 0 in case sectors are
1288 * filled with 0, 1 if sectors contain non-zero data (this is a comparison
1289 * failure), and 4 on error (the exit status for read errors), after emitting
1292 * @param blk: BlockBackend for the image
1293 * @param offset: Starting offset to check
1294 * @param bytes: Number of bytes to check
1295 * @param filename: Name of disk file we are checking (logging purpose)
1296 * @param buffer: Allocated buffer for storing read data
1297 * @param quiet: Flag for quiet mode
1299 static int check_empty_sectors(BlockBackend
*blk
, int64_t offset
,
1300 int64_t bytes
, const char *filename
,
1301 uint8_t *buffer
, bool quiet
)
1306 ret
= blk_pread(blk
, offset
, buffer
, bytes
);
1308 error_report("Error while reading offset %" PRId64
" of %s: %s",
1309 offset
, filename
, strerror(-ret
));
1312 idx
= find_nonzero(buffer
, bytes
);
1314 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1323 * Compares two images. Exit codes:
1325 * 0 - Images are identical
1327 * >1 - Error occurred
1329 static int img_compare(int argc
, char **argv
)
1331 const char *fmt1
= NULL
, *fmt2
= NULL
, *cache
, *filename1
, *filename2
;
1332 BlockBackend
*blk1
, *blk2
;
1333 BlockDriverState
*bs1
, *bs2
;
1334 int64_t total_size1
, total_size2
;
1335 uint8_t *buf1
= NULL
, *buf2
= NULL
;
1336 int64_t pnum1
, pnum2
;
1337 int allocated1
, allocated2
;
1338 int ret
= 0; /* return value - 0 Ident, 1 Different, >1 Error */
1339 bool progress
= false, quiet
= false, strict
= false;
1346 uint64_t progress_base
;
1347 bool image_opts
= false;
1348 bool force_share
= false;
1350 cache
= BDRV_DEFAULT_CACHE
;
1352 static const struct option long_options
[] = {
1353 {"help", no_argument
, 0, 'h'},
1354 {"object", required_argument
, 0, OPTION_OBJECT
},
1355 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
1356 {"force-share", no_argument
, 0, 'U'},
1359 c
= getopt_long(argc
, argv
, ":hf:F:T:pqsU",
1360 long_options
, NULL
);
1366 missing_argument(argv
[optind
- 1]);
1369 unrecognized_option(argv
[optind
- 1]);
1395 case OPTION_OBJECT
: {
1397 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
1404 case OPTION_IMAGE_OPTS
:
1410 /* Progress is not shown in Quiet mode */
1416 if (optind
!= argc
- 2) {
1417 error_exit("Expecting two image file names");
1419 filename1
= argv
[optind
++];
1420 filename2
= argv
[optind
++];
1422 if (qemu_opts_foreach(&qemu_object_opts
,
1423 user_creatable_add_opts_foreach
,
1424 qemu_img_object_print_help
, &error_fatal
)) {
1429 /* Initialize before goto out */
1430 qemu_progress_init(progress
, 2.0);
1433 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
1435 error_report("Invalid source cache option: %s", cache
);
1440 blk1
= img_open(image_opts
, filename1
, fmt1
, flags
, writethrough
, quiet
,
1447 blk2
= img_open(image_opts
, filename2
, fmt2
, flags
, writethrough
, quiet
,
1456 buf1
= blk_blockalign(blk1
, IO_BUF_SIZE
);
1457 buf2
= blk_blockalign(blk2
, IO_BUF_SIZE
);
1458 total_size1
= blk_getlength(blk1
);
1459 if (total_size1
< 0) {
1460 error_report("Can't get size of %s: %s",
1461 filename1
, strerror(-total_size1
));
1465 total_size2
= blk_getlength(blk2
);
1466 if (total_size2
< 0) {
1467 error_report("Can't get size of %s: %s",
1468 filename2
, strerror(-total_size2
));
1472 total_size
= MIN(total_size1
, total_size2
);
1473 progress_base
= MAX(total_size1
, total_size2
);
1475 qemu_progress_print(0, 100);
1477 if (strict
&& total_size1
!= total_size2
) {
1479 qprintf(quiet
, "Strict mode: Image size mismatch!\n");
1483 while (offset
< total_size
) {
1484 int status1
, status2
;
1486 status1
= bdrv_block_status_above(bs1
, NULL
, offset
,
1487 total_size1
- offset
, &pnum1
, NULL
,
1491 error_report("Sector allocation test failed for %s", filename1
);
1494 allocated1
= status1
& BDRV_BLOCK_ALLOCATED
;
1496 status2
= bdrv_block_status_above(bs2
, NULL
, offset
,
1497 total_size2
- offset
, &pnum2
, NULL
,
1501 error_report("Sector allocation test failed for %s", filename2
);
1504 allocated2
= status2
& BDRV_BLOCK_ALLOCATED
;
1506 assert(pnum1
&& pnum2
);
1507 chunk
= MIN(pnum1
, pnum2
);
1510 if (status1
!= status2
) {
1512 qprintf(quiet
, "Strict mode: Offset %" PRId64
1513 " block status mismatch!\n", offset
);
1517 if ((status1
& BDRV_BLOCK_ZERO
) && (status2
& BDRV_BLOCK_ZERO
)) {
1519 } else if (allocated1
== allocated2
) {
1523 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1524 ret
= blk_pread(blk1
, offset
, buf1
, chunk
);
1526 error_report("Error while reading offset %" PRId64
1528 offset
, filename1
, strerror(-ret
));
1532 ret
= blk_pread(blk2
, offset
, buf2
, chunk
);
1534 error_report("Error while reading offset %" PRId64
1536 offset
, filename2
, strerror(-ret
));
1540 ret
= compare_buffers(buf1
, buf2
, chunk
, &pnum
);
1541 if (ret
|| pnum
!= chunk
) {
1542 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1543 offset
+ (ret
? 0 : pnum
));
1549 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1551 ret
= check_empty_sectors(blk1
, offset
, chunk
,
1552 filename1
, buf1
, quiet
);
1554 ret
= check_empty_sectors(blk2
, offset
, chunk
,
1555 filename2
, buf1
, quiet
);
1562 qemu_progress_print(((float) chunk
/ progress_base
) * 100, 100);
1565 if (total_size1
!= total_size2
) {
1566 BlockBackend
*blk_over
;
1567 const char *filename_over
;
1569 qprintf(quiet
, "Warning: Image size mismatch!\n");
1570 if (total_size1
> total_size2
) {
1572 filename_over
= filename1
;
1575 filename_over
= filename2
;
1578 while (offset
< progress_base
) {
1579 ret
= bdrv_block_status_above(blk_bs(blk_over
), NULL
, offset
,
1580 progress_base
- offset
, &chunk
,
1584 error_report("Sector allocation test failed for %s",
1589 if (ret
& BDRV_BLOCK_ALLOCATED
&& !(ret
& BDRV_BLOCK_ZERO
)) {
1590 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1591 ret
= check_empty_sectors(blk_over
, offset
, chunk
,
1592 filename_over
, buf1
, quiet
);
1598 qemu_progress_print(((float) chunk
/ progress_base
) * 100, 100);
1602 qprintf(quiet
, "Images are identical.\n");
1612 qemu_progress_end();
1617 enum ImgConvertBlockStatus
{
1623 #define MAX_COROUTINES 16
1625 typedef struct ImgConvertState
{
1627 int64_t *src_sectors
;
1629 int64_t total_sectors
;
1630 int64_t allocated_sectors
;
1631 int64_t allocated_done
;
1634 enum ImgConvertBlockStatus status
;
1635 int64_t sector_next_status
;
1636 BlockBackend
*target
;
1639 bool unallocated_blocks_are_zero
;
1641 bool target_has_backing
;
1642 int64_t target_backing_sectors
; /* negative if unknown */
1649 size_t cluster_sectors
;
1651 long num_coroutines
;
1652 int running_coroutines
;
1653 Coroutine
*co
[MAX_COROUTINES
];
1654 int64_t wait_sector_num
[MAX_COROUTINES
];
1659 static void convert_select_part(ImgConvertState
*s
, int64_t sector_num
,
1660 int *src_cur
, int64_t *src_cur_offset
)
1663 *src_cur_offset
= 0;
1664 while (sector_num
- *src_cur_offset
>= s
->src_sectors
[*src_cur
]) {
1665 *src_cur_offset
+= s
->src_sectors
[*src_cur
];
1667 assert(*src_cur
< s
->src_num
);
1671 static int convert_iteration_sectors(ImgConvertState
*s
, int64_t sector_num
)
1673 int64_t src_cur_offset
;
1674 int ret
, n
, src_cur
;
1675 bool post_backing_zero
= false;
1677 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1679 assert(s
->total_sectors
> sector_num
);
1680 n
= MIN(s
->total_sectors
- sector_num
, BDRV_REQUEST_MAX_SECTORS
);
1682 if (s
->target_backing_sectors
>= 0) {
1683 if (sector_num
>= s
->target_backing_sectors
) {
1684 post_backing_zero
= s
->unallocated_blocks_are_zero
;
1685 } else if (sector_num
+ n
> s
->target_backing_sectors
) {
1686 /* Split requests around target_backing_sectors (because
1687 * starting from there, zeros are handled differently) */
1688 n
= s
->target_backing_sectors
- sector_num
;
1692 if (s
->sector_next_status
<= sector_num
) {
1693 uint64_t offset
= (sector_num
- src_cur_offset
) * BDRV_SECTOR_SIZE
;
1697 count
= n
* BDRV_SECTOR_SIZE
;
1699 if (s
->target_has_backing
) {
1700 ret
= bdrv_block_status(blk_bs(s
->src
[src_cur
]), offset
,
1701 count
, &count
, NULL
, NULL
);
1703 ret
= bdrv_block_status_above(blk_bs(s
->src
[src_cur
]), NULL
,
1704 offset
, count
, &count
, NULL
,
1712 warn_report("error while reading block status at "
1713 "offset %" PRIu64
": %s", offset
,
1716 /* Just try to read the data, then */
1717 ret
= BDRV_BLOCK_DATA
;
1718 count
= BDRV_SECTOR_SIZE
;
1720 /* Retry on a shorter range */
1721 n
= DIV_ROUND_UP(n
, 4);
1724 error_report("error while reading block status at offset "
1725 "%" PRIu64
": %s", offset
, strerror(-ret
));
1731 n
= DIV_ROUND_UP(count
, BDRV_SECTOR_SIZE
);
1733 if (ret
& BDRV_BLOCK_ZERO
) {
1734 s
->status
= post_backing_zero
? BLK_BACKING_FILE
: BLK_ZERO
;
1735 } else if (ret
& BDRV_BLOCK_DATA
) {
1736 s
->status
= BLK_DATA
;
1738 s
->status
= s
->target_has_backing
? BLK_BACKING_FILE
: BLK_DATA
;
1741 s
->sector_next_status
= sector_num
+ n
;
1744 n
= MIN(n
, s
->sector_next_status
- sector_num
);
1745 if (s
->status
== BLK_DATA
) {
1746 n
= MIN(n
, s
->buf_sectors
);
1749 /* We need to write complete clusters for compressed images, so if an
1750 * unallocated area is shorter than that, we must consider the whole
1751 * cluster allocated. */
1752 if (s
->compressed
) {
1753 if (n
< s
->cluster_sectors
) {
1754 n
= MIN(s
->cluster_sectors
, s
->total_sectors
- sector_num
);
1755 s
->status
= BLK_DATA
;
1757 n
= QEMU_ALIGN_DOWN(n
, s
->cluster_sectors
);
1764 static int coroutine_fn
convert_co_read(ImgConvertState
*s
, int64_t sector_num
,
1765 int nb_sectors
, uint8_t *buf
)
1767 uint64_t single_read_until
= 0;
1770 assert(nb_sectors
<= s
->buf_sectors
);
1771 while (nb_sectors
> 0) {
1774 int64_t bs_sectors
, src_cur_offset
;
1777 /* In the case of compression with multiple source files, we can get a
1778 * nb_sectors that spreads into the next part. So we must be able to
1779 * read across multiple BDSes for one convert_read() call. */
1780 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1781 blk
= s
->src
[src_cur
];
1782 bs_sectors
= s
->src_sectors
[src_cur
];
1784 offset
= (sector_num
- src_cur_offset
) << BDRV_SECTOR_BITS
;
1786 n
= MIN(nb_sectors
, bs_sectors
- (sector_num
- src_cur_offset
));
1787 if (single_read_until
> offset
) {
1791 ret
= blk_co_pread(blk
, offset
, n
<< BDRV_SECTOR_BITS
, buf
, 0);
1795 single_read_until
= offset
+ (n
<< BDRV_SECTOR_BITS
);
1799 warn_report("error while reading offset %" PRIu64
1800 ": %s", offset
, strerror(-ret
));
1802 memset(buf
, 0, BDRV_SECTOR_SIZE
);
1811 buf
+= n
* BDRV_SECTOR_SIZE
;
1818 static int coroutine_fn
convert_co_write(ImgConvertState
*s
, int64_t sector_num
,
1819 int nb_sectors
, uint8_t *buf
,
1820 enum ImgConvertBlockStatus status
)
1824 while (nb_sectors
> 0) {
1826 BdrvRequestFlags flags
= s
->compressed
? BDRV_REQ_WRITE_COMPRESSED
: 0;
1829 case BLK_BACKING_FILE
:
1830 /* If we have a backing file, leave clusters unallocated that are
1831 * unallocated in the source image, so that the backing file is
1832 * visible at the respective offset. */
1833 assert(s
->target_has_backing
);
1837 /* If we're told to keep the target fully allocated (-S 0) or there
1838 * is real non-zero data, we must write it. Otherwise we can treat
1839 * it as zero sectors.
1840 * Compressed clusters need to be written as a whole, so in that
1841 * case we can only save the write if the buffer is completely
1843 if (!s
->min_sparse
||
1845 is_allocated_sectors_min(buf
, n
, &n
, s
->min_sparse
,
1846 sector_num
, s
->alignment
)) ||
1848 !buffer_is_zero(buf
, n
* BDRV_SECTOR_SIZE
)))
1850 ret
= blk_co_pwrite(s
->target
, sector_num
<< BDRV_SECTOR_BITS
,
1851 n
<< BDRV_SECTOR_BITS
, buf
, flags
);
1860 if (s
->has_zero_init
) {
1861 assert(!s
->target_has_backing
);
1864 ret
= blk_co_pwrite_zeroes(s
->target
,
1865 sector_num
<< BDRV_SECTOR_BITS
,
1866 n
<< BDRV_SECTOR_BITS
,
1867 BDRV_REQ_MAY_UNMAP
);
1876 buf
+= n
* BDRV_SECTOR_SIZE
;
1882 static int coroutine_fn
convert_co_copy_range(ImgConvertState
*s
, int64_t sector_num
,
1887 while (nb_sectors
> 0) {
1890 int64_t bs_sectors
, src_cur_offset
;
1893 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1894 offset
= (sector_num
- src_cur_offset
) << BDRV_SECTOR_BITS
;
1895 blk
= s
->src
[src_cur
];
1896 bs_sectors
= s
->src_sectors
[src_cur
];
1898 n
= MIN(nb_sectors
, bs_sectors
- (sector_num
- src_cur_offset
));
1900 ret
= blk_co_copy_range(blk
, offset
, s
->target
,
1901 sector_num
<< BDRV_SECTOR_BITS
,
1902 n
<< BDRV_SECTOR_BITS
, 0, 0);
1913 static void coroutine_fn
convert_co_do_copy(void *opaque
)
1915 ImgConvertState
*s
= opaque
;
1916 uint8_t *buf
= NULL
;
1920 for (i
= 0; i
< s
->num_coroutines
; i
++) {
1921 if (s
->co
[i
] == qemu_coroutine_self()) {
1928 s
->running_coroutines
++;
1929 buf
= blk_blockalign(s
->target
, s
->buf_sectors
* BDRV_SECTOR_SIZE
);
1934 enum ImgConvertBlockStatus status
;
1937 qemu_co_mutex_lock(&s
->lock
);
1938 if (s
->ret
!= -EINPROGRESS
|| s
->sector_num
>= s
->total_sectors
) {
1939 qemu_co_mutex_unlock(&s
->lock
);
1942 n
= convert_iteration_sectors(s
, s
->sector_num
);
1944 qemu_co_mutex_unlock(&s
->lock
);
1948 /* save current sector and allocation status to local variables */
1949 sector_num
= s
->sector_num
;
1951 if (!s
->min_sparse
&& s
->status
== BLK_ZERO
) {
1952 n
= MIN(n
, s
->buf_sectors
);
1954 /* increment global sector counter so that other coroutines can
1955 * already continue reading beyond this request */
1957 qemu_co_mutex_unlock(&s
->lock
);
1959 if (status
== BLK_DATA
|| (!s
->min_sparse
&& status
== BLK_ZERO
)) {
1960 s
->allocated_done
+= n
;
1961 qemu_progress_print(100.0 * s
->allocated_done
/
1962 s
->allocated_sectors
, 0);
1966 copy_range
= s
->copy_range
&& s
->status
== BLK_DATA
;
1967 if (status
== BLK_DATA
&& !copy_range
) {
1968 ret
= convert_co_read(s
, sector_num
, n
, buf
);
1970 error_report("error while reading at byte %lld: %s",
1971 sector_num
* BDRV_SECTOR_SIZE
, strerror(-ret
));
1974 } else if (!s
->min_sparse
&& status
== BLK_ZERO
) {
1976 memset(buf
, 0x00, n
* BDRV_SECTOR_SIZE
);
1979 if (s
->wr_in_order
) {
1980 /* keep writes in order */
1981 while (s
->wr_offs
!= sector_num
&& s
->ret
== -EINPROGRESS
) {
1982 s
->wait_sector_num
[index
] = sector_num
;
1983 qemu_coroutine_yield();
1985 s
->wait_sector_num
[index
] = -1;
1988 if (s
->ret
== -EINPROGRESS
) {
1990 ret
= convert_co_copy_range(s
, sector_num
, n
);
1992 s
->copy_range
= false;
1996 ret
= convert_co_write(s
, sector_num
, n
, buf
, status
);
1999 error_report("error while writing at byte %lld: %s",
2000 sector_num
* BDRV_SECTOR_SIZE
, strerror(-ret
));
2005 if (s
->wr_in_order
) {
2006 /* reenter the coroutine that might have waited
2007 * for this write to complete */
2008 s
->wr_offs
= sector_num
+ n
;
2009 for (i
= 0; i
< s
->num_coroutines
; i
++) {
2010 if (s
->co
[i
] && s
->wait_sector_num
[i
] == s
->wr_offs
) {
2012 * A -> B -> A cannot occur because A has
2013 * s->wait_sector_num[i] == -1 during A -> B. Therefore
2014 * B will never enter A during this time window.
2016 qemu_coroutine_enter(s
->co
[i
]);
2024 s
->co
[index
] = NULL
;
2025 s
->running_coroutines
--;
2026 if (!s
->running_coroutines
&& s
->ret
== -EINPROGRESS
) {
2027 /* the convert job finished successfully */
2032 static int convert_do_copy(ImgConvertState
*s
)
2035 int64_t sector_num
= 0;
2037 /* Check whether we have zero initialisation or can get it efficiently */
2038 if (!s
->has_zero_init
&& s
->target_is_new
&& s
->min_sparse
&&
2039 !s
->target_has_backing
) {
2040 s
->has_zero_init
= bdrv_has_zero_init(blk_bs(s
->target
));
2043 if (!s
->has_zero_init
&& !s
->target_has_backing
&&
2044 bdrv_can_write_zeroes_with_unmap(blk_bs(s
->target
)))
2046 ret
= blk_make_zero(s
->target
, BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
);
2048 s
->has_zero_init
= true;
2052 /* Allocate buffer for copied data. For compressed images, only one cluster
2053 * can be copied at a time. */
2054 if (s
->compressed
) {
2055 if (s
->cluster_sectors
<= 0 || s
->cluster_sectors
> s
->buf_sectors
) {
2056 error_report("invalid cluster size");
2059 s
->buf_sectors
= s
->cluster_sectors
;
2062 while (sector_num
< s
->total_sectors
) {
2063 n
= convert_iteration_sectors(s
, sector_num
);
2067 if (s
->status
== BLK_DATA
|| (!s
->min_sparse
&& s
->status
== BLK_ZERO
))
2069 s
->allocated_sectors
+= n
;
2075 s
->sector_next_status
= 0;
2076 s
->ret
= -EINPROGRESS
;
2078 qemu_co_mutex_init(&s
->lock
);
2079 for (i
= 0; i
< s
->num_coroutines
; i
++) {
2080 s
->co
[i
] = qemu_coroutine_create(convert_co_do_copy
, s
);
2081 s
->wait_sector_num
[i
] = -1;
2082 qemu_coroutine_enter(s
->co
[i
]);
2085 while (s
->running_coroutines
) {
2086 main_loop_wait(false);
2089 if (s
->compressed
&& !s
->ret
) {
2090 /* signal EOF to align */
2091 ret
= blk_pwrite_compressed(s
->target
, 0, NULL
, 0);
2100 #define MAX_BUF_SECTORS 32768
2102 static int img_convert(int argc
, char **argv
)
2104 int c
, bs_i
, flags
, src_flags
= 0;
2105 const char *fmt
= NULL
, *out_fmt
= NULL
, *cache
= "unsafe",
2106 *src_cache
= BDRV_DEFAULT_CACHE
, *out_baseimg
= NULL
,
2107 *out_filename
, *out_baseimg_param
, *snapshot_name
= NULL
;
2108 BlockDriver
*drv
= NULL
, *proto_drv
= NULL
;
2109 BlockDriverInfo bdi
;
2110 BlockDriverState
*out_bs
;
2111 QemuOpts
*opts
= NULL
, *sn_opts
= NULL
;
2112 QemuOptsList
*create_opts
= NULL
;
2113 QDict
*open_opts
= NULL
;
2114 char *options
= NULL
;
2115 Error
*local_err
= NULL
;
2116 bool writethrough
, src_writethrough
, image_opts
= false,
2117 skip_create
= false, progress
= false, tgt_image_opts
= false;
2118 int64_t ret
= -EINVAL
;
2119 bool force_share
= false;
2120 bool explict_min_sparse
= false;
2122 ImgConvertState s
= (ImgConvertState
) {
2123 /* Need at least 4k of zeros for sparse detection */
2125 .copy_range
= false,
2126 .buf_sectors
= IO_BUF_SIZE
/ BDRV_SECTOR_SIZE
,
2127 .wr_in_order
= true,
2128 .num_coroutines
= 8,
2132 static const struct option long_options
[] = {
2133 {"help", no_argument
, 0, 'h'},
2134 {"object", required_argument
, 0, OPTION_OBJECT
},
2135 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2136 {"force-share", no_argument
, 0, 'U'},
2137 {"target-image-opts", no_argument
, 0, OPTION_TARGET_IMAGE_OPTS
},
2138 {"salvage", no_argument
, 0, OPTION_SALVAGE
},
2139 {"target-is-zero", no_argument
, 0, OPTION_TARGET_IS_ZERO
},
2142 c
= getopt_long(argc
, argv
, ":hf:O:B:Cco:l:S:pt:T:qnm:WU",
2143 long_options
, NULL
);
2149 missing_argument(argv
[optind
- 1]);
2152 unrecognized_option(argv
[optind
- 1]);
2164 out_baseimg
= optarg
;
2167 s
.copy_range
= true;
2170 s
.compressed
= true;
2173 if (accumulate_options(&options
, optarg
) < 0) {
2178 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
2179 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
2182 error_report("Failed in parsing snapshot param '%s'",
2187 snapshot_name
= optarg
;
2194 sval
= cvtnum("buffer size for sparse output", optarg
);
2197 } else if (!QEMU_IS_ALIGNED(sval
, BDRV_SECTOR_SIZE
) ||
2198 sval
/ BDRV_SECTOR_SIZE
> MAX_BUF_SECTORS
) {
2199 error_report("Invalid buffer size for sparse output specified. "
2200 "Valid sizes are multiples of %llu up to %llu. Select "
2201 "0 to disable sparse detection (fully allocates output).",
2202 BDRV_SECTOR_SIZE
, MAX_BUF_SECTORS
* BDRV_SECTOR_SIZE
);
2206 s
.min_sparse
= sval
/ BDRV_SECTOR_SIZE
;
2207 explict_min_sparse
= true;
2226 if (qemu_strtol(optarg
, NULL
, 0, &s
.num_coroutines
) ||
2227 s
.num_coroutines
< 1 || s
.num_coroutines
> MAX_COROUTINES
) {
2228 error_report("Invalid number of coroutines. Allowed number of"
2229 " coroutines is between 1 and %d", MAX_COROUTINES
);
2234 s
.wr_in_order
= false;
2239 case OPTION_OBJECT
: {
2240 QemuOpts
*object_opts
;
2241 object_opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2248 case OPTION_IMAGE_OPTS
:
2251 case OPTION_SALVAGE
:
2254 case OPTION_TARGET_IMAGE_OPTS
:
2255 tgt_image_opts
= true;
2257 case OPTION_TARGET_IS_ZERO
:
2259 * The user asserting that the target is blank has the
2260 * same effect as the target driver supporting zero
2263 s
.has_zero_init
= true;
2268 if (!out_fmt
&& !tgt_image_opts
) {
2272 if (qemu_opts_foreach(&qemu_object_opts
,
2273 user_creatable_add_opts_foreach
,
2274 qemu_img_object_print_help
, &error_fatal
)) {
2278 if (s
.compressed
&& s
.copy_range
) {
2279 error_report("Cannot enable copy offloading when -c is used");
2283 if (explict_min_sparse
&& s
.copy_range
) {
2284 error_report("Cannot enable copy offloading when -S is used");
2288 if (s
.copy_range
&& s
.salvage
) {
2289 error_report("Cannot use copy offloading in salvaging mode");
2293 if (tgt_image_opts
&& !skip_create
) {
2294 error_report("--target-image-opts requires use of -n flag");
2298 if (skip_create
&& options
) {
2299 warn_report("-o has no effect when skipping image creation");
2300 warn_report("This will become an error in future QEMU versions.");
2303 if (s
.has_zero_init
&& !skip_create
) {
2304 error_report("--target-is-zero requires use of -n flag");
2308 s
.src_num
= argc
- optind
- 1;
2309 out_filename
= s
.src_num
>= 1 ? argv
[argc
- 1] : NULL
;
2311 if (options
&& has_help_option(options
)) {
2313 ret
= print_block_option_help(out_filename
, out_fmt
);
2316 error_report("Option help requires a format be specified");
2321 if (s
.src_num
< 1) {
2322 error_report("Must specify image file name");
2327 /* ret is still -EINVAL until here */
2328 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
2330 error_report("Invalid source cache option: %s", src_cache
);
2334 /* Initialize before goto out */
2338 qemu_progress_init(progress
, 1.0);
2339 qemu_progress_print(0, 100);
2341 s
.src
= g_new0(BlockBackend
*, s
.src_num
);
2342 s
.src_sectors
= g_new(int64_t, s
.src_num
);
2344 for (bs_i
= 0; bs_i
< s
.src_num
; bs_i
++) {
2345 s
.src
[bs_i
] = img_open(image_opts
, argv
[optind
+ bs_i
],
2346 fmt
, src_flags
, src_writethrough
, s
.quiet
,
2352 s
.src_sectors
[bs_i
] = blk_nb_sectors(s
.src
[bs_i
]);
2353 if (s
.src_sectors
[bs_i
] < 0) {
2354 error_report("Could not get size of %s: %s",
2355 argv
[optind
+ bs_i
], strerror(-s
.src_sectors
[bs_i
]));
2359 s
.total_sectors
+= s
.src_sectors
[bs_i
];
2363 bdrv_snapshot_load_tmp(blk_bs(s
.src
[0]),
2364 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
2365 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
2367 } else if (snapshot_name
!= NULL
) {
2368 if (s
.src_num
> 1) {
2369 error_report("No support for concatenating multiple snapshot");
2374 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s
.src
[0]), snapshot_name
,
2378 error_reportf_err(local_err
, "Failed to load snapshot: ");
2384 /* Find driver and parse its options */
2385 drv
= bdrv_find_format(out_fmt
);
2387 error_report("Unknown file format '%s'", out_fmt
);
2392 proto_drv
= bdrv_find_protocol(out_filename
, true, &local_err
);
2394 error_report_err(local_err
);
2399 if (!drv
->create_opts
) {
2400 error_report("Format driver '%s' does not support image creation",
2406 if (!proto_drv
->create_opts
) {
2407 error_report("Protocol driver '%s' does not support image creation",
2408 proto_drv
->format_name
);
2413 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
2414 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
2416 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
2418 qemu_opts_do_parse(opts
, options
, NULL
, &local_err
);
2420 error_report_err(local_err
);
2426 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, s
.total_sectors
* 512,
2428 ret
= add_old_style_options(out_fmt
, opts
, out_baseimg
, NULL
);
2434 /* Get backing file name if -o backing_file was used */
2435 out_baseimg_param
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
2436 if (out_baseimg_param
) {
2437 out_baseimg
= out_baseimg_param
;
2439 s
.target_has_backing
= (bool) out_baseimg
;
2441 if (s
.has_zero_init
&& s
.target_has_backing
) {
2442 error_report("Cannot use --target-is-zero when the destination "
2443 "image has a backing file");
2447 if (s
.src_num
> 1 && out_baseimg
) {
2448 error_report("Having a backing file for the target makes no sense when "
2449 "concatenating multiple input images");
2454 /* Check if compression is supported */
2457 qemu_opt_get_bool(opts
, BLOCK_OPT_ENCRYPT
, false);
2458 const char *encryptfmt
=
2459 qemu_opt_get(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
2460 const char *preallocation
=
2461 qemu_opt_get(opts
, BLOCK_OPT_PREALLOC
);
2463 if (drv
&& !block_driver_can_compress(drv
)) {
2464 error_report("Compression not supported for this file format");
2469 if (encryption
|| encryptfmt
) {
2470 error_report("Compression and encryption not supported at "
2477 && strcmp(preallocation
, "off"))
2479 error_report("Compression and preallocation not supported at "
2487 * The later open call will need any decryption secrets, and
2488 * bdrv_create() will purge "opts", so extract them now before
2492 open_opts
= qdict_new();
2493 qemu_opt_foreach(opts
, img_add_key_secrets
, open_opts
, &error_abort
);
2497 /* Create the new image */
2498 ret
= bdrv_create(drv
, out_filename
, opts
, &local_err
);
2500 error_reportf_err(local_err
, "%s: error while converting %s: ",
2501 out_filename
, out_fmt
);
2506 s
.target_is_new
= !skip_create
;
2508 flags
= s
.min_sparse
? (BDRV_O_RDWR
| BDRV_O_UNMAP
) : BDRV_O_RDWR
;
2509 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
2511 error_report("Invalid cache option: %s", cache
);
2516 s
.target
= img_open(tgt_image_opts
, out_filename
, out_fmt
,
2517 flags
, writethrough
, s
.quiet
, false);
2519 /* TODO ultimately we should allow --target-image-opts
2520 * to be used even when -n is not given.
2521 * That has to wait for bdrv_create to be improved
2522 * to allow filenames in option syntax
2524 s
.target
= img_open_file(out_filename
, open_opts
, out_fmt
,
2525 flags
, writethrough
, s
.quiet
, false);
2526 open_opts
= NULL
; /* blk_new_open will have freed it */
2532 out_bs
= blk_bs(s
.target
);
2534 if (s
.compressed
&& !block_driver_can_compress(out_bs
->drv
)) {
2535 error_report("Compression not supported for this file format");
2540 /* increase bufsectors from the default 4096 (2M) if opt_transfer
2541 * or discard_alignment of the out_bs is greater. Limit to
2542 * MAX_BUF_SECTORS as maximum which is currently 32768 (16MB). */
2543 s
.buf_sectors
= MIN(MAX_BUF_SECTORS
,
2545 MAX(out_bs
->bl
.opt_transfer
>> BDRV_SECTOR_BITS
,
2546 out_bs
->bl
.pdiscard_alignment
>>
2547 BDRV_SECTOR_BITS
)));
2549 /* try to align the write requests to the destination to avoid unnecessary
2551 s
.alignment
= MAX(pow2floor(s
.min_sparse
),
2552 DIV_ROUND_UP(out_bs
->bl
.request_alignment
,
2554 assert(is_power_of_2(s
.alignment
));
2557 int64_t output_sectors
= blk_nb_sectors(s
.target
);
2558 if (output_sectors
< 0) {
2559 error_report("unable to get output image length: %s",
2560 strerror(-output_sectors
));
2563 } else if (output_sectors
< s
.total_sectors
) {
2564 error_report("output file is smaller than input file");
2570 if (s
.target_has_backing
&& s
.target_is_new
) {
2571 /* Errors are treated as "backing length unknown" (which means
2572 * s.target_backing_sectors has to be negative, which it will
2573 * be automatically). The backing file length is used only
2574 * for optimizations, so such a case is not fatal. */
2575 s
.target_backing_sectors
= bdrv_nb_sectors(out_bs
->backing
->bs
);
2577 s
.target_backing_sectors
= -1;
2580 ret
= bdrv_get_info(out_bs
, &bdi
);
2583 error_report("could not get block driver info");
2587 s
.compressed
= s
.compressed
|| bdi
.needs_compressed_writes
;
2588 s
.cluster_sectors
= bdi
.cluster_size
/ BDRV_SECTOR_SIZE
;
2589 s
.unallocated_blocks_are_zero
= bdi
.unallocated_blocks_are_zero
;
2592 ret
= convert_do_copy(&s
);
2595 qemu_progress_print(100, 0);
2597 qemu_progress_end();
2598 qemu_opts_del(opts
);
2599 qemu_opts_free(create_opts
);
2600 qemu_opts_del(sn_opts
);
2601 qobject_unref(open_opts
);
2602 blk_unref(s
.target
);
2604 for (bs_i
= 0; bs_i
< s
.src_num
; bs_i
++) {
2605 blk_unref(s
.src
[bs_i
]);
2609 g_free(s
.src_sectors
);
2617 static void dump_snapshots(BlockDriverState
*bs
)
2619 QEMUSnapshotInfo
*sn_tab
, *sn
;
2622 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2625 printf("Snapshot list:\n");
2626 bdrv_snapshot_dump(NULL
);
2628 for(i
= 0; i
< nb_sns
; i
++) {
2630 bdrv_snapshot_dump(sn
);
2636 static void dump_json_image_info_list(ImageInfoList
*list
)
2640 Visitor
*v
= qobject_output_visitor_new(&obj
);
2642 visit_type_ImageInfoList(v
, NULL
, &list
, &error_abort
);
2643 visit_complete(v
, &obj
);
2644 str
= qobject_to_json_pretty(obj
);
2645 assert(str
!= NULL
);
2646 printf("%s\n", qstring_get_str(str
));
2652 static void dump_json_image_info(ImageInfo
*info
)
2656 Visitor
*v
= qobject_output_visitor_new(&obj
);
2658 visit_type_ImageInfo(v
, NULL
, &info
, &error_abort
);
2659 visit_complete(v
, &obj
);
2660 str
= qobject_to_json_pretty(obj
);
2661 assert(str
!= NULL
);
2662 printf("%s\n", qstring_get_str(str
));
2668 static void dump_human_image_info_list(ImageInfoList
*list
)
2670 ImageInfoList
*elem
;
2673 for (elem
= list
; elem
; elem
= elem
->next
) {
2679 bdrv_image_info_dump(elem
->value
);
2683 static gboolean
str_equal_func(gconstpointer a
, gconstpointer b
)
2685 return strcmp(a
, b
) == 0;
2689 * Open an image file chain and return an ImageInfoList
2691 * @filename: topmost image filename
2692 * @fmt: topmost image format (may be NULL to autodetect)
2693 * @chain: true - enumerate entire backing file chain
2694 * false - only topmost image file
2696 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2697 * image file. If there was an error a message will have been printed to
2700 static ImageInfoList
*collect_image_info_list(bool image_opts
,
2701 const char *filename
,
2703 bool chain
, bool force_share
)
2705 ImageInfoList
*head
= NULL
;
2706 ImageInfoList
**last
= &head
;
2707 GHashTable
*filenames
;
2710 filenames
= g_hash_table_new_full(g_str_hash
, str_equal_func
, NULL
, NULL
);
2714 BlockDriverState
*bs
;
2716 ImageInfoList
*elem
;
2718 if (g_hash_table_lookup_extended(filenames
, filename
, NULL
, NULL
)) {
2719 error_report("Backing file '%s' creates an infinite loop.",
2723 g_hash_table_insert(filenames
, (gpointer
)filename
, NULL
);
2725 blk
= img_open(image_opts
, filename
, fmt
,
2726 BDRV_O_NO_BACKING
| BDRV_O_NO_IO
, false, false,
2733 bdrv_query_image_info(bs
, &info
, &err
);
2735 error_report_err(err
);
2740 elem
= g_new0(ImageInfoList
, 1);
2747 /* Clear parameters that only apply to the topmost image */
2748 filename
= fmt
= NULL
;
2752 if (info
->has_full_backing_filename
) {
2753 filename
= info
->full_backing_filename
;
2754 } else if (info
->has_backing_filename
) {
2755 error_report("Could not determine absolute backing filename,"
2756 " but backing filename '%s' present",
2757 info
->backing_filename
);
2760 if (info
->has_backing_filename_format
) {
2761 fmt
= info
->backing_filename_format
;
2765 g_hash_table_destroy(filenames
);
2769 qapi_free_ImageInfoList(head
);
2770 g_hash_table_destroy(filenames
);
2774 static int img_info(int argc
, char **argv
)
2777 OutputFormat output_format
= OFORMAT_HUMAN
;
2779 const char *filename
, *fmt
, *output
;
2780 ImageInfoList
*list
;
2781 bool image_opts
= false;
2782 bool force_share
= false;
2787 int option_index
= 0;
2788 static const struct option long_options
[] = {
2789 {"help", no_argument
, 0, 'h'},
2790 {"format", required_argument
, 0, 'f'},
2791 {"output", required_argument
, 0, OPTION_OUTPUT
},
2792 {"backing-chain", no_argument
, 0, OPTION_BACKING_CHAIN
},
2793 {"object", required_argument
, 0, OPTION_OBJECT
},
2794 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2795 {"force-share", no_argument
, 0, 'U'},
2798 c
= getopt_long(argc
, argv
, ":f:hU",
2799 long_options
, &option_index
);
2805 missing_argument(argv
[optind
- 1]);
2808 unrecognized_option(argv
[optind
- 1]);
2822 case OPTION_BACKING_CHAIN
:
2825 case OPTION_OBJECT
: {
2827 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2833 case OPTION_IMAGE_OPTS
:
2838 if (optind
!= argc
- 1) {
2839 error_exit("Expecting one image file name");
2841 filename
= argv
[optind
++];
2843 if (output
&& !strcmp(output
, "json")) {
2844 output_format
= OFORMAT_JSON
;
2845 } else if (output
&& !strcmp(output
, "human")) {
2846 output_format
= OFORMAT_HUMAN
;
2847 } else if (output
) {
2848 error_report("--output must be used with human or json as argument.");
2852 if (qemu_opts_foreach(&qemu_object_opts
,
2853 user_creatable_add_opts_foreach
,
2854 qemu_img_object_print_help
, &error_fatal
)) {
2858 list
= collect_image_info_list(image_opts
, filename
, fmt
, chain
,
2864 switch (output_format
) {
2866 dump_human_image_info_list(list
);
2870 dump_json_image_info_list(list
);
2872 dump_json_image_info(list
->value
);
2877 qapi_free_ImageInfoList(list
);
2881 static int dump_map_entry(OutputFormat output_format
, MapEntry
*e
,
2884 switch (output_format
) {
2886 if (e
->data
&& !e
->has_offset
) {
2887 error_report("File contains external, encrypted or compressed clusters.");
2890 if (e
->data
&& !e
->zero
) {
2891 printf("%#-16"PRIx64
"%#-16"PRIx64
"%#-16"PRIx64
"%s\n",
2892 e
->start
, e
->length
,
2893 e
->has_offset
? e
->offset
: 0,
2894 e
->has_filename
? e
->filename
: "");
2896 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2897 * Modify the flags here to allow more coalescing.
2899 if (next
&& (!next
->data
|| next
->zero
)) {
2905 printf("%s{ \"start\": %"PRId64
", \"length\": %"PRId64
","
2906 " \"depth\": %"PRId64
", \"zero\": %s, \"data\": %s",
2907 (e
->start
== 0 ? "[" : ",\n"),
2908 e
->start
, e
->length
, e
->depth
,
2909 e
->zero
? "true" : "false",
2910 e
->data
? "true" : "false");
2911 if (e
->has_offset
) {
2912 printf(", \"offset\": %"PRId64
"", e
->offset
);
2924 static int get_block_status(BlockDriverState
*bs
, int64_t offset
,
2925 int64_t bytes
, MapEntry
*e
)
2929 BlockDriverState
*file
;
2932 char *filename
= NULL
;
2934 /* As an optimization, we could cache the current range of unallocated
2935 * clusters in each file of the chain, and avoid querying the same
2941 ret
= bdrv_block_status(bs
, offset
, bytes
, &bytes
, &map
, &file
);
2946 if (ret
& (BDRV_BLOCK_ZERO
|BDRV_BLOCK_DATA
)) {
2949 bs
= backing_bs(bs
);
2958 has_offset
= !!(ret
& BDRV_BLOCK_OFFSET_VALID
);
2960 if (file
&& has_offset
) {
2961 bdrv_refresh_filename(file
);
2962 filename
= file
->filename
;
2968 .data
= !!(ret
& BDRV_BLOCK_DATA
),
2969 .zero
= !!(ret
& BDRV_BLOCK_ZERO
),
2971 .has_offset
= has_offset
,
2973 .has_filename
= filename
,
2974 .filename
= filename
,
2980 static inline bool entry_mergeable(const MapEntry
*curr
, const MapEntry
*next
)
2982 if (curr
->length
== 0) {
2985 if (curr
->zero
!= next
->zero
||
2986 curr
->data
!= next
->data
||
2987 curr
->depth
!= next
->depth
||
2988 curr
->has_filename
!= next
->has_filename
||
2989 curr
->has_offset
!= next
->has_offset
) {
2992 if (curr
->has_filename
&& strcmp(curr
->filename
, next
->filename
)) {
2995 if (curr
->has_offset
&& curr
->offset
+ curr
->length
!= next
->offset
) {
3001 static int img_map(int argc
, char **argv
)
3004 OutputFormat output_format
= OFORMAT_HUMAN
;
3006 BlockDriverState
*bs
;
3007 const char *filename
, *fmt
, *output
;
3009 MapEntry curr
= { .length
= 0 }, next
;
3011 bool image_opts
= false;
3012 bool force_share
= false;
3017 int option_index
= 0;
3018 static const struct option long_options
[] = {
3019 {"help", no_argument
, 0, 'h'},
3020 {"format", required_argument
, 0, 'f'},
3021 {"output", required_argument
, 0, OPTION_OUTPUT
},
3022 {"object", required_argument
, 0, OPTION_OBJECT
},
3023 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3024 {"force-share", no_argument
, 0, 'U'},
3027 c
= getopt_long(argc
, argv
, ":f:hU",
3028 long_options
, &option_index
);
3034 missing_argument(argv
[optind
- 1]);
3037 unrecognized_option(argv
[optind
- 1]);
3051 case OPTION_OBJECT
: {
3053 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3059 case OPTION_IMAGE_OPTS
:
3064 if (optind
!= argc
- 1) {
3065 error_exit("Expecting one image file name");
3067 filename
= argv
[optind
];
3069 if (output
&& !strcmp(output
, "json")) {
3070 output_format
= OFORMAT_JSON
;
3071 } else if (output
&& !strcmp(output
, "human")) {
3072 output_format
= OFORMAT_HUMAN
;
3073 } else if (output
) {
3074 error_report("--output must be used with human or json as argument.");
3078 if (qemu_opts_foreach(&qemu_object_opts
,
3079 user_creatable_add_opts_foreach
,
3080 qemu_img_object_print_help
, &error_fatal
)) {
3084 blk
= img_open(image_opts
, filename
, fmt
, 0, false, false, force_share
);
3090 if (output_format
== OFORMAT_HUMAN
) {
3091 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
3094 length
= blk_getlength(blk
);
3095 while (curr
.start
+ curr
.length
< length
) {
3096 int64_t offset
= curr
.start
+ curr
.length
;
3099 /* Probe up to 1 GiB at a time. */
3100 n
= MIN(1 * GiB
, length
- offset
);
3101 ret
= get_block_status(bs
, offset
, n
, &next
);
3104 error_report("Could not read file metadata: %s", strerror(-ret
));
3108 if (entry_mergeable(&curr
, &next
)) {
3109 curr
.length
+= next
.length
;
3113 if (curr
.length
> 0) {
3114 ret
= dump_map_entry(output_format
, &curr
, &next
);
3122 ret
= dump_map_entry(output_format
, &curr
, NULL
);
3129 #define SNAPSHOT_LIST 1
3130 #define SNAPSHOT_CREATE 2
3131 #define SNAPSHOT_APPLY 3
3132 #define SNAPSHOT_DELETE 4
3134 static int img_snapshot(int argc
, char **argv
)
3137 BlockDriverState
*bs
;
3138 QEMUSnapshotInfo sn
;
3139 char *filename
, *snapshot_name
= NULL
;
3140 int c
, ret
= 0, bdrv_oflags
;
3145 bool image_opts
= false;
3146 bool force_share
= false;
3148 bdrv_oflags
= BDRV_O_RDWR
;
3149 /* Parse commandline parameters */
3151 static const struct option long_options
[] = {
3152 {"help", no_argument
, 0, 'h'},
3153 {"object", required_argument
, 0, OPTION_OBJECT
},
3154 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3155 {"force-share", no_argument
, 0, 'U'},
3158 c
= getopt_long(argc
, argv
, ":la:c:d:hqU",
3159 long_options
, NULL
);
3165 missing_argument(argv
[optind
- 1]);
3168 unrecognized_option(argv
[optind
- 1]);
3175 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3178 action
= SNAPSHOT_LIST
;
3179 bdrv_oflags
&= ~BDRV_O_RDWR
; /* no need for RW */
3183 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3186 action
= SNAPSHOT_APPLY
;
3187 snapshot_name
= optarg
;
3191 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3194 action
= SNAPSHOT_CREATE
;
3195 snapshot_name
= optarg
;
3199 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3202 action
= SNAPSHOT_DELETE
;
3203 snapshot_name
= optarg
;
3211 case OPTION_OBJECT
: {
3213 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3219 case OPTION_IMAGE_OPTS
:
3225 if (optind
!= argc
- 1) {
3226 error_exit("Expecting one image file name");
3228 filename
= argv
[optind
++];
3230 if (qemu_opts_foreach(&qemu_object_opts
,
3231 user_creatable_add_opts_foreach
,
3232 qemu_img_object_print_help
, &error_fatal
)) {
3236 /* Open the image */
3237 blk
= img_open(image_opts
, filename
, NULL
, bdrv_oflags
, false, quiet
,
3244 /* Perform the requested action */
3250 case SNAPSHOT_CREATE
:
3251 memset(&sn
, 0, sizeof(sn
));
3252 pstrcpy(sn
.name
, sizeof(sn
.name
), snapshot_name
);
3254 qemu_gettimeofday(&tv
);
3255 sn
.date_sec
= tv
.tv_sec
;
3256 sn
.date_nsec
= tv
.tv_usec
* 1000;
3258 ret
= bdrv_snapshot_create(bs
, &sn
);
3260 error_report("Could not create snapshot '%s': %d (%s)",
3261 snapshot_name
, ret
, strerror(-ret
));
3265 case SNAPSHOT_APPLY
:
3266 ret
= bdrv_snapshot_goto(bs
, snapshot_name
, &err
);
3268 error_reportf_err(err
, "Could not apply snapshot '%s': ",
3273 case SNAPSHOT_DELETE
:
3274 ret
= bdrv_snapshot_find(bs
, &sn
, snapshot_name
);
3276 error_report("Could not delete snapshot '%s': snapshot not "
3277 "found", snapshot_name
);
3280 ret
= bdrv_snapshot_delete(bs
, sn
.id_str
, sn
.name
, &err
);
3282 error_reportf_err(err
, "Could not delete snapshot '%s': ",
3298 static int img_rebase(int argc
, char **argv
)
3300 BlockBackend
*blk
= NULL
, *blk_old_backing
= NULL
, *blk_new_backing
= NULL
;
3301 uint8_t *buf_old
= NULL
;
3302 uint8_t *buf_new
= NULL
;
3303 BlockDriverState
*bs
= NULL
, *prefix_chain_bs
= NULL
;
3305 const char *fmt
, *cache
, *src_cache
, *out_basefmt
, *out_baseimg
;
3306 int c
, flags
, src_flags
, ret
;
3307 bool writethrough
, src_writethrough
;
3309 bool force_share
= false;
3312 Error
*local_err
= NULL
;
3313 bool image_opts
= false;
3315 /* Parse commandline parameters */
3317 cache
= BDRV_DEFAULT_CACHE
;
3318 src_cache
= BDRV_DEFAULT_CACHE
;
3322 static const struct option long_options
[] = {
3323 {"help", no_argument
, 0, 'h'},
3324 {"object", required_argument
, 0, OPTION_OBJECT
},
3325 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3326 {"force-share", no_argument
, 0, 'U'},
3329 c
= getopt_long(argc
, argv
, ":hf:F:b:upt:T:qU",
3330 long_options
, NULL
);
3336 missing_argument(argv
[optind
- 1]);
3339 unrecognized_option(argv
[optind
- 1]);
3348 out_basefmt
= optarg
;
3351 out_baseimg
= optarg
;
3368 case OPTION_OBJECT
: {
3370 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3376 case OPTION_IMAGE_OPTS
:
3389 if (optind
!= argc
- 1) {
3390 error_exit("Expecting one image file name");
3392 if (!unsafe
&& !out_baseimg
) {
3393 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
3395 filename
= argv
[optind
++];
3397 if (qemu_opts_foreach(&qemu_object_opts
,
3398 user_creatable_add_opts_foreach
,
3399 qemu_img_object_print_help
, &error_fatal
)) {
3403 qemu_progress_init(progress
, 2.0);
3404 qemu_progress_print(0, 100);
3406 flags
= BDRV_O_RDWR
| (unsafe
? BDRV_O_NO_BACKING
: 0);
3407 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
3409 error_report("Invalid cache option: %s", cache
);
3414 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
3416 error_report("Invalid source cache option: %s", src_cache
);
3420 /* The source files are opened read-only, don't care about WCE */
3421 assert((src_flags
& BDRV_O_RDWR
) == 0);
3422 (void) src_writethrough
;
3427 * Ignore the old backing file for unsafe rebase in case we want to correct
3428 * the reference to a renamed or moved backing file.
3430 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
3438 if (out_basefmt
!= NULL
) {
3439 if (bdrv_find_format(out_basefmt
) == NULL
) {
3440 error_report("Invalid format name: '%s'", out_basefmt
);
3446 /* For safe rebasing we need to compare old and new backing file */
3448 QDict
*options
= NULL
;
3449 BlockDriverState
*base_bs
= backing_bs(bs
);
3452 blk_old_backing
= blk_new(qemu_get_aio_context(),
3453 BLK_PERM_CONSISTENT_READ
,
3455 ret
= blk_insert_bs(blk_old_backing
, base_bs
,
3458 error_reportf_err(local_err
,
3459 "Could not reuse old backing file '%s': ",
3464 blk_old_backing
= NULL
;
3467 if (out_baseimg
[0]) {
3468 const char *overlay_filename
;
3469 char *out_real_path
;
3471 options
= qdict_new();
3473 qdict_put_str(options
, "driver", out_basefmt
);
3476 qdict_put_bool(options
, BDRV_OPT_FORCE_SHARE
, true);
3479 bdrv_refresh_filename(bs
);
3480 overlay_filename
= bs
->exact_filename
[0] ? bs
->exact_filename
3483 bdrv_get_full_backing_filename_from_filename(overlay_filename
,
3487 qobject_unref(options
);
3488 error_reportf_err(local_err
,
3489 "Could not resolve backing filename: ");
3495 * Find out whether we rebase an image on top of a previous image
3498 prefix_chain_bs
= bdrv_find_backing_image(bs
, out_real_path
);
3499 if (prefix_chain_bs
) {
3500 qobject_unref(options
);
3501 g_free(out_real_path
);
3503 blk_new_backing
= blk_new(qemu_get_aio_context(),
3504 BLK_PERM_CONSISTENT_READ
,
3506 ret
= blk_insert_bs(blk_new_backing
, prefix_chain_bs
,
3509 error_reportf_err(local_err
,
3510 "Could not reuse backing file '%s': ",
3515 blk_new_backing
= blk_new_open(out_real_path
, NULL
,
3516 options
, src_flags
, &local_err
);
3517 g_free(out_real_path
);
3518 if (!blk_new_backing
) {
3519 error_reportf_err(local_err
,
3520 "Could not open new backing file '%s': ",
3530 * Check each unallocated cluster in the COW file. If it is unallocated,
3531 * accesses go to the backing file. We must therefore compare this cluster
3532 * in the old and new backing file, and if they differ we need to copy it
3533 * from the old backing file into the COW file.
3535 * If qemu-img crashes during this step, no harm is done. The content of
3536 * the image is the same as the original one at any time.
3540 int64_t old_backing_size
= 0;
3541 int64_t new_backing_size
= 0;
3544 float local_progress
= 0;
3546 buf_old
= blk_blockalign(blk
, IO_BUF_SIZE
);
3547 buf_new
= blk_blockalign(blk
, IO_BUF_SIZE
);
3549 size
= blk_getlength(blk
);
3551 error_report("Could not get size of '%s': %s",
3552 filename
, strerror(-size
));
3556 if (blk_old_backing
) {
3557 old_backing_size
= blk_getlength(blk_old_backing
);
3558 if (old_backing_size
< 0) {
3559 char backing_name
[PATH_MAX
];
3561 bdrv_get_backing_filename(bs
, backing_name
,
3562 sizeof(backing_name
));
3563 error_report("Could not get size of '%s': %s",
3564 backing_name
, strerror(-old_backing_size
));
3569 if (blk_new_backing
) {
3570 new_backing_size
= blk_getlength(blk_new_backing
);
3571 if (new_backing_size
< 0) {
3572 error_report("Could not get size of '%s': %s",
3573 out_baseimg
, strerror(-new_backing_size
));
3580 local_progress
= (float)100 / (size
/ MIN(size
, IO_BUF_SIZE
));
3583 for (offset
= 0; offset
< size
; offset
+= n
) {
3584 bool buf_old_is_zero
= false;
3586 /* How many bytes can we handle with the next read? */
3587 n
= MIN(IO_BUF_SIZE
, size
- offset
);
3589 /* If the cluster is allocated, we don't need to take action */
3590 ret
= bdrv_is_allocated(bs
, offset
, n
, &n
);
3592 error_report("error while reading image metadata: %s",
3600 if (prefix_chain_bs
) {
3602 * If cluster wasn't changed since prefix_chain, we don't need
3605 ret
= bdrv_is_allocated_above(backing_bs(bs
), prefix_chain_bs
,
3606 false, offset
, n
, &n
);
3608 error_report("error while reading image metadata: %s",
3618 * Read old and new backing file and take into consideration that
3619 * backing files may be smaller than the COW image.
3621 if (offset
>= old_backing_size
) {
3622 memset(buf_old
, 0, n
);
3623 buf_old_is_zero
= true;
3625 if (offset
+ n
> old_backing_size
) {
3626 n
= old_backing_size
- offset
;
3629 ret
= blk_pread(blk_old_backing
, offset
, buf_old
, n
);
3631 error_report("error while reading from old backing file");
3636 if (offset
>= new_backing_size
|| !blk_new_backing
) {
3637 memset(buf_new
, 0, n
);
3639 if (offset
+ n
> new_backing_size
) {
3640 n
= new_backing_size
- offset
;
3643 ret
= blk_pread(blk_new_backing
, offset
, buf_new
, n
);
3645 error_report("error while reading from new backing file");
3650 /* If they differ, we need to write to the COW file */
3651 uint64_t written
= 0;
3653 while (written
< n
) {
3656 if (compare_buffers(buf_old
+ written
, buf_new
+ written
,
3657 n
- written
, &pnum
))
3659 if (buf_old_is_zero
) {
3660 ret
= blk_pwrite_zeroes(blk
, offset
+ written
, pnum
, 0);
3662 ret
= blk_pwrite(blk
, offset
+ written
,
3663 buf_old
+ written
, pnum
, 0);
3666 error_report("Error while writing to COW image: %s",
3674 qemu_progress_print(local_progress
, 100);
3679 * Change the backing file. All clusters that are different from the old
3680 * backing file are overwritten in the COW file now, so the visible content
3681 * doesn't change when we switch the backing file.
3683 if (out_baseimg
&& *out_baseimg
) {
3684 ret
= bdrv_change_backing_file(bs
, out_baseimg
, out_basefmt
);
3686 ret
= bdrv_change_backing_file(bs
, NULL
, NULL
);
3689 if (ret
== -ENOSPC
) {
3690 error_report("Could not change the backing file to '%s': No "
3691 "space left in the file header", out_baseimg
);
3692 } else if (ret
< 0) {
3693 error_report("Could not change the backing file to '%s': %s",
3694 out_baseimg
, strerror(-ret
));
3697 qemu_progress_print(100, 0);
3699 * TODO At this point it is possible to check if any clusters that are
3700 * allocated in the COW file are the same in the backing file. If so, they
3701 * could be dropped from the COW file. Don't do this before switching the
3702 * backing file, in case of a crash this would lead to corruption.
3705 qemu_progress_end();
3708 blk_unref(blk_old_backing
);
3709 blk_unref(blk_new_backing
);
3711 qemu_vfree(buf_old
);
3712 qemu_vfree(buf_new
);
3721 static int img_resize(int argc
, char **argv
)
3724 int c
, ret
, relative
;
3725 const char *filename
, *fmt
, *size
;
3726 int64_t n
, total_size
, current_size
;
3728 BlockBackend
*blk
= NULL
;
3729 PreallocMode prealloc
= PREALLOC_MODE_OFF
;
3732 static QemuOptsList resize_options
= {
3733 .name
= "resize_options",
3734 .head
= QTAILQ_HEAD_INITIALIZER(resize_options
.head
),
3737 .name
= BLOCK_OPT_SIZE
,
3738 .type
= QEMU_OPT_SIZE
,
3739 .help
= "Virtual disk size"
3745 bool image_opts
= false;
3746 bool shrink
= false;
3748 /* Remove size from argv manually so that negative numbers are not treated
3749 * as options by getopt. */
3751 error_exit("Not enough arguments");
3755 size
= argv
[--argc
];
3757 /* Parse getopt arguments */
3760 static const struct option long_options
[] = {
3761 {"help", no_argument
, 0, 'h'},
3762 {"object", required_argument
, 0, OPTION_OBJECT
},
3763 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3764 {"preallocation", required_argument
, 0, OPTION_PREALLOCATION
},
3765 {"shrink", no_argument
, 0, OPTION_SHRINK
},
3768 c
= getopt_long(argc
, argv
, ":f:hq",
3769 long_options
, NULL
);
3775 missing_argument(argv
[optind
- 1]);
3778 unrecognized_option(argv
[optind
- 1]);
3789 case OPTION_OBJECT
: {
3791 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3797 case OPTION_IMAGE_OPTS
:
3800 case OPTION_PREALLOCATION
:
3801 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optarg
,
3802 PREALLOC_MODE__MAX
, NULL
);
3803 if (prealloc
== PREALLOC_MODE__MAX
) {
3804 error_report("Invalid preallocation mode '%s'", optarg
);
3813 if (optind
!= argc
- 1) {
3814 error_exit("Expecting image file name and size");
3816 filename
= argv
[optind
++];
3818 if (qemu_opts_foreach(&qemu_object_opts
,
3819 user_creatable_add_opts_foreach
,
3820 qemu_img_object_print_help
, &error_fatal
)) {
3824 /* Choose grow, shrink, or absolute resize mode */
3840 param
= qemu_opts_create(&resize_options
, NULL
, 0, &error_abort
);
3841 qemu_opt_set(param
, BLOCK_OPT_SIZE
, size
, &err
);
3843 error_report_err(err
);
3845 qemu_opts_del(param
);
3848 n
= qemu_opt_get_size(param
, BLOCK_OPT_SIZE
, 0);
3849 qemu_opts_del(param
);
3851 blk
= img_open(image_opts
, filename
, fmt
,
3852 BDRV_O_RDWR
| BDRV_O_RESIZE
, false, quiet
,
3859 current_size
= blk_getlength(blk
);
3860 if (current_size
< 0) {
3861 error_report("Failed to inquire current image length: %s",
3862 strerror(-current_size
));
3868 total_size
= current_size
+ n
* relative
;
3872 if (total_size
<= 0) {
3873 error_report("New image size must be positive");
3878 if (total_size
<= current_size
&& prealloc
!= PREALLOC_MODE_OFF
) {
3879 error_report("Preallocation can only be used for growing images");
3884 if (total_size
< current_size
&& !shrink
) {
3885 warn_report("Shrinking an image will delete all data beyond the "
3886 "shrunken image's end. Before performing such an "
3887 "operation, make sure there is no important data there.");
3889 if (g_strcmp0(bdrv_get_format_name(blk_bs(blk
)), "raw") != 0) {
3891 "Use the --shrink option to perform a shrink operation.");
3895 warn_report("Using the --shrink option will suppress this message. "
3896 "Note that future versions of qemu-img may refuse to "
3897 "shrink images without this option.");
3902 * The user expects the image to have the desired size after
3903 * resizing, so pass @exact=true. It is of no use to report
3904 * success when the image has not actually been resized.
3906 ret
= blk_truncate(blk
, total_size
, true, prealloc
, 0, &err
);
3908 qprintf(quiet
, "Image resized.\n");
3910 error_report_err(err
);
3920 static void amend_status_cb(BlockDriverState
*bs
,
3921 int64_t offset
, int64_t total_work_size
,
3924 qemu_progress_print(100.f
* offset
/ total_work_size
, 0);
3927 static int print_amend_option_help(const char *format
)
3931 /* Find driver and parse its options */
3932 drv
= bdrv_find_format(format
);
3934 error_report("Unknown file format '%s'", format
);
3938 if (!drv
->bdrv_amend_options
) {
3939 error_report("Format driver '%s' does not support option amendment",
3944 /* Every driver supporting amendment must have create_opts */
3945 assert(drv
->create_opts
);
3947 printf("Creation options for '%s':\n", format
);
3948 qemu_opts_print_help(drv
->create_opts
, false);
3949 printf("\nNote that not all of these options may be amendable.\n");
3953 static int img_amend(int argc
, char **argv
)
3957 char *options
= NULL
;
3958 QemuOptsList
*create_opts
= NULL
;
3959 QemuOpts
*opts
= NULL
;
3960 const char *fmt
= NULL
, *filename
, *cache
;
3963 bool quiet
= false, progress
= false;
3964 BlockBackend
*blk
= NULL
;
3965 BlockDriverState
*bs
= NULL
;
3966 bool image_opts
= false;
3968 cache
= BDRV_DEFAULT_CACHE
;
3970 static const struct option long_options
[] = {
3971 {"help", no_argument
, 0, 'h'},
3972 {"object", required_argument
, 0, OPTION_OBJECT
},
3973 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3976 c
= getopt_long(argc
, argv
, ":ho:f:t:pq",
3977 long_options
, NULL
);
3984 missing_argument(argv
[optind
- 1]);
3987 unrecognized_option(argv
[optind
- 1]);
3993 if (accumulate_options(&options
, optarg
) < 0) {
3995 goto out_no_progress
;
4011 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
4015 goto out_no_progress
;
4018 case OPTION_IMAGE_OPTS
:
4025 error_exit("Must specify options (-o)");
4028 if (qemu_opts_foreach(&qemu_object_opts
,
4029 user_creatable_add_opts_foreach
,
4030 qemu_img_object_print_help
, &error_fatal
)) {
4032 goto out_no_progress
;
4038 qemu_progress_init(progress
, 1.0);
4040 filename
= (optind
== argc
- 1) ? argv
[argc
- 1] : NULL
;
4041 if (fmt
&& has_help_option(options
)) {
4042 /* If a format is explicitly specified (and possibly no filename is
4043 * given), print option help here */
4044 ret
= print_amend_option_help(fmt
);
4048 if (optind
!= argc
- 1) {
4049 error_report("Expecting one image file name");
4054 flags
= BDRV_O_RDWR
;
4055 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
4057 error_report("Invalid cache option: %s", cache
);
4061 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
4069 fmt
= bs
->drv
->format_name
;
4071 if (has_help_option(options
)) {
4072 /* If the format was auto-detected, print option help here */
4073 ret
= print_amend_option_help(fmt
);
4077 if (!bs
->drv
->bdrv_amend_options
) {
4078 error_report("Format driver '%s' does not support option amendment",
4084 /* Every driver supporting amendment must have create_opts */
4085 assert(bs
->drv
->create_opts
);
4087 create_opts
= qemu_opts_append(create_opts
, bs
->drv
->create_opts
);
4088 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4089 qemu_opts_do_parse(opts
, options
, NULL
, &err
);
4091 error_report_err(err
);
4096 /* In case the driver does not call amend_status_cb() */
4097 qemu_progress_print(0.f
, 0);
4098 ret
= bdrv_amend_options(bs
, opts
, &amend_status_cb
, NULL
, &err
);
4099 qemu_progress_print(100.f
, 0);
4101 error_report_err(err
);
4106 qemu_progress_end();
4110 qemu_opts_del(opts
);
4111 qemu_opts_free(create_opts
);
4120 typedef struct BenchData
{
4122 uint64_t image_size
;
4129 bool drain_on_flush
;
4138 static void bench_undrained_flush_cb(void *opaque
, int ret
)
4141 error_report("Failed flush request: %s", strerror(-ret
));
4146 static void bench_cb(void *opaque
, int ret
)
4148 BenchData
*b
= opaque
;
4152 error_report("Failed request: %s", strerror(-ret
));
4157 /* Just finished a flush with drained queue: Start next requests */
4158 assert(b
->in_flight
== 0);
4159 b
->in_flush
= false;
4160 } else if (b
->in_flight
> 0) {
4161 int remaining
= b
->n
- b
->in_flight
;
4166 /* Time for flush? Drain queue if requested, then flush */
4167 if (b
->flush_interval
&& remaining
% b
->flush_interval
== 0) {
4168 if (!b
->in_flight
|| !b
->drain_on_flush
) {
4169 BlockCompletionFunc
*cb
;
4171 if (b
->drain_on_flush
) {
4175 cb
= bench_undrained_flush_cb
;
4178 acb
= blk_aio_flush(b
->blk
, cb
, b
);
4180 error_report("Failed to issue flush request");
4184 if (b
->drain_on_flush
) {
4190 while (b
->n
> b
->in_flight
&& b
->in_flight
< b
->nrreq
) {
4191 int64_t offset
= b
->offset
;
4192 /* blk_aio_* might look for completed I/Os and kick bench_cb
4193 * again, so make sure this operation is counted by in_flight
4194 * and b->offset is ready for the next submission.
4197 b
->offset
+= b
->step
;
4198 b
->offset
%= b
->image_size
;
4200 acb
= blk_aio_pwritev(b
->blk
, offset
, b
->qiov
, 0, bench_cb
, b
);
4202 acb
= blk_aio_preadv(b
->blk
, offset
, b
->qiov
, 0, bench_cb
, b
);
4205 error_report("Failed to issue request");
4211 static int img_bench(int argc
, char **argv
)
4214 const char *fmt
= NULL
, *filename
;
4216 bool image_opts
= false;
4217 bool is_write
= false;
4221 size_t bufsize
= 4096;
4224 int flush_interval
= 0;
4225 bool drain_on_flush
= true;
4227 BlockBackend
*blk
= NULL
;
4228 BenchData data
= {};
4230 bool writethrough
= false;
4231 struct timeval t1
, t2
;
4233 bool force_share
= false;
4237 static const struct option long_options
[] = {
4238 {"help", no_argument
, 0, 'h'},
4239 {"flush-interval", required_argument
, 0, OPTION_FLUSH_INTERVAL
},
4240 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4241 {"pattern", required_argument
, 0, OPTION_PATTERN
},
4242 {"no-drain", no_argument
, 0, OPTION_NO_DRAIN
},
4243 {"force-share", no_argument
, 0, 'U'},
4246 c
= getopt_long(argc
, argv
, ":hc:d:f:ni:o:qs:S:t:wU", long_options
,
4254 missing_argument(argv
[optind
- 1]);
4257 unrecognized_option(argv
[optind
- 1]);
4266 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4267 error_report("Invalid request count specified");
4277 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4278 error_report("Invalid queue depth specified");
4288 flags
|= BDRV_O_NATIVE_AIO
;
4291 ret
= bdrv_parse_aio(optarg
, &flags
);
4293 error_report("Invalid aio option: %s", optarg
);
4300 offset
= cvtnum("offset", optarg
);
4314 sval
= cvtnum_full("buffer size", optarg
, 0, INT_MAX
);
4326 sval
= cvtnum_full("step_size", optarg
, 0, INT_MAX
);
4335 ret
= bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
);
4337 error_report("Invalid cache mode");
4343 flags
|= BDRV_O_RDWR
;
4349 case OPTION_PATTERN
:
4353 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> 0xff) {
4354 error_report("Invalid pattern byte specified");
4360 case OPTION_FLUSH_INTERVAL
:
4364 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4365 error_report("Invalid flush interval specified");
4368 flush_interval
= res
;
4371 case OPTION_NO_DRAIN
:
4372 drain_on_flush
= false;
4374 case OPTION_IMAGE_OPTS
:
4380 if (optind
!= argc
- 1) {
4381 error_exit("Expecting one image file name");
4383 filename
= argv
[argc
- 1];
4385 if (!is_write
&& flush_interval
) {
4386 error_report("--flush-interval is only available in write tests");
4390 if (flush_interval
&& flush_interval
< depth
) {
4391 error_report("Flush interval can't be smaller than depth");
4396 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
4403 image_size
= blk_getlength(blk
);
4404 if (image_size
< 0) {
4409 data
= (BenchData
) {
4411 .image_size
= image_size
,
4413 .step
= step
?: bufsize
,
4418 .flush_interval
= flush_interval
,
4419 .drain_on_flush
= drain_on_flush
,
4421 printf("Sending %d %s requests, %d bytes each, %d in parallel "
4422 "(starting at offset %" PRId64
", step size %d)\n",
4423 data
.n
, data
.write
? "write" : "read", data
.bufsize
, data
.nrreq
,
4424 data
.offset
, data
.step
);
4425 if (flush_interval
) {
4426 printf("Sending flush every %d requests\n", flush_interval
);
4429 buf_size
= data
.nrreq
* data
.bufsize
;
4430 data
.buf
= blk_blockalign(blk
, buf_size
);
4431 memset(data
.buf
, pattern
, data
.nrreq
* data
.bufsize
);
4433 blk_register_buf(blk
, data
.buf
, buf_size
);
4435 data
.qiov
= g_new(QEMUIOVector
, data
.nrreq
);
4436 for (i
= 0; i
< data
.nrreq
; i
++) {
4437 qemu_iovec_init(&data
.qiov
[i
], 1);
4438 qemu_iovec_add(&data
.qiov
[i
],
4439 data
.buf
+ i
* data
.bufsize
, data
.bufsize
);
4442 gettimeofday(&t1
, NULL
);
4445 while (data
.n
> 0) {
4446 main_loop_wait(false);
4448 gettimeofday(&t2
, NULL
);
4450 printf("Run completed in %3.3f seconds.\n",
4451 (t2
.tv_sec
- t1
.tv_sec
)
4452 + ((double)(t2
.tv_usec
- t1
.tv_usec
) / 1000000));
4456 blk_unregister_buf(blk
, data
.buf
);
4458 qemu_vfree(data
.buf
);
4479 int bsz
; /* Block size */
4487 int (*f
)(const char *, struct DdIo
*, struct DdIo
*, struct DdInfo
*);
4491 static int img_dd_bs(const char *arg
,
4492 struct DdIo
*in
, struct DdIo
*out
,
4497 res
= cvtnum_full("bs", arg
, 1, INT_MAX
);
4502 in
->bsz
= out
->bsz
= res
;
4507 static int img_dd_count(const char *arg
,
4508 struct DdIo
*in
, struct DdIo
*out
,
4511 dd
->count
= cvtnum("count", arg
);
4513 if (dd
->count
< 0) {
4520 static int img_dd_if(const char *arg
,
4521 struct DdIo
*in
, struct DdIo
*out
,
4524 in
->filename
= g_strdup(arg
);
4529 static int img_dd_of(const char *arg
,
4530 struct DdIo
*in
, struct DdIo
*out
,
4533 out
->filename
= g_strdup(arg
);
4538 static int img_dd_skip(const char *arg
,
4539 struct DdIo
*in
, struct DdIo
*out
,
4542 in
->offset
= cvtnum("skip", arg
);
4544 if (in
->offset
< 0) {
4551 static int img_dd(int argc
, char **argv
)
4556 BlockDriver
*drv
= NULL
, *proto_drv
= NULL
;
4557 BlockBackend
*blk1
= NULL
, *blk2
= NULL
;
4558 QemuOpts
*opts
= NULL
;
4559 QemuOptsList
*create_opts
= NULL
;
4560 Error
*local_err
= NULL
;
4561 bool image_opts
= false;
4563 const char *out_fmt
= "raw";
4564 const char *fmt
= NULL
;
4566 int64_t block_count
= 0, out_pos
, in_pos
;
4567 bool force_share
= false;
4568 struct DdInfo dd
= {
4573 .bsz
= 512, /* Block size is by default 512 bytes */
4585 const struct DdOpts options
[] = {
4586 { "bs", img_dd_bs
, C_BS
},
4587 { "count", img_dd_count
, C_COUNT
},
4588 { "if", img_dd_if
, C_IF
},
4589 { "of", img_dd_of
, C_OF
},
4590 { "skip", img_dd_skip
, C_SKIP
},
4593 const struct option long_options
[] = {
4594 { "help", no_argument
, 0, 'h'},
4595 { "object", required_argument
, 0, OPTION_OBJECT
},
4596 { "image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4597 { "force-share", no_argument
, 0, 'U'},
4601 while ((c
= getopt_long(argc
, argv
, ":hf:O:U", long_options
, NULL
))) {
4613 missing_argument(argv
[optind
- 1]);
4616 unrecognized_option(argv
[optind
- 1]);
4625 if (!qemu_opts_parse_noisily(&qemu_object_opts
, optarg
, true)) {
4630 case OPTION_IMAGE_OPTS
:
4636 for (i
= optind
; i
< argc
; i
++) {
4638 arg
= g_strdup(argv
[i
]);
4640 tmp
= strchr(arg
, '=');
4642 error_report("unrecognized operand %s", arg
);
4649 for (j
= 0; options
[j
].name
!= NULL
; j
++) {
4650 if (!strcmp(arg
, options
[j
].name
)) {
4654 if (options
[j
].name
== NULL
) {
4655 error_report("unrecognized operand %s", arg
);
4660 if (options
[j
].f(tmp
, &in
, &out
, &dd
) != 0) {
4664 dd
.flags
|= options
[j
].flag
;
4669 if (!(dd
.flags
& C_IF
&& dd
.flags
& C_OF
)) {
4670 error_report("Must specify both input and output files");
4675 if (qemu_opts_foreach(&qemu_object_opts
,
4676 user_creatable_add_opts_foreach
,
4677 qemu_img_object_print_help
, &error_fatal
)) {
4682 blk1
= img_open(image_opts
, in
.filename
, fmt
, 0, false, false,
4690 drv
= bdrv_find_format(out_fmt
);
4692 error_report("Unknown file format");
4696 proto_drv
= bdrv_find_protocol(out
.filename
, true, &local_err
);
4699 error_report_err(local_err
);
4703 if (!drv
->create_opts
) {
4704 error_report("Format driver '%s' does not support image creation",
4709 if (!proto_drv
->create_opts
) {
4710 error_report("Protocol driver '%s' does not support image creation",
4711 proto_drv
->format_name
);
4715 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
4716 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
4718 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4720 size
= blk_getlength(blk1
);
4722 error_report("Failed to get size for '%s'", in
.filename
);
4727 if (dd
.flags
& C_COUNT
&& dd
.count
<= INT64_MAX
/ in
.bsz
&&
4728 dd
.count
* in
.bsz
< size
) {
4729 size
= dd
.count
* in
.bsz
;
4732 /* Overflow means the specified offset is beyond input image's size */
4733 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4734 size
< in
.bsz
* in
.offset
)) {
4735 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, 0, &error_abort
);
4737 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
,
4738 size
- in
.bsz
* in
.offset
, &error_abort
);
4741 ret
= bdrv_create(drv
, out
.filename
, opts
, &local_err
);
4743 error_reportf_err(local_err
,
4744 "%s: error while creating output image: ",
4750 /* TODO, we can't honour --image-opts for the target,
4751 * since it needs to be given in a format compatible
4752 * with the bdrv_create() call above which does not
4753 * support image-opts style.
4755 blk2
= img_open_file(out
.filename
, NULL
, out_fmt
, BDRV_O_RDWR
,
4756 false, false, false);
4763 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4764 size
< in
.offset
* in
.bsz
)) {
4765 /* We give a warning if the skip option is bigger than the input
4766 * size and create an empty output disk image (i.e. like dd(1)).
4768 error_report("%s: cannot skip to specified offset", in
.filename
);
4771 in_pos
= in
.offset
* in
.bsz
;
4774 in
.buf
= g_new(uint8_t, in
.bsz
);
4776 for (out_pos
= 0; in_pos
< size
; block_count
++) {
4777 int in_ret
, out_ret
;
4779 if (in_pos
+ in
.bsz
> size
) {
4780 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, size
- in_pos
);
4782 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, in
.bsz
);
4785 error_report("error while reading from input image file: %s",
4792 out_ret
= blk_pwrite(blk2
, out_pos
, in
.buf
, in_ret
, 0);
4795 error_report("error while writing to output image file: %s",
4796 strerror(-out_ret
));
4805 qemu_opts_del(opts
);
4806 qemu_opts_free(create_opts
);
4809 g_free(in
.filename
);
4810 g_free(out
.filename
);
4820 static void dump_json_block_measure_info(BlockMeasureInfo
*info
)
4824 Visitor
*v
= qobject_output_visitor_new(&obj
);
4826 visit_type_BlockMeasureInfo(v
, NULL
, &info
, &error_abort
);
4827 visit_complete(v
, &obj
);
4828 str
= qobject_to_json_pretty(obj
);
4829 assert(str
!= NULL
);
4830 printf("%s\n", qstring_get_str(str
));
4836 static int img_measure(int argc
, char **argv
)
4838 static const struct option long_options
[] = {
4839 {"help", no_argument
, 0, 'h'},
4840 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4841 {"object", required_argument
, 0, OPTION_OBJECT
},
4842 {"output", required_argument
, 0, OPTION_OUTPUT
},
4843 {"size", required_argument
, 0, OPTION_SIZE
},
4844 {"force-share", no_argument
, 0, 'U'},
4847 OutputFormat output_format
= OFORMAT_HUMAN
;
4848 BlockBackend
*in_blk
= NULL
;
4850 const char *filename
= NULL
;
4851 const char *fmt
= NULL
;
4852 const char *out_fmt
= "raw";
4853 char *options
= NULL
;
4854 char *snapshot_name
= NULL
;
4855 bool force_share
= false;
4856 QemuOpts
*opts
= NULL
;
4857 QemuOpts
*object_opts
= NULL
;
4858 QemuOpts
*sn_opts
= NULL
;
4859 QemuOptsList
*create_opts
= NULL
;
4860 bool image_opts
= false;
4861 uint64_t img_size
= UINT64_MAX
;
4862 BlockMeasureInfo
*info
= NULL
;
4863 Error
*local_err
= NULL
;
4867 while ((c
= getopt_long(argc
, argv
, "hf:O:o:l:U",
4868 long_options
, NULL
)) != -1) {
4881 if (accumulate_options(&options
, optarg
) < 0) {
4886 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
4887 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
4890 error_report("Failed in parsing snapshot param '%s'",
4895 snapshot_name
= optarg
;
4902 object_opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
4908 case OPTION_IMAGE_OPTS
:
4912 if (!strcmp(optarg
, "json")) {
4913 output_format
= OFORMAT_JSON
;
4914 } else if (!strcmp(optarg
, "human")) {
4915 output_format
= OFORMAT_HUMAN
;
4917 error_report("--output must be used with human or json "
4926 sval
= cvtnum("image size", optarg
);
4930 img_size
= (uint64_t)sval
;
4936 if (qemu_opts_foreach(&qemu_object_opts
,
4937 user_creatable_add_opts_foreach
,
4938 qemu_img_object_print_help
, &error_fatal
)) {
4942 if (argc
- optind
> 1) {
4943 error_report("At most one filename argument is allowed.");
4945 } else if (argc
- optind
== 1) {
4946 filename
= argv
[optind
];
4949 if (!filename
&& (image_opts
|| fmt
|| snapshot_name
|| sn_opts
)) {
4950 error_report("--image-opts, -f, and -l require a filename argument.");
4953 if (filename
&& img_size
!= UINT64_MAX
) {
4954 error_report("--size N cannot be used together with a filename.");
4957 if (!filename
&& img_size
== UINT64_MAX
) {
4958 error_report("Either --size N or one filename must be specified.");
4963 in_blk
= img_open(image_opts
, filename
, fmt
, 0,
4964 false, false, force_share
);
4970 bdrv_snapshot_load_tmp(blk_bs(in_blk
),
4971 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
4972 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
4974 } else if (snapshot_name
!= NULL
) {
4975 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk
),
4976 snapshot_name
, &local_err
);
4979 error_reportf_err(local_err
, "Failed to load snapshot: ");
4984 drv
= bdrv_find_format(out_fmt
);
4986 error_report("Unknown file format '%s'", out_fmt
);
4989 if (!drv
->create_opts
) {
4990 error_report("Format driver '%s' does not support image creation",
4995 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
4996 create_opts
= qemu_opts_append(create_opts
, bdrv_file
.create_opts
);
4997 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4999 qemu_opts_do_parse(opts
, options
, NULL
, &local_err
);
5001 error_report_err(local_err
);
5002 error_report("Invalid options for file format '%s'", out_fmt
);
5006 if (img_size
!= UINT64_MAX
) {
5007 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, img_size
, &error_abort
);
5010 info
= bdrv_measure(drv
, opts
, in_blk
? blk_bs(in_blk
) : NULL
, &local_err
);
5012 error_report_err(local_err
);
5016 if (output_format
== OFORMAT_HUMAN
) {
5017 printf("required size: %" PRIu64
"\n", info
->required
);
5018 printf("fully allocated size: %" PRIu64
"\n", info
->fully_allocated
);
5020 dump_json_block_measure_info(info
);
5026 qapi_free_BlockMeasureInfo(info
);
5027 qemu_opts_del(object_opts
);
5028 qemu_opts_del(opts
);
5029 qemu_opts_del(sn_opts
);
5030 qemu_opts_free(create_opts
);
5036 static const img_cmd_t img_cmds
[] = {
5037 #define DEF(option, callback, arg_string) \
5038 { option, callback },
5039 #include "qemu-img-cmds.h"
5044 int main(int argc
, char **argv
)
5046 const img_cmd_t
*cmd
;
5047 const char *cmdname
;
5048 Error
*local_error
= NULL
;
5049 char *trace_file
= NULL
;
5051 static const struct option long_options
[] = {
5052 {"help", no_argument
, 0, 'h'},
5053 {"version", no_argument
, 0, 'V'},
5054 {"trace", required_argument
, NULL
, 'T'},
5059 signal(SIGPIPE
, SIG_IGN
);
5062 error_init(argv
[0]);
5063 module_call_init(MODULE_INIT_TRACE
);
5064 qemu_init_exec_dir(argv
[0]);
5066 if (qemu_init_main_loop(&local_error
)) {
5067 error_report_err(local_error
);
5071 qcrypto_init(&error_fatal
);
5073 module_call_init(MODULE_INIT_QOM
);
5076 error_exit("Not enough arguments");
5079 qemu_add_opts(&qemu_object_opts
);
5080 qemu_add_opts(&qemu_source_opts
);
5081 qemu_add_opts(&qemu_trace_opts
);
5083 while ((c
= getopt_long(argc
, argv
, "+:hVT:", long_options
, NULL
)) != -1) {
5086 missing_argument(argv
[optind
- 1]);
5089 unrecognized_option(argv
[optind
- 1]);
5095 printf(QEMU_IMG_VERSION
);
5099 trace_file
= trace_opt_parse(optarg
);
5104 cmdname
= argv
[optind
];
5106 /* reset getopt_long scanning */
5112 qemu_reset_optind();
5114 if (!trace_init_backends()) {
5117 trace_init_file(trace_file
);
5118 qemu_set_log(LOG_TRACE
);
5120 /* find the command */
5121 for (cmd
= img_cmds
; cmd
->name
!= NULL
; cmd
++) {
5122 if (!strcmp(cmdname
, cmd
->name
)) {
5123 return cmd
->handler(argc
, argv
);
5128 error_exit("Command not found: %s", cmdname
);