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,
75 typedef enum OutputFormat
{
80 /* Default to cache=writeback as data integrity is not important for qemu-img */
81 #define BDRV_DEFAULT_CACHE "writeback"
83 static void format_print(void *opaque
, const char *name
)
88 static void QEMU_NORETURN
GCC_FMT_ATTR(1, 2) error_exit(const char *fmt
, ...)
93 error_vreport(fmt
, ap
);
96 error_printf("Try 'qemu-img --help' for more information\n");
100 static void QEMU_NORETURN
missing_argument(const char *option
)
102 error_exit("missing argument for option '%s'", option
);
105 static void QEMU_NORETURN
unrecognized_option(const char *option
)
107 error_exit("unrecognized option '%s'", option
);
110 /* Please keep in synch with qemu-img.texi */
111 static void QEMU_NORETURN
help(void)
113 const char *help_msg
=
115 "usage: qemu-img [standard options] command [command options]\n"
116 "QEMU disk image utility\n"
118 " '-h', '--help' display this help and exit\n"
119 " '-V', '--version' output version information and exit\n"
120 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
121 " specify tracing options\n"
124 #define DEF(option, callback, arg_string) \
126 #include "qemu-img-cmds.h"
129 "Command parameters:\n"
130 " 'filename' is a disk image filename\n"
131 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
132 " manual page for a description of the object properties. The most common\n"
133 " object type is a 'secret', which is used to supply passwords and/or\n"
134 " encryption keys.\n"
135 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
136 " 'cache' is the cache mode used to write the output disk image, the valid\n"
137 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
138 " 'directsync' and 'unsafe' (default for convert)\n"
139 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
140 " options are the same as for the 'cache' option\n"
141 " 'size' is the disk image size in bytes. Optional suffixes\n"
142 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
143 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
144 " supported. 'b' is ignored.\n"
145 " 'output_filename' is the destination disk image filename\n"
146 " 'output_fmt' is the destination format\n"
147 " 'options' is a comma separated list of format specific options in a\n"
148 " name=value format. Use -o ? for an overview of the options supported by the\n"
150 " 'snapshot_param' is param used for internal snapshot, format\n"
151 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
153 " '-c' indicates that target image must be compressed (qcow format only)\n"
154 " '-u' allows unsafe backing chains. For rebasing, it is assumed that old and\n"
155 " new backing file match exactly. The image doesn't need a working\n"
156 " backing file before rebasing in this case (useful for renaming the\n"
157 " backing file). For image creation, allow creating without attempting\n"
158 " to open the backing file.\n"
159 " '-h' with or without a command shows this help and lists the supported formats\n"
160 " '-p' show progress of command (only certain commands)\n"
161 " '-q' use Quiet mode - do not print any output (except errors)\n"
162 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
163 " contain only zeros for qemu-img to create a sparse image during\n"
164 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
165 " unallocated or zero sectors, and the destination image will always be\n"
167 " '--output' takes the format in which the output must be done (human or json)\n"
168 " '-n' skips the target volume creation (useful if the volume is created\n"
169 " prior to running qemu-img)\n"
171 "Parameters to check subcommand:\n"
172 " '-r' tries to repair any inconsistencies that are found during the check.\n"
173 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
174 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
175 " hiding corruption that has already occurred.\n"
177 "Parameters to convert subcommand:\n"
178 " '-m' specifies how many coroutines work in parallel during the convert\n"
179 " process (defaults to 8)\n"
180 " '-W' allow to write to the target out of order rather than sequential\n"
182 "Parameters to snapshot subcommand:\n"
183 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
184 " '-a' applies a snapshot (revert disk to saved state)\n"
185 " '-c' creates a snapshot\n"
186 " '-d' deletes a snapshot\n"
187 " '-l' lists all snapshots in the given image\n"
189 "Parameters to compare subcommand:\n"
190 " '-f' first image format\n"
191 " '-F' second image format\n"
192 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
194 "Parameters to dd subcommand:\n"
195 " 'bs=BYTES' read and write up to BYTES bytes at a time "
197 " 'count=N' copy only N input blocks\n"
198 " 'if=FILE' read from FILE\n"
199 " 'of=FILE' write to FILE\n"
200 " 'skip=N' skip N bs-sized blocks at the start of input\n";
202 printf("%s\nSupported formats:", help_msg
);
203 bdrv_iterate_format(format_print
, NULL
, false);
204 printf("\n\n" QEMU_HELP_BOTTOM
"\n");
208 static QemuOptsList qemu_object_opts
= {
210 .implied_opt_name
= "qom-type",
211 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
217 static QemuOptsList qemu_source_opts
= {
219 .implied_opt_name
= "file",
220 .head
= QTAILQ_HEAD_INITIALIZER(qemu_source_opts
.head
),
226 static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet
, const char *fmt
, ...)
232 ret
= vprintf(fmt
, args
);
239 static int print_block_option_help(const char *filename
, const char *fmt
)
241 BlockDriver
*drv
, *proto_drv
;
242 QemuOptsList
*create_opts
= NULL
;
243 Error
*local_err
= NULL
;
245 /* Find driver and parse its options */
246 drv
= bdrv_find_format(fmt
);
248 error_report("Unknown file format '%s'", fmt
);
252 if (!drv
->create_opts
) {
253 error_report("Format driver '%s' does not support image creation", fmt
);
257 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
259 proto_drv
= bdrv_find_protocol(filename
, true, &local_err
);
261 error_report_err(local_err
);
262 qemu_opts_free(create_opts
);
265 if (!proto_drv
->create_opts
) {
266 error_report("Protocol driver '%s' does not support image creation",
267 proto_drv
->format_name
);
268 qemu_opts_free(create_opts
);
271 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
275 printf("Supported options:\n");
277 printf("Supported %s options:\n", fmt
);
279 qemu_opts_print_help(create_opts
, false);
280 qemu_opts_free(create_opts
);
284 "The protocol level may support further options.\n"
285 "Specify the target filename to include those options.\n");
292 static BlockBackend
*img_open_opts(const char *optstr
,
293 QemuOpts
*opts
, int flags
, bool writethrough
,
294 bool quiet
, bool force_share
)
297 Error
*local_err
= NULL
;
299 options
= qemu_opts_to_qdict(opts
, NULL
);
301 if (qdict_haskey(options
, BDRV_OPT_FORCE_SHARE
)
302 && strcmp(qdict_get_str(options
, BDRV_OPT_FORCE_SHARE
), "on")) {
303 error_report("--force-share/-U conflicts with image options");
304 qobject_unref(options
);
307 qdict_put_str(options
, BDRV_OPT_FORCE_SHARE
, "on");
309 blk
= blk_new_open(NULL
, NULL
, options
, flags
, &local_err
);
311 error_reportf_err(local_err
, "Could not open '%s': ", optstr
);
314 blk_set_enable_write_cache(blk
, !writethrough
);
319 static BlockBackend
*img_open_file(const char *filename
,
321 const char *fmt
, int flags
,
322 bool writethrough
, bool quiet
,
326 Error
*local_err
= NULL
;
329 options
= qdict_new();
332 qdict_put_str(options
, "driver", fmt
);
336 qdict_put_bool(options
, BDRV_OPT_FORCE_SHARE
, true);
338 blk
= blk_new_open(filename
, NULL
, options
, flags
, &local_err
);
340 error_reportf_err(local_err
, "Could not open '%s': ", filename
);
343 blk_set_enable_write_cache(blk
, !writethrough
);
349 static int img_add_key_secrets(void *opaque
,
350 const char *name
, const char *value
,
353 QDict
*options
= opaque
;
355 if (g_str_has_suffix(name
, "key-secret")) {
356 qdict_put_str(options
, name
, value
);
363 static BlockBackend
*img_open(bool image_opts
,
364 const char *filename
,
365 const char *fmt
, int flags
, bool writethrough
,
366 bool quiet
, bool force_share
)
372 error_report("--image-opts and --format are mutually exclusive");
375 opts
= qemu_opts_parse_noisily(qemu_find_opts("source"),
380 blk
= img_open_opts(filename
, opts
, flags
, writethrough
, quiet
,
383 blk
= img_open_file(filename
, NULL
, fmt
, flags
, writethrough
, quiet
,
390 static int add_old_style_options(const char *fmt
, QemuOpts
*opts
,
391 const char *base_filename
,
392 const char *base_fmt
)
397 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
, &err
);
399 error_report("Backing file not supported for file format '%s'",
406 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, &err
);
408 error_report("Backing file format not supported for file "
417 static int64_t cvtnum(const char *s
)
422 err
= qemu_strtosz(s
, NULL
, &value
);
426 if (value
> INT64_MAX
) {
432 static int img_create(int argc
, char **argv
)
435 uint64_t img_size
= -1;
436 const char *fmt
= "raw";
437 const char *base_fmt
= NULL
;
438 const char *filename
;
439 const char *base_filename
= NULL
;
440 char *options
= NULL
;
441 Error
*local_err
= NULL
;
446 static const struct option long_options
[] = {
447 {"help", no_argument
, 0, 'h'},
448 {"object", required_argument
, 0, OPTION_OBJECT
},
451 c
= getopt_long(argc
, argv
, ":F:b:f:ho:qu",
458 missing_argument(argv
[optind
- 1]);
461 unrecognized_option(argv
[optind
- 1]);
470 base_filename
= optarg
;
476 if (!is_valid_option_list(optarg
)) {
477 error_report("Invalid option list: %s", optarg
);
481 options
= g_strdup(optarg
);
483 char *old_options
= options
;
484 options
= g_strdup_printf("%s,%s", options
, optarg
);
492 flags
|= BDRV_O_NO_BACKING
;
494 case OPTION_OBJECT
: {
496 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
505 /* Get the filename */
506 filename
= (optind
< argc
) ? argv
[optind
] : NULL
;
507 if (options
&& has_help_option(options
)) {
509 return print_block_option_help(filename
, fmt
);
512 if (optind
>= argc
) {
513 error_exit("Expecting image file name");
517 if (qemu_opts_foreach(&qemu_object_opts
,
518 user_creatable_add_opts_foreach
,
519 NULL
, &error_fatal
)) {
523 /* Get image size, if specified */
527 sval
= cvtnum(argv
[optind
++]);
529 if (sval
== -ERANGE
) {
530 error_report("Image size must be less than 8 EiB!");
532 error_report("Invalid image size specified! You may use k, M, "
533 "G, T, P or E suffixes for ");
534 error_report("kilobytes, megabytes, gigabytes, terabytes, "
535 "petabytes and exabytes.");
539 img_size
= (uint64_t)sval
;
541 if (optind
!= argc
) {
542 error_exit("Unexpected argument: %s", argv
[optind
]);
545 bdrv_img_create(filename
, fmt
, base_filename
, base_fmt
,
546 options
, img_size
, flags
, quiet
, &local_err
);
548 error_reportf_err(local_err
, "%s: ", filename
);
560 static void dump_json_image_check(ImageCheck
*check
, bool quiet
)
564 Visitor
*v
= qobject_output_visitor_new(&obj
);
566 visit_type_ImageCheck(v
, NULL
, &check
, &error_abort
);
567 visit_complete(v
, &obj
);
568 str
= qobject_to_json_pretty(obj
);
570 qprintf(quiet
, "%s\n", qstring_get_str(str
));
576 static void dump_human_image_check(ImageCheck
*check
, bool quiet
)
578 if (!(check
->corruptions
|| check
->leaks
|| check
->check_errors
)) {
579 qprintf(quiet
, "No errors were found on the image.\n");
581 if (check
->corruptions
) {
582 qprintf(quiet
, "\n%" PRId64
" errors were found on the image.\n"
583 "Data may be corrupted, or further writes to the image "
590 "\n%" PRId64
" leaked clusters were found on the image.\n"
591 "This means waste of disk space, but no harm to data.\n",
595 if (check
->check_errors
) {
598 " internal errors have occurred during the check.\n",
599 check
->check_errors
);
603 if (check
->total_clusters
!= 0 && check
->allocated_clusters
!= 0) {
604 qprintf(quiet
, "%" PRId64
"/%" PRId64
" = %0.2f%% allocated, "
605 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
606 check
->allocated_clusters
, check
->total_clusters
,
607 check
->allocated_clusters
* 100.0 / check
->total_clusters
,
608 check
->fragmented_clusters
* 100.0 / check
->allocated_clusters
,
609 check
->compressed_clusters
* 100.0 /
610 check
->allocated_clusters
);
613 if (check
->image_end_offset
) {
615 "Image end offset: %" PRId64
"\n", check
->image_end_offset
);
619 static int collect_image_check(BlockDriverState
*bs
,
621 const char *filename
,
626 BdrvCheckResult result
;
628 ret
= bdrv_check(bs
, &result
, fix
);
633 check
->filename
= g_strdup(filename
);
634 check
->format
= g_strdup(bdrv_get_format_name(bs
));
635 check
->check_errors
= result
.check_errors
;
636 check
->corruptions
= result
.corruptions
;
637 check
->has_corruptions
= result
.corruptions
!= 0;
638 check
->leaks
= result
.leaks
;
639 check
->has_leaks
= result
.leaks
!= 0;
640 check
->corruptions_fixed
= result
.corruptions_fixed
;
641 check
->has_corruptions_fixed
= result
.corruptions
!= 0;
642 check
->leaks_fixed
= result
.leaks_fixed
;
643 check
->has_leaks_fixed
= result
.leaks
!= 0;
644 check
->image_end_offset
= result
.image_end_offset
;
645 check
->has_image_end_offset
= result
.image_end_offset
!= 0;
646 check
->total_clusters
= result
.bfi
.total_clusters
;
647 check
->has_total_clusters
= result
.bfi
.total_clusters
!= 0;
648 check
->allocated_clusters
= result
.bfi
.allocated_clusters
;
649 check
->has_allocated_clusters
= result
.bfi
.allocated_clusters
!= 0;
650 check
->fragmented_clusters
= result
.bfi
.fragmented_clusters
;
651 check
->has_fragmented_clusters
= result
.bfi
.fragmented_clusters
!= 0;
652 check
->compressed_clusters
= result
.bfi
.compressed_clusters
;
653 check
->has_compressed_clusters
= result
.bfi
.compressed_clusters
!= 0;
659 * Checks an image for consistency. Exit codes:
661 * 0 - Check completed, image is good
662 * 1 - Check not completed because of internal errors
663 * 2 - Check completed, image is corrupted
664 * 3 - Check completed, image has leaked clusters, but is good otherwise
665 * 63 - Checks are not supported by the image format
667 static int img_check(int argc
, char **argv
)
670 OutputFormat output_format
= OFORMAT_HUMAN
;
671 const char *filename
, *fmt
, *output
, *cache
;
673 BlockDriverState
*bs
;
675 int flags
= BDRV_O_CHECK
;
679 bool image_opts
= false;
680 bool force_share
= false;
684 cache
= BDRV_DEFAULT_CACHE
;
687 int option_index
= 0;
688 static const struct option long_options
[] = {
689 {"help", no_argument
, 0, 'h'},
690 {"format", required_argument
, 0, 'f'},
691 {"repair", required_argument
, 0, 'r'},
692 {"output", required_argument
, 0, OPTION_OUTPUT
},
693 {"object", required_argument
, 0, OPTION_OBJECT
},
694 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
695 {"force-share", no_argument
, 0, 'U'},
698 c
= getopt_long(argc
, argv
, ":hf:r:T:qU",
699 long_options
, &option_index
);
705 missing_argument(argv
[optind
- 1]);
708 unrecognized_option(argv
[optind
- 1]);
717 flags
|= BDRV_O_RDWR
;
719 if (!strcmp(optarg
, "leaks")) {
720 fix
= BDRV_FIX_LEAKS
;
721 } else if (!strcmp(optarg
, "all")) {
722 fix
= BDRV_FIX_LEAKS
| BDRV_FIX_ERRORS
;
724 error_exit("Unknown option value for -r "
725 "(expecting 'leaks' or 'all'): %s", optarg
);
740 case OPTION_OBJECT
: {
742 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
748 case OPTION_IMAGE_OPTS
:
753 if (optind
!= argc
- 1) {
754 error_exit("Expecting one image file name");
756 filename
= argv
[optind
++];
758 if (output
&& !strcmp(output
, "json")) {
759 output_format
= OFORMAT_JSON
;
760 } else if (output
&& !strcmp(output
, "human")) {
761 output_format
= OFORMAT_HUMAN
;
763 error_report("--output must be used with human or json as argument.");
767 if (qemu_opts_foreach(&qemu_object_opts
,
768 user_creatable_add_opts_foreach
,
769 NULL
, &error_fatal
)) {
773 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
775 error_report("Invalid source cache option: %s", cache
);
779 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
786 check
= g_new0(ImageCheck
, 1);
787 ret
= collect_image_check(bs
, check
, filename
, fmt
, fix
);
789 if (ret
== -ENOTSUP
) {
790 error_report("This image format does not support checks");
795 if (check
->corruptions_fixed
|| check
->leaks_fixed
) {
796 int corruptions_fixed
, leaks_fixed
;
798 leaks_fixed
= check
->leaks_fixed
;
799 corruptions_fixed
= check
->corruptions_fixed
;
801 if (output_format
== OFORMAT_HUMAN
) {
803 "The following inconsistencies were found and repaired:\n\n"
804 " %" PRId64
" leaked clusters\n"
805 " %" PRId64
" corruptions\n\n"
806 "Double checking the fixed image now...\n",
808 check
->corruptions_fixed
);
811 ret
= collect_image_check(bs
, check
, filename
, fmt
, 0);
813 check
->leaks_fixed
= leaks_fixed
;
814 check
->corruptions_fixed
= corruptions_fixed
;
818 switch (output_format
) {
820 dump_human_image_check(check
, quiet
);
823 dump_json_image_check(check
, quiet
);
828 if (ret
|| check
->check_errors
) {
830 error_report("Check failed: %s", strerror(-ret
));
832 error_report("Check failed");
838 if (check
->corruptions
) {
840 } else if (check
->leaks
) {
847 qapi_free_ImageCheck(check
);
852 typedef struct CommonBlockJobCBInfo
{
853 BlockDriverState
*bs
;
855 } CommonBlockJobCBInfo
;
857 static void common_block_job_cb(void *opaque
, int ret
)
859 CommonBlockJobCBInfo
*cbi
= opaque
;
862 error_setg_errno(cbi
->errp
, -ret
, "Block job failed");
866 static void run_block_job(BlockJob
*job
, Error
**errp
)
868 AioContext
*aio_context
= blk_get_aio_context(job
->blk
);
871 aio_context_acquire(aio_context
);
874 float progress
= 0.0f
;
875 aio_poll(aio_context
, true);
876 if (job
->job
.progress_total
) {
877 progress
= (float)job
->job
.progress_current
/
878 job
->job
.progress_total
* 100.f
;
880 qemu_progress_print(progress
, 0);
881 } while (!job_is_ready(&job
->job
) && !job_is_completed(&job
->job
));
883 if (!job_is_completed(&job
->job
)) {
884 ret
= job_complete_sync(&job
->job
, errp
);
888 job_unref(&job
->job
);
889 aio_context_release(aio_context
);
891 /* publish completion progress only when success */
893 qemu_progress_print(100.f
, 0);
897 static int img_commit(int argc
, char **argv
)
900 const char *filename
, *fmt
, *cache
, *base
;
902 BlockDriverState
*bs
, *base_bs
;
904 bool progress
= false, quiet
= false, drop
= false;
906 Error
*local_err
= NULL
;
907 CommonBlockJobCBInfo cbi
;
908 bool image_opts
= false;
909 AioContext
*aio_context
;
912 cache
= BDRV_DEFAULT_CACHE
;
915 static const struct option long_options
[] = {
916 {"help", no_argument
, 0, 'h'},
917 {"object", required_argument
, 0, OPTION_OBJECT
},
918 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
921 c
= getopt_long(argc
, argv
, ":f:ht:b:dpq",
928 missing_argument(argv
[optind
- 1]);
931 unrecognized_option(argv
[optind
- 1]);
956 case OPTION_OBJECT
: {
958 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
964 case OPTION_IMAGE_OPTS
:
970 /* Progress is not shown in Quiet mode */
975 if (optind
!= argc
- 1) {
976 error_exit("Expecting one image file name");
978 filename
= argv
[optind
++];
980 if (qemu_opts_foreach(&qemu_object_opts
,
981 user_creatable_add_opts_foreach
,
982 NULL
, &error_fatal
)) {
986 flags
= BDRV_O_RDWR
| BDRV_O_UNMAP
;
987 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
989 error_report("Invalid cache option: %s", cache
);
993 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
1000 qemu_progress_init(progress
, 1.f
);
1001 qemu_progress_print(0.f
, 100);
1004 base_bs
= bdrv_find_backing_image(bs
, base
);
1006 error_setg(&local_err
,
1007 "Did not find '%s' in the backing chain of '%s'",
1012 /* This is different from QMP, which by default uses the deepest file in
1013 * the backing chain (i.e., the very base); however, the traditional
1014 * behavior of qemu-img commit is using the immediate backing file. */
1015 base_bs
= backing_bs(bs
);
1017 error_setg(&local_err
, "Image does not have a backing file");
1022 cbi
= (CommonBlockJobCBInfo
){
1027 aio_context
= bdrv_get_aio_context(bs
);
1028 aio_context_acquire(aio_context
);
1029 commit_active_start("commit", bs
, base_bs
, JOB_DEFAULT
, 0,
1030 BLOCKDEV_ON_ERROR_REPORT
, NULL
, common_block_job_cb
,
1031 &cbi
, false, &local_err
);
1032 aio_context_release(aio_context
);
1037 /* When the block job completes, the BlockBackend reference will point to
1038 * the old backing file. In order to avoid that the top image is already
1039 * deleted, so we can still empty it afterwards, increment the reference
1040 * counter here preemptively. */
1045 job
= block_job_get("commit");
1047 run_block_job(job
, &local_err
);
1052 if (!drop
&& bs
->drv
->bdrv_make_empty
) {
1053 ret
= bs
->drv
->bdrv_make_empty(bs
);
1055 error_setg_errno(&local_err
, -ret
, "Could not empty %s",
1067 qemu_progress_end();
1072 error_report_err(local_err
);
1076 qprintf(quiet
, "Image committed.\n");
1081 * Returns -1 if 'buf' contains only zeroes, otherwise the byte index
1082 * of the first sector boundary within buf where the sector contains a
1083 * non-zero byte. This function is robust to a buffer that is not
1086 static int64_t find_nonzero(const uint8_t *buf
, int64_t n
)
1089 int64_t end
= QEMU_ALIGN_DOWN(n
, BDRV_SECTOR_SIZE
);
1091 for (i
= 0; i
< end
; i
+= BDRV_SECTOR_SIZE
) {
1092 if (!buffer_is_zero(buf
+ i
, BDRV_SECTOR_SIZE
)) {
1096 if (i
< n
&& !buffer_is_zero(buf
+ i
, n
- end
)) {
1103 * Returns true iff the first sector pointed to by 'buf' contains at least
1106 * 'pnum' is set to the number of sectors (including and immediately following
1107 * the first one) that are known to be in the same allocated/unallocated state.
1108 * The function will try to align the end offset to alignment boundaries so
1109 * that the request will at least end aligned and consequtive requests will
1110 * also start at an aligned offset.
1112 static int is_allocated_sectors(const uint8_t *buf
, int n
, int *pnum
,
1113 int64_t sector_num
, int alignment
)
1122 is_zero
= buffer_is_zero(buf
, 512);
1123 for(i
= 1; i
< n
; i
++) {
1125 if (is_zero
!= buffer_is_zero(buf
, 512)) {
1130 tail
= (sector_num
+ i
) & (alignment
- 1);
1132 if (is_zero
&& i
<= tail
) {
1133 /* treat unallocated areas which only consist
1134 * of a small tail as allocated. */
1138 /* align up end offset of allocated areas. */
1139 i
+= alignment
- tail
;
1142 /* align down end offset of zero areas. */
1151 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1152 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1153 * breaking up write requests for only small sparse areas.
1155 static int is_allocated_sectors_min(const uint8_t *buf
, int n
, int *pnum
,
1156 int min
, int64_t sector_num
, int alignment
)
1159 int num_checked
, num_used
;
1165 ret
= is_allocated_sectors(buf
, n
, pnum
, sector_num
, alignment
);
1171 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1173 sector_num
+= *pnum
;
1174 num_checked
= num_used
;
1177 ret
= is_allocated_sectors(buf
, n
, pnum
, sector_num
, alignment
);
1179 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1181 sector_num
+= *pnum
;
1182 num_checked
+= *pnum
;
1184 num_used
= num_checked
;
1185 } else if (*pnum
>= min
) {
1195 * Compares two buffers sector by sector. Returns 0 if the first
1196 * sector of each buffer matches, non-zero otherwise.
1198 * pnum is set to the sector-aligned size of the buffer prefix that
1199 * has the same matching status as the first sector.
1201 static int compare_buffers(const uint8_t *buf1
, const uint8_t *buf2
,
1202 int64_t bytes
, int64_t *pnum
)
1205 int64_t i
= MIN(bytes
, BDRV_SECTOR_SIZE
);
1209 res
= !!memcmp(buf1
, buf2
, i
);
1211 int64_t len
= MIN(bytes
- i
, BDRV_SECTOR_SIZE
);
1213 if (!!memcmp(buf1
+ i
, buf2
+ i
, len
) != res
) {
1223 #define IO_BUF_SIZE (2 * MiB)
1226 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1228 * Intended for use by 'qemu-img compare': Returns 0 in case sectors are
1229 * filled with 0, 1 if sectors contain non-zero data (this is a comparison
1230 * failure), and 4 on error (the exit status for read errors), after emitting
1233 * @param blk: BlockBackend for the image
1234 * @param offset: Starting offset to check
1235 * @param bytes: Number of bytes to check
1236 * @param filename: Name of disk file we are checking (logging purpose)
1237 * @param buffer: Allocated buffer for storing read data
1238 * @param quiet: Flag for quiet mode
1240 static int check_empty_sectors(BlockBackend
*blk
, int64_t offset
,
1241 int64_t bytes
, const char *filename
,
1242 uint8_t *buffer
, bool quiet
)
1247 ret
= blk_pread(blk
, offset
, buffer
, bytes
);
1249 error_report("Error while reading offset %" PRId64
" of %s: %s",
1250 offset
, filename
, strerror(-ret
));
1253 idx
= find_nonzero(buffer
, bytes
);
1255 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1264 * Compares two images. Exit codes:
1266 * 0 - Images are identical
1268 * >1 - Error occurred
1270 static int img_compare(int argc
, char **argv
)
1272 const char *fmt1
= NULL
, *fmt2
= NULL
, *cache
, *filename1
, *filename2
;
1273 BlockBackend
*blk1
, *blk2
;
1274 BlockDriverState
*bs1
, *bs2
;
1275 int64_t total_size1
, total_size2
;
1276 uint8_t *buf1
= NULL
, *buf2
= NULL
;
1277 int64_t pnum1
, pnum2
;
1278 int allocated1
, allocated2
;
1279 int ret
= 0; /* return value - 0 Ident, 1 Different, >1 Error */
1280 bool progress
= false, quiet
= false, strict
= false;
1287 uint64_t progress_base
;
1288 bool image_opts
= false;
1289 bool force_share
= false;
1291 cache
= BDRV_DEFAULT_CACHE
;
1293 static const struct option long_options
[] = {
1294 {"help", no_argument
, 0, 'h'},
1295 {"object", required_argument
, 0, OPTION_OBJECT
},
1296 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
1297 {"force-share", no_argument
, 0, 'U'},
1300 c
= getopt_long(argc
, argv
, ":hf:F:T:pqsU",
1301 long_options
, NULL
);
1307 missing_argument(argv
[optind
- 1]);
1310 unrecognized_option(argv
[optind
- 1]);
1336 case OPTION_OBJECT
: {
1338 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
1345 case OPTION_IMAGE_OPTS
:
1351 /* Progress is not shown in Quiet mode */
1357 if (optind
!= argc
- 2) {
1358 error_exit("Expecting two image file names");
1360 filename1
= argv
[optind
++];
1361 filename2
= argv
[optind
++];
1363 if (qemu_opts_foreach(&qemu_object_opts
,
1364 user_creatable_add_opts_foreach
,
1365 NULL
, &error_fatal
)) {
1370 /* Initialize before goto out */
1371 qemu_progress_init(progress
, 2.0);
1374 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
1376 error_report("Invalid source cache option: %s", cache
);
1381 blk1
= img_open(image_opts
, filename1
, fmt1
, flags
, writethrough
, quiet
,
1388 blk2
= img_open(image_opts
, filename2
, fmt2
, flags
, writethrough
, quiet
,
1397 buf1
= blk_blockalign(blk1
, IO_BUF_SIZE
);
1398 buf2
= blk_blockalign(blk2
, IO_BUF_SIZE
);
1399 total_size1
= blk_getlength(blk1
);
1400 if (total_size1
< 0) {
1401 error_report("Can't get size of %s: %s",
1402 filename1
, strerror(-total_size1
));
1406 total_size2
= blk_getlength(blk2
);
1407 if (total_size2
< 0) {
1408 error_report("Can't get size of %s: %s",
1409 filename2
, strerror(-total_size2
));
1413 total_size
= MIN(total_size1
, total_size2
);
1414 progress_base
= MAX(total_size1
, total_size2
);
1416 qemu_progress_print(0, 100);
1418 if (strict
&& total_size1
!= total_size2
) {
1420 qprintf(quiet
, "Strict mode: Image size mismatch!\n");
1424 while (offset
< total_size
) {
1425 int status1
, status2
;
1427 status1
= bdrv_block_status_above(bs1
, NULL
, offset
,
1428 total_size1
- offset
, &pnum1
, NULL
,
1432 error_report("Sector allocation test failed for %s", filename1
);
1435 allocated1
= status1
& BDRV_BLOCK_ALLOCATED
;
1437 status2
= bdrv_block_status_above(bs2
, NULL
, offset
,
1438 total_size2
- offset
, &pnum2
, NULL
,
1442 error_report("Sector allocation test failed for %s", filename2
);
1445 allocated2
= status2
& BDRV_BLOCK_ALLOCATED
;
1447 assert(pnum1
&& pnum2
);
1448 chunk
= MIN(pnum1
, pnum2
);
1451 if (status1
!= status2
) {
1453 qprintf(quiet
, "Strict mode: Offset %" PRId64
1454 " block status mismatch!\n", offset
);
1458 if ((status1
& BDRV_BLOCK_ZERO
) && (status2
& BDRV_BLOCK_ZERO
)) {
1460 } else if (allocated1
== allocated2
) {
1464 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1465 ret
= blk_pread(blk1
, offset
, buf1
, chunk
);
1467 error_report("Error while reading offset %" PRId64
1469 offset
, filename1
, strerror(-ret
));
1473 ret
= blk_pread(blk2
, offset
, buf2
, chunk
);
1475 error_report("Error while reading offset %" PRId64
1477 offset
, filename2
, strerror(-ret
));
1481 ret
= compare_buffers(buf1
, buf2
, chunk
, &pnum
);
1482 if (ret
|| pnum
!= chunk
) {
1483 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1484 offset
+ (ret
? 0 : pnum
));
1490 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1492 ret
= check_empty_sectors(blk1
, offset
, chunk
,
1493 filename1
, buf1
, quiet
);
1495 ret
= check_empty_sectors(blk2
, offset
, chunk
,
1496 filename2
, buf1
, quiet
);
1503 qemu_progress_print(((float) chunk
/ progress_base
) * 100, 100);
1506 if (total_size1
!= total_size2
) {
1507 BlockBackend
*blk_over
;
1508 const char *filename_over
;
1510 qprintf(quiet
, "Warning: Image size mismatch!\n");
1511 if (total_size1
> total_size2
) {
1513 filename_over
= filename1
;
1516 filename_over
= filename2
;
1519 while (offset
< progress_base
) {
1520 ret
= bdrv_block_status_above(blk_bs(blk_over
), NULL
, offset
,
1521 progress_base
- offset
, &chunk
,
1525 error_report("Sector allocation test failed for %s",
1530 if (ret
& BDRV_BLOCK_ALLOCATED
&& !(ret
& BDRV_BLOCK_ZERO
)) {
1531 chunk
= MIN(chunk
, IO_BUF_SIZE
);
1532 ret
= check_empty_sectors(blk_over
, offset
, chunk
,
1533 filename_over
, buf1
, quiet
);
1539 qemu_progress_print(((float) chunk
/ progress_base
) * 100, 100);
1543 qprintf(quiet
, "Images are identical.\n");
1553 qemu_progress_end();
1558 enum ImgConvertBlockStatus
{
1564 #define MAX_COROUTINES 16
1566 typedef struct ImgConvertState
{
1568 int64_t *src_sectors
;
1570 int64_t total_sectors
;
1571 int64_t allocated_sectors
;
1572 int64_t allocated_done
;
1575 enum ImgConvertBlockStatus status
;
1576 int64_t sector_next_status
;
1577 BlockBackend
*target
;
1580 bool unallocated_blocks_are_zero
;
1581 bool target_has_backing
;
1582 int64_t target_backing_sectors
; /* negative if unknown */
1589 size_t cluster_sectors
;
1591 long num_coroutines
;
1592 int running_coroutines
;
1593 Coroutine
*co
[MAX_COROUTINES
];
1594 int64_t wait_sector_num
[MAX_COROUTINES
];
1599 static void convert_select_part(ImgConvertState
*s
, int64_t sector_num
,
1600 int *src_cur
, int64_t *src_cur_offset
)
1603 *src_cur_offset
= 0;
1604 while (sector_num
- *src_cur_offset
>= s
->src_sectors
[*src_cur
]) {
1605 *src_cur_offset
+= s
->src_sectors
[*src_cur
];
1607 assert(*src_cur
< s
->src_num
);
1611 static int convert_iteration_sectors(ImgConvertState
*s
, int64_t sector_num
)
1613 int64_t src_cur_offset
;
1614 int ret
, n
, src_cur
;
1615 bool post_backing_zero
= false;
1617 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1619 assert(s
->total_sectors
> sector_num
);
1620 n
= MIN(s
->total_sectors
- sector_num
, BDRV_REQUEST_MAX_SECTORS
);
1622 if (s
->target_backing_sectors
>= 0) {
1623 if (sector_num
>= s
->target_backing_sectors
) {
1624 post_backing_zero
= s
->unallocated_blocks_are_zero
;
1625 } else if (sector_num
+ n
> s
->target_backing_sectors
) {
1626 /* Split requests around target_backing_sectors (because
1627 * starting from there, zeros are handled differently) */
1628 n
= s
->target_backing_sectors
- sector_num
;
1632 if (s
->sector_next_status
<= sector_num
) {
1633 uint64_t offset
= (sector_num
- src_cur_offset
) * BDRV_SECTOR_SIZE
;
1637 count
= n
* BDRV_SECTOR_SIZE
;
1639 if (s
->target_has_backing
) {
1640 ret
= bdrv_block_status(blk_bs(s
->src
[src_cur
]), offset
,
1641 count
, &count
, NULL
, NULL
);
1643 ret
= bdrv_block_status_above(blk_bs(s
->src
[src_cur
]), NULL
,
1644 offset
, count
, &count
, NULL
,
1652 warn_report("error while reading block status at "
1653 "offset %" PRIu64
": %s", offset
,
1656 /* Just try to read the data, then */
1657 ret
= BDRV_BLOCK_DATA
;
1658 count
= BDRV_SECTOR_SIZE
;
1660 /* Retry on a shorter range */
1661 n
= DIV_ROUND_UP(n
, 4);
1664 error_report("error while reading block status at offset "
1665 "%" PRIu64
": %s", offset
, strerror(-ret
));
1671 n
= DIV_ROUND_UP(count
, BDRV_SECTOR_SIZE
);
1673 if (ret
& BDRV_BLOCK_ZERO
) {
1674 s
->status
= post_backing_zero
? BLK_BACKING_FILE
: BLK_ZERO
;
1675 } else if (ret
& BDRV_BLOCK_DATA
) {
1676 s
->status
= BLK_DATA
;
1678 s
->status
= s
->target_has_backing
? BLK_BACKING_FILE
: BLK_DATA
;
1681 s
->sector_next_status
= sector_num
+ n
;
1684 n
= MIN(n
, s
->sector_next_status
- sector_num
);
1685 if (s
->status
== BLK_DATA
) {
1686 n
= MIN(n
, s
->buf_sectors
);
1689 /* We need to write complete clusters for compressed images, so if an
1690 * unallocated area is shorter than that, we must consider the whole
1691 * cluster allocated. */
1692 if (s
->compressed
) {
1693 if (n
< s
->cluster_sectors
) {
1694 n
= MIN(s
->cluster_sectors
, s
->total_sectors
- sector_num
);
1695 s
->status
= BLK_DATA
;
1697 n
= QEMU_ALIGN_DOWN(n
, s
->cluster_sectors
);
1704 static int coroutine_fn
convert_co_read(ImgConvertState
*s
, int64_t sector_num
,
1705 int nb_sectors
, uint8_t *buf
)
1707 uint64_t single_read_until
= 0;
1710 assert(nb_sectors
<= s
->buf_sectors
);
1711 while (nb_sectors
> 0) {
1714 int64_t bs_sectors
, src_cur_offset
;
1717 /* In the case of compression with multiple source files, we can get a
1718 * nb_sectors that spreads into the next part. So we must be able to
1719 * read across multiple BDSes for one convert_read() call. */
1720 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1721 blk
= s
->src
[src_cur
];
1722 bs_sectors
= s
->src_sectors
[src_cur
];
1724 offset
= (sector_num
- src_cur_offset
) << BDRV_SECTOR_BITS
;
1726 n
= MIN(nb_sectors
, bs_sectors
- (sector_num
- src_cur_offset
));
1727 if (single_read_until
> offset
) {
1731 ret
= blk_co_pread(blk
, offset
, n
<< BDRV_SECTOR_BITS
, buf
, 0);
1735 single_read_until
= offset
+ (n
<< BDRV_SECTOR_BITS
);
1739 warn_report("error while reading offset %" PRIu64
1740 ": %s", offset
, strerror(-ret
));
1742 memset(buf
, 0, BDRV_SECTOR_SIZE
);
1751 buf
+= n
* BDRV_SECTOR_SIZE
;
1758 static int coroutine_fn
convert_co_write(ImgConvertState
*s
, int64_t sector_num
,
1759 int nb_sectors
, uint8_t *buf
,
1760 enum ImgConvertBlockStatus status
)
1764 while (nb_sectors
> 0) {
1766 BdrvRequestFlags flags
= s
->compressed
? BDRV_REQ_WRITE_COMPRESSED
: 0;
1769 case BLK_BACKING_FILE
:
1770 /* If we have a backing file, leave clusters unallocated that are
1771 * unallocated in the source image, so that the backing file is
1772 * visible at the respective offset. */
1773 assert(s
->target_has_backing
);
1777 /* If we're told to keep the target fully allocated (-S 0) or there
1778 * is real non-zero data, we must write it. Otherwise we can treat
1779 * it as zero sectors.
1780 * Compressed clusters need to be written as a whole, so in that
1781 * case we can only save the write if the buffer is completely
1783 if (!s
->min_sparse
||
1785 is_allocated_sectors_min(buf
, n
, &n
, s
->min_sparse
,
1786 sector_num
, s
->alignment
)) ||
1788 !buffer_is_zero(buf
, n
* BDRV_SECTOR_SIZE
)))
1790 ret
= blk_co_pwrite(s
->target
, sector_num
<< BDRV_SECTOR_BITS
,
1791 n
<< BDRV_SECTOR_BITS
, buf
, flags
);
1800 if (s
->has_zero_init
) {
1801 assert(!s
->target_has_backing
);
1804 ret
= blk_co_pwrite_zeroes(s
->target
,
1805 sector_num
<< BDRV_SECTOR_BITS
,
1806 n
<< BDRV_SECTOR_BITS
,
1807 BDRV_REQ_MAY_UNMAP
);
1816 buf
+= n
* BDRV_SECTOR_SIZE
;
1822 static int coroutine_fn
convert_co_copy_range(ImgConvertState
*s
, int64_t sector_num
,
1827 while (nb_sectors
> 0) {
1830 int64_t bs_sectors
, src_cur_offset
;
1833 convert_select_part(s
, sector_num
, &src_cur
, &src_cur_offset
);
1834 offset
= (sector_num
- src_cur_offset
) << BDRV_SECTOR_BITS
;
1835 blk
= s
->src
[src_cur
];
1836 bs_sectors
= s
->src_sectors
[src_cur
];
1838 n
= MIN(nb_sectors
, bs_sectors
- (sector_num
- src_cur_offset
));
1840 ret
= blk_co_copy_range(blk
, offset
, s
->target
,
1841 sector_num
<< BDRV_SECTOR_BITS
,
1842 n
<< BDRV_SECTOR_BITS
, 0, 0);
1853 static void coroutine_fn
convert_co_do_copy(void *opaque
)
1855 ImgConvertState
*s
= opaque
;
1856 uint8_t *buf
= NULL
;
1860 for (i
= 0; i
< s
->num_coroutines
; i
++) {
1861 if (s
->co
[i
] == qemu_coroutine_self()) {
1868 s
->running_coroutines
++;
1869 buf
= blk_blockalign(s
->target
, s
->buf_sectors
* BDRV_SECTOR_SIZE
);
1874 enum ImgConvertBlockStatus status
;
1877 qemu_co_mutex_lock(&s
->lock
);
1878 if (s
->ret
!= -EINPROGRESS
|| s
->sector_num
>= s
->total_sectors
) {
1879 qemu_co_mutex_unlock(&s
->lock
);
1882 n
= convert_iteration_sectors(s
, s
->sector_num
);
1884 qemu_co_mutex_unlock(&s
->lock
);
1888 /* save current sector and allocation status to local variables */
1889 sector_num
= s
->sector_num
;
1891 if (!s
->min_sparse
&& s
->status
== BLK_ZERO
) {
1892 n
= MIN(n
, s
->buf_sectors
);
1894 /* increment global sector counter so that other coroutines can
1895 * already continue reading beyond this request */
1897 qemu_co_mutex_unlock(&s
->lock
);
1899 if (status
== BLK_DATA
|| (!s
->min_sparse
&& status
== BLK_ZERO
)) {
1900 s
->allocated_done
+= n
;
1901 qemu_progress_print(100.0 * s
->allocated_done
/
1902 s
->allocated_sectors
, 0);
1906 copy_range
= s
->copy_range
&& s
->status
== BLK_DATA
;
1907 if (status
== BLK_DATA
&& !copy_range
) {
1908 ret
= convert_co_read(s
, sector_num
, n
, buf
);
1910 error_report("error while reading sector %" PRId64
1911 ": %s", sector_num
, strerror(-ret
));
1914 } else if (!s
->min_sparse
&& status
== BLK_ZERO
) {
1916 memset(buf
, 0x00, n
* BDRV_SECTOR_SIZE
);
1919 if (s
->wr_in_order
) {
1920 /* keep writes in order */
1921 while (s
->wr_offs
!= sector_num
&& s
->ret
== -EINPROGRESS
) {
1922 s
->wait_sector_num
[index
] = sector_num
;
1923 qemu_coroutine_yield();
1925 s
->wait_sector_num
[index
] = -1;
1928 if (s
->ret
== -EINPROGRESS
) {
1930 ret
= convert_co_copy_range(s
, sector_num
, n
);
1932 s
->copy_range
= false;
1936 ret
= convert_co_write(s
, sector_num
, n
, buf
, status
);
1939 error_report("error while writing sector %" PRId64
1940 ": %s", sector_num
, strerror(-ret
));
1945 if (s
->wr_in_order
) {
1946 /* reenter the coroutine that might have waited
1947 * for this write to complete */
1948 s
->wr_offs
= sector_num
+ n
;
1949 for (i
= 0; i
< s
->num_coroutines
; i
++) {
1950 if (s
->co
[i
] && s
->wait_sector_num
[i
] == s
->wr_offs
) {
1952 * A -> B -> A cannot occur because A has
1953 * s->wait_sector_num[i] == -1 during A -> B. Therefore
1954 * B will never enter A during this time window.
1956 qemu_coroutine_enter(s
->co
[i
]);
1964 s
->co
[index
] = NULL
;
1965 s
->running_coroutines
--;
1966 if (!s
->running_coroutines
&& s
->ret
== -EINPROGRESS
) {
1967 /* the convert job finished successfully */
1972 static int convert_do_copy(ImgConvertState
*s
)
1975 int64_t sector_num
= 0;
1977 /* Check whether we have zero initialisation or can get it efficiently */
1978 s
->has_zero_init
= s
->min_sparse
&& !s
->target_has_backing
1979 ? bdrv_has_zero_init(blk_bs(s
->target
))
1982 if (!s
->has_zero_init
&& !s
->target_has_backing
&&
1983 bdrv_can_write_zeroes_with_unmap(blk_bs(s
->target
)))
1985 ret
= blk_make_zero(s
->target
, BDRV_REQ_MAY_UNMAP
| BDRV_REQ_NO_FALLBACK
);
1987 s
->has_zero_init
= true;
1991 /* Allocate buffer for copied data. For compressed images, only one cluster
1992 * can be copied at a time. */
1993 if (s
->compressed
) {
1994 if (s
->cluster_sectors
<= 0 || s
->cluster_sectors
> s
->buf_sectors
) {
1995 error_report("invalid cluster size");
1998 s
->buf_sectors
= s
->cluster_sectors
;
2001 while (sector_num
< s
->total_sectors
) {
2002 n
= convert_iteration_sectors(s
, sector_num
);
2006 if (s
->status
== BLK_DATA
|| (!s
->min_sparse
&& s
->status
== BLK_ZERO
))
2008 s
->allocated_sectors
+= n
;
2014 s
->sector_next_status
= 0;
2015 s
->ret
= -EINPROGRESS
;
2017 qemu_co_mutex_init(&s
->lock
);
2018 for (i
= 0; i
< s
->num_coroutines
; i
++) {
2019 s
->co
[i
] = qemu_coroutine_create(convert_co_do_copy
, s
);
2020 s
->wait_sector_num
[i
] = -1;
2021 qemu_coroutine_enter(s
->co
[i
]);
2024 while (s
->running_coroutines
) {
2025 main_loop_wait(false);
2028 if (s
->compressed
&& !s
->ret
) {
2029 /* signal EOF to align */
2030 ret
= blk_pwrite_compressed(s
->target
, 0, NULL
, 0);
2039 #define MAX_BUF_SECTORS 32768
2041 static int img_convert(int argc
, char **argv
)
2043 int c
, bs_i
, flags
, src_flags
= 0;
2044 const char *fmt
= NULL
, *out_fmt
= NULL
, *cache
= "unsafe",
2045 *src_cache
= BDRV_DEFAULT_CACHE
, *out_baseimg
= NULL
,
2046 *out_filename
, *out_baseimg_param
, *snapshot_name
= NULL
;
2047 BlockDriver
*drv
= NULL
, *proto_drv
= NULL
;
2048 BlockDriverInfo bdi
;
2049 BlockDriverState
*out_bs
;
2050 QemuOpts
*opts
= NULL
, *sn_opts
= NULL
;
2051 QemuOptsList
*create_opts
= NULL
;
2052 QDict
*open_opts
= NULL
;
2053 char *options
= NULL
;
2054 Error
*local_err
= NULL
;
2055 bool writethrough
, src_writethrough
, image_opts
= false,
2056 skip_create
= false, progress
= false, tgt_image_opts
= false;
2057 int64_t ret
= -EINVAL
;
2058 bool force_share
= false;
2059 bool explict_min_sparse
= false;
2061 ImgConvertState s
= (ImgConvertState
) {
2062 /* Need at least 4k of zeros for sparse detection */
2064 .copy_range
= false,
2065 .buf_sectors
= IO_BUF_SIZE
/ BDRV_SECTOR_SIZE
,
2066 .wr_in_order
= true,
2067 .num_coroutines
= 8,
2071 static const struct option long_options
[] = {
2072 {"help", no_argument
, 0, 'h'},
2073 {"object", required_argument
, 0, OPTION_OBJECT
},
2074 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2075 {"force-share", no_argument
, 0, 'U'},
2076 {"target-image-opts", no_argument
, 0, OPTION_TARGET_IMAGE_OPTS
},
2077 {"salvage", no_argument
, 0, OPTION_SALVAGE
},
2080 c
= getopt_long(argc
, argv
, ":hf:O:B:Cco:l:S:pt:T:qnm:WU",
2081 long_options
, NULL
);
2087 missing_argument(argv
[optind
- 1]);
2090 unrecognized_option(argv
[optind
- 1]);
2102 out_baseimg
= optarg
;
2105 s
.copy_range
= true;
2108 s
.compressed
= true;
2111 if (!is_valid_option_list(optarg
)) {
2112 error_report("Invalid option list: %s", optarg
);
2116 options
= g_strdup(optarg
);
2118 char *old_options
= options
;
2119 options
= g_strdup_printf("%s,%s", options
, optarg
);
2120 g_free(old_options
);
2124 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
2125 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
2128 error_report("Failed in parsing snapshot param '%s'",
2133 snapshot_name
= optarg
;
2140 sval
= cvtnum(optarg
);
2141 if (sval
< 0 || sval
& (BDRV_SECTOR_SIZE
- 1) ||
2142 sval
/ BDRV_SECTOR_SIZE
> MAX_BUF_SECTORS
) {
2143 error_report("Invalid buffer size for sparse output specified. "
2144 "Valid sizes are multiples of %llu up to %llu. Select "
2145 "0 to disable sparse detection (fully allocates output).",
2146 BDRV_SECTOR_SIZE
, MAX_BUF_SECTORS
* BDRV_SECTOR_SIZE
);
2150 s
.min_sparse
= sval
/ BDRV_SECTOR_SIZE
;
2151 explict_min_sparse
= true;
2170 if (qemu_strtol(optarg
, NULL
, 0, &s
.num_coroutines
) ||
2171 s
.num_coroutines
< 1 || s
.num_coroutines
> MAX_COROUTINES
) {
2172 error_report("Invalid number of coroutines. Allowed number of"
2173 " coroutines is between 1 and %d", MAX_COROUTINES
);
2178 s
.wr_in_order
= false;
2183 case OPTION_OBJECT
: {
2184 QemuOpts
*object_opts
;
2185 object_opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2192 case OPTION_IMAGE_OPTS
:
2195 case OPTION_SALVAGE
:
2198 case OPTION_TARGET_IMAGE_OPTS
:
2199 tgt_image_opts
= true;
2204 if (!out_fmt
&& !tgt_image_opts
) {
2208 if (qemu_opts_foreach(&qemu_object_opts
,
2209 user_creatable_add_opts_foreach
,
2210 NULL
, &error_fatal
)) {
2214 if (s
.compressed
&& s
.copy_range
) {
2215 error_report("Cannot enable copy offloading when -c is used");
2219 if (explict_min_sparse
&& s
.copy_range
) {
2220 error_report("Cannot enable copy offloading when -S is used");
2224 if (s
.copy_range
&& s
.salvage
) {
2225 error_report("Cannot use copy offloading in salvaging mode");
2229 if (tgt_image_opts
&& !skip_create
) {
2230 error_report("--target-image-opts requires use of -n flag");
2234 if (skip_create
&& options
) {
2235 warn_report("-o has no effect when skipping image creation");
2236 warn_report("This will become an error in future QEMU versions.");
2239 s
.src_num
= argc
- optind
- 1;
2240 out_filename
= s
.src_num
>= 1 ? argv
[argc
- 1] : NULL
;
2242 if (options
&& has_help_option(options
)) {
2244 ret
= print_block_option_help(out_filename
, out_fmt
);
2247 error_report("Option help requires a format be specified");
2252 if (s
.src_num
< 1) {
2253 error_report("Must specify image file name");
2258 /* ret is still -EINVAL until here */
2259 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
2261 error_report("Invalid source cache option: %s", src_cache
);
2265 /* Initialize before goto out */
2269 qemu_progress_init(progress
, 1.0);
2270 qemu_progress_print(0, 100);
2272 s
.src
= g_new0(BlockBackend
*, s
.src_num
);
2273 s
.src_sectors
= g_new(int64_t, s
.src_num
);
2275 for (bs_i
= 0; bs_i
< s
.src_num
; bs_i
++) {
2276 s
.src
[bs_i
] = img_open(image_opts
, argv
[optind
+ bs_i
],
2277 fmt
, src_flags
, src_writethrough
, s
.quiet
,
2283 s
.src_sectors
[bs_i
] = blk_nb_sectors(s
.src
[bs_i
]);
2284 if (s
.src_sectors
[bs_i
] < 0) {
2285 error_report("Could not get size of %s: %s",
2286 argv
[optind
+ bs_i
], strerror(-s
.src_sectors
[bs_i
]));
2290 s
.total_sectors
+= s
.src_sectors
[bs_i
];
2294 bdrv_snapshot_load_tmp(blk_bs(s
.src
[0]),
2295 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
2296 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
2298 } else if (snapshot_name
!= NULL
) {
2299 if (s
.src_num
> 1) {
2300 error_report("No support for concatenating multiple snapshot");
2305 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s
.src
[0]), snapshot_name
,
2309 error_reportf_err(local_err
, "Failed to load snapshot: ");
2315 /* Find driver and parse its options */
2316 drv
= bdrv_find_format(out_fmt
);
2318 error_report("Unknown file format '%s'", out_fmt
);
2323 proto_drv
= bdrv_find_protocol(out_filename
, true, &local_err
);
2325 error_report_err(local_err
);
2330 if (!drv
->create_opts
) {
2331 error_report("Format driver '%s' does not support image creation",
2337 if (!proto_drv
->create_opts
) {
2338 error_report("Protocol driver '%s' does not support image creation",
2339 proto_drv
->format_name
);
2344 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
2345 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
2347 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
2349 qemu_opts_do_parse(opts
, options
, NULL
, &local_err
);
2351 error_report_err(local_err
);
2357 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, s
.total_sectors
* 512,
2359 ret
= add_old_style_options(out_fmt
, opts
, out_baseimg
, NULL
);
2365 /* Get backing file name if -o backing_file was used */
2366 out_baseimg_param
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
2367 if (out_baseimg_param
) {
2368 out_baseimg
= out_baseimg_param
;
2370 s
.target_has_backing
= (bool) out_baseimg
;
2372 if (s
.src_num
> 1 && out_baseimg
) {
2373 error_report("Having a backing file for the target makes no sense when "
2374 "concatenating multiple input images");
2379 /* Check if compression is supported */
2382 qemu_opt_get_bool(opts
, BLOCK_OPT_ENCRYPT
, false);
2383 const char *encryptfmt
=
2384 qemu_opt_get(opts
, BLOCK_OPT_ENCRYPT_FORMAT
);
2385 const char *preallocation
=
2386 qemu_opt_get(opts
, BLOCK_OPT_PREALLOC
);
2388 if (drv
&& !drv
->bdrv_co_pwritev_compressed
) {
2389 error_report("Compression not supported for this file format");
2394 if (encryption
|| encryptfmt
) {
2395 error_report("Compression and encryption not supported at "
2402 && strcmp(preallocation
, "off"))
2404 error_report("Compression and preallocation not supported at "
2412 * The later open call will need any decryption secrets, and
2413 * bdrv_create() will purge "opts", so extract them now before
2417 open_opts
= qdict_new();
2418 qemu_opt_foreach(opts
, img_add_key_secrets
, open_opts
, &error_abort
);
2422 /* Create the new image */
2423 ret
= bdrv_create(drv
, out_filename
, opts
, &local_err
);
2425 error_reportf_err(local_err
, "%s: error while converting %s: ",
2426 out_filename
, out_fmt
);
2431 flags
= s
.min_sparse
? (BDRV_O_RDWR
| BDRV_O_UNMAP
) : BDRV_O_RDWR
;
2432 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
2434 error_report("Invalid cache option: %s", cache
);
2439 s
.target
= img_open(tgt_image_opts
, out_filename
, out_fmt
,
2440 flags
, writethrough
, s
.quiet
, false);
2442 /* TODO ultimately we should allow --target-image-opts
2443 * to be used even when -n is not given.
2444 * That has to wait for bdrv_create to be improved
2445 * to allow filenames in option syntax
2447 s
.target
= img_open_file(out_filename
, open_opts
, out_fmt
,
2448 flags
, writethrough
, s
.quiet
, false);
2449 open_opts
= NULL
; /* blk_new_open will have freed it */
2455 out_bs
= blk_bs(s
.target
);
2457 if (s
.compressed
&& !out_bs
->drv
->bdrv_co_pwritev_compressed
) {
2458 error_report("Compression not supported for this file format");
2463 /* increase bufsectors from the default 4096 (2M) if opt_transfer
2464 * or discard_alignment of the out_bs is greater. Limit to
2465 * MAX_BUF_SECTORS as maximum which is currently 32768 (16MB). */
2466 s
.buf_sectors
= MIN(MAX_BUF_SECTORS
,
2468 MAX(out_bs
->bl
.opt_transfer
>> BDRV_SECTOR_BITS
,
2469 out_bs
->bl
.pdiscard_alignment
>>
2470 BDRV_SECTOR_BITS
)));
2472 /* try to align the write requests to the destination to avoid unnecessary
2474 s
.alignment
= MAX(pow2floor(s
.min_sparse
),
2475 DIV_ROUND_UP(out_bs
->bl
.request_alignment
,
2477 assert(is_power_of_2(s
.alignment
));
2480 int64_t output_sectors
= blk_nb_sectors(s
.target
);
2481 if (output_sectors
< 0) {
2482 error_report("unable to get output image length: %s",
2483 strerror(-output_sectors
));
2486 } else if (output_sectors
< s
.total_sectors
) {
2487 error_report("output file is smaller than input file");
2493 if (s
.target_has_backing
) {
2494 /* Errors are treated as "backing length unknown" (which means
2495 * s.target_backing_sectors has to be negative, which it will
2496 * be automatically). The backing file length is used only
2497 * for optimizations, so such a case is not fatal. */
2498 s
.target_backing_sectors
= bdrv_nb_sectors(out_bs
->backing
->bs
);
2500 s
.target_backing_sectors
= -1;
2503 ret
= bdrv_get_info(out_bs
, &bdi
);
2506 error_report("could not get block driver info");
2510 s
.compressed
= s
.compressed
|| bdi
.needs_compressed_writes
;
2511 s
.cluster_sectors
= bdi
.cluster_size
/ BDRV_SECTOR_SIZE
;
2512 s
.unallocated_blocks_are_zero
= bdi
.unallocated_blocks_are_zero
;
2515 ret
= convert_do_copy(&s
);
2518 qemu_progress_print(100, 0);
2520 qemu_progress_end();
2521 qemu_opts_del(opts
);
2522 qemu_opts_free(create_opts
);
2523 qemu_opts_del(sn_opts
);
2524 qobject_unref(open_opts
);
2525 blk_unref(s
.target
);
2527 for (bs_i
= 0; bs_i
< s
.src_num
; bs_i
++) {
2528 blk_unref(s
.src
[bs_i
]);
2532 g_free(s
.src_sectors
);
2540 static void dump_snapshots(BlockDriverState
*bs
)
2542 QEMUSnapshotInfo
*sn_tab
, *sn
;
2545 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2548 printf("Snapshot list:\n");
2549 bdrv_snapshot_dump(NULL
);
2551 for(i
= 0; i
< nb_sns
; i
++) {
2553 bdrv_snapshot_dump(sn
);
2559 static void dump_json_image_info_list(ImageInfoList
*list
)
2563 Visitor
*v
= qobject_output_visitor_new(&obj
);
2565 visit_type_ImageInfoList(v
, NULL
, &list
, &error_abort
);
2566 visit_complete(v
, &obj
);
2567 str
= qobject_to_json_pretty(obj
);
2568 assert(str
!= NULL
);
2569 printf("%s\n", qstring_get_str(str
));
2575 static void dump_json_image_info(ImageInfo
*info
)
2579 Visitor
*v
= qobject_output_visitor_new(&obj
);
2581 visit_type_ImageInfo(v
, NULL
, &info
, &error_abort
);
2582 visit_complete(v
, &obj
);
2583 str
= qobject_to_json_pretty(obj
);
2584 assert(str
!= NULL
);
2585 printf("%s\n", qstring_get_str(str
));
2591 static void dump_human_image_info_list(ImageInfoList
*list
)
2593 ImageInfoList
*elem
;
2596 for (elem
= list
; elem
; elem
= elem
->next
) {
2602 bdrv_image_info_dump(elem
->value
);
2606 static gboolean
str_equal_func(gconstpointer a
, gconstpointer b
)
2608 return strcmp(a
, b
) == 0;
2612 * Open an image file chain and return an ImageInfoList
2614 * @filename: topmost image filename
2615 * @fmt: topmost image format (may be NULL to autodetect)
2616 * @chain: true - enumerate entire backing file chain
2617 * false - only topmost image file
2619 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2620 * image file. If there was an error a message will have been printed to
2623 static ImageInfoList
*collect_image_info_list(bool image_opts
,
2624 const char *filename
,
2626 bool chain
, bool force_share
)
2628 ImageInfoList
*head
= NULL
;
2629 ImageInfoList
**last
= &head
;
2630 GHashTable
*filenames
;
2633 filenames
= g_hash_table_new_full(g_str_hash
, str_equal_func
, NULL
, NULL
);
2637 BlockDriverState
*bs
;
2639 ImageInfoList
*elem
;
2641 if (g_hash_table_lookup_extended(filenames
, filename
, NULL
, NULL
)) {
2642 error_report("Backing file '%s' creates an infinite loop.",
2646 g_hash_table_insert(filenames
, (gpointer
)filename
, NULL
);
2648 blk
= img_open(image_opts
, filename
, fmt
,
2649 BDRV_O_NO_BACKING
| BDRV_O_NO_IO
, false, false,
2656 bdrv_query_image_info(bs
, &info
, &err
);
2658 error_report_err(err
);
2663 elem
= g_new0(ImageInfoList
, 1);
2670 filename
= fmt
= NULL
;
2672 if (info
->has_full_backing_filename
) {
2673 filename
= info
->full_backing_filename
;
2674 } else if (info
->has_backing_filename
) {
2675 error_report("Could not determine absolute backing filename,"
2676 " but backing filename '%s' present",
2677 info
->backing_filename
);
2680 if (info
->has_backing_filename_format
) {
2681 fmt
= info
->backing_filename_format
;
2685 g_hash_table_destroy(filenames
);
2689 qapi_free_ImageInfoList(head
);
2690 g_hash_table_destroy(filenames
);
2694 static int img_info(int argc
, char **argv
)
2697 OutputFormat output_format
= OFORMAT_HUMAN
;
2699 const char *filename
, *fmt
, *output
;
2700 ImageInfoList
*list
;
2701 bool image_opts
= false;
2702 bool force_share
= false;
2707 int option_index
= 0;
2708 static const struct option long_options
[] = {
2709 {"help", no_argument
, 0, 'h'},
2710 {"format", required_argument
, 0, 'f'},
2711 {"output", required_argument
, 0, OPTION_OUTPUT
},
2712 {"backing-chain", no_argument
, 0, OPTION_BACKING_CHAIN
},
2713 {"object", required_argument
, 0, OPTION_OBJECT
},
2714 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2715 {"force-share", no_argument
, 0, 'U'},
2718 c
= getopt_long(argc
, argv
, ":f:hU",
2719 long_options
, &option_index
);
2725 missing_argument(argv
[optind
- 1]);
2728 unrecognized_option(argv
[optind
- 1]);
2742 case OPTION_BACKING_CHAIN
:
2745 case OPTION_OBJECT
: {
2747 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2753 case OPTION_IMAGE_OPTS
:
2758 if (optind
!= argc
- 1) {
2759 error_exit("Expecting one image file name");
2761 filename
= argv
[optind
++];
2763 if (output
&& !strcmp(output
, "json")) {
2764 output_format
= OFORMAT_JSON
;
2765 } else if (output
&& !strcmp(output
, "human")) {
2766 output_format
= OFORMAT_HUMAN
;
2767 } else if (output
) {
2768 error_report("--output must be used with human or json as argument.");
2772 if (qemu_opts_foreach(&qemu_object_opts
,
2773 user_creatable_add_opts_foreach
,
2774 NULL
, &error_fatal
)) {
2778 list
= collect_image_info_list(image_opts
, filename
, fmt
, chain
,
2784 switch (output_format
) {
2786 dump_human_image_info_list(list
);
2790 dump_json_image_info_list(list
);
2792 dump_json_image_info(list
->value
);
2797 qapi_free_ImageInfoList(list
);
2801 static int dump_map_entry(OutputFormat output_format
, MapEntry
*e
,
2804 switch (output_format
) {
2806 if (e
->data
&& !e
->has_offset
) {
2807 error_report("File contains external, encrypted or compressed clusters.");
2810 if (e
->data
&& !e
->zero
) {
2811 printf("%#-16"PRIx64
"%#-16"PRIx64
"%#-16"PRIx64
"%s\n",
2812 e
->start
, e
->length
,
2813 e
->has_offset
? e
->offset
: 0,
2814 e
->has_filename
? e
->filename
: "");
2816 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2817 * Modify the flags here to allow more coalescing.
2819 if (next
&& (!next
->data
|| next
->zero
)) {
2825 printf("%s{ \"start\": %"PRId64
", \"length\": %"PRId64
","
2826 " \"depth\": %"PRId64
", \"zero\": %s, \"data\": %s",
2827 (e
->start
== 0 ? "[" : ",\n"),
2828 e
->start
, e
->length
, e
->depth
,
2829 e
->zero
? "true" : "false",
2830 e
->data
? "true" : "false");
2831 if (e
->has_offset
) {
2832 printf(", \"offset\": %"PRId64
"", e
->offset
);
2844 static int get_block_status(BlockDriverState
*bs
, int64_t offset
,
2845 int64_t bytes
, MapEntry
*e
)
2849 BlockDriverState
*file
;
2852 char *filename
= NULL
;
2854 /* As an optimization, we could cache the current range of unallocated
2855 * clusters in each file of the chain, and avoid querying the same
2861 ret
= bdrv_block_status(bs
, offset
, bytes
, &bytes
, &map
, &file
);
2866 if (ret
& (BDRV_BLOCK_ZERO
|BDRV_BLOCK_DATA
)) {
2869 bs
= backing_bs(bs
);
2878 has_offset
= !!(ret
& BDRV_BLOCK_OFFSET_VALID
);
2880 if (file
&& has_offset
) {
2881 bdrv_refresh_filename(file
);
2882 filename
= file
->filename
;
2888 .data
= !!(ret
& BDRV_BLOCK_DATA
),
2889 .zero
= !!(ret
& BDRV_BLOCK_ZERO
),
2891 .has_offset
= has_offset
,
2893 .has_filename
= filename
,
2894 .filename
= filename
,
2900 static inline bool entry_mergeable(const MapEntry
*curr
, const MapEntry
*next
)
2902 if (curr
->length
== 0) {
2905 if (curr
->zero
!= next
->zero
||
2906 curr
->data
!= next
->data
||
2907 curr
->depth
!= next
->depth
||
2908 curr
->has_filename
!= next
->has_filename
||
2909 curr
->has_offset
!= next
->has_offset
) {
2912 if (curr
->has_filename
&& strcmp(curr
->filename
, next
->filename
)) {
2915 if (curr
->has_offset
&& curr
->offset
+ curr
->length
!= next
->offset
) {
2921 static int img_map(int argc
, char **argv
)
2924 OutputFormat output_format
= OFORMAT_HUMAN
;
2926 BlockDriverState
*bs
;
2927 const char *filename
, *fmt
, *output
;
2929 MapEntry curr
= { .length
= 0 }, next
;
2931 bool image_opts
= false;
2932 bool force_share
= false;
2937 int option_index
= 0;
2938 static const struct option long_options
[] = {
2939 {"help", no_argument
, 0, 'h'},
2940 {"format", required_argument
, 0, 'f'},
2941 {"output", required_argument
, 0, OPTION_OUTPUT
},
2942 {"object", required_argument
, 0, OPTION_OBJECT
},
2943 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2944 {"force-share", no_argument
, 0, 'U'},
2947 c
= getopt_long(argc
, argv
, ":f:hU",
2948 long_options
, &option_index
);
2954 missing_argument(argv
[optind
- 1]);
2957 unrecognized_option(argv
[optind
- 1]);
2971 case OPTION_OBJECT
: {
2973 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2979 case OPTION_IMAGE_OPTS
:
2984 if (optind
!= argc
- 1) {
2985 error_exit("Expecting one image file name");
2987 filename
= argv
[optind
];
2989 if (output
&& !strcmp(output
, "json")) {
2990 output_format
= OFORMAT_JSON
;
2991 } else if (output
&& !strcmp(output
, "human")) {
2992 output_format
= OFORMAT_HUMAN
;
2993 } else if (output
) {
2994 error_report("--output must be used with human or json as argument.");
2998 if (qemu_opts_foreach(&qemu_object_opts
,
2999 user_creatable_add_opts_foreach
,
3000 NULL
, &error_fatal
)) {
3004 blk
= img_open(image_opts
, filename
, fmt
, 0, false, false, force_share
);
3010 if (output_format
== OFORMAT_HUMAN
) {
3011 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
3014 length
= blk_getlength(blk
);
3015 while (curr
.start
+ curr
.length
< length
) {
3016 int64_t offset
= curr
.start
+ curr
.length
;
3019 /* Probe up to 1 GiB at a time. */
3020 n
= MIN(1 * GiB
, length
- offset
);
3021 ret
= get_block_status(bs
, offset
, n
, &next
);
3024 error_report("Could not read file metadata: %s", strerror(-ret
));
3028 if (entry_mergeable(&curr
, &next
)) {
3029 curr
.length
+= next
.length
;
3033 if (curr
.length
> 0) {
3034 ret
= dump_map_entry(output_format
, &curr
, &next
);
3042 ret
= dump_map_entry(output_format
, &curr
, NULL
);
3049 #define SNAPSHOT_LIST 1
3050 #define SNAPSHOT_CREATE 2
3051 #define SNAPSHOT_APPLY 3
3052 #define SNAPSHOT_DELETE 4
3054 static int img_snapshot(int argc
, char **argv
)
3057 BlockDriverState
*bs
;
3058 QEMUSnapshotInfo sn
;
3059 char *filename
, *snapshot_name
= NULL
;
3060 int c
, ret
= 0, bdrv_oflags
;
3065 bool image_opts
= false;
3066 bool force_share
= false;
3068 bdrv_oflags
= BDRV_O_RDWR
;
3069 /* Parse commandline parameters */
3071 static const struct option long_options
[] = {
3072 {"help", no_argument
, 0, 'h'},
3073 {"object", required_argument
, 0, OPTION_OBJECT
},
3074 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3075 {"force-share", no_argument
, 0, 'U'},
3078 c
= getopt_long(argc
, argv
, ":la:c:d:hqU",
3079 long_options
, NULL
);
3085 missing_argument(argv
[optind
- 1]);
3088 unrecognized_option(argv
[optind
- 1]);
3095 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3098 action
= SNAPSHOT_LIST
;
3099 bdrv_oflags
&= ~BDRV_O_RDWR
; /* no need for RW */
3103 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3106 action
= SNAPSHOT_APPLY
;
3107 snapshot_name
= optarg
;
3111 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3114 action
= SNAPSHOT_CREATE
;
3115 snapshot_name
= optarg
;
3119 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
3122 action
= SNAPSHOT_DELETE
;
3123 snapshot_name
= optarg
;
3131 case OPTION_OBJECT
: {
3133 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3139 case OPTION_IMAGE_OPTS
:
3145 if (optind
!= argc
- 1) {
3146 error_exit("Expecting one image file name");
3148 filename
= argv
[optind
++];
3150 if (qemu_opts_foreach(&qemu_object_opts
,
3151 user_creatable_add_opts_foreach
,
3152 NULL
, &error_fatal
)) {
3156 /* Open the image */
3157 blk
= img_open(image_opts
, filename
, NULL
, bdrv_oflags
, false, quiet
,
3164 /* Perform the requested action */
3170 case SNAPSHOT_CREATE
:
3171 memset(&sn
, 0, sizeof(sn
));
3172 pstrcpy(sn
.name
, sizeof(sn
.name
), snapshot_name
);
3174 qemu_gettimeofday(&tv
);
3175 sn
.date_sec
= tv
.tv_sec
;
3176 sn
.date_nsec
= tv
.tv_usec
* 1000;
3178 ret
= bdrv_snapshot_create(bs
, &sn
);
3180 error_report("Could not create snapshot '%s': %d (%s)",
3181 snapshot_name
, ret
, strerror(-ret
));
3185 case SNAPSHOT_APPLY
:
3186 ret
= bdrv_snapshot_goto(bs
, snapshot_name
, &err
);
3188 error_reportf_err(err
, "Could not apply snapshot '%s': ",
3193 case SNAPSHOT_DELETE
:
3194 ret
= bdrv_snapshot_find(bs
, &sn
, snapshot_name
);
3196 error_report("Could not delete snapshot '%s': snapshot not "
3197 "found", snapshot_name
);
3200 ret
= bdrv_snapshot_delete(bs
, sn
.id_str
, sn
.name
, &err
);
3202 error_reportf_err(err
, "Could not delete snapshot '%s': ",
3218 static int img_rebase(int argc
, char **argv
)
3220 BlockBackend
*blk
= NULL
, *blk_old_backing
= NULL
, *blk_new_backing
= NULL
;
3221 uint8_t *buf_old
= NULL
;
3222 uint8_t *buf_new
= NULL
;
3223 BlockDriverState
*bs
= NULL
, *prefix_chain_bs
= NULL
;
3225 const char *fmt
, *cache
, *src_cache
, *out_basefmt
, *out_baseimg
;
3226 int c
, flags
, src_flags
, ret
;
3227 bool writethrough
, src_writethrough
;
3229 bool force_share
= false;
3232 Error
*local_err
= NULL
;
3233 bool image_opts
= false;
3235 /* Parse commandline parameters */
3237 cache
= BDRV_DEFAULT_CACHE
;
3238 src_cache
= BDRV_DEFAULT_CACHE
;
3242 static const struct option long_options
[] = {
3243 {"help", no_argument
, 0, 'h'},
3244 {"object", required_argument
, 0, OPTION_OBJECT
},
3245 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3246 {"force-share", no_argument
, 0, 'U'},
3249 c
= getopt_long(argc
, argv
, ":hf:F:b:upt:T:qU",
3250 long_options
, NULL
);
3256 missing_argument(argv
[optind
- 1]);
3259 unrecognized_option(argv
[optind
- 1]);
3268 out_basefmt
= optarg
;
3271 out_baseimg
= optarg
;
3288 case OPTION_OBJECT
: {
3290 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3296 case OPTION_IMAGE_OPTS
:
3309 if (optind
!= argc
- 1) {
3310 error_exit("Expecting one image file name");
3312 if (!unsafe
&& !out_baseimg
) {
3313 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
3315 filename
= argv
[optind
++];
3317 if (qemu_opts_foreach(&qemu_object_opts
,
3318 user_creatable_add_opts_foreach
,
3319 NULL
, &error_fatal
)) {
3323 qemu_progress_init(progress
, 2.0);
3324 qemu_progress_print(0, 100);
3326 flags
= BDRV_O_RDWR
| (unsafe
? BDRV_O_NO_BACKING
: 0);
3327 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
3329 error_report("Invalid cache option: %s", cache
);
3334 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
3336 error_report("Invalid source cache option: %s", src_cache
);
3340 /* The source files are opened read-only, don't care about WCE */
3341 assert((src_flags
& BDRV_O_RDWR
) == 0);
3342 (void) src_writethrough
;
3347 * Ignore the old backing file for unsafe rebase in case we want to correct
3348 * the reference to a renamed or moved backing file.
3350 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
3358 if (out_basefmt
!= NULL
) {
3359 if (bdrv_find_format(out_basefmt
) == NULL
) {
3360 error_report("Invalid format name: '%s'", out_basefmt
);
3366 /* For safe rebasing we need to compare old and new backing file */
3368 QDict
*options
= NULL
;
3369 BlockDriverState
*base_bs
= backing_bs(bs
);
3372 blk_old_backing
= blk_new(qemu_get_aio_context(),
3373 BLK_PERM_CONSISTENT_READ
,
3375 ret
= blk_insert_bs(blk_old_backing
, base_bs
,
3378 error_reportf_err(local_err
,
3379 "Could not reuse old backing file '%s': ",
3384 blk_old_backing
= NULL
;
3387 if (out_baseimg
[0]) {
3388 const char *overlay_filename
;
3389 char *out_real_path
;
3391 options
= qdict_new();
3393 qdict_put_str(options
, "driver", out_basefmt
);
3396 qdict_put_bool(options
, BDRV_OPT_FORCE_SHARE
, true);
3399 bdrv_refresh_filename(bs
);
3400 overlay_filename
= bs
->exact_filename
[0] ? bs
->exact_filename
3403 bdrv_get_full_backing_filename_from_filename(overlay_filename
,
3407 qobject_unref(options
);
3408 error_reportf_err(local_err
,
3409 "Could not resolve backing filename: ");
3415 * Find out whether we rebase an image on top of a previous image
3418 prefix_chain_bs
= bdrv_find_backing_image(bs
, out_real_path
);
3419 if (prefix_chain_bs
) {
3420 qobject_unref(options
);
3421 g_free(out_real_path
);
3423 blk_new_backing
= blk_new(qemu_get_aio_context(),
3424 BLK_PERM_CONSISTENT_READ
,
3426 ret
= blk_insert_bs(blk_new_backing
, prefix_chain_bs
,
3429 error_reportf_err(local_err
,
3430 "Could not reuse backing file '%s': ",
3435 blk_new_backing
= blk_new_open(out_real_path
, NULL
,
3436 options
, src_flags
, &local_err
);
3437 g_free(out_real_path
);
3438 if (!blk_new_backing
) {
3439 error_reportf_err(local_err
,
3440 "Could not open new backing file '%s': ",
3450 * Check each unallocated cluster in the COW file. If it is unallocated,
3451 * accesses go to the backing file. We must therefore compare this cluster
3452 * in the old and new backing file, and if they differ we need to copy it
3453 * from the old backing file into the COW file.
3455 * If qemu-img crashes during this step, no harm is done. The content of
3456 * the image is the same as the original one at any time.
3460 int64_t old_backing_size
= 0;
3461 int64_t new_backing_size
= 0;
3464 float local_progress
= 0;
3466 buf_old
= blk_blockalign(blk
, IO_BUF_SIZE
);
3467 buf_new
= blk_blockalign(blk
, IO_BUF_SIZE
);
3469 size
= blk_getlength(blk
);
3471 error_report("Could not get size of '%s': %s",
3472 filename
, strerror(-size
));
3476 if (blk_old_backing
) {
3477 old_backing_size
= blk_getlength(blk_old_backing
);
3478 if (old_backing_size
< 0) {
3479 char backing_name
[PATH_MAX
];
3481 bdrv_get_backing_filename(bs
, backing_name
,
3482 sizeof(backing_name
));
3483 error_report("Could not get size of '%s': %s",
3484 backing_name
, strerror(-old_backing_size
));
3489 if (blk_new_backing
) {
3490 new_backing_size
= blk_getlength(blk_new_backing
);
3491 if (new_backing_size
< 0) {
3492 error_report("Could not get size of '%s': %s",
3493 out_baseimg
, strerror(-new_backing_size
));
3500 local_progress
= (float)100 / (size
/ MIN(size
, IO_BUF_SIZE
));
3503 for (offset
= 0; offset
< size
; offset
+= n
) {
3504 bool buf_old_is_zero
= false;
3506 /* How many bytes can we handle with the next read? */
3507 n
= MIN(IO_BUF_SIZE
, size
- offset
);
3509 /* If the cluster is allocated, we don't need to take action */
3510 ret
= bdrv_is_allocated(bs
, offset
, n
, &n
);
3512 error_report("error while reading image metadata: %s",
3520 if (prefix_chain_bs
) {
3522 * If cluster wasn't changed since prefix_chain, we don't need
3525 ret
= bdrv_is_allocated_above(backing_bs(bs
), prefix_chain_bs
,
3526 false, offset
, n
, &n
);
3528 error_report("error while reading image metadata: %s",
3538 * Read old and new backing file and take into consideration that
3539 * backing files may be smaller than the COW image.
3541 if (offset
>= old_backing_size
) {
3542 memset(buf_old
, 0, n
);
3543 buf_old_is_zero
= true;
3545 if (offset
+ n
> old_backing_size
) {
3546 n
= old_backing_size
- offset
;
3549 ret
= blk_pread(blk_old_backing
, offset
, buf_old
, n
);
3551 error_report("error while reading from old backing file");
3556 if (offset
>= new_backing_size
|| !blk_new_backing
) {
3557 memset(buf_new
, 0, n
);
3559 if (offset
+ n
> new_backing_size
) {
3560 n
= new_backing_size
- offset
;
3563 ret
= blk_pread(blk_new_backing
, offset
, buf_new
, n
);
3565 error_report("error while reading from new backing file");
3570 /* If they differ, we need to write to the COW file */
3571 uint64_t written
= 0;
3573 while (written
< n
) {
3576 if (compare_buffers(buf_old
+ written
, buf_new
+ written
,
3577 n
- written
, &pnum
))
3579 if (buf_old_is_zero
) {
3580 ret
= blk_pwrite_zeroes(blk
, offset
+ written
, pnum
, 0);
3582 ret
= blk_pwrite(blk
, offset
+ written
,
3583 buf_old
+ written
, pnum
, 0);
3586 error_report("Error while writing to COW image: %s",
3594 qemu_progress_print(local_progress
, 100);
3599 * Change the backing file. All clusters that are different from the old
3600 * backing file are overwritten in the COW file now, so the visible content
3601 * doesn't change when we switch the backing file.
3603 if (out_baseimg
&& *out_baseimg
) {
3604 ret
= bdrv_change_backing_file(bs
, out_baseimg
, out_basefmt
);
3606 ret
= bdrv_change_backing_file(bs
, NULL
, NULL
);
3609 if (ret
== -ENOSPC
) {
3610 error_report("Could not change the backing file to '%s': No "
3611 "space left in the file header", out_baseimg
);
3612 } else if (ret
< 0) {
3613 error_report("Could not change the backing file to '%s': %s",
3614 out_baseimg
, strerror(-ret
));
3617 qemu_progress_print(100, 0);
3619 * TODO At this point it is possible to check if any clusters that are
3620 * allocated in the COW file are the same in the backing file. If so, they
3621 * could be dropped from the COW file. Don't do this before switching the
3622 * backing file, in case of a crash this would lead to corruption.
3625 qemu_progress_end();
3628 blk_unref(blk_old_backing
);
3629 blk_unref(blk_new_backing
);
3631 qemu_vfree(buf_old
);
3632 qemu_vfree(buf_new
);
3641 static int img_resize(int argc
, char **argv
)
3644 int c
, ret
, relative
;
3645 const char *filename
, *fmt
, *size
;
3646 int64_t n
, total_size
, current_size
, new_size
;
3648 BlockBackend
*blk
= NULL
;
3649 PreallocMode prealloc
= PREALLOC_MODE_OFF
;
3652 static QemuOptsList resize_options
= {
3653 .name
= "resize_options",
3654 .head
= QTAILQ_HEAD_INITIALIZER(resize_options
.head
),
3657 .name
= BLOCK_OPT_SIZE
,
3658 .type
= QEMU_OPT_SIZE
,
3659 .help
= "Virtual disk size"
3665 bool image_opts
= false;
3666 bool shrink
= false;
3668 /* Remove size from argv manually so that negative numbers are not treated
3669 * as options by getopt. */
3671 error_exit("Not enough arguments");
3675 size
= argv
[--argc
];
3677 /* Parse getopt arguments */
3680 static const struct option long_options
[] = {
3681 {"help", no_argument
, 0, 'h'},
3682 {"object", required_argument
, 0, OPTION_OBJECT
},
3683 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3684 {"preallocation", required_argument
, 0, OPTION_PREALLOCATION
},
3685 {"shrink", no_argument
, 0, OPTION_SHRINK
},
3688 c
= getopt_long(argc
, argv
, ":f:hq",
3689 long_options
, NULL
);
3695 missing_argument(argv
[optind
- 1]);
3698 unrecognized_option(argv
[optind
- 1]);
3709 case OPTION_OBJECT
: {
3711 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3717 case OPTION_IMAGE_OPTS
:
3720 case OPTION_PREALLOCATION
:
3721 prealloc
= qapi_enum_parse(&PreallocMode_lookup
, optarg
,
3722 PREALLOC_MODE__MAX
, NULL
);
3723 if (prealloc
== PREALLOC_MODE__MAX
) {
3724 error_report("Invalid preallocation mode '%s'", optarg
);
3733 if (optind
!= argc
- 1) {
3734 error_exit("Expecting image file name and size");
3736 filename
= argv
[optind
++];
3738 if (qemu_opts_foreach(&qemu_object_opts
,
3739 user_creatable_add_opts_foreach
,
3740 NULL
, &error_fatal
)) {
3744 /* Choose grow, shrink, or absolute resize mode */
3760 param
= qemu_opts_create(&resize_options
, NULL
, 0, &error_abort
);
3761 qemu_opt_set(param
, BLOCK_OPT_SIZE
, size
, &err
);
3763 error_report_err(err
);
3765 qemu_opts_del(param
);
3768 n
= qemu_opt_get_size(param
, BLOCK_OPT_SIZE
, 0);
3769 qemu_opts_del(param
);
3771 blk
= img_open(image_opts
, filename
, fmt
,
3772 BDRV_O_RDWR
| BDRV_O_RESIZE
, false, quiet
,
3779 current_size
= blk_getlength(blk
);
3780 if (current_size
< 0) {
3781 error_report("Failed to inquire current image length: %s",
3782 strerror(-current_size
));
3788 total_size
= current_size
+ n
* relative
;
3792 if (total_size
<= 0) {
3793 error_report("New image size must be positive");
3798 if (total_size
<= current_size
&& prealloc
!= PREALLOC_MODE_OFF
) {
3799 error_report("Preallocation can only be used for growing images");
3804 if (total_size
< current_size
&& !shrink
) {
3805 warn_report("Shrinking an image will delete all data beyond the "
3806 "shrunken image's end. Before performing such an "
3807 "operation, make sure there is no important data there.");
3809 if (g_strcmp0(bdrv_get_format_name(blk_bs(blk
)), "raw") != 0) {
3811 "Use the --shrink option to perform a shrink operation.");
3815 warn_report("Using the --shrink option will suppress this message. "
3816 "Note that future versions of qemu-img may refuse to "
3817 "shrink images without this option.");
3821 ret
= blk_truncate(blk
, total_size
, prealloc
, &err
);
3823 error_report_err(err
);
3827 new_size
= blk_getlength(blk
);
3829 error_report("Failed to verify truncated image length: %s",
3830 strerror(-new_size
));
3835 /* Some block drivers implement a truncation method, but only so
3836 * the user can cause qemu to refresh the image's size from disk.
3837 * The idea is that the user resizes the image outside of qemu and
3838 * then invokes block_resize to inform qemu about it.
3839 * (This includes iscsi and file-posix for device files.)
3840 * Of course, that is not the behavior someone invoking
3841 * qemu-img resize would find useful, so we catch that behavior
3842 * here and tell the user. */
3843 if (new_size
!= total_size
&& new_size
== current_size
) {
3844 error_report("Image was not resized; resizing may not be supported "
3850 if (new_size
!= total_size
) {
3851 warn_report("Image should have been resized to %" PRIi64
3852 " bytes, but was resized to %" PRIi64
" bytes",
3853 total_size
, new_size
);
3856 qprintf(quiet
, "Image resized.\n");
3866 static void amend_status_cb(BlockDriverState
*bs
,
3867 int64_t offset
, int64_t total_work_size
,
3870 qemu_progress_print(100.f
* offset
/ total_work_size
, 0);
3873 static int print_amend_option_help(const char *format
)
3877 /* Find driver and parse its options */
3878 drv
= bdrv_find_format(format
);
3880 error_report("Unknown file format '%s'", format
);
3884 if (!drv
->bdrv_amend_options
) {
3885 error_report("Format driver '%s' does not support option amendment",
3890 /* Every driver supporting amendment must have create_opts */
3891 assert(drv
->create_opts
);
3893 printf("Creation options for '%s':\n", format
);
3894 qemu_opts_print_help(drv
->create_opts
, false);
3895 printf("\nNote that not all of these options may be amendable.\n");
3899 static int img_amend(int argc
, char **argv
)
3903 char *options
= NULL
;
3904 QemuOptsList
*create_opts
= NULL
;
3905 QemuOpts
*opts
= NULL
;
3906 const char *fmt
= NULL
, *filename
, *cache
;
3909 bool quiet
= false, progress
= false;
3910 BlockBackend
*blk
= NULL
;
3911 BlockDriverState
*bs
= NULL
;
3912 bool image_opts
= false;
3914 cache
= BDRV_DEFAULT_CACHE
;
3916 static const struct option long_options
[] = {
3917 {"help", no_argument
, 0, 'h'},
3918 {"object", required_argument
, 0, OPTION_OBJECT
},
3919 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3922 c
= getopt_long(argc
, argv
, ":ho:f:t:pq",
3923 long_options
, NULL
);
3930 missing_argument(argv
[optind
- 1]);
3933 unrecognized_option(argv
[optind
- 1]);
3939 if (!is_valid_option_list(optarg
)) {
3940 error_report("Invalid option list: %s", optarg
);
3942 goto out_no_progress
;
3945 options
= g_strdup(optarg
);
3947 char *old_options
= options
;
3948 options
= g_strdup_printf("%s,%s", options
, optarg
);
3949 g_free(old_options
);
3965 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3969 goto out_no_progress
;
3972 case OPTION_IMAGE_OPTS
:
3979 error_exit("Must specify options (-o)");
3982 if (qemu_opts_foreach(&qemu_object_opts
,
3983 user_creatable_add_opts_foreach
,
3984 NULL
, &error_fatal
)) {
3986 goto out_no_progress
;
3992 qemu_progress_init(progress
, 1.0);
3994 filename
= (optind
== argc
- 1) ? argv
[argc
- 1] : NULL
;
3995 if (fmt
&& has_help_option(options
)) {
3996 /* If a format is explicitly specified (and possibly no filename is
3997 * given), print option help here */
3998 ret
= print_amend_option_help(fmt
);
4002 if (optind
!= argc
- 1) {
4003 error_report("Expecting one image file name");
4008 flags
= BDRV_O_RDWR
;
4009 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
4011 error_report("Invalid cache option: %s", cache
);
4015 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
4023 fmt
= bs
->drv
->format_name
;
4025 if (has_help_option(options
)) {
4026 /* If the format was auto-detected, print option help here */
4027 ret
= print_amend_option_help(fmt
);
4031 if (!bs
->drv
->bdrv_amend_options
) {
4032 error_report("Format driver '%s' does not support option amendment",
4038 /* Every driver supporting amendment must have create_opts */
4039 assert(bs
->drv
->create_opts
);
4041 create_opts
= qemu_opts_append(create_opts
, bs
->drv
->create_opts
);
4042 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4043 qemu_opts_do_parse(opts
, options
, NULL
, &err
);
4045 error_report_err(err
);
4050 /* In case the driver does not call amend_status_cb() */
4051 qemu_progress_print(0.f
, 0);
4052 ret
= bdrv_amend_options(bs
, opts
, &amend_status_cb
, NULL
, &err
);
4053 qemu_progress_print(100.f
, 0);
4055 error_report_err(err
);
4060 qemu_progress_end();
4064 qemu_opts_del(opts
);
4065 qemu_opts_free(create_opts
);
4074 typedef struct BenchData
{
4076 uint64_t image_size
;
4083 bool drain_on_flush
;
4092 static void bench_undrained_flush_cb(void *opaque
, int ret
)
4095 error_report("Failed flush request: %s", strerror(-ret
));
4100 static void bench_cb(void *opaque
, int ret
)
4102 BenchData
*b
= opaque
;
4106 error_report("Failed request: %s", strerror(-ret
));
4111 /* Just finished a flush with drained queue: Start next requests */
4112 assert(b
->in_flight
== 0);
4113 b
->in_flush
= false;
4114 } else if (b
->in_flight
> 0) {
4115 int remaining
= b
->n
- b
->in_flight
;
4120 /* Time for flush? Drain queue if requested, then flush */
4121 if (b
->flush_interval
&& remaining
% b
->flush_interval
== 0) {
4122 if (!b
->in_flight
|| !b
->drain_on_flush
) {
4123 BlockCompletionFunc
*cb
;
4125 if (b
->drain_on_flush
) {
4129 cb
= bench_undrained_flush_cb
;
4132 acb
= blk_aio_flush(b
->blk
, cb
, b
);
4134 error_report("Failed to issue flush request");
4138 if (b
->drain_on_flush
) {
4144 while (b
->n
> b
->in_flight
&& b
->in_flight
< b
->nrreq
) {
4145 int64_t offset
= b
->offset
;
4146 /* blk_aio_* might look for completed I/Os and kick bench_cb
4147 * again, so make sure this operation is counted by in_flight
4148 * and b->offset is ready for the next submission.
4151 b
->offset
+= b
->step
;
4152 b
->offset
%= b
->image_size
;
4154 acb
= blk_aio_pwritev(b
->blk
, offset
, b
->qiov
, 0, bench_cb
, b
);
4156 acb
= blk_aio_preadv(b
->blk
, offset
, b
->qiov
, 0, bench_cb
, b
);
4159 error_report("Failed to issue request");
4165 static int img_bench(int argc
, char **argv
)
4168 const char *fmt
= NULL
, *filename
;
4170 bool image_opts
= false;
4171 bool is_write
= false;
4175 size_t bufsize
= 4096;
4178 int flush_interval
= 0;
4179 bool drain_on_flush
= true;
4181 BlockBackend
*blk
= NULL
;
4182 BenchData data
= {};
4184 bool writethrough
= false;
4185 struct timeval t1
, t2
;
4187 bool force_share
= false;
4191 static const struct option long_options
[] = {
4192 {"help", no_argument
, 0, 'h'},
4193 {"flush-interval", required_argument
, 0, OPTION_FLUSH_INTERVAL
},
4194 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4195 {"pattern", required_argument
, 0, OPTION_PATTERN
},
4196 {"no-drain", no_argument
, 0, OPTION_NO_DRAIN
},
4197 {"force-share", no_argument
, 0, 'U'},
4200 c
= getopt_long(argc
, argv
, ":hc:d:f:no:qs:S:t:wU", long_options
, NULL
);
4207 missing_argument(argv
[optind
- 1]);
4210 unrecognized_option(argv
[optind
- 1]);
4219 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4220 error_report("Invalid request count specified");
4230 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4231 error_report("Invalid queue depth specified");
4241 flags
|= BDRV_O_NATIVE_AIO
;
4245 offset
= cvtnum(optarg
);
4247 error_report("Invalid offset specified");
4260 sval
= cvtnum(optarg
);
4261 if (sval
< 0 || sval
> INT_MAX
) {
4262 error_report("Invalid buffer size specified");
4273 sval
= cvtnum(optarg
);
4274 if (sval
< 0 || sval
> INT_MAX
) {
4275 error_report("Invalid step size specified");
4283 ret
= bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
);
4285 error_report("Invalid cache mode");
4291 flags
|= BDRV_O_RDWR
;
4297 case OPTION_PATTERN
:
4301 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> 0xff) {
4302 error_report("Invalid pattern byte specified");
4308 case OPTION_FLUSH_INTERVAL
:
4312 if (qemu_strtoul(optarg
, NULL
, 0, &res
) < 0 || res
> INT_MAX
) {
4313 error_report("Invalid flush interval specified");
4316 flush_interval
= res
;
4319 case OPTION_NO_DRAIN
:
4320 drain_on_flush
= false;
4322 case OPTION_IMAGE_OPTS
:
4328 if (optind
!= argc
- 1) {
4329 error_exit("Expecting one image file name");
4331 filename
= argv
[argc
- 1];
4333 if (!is_write
&& flush_interval
) {
4334 error_report("--flush-interval is only available in write tests");
4338 if (flush_interval
&& flush_interval
< depth
) {
4339 error_report("Flush interval can't be smaller than depth");
4344 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
,
4351 image_size
= blk_getlength(blk
);
4352 if (image_size
< 0) {
4357 data
= (BenchData
) {
4359 .image_size
= image_size
,
4361 .step
= step
?: bufsize
,
4366 .flush_interval
= flush_interval
,
4367 .drain_on_flush
= drain_on_flush
,
4369 printf("Sending %d %s requests, %d bytes each, %d in parallel "
4370 "(starting at offset %" PRId64
", step size %d)\n",
4371 data
.n
, data
.write
? "write" : "read", data
.bufsize
, data
.nrreq
,
4372 data
.offset
, data
.step
);
4373 if (flush_interval
) {
4374 printf("Sending flush every %d requests\n", flush_interval
);
4377 buf_size
= data
.nrreq
* data
.bufsize
;
4378 data
.buf
= blk_blockalign(blk
, buf_size
);
4379 memset(data
.buf
, pattern
, data
.nrreq
* data
.bufsize
);
4381 blk_register_buf(blk
, data
.buf
, buf_size
);
4383 data
.qiov
= g_new(QEMUIOVector
, data
.nrreq
);
4384 for (i
= 0; i
< data
.nrreq
; i
++) {
4385 qemu_iovec_init(&data
.qiov
[i
], 1);
4386 qemu_iovec_add(&data
.qiov
[i
],
4387 data
.buf
+ i
* data
.bufsize
, data
.bufsize
);
4390 gettimeofday(&t1
, NULL
);
4393 while (data
.n
> 0) {
4394 main_loop_wait(false);
4396 gettimeofday(&t2
, NULL
);
4398 printf("Run completed in %3.3f seconds.\n",
4399 (t2
.tv_sec
- t1
.tv_sec
)
4400 + ((double)(t2
.tv_usec
- t1
.tv_usec
) / 1000000));
4404 blk_unregister_buf(blk
, data
.buf
);
4406 qemu_vfree(data
.buf
);
4427 int bsz
; /* Block size */
4435 int (*f
)(const char *, struct DdIo
*, struct DdIo
*, struct DdInfo
*);
4439 static int img_dd_bs(const char *arg
,
4440 struct DdIo
*in
, struct DdIo
*out
,
4447 if (res
<= 0 || res
> INT_MAX
) {
4448 error_report("invalid number: '%s'", arg
);
4451 in
->bsz
= out
->bsz
= res
;
4456 static int img_dd_count(const char *arg
,
4457 struct DdIo
*in
, struct DdIo
*out
,
4460 dd
->count
= cvtnum(arg
);
4462 if (dd
->count
< 0) {
4463 error_report("invalid number: '%s'", arg
);
4470 static int img_dd_if(const char *arg
,
4471 struct DdIo
*in
, struct DdIo
*out
,
4474 in
->filename
= g_strdup(arg
);
4479 static int img_dd_of(const char *arg
,
4480 struct DdIo
*in
, struct DdIo
*out
,
4483 out
->filename
= g_strdup(arg
);
4488 static int img_dd_skip(const char *arg
,
4489 struct DdIo
*in
, struct DdIo
*out
,
4492 in
->offset
= cvtnum(arg
);
4494 if (in
->offset
< 0) {
4495 error_report("invalid number: '%s'", arg
);
4502 static int img_dd(int argc
, char **argv
)
4507 BlockDriver
*drv
= NULL
, *proto_drv
= NULL
;
4508 BlockBackend
*blk1
= NULL
, *blk2
= NULL
;
4509 QemuOpts
*opts
= NULL
;
4510 QemuOptsList
*create_opts
= NULL
;
4511 Error
*local_err
= NULL
;
4512 bool image_opts
= false;
4514 const char *out_fmt
= "raw";
4515 const char *fmt
= NULL
;
4517 int64_t block_count
= 0, out_pos
, in_pos
;
4518 bool force_share
= false;
4519 struct DdInfo dd
= {
4524 .bsz
= 512, /* Block size is by default 512 bytes */
4536 const struct DdOpts options
[] = {
4537 { "bs", img_dd_bs
, C_BS
},
4538 { "count", img_dd_count
, C_COUNT
},
4539 { "if", img_dd_if
, C_IF
},
4540 { "of", img_dd_of
, C_OF
},
4541 { "skip", img_dd_skip
, C_SKIP
},
4544 const struct option long_options
[] = {
4545 { "help", no_argument
, 0, 'h'},
4546 { "object", required_argument
, 0, OPTION_OBJECT
},
4547 { "image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4548 { "force-share", no_argument
, 0, 'U'},
4552 while ((c
= getopt_long(argc
, argv
, ":hf:O:U", long_options
, NULL
))) {
4564 missing_argument(argv
[optind
- 1]);
4567 unrecognized_option(argv
[optind
- 1]);
4576 if (!qemu_opts_parse_noisily(&qemu_object_opts
, optarg
, true)) {
4581 case OPTION_IMAGE_OPTS
:
4587 for (i
= optind
; i
< argc
; i
++) {
4589 arg
= g_strdup(argv
[i
]);
4591 tmp
= strchr(arg
, '=');
4593 error_report("unrecognized operand %s", arg
);
4600 for (j
= 0; options
[j
].name
!= NULL
; j
++) {
4601 if (!strcmp(arg
, options
[j
].name
)) {
4605 if (options
[j
].name
== NULL
) {
4606 error_report("unrecognized operand %s", arg
);
4611 if (options
[j
].f(tmp
, &in
, &out
, &dd
) != 0) {
4615 dd
.flags
|= options
[j
].flag
;
4620 if (!(dd
.flags
& C_IF
&& dd
.flags
& C_OF
)) {
4621 error_report("Must specify both input and output files");
4626 if (qemu_opts_foreach(&qemu_object_opts
,
4627 user_creatable_add_opts_foreach
,
4628 NULL
, &error_fatal
)) {
4633 blk1
= img_open(image_opts
, in
.filename
, fmt
, 0, false, false,
4641 drv
= bdrv_find_format(out_fmt
);
4643 error_report("Unknown file format");
4647 proto_drv
= bdrv_find_protocol(out
.filename
, true, &local_err
);
4650 error_report_err(local_err
);
4654 if (!drv
->create_opts
) {
4655 error_report("Format driver '%s' does not support image creation",
4660 if (!proto_drv
->create_opts
) {
4661 error_report("Protocol driver '%s' does not support image creation",
4662 proto_drv
->format_name
);
4666 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
4667 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
4669 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4671 size
= blk_getlength(blk1
);
4673 error_report("Failed to get size for '%s'", in
.filename
);
4678 if (dd
.flags
& C_COUNT
&& dd
.count
<= INT64_MAX
/ in
.bsz
&&
4679 dd
.count
* in
.bsz
< size
) {
4680 size
= dd
.count
* in
.bsz
;
4683 /* Overflow means the specified offset is beyond input image's size */
4684 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4685 size
< in
.bsz
* in
.offset
)) {
4686 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, 0, &error_abort
);
4688 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
,
4689 size
- in
.bsz
* in
.offset
, &error_abort
);
4692 ret
= bdrv_create(drv
, out
.filename
, opts
, &local_err
);
4694 error_reportf_err(local_err
,
4695 "%s: error while creating output image: ",
4701 /* TODO, we can't honour --image-opts for the target,
4702 * since it needs to be given in a format compatible
4703 * with the bdrv_create() call above which does not
4704 * support image-opts style.
4706 blk2
= img_open_file(out
.filename
, NULL
, out_fmt
, BDRV_O_RDWR
,
4707 false, false, false);
4714 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4715 size
< in
.offset
* in
.bsz
)) {
4716 /* We give a warning if the skip option is bigger than the input
4717 * size and create an empty output disk image (i.e. like dd(1)).
4719 error_report("%s: cannot skip to specified offset", in
.filename
);
4722 in_pos
= in
.offset
* in
.bsz
;
4725 in
.buf
= g_new(uint8_t, in
.bsz
);
4727 for (out_pos
= 0; in_pos
< size
; block_count
++) {
4728 int in_ret
, out_ret
;
4730 if (in_pos
+ in
.bsz
> size
) {
4731 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, size
- in_pos
);
4733 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, in
.bsz
);
4736 error_report("error while reading from input image file: %s",
4743 out_ret
= blk_pwrite(blk2
, out_pos
, in
.buf
, in_ret
, 0);
4746 error_report("error while writing to output image file: %s",
4747 strerror(-out_ret
));
4756 qemu_opts_del(opts
);
4757 qemu_opts_free(create_opts
);
4760 g_free(in
.filename
);
4761 g_free(out
.filename
);
4771 static void dump_json_block_measure_info(BlockMeasureInfo
*info
)
4775 Visitor
*v
= qobject_output_visitor_new(&obj
);
4777 visit_type_BlockMeasureInfo(v
, NULL
, &info
, &error_abort
);
4778 visit_complete(v
, &obj
);
4779 str
= qobject_to_json_pretty(obj
);
4780 assert(str
!= NULL
);
4781 printf("%s\n", qstring_get_str(str
));
4787 static int img_measure(int argc
, char **argv
)
4789 static const struct option long_options
[] = {
4790 {"help", no_argument
, 0, 'h'},
4791 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
4792 {"object", required_argument
, 0, OPTION_OBJECT
},
4793 {"output", required_argument
, 0, OPTION_OUTPUT
},
4794 {"size", required_argument
, 0, OPTION_SIZE
},
4795 {"force-share", no_argument
, 0, 'U'},
4798 OutputFormat output_format
= OFORMAT_HUMAN
;
4799 BlockBackend
*in_blk
= NULL
;
4801 const char *filename
= NULL
;
4802 const char *fmt
= NULL
;
4803 const char *out_fmt
= "raw";
4804 char *options
= NULL
;
4805 char *snapshot_name
= NULL
;
4806 bool force_share
= false;
4807 QemuOpts
*opts
= NULL
;
4808 QemuOpts
*object_opts
= NULL
;
4809 QemuOpts
*sn_opts
= NULL
;
4810 QemuOptsList
*create_opts
= NULL
;
4811 bool image_opts
= false;
4812 uint64_t img_size
= UINT64_MAX
;
4813 BlockMeasureInfo
*info
= NULL
;
4814 Error
*local_err
= NULL
;
4818 while ((c
= getopt_long(argc
, argv
, "hf:O:o:l:U",
4819 long_options
, NULL
)) != -1) {
4832 if (!is_valid_option_list(optarg
)) {
4833 error_report("Invalid option list: %s", optarg
);
4837 options
= g_strdup(optarg
);
4839 char *old_options
= options
;
4840 options
= g_strdup_printf("%s,%s", options
, optarg
);
4841 g_free(old_options
);
4845 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
4846 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
4849 error_report("Failed in parsing snapshot param '%s'",
4854 snapshot_name
= optarg
;
4861 object_opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
4867 case OPTION_IMAGE_OPTS
:
4871 if (!strcmp(optarg
, "json")) {
4872 output_format
= OFORMAT_JSON
;
4873 } else if (!strcmp(optarg
, "human")) {
4874 output_format
= OFORMAT_HUMAN
;
4876 error_report("--output must be used with human or json "
4885 sval
= cvtnum(optarg
);
4887 if (sval
== -ERANGE
) {
4888 error_report("Image size must be less than 8 EiB!");
4890 error_report("Invalid image size specified! You may use "
4891 "k, M, G, T, P or E suffixes for ");
4892 error_report("kilobytes, megabytes, gigabytes, terabytes, "
4893 "petabytes and exabytes.");
4897 img_size
= (uint64_t)sval
;
4903 if (qemu_opts_foreach(&qemu_object_opts
,
4904 user_creatable_add_opts_foreach
,
4905 NULL
, &error_fatal
)) {
4909 if (argc
- optind
> 1) {
4910 error_report("At most one filename argument is allowed.");
4912 } else if (argc
- optind
== 1) {
4913 filename
= argv
[optind
];
4917 (object_opts
|| image_opts
|| fmt
|| snapshot_name
|| sn_opts
)) {
4918 error_report("--object, --image-opts, -f, and -l "
4919 "require a filename argument.");
4922 if (filename
&& img_size
!= UINT64_MAX
) {
4923 error_report("--size N cannot be used together with a filename.");
4926 if (!filename
&& img_size
== UINT64_MAX
) {
4927 error_report("Either --size N or one filename must be specified.");
4932 in_blk
= img_open(image_opts
, filename
, fmt
, 0,
4933 false, false, force_share
);
4939 bdrv_snapshot_load_tmp(blk_bs(in_blk
),
4940 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
4941 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
4943 } else if (snapshot_name
!= NULL
) {
4944 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk
),
4945 snapshot_name
, &local_err
);
4948 error_reportf_err(local_err
, "Failed to load snapshot: ");
4953 drv
= bdrv_find_format(out_fmt
);
4955 error_report("Unknown file format '%s'", out_fmt
);
4958 if (!drv
->create_opts
) {
4959 error_report("Format driver '%s' does not support image creation",
4964 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
4965 create_opts
= qemu_opts_append(create_opts
, bdrv_file
.create_opts
);
4966 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4968 qemu_opts_do_parse(opts
, options
, NULL
, &local_err
);
4970 error_report_err(local_err
);
4971 error_report("Invalid options for file format '%s'", out_fmt
);
4975 if (img_size
!= UINT64_MAX
) {
4976 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, img_size
, &error_abort
);
4979 info
= bdrv_measure(drv
, opts
, in_blk
? blk_bs(in_blk
) : NULL
, &local_err
);
4981 error_report_err(local_err
);
4985 if (output_format
== OFORMAT_HUMAN
) {
4986 printf("required size: %" PRIu64
"\n", info
->required
);
4987 printf("fully allocated size: %" PRIu64
"\n", info
->fully_allocated
);
4989 dump_json_block_measure_info(info
);
4995 qapi_free_BlockMeasureInfo(info
);
4996 qemu_opts_del(object_opts
);
4997 qemu_opts_del(opts
);
4998 qemu_opts_del(sn_opts
);
4999 qemu_opts_free(create_opts
);
5005 static const img_cmd_t img_cmds
[] = {
5006 #define DEF(option, callback, arg_string) \
5007 { option, callback },
5008 #include "qemu-img-cmds.h"
5013 int main(int argc
, char **argv
)
5015 const img_cmd_t
*cmd
;
5016 const char *cmdname
;
5017 Error
*local_error
= NULL
;
5018 char *trace_file
= NULL
;
5020 static const struct option long_options
[] = {
5021 {"help", no_argument
, 0, 'h'},
5022 {"version", no_argument
, 0, 'V'},
5023 {"trace", required_argument
, NULL
, 'T'},
5028 signal(SIGPIPE
, SIG_IGN
);
5031 error_init(argv
[0]);
5032 module_call_init(MODULE_INIT_TRACE
);
5033 qemu_init_exec_dir(argv
[0]);
5035 if (qemu_init_main_loop(&local_error
)) {
5036 error_report_err(local_error
);
5040 qcrypto_init(&error_fatal
);
5042 module_call_init(MODULE_INIT_QOM
);
5045 error_exit("Not enough arguments");
5048 qemu_add_opts(&qemu_object_opts
);
5049 qemu_add_opts(&qemu_source_opts
);
5050 qemu_add_opts(&qemu_trace_opts
);
5052 while ((c
= getopt_long(argc
, argv
, "+:hVT:", long_options
, NULL
)) != -1) {
5055 missing_argument(argv
[optind
- 1]);
5058 unrecognized_option(argv
[optind
- 1]);
5064 printf(QEMU_IMG_VERSION
);
5068 trace_file
= trace_opt_parse(optarg
);
5073 cmdname
= argv
[optind
];
5075 /* reset getopt_long scanning */
5081 qemu_reset_optind();
5083 if (!trace_init_backends()) {
5086 trace_init_file(trace_file
);
5087 qemu_set_log(LOG_TRACE
);
5089 /* find the command */
5090 for (cmd
= img_cmds
; cmd
->name
!= NULL
; cmd
++) {
5091 if (!strcmp(cmdname
, cmd
->name
)) {
5092 return cmd
->handler(argc
, argv
);
5097 error_exit("Command not found: %s", cmdname
);