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