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
24 #include "qemu/osdep.h"
25 #include "qemu-version.h"
26 #include "qapi/error.h"
27 #include "qapi-visit.h"
28 #include "qapi/qobject-output-visitor.h"
29 #include "qapi/qmp/qerror.h"
30 #include "qapi/qmp/qjson.h"
31 #include "qemu/cutils.h"
32 #include "qemu/config-file.h"
33 #include "qemu/option.h"
34 #include "qemu/error-report.h"
36 #include "qom/object_interfaces.h"
37 #include "sysemu/sysemu.h"
38 #include "sysemu/block-backend.h"
39 #include "block/block_int.h"
40 #include "block/blockjob.h"
41 #include "block/qapi.h"
42 #include "crypto/init.h"
43 #include "trace/control.h"
46 #define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
47 "\n" QEMU_COPYRIGHT "\n"
49 typedef struct img_cmd_t
{
51 int (*handler
)(int argc
, char **argv
);
56 OPTION_BACKING_CHAIN
= 257,
58 OPTION_IMAGE_OPTS
= 259,
60 OPTION_FLUSH_INTERVAL
= 261,
61 OPTION_NO_DRAIN
= 262,
64 typedef enum OutputFormat
{
69 /* Default to cache=writeback as data integrity is not important for qemu-img */
70 #define BDRV_DEFAULT_CACHE "writeback"
72 static void format_print(void *opaque
, const char *name
)
77 static void QEMU_NORETURN
GCC_FMT_ATTR(1, 2) error_exit(const char *fmt
, ...)
81 error_printf("qemu-img: ");
84 error_vprintf(fmt
, ap
);
87 error_printf("\nTry 'qemu-img --help' for more information\n");
91 /* Please keep in synch with qemu-img.texi */
92 static void QEMU_NORETURN
help(void)
94 const char *help_msg
=
96 "usage: qemu-img [standard options] command [command options]\n"
97 "QEMU disk image utility\n"
99 " '-h', '--help' display this help and exit\n"
100 " '-V', '--version' output version information and exit\n"
101 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
102 " specify tracing options\n"
105 #define DEF(option, callback, arg_string) \
107 #include "qemu-img-cmds.h"
111 "Command parameters:\n"
112 " 'filename' is a disk image filename\n"
113 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
114 " manual page for a description of the object properties. The most common\n"
115 " object type is a 'secret', which is used to supply passwords and/or\n"
116 " encryption keys.\n"
117 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
118 " 'cache' is the cache mode used to write the output disk image, the valid\n"
119 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
120 " 'directsync' and 'unsafe' (default for convert)\n"
121 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
122 " options are the same as for the 'cache' option\n"
123 " 'size' is the disk image size in bytes. Optional suffixes\n"
124 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
125 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
126 " supported. 'b' is ignored.\n"
127 " 'output_filename' is the destination disk image filename\n"
128 " 'output_fmt' is the destination format\n"
129 " 'options' is a comma separated list of format specific options in a\n"
130 " name=value format. Use -o ? for an overview of the options supported by the\n"
132 " 'snapshot_param' is param used for internal snapshot, format\n"
133 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
135 " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n"
137 " '-c' indicates that target image must be compressed (qcow format only)\n"
138 " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
139 " match exactly. The image doesn't need a working backing file before\n"
140 " rebasing in this case (useful for renaming the backing file)\n"
141 " '-h' with or without a command shows this help and lists the supported formats\n"
142 " '-p' show progress of command (only certain commands)\n"
143 " '-q' use Quiet mode - do not print any output (except errors)\n"
144 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
145 " contain only zeros for qemu-img to create a sparse image during\n"
146 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
147 " unallocated or zero sectors, and the destination image will always be\n"
149 " '--output' takes the format in which the output must be done (human or json)\n"
150 " '-n' skips the target volume creation (useful if the volume is created\n"
151 " prior to running qemu-img)\n"
153 "Parameters to check subcommand:\n"
154 " '-r' tries to repair any inconsistencies that are found during the check.\n"
155 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
156 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
157 " hiding corruption that has already occurred.\n"
159 "Parameters to snapshot subcommand:\n"
160 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
161 " '-a' applies a snapshot (revert disk to saved state)\n"
162 " '-c' creates a snapshot\n"
163 " '-d' deletes a snapshot\n"
164 " '-l' lists all snapshots in the given image\n"
166 "Parameters to compare subcommand:\n"
167 " '-f' first image format\n"
168 " '-F' second image format\n"
169 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
171 "Parameters to dd subcommand:\n"
172 " 'bs=BYTES' read and write up to BYTES bytes at a time "
174 " 'count=N' copy only N input blocks\n"
175 " 'if=FILE' read from FILE\n"
176 " 'of=FILE' write to FILE\n"
177 " 'skip=N' skip N bs-sized blocks at the start of input\n";
179 printf("%s\nSupported formats:", help_msg
);
180 bdrv_iterate_format(format_print
, NULL
);
185 static QemuOptsList qemu_object_opts
= {
187 .implied_opt_name
= "qom-type",
188 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
194 static QemuOptsList qemu_source_opts
= {
196 .implied_opt_name
= "file",
197 .head
= QTAILQ_HEAD_INITIALIZER(qemu_source_opts
.head
),
203 static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet
, const char *fmt
, ...)
209 ret
= vprintf(fmt
, args
);
216 static int print_block_option_help(const char *filename
, const char *fmt
)
218 BlockDriver
*drv
, *proto_drv
;
219 QemuOptsList
*create_opts
= NULL
;
220 Error
*local_err
= NULL
;
222 /* Find driver and parse its options */
223 drv
= bdrv_find_format(fmt
);
225 error_report("Unknown file format '%s'", fmt
);
229 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
231 proto_drv
= bdrv_find_protocol(filename
, true, &local_err
);
233 error_report_err(local_err
);
234 qemu_opts_free(create_opts
);
237 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
240 qemu_opts_print_help(create_opts
);
241 qemu_opts_free(create_opts
);
246 static int img_open_password(BlockBackend
*blk
, const char *filename
,
247 int flags
, bool quiet
)
249 BlockDriverState
*bs
;
253 if (bdrv_is_encrypted(bs
) && bdrv_key_required(bs
) &&
254 !(flags
& BDRV_O_NO_IO
)) {
255 qprintf(quiet
, "Disk image '%s' is encrypted.\n", filename
);
256 if (qemu_read_password(password
, sizeof(password
)) < 0) {
257 error_report("No password given");
260 if (bdrv_set_key(bs
, password
) < 0) {
261 error_report("invalid password");
269 static BlockBackend
*img_open_opts(const char *optstr
,
270 QemuOpts
*opts
, int flags
, bool writethrough
,
274 Error
*local_err
= NULL
;
276 options
= qemu_opts_to_qdict(opts
, NULL
);
277 blk
= blk_new_open(NULL
, NULL
, options
, flags
, &local_err
);
279 error_reportf_err(local_err
, "Could not open '%s': ", optstr
);
282 blk_set_enable_write_cache(blk
, !writethrough
);
284 if (img_open_password(blk
, optstr
, flags
, quiet
) < 0) {
291 static BlockBackend
*img_open_file(const char *filename
,
292 const char *fmt
, int flags
,
293 bool writethrough
, bool quiet
)
296 Error
*local_err
= NULL
;
297 QDict
*options
= NULL
;
300 options
= qdict_new();
301 qdict_put(options
, "driver", qstring_from_str(fmt
));
304 blk
= blk_new_open(filename
, NULL
, options
, flags
, &local_err
);
306 error_reportf_err(local_err
, "Could not open '%s': ", filename
);
309 blk_set_enable_write_cache(blk
, !writethrough
);
311 if (img_open_password(blk
, filename
, flags
, quiet
) < 0) {
319 static BlockBackend
*img_open(bool image_opts
,
320 const char *filename
,
321 const char *fmt
, int flags
, bool writethrough
,
328 error_report("--image-opts and --format are mutually exclusive");
331 opts
= qemu_opts_parse_noisily(qemu_find_opts("source"),
336 blk
= img_open_opts(filename
, opts
, flags
, writethrough
, quiet
);
338 blk
= img_open_file(filename
, fmt
, flags
, writethrough
, quiet
);
344 static int add_old_style_options(const char *fmt
, QemuOpts
*opts
,
345 const char *base_filename
,
346 const char *base_fmt
)
351 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FILE
, base_filename
, &err
);
353 error_report("Backing file not supported for file format '%s'",
360 qemu_opt_set(opts
, BLOCK_OPT_BACKING_FMT
, base_fmt
, &err
);
362 error_report("Backing file format not supported for file "
371 static int img_create(int argc
, char **argv
)
374 uint64_t img_size
= -1;
375 const char *fmt
= "raw";
376 const char *base_fmt
= NULL
;
377 const char *filename
;
378 const char *base_filename
= NULL
;
379 char *options
= NULL
;
380 Error
*local_err
= NULL
;
384 static const struct option long_options
[] = {
385 {"help", no_argument
, 0, 'h'},
386 {"object", required_argument
, 0, OPTION_OBJECT
},
389 c
= getopt_long(argc
, argv
, "F:b:f:he6o:q",
403 base_filename
= optarg
;
409 error_report("option -e is deprecated, please use \'-o "
410 "encryption\' instead!");
413 error_report("option -6 is deprecated, please use \'-o "
414 "compat6\' instead!");
417 if (!is_valid_option_list(optarg
)) {
418 error_report("Invalid option list: %s", optarg
);
422 options
= g_strdup(optarg
);
424 char *old_options
= options
;
425 options
= g_strdup_printf("%s,%s", options
, optarg
);
432 case OPTION_OBJECT
: {
434 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
443 /* Get the filename */
444 filename
= (optind
< argc
) ? argv
[optind
] : NULL
;
445 if (options
&& has_help_option(options
)) {
447 return print_block_option_help(filename
, fmt
);
450 if (optind
>= argc
) {
451 error_exit("Expecting image file name");
455 if (qemu_opts_foreach(&qemu_object_opts
,
456 user_creatable_add_opts_foreach
,
461 /* Get image size, if specified */
465 sval
= qemu_strtosz_suffix(argv
[optind
++], &end
,
466 QEMU_STRTOSZ_DEFSUFFIX_B
);
467 if (sval
< 0 || *end
) {
468 if (sval
== -ERANGE
) {
469 error_report("Image size must be less than 8 EiB!");
471 error_report("Invalid image size specified! You may use k, M, "
472 "G, T, P or E suffixes for ");
473 error_report("kilobytes, megabytes, gigabytes, terabytes, "
474 "petabytes and exabytes.");
478 img_size
= (uint64_t)sval
;
480 if (optind
!= argc
) {
481 error_exit("Unexpected argument: %s", argv
[optind
]);
484 bdrv_img_create(filename
, fmt
, base_filename
, base_fmt
,
485 options
, img_size
, 0, &local_err
, quiet
);
487 error_reportf_err(local_err
, "%s: ", filename
);
499 static void dump_json_image_check(ImageCheck
*check
, bool quiet
)
503 Visitor
*v
= qobject_output_visitor_new(&obj
);
505 visit_type_ImageCheck(v
, NULL
, &check
, &error_abort
);
506 visit_complete(v
, &obj
);
507 str
= qobject_to_json_pretty(obj
);
509 qprintf(quiet
, "%s\n", qstring_get_str(str
));
515 static void dump_human_image_check(ImageCheck
*check
, bool quiet
)
517 if (!(check
->corruptions
|| check
->leaks
|| check
->check_errors
)) {
518 qprintf(quiet
, "No errors were found on the image.\n");
520 if (check
->corruptions
) {
521 qprintf(quiet
, "\n%" PRId64
" errors were found on the image.\n"
522 "Data may be corrupted, or further writes to the image "
529 "\n%" PRId64
" leaked clusters were found on the image.\n"
530 "This means waste of disk space, but no harm to data.\n",
534 if (check
->check_errors
) {
537 " internal errors have occurred during the check.\n",
538 check
->check_errors
);
542 if (check
->total_clusters
!= 0 && check
->allocated_clusters
!= 0) {
543 qprintf(quiet
, "%" PRId64
"/%" PRId64
" = %0.2f%% allocated, "
544 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
545 check
->allocated_clusters
, check
->total_clusters
,
546 check
->allocated_clusters
* 100.0 / check
->total_clusters
,
547 check
->fragmented_clusters
* 100.0 / check
->allocated_clusters
,
548 check
->compressed_clusters
* 100.0 /
549 check
->allocated_clusters
);
552 if (check
->image_end_offset
) {
554 "Image end offset: %" PRId64
"\n", check
->image_end_offset
);
558 static int collect_image_check(BlockDriverState
*bs
,
560 const char *filename
,
565 BdrvCheckResult result
;
567 ret
= bdrv_check(bs
, &result
, fix
);
572 check
->filename
= g_strdup(filename
);
573 check
->format
= g_strdup(bdrv_get_format_name(bs
));
574 check
->check_errors
= result
.check_errors
;
575 check
->corruptions
= result
.corruptions
;
576 check
->has_corruptions
= result
.corruptions
!= 0;
577 check
->leaks
= result
.leaks
;
578 check
->has_leaks
= result
.leaks
!= 0;
579 check
->corruptions_fixed
= result
.corruptions_fixed
;
580 check
->has_corruptions_fixed
= result
.corruptions
!= 0;
581 check
->leaks_fixed
= result
.leaks_fixed
;
582 check
->has_leaks_fixed
= result
.leaks
!= 0;
583 check
->image_end_offset
= result
.image_end_offset
;
584 check
->has_image_end_offset
= result
.image_end_offset
!= 0;
585 check
->total_clusters
= result
.bfi
.total_clusters
;
586 check
->has_total_clusters
= result
.bfi
.total_clusters
!= 0;
587 check
->allocated_clusters
= result
.bfi
.allocated_clusters
;
588 check
->has_allocated_clusters
= result
.bfi
.allocated_clusters
!= 0;
589 check
->fragmented_clusters
= result
.bfi
.fragmented_clusters
;
590 check
->has_fragmented_clusters
= result
.bfi
.fragmented_clusters
!= 0;
591 check
->compressed_clusters
= result
.bfi
.compressed_clusters
;
592 check
->has_compressed_clusters
= result
.bfi
.compressed_clusters
!= 0;
598 * Checks an image for consistency. Exit codes:
600 * 0 - Check completed, image is good
601 * 1 - Check not completed because of internal errors
602 * 2 - Check completed, image is corrupted
603 * 3 - Check completed, image has leaked clusters, but is good otherwise
604 * 63 - Checks are not supported by the image format
606 static int img_check(int argc
, char **argv
)
609 OutputFormat output_format
= OFORMAT_HUMAN
;
610 const char *filename
, *fmt
, *output
, *cache
;
612 BlockDriverState
*bs
;
614 int flags
= BDRV_O_CHECK
;
618 bool image_opts
= false;
622 cache
= BDRV_DEFAULT_CACHE
;
625 int option_index
= 0;
626 static const struct option long_options
[] = {
627 {"help", no_argument
, 0, 'h'},
628 {"format", required_argument
, 0, 'f'},
629 {"repair", required_argument
, 0, 'r'},
630 {"output", required_argument
, 0, OPTION_OUTPUT
},
631 {"object", required_argument
, 0, OPTION_OBJECT
},
632 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
635 c
= getopt_long(argc
, argv
, "hf:r:T:q",
636 long_options
, &option_index
);
649 flags
|= BDRV_O_RDWR
;
651 if (!strcmp(optarg
, "leaks")) {
652 fix
= BDRV_FIX_LEAKS
;
653 } else if (!strcmp(optarg
, "all")) {
654 fix
= BDRV_FIX_LEAKS
| BDRV_FIX_ERRORS
;
656 error_exit("Unknown option value for -r "
657 "(expecting 'leaks' or 'all'): %s", optarg
);
669 case OPTION_OBJECT
: {
671 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
677 case OPTION_IMAGE_OPTS
:
682 if (optind
!= argc
- 1) {
683 error_exit("Expecting one image file name");
685 filename
= argv
[optind
++];
687 if (output
&& !strcmp(output
, "json")) {
688 output_format
= OFORMAT_JSON
;
689 } else if (output
&& !strcmp(output
, "human")) {
690 output_format
= OFORMAT_HUMAN
;
692 error_report("--output must be used with human or json as argument.");
696 if (qemu_opts_foreach(&qemu_object_opts
,
697 user_creatable_add_opts_foreach
,
702 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
704 error_report("Invalid source cache option: %s", cache
);
708 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
);
714 check
= g_new0(ImageCheck
, 1);
715 ret
= collect_image_check(bs
, check
, filename
, fmt
, fix
);
717 if (ret
== -ENOTSUP
) {
718 error_report("This image format does not support checks");
723 if (check
->corruptions_fixed
|| check
->leaks_fixed
) {
724 int corruptions_fixed
, leaks_fixed
;
726 leaks_fixed
= check
->leaks_fixed
;
727 corruptions_fixed
= check
->corruptions_fixed
;
729 if (output_format
== OFORMAT_HUMAN
) {
731 "The following inconsistencies were found and repaired:\n\n"
732 " %" PRId64
" leaked clusters\n"
733 " %" PRId64
" corruptions\n\n"
734 "Double checking the fixed image now...\n",
736 check
->corruptions_fixed
);
739 ret
= collect_image_check(bs
, check
, filename
, fmt
, 0);
741 check
->leaks_fixed
= leaks_fixed
;
742 check
->corruptions_fixed
= corruptions_fixed
;
746 switch (output_format
) {
748 dump_human_image_check(check
, quiet
);
751 dump_json_image_check(check
, quiet
);
756 if (ret
|| check
->check_errors
) {
758 error_report("Check failed: %s", strerror(-ret
));
760 error_report("Check failed");
766 if (check
->corruptions
) {
768 } else if (check
->leaks
) {
775 qapi_free_ImageCheck(check
);
780 typedef struct CommonBlockJobCBInfo
{
781 BlockDriverState
*bs
;
783 } CommonBlockJobCBInfo
;
785 static void common_block_job_cb(void *opaque
, int ret
)
787 CommonBlockJobCBInfo
*cbi
= opaque
;
790 error_setg_errno(cbi
->errp
, -ret
, "Block job failed");
794 static void run_block_job(BlockJob
*job
, Error
**errp
)
796 AioContext
*aio_context
= blk_get_aio_context(job
->blk
);
798 aio_context_acquire(aio_context
);
800 aio_poll(aio_context
, true);
801 qemu_progress_print(job
->len
?
802 ((float)job
->offset
/ job
->len
* 100.f
) : 0.0f
, 0);
803 } while (!job
->ready
);
805 block_job_complete_sync(job
, errp
);
806 aio_context_release(aio_context
);
808 /* A block job may finish instantaneously without publishing any progress,
809 * so just signal completion here */
810 qemu_progress_print(100.f
, 0);
813 static int img_commit(int argc
, char **argv
)
816 const char *filename
, *fmt
, *cache
, *base
;
818 BlockDriverState
*bs
, *base_bs
;
819 bool progress
= false, quiet
= false, drop
= false;
821 Error
*local_err
= NULL
;
822 CommonBlockJobCBInfo cbi
;
823 bool image_opts
= false;
824 AioContext
*aio_context
;
827 cache
= BDRV_DEFAULT_CACHE
;
830 static const struct option long_options
[] = {
831 {"help", no_argument
, 0, 'h'},
832 {"object", required_argument
, 0, OPTION_OBJECT
},
833 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
836 c
= getopt_long(argc
, argv
, "f:ht:b:dpq",
866 case OPTION_OBJECT
: {
868 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
874 case OPTION_IMAGE_OPTS
:
880 /* Progress is not shown in Quiet mode */
885 if (optind
!= argc
- 1) {
886 error_exit("Expecting one image file name");
888 filename
= argv
[optind
++];
890 if (qemu_opts_foreach(&qemu_object_opts
,
891 user_creatable_add_opts_foreach
,
896 flags
= BDRV_O_RDWR
| BDRV_O_UNMAP
;
897 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
899 error_report("Invalid cache option: %s", cache
);
903 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
);
909 qemu_progress_init(progress
, 1.f
);
910 qemu_progress_print(0.f
, 100);
913 base_bs
= bdrv_find_backing_image(bs
, base
);
915 error_setg(&local_err
, QERR_BASE_NOT_FOUND
, base
);
919 /* This is different from QMP, which by default uses the deepest file in
920 * the backing chain (i.e., the very base); however, the traditional
921 * behavior of qemu-img commit is using the immediate backing file. */
922 base_bs
= backing_bs(bs
);
924 error_setg(&local_err
, "Image does not have a backing file");
929 cbi
= (CommonBlockJobCBInfo
){
934 aio_context
= bdrv_get_aio_context(bs
);
935 aio_context_acquire(aio_context
);
936 commit_active_start("commit", bs
, base_bs
, 0, BLOCKDEV_ON_ERROR_REPORT
,
937 common_block_job_cb
, &cbi
, &local_err
, false);
938 aio_context_release(aio_context
);
943 /* When the block job completes, the BlockBackend reference will point to
944 * the old backing file. In order to avoid that the top image is already
945 * deleted, so we can still empty it afterwards, increment the reference
946 * counter here preemptively. */
951 run_block_job(bs
->job
, &local_err
);
956 if (!drop
&& bs
->drv
->bdrv_make_empty
) {
957 ret
= bs
->drv
->bdrv_make_empty(bs
);
959 error_setg_errno(&local_err
, -ret
, "Could not empty %s",
976 error_report_err(local_err
);
980 qprintf(quiet
, "Image committed.\n");
985 * Returns true iff the first sector pointed to by 'buf' contains at least
988 * 'pnum' is set to the number of sectors (including and immediately following
989 * the first one) that are known to be in the same allocated/unallocated state.
991 static int is_allocated_sectors(const uint8_t *buf
, int n
, int *pnum
)
1000 is_zero
= buffer_is_zero(buf
, 512);
1001 for(i
= 1; i
< n
; i
++) {
1003 if (is_zero
!= buffer_is_zero(buf
, 512)) {
1012 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1013 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1014 * breaking up write requests for only small sparse areas.
1016 static int is_allocated_sectors_min(const uint8_t *buf
, int n
, int *pnum
,
1020 int num_checked
, num_used
;
1026 ret
= is_allocated_sectors(buf
, n
, pnum
);
1032 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1034 num_checked
= num_used
;
1037 ret
= is_allocated_sectors(buf
, n
, pnum
);
1039 buf
+= BDRV_SECTOR_SIZE
* *pnum
;
1041 num_checked
+= *pnum
;
1043 num_used
= num_checked
;
1044 } else if (*pnum
>= min
) {
1054 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1055 * buffers matches, non-zero otherwise.
1057 * pnum is set to the number of sectors (including and immediately following
1058 * the first one) that are known to have the same comparison result
1060 static int compare_sectors(const uint8_t *buf1
, const uint8_t *buf2
, int n
,
1071 res
= !!memcmp(buf1
, buf2
, 512);
1072 for(i
= 1; i
< n
; i
++) {
1076 if (!!memcmp(buf1
, buf2
, 512) != res
) {
1085 #define IO_BUF_SIZE (2 * 1024 * 1024)
1087 static int64_t sectors_to_bytes(int64_t sectors
)
1089 return sectors
<< BDRV_SECTOR_BITS
;
1092 static int64_t sectors_to_process(int64_t total
, int64_t from
)
1094 return MIN(total
- from
, IO_BUF_SIZE
>> BDRV_SECTOR_BITS
);
1098 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1100 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1101 * data and negative value on error.
1103 * @param blk: BlockBackend for the image
1104 * @param sect_num: Number of first sector to check
1105 * @param sect_count: Number of sectors to check
1106 * @param filename: Name of disk file we are checking (logging purpose)
1107 * @param buffer: Allocated buffer for storing read data
1108 * @param quiet: Flag for quiet mode
1110 static int check_empty_sectors(BlockBackend
*blk
, int64_t sect_num
,
1111 int sect_count
, const char *filename
,
1112 uint8_t *buffer
, bool quiet
)
1115 ret
= blk_pread(blk
, sect_num
<< BDRV_SECTOR_BITS
, buffer
,
1116 sect_count
<< BDRV_SECTOR_BITS
);
1118 error_report("Error while reading offset %" PRId64
" of %s: %s",
1119 sectors_to_bytes(sect_num
), filename
, strerror(-ret
));
1122 ret
= is_allocated_sectors(buffer
, sect_count
, &pnum
);
1123 if (ret
|| pnum
!= sect_count
) {
1124 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1125 sectors_to_bytes(ret
? sect_num
: sect_num
+ pnum
));
1133 * Compares two images. Exit codes:
1135 * 0 - Images are identical
1137 * >1 - Error occurred
1139 static int img_compare(int argc
, char **argv
)
1141 const char *fmt1
= NULL
, *fmt2
= NULL
, *cache
, *filename1
, *filename2
;
1142 BlockBackend
*blk1
, *blk2
;
1143 BlockDriverState
*bs1
, *bs2
;
1144 int64_t total_sectors1
, total_sectors2
;
1145 uint8_t *buf1
= NULL
, *buf2
= NULL
;
1147 int allocated1
, allocated2
;
1148 int ret
= 0; /* return value - 0 Ident, 1 Different, >1 Error */
1149 bool progress
= false, quiet
= false, strict
= false;
1152 int64_t total_sectors
;
1153 int64_t sector_num
= 0;
1156 uint64_t progress_base
;
1157 bool image_opts
= false;
1159 cache
= BDRV_DEFAULT_CACHE
;
1161 static const struct option long_options
[] = {
1162 {"help", no_argument
, 0, 'h'},
1163 {"object", required_argument
, 0, OPTION_OBJECT
},
1164 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
1167 c
= getopt_long(argc
, argv
, "hf:F:T:pqs",
1168 long_options
, NULL
);
1195 case OPTION_OBJECT
: {
1197 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
1204 case OPTION_IMAGE_OPTS
:
1210 /* Progress is not shown in Quiet mode */
1216 if (optind
!= argc
- 2) {
1217 error_exit("Expecting two image file names");
1219 filename1
= argv
[optind
++];
1220 filename2
= argv
[optind
++];
1222 if (qemu_opts_foreach(&qemu_object_opts
,
1223 user_creatable_add_opts_foreach
,
1229 /* Initialize before goto out */
1230 qemu_progress_init(progress
, 2.0);
1233 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
1235 error_report("Invalid source cache option: %s", cache
);
1240 blk1
= img_open(image_opts
, filename1
, fmt1
, flags
, writethrough
, quiet
);
1246 blk2
= img_open(image_opts
, filename2
, fmt2
, flags
, writethrough
, quiet
);
1254 buf1
= blk_blockalign(blk1
, IO_BUF_SIZE
);
1255 buf2
= blk_blockalign(blk2
, IO_BUF_SIZE
);
1256 total_sectors1
= blk_nb_sectors(blk1
);
1257 if (total_sectors1
< 0) {
1258 error_report("Can't get size of %s: %s",
1259 filename1
, strerror(-total_sectors1
));
1263 total_sectors2
= blk_nb_sectors(blk2
);
1264 if (total_sectors2
< 0) {
1265 error_report("Can't get size of %s: %s",
1266 filename2
, strerror(-total_sectors2
));
1270 total_sectors
= MIN(total_sectors1
, total_sectors2
);
1271 progress_base
= MAX(total_sectors1
, total_sectors2
);
1273 qemu_progress_print(0, 100);
1275 if (strict
&& total_sectors1
!= total_sectors2
) {
1277 qprintf(quiet
, "Strict mode: Image size mismatch!\n");
1282 int64_t status1
, status2
;
1283 BlockDriverState
*file
;
1285 nb_sectors
= sectors_to_process(total_sectors
, sector_num
);
1286 if (nb_sectors
<= 0) {
1289 status1
= bdrv_get_block_status_above(bs1
, NULL
, sector_num
,
1290 total_sectors1
- sector_num
,
1294 error_report("Sector allocation test failed for %s", filename1
);
1297 allocated1
= status1
& BDRV_BLOCK_ALLOCATED
;
1299 status2
= bdrv_get_block_status_above(bs2
, NULL
, sector_num
,
1300 total_sectors2
- sector_num
,
1304 error_report("Sector allocation test failed for %s", filename2
);
1307 allocated2
= status2
& BDRV_BLOCK_ALLOCATED
;
1309 nb_sectors
= MIN(nb_sectors
, pnum1
);
1312 nb_sectors
= MIN(nb_sectors
, pnum2
);
1316 if ((status1
& ~BDRV_BLOCK_OFFSET_MASK
) !=
1317 (status2
& ~BDRV_BLOCK_OFFSET_MASK
)) {
1319 qprintf(quiet
, "Strict mode: Offset %" PRId64
1320 " block status mismatch!\n",
1321 sectors_to_bytes(sector_num
));
1325 if ((status1
& BDRV_BLOCK_ZERO
) && (status2
& BDRV_BLOCK_ZERO
)) {
1326 nb_sectors
= MIN(pnum1
, pnum2
);
1327 } else if (allocated1
== allocated2
) {
1329 ret
= blk_pread(blk1
, sector_num
<< BDRV_SECTOR_BITS
, buf1
,
1330 nb_sectors
<< BDRV_SECTOR_BITS
);
1332 error_report("Error while reading offset %" PRId64
" of %s:"
1333 " %s", sectors_to_bytes(sector_num
), filename1
,
1338 ret
= blk_pread(blk2
, sector_num
<< BDRV_SECTOR_BITS
, buf2
,
1339 nb_sectors
<< BDRV_SECTOR_BITS
);
1341 error_report("Error while reading offset %" PRId64
1342 " of %s: %s", sectors_to_bytes(sector_num
),
1343 filename2
, strerror(-ret
));
1347 ret
= compare_sectors(buf1
, buf2
, nb_sectors
, &pnum
);
1348 if (ret
|| pnum
!= nb_sectors
) {
1349 qprintf(quiet
, "Content mismatch at offset %" PRId64
"!\n",
1351 ret
? sector_num
: sector_num
+ pnum
));
1359 ret
= check_empty_sectors(blk1
, sector_num
, nb_sectors
,
1360 filename1
, buf1
, quiet
);
1362 ret
= check_empty_sectors(blk2
, sector_num
, nb_sectors
,
1363 filename2
, buf1
, quiet
);
1367 error_report("Error while reading offset %" PRId64
": %s",
1368 sectors_to_bytes(sector_num
), strerror(-ret
));
1374 sector_num
+= nb_sectors
;
1375 qemu_progress_print(((float) nb_sectors
/ progress_base
)*100, 100);
1378 if (total_sectors1
!= total_sectors2
) {
1379 BlockBackend
*blk_over
;
1380 int64_t total_sectors_over
;
1381 const char *filename_over
;
1383 qprintf(quiet
, "Warning: Image size mismatch!\n");
1384 if (total_sectors1
> total_sectors2
) {
1385 total_sectors_over
= total_sectors1
;
1387 filename_over
= filename1
;
1389 total_sectors_over
= total_sectors2
;
1391 filename_over
= filename2
;
1395 nb_sectors
= sectors_to_process(total_sectors_over
, sector_num
);
1396 if (nb_sectors
<= 0) {
1399 ret
= bdrv_is_allocated_above(blk_bs(blk_over
), NULL
, sector_num
,
1403 error_report("Sector allocation test failed for %s",
1410 ret
= check_empty_sectors(blk_over
, sector_num
, nb_sectors
,
1411 filename_over
, buf1
, quiet
);
1414 error_report("Error while reading offset %" PRId64
1415 " of %s: %s", sectors_to_bytes(sector_num
),
1416 filename_over
, strerror(-ret
));
1422 sector_num
+= nb_sectors
;
1423 qemu_progress_print(((float) nb_sectors
/ progress_base
)*100, 100);
1427 qprintf(quiet
, "Images are identical.\n");
1437 qemu_progress_end();
1442 enum ImgConvertBlockStatus
{
1448 typedef struct ImgConvertState
{
1450 int64_t *src_sectors
;
1451 int src_cur
, src_num
;
1452 int64_t src_cur_offset
;
1453 int64_t total_sectors
;
1454 int64_t allocated_sectors
;
1455 enum ImgConvertBlockStatus status
;
1456 int64_t sector_next_status
;
1457 BlockBackend
*target
;
1460 bool target_has_backing
;
1462 size_t cluster_sectors
;
1466 static void convert_select_part(ImgConvertState
*s
, int64_t sector_num
)
1468 assert(sector_num
>= s
->src_cur_offset
);
1469 while (sector_num
- s
->src_cur_offset
>= s
->src_sectors
[s
->src_cur
]) {
1470 s
->src_cur_offset
+= s
->src_sectors
[s
->src_cur
];
1472 assert(s
->src_cur
< s
->src_num
);
1476 static int convert_iteration_sectors(ImgConvertState
*s
, int64_t sector_num
)
1481 convert_select_part(s
, sector_num
);
1483 assert(s
->total_sectors
> sector_num
);
1484 n
= MIN(s
->total_sectors
- sector_num
, BDRV_REQUEST_MAX_SECTORS
);
1486 if (s
->sector_next_status
<= sector_num
) {
1487 BlockDriverState
*file
;
1488 ret
= bdrv_get_block_status(blk_bs(s
->src
[s
->src_cur
]),
1489 sector_num
- s
->src_cur_offset
,
1495 if (ret
& BDRV_BLOCK_ZERO
) {
1496 s
->status
= BLK_ZERO
;
1497 } else if (ret
& BDRV_BLOCK_DATA
) {
1498 s
->status
= BLK_DATA
;
1499 } else if (!s
->target_has_backing
) {
1500 /* Without a target backing file we must copy over the contents of
1501 * the backing file as well. */
1502 /* Check block status of the backing file chain to avoid
1503 * needlessly reading zeroes and limiting the iteration to the
1505 ret
= bdrv_get_block_status_above(blk_bs(s
->src
[s
->src_cur
]), NULL
,
1506 sector_num
- s
->src_cur_offset
,
1512 if (ret
& BDRV_BLOCK_ZERO
) {
1513 s
->status
= BLK_ZERO
;
1515 s
->status
= BLK_DATA
;
1518 s
->status
= BLK_BACKING_FILE
;
1521 s
->sector_next_status
= sector_num
+ n
;
1524 n
= MIN(n
, s
->sector_next_status
- sector_num
);
1525 if (s
->status
== BLK_DATA
) {
1526 n
= MIN(n
, s
->buf_sectors
);
1529 /* We need to write complete clusters for compressed images, so if an
1530 * unallocated area is shorter than that, we must consider the whole
1531 * cluster allocated. */
1532 if (s
->compressed
) {
1533 if (n
< s
->cluster_sectors
) {
1534 n
= MIN(s
->cluster_sectors
, s
->total_sectors
- sector_num
);
1535 s
->status
= BLK_DATA
;
1537 n
= QEMU_ALIGN_DOWN(n
, s
->cluster_sectors
);
1544 static int convert_read(ImgConvertState
*s
, int64_t sector_num
, int nb_sectors
,
1550 assert(nb_sectors
<= s
->buf_sectors
);
1551 while (nb_sectors
> 0) {
1555 /* In the case of compression with multiple source files, we can get a
1556 * nb_sectors that spreads into the next part. So we must be able to
1557 * read across multiple BDSes for one convert_read() call. */
1558 convert_select_part(s
, sector_num
);
1559 blk
= s
->src
[s
->src_cur
];
1560 bs_sectors
= s
->src_sectors
[s
->src_cur
];
1562 n
= MIN(nb_sectors
, bs_sectors
- (sector_num
- s
->src_cur_offset
));
1563 ret
= blk_pread(blk
,
1564 (sector_num
- s
->src_cur_offset
) << BDRV_SECTOR_BITS
,
1565 buf
, n
<< BDRV_SECTOR_BITS
);
1572 buf
+= n
* BDRV_SECTOR_SIZE
;
1578 static int convert_write(ImgConvertState
*s
, int64_t sector_num
, int nb_sectors
,
1583 while (nb_sectors
> 0) {
1586 switch (s
->status
) {
1587 case BLK_BACKING_FILE
:
1588 /* If we have a backing file, leave clusters unallocated that are
1589 * unallocated in the source image, so that the backing file is
1590 * visible at the respective offset. */
1591 assert(s
->target_has_backing
);
1595 /* We must always write compressed clusters as a whole, so don't
1596 * try to find zeroed parts in the buffer. We can only save the
1597 * write if the buffer is completely zeroed and we're allowed to
1598 * keep the target sparse. */
1599 if (s
->compressed
) {
1600 if (s
->has_zero_init
&& s
->min_sparse
&&
1601 buffer_is_zero(buf
, n
* BDRV_SECTOR_SIZE
))
1603 assert(!s
->target_has_backing
);
1607 ret
= blk_pwrite_compressed(s
->target
,
1608 sector_num
<< BDRV_SECTOR_BITS
,
1609 buf
, n
<< BDRV_SECTOR_BITS
);
1616 /* If there is real non-zero data or we're told to keep the target
1617 * fully allocated (-S 0), we must write it. Otherwise we can treat
1618 * it as zero sectors. */
1619 if (!s
->min_sparse
||
1620 is_allocated_sectors_min(buf
, n
, &n
, s
->min_sparse
))
1622 ret
= blk_pwrite(s
->target
, sector_num
<< BDRV_SECTOR_BITS
,
1623 buf
, n
<< BDRV_SECTOR_BITS
, 0);
1632 if (s
->has_zero_init
) {
1635 ret
= blk_pwrite_zeroes(s
->target
, sector_num
<< BDRV_SECTOR_BITS
,
1636 n
<< BDRV_SECTOR_BITS
, 0);
1645 buf
+= n
* BDRV_SECTOR_SIZE
;
1651 static int convert_do_copy(ImgConvertState
*s
)
1653 uint8_t *buf
= NULL
;
1654 int64_t sector_num
, allocated_done
;
1658 /* Check whether we have zero initialisation or can get it efficiently */
1659 s
->has_zero_init
= s
->min_sparse
&& !s
->target_has_backing
1660 ? bdrv_has_zero_init(blk_bs(s
->target
))
1663 if (!s
->has_zero_init
&& !s
->target_has_backing
&&
1664 bdrv_can_write_zeroes_with_unmap(blk_bs(s
->target
)))
1666 ret
= blk_make_zero(s
->target
, BDRV_REQ_MAY_UNMAP
);
1668 s
->has_zero_init
= true;
1672 /* Allocate buffer for copied data. For compressed images, only one cluster
1673 * can be copied at a time. */
1674 if (s
->compressed
) {
1675 if (s
->cluster_sectors
<= 0 || s
->cluster_sectors
> s
->buf_sectors
) {
1676 error_report("invalid cluster size");
1680 s
->buf_sectors
= s
->cluster_sectors
;
1682 buf
= blk_blockalign(s
->target
, s
->buf_sectors
* BDRV_SECTOR_SIZE
);
1684 /* Calculate allocated sectors for progress */
1685 s
->allocated_sectors
= 0;
1687 while (sector_num
< s
->total_sectors
) {
1688 n
= convert_iteration_sectors(s
, sector_num
);
1693 if (s
->status
== BLK_DATA
|| (!s
->min_sparse
&& s
->status
== BLK_ZERO
))
1695 s
->allocated_sectors
+= n
;
1702 s
->src_cur_offset
= 0;
1703 s
->sector_next_status
= 0;
1708 while (sector_num
< s
->total_sectors
) {
1709 n
= convert_iteration_sectors(s
, sector_num
);
1714 if (s
->status
== BLK_DATA
|| (!s
->min_sparse
&& s
->status
== BLK_ZERO
))
1716 allocated_done
+= n
;
1717 qemu_progress_print(100.0 * allocated_done
/ s
->allocated_sectors
,
1721 if (s
->status
== BLK_DATA
) {
1722 ret
= convert_read(s
, sector_num
, n
, buf
);
1724 error_report("error while reading sector %" PRId64
1725 ": %s", sector_num
, strerror(-ret
));
1728 } else if (!s
->min_sparse
&& s
->status
== BLK_ZERO
) {
1729 n
= MIN(n
, s
->buf_sectors
);
1730 memset(buf
, 0, n
* BDRV_SECTOR_SIZE
);
1731 s
->status
= BLK_DATA
;
1734 ret
= convert_write(s
, sector_num
, n
, buf
);
1736 error_report("error while writing sector %" PRId64
1737 ": %s", sector_num
, strerror(-ret
));
1744 if (s
->compressed
) {
1745 /* signal EOF to align */
1746 ret
= blk_pwrite_compressed(s
->target
, 0, NULL
, 0);
1758 static int img_convert(int argc
, char **argv
)
1760 int c
, bs_n
, bs_i
, compress
, cluster_sectors
, skip_create
;
1762 int progress
= 0, flags
, src_flags
;
1763 bool writethrough
, src_writethrough
;
1764 const char *fmt
, *out_fmt
, *cache
, *src_cache
, *out_baseimg
, *out_filename
;
1765 BlockDriver
*drv
, *proto_drv
;
1766 BlockBackend
**blk
= NULL
, *out_blk
= NULL
;
1767 BlockDriverState
**bs
= NULL
, *out_bs
= NULL
;
1768 int64_t total_sectors
;
1769 int64_t *bs_sectors
= NULL
;
1770 size_t bufsectors
= IO_BUF_SIZE
/ BDRV_SECTOR_SIZE
;
1771 BlockDriverInfo bdi
;
1772 QemuOpts
*opts
= NULL
;
1773 QemuOptsList
*create_opts
= NULL
;
1774 const char *out_baseimg_param
;
1775 char *options
= NULL
;
1776 const char *snapshot_name
= NULL
;
1777 int min_sparse
= 8; /* Need at least 4k of zeros for sparse detection */
1779 Error
*local_err
= NULL
;
1780 QemuOpts
*sn_opts
= NULL
;
1781 ImgConvertState state
;
1782 bool image_opts
= false;
1787 src_cache
= BDRV_DEFAULT_CACHE
;
1792 static const struct option long_options
[] = {
1793 {"help", no_argument
, 0, 'h'},
1794 {"object", required_argument
, 0, OPTION_OBJECT
},
1795 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
1798 c
= getopt_long(argc
, argv
, "hf:O:B:ce6o:s:l:S:pt:T:qn",
1799 long_options
, NULL
);
1815 out_baseimg
= optarg
;
1821 error_report("option -e is deprecated, please use \'-o "
1822 "encryption\' instead!");
1826 error_report("option -6 is deprecated, please use \'-o "
1827 "compat6\' instead!");
1831 if (!is_valid_option_list(optarg
)) {
1832 error_report("Invalid option list: %s", optarg
);
1837 options
= g_strdup(optarg
);
1839 char *old_options
= options
;
1840 options
= g_strdup_printf("%s,%s", options
, optarg
);
1841 g_free(old_options
);
1845 snapshot_name
= optarg
;
1848 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
1849 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
1852 error_report("Failed in parsing snapshot param '%s'",
1858 snapshot_name
= optarg
;
1865 sval
= qemu_strtosz_suffix(optarg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
1866 if (sval
< 0 || *end
) {
1867 error_report("Invalid minimum zero buffer size for sparse output specified");
1872 min_sparse
= sval
/ BDRV_SECTOR_SIZE
;
1891 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
1897 case OPTION_IMAGE_OPTS
:
1903 if (qemu_opts_foreach(&qemu_object_opts
,
1904 user_creatable_add_opts_foreach
,
1909 /* Initialize before goto out */
1913 qemu_progress_init(progress
, 1.0);
1915 bs_n
= argc
- optind
- 1;
1916 out_filename
= bs_n
>= 1 ? argv
[argc
- 1] : NULL
;
1918 if (options
&& has_help_option(options
)) {
1919 ret
= print_block_option_help(out_filename
, out_fmt
);
1924 error_exit("Must specify image file name");
1928 if (bs_n
> 1 && out_baseimg
) {
1929 error_report("-B makes no sense when concatenating multiple input "
1936 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
1938 error_report("Invalid source cache option: %s", src_cache
);
1942 qemu_progress_print(0, 100);
1944 blk
= g_new0(BlockBackend
*, bs_n
);
1945 bs
= g_new0(BlockDriverState
*, bs_n
);
1946 bs_sectors
= g_new(int64_t, bs_n
);
1949 for (bs_i
= 0; bs_i
< bs_n
; bs_i
++) {
1950 blk
[bs_i
] = img_open(image_opts
, argv
[optind
+ bs_i
],
1951 fmt
, src_flags
, src_writethrough
, quiet
);
1956 bs
[bs_i
] = blk_bs(blk
[bs_i
]);
1957 bs_sectors
[bs_i
] = blk_nb_sectors(blk
[bs_i
]);
1958 if (bs_sectors
[bs_i
] < 0) {
1959 error_report("Could not get size of %s: %s",
1960 argv
[optind
+ bs_i
], strerror(-bs_sectors
[bs_i
]));
1964 total_sectors
+= bs_sectors
[bs_i
];
1968 ret
= bdrv_snapshot_load_tmp(bs
[0],
1969 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
1970 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
1972 } else if (snapshot_name
!= NULL
) {
1974 error_report("No support for concatenating multiple snapshot");
1979 bdrv_snapshot_load_tmp_by_id_or_name(bs
[0], snapshot_name
, &local_err
);
1982 error_reportf_err(local_err
, "Failed to load snapshot: ");
1987 /* Find driver and parse its options */
1988 drv
= bdrv_find_format(out_fmt
);
1990 error_report("Unknown file format '%s'", out_fmt
);
1995 proto_drv
= bdrv_find_protocol(out_filename
, true, &local_err
);
1997 error_report_err(local_err
);
2003 if (!drv
->create_opts
) {
2004 error_report("Format driver '%s' does not support image creation",
2010 if (!proto_drv
->create_opts
) {
2011 error_report("Protocol driver '%s' does not support image creation",
2012 proto_drv
->format_name
);
2017 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
2018 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
2020 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
2022 qemu_opts_do_parse(opts
, options
, NULL
, &local_err
);
2024 error_report_err(local_err
);
2030 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, total_sectors
* 512,
2032 ret
= add_old_style_options(out_fmt
, opts
, out_baseimg
, NULL
);
2038 /* Get backing file name if -o backing_file was used */
2039 out_baseimg_param
= qemu_opt_get(opts
, BLOCK_OPT_BACKING_FILE
);
2040 if (out_baseimg_param
) {
2041 out_baseimg
= out_baseimg_param
;
2044 /* Check if compression is supported */
2047 qemu_opt_get_bool(opts
, BLOCK_OPT_ENCRYPT
, false);
2048 const char *preallocation
=
2049 qemu_opt_get(opts
, BLOCK_OPT_PREALLOC
);
2051 if (!drv
->bdrv_co_pwritev_compressed
) {
2052 error_report("Compression not supported for this file format");
2058 error_report("Compression and encryption not supported at "
2065 && strcmp(preallocation
, "off"))
2067 error_report("Compression and preallocation not supported at "
2075 /* Create the new image */
2076 ret
= bdrv_create(drv
, out_filename
, opts
, &local_err
);
2078 error_reportf_err(local_err
, "%s: error while converting %s: ",
2079 out_filename
, out_fmt
);
2084 flags
= min_sparse
? (BDRV_O_RDWR
| BDRV_O_UNMAP
) : BDRV_O_RDWR
;
2085 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
2087 error_report("Invalid cache option: %s", cache
);
2091 /* XXX we should allow --image-opts to trigger use of
2092 * img_open() here, but then we have trouble with
2093 * the bdrv_create() call which takes different params.
2094 * Not critical right now, so fix can wait...
2096 out_blk
= img_open_file(out_filename
, out_fmt
, flags
, writethrough
, quiet
);
2101 out_bs
= blk_bs(out_blk
);
2103 /* increase bufsectors from the default 4096 (2M) if opt_transfer
2104 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2106 bufsectors
= MIN(32768,
2108 MAX(out_bs
->bl
.opt_transfer
>> BDRV_SECTOR_BITS
,
2109 out_bs
->bl
.pdiscard_alignment
>>
2110 BDRV_SECTOR_BITS
)));
2113 int64_t output_sectors
= blk_nb_sectors(out_blk
);
2114 if (output_sectors
< 0) {
2115 error_report("unable to get output image length: %s",
2116 strerror(-output_sectors
));
2119 } else if (output_sectors
< total_sectors
) {
2120 error_report("output file is smaller than input file");
2126 cluster_sectors
= 0;
2127 ret
= bdrv_get_info(out_bs
, &bdi
);
2130 error_report("could not get block driver info");
2134 compress
= compress
|| bdi
.needs_compressed_writes
;
2135 cluster_sectors
= bdi
.cluster_size
/ BDRV_SECTOR_SIZE
;
2138 state
= (ImgConvertState
) {
2140 .src_sectors
= bs_sectors
,
2142 .total_sectors
= total_sectors
,
2144 .compressed
= compress
,
2145 .target_has_backing
= (bool) out_baseimg
,
2146 .min_sparse
= min_sparse
,
2147 .cluster_sectors
= cluster_sectors
,
2148 .buf_sectors
= bufsectors
,
2150 ret
= convert_do_copy(&state
);
2154 qemu_progress_print(100, 0);
2156 qemu_progress_end();
2157 qemu_opts_del(opts
);
2158 qemu_opts_free(create_opts
);
2159 qemu_opts_del(sn_opts
);
2163 for (bs_i
= 0; bs_i
< bs_n
; bs_i
++) {
2164 blk_unref(blk
[bs_i
]);
2179 static void dump_snapshots(BlockDriverState
*bs
)
2181 QEMUSnapshotInfo
*sn_tab
, *sn
;
2184 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
2187 printf("Snapshot list:\n");
2188 bdrv_snapshot_dump(fprintf
, stdout
, NULL
);
2190 for(i
= 0; i
< nb_sns
; i
++) {
2192 bdrv_snapshot_dump(fprintf
, stdout
, sn
);
2198 static void dump_json_image_info_list(ImageInfoList
*list
)
2202 Visitor
*v
= qobject_output_visitor_new(&obj
);
2204 visit_type_ImageInfoList(v
, NULL
, &list
, &error_abort
);
2205 visit_complete(v
, &obj
);
2206 str
= qobject_to_json_pretty(obj
);
2207 assert(str
!= NULL
);
2208 printf("%s\n", qstring_get_str(str
));
2209 qobject_decref(obj
);
2214 static void dump_json_image_info(ImageInfo
*info
)
2218 Visitor
*v
= qobject_output_visitor_new(&obj
);
2220 visit_type_ImageInfo(v
, NULL
, &info
, &error_abort
);
2221 visit_complete(v
, &obj
);
2222 str
= qobject_to_json_pretty(obj
);
2223 assert(str
!= NULL
);
2224 printf("%s\n", qstring_get_str(str
));
2225 qobject_decref(obj
);
2230 static void dump_human_image_info_list(ImageInfoList
*list
)
2232 ImageInfoList
*elem
;
2235 for (elem
= list
; elem
; elem
= elem
->next
) {
2241 bdrv_image_info_dump(fprintf
, stdout
, elem
->value
);
2245 static gboolean
str_equal_func(gconstpointer a
, gconstpointer b
)
2247 return strcmp(a
, b
) == 0;
2251 * Open an image file chain and return an ImageInfoList
2253 * @filename: topmost image filename
2254 * @fmt: topmost image format (may be NULL to autodetect)
2255 * @chain: true - enumerate entire backing file chain
2256 * false - only topmost image file
2258 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2259 * image file. If there was an error a message will have been printed to
2262 static ImageInfoList
*collect_image_info_list(bool image_opts
,
2263 const char *filename
,
2267 ImageInfoList
*head
= NULL
;
2268 ImageInfoList
**last
= &head
;
2269 GHashTable
*filenames
;
2272 filenames
= g_hash_table_new_full(g_str_hash
, str_equal_func
, NULL
, NULL
);
2276 BlockDriverState
*bs
;
2278 ImageInfoList
*elem
;
2280 if (g_hash_table_lookup_extended(filenames
, filename
, NULL
, NULL
)) {
2281 error_report("Backing file '%s' creates an infinite loop.",
2285 g_hash_table_insert(filenames
, (gpointer
)filename
, NULL
);
2287 blk
= img_open(image_opts
, filename
, fmt
,
2288 BDRV_O_NO_BACKING
| BDRV_O_NO_IO
, false, false);
2294 bdrv_query_image_info(bs
, &info
, &err
);
2296 error_report_err(err
);
2301 elem
= g_new0(ImageInfoList
, 1);
2308 filename
= fmt
= NULL
;
2310 if (info
->has_full_backing_filename
) {
2311 filename
= info
->full_backing_filename
;
2312 } else if (info
->has_backing_filename
) {
2313 error_report("Could not determine absolute backing filename,"
2314 " but backing filename '%s' present",
2315 info
->backing_filename
);
2318 if (info
->has_backing_filename_format
) {
2319 fmt
= info
->backing_filename_format
;
2323 g_hash_table_destroy(filenames
);
2327 qapi_free_ImageInfoList(head
);
2328 g_hash_table_destroy(filenames
);
2332 static int img_info(int argc
, char **argv
)
2335 OutputFormat output_format
= OFORMAT_HUMAN
;
2337 const char *filename
, *fmt
, *output
;
2338 ImageInfoList
*list
;
2339 bool image_opts
= false;
2344 int option_index
= 0;
2345 static const struct option long_options
[] = {
2346 {"help", no_argument
, 0, 'h'},
2347 {"format", required_argument
, 0, 'f'},
2348 {"output", required_argument
, 0, OPTION_OUTPUT
},
2349 {"backing-chain", no_argument
, 0, OPTION_BACKING_CHAIN
},
2350 {"object", required_argument
, 0, OPTION_OBJECT
},
2351 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2354 c
= getopt_long(argc
, argv
, "f:h",
2355 long_options
, &option_index
);
2370 case OPTION_BACKING_CHAIN
:
2373 case OPTION_OBJECT
: {
2375 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2381 case OPTION_IMAGE_OPTS
:
2386 if (optind
!= argc
- 1) {
2387 error_exit("Expecting one image file name");
2389 filename
= argv
[optind
++];
2391 if (output
&& !strcmp(output
, "json")) {
2392 output_format
= OFORMAT_JSON
;
2393 } else if (output
&& !strcmp(output
, "human")) {
2394 output_format
= OFORMAT_HUMAN
;
2395 } else if (output
) {
2396 error_report("--output must be used with human or json as argument.");
2400 if (qemu_opts_foreach(&qemu_object_opts
,
2401 user_creatable_add_opts_foreach
,
2406 list
= collect_image_info_list(image_opts
, filename
, fmt
, chain
);
2411 switch (output_format
) {
2413 dump_human_image_info_list(list
);
2417 dump_json_image_info_list(list
);
2419 dump_json_image_info(list
->value
);
2424 qapi_free_ImageInfoList(list
);
2428 static void dump_map_entry(OutputFormat output_format
, MapEntry
*e
,
2431 switch (output_format
) {
2433 if (e
->data
&& !e
->has_offset
) {
2434 error_report("File contains external, encrypted or compressed clusters.");
2437 if (e
->data
&& !e
->zero
) {
2438 printf("%#-16"PRIx64
"%#-16"PRIx64
"%#-16"PRIx64
"%s\n",
2439 e
->start
, e
->length
,
2440 e
->has_offset
? e
->offset
: 0,
2441 e
->has_filename
? e
->filename
: "");
2443 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2444 * Modify the flags here to allow more coalescing.
2446 if (next
&& (!next
->data
|| next
->zero
)) {
2452 printf("%s{ \"start\": %"PRId64
", \"length\": %"PRId64
","
2453 " \"depth\": %"PRId64
", \"zero\": %s, \"data\": %s",
2454 (e
->start
== 0 ? "[" : ",\n"),
2455 e
->start
, e
->length
, e
->depth
,
2456 e
->zero
? "true" : "false",
2457 e
->data
? "true" : "false");
2458 if (e
->has_offset
) {
2459 printf(", \"offset\": %"PRId64
"", e
->offset
);
2470 static int get_block_status(BlockDriverState
*bs
, int64_t sector_num
,
2471 int nb_sectors
, MapEntry
*e
)
2475 BlockDriverState
*file
;
2478 /* As an optimization, we could cache the current range of unallocated
2479 * clusters in each file of the chain, and avoid querying the same
2485 ret
= bdrv_get_block_status(bs
, sector_num
, nb_sectors
, &nb_sectors
,
2491 if (ret
& (BDRV_BLOCK_ZERO
|BDRV_BLOCK_DATA
)) {
2494 bs
= backing_bs(bs
);
2503 has_offset
= !!(ret
& BDRV_BLOCK_OFFSET_VALID
);
2506 .start
= sector_num
* BDRV_SECTOR_SIZE
,
2507 .length
= nb_sectors
* BDRV_SECTOR_SIZE
,
2508 .data
= !!(ret
& BDRV_BLOCK_DATA
),
2509 .zero
= !!(ret
& BDRV_BLOCK_ZERO
),
2510 .offset
= ret
& BDRV_BLOCK_OFFSET_MASK
,
2511 .has_offset
= has_offset
,
2513 .has_filename
= file
&& has_offset
,
2514 .filename
= file
&& has_offset
? file
->filename
: NULL
,
2520 static inline bool entry_mergeable(const MapEntry
*curr
, const MapEntry
*next
)
2522 if (curr
->length
== 0) {
2525 if (curr
->zero
!= next
->zero
||
2526 curr
->data
!= next
->data
||
2527 curr
->depth
!= next
->depth
||
2528 curr
->has_filename
!= next
->has_filename
||
2529 curr
->has_offset
!= next
->has_offset
) {
2532 if (curr
->has_filename
&& strcmp(curr
->filename
, next
->filename
)) {
2535 if (curr
->has_offset
&& curr
->offset
+ curr
->length
!= next
->offset
) {
2541 static int img_map(int argc
, char **argv
)
2544 OutputFormat output_format
= OFORMAT_HUMAN
;
2546 BlockDriverState
*bs
;
2547 const char *filename
, *fmt
, *output
;
2549 MapEntry curr
= { .length
= 0 }, next
;
2551 bool image_opts
= false;
2556 int option_index
= 0;
2557 static const struct option long_options
[] = {
2558 {"help", no_argument
, 0, 'h'},
2559 {"format", required_argument
, 0, 'f'},
2560 {"output", required_argument
, 0, OPTION_OUTPUT
},
2561 {"object", required_argument
, 0, OPTION_OBJECT
},
2562 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2565 c
= getopt_long(argc
, argv
, "f:h",
2566 long_options
, &option_index
);
2581 case OPTION_OBJECT
: {
2583 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2589 case OPTION_IMAGE_OPTS
:
2594 if (optind
!= argc
- 1) {
2595 error_exit("Expecting one image file name");
2597 filename
= argv
[optind
];
2599 if (output
&& !strcmp(output
, "json")) {
2600 output_format
= OFORMAT_JSON
;
2601 } else if (output
&& !strcmp(output
, "human")) {
2602 output_format
= OFORMAT_HUMAN
;
2603 } else if (output
) {
2604 error_report("--output must be used with human or json as argument.");
2608 if (qemu_opts_foreach(&qemu_object_opts
,
2609 user_creatable_add_opts_foreach
,
2614 blk
= img_open(image_opts
, filename
, fmt
, 0, false, false);
2620 if (output_format
== OFORMAT_HUMAN
) {
2621 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2624 length
= blk_getlength(blk
);
2625 while (curr
.start
+ curr
.length
< length
) {
2626 int64_t nsectors_left
;
2630 sector_num
= (curr
.start
+ curr
.length
) >> BDRV_SECTOR_BITS
;
2632 /* Probe up to 1 GiB at a time. */
2633 nsectors_left
= DIV_ROUND_UP(length
, BDRV_SECTOR_SIZE
) - sector_num
;
2634 n
= MIN(1 << (30 - BDRV_SECTOR_BITS
), nsectors_left
);
2635 ret
= get_block_status(bs
, sector_num
, n
, &next
);
2638 error_report("Could not read file metadata: %s", strerror(-ret
));
2642 if (entry_mergeable(&curr
, &next
)) {
2643 curr
.length
+= next
.length
;
2647 if (curr
.length
> 0) {
2648 dump_map_entry(output_format
, &curr
, &next
);
2653 dump_map_entry(output_format
, &curr
, NULL
);
2660 #define SNAPSHOT_LIST 1
2661 #define SNAPSHOT_CREATE 2
2662 #define SNAPSHOT_APPLY 3
2663 #define SNAPSHOT_DELETE 4
2665 static int img_snapshot(int argc
, char **argv
)
2668 BlockDriverState
*bs
;
2669 QEMUSnapshotInfo sn
;
2670 char *filename
, *snapshot_name
= NULL
;
2671 int c
, ret
= 0, bdrv_oflags
;
2676 bool image_opts
= false;
2678 bdrv_oflags
= BDRV_O_RDWR
;
2679 /* Parse commandline parameters */
2681 static const struct option long_options
[] = {
2682 {"help", no_argument
, 0, 'h'},
2683 {"object", required_argument
, 0, OPTION_OBJECT
},
2684 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2687 c
= getopt_long(argc
, argv
, "la:c:d:hq",
2688 long_options
, NULL
);
2699 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2702 action
= SNAPSHOT_LIST
;
2703 bdrv_oflags
&= ~BDRV_O_RDWR
; /* no need for RW */
2707 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2710 action
= SNAPSHOT_APPLY
;
2711 snapshot_name
= optarg
;
2715 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2718 action
= SNAPSHOT_CREATE
;
2719 snapshot_name
= optarg
;
2723 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
2726 action
= SNAPSHOT_DELETE
;
2727 snapshot_name
= optarg
;
2732 case OPTION_OBJECT
: {
2734 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2740 case OPTION_IMAGE_OPTS
:
2746 if (optind
!= argc
- 1) {
2747 error_exit("Expecting one image file name");
2749 filename
= argv
[optind
++];
2751 if (qemu_opts_foreach(&qemu_object_opts
,
2752 user_creatable_add_opts_foreach
,
2757 /* Open the image */
2758 blk
= img_open(image_opts
, filename
, NULL
, bdrv_oflags
, false, quiet
);
2764 /* Perform the requested action */
2770 case SNAPSHOT_CREATE
:
2771 memset(&sn
, 0, sizeof(sn
));
2772 pstrcpy(sn
.name
, sizeof(sn
.name
), snapshot_name
);
2774 qemu_gettimeofday(&tv
);
2775 sn
.date_sec
= tv
.tv_sec
;
2776 sn
.date_nsec
= tv
.tv_usec
* 1000;
2778 ret
= bdrv_snapshot_create(bs
, &sn
);
2780 error_report("Could not create snapshot '%s': %d (%s)",
2781 snapshot_name
, ret
, strerror(-ret
));
2785 case SNAPSHOT_APPLY
:
2786 ret
= bdrv_snapshot_goto(bs
, snapshot_name
);
2788 error_report("Could not apply snapshot '%s': %d (%s)",
2789 snapshot_name
, ret
, strerror(-ret
));
2793 case SNAPSHOT_DELETE
:
2794 bdrv_snapshot_delete_by_id_or_name(bs
, snapshot_name
, &err
);
2796 error_reportf_err(err
, "Could not delete snapshot '%s': ",
2811 static int img_rebase(int argc
, char **argv
)
2813 BlockBackend
*blk
= NULL
, *blk_old_backing
= NULL
, *blk_new_backing
= NULL
;
2814 uint8_t *buf_old
= NULL
;
2815 uint8_t *buf_new
= NULL
;
2816 BlockDriverState
*bs
= NULL
;
2818 const char *fmt
, *cache
, *src_cache
, *out_basefmt
, *out_baseimg
;
2819 int c
, flags
, src_flags
, ret
;
2820 bool writethrough
, src_writethrough
;
2824 Error
*local_err
= NULL
;
2825 bool image_opts
= false;
2827 /* Parse commandline parameters */
2829 cache
= BDRV_DEFAULT_CACHE
;
2830 src_cache
= BDRV_DEFAULT_CACHE
;
2834 static const struct option long_options
[] = {
2835 {"help", no_argument
, 0, 'h'},
2836 {"object", required_argument
, 0, OPTION_OBJECT
},
2837 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
2840 c
= getopt_long(argc
, argv
, "hf:F:b:upt:T:q",
2841 long_options
, NULL
);
2854 out_basefmt
= optarg
;
2857 out_baseimg
= optarg
;
2874 case OPTION_OBJECT
: {
2876 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
2882 case OPTION_IMAGE_OPTS
:
2892 if (optind
!= argc
- 1) {
2893 error_exit("Expecting one image file name");
2895 if (!unsafe
&& !out_baseimg
) {
2896 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
2898 filename
= argv
[optind
++];
2900 if (qemu_opts_foreach(&qemu_object_opts
,
2901 user_creatable_add_opts_foreach
,
2906 qemu_progress_init(progress
, 2.0);
2907 qemu_progress_print(0, 100);
2909 flags
= BDRV_O_RDWR
| (unsafe
? BDRV_O_NO_BACKING
: 0);
2910 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
2912 error_report("Invalid cache option: %s", cache
);
2917 ret
= bdrv_parse_cache_mode(src_cache
, &src_flags
, &src_writethrough
);
2919 error_report("Invalid source cache option: %s", src_cache
);
2923 /* The source files are opened read-only, don't care about WCE */
2924 assert((src_flags
& BDRV_O_RDWR
) == 0);
2925 (void) src_writethrough
;
2930 * Ignore the old backing file for unsafe rebase in case we want to correct
2931 * the reference to a renamed or moved backing file.
2933 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
);
2940 if (out_basefmt
!= NULL
) {
2941 if (bdrv_find_format(out_basefmt
) == NULL
) {
2942 error_report("Invalid format name: '%s'", out_basefmt
);
2948 /* For safe rebasing we need to compare old and new backing file */
2950 char backing_name
[PATH_MAX
];
2951 QDict
*options
= NULL
;
2953 if (bs
->backing_format
[0] != '\0') {
2954 options
= qdict_new();
2955 qdict_put(options
, "driver", qstring_from_str(bs
->backing_format
));
2958 bdrv_get_backing_filename(bs
, backing_name
, sizeof(backing_name
));
2959 blk_old_backing
= blk_new_open(backing_name
, NULL
,
2960 options
, src_flags
, &local_err
);
2961 if (!blk_old_backing
) {
2962 error_reportf_err(local_err
,
2963 "Could not open old backing file '%s': ",
2969 if (out_baseimg
[0]) {
2971 options
= qdict_new();
2972 qdict_put(options
, "driver", qstring_from_str(out_basefmt
));
2977 blk_new_backing
= blk_new_open(out_baseimg
, NULL
,
2978 options
, src_flags
, &local_err
);
2979 if (!blk_new_backing
) {
2980 error_reportf_err(local_err
,
2981 "Could not open new backing file '%s': ",
2990 * Check each unallocated cluster in the COW file. If it is unallocated,
2991 * accesses go to the backing file. We must therefore compare this cluster
2992 * in the old and new backing file, and if they differ we need to copy it
2993 * from the old backing file into the COW file.
2995 * If qemu-img crashes during this step, no harm is done. The content of
2996 * the image is the same as the original one at any time.
2999 int64_t num_sectors
;
3000 int64_t old_backing_num_sectors
;
3001 int64_t new_backing_num_sectors
= 0;
3004 float local_progress
= 0;
3006 buf_old
= blk_blockalign(blk
, IO_BUF_SIZE
);
3007 buf_new
= blk_blockalign(blk
, IO_BUF_SIZE
);
3009 num_sectors
= blk_nb_sectors(blk
);
3010 if (num_sectors
< 0) {
3011 error_report("Could not get size of '%s': %s",
3012 filename
, strerror(-num_sectors
));
3016 old_backing_num_sectors
= blk_nb_sectors(blk_old_backing
);
3017 if (old_backing_num_sectors
< 0) {
3018 char backing_name
[PATH_MAX
];
3020 bdrv_get_backing_filename(bs
, backing_name
, sizeof(backing_name
));
3021 error_report("Could not get size of '%s': %s",
3022 backing_name
, strerror(-old_backing_num_sectors
));
3026 if (blk_new_backing
) {
3027 new_backing_num_sectors
= blk_nb_sectors(blk_new_backing
);
3028 if (new_backing_num_sectors
< 0) {
3029 error_report("Could not get size of '%s': %s",
3030 out_baseimg
, strerror(-new_backing_num_sectors
));
3036 if (num_sectors
!= 0) {
3037 local_progress
= (float)100 /
3038 (num_sectors
/ MIN(num_sectors
, IO_BUF_SIZE
/ 512));
3041 for (sector
= 0; sector
< num_sectors
; sector
+= n
) {
3043 /* How many sectors can we handle with the next read? */
3044 if (sector
+ (IO_BUF_SIZE
/ 512) <= num_sectors
) {
3045 n
= (IO_BUF_SIZE
/ 512);
3047 n
= num_sectors
- sector
;
3050 /* If the cluster is allocated, we don't need to take action */
3051 ret
= bdrv_is_allocated(bs
, sector
, n
, &n
);
3053 error_report("error while reading image metadata: %s",
3062 * Read old and new backing file and take into consideration that
3063 * backing files may be smaller than the COW image.
3065 if (sector
>= old_backing_num_sectors
) {
3066 memset(buf_old
, 0, n
* BDRV_SECTOR_SIZE
);
3068 if (sector
+ n
> old_backing_num_sectors
) {
3069 n
= old_backing_num_sectors
- sector
;
3072 ret
= blk_pread(blk_old_backing
, sector
<< BDRV_SECTOR_BITS
,
3073 buf_old
, n
<< BDRV_SECTOR_BITS
);
3075 error_report("error while reading from old backing file");
3080 if (sector
>= new_backing_num_sectors
|| !blk_new_backing
) {
3081 memset(buf_new
, 0, n
* BDRV_SECTOR_SIZE
);
3083 if (sector
+ n
> new_backing_num_sectors
) {
3084 n
= new_backing_num_sectors
- sector
;
3087 ret
= blk_pread(blk_new_backing
, sector
<< BDRV_SECTOR_BITS
,
3088 buf_new
, n
<< BDRV_SECTOR_BITS
);
3090 error_report("error while reading from new backing file");
3095 /* If they differ, we need to write to the COW file */
3096 uint64_t written
= 0;
3098 while (written
< n
) {
3101 if (compare_sectors(buf_old
+ written
* 512,
3102 buf_new
+ written
* 512, n
- written
, &pnum
))
3104 ret
= blk_pwrite(blk
,
3105 (sector
+ written
) << BDRV_SECTOR_BITS
,
3106 buf_old
+ written
* 512,
3107 pnum
<< BDRV_SECTOR_BITS
, 0);
3109 error_report("Error while writing to COW image: %s",
3117 qemu_progress_print(local_progress
, 100);
3122 * Change the backing file. All clusters that are different from the old
3123 * backing file are overwritten in the COW file now, so the visible content
3124 * doesn't change when we switch the backing file.
3126 if (out_baseimg
&& *out_baseimg
) {
3127 ret
= bdrv_change_backing_file(bs
, out_baseimg
, out_basefmt
);
3129 ret
= bdrv_change_backing_file(bs
, NULL
, NULL
);
3132 if (ret
== -ENOSPC
) {
3133 error_report("Could not change the backing file to '%s': No "
3134 "space left in the file header", out_baseimg
);
3135 } else if (ret
< 0) {
3136 error_report("Could not change the backing file to '%s': %s",
3137 out_baseimg
, strerror(-ret
));
3140 qemu_progress_print(100, 0);
3142 * TODO At this point it is possible to check if any clusters that are
3143 * allocated in the COW file are the same in the backing file. If so, they
3144 * could be dropped from the COW file. Don't do this before switching the
3145 * backing file, in case of a crash this would lead to corruption.
3148 qemu_progress_end();
3151 blk_unref(blk_old_backing
);
3152 blk_unref(blk_new_backing
);
3154 qemu_vfree(buf_old
);
3155 qemu_vfree(buf_new
);
3164 static int img_resize(int argc
, char **argv
)
3167 int c
, ret
, relative
;
3168 const char *filename
, *fmt
, *size
;
3169 int64_t n
, total_size
;
3171 BlockBackend
*blk
= NULL
;
3174 static QemuOptsList resize_options
= {
3175 .name
= "resize_options",
3176 .head
= QTAILQ_HEAD_INITIALIZER(resize_options
.head
),
3179 .name
= BLOCK_OPT_SIZE
,
3180 .type
= QEMU_OPT_SIZE
,
3181 .help
= "Virtual disk size"
3187 bool image_opts
= false;
3189 /* Remove size from argv manually so that negative numbers are not treated
3190 * as options by getopt. */
3192 error_exit("Not enough arguments");
3196 size
= argv
[--argc
];
3198 /* Parse getopt arguments */
3201 static const struct option long_options
[] = {
3202 {"help", no_argument
, 0, 'h'},
3203 {"object", required_argument
, 0, OPTION_OBJECT
},
3204 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3207 c
= getopt_long(argc
, argv
, "f:hq",
3208 long_options
, NULL
);
3223 case OPTION_OBJECT
: {
3225 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3231 case OPTION_IMAGE_OPTS
:
3236 if (optind
!= argc
- 1) {
3237 error_exit("Expecting one image file name");
3239 filename
= argv
[optind
++];
3241 if (qemu_opts_foreach(&qemu_object_opts
,
3242 user_creatable_add_opts_foreach
,
3247 /* Choose grow, shrink, or absolute resize mode */
3263 param
= qemu_opts_create(&resize_options
, NULL
, 0, &error_abort
);
3264 qemu_opt_set(param
, BLOCK_OPT_SIZE
, size
, &err
);
3266 error_report_err(err
);
3268 qemu_opts_del(param
);
3271 n
= qemu_opt_get_size(param
, BLOCK_OPT_SIZE
, 0);
3272 qemu_opts_del(param
);
3274 blk
= img_open(image_opts
, filename
, fmt
,
3275 BDRV_O_RDWR
, false, quiet
);
3282 total_size
= blk_getlength(blk
) + n
* relative
;
3286 if (total_size
<= 0) {
3287 error_report("New image size must be positive");
3292 ret
= blk_truncate(blk
, total_size
);
3295 qprintf(quiet
, "Image resized.\n");
3298 error_report("This image does not support resize");
3301 error_report("Image is read-only");
3304 error_report("Error resizing image: %s", strerror(-ret
));
3315 static void amend_status_cb(BlockDriverState
*bs
,
3316 int64_t offset
, int64_t total_work_size
,
3319 qemu_progress_print(100.f
* offset
/ total_work_size
, 0);
3322 static int img_amend(int argc
, char **argv
)
3326 char *options
= NULL
;
3327 QemuOptsList
*create_opts
= NULL
;
3328 QemuOpts
*opts
= NULL
;
3329 const char *fmt
= NULL
, *filename
, *cache
;
3332 bool quiet
= false, progress
= false;
3333 BlockBackend
*blk
= NULL
;
3334 BlockDriverState
*bs
= NULL
;
3335 bool image_opts
= false;
3337 cache
= BDRV_DEFAULT_CACHE
;
3339 static const struct option long_options
[] = {
3340 {"help", no_argument
, 0, 'h'},
3341 {"object", required_argument
, 0, OPTION_OBJECT
},
3342 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3345 c
= getopt_long(argc
, argv
, "ho:f:t:pq",
3346 long_options
, NULL
);
3357 if (!is_valid_option_list(optarg
)) {
3358 error_report("Invalid option list: %s", optarg
);
3360 goto out_no_progress
;
3363 options
= g_strdup(optarg
);
3365 char *old_options
= options
;
3366 options
= g_strdup_printf("%s,%s", options
, optarg
);
3367 g_free(old_options
);
3383 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
3387 goto out_no_progress
;
3390 case OPTION_IMAGE_OPTS
:
3397 error_exit("Must specify options (-o)");
3400 if (qemu_opts_foreach(&qemu_object_opts
,
3401 user_creatable_add_opts_foreach
,
3404 goto out_no_progress
;
3410 qemu_progress_init(progress
, 1.0);
3412 filename
= (optind
== argc
- 1) ? argv
[argc
- 1] : NULL
;
3413 if (fmt
&& has_help_option(options
)) {
3414 /* If a format is explicitly specified (and possibly no filename is
3415 * given), print option help here */
3416 ret
= print_block_option_help(filename
, fmt
);
3420 if (optind
!= argc
- 1) {
3421 error_report("Expecting one image file name");
3426 flags
= BDRV_O_RDWR
;
3427 ret
= bdrv_parse_cache_mode(cache
, &flags
, &writethrough
);
3429 error_report("Invalid cache option: %s", cache
);
3433 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
);
3440 fmt
= bs
->drv
->format_name
;
3442 if (has_help_option(options
)) {
3443 /* If the format was auto-detected, print option help here */
3444 ret
= print_block_option_help(filename
, fmt
);
3448 if (!bs
->drv
->create_opts
) {
3449 error_report("Format driver '%s' does not support any options to amend",
3455 create_opts
= qemu_opts_append(create_opts
, bs
->drv
->create_opts
);
3456 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
3458 qemu_opts_do_parse(opts
, options
, NULL
, &err
);
3460 error_report_err(err
);
3466 /* In case the driver does not call amend_status_cb() */
3467 qemu_progress_print(0.f
, 0);
3468 ret
= bdrv_amend_options(bs
, opts
, &amend_status_cb
, NULL
);
3469 qemu_progress_print(100.f
, 0);
3471 error_report("Error while amending options: %s", strerror(-ret
));
3476 qemu_progress_end();
3480 qemu_opts_del(opts
);
3481 qemu_opts_free(create_opts
);
3490 typedef struct BenchData
{
3492 uint64_t image_size
;
3499 bool drain_on_flush
;
3508 static void bench_undrained_flush_cb(void *opaque
, int ret
)
3511 error_report("Failed flush request: %s", strerror(-ret
));
3516 static void bench_cb(void *opaque
, int ret
)
3518 BenchData
*b
= opaque
;
3522 error_report("Failed request: %s", strerror(-ret
));
3527 /* Just finished a flush with drained queue: Start next requests */
3528 assert(b
->in_flight
== 0);
3529 b
->in_flush
= false;
3530 } else if (b
->in_flight
> 0) {
3531 int remaining
= b
->n
- b
->in_flight
;
3536 /* Time for flush? Drain queue if requested, then flush */
3537 if (b
->flush_interval
&& remaining
% b
->flush_interval
== 0) {
3538 if (!b
->in_flight
|| !b
->drain_on_flush
) {
3539 BlockCompletionFunc
*cb
;
3541 if (b
->drain_on_flush
) {
3545 cb
= bench_undrained_flush_cb
;
3548 acb
= blk_aio_flush(b
->blk
, cb
, b
);
3550 error_report("Failed to issue flush request");
3554 if (b
->drain_on_flush
) {
3560 while (b
->n
> b
->in_flight
&& b
->in_flight
< b
->nrreq
) {
3562 acb
= blk_aio_pwritev(b
->blk
, b
->offset
, b
->qiov
, 0,
3565 acb
= blk_aio_preadv(b
->blk
, b
->offset
, b
->qiov
, 0,
3569 error_report("Failed to issue request");
3573 b
->offset
+= b
->step
;
3574 b
->offset
%= b
->image_size
;
3578 static int img_bench(int argc
, char **argv
)
3581 const char *fmt
= NULL
, *filename
;
3583 bool image_opts
= false;
3584 bool is_write
= false;
3588 size_t bufsize
= 4096;
3591 int flush_interval
= 0;
3592 bool drain_on_flush
= true;
3594 BlockBackend
*blk
= NULL
;
3595 BenchData data
= {};
3597 bool writethrough
= false;
3598 struct timeval t1
, t2
;
3602 static const struct option long_options
[] = {
3603 {"help", no_argument
, 0, 'h'},
3604 {"flush-interval", required_argument
, 0, OPTION_FLUSH_INTERVAL
},
3605 {"image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3606 {"pattern", required_argument
, 0, OPTION_PATTERN
},
3607 {"no-drain", no_argument
, 0, OPTION_NO_DRAIN
},
3610 c
= getopt_long(argc
, argv
, "hc:d:f:no:qs:S:t:w", long_options
, NULL
);
3624 count
= strtoul(optarg
, &end
, 0);
3625 if (errno
|| *end
|| count
> INT_MAX
) {
3626 error_report("Invalid request count specified");
3635 depth
= strtoul(optarg
, &end
, 0);
3636 if (errno
|| *end
|| depth
> INT_MAX
) {
3637 error_report("Invalid queue depth specified");
3646 flags
|= BDRV_O_NATIVE_AIO
;
3652 offset
= qemu_strtosz_suffix(optarg
, &end
,
3653 QEMU_STRTOSZ_DEFSUFFIX_B
);
3654 if (offset
< 0|| *end
) {
3655 error_report("Invalid offset specified");
3669 sval
= qemu_strtosz_suffix(optarg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
3670 if (sval
< 0 || sval
> INT_MAX
|| *end
) {
3671 error_report("Invalid buffer size specified");
3683 sval
= qemu_strtosz_suffix(optarg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
3684 if (sval
< 0 || sval
> INT_MAX
|| *end
) {
3685 error_report("Invalid step size specified");
3693 ret
= bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
);
3695 error_report("Invalid cache mode");
3701 flags
|= BDRV_O_RDWR
;
3704 case OPTION_PATTERN
:
3708 pattern
= strtoul(optarg
, &end
, 0);
3709 if (errno
|| *end
|| pattern
> 0xff) {
3710 error_report("Invalid pattern byte specified");
3715 case OPTION_FLUSH_INTERVAL
:
3719 flush_interval
= strtoul(optarg
, &end
, 0);
3720 if (errno
|| *end
|| flush_interval
> INT_MAX
) {
3721 error_report("Invalid flush interval specified");
3726 case OPTION_NO_DRAIN
:
3727 drain_on_flush
= false;
3729 case OPTION_IMAGE_OPTS
:
3735 if (optind
!= argc
- 1) {
3736 error_exit("Expecting one image file name");
3738 filename
= argv
[argc
- 1];
3740 if (!is_write
&& flush_interval
) {
3741 error_report("--flush-interval is only available in write tests");
3745 if (flush_interval
&& flush_interval
< depth
) {
3746 error_report("Flush interval can't be smaller than depth");
3751 blk
= img_open(image_opts
, filename
, fmt
, flags
, writethrough
, quiet
);
3757 image_size
= blk_getlength(blk
);
3758 if (image_size
< 0) {
3763 data
= (BenchData
) {
3765 .image_size
= image_size
,
3767 .step
= step
?: bufsize
,
3772 .flush_interval
= flush_interval
,
3773 .drain_on_flush
= drain_on_flush
,
3775 printf("Sending %d %s requests, %d bytes each, %d in parallel "
3776 "(starting at offset %" PRId64
", step size %d)\n",
3777 data
.n
, data
.write
? "write" : "read", data
.bufsize
, data
.nrreq
,
3778 data
.offset
, data
.step
);
3779 if (flush_interval
) {
3780 printf("Sending flush every %d requests\n", flush_interval
);
3783 data
.buf
= blk_blockalign(blk
, data
.nrreq
* data
.bufsize
);
3784 memset(data
.buf
, pattern
, data
.nrreq
* data
.bufsize
);
3786 data
.qiov
= g_new(QEMUIOVector
, data
.nrreq
);
3787 for (i
= 0; i
< data
.nrreq
; i
++) {
3788 qemu_iovec_init(&data
.qiov
[i
], 1);
3789 qemu_iovec_add(&data
.qiov
[i
],
3790 data
.buf
+ i
* data
.bufsize
, data
.bufsize
);
3793 gettimeofday(&t1
, NULL
);
3796 while (data
.n
> 0) {
3797 main_loop_wait(false);
3799 gettimeofday(&t2
, NULL
);
3801 printf("Run completed in %3.3f seconds.\n",
3802 (t2
.tv_sec
- t1
.tv_sec
)
3803 + ((double)(t2
.tv_usec
- t1
.tv_usec
) / 1000000));
3806 qemu_vfree(data
.buf
);
3827 int bsz
; /* Block size */
3835 int (*f
)(const char *, struct DdIo
*, struct DdIo
*, struct DdInfo
*);
3839 static int img_dd_bs(const char *arg
,
3840 struct DdIo
*in
, struct DdIo
*out
,
3846 res
= qemu_strtosz_suffix(arg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
3848 if (res
<= 0 || res
> INT_MAX
|| *end
) {
3849 error_report("invalid number: '%s'", arg
);
3852 in
->bsz
= out
->bsz
= res
;
3857 static int img_dd_count(const char *arg
,
3858 struct DdIo
*in
, struct DdIo
*out
,
3863 dd
->count
= qemu_strtosz_suffix(arg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
3865 if (dd
->count
< 0 || *end
) {
3866 error_report("invalid number: '%s'", arg
);
3873 static int img_dd_if(const char *arg
,
3874 struct DdIo
*in
, struct DdIo
*out
,
3877 in
->filename
= g_strdup(arg
);
3882 static int img_dd_of(const char *arg
,
3883 struct DdIo
*in
, struct DdIo
*out
,
3886 out
->filename
= g_strdup(arg
);
3891 static int img_dd_skip(const char *arg
,
3892 struct DdIo
*in
, struct DdIo
*out
,
3897 in
->offset
= qemu_strtosz_suffix(arg
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
3899 if (in
->offset
< 0 || *end
) {
3900 error_report("invalid number: '%s'", arg
);
3907 static int img_dd(int argc
, char **argv
)
3912 BlockDriver
*drv
= NULL
, *proto_drv
= NULL
;
3913 BlockBackend
*blk1
= NULL
, *blk2
= NULL
;
3914 QemuOpts
*opts
= NULL
;
3915 QemuOptsList
*create_opts
= NULL
;
3916 Error
*local_err
= NULL
;
3917 bool image_opts
= false;
3919 const char *out_fmt
= "raw";
3920 const char *fmt
= NULL
;
3922 int64_t block_count
= 0, out_pos
, in_pos
;
3923 struct DdInfo dd
= {
3928 .bsz
= 512, /* Block size is by default 512 bytes */
3940 const struct DdOpts options
[] = {
3941 { "bs", img_dd_bs
, C_BS
},
3942 { "count", img_dd_count
, C_COUNT
},
3943 { "if", img_dd_if
, C_IF
},
3944 { "of", img_dd_of
, C_OF
},
3945 { "skip", img_dd_skip
, C_SKIP
},
3948 const struct option long_options
[] = {
3949 { "help", no_argument
, 0, 'h'},
3950 { "image-opts", no_argument
, 0, OPTION_IMAGE_OPTS
},
3954 while ((c
= getopt_long(argc
, argv
, "hf:O:", long_options
, NULL
))) {
3966 error_report("Try 'qemu-img --help' for more information.");
3972 case OPTION_IMAGE_OPTS
:
3978 for (i
= optind
; i
< argc
; i
++) {
3980 arg
= g_strdup(argv
[i
]);
3982 tmp
= strchr(arg
, '=');
3984 error_report("unrecognized operand %s", arg
);
3991 for (j
= 0; options
[j
].name
!= NULL
; j
++) {
3992 if (!strcmp(arg
, options
[j
].name
)) {
3996 if (options
[j
].name
== NULL
) {
3997 error_report("unrecognized operand %s", arg
);
4002 if (options
[j
].f(tmp
, &in
, &out
, &dd
) != 0) {
4006 dd
.flags
|= options
[j
].flag
;
4011 if (!(dd
.flags
& C_IF
&& dd
.flags
& C_OF
)) {
4012 error_report("Must specify both input and output files");
4016 blk1
= img_open(image_opts
, in
.filename
, fmt
, 0, false, false);
4023 drv
= bdrv_find_format(out_fmt
);
4025 error_report("Unknown file format");
4029 proto_drv
= bdrv_find_protocol(out
.filename
, true, &local_err
);
4032 error_report_err(local_err
);
4036 if (!drv
->create_opts
) {
4037 error_report("Format driver '%s' does not support image creation",
4042 if (!proto_drv
->create_opts
) {
4043 error_report("Protocol driver '%s' does not support image creation",
4044 proto_drv
->format_name
);
4048 create_opts
= qemu_opts_append(create_opts
, drv
->create_opts
);
4049 create_opts
= qemu_opts_append(create_opts
, proto_drv
->create_opts
);
4051 opts
= qemu_opts_create(create_opts
, NULL
, 0, &error_abort
);
4053 size
= blk_getlength(blk1
);
4055 error_report("Failed to get size for '%s'", in
.filename
);
4060 if (dd
.flags
& C_COUNT
&& dd
.count
<= INT64_MAX
/ in
.bsz
&&
4061 dd
.count
* in
.bsz
< size
) {
4062 size
= dd
.count
* in
.bsz
;
4065 /* Overflow means the specified offset is beyond input image's size */
4066 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4067 size
< in
.bsz
* in
.offset
)) {
4068 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
, 0, &error_abort
);
4070 qemu_opt_set_number(opts
, BLOCK_OPT_SIZE
,
4071 size
- in
.bsz
* in
.offset
, &error_abort
);
4074 ret
= bdrv_create(drv
, out
.filename
, opts
, &local_err
);
4076 error_reportf_err(local_err
,
4077 "%s: error while creating output image: ",
4083 blk2
= img_open(image_opts
, out
.filename
, out_fmt
, BDRV_O_RDWR
,
4091 if (dd
.flags
& C_SKIP
&& (in
.offset
> INT64_MAX
/ in
.bsz
||
4092 size
< in
.offset
* in
.bsz
)) {
4093 /* We give a warning if the skip option is bigger than the input
4094 * size and create an empty output disk image (i.e. like dd(1)).
4096 error_report("%s: cannot skip to specified offset", in
.filename
);
4099 in_pos
= in
.offset
* in
.bsz
;
4102 in
.buf
= g_new(uint8_t, in
.bsz
);
4104 for (out_pos
= 0; in_pos
< size
; block_count
++) {
4105 int in_ret
, out_ret
;
4107 if (in_pos
+ in
.bsz
> size
) {
4108 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, size
- in_pos
);
4110 in_ret
= blk_pread(blk1
, in_pos
, in
.buf
, in
.bsz
);
4113 error_report("error while reading from input image file: %s",
4120 out_ret
= blk_pwrite(blk2
, out_pos
, in
.buf
, in_ret
, 0);
4123 error_report("error while writing to output image file: %s",
4124 strerror(-out_ret
));
4133 qemu_opts_del(opts
);
4134 qemu_opts_free(create_opts
);
4137 g_free(in
.filename
);
4138 g_free(out
.filename
);
4149 static const img_cmd_t img_cmds
[] = {
4150 #define DEF(option, callback, arg_string) \
4151 { option, callback },
4152 #include "qemu-img-cmds.h"
4158 int main(int argc
, char **argv
)
4160 const img_cmd_t
*cmd
;
4161 const char *cmdname
;
4162 Error
*local_error
= NULL
;
4163 char *trace_file
= NULL
;
4165 static const struct option long_options
[] = {
4166 {"help", no_argument
, 0, 'h'},
4167 {"version", no_argument
, 0, 'V'},
4168 {"trace", required_argument
, NULL
, 'T'},
4173 signal(SIGPIPE
, SIG_IGN
);
4176 module_call_init(MODULE_INIT_TRACE
);
4177 error_set_progname(argv
[0]);
4178 qemu_init_exec_dir(argv
[0]);
4180 if (qemu_init_main_loop(&local_error
)) {
4181 error_report_err(local_error
);
4185 qcrypto_init(&error_fatal
);
4187 module_call_init(MODULE_INIT_QOM
);
4190 error_exit("Not enough arguments");
4193 qemu_add_opts(&qemu_object_opts
);
4194 qemu_add_opts(&qemu_source_opts
);
4195 qemu_add_opts(&qemu_trace_opts
);
4197 while ((c
= getopt_long(argc
, argv
, "+hVT:", long_options
, NULL
)) != -1) {
4203 printf(QEMU_IMG_VERSION
);
4207 trace_file
= trace_opt_parse(optarg
);
4212 cmdname
= argv
[optind
];
4214 /* reset getopt_long scanning */
4222 if (!trace_init_backends()) {
4225 trace_init_file(trace_file
);
4226 qemu_set_log(LOG_TRACE
);
4228 /* find the command */
4229 for (cmd
= img_cmds
; cmd
->name
!= NULL
; cmd
++) {
4230 if (!strcmp(cmdname
, cmd
->name
)) {
4231 return cmd
->handler(argc
, argv
);
4236 error_exit("Command not found: %s", cmdname
);