]> git.ipfire.org Git - thirdparty/qemu.git/blame - qemu-img.c
qemu-img convert: Support multiple -o options
[thirdparty/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 */
c054b3fd
BC
24#include "qapi-visit.h"
25#include "qapi/qmp-output-visitor.h"
7b1b5d19 26#include "qapi/qmp/qjson.h"
faf07963 27#include "qemu-common.h"
1de7afc9
PB
28#include "qemu/option.h"
29#include "qemu/error-report.h"
30#include "qemu/osdep.h"
9c17d615 31#include "sysemu/sysemu.h"
737e150e 32#include "block/block_int.h"
f364ec65 33#include "block/qapi.h"
c054b3fd 34#include <getopt.h>
9230eaf6 35#include <stdio.h>
f382d43a 36#include <stdarg.h>
ea2384d3 37
e8445331
FB
38#ifdef _WIN32
39#include <windows.h>
40#endif
41
c227f099 42typedef struct img_cmd_t {
153859be
SB
43 const char *name;
44 int (*handler)(int argc, char **argv);
c227f099 45} img_cmd_t;
153859be 46
8599ea4c
FS
47enum {
48 OPTION_OUTPUT = 256,
49 OPTION_BACKING_CHAIN = 257,
50};
51
52typedef enum OutputFormat {
53 OFORMAT_JSON,
54 OFORMAT_HUMAN,
55} OutputFormat;
56
137519ce 57/* Default to cache=writeback as data integrity is not important for qemu-tcg. */
adfe078e 58#define BDRV_O_FLAGS BDRV_O_CACHE_WB
661a0f71 59#define BDRV_DEFAULT_CACHE "writeback"
137519ce 60
ea2384d3
FB
61static void format_print(void *opaque, const char *name)
62{
63 printf(" %s", name);
64}
65
d2c639d6 66/* Please keep in synch with qemu-img.texi */
3f379ab1 67static void help(void)
ea2384d3 68{
e00291c0
PB
69 const char *help_msg =
70 "qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
3f020d70 71 "usage: qemu-img command [command options]\n"
72 "QEMU disk image utility\n"
73 "\n"
74 "Command syntax:\n"
153859be
SB
75#define DEF(option, callback, arg_string) \
76 " " arg_string "\n"
77#include "qemu-img-cmds.h"
78#undef DEF
79#undef GEN_DOCS
3f020d70 80 "\n"
81 "Command parameters:\n"
82 " 'filename' is a disk image filename\n"
83 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
661a0f71 84 " 'cache' is the cache mode used to write the output disk image, the valid\n"
80ccf93b
LY
85 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
86 " 'directsync' and 'unsafe' (default for convert)\n"
3f020d70 87 " 'size' is the disk image size in bytes. Optional suffixes\n"
5e00984a
KW
88 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
89 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
90 " supported. 'b' is ignored.\n"
3f020d70 91 " 'output_filename' is the destination disk image filename\n"
92 " 'output_fmt' is the destination format\n"
93 " 'options' is a comma separated list of format specific options in a\n"
94 " name=value format. Use -o ? for an overview of the options supported by the\n"
95 " used format\n"
ef80654d
WX
96 " 'snapshot_param' is param used for internal snapshot, format\n"
97 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
98 " '[ID_OR_NAME]'\n"
99 " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n"
100 " instead\n"
3f020d70 101 " '-c' indicates that target image must be compressed (qcow format only)\n"
102 " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
103 " match exactly. The image doesn't need a working backing file before\n"
104 " rebasing in this case (useful for renaming the backing file)\n"
105 " '-h' with or without a command shows this help and lists the supported formats\n"
6b837bc4 106 " '-p' show progress of command (only certain commands)\n"
f382d43a 107 " '-q' use Quiet mode - do not print any output (except errors)\n"
11b6699a
PL
108 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
109 " contain only zeros for qemu-img to create a sparse image during\n"
110 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
111 " unallocated or zero sectors, and the destination image will always be\n"
112 " fully allocated\n"
c054b3fd 113 " '--output' takes the format in which the output must be done (human or json)\n"
b2e10493
AD
114 " '-n' skips the target volume creation (useful if the volume is created\n"
115 " prior to running qemu-img)\n"
3f020d70 116 "\n"
4534ff54
KW
117 "Parameters to check subcommand:\n"
118 " '-r' tries to repair any inconsistencies that are found during the check.\n"
119 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
120 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
0546b8c2 121 " hiding corruption that has already occurred.\n"
4534ff54 122 "\n"
3f020d70 123 "Parameters to snapshot subcommand:\n"
124 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
125 " '-a' applies a snapshot (revert disk to saved state)\n"
126 " '-c' creates a snapshot\n"
127 " '-d' deletes a snapshot\n"
d14ed18c
MR
128 " '-l' lists all snapshots in the given image\n"
129 "\n"
130 "Parameters to compare subcommand:\n"
131 " '-f' first image format\n"
132 " '-F' second image format\n"
133 " '-s' run in Strict mode - fail on different image size or sector allocation\n";
e00291c0
PB
134
135 printf("%s\nSupported formats:", help_msg);
ea2384d3
FB
136 bdrv_iterate_format(format_print, NULL);
137 printf("\n");
138 exit(1);
139}
140
7c30f657 141static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
f382d43a
MR
142{
143 int ret = 0;
144 if (!quiet) {
145 va_list args;
146 va_start(args, fmt);
147 ret = vprintf(fmt, args);
148 va_end(args);
149 }
150 return ret;
151}
152
ea2384d3
FB
153#if defined(WIN32)
154/* XXX: put correct support for win32 */
155static int read_password(char *buf, int buf_size)
156{
157 int c, i;
158 printf("Password: ");
159 fflush(stdout);
160 i = 0;
161 for(;;) {
162 c = getchar();
163 if (c == '\n')
164 break;
165 if (i < (buf_size - 1))
166 buf[i++] = c;
167 }
168 buf[i] = '\0';
169 return 0;
170}
171
172#else
173
174#include <termios.h>
175
176static struct termios oldtty;
177
178static void term_exit(void)
179{
180 tcsetattr (0, TCSANOW, &oldtty);
181}
182
183static void term_init(void)
184{
185 struct termios tty;
186
187 tcgetattr (0, &tty);
188 oldtty = tty;
189
190 tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP
191 |INLCR|IGNCR|ICRNL|IXON);
192 tty.c_oflag |= OPOST;
193 tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN);
194 tty.c_cflag &= ~(CSIZE|PARENB);
195 tty.c_cflag |= CS8;
196 tty.c_cc[VMIN] = 1;
197 tty.c_cc[VTIME] = 0;
3b46e624 198
ea2384d3
FB
199 tcsetattr (0, TCSANOW, &tty);
200
201 atexit(term_exit);
202}
203
3f379ab1 204static int read_password(char *buf, int buf_size)
ea2384d3
FB
205{
206 uint8_t ch;
207 int i, ret;
208
209 printf("password: ");
210 fflush(stdout);
211 term_init();
212 i = 0;
213 for(;;) {
214 ret = read(0, &ch, 1);
215 if (ret == -1) {
216 if (errno == EAGAIN || errno == EINTR) {
217 continue;
218 } else {
219 ret = -1;
220 break;
221 }
222 } else if (ret == 0) {
223 ret = -1;
224 break;
225 } else {
226 if (ch == '\r') {
227 ret = 0;
228 break;
229 }
230 if (i < (buf_size - 1))
231 buf[i++] = ch;
232 }
233 }
234 term_exit();
235 buf[i] = '\0';
236 printf("\n");
237 return ret;
238}
239#endif
240
4ac8aacd
JS
241static int print_block_option_help(const char *filename, const char *fmt)
242{
243 BlockDriver *drv, *proto_drv;
244 QEMUOptionParameter *create_options = NULL;
245
246 /* Find driver and parse its options */
247 drv = bdrv_find_format(fmt);
248 if (!drv) {
15654a6d 249 error_report("Unknown file format '%s'", fmt);
4ac8aacd
JS
250 return 1;
251 }
252
98289620 253 proto_drv = bdrv_find_protocol(filename, true);
4ac8aacd 254 if (!proto_drv) {
15654a6d 255 error_report("Unknown protocol '%s'", filename);
4ac8aacd
JS
256 return 1;
257 }
258
259 create_options = append_option_parameters(create_options,
260 drv->create_options);
261 create_options = append_option_parameters(create_options,
262 proto_drv->create_options);
263 print_option_help(create_options);
264 free_option_parameters(create_options);
265 return 0;
266}
267
75c23805 268static BlockDriverState *bdrv_new_open(const char *filename,
9bc378c1 269 const char *fmt,
f0536bb8 270 int flags,
f382d43a
MR
271 bool require_io,
272 bool quiet)
75c23805
FB
273{
274 BlockDriverState *bs;
275 BlockDriver *drv;
276 char password[256];
34b5d2c6 277 Error *local_err = NULL;
b9eaf9ec 278 int ret;
75c23805 279
b9eaf9ec 280 bs = bdrv_new("image");
ad717139 281
75c23805
FB
282 if (fmt) {
283 drv = bdrv_find_format(fmt);
c2abccec 284 if (!drv) {
15654a6d 285 error_report("Unknown file format '%s'", fmt);
c2abccec
MK
286 goto fail;
287 }
75c23805
FB
288 } else {
289 drv = NULL;
290 }
b9eaf9ec 291
ddf5636d 292 ret = bdrv_open(&bs, filename, NULL, NULL, flags, drv, &local_err);
b9eaf9ec 293 if (ret < 0) {
34b5d2c6
HR
294 error_report("Could not open '%s': %s", filename,
295 error_get_pretty(local_err));
296 error_free(local_err);
c2abccec 297 goto fail;
75c23805 298 }
b9eaf9ec 299
f0536bb8 300 if (bdrv_is_encrypted(bs) && require_io) {
f382d43a 301 qprintf(quiet, "Disk image '%s' is encrypted.\n", filename);
c2abccec 302 if (read_password(password, sizeof(password)) < 0) {
15654a6d 303 error_report("No password given");
c2abccec
MK
304 goto fail;
305 }
306 if (bdrv_set_key(bs, password) < 0) {
15654a6d 307 error_report("invalid password");
c2abccec
MK
308 goto fail;
309 }
75c23805
FB
310 }
311 return bs;
c2abccec 312fail:
f67503e5 313 bdrv_unref(bs);
c2abccec 314 return NULL;
75c23805
FB
315}
316
c2abccec 317static int add_old_style_options(const char *fmt, QEMUOptionParameter *list,
eec77d9e
JS
318 const char *base_filename,
319 const char *base_fmt)
efa84d43 320{
efa84d43
KW
321 if (base_filename) {
322 if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) {
15654a6d
JS
323 error_report("Backing file not supported for file format '%s'",
324 fmt);
c2abccec 325 return -1;
efa84d43
KW
326 }
327 }
328 if (base_fmt) {
329 if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) {
15654a6d
JS
330 error_report("Backing file format not supported for file "
331 "format '%s'", fmt);
c2abccec 332 return -1;
efa84d43
KW
333 }
334 }
c2abccec 335 return 0;
efa84d43
KW
336}
337
ea2384d3
FB
338static int img_create(int argc, char **argv)
339{
a9300911 340 int c;
1da7cfbd 341 uint64_t img_size = -1;
ea2384d3 342 const char *fmt = "raw";
9230eaf6 343 const char *base_fmt = NULL;
ea2384d3
FB
344 const char *filename;
345 const char *base_filename = NULL;
9ea2ea71 346 char *options = NULL;
9b37525a 347 Error *local_err = NULL;
f382d43a 348 bool quiet = false;
3b46e624 349
ea2384d3 350 for(;;) {
f382d43a 351 c = getopt(argc, argv, "F:b:f:he6o:q");
b8fb60da 352 if (c == -1) {
ea2384d3 353 break;
b8fb60da 354 }
ea2384d3 355 switch(c) {
ef87394c 356 case '?':
ea2384d3
FB
357 case 'h':
358 help();
359 break;
9230eaf6
AL
360 case 'F':
361 base_fmt = optarg;
362 break;
ea2384d3
FB
363 case 'b':
364 base_filename = optarg;
365 break;
366 case 'f':
367 fmt = optarg;
368 break;
369 case 'e':
9d42e15d 370 error_report("option -e is deprecated, please use \'-o "
eec77d9e 371 "encryption\' instead!");
77386bf6 372 goto fail;
d8871c5a 373 case '6':
9d42e15d 374 error_report("option -6 is deprecated, please use \'-o "
eec77d9e 375 "compat6\' instead!");
77386bf6 376 goto fail;
9ea2ea71 377 case 'o':
77386bf6
KW
378 if (!is_valid_option_list(optarg)) {
379 error_report("Invalid option list: %s", optarg);
380 goto fail;
381 }
382 if (!options) {
383 options = g_strdup(optarg);
384 } else {
385 char *old_options = options;
386 options = g_strdup_printf("%s,%s", options, optarg);
387 g_free(old_options);
388 }
9ea2ea71 389 break;
f382d43a
MR
390 case 'q':
391 quiet = true;
392 break;
ea2384d3
FB
393 }
394 }
9230eaf6 395
b50cbabc 396 /* Get the filename */
b8fb60da 397 if (optind >= argc) {
b50cbabc 398 help();
b8fb60da 399 }
b50cbabc
MK
400 filename = argv[optind++];
401
1da7cfbd
JS
402 /* Get image size, if specified */
403 if (optind < argc) {
70b4f4bb 404 int64_t sval;
e36b3695
MA
405 char *end;
406 sval = strtosz_suffix(argv[optind++], &end, STRTOSZ_DEFSUFFIX_B);
407 if (sval < 0 || *end) {
79443397
LG
408 if (sval == -ERANGE) {
409 error_report("Image size must be less than 8 EiB!");
410 } else {
411 error_report("Invalid image size specified! You may use k, M, "
5e00984a
KW
412 "G, T, P or E suffixes for ");
413 error_report("kilobytes, megabytes, gigabytes, terabytes, "
414 "petabytes and exabytes.");
79443397 415 }
77386bf6 416 goto fail;
1da7cfbd
JS
417 }
418 img_size = (uint64_t)sval;
419 }
fc11eb26
KW
420 if (optind != argc) {
421 help();
422 }
1da7cfbd 423
77386bf6
KW
424 if (options && has_help_option(options)) {
425 g_free(options);
a9300911 426 return print_block_option_help(filename, fmt);
4ac8aacd
JS
427 }
428
9b37525a 429 bdrv_img_create(filename, fmt, base_filename, base_fmt,
f382d43a 430 options, img_size, BDRV_O_FLAGS, &local_err, quiet);
84d18f06 431 if (local_err) {
b70d8c23 432 error_report("%s: %s", filename, error_get_pretty(local_err));
9b37525a 433 error_free(local_err);
77386bf6 434 goto fail;
c2abccec 435 }
a9300911 436
77386bf6 437 g_free(options);
ea2384d3 438 return 0;
77386bf6
KW
439
440fail:
441 g_free(options);
442 return 1;
ea2384d3
FB
443}
444
f382d43a 445static void dump_json_image_check(ImageCheck *check, bool quiet)
8599ea4c
FS
446{
447 Error *errp = NULL;
448 QString *str;
449 QmpOutputVisitor *ov = qmp_output_visitor_new();
450 QObject *obj;
451 visit_type_ImageCheck(qmp_output_get_visitor(ov),
452 &check, NULL, &errp);
453 obj = qmp_output_get_qobject(ov);
454 str = qobject_to_json_pretty(obj);
455 assert(str != NULL);
f382d43a 456 qprintf(quiet, "%s\n", qstring_get_str(str));
8599ea4c
FS
457 qobject_decref(obj);
458 qmp_output_visitor_cleanup(ov);
459 QDECREF(str);
460}
461
f382d43a 462static void dump_human_image_check(ImageCheck *check, bool quiet)
8599ea4c
FS
463{
464 if (!(check->corruptions || check->leaks || check->check_errors)) {
f382d43a 465 qprintf(quiet, "No errors were found on the image.\n");
8599ea4c
FS
466 } else {
467 if (check->corruptions) {
f382d43a
MR
468 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
469 "Data may be corrupted, or further writes to the image "
470 "may corrupt it.\n",
471 check->corruptions);
8599ea4c
FS
472 }
473
474 if (check->leaks) {
f382d43a
MR
475 qprintf(quiet,
476 "\n%" PRId64 " leaked clusters were found on the image.\n"
477 "This means waste of disk space, but no harm to data.\n",
478 check->leaks);
8599ea4c
FS
479 }
480
481 if (check->check_errors) {
f382d43a
MR
482 qprintf(quiet,
483 "\n%" PRId64
484 " internal errors have occurred during the check.\n",
485 check->check_errors);
8599ea4c
FS
486 }
487 }
488
489 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
f382d43a
MR
490 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
491 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
492 check->allocated_clusters, check->total_clusters,
493 check->allocated_clusters * 100.0 / check->total_clusters,
494 check->fragmented_clusters * 100.0 / check->allocated_clusters,
495 check->compressed_clusters * 100.0 /
496 check->allocated_clusters);
8599ea4c
FS
497 }
498
499 if (check->image_end_offset) {
f382d43a
MR
500 qprintf(quiet,
501 "Image end offset: %" PRId64 "\n", check->image_end_offset);
8599ea4c
FS
502 }
503}
504
505static int collect_image_check(BlockDriverState *bs,
506 ImageCheck *check,
507 const char *filename,
508 const char *fmt,
509 int fix)
510{
511 int ret;
512 BdrvCheckResult result;
513
514 ret = bdrv_check(bs, &result, fix);
515 if (ret < 0) {
516 return ret;
517 }
518
519 check->filename = g_strdup(filename);
520 check->format = g_strdup(bdrv_get_format_name(bs));
521 check->check_errors = result.check_errors;
522 check->corruptions = result.corruptions;
523 check->has_corruptions = result.corruptions != 0;
524 check->leaks = result.leaks;
525 check->has_leaks = result.leaks != 0;
526 check->corruptions_fixed = result.corruptions_fixed;
527 check->has_corruptions_fixed = result.corruptions != 0;
528 check->leaks_fixed = result.leaks_fixed;
529 check->has_leaks_fixed = result.leaks != 0;
530 check->image_end_offset = result.image_end_offset;
531 check->has_image_end_offset = result.image_end_offset != 0;
532 check->total_clusters = result.bfi.total_clusters;
533 check->has_total_clusters = result.bfi.total_clusters != 0;
534 check->allocated_clusters = result.bfi.allocated_clusters;
535 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
536 check->fragmented_clusters = result.bfi.fragmented_clusters;
537 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
e6439d78
SH
538 check->compressed_clusters = result.bfi.compressed_clusters;
539 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
8599ea4c
FS
540
541 return 0;
542}
543
e076f338
KW
544/*
545 * Checks an image for consistency. Exit codes:
546 *
547 * 0 - Check completed, image is good
548 * 1 - Check not completed because of internal errors
549 * 2 - Check completed, image is corrupted
550 * 3 - Check completed, image has leaked clusters, but is good otherwise
551 */
1585969c
AL
552static int img_check(int argc, char **argv)
553{
554 int c, ret;
8599ea4c
FS
555 OutputFormat output_format = OFORMAT_HUMAN;
556 const char *filename, *fmt, *output;
1585969c 557 BlockDriverState *bs;
4534ff54 558 int fix = 0;
058f8f16 559 int flags = BDRV_O_FLAGS | BDRV_O_CHECK;
8599ea4c 560 ImageCheck *check;
f382d43a 561 bool quiet = false;
1585969c
AL
562
563 fmt = NULL;
8599ea4c 564 output = NULL;
1585969c 565 for(;;) {
8599ea4c
FS
566 int option_index = 0;
567 static const struct option long_options[] = {
568 {"help", no_argument, 0, 'h'},
569 {"format", required_argument, 0, 'f'},
570 {"repair", no_argument, 0, 'r'},
571 {"output", required_argument, 0, OPTION_OUTPUT},
572 {0, 0, 0, 0}
573 };
f382d43a 574 c = getopt_long(argc, argv, "f:hr:q",
8599ea4c 575 long_options, &option_index);
b8fb60da 576 if (c == -1) {
1585969c 577 break;
b8fb60da 578 }
1585969c 579 switch(c) {
ef87394c 580 case '?':
1585969c
AL
581 case 'h':
582 help();
583 break;
584 case 'f':
585 fmt = optarg;
586 break;
4534ff54
KW
587 case 'r':
588 flags |= BDRV_O_RDWR;
589
590 if (!strcmp(optarg, "leaks")) {
591 fix = BDRV_FIX_LEAKS;
592 } else if (!strcmp(optarg, "all")) {
593 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
594 } else {
595 help();
596 }
597 break;
8599ea4c
FS
598 case OPTION_OUTPUT:
599 output = optarg;
600 break;
f382d43a
MR
601 case 'q':
602 quiet = true;
603 break;
1585969c
AL
604 }
605 }
fc11eb26 606 if (optind != argc - 1) {
1585969c 607 help();
b8fb60da 608 }
1585969c
AL
609 filename = argv[optind++];
610
8599ea4c
FS
611 if (output && !strcmp(output, "json")) {
612 output_format = OFORMAT_JSON;
613 } else if (output && !strcmp(output, "human")) {
614 output_format = OFORMAT_HUMAN;
615 } else if (output) {
616 error_report("--output must be used with human or json as argument.");
617 return 1;
618 }
619
f382d43a 620 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
c2abccec
MK
621 if (!bs) {
622 return 1;
623 }
8599ea4c
FS
624
625 check = g_new0(ImageCheck, 1);
626 ret = collect_image_check(bs, check, filename, fmt, fix);
e076f338
KW
627
628 if (ret == -ENOTSUP) {
8599ea4c
FS
629 if (output_format == OFORMAT_HUMAN) {
630 error_report("This image format does not support checks");
631 }
fefddf95 632 ret = 63;
8599ea4c 633 goto fail;
e076f338
KW
634 }
635
8599ea4c
FS
636 if (check->corruptions_fixed || check->leaks_fixed) {
637 int corruptions_fixed, leaks_fixed;
ccf34716 638
8599ea4c
FS
639 leaks_fixed = check->leaks_fixed;
640 corruptions_fixed = check->corruptions_fixed;
e076f338 641
8599ea4c 642 if (output_format == OFORMAT_HUMAN) {
f382d43a
MR
643 qprintf(quiet,
644 "The following inconsistencies were found and repaired:\n\n"
645 " %" PRId64 " leaked clusters\n"
646 " %" PRId64 " corruptions\n\n"
647 "Double checking the fixed image now...\n",
648 check->leaks_fixed,
649 check->corruptions_fixed);
e076f338
KW
650 }
651
8599ea4c 652 ret = collect_image_check(bs, check, filename, fmt, 0);
1585969c 653
8599ea4c
FS
654 check->leaks_fixed = leaks_fixed;
655 check->corruptions_fixed = corruptions_fixed;
f8111c24
DXW
656 }
657
8599ea4c
FS
658 switch (output_format) {
659 case OFORMAT_HUMAN:
f382d43a 660 dump_human_image_check(check, quiet);
8599ea4c
FS
661 break;
662 case OFORMAT_JSON:
f382d43a 663 dump_json_image_check(check, quiet);
8599ea4c 664 break;
c6bb9ad1
FS
665 }
666
8599ea4c
FS
667 if (ret || check->check_errors) {
668 ret = 1;
669 goto fail;
c2abccec 670 }
e076f338 671
8599ea4c
FS
672 if (check->corruptions) {
673 ret = 2;
674 } else if (check->leaks) {
675 ret = 3;
e076f338 676 } else {
8599ea4c 677 ret = 0;
e076f338 678 }
8599ea4c
FS
679
680fail:
681 qapi_free_ImageCheck(check);
4f6fd349 682 bdrv_unref(bs);
8599ea4c
FS
683
684 return ret;
1585969c
AL
685}
686
ea2384d3
FB
687static int img_commit(int argc, char **argv)
688{
661a0f71
FS
689 int c, ret, flags;
690 const char *filename, *fmt, *cache;
ea2384d3 691 BlockDriverState *bs;
f382d43a 692 bool quiet = false;
ea2384d3
FB
693
694 fmt = NULL;
661a0f71 695 cache = BDRV_DEFAULT_CACHE;
ea2384d3 696 for(;;) {
f382d43a 697 c = getopt(argc, argv, "f:ht:q");
b8fb60da 698 if (c == -1) {
ea2384d3 699 break;
b8fb60da 700 }
ea2384d3 701 switch(c) {
ef87394c 702 case '?':
ea2384d3
FB
703 case 'h':
704 help();
705 break;
706 case 'f':
707 fmt = optarg;
708 break;
661a0f71
FS
709 case 't':
710 cache = optarg;
711 break;
f382d43a
MR
712 case 'q':
713 quiet = true;
714 break;
ea2384d3
FB
715 }
716 }
fc11eb26 717 if (optind != argc - 1) {
ea2384d3 718 help();
b8fb60da 719 }
ea2384d3
FB
720 filename = argv[optind++];
721
661a0f71 722 flags = BDRV_O_RDWR;
c3993cdc 723 ret = bdrv_parse_cache_flags(cache, &flags);
661a0f71
FS
724 if (ret < 0) {
725 error_report("Invalid cache option: %s", cache);
726 return -1;
727 }
728
f382d43a 729 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
c2abccec
MK
730 if (!bs) {
731 return 1;
732 }
ea2384d3
FB
733 ret = bdrv_commit(bs);
734 switch(ret) {
735 case 0:
f382d43a 736 qprintf(quiet, "Image committed.\n");
ea2384d3
FB
737 break;
738 case -ENOENT:
15654a6d 739 error_report("No disk inserted");
ea2384d3
FB
740 break;
741 case -EACCES:
15654a6d 742 error_report("Image is read-only");
ea2384d3
FB
743 break;
744 case -ENOTSUP:
15654a6d 745 error_report("Image is already committed");
ea2384d3
FB
746 break;
747 default:
15654a6d 748 error_report("Error while committing image");
ea2384d3
FB
749 break;
750 }
751
4f6fd349 752 bdrv_unref(bs);
c2abccec
MK
753 if (ret) {
754 return 1;
755 }
ea2384d3
FB
756 return 0;
757}
758
f58c7b35
TS
759/*
760 * Returns true iff the first sector pointed to by 'buf' contains at least
761 * a non-NUL byte.
762 *
763 * 'pnum' is set to the number of sectors (including and immediately following
764 * the first one) that are known to be in the same allocated/unallocated state.
765 */
ea2384d3
FB
766static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
767{
1a6d39fd
SH
768 bool is_zero;
769 int i;
ea2384d3
FB
770
771 if (n <= 0) {
772 *pnum = 0;
773 return 0;
774 }
1a6d39fd 775 is_zero = buffer_is_zero(buf, 512);
ea2384d3
FB
776 for(i = 1; i < n; i++) {
777 buf += 512;
1a6d39fd 778 if (is_zero != buffer_is_zero(buf, 512)) {
ea2384d3 779 break;
1a6d39fd 780 }
ea2384d3
FB
781 }
782 *pnum = i;
1a6d39fd 783 return !is_zero;
ea2384d3
FB
784}
785
a22f123c
KW
786/*
787 * Like is_allocated_sectors, but if the buffer starts with a used sector,
788 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
789 * breaking up write requests for only small sparse areas.
790 */
791static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
792 int min)
793{
794 int ret;
795 int num_checked, num_used;
796
797 if (n < min) {
798 min = n;
799 }
800
801 ret = is_allocated_sectors(buf, n, pnum);
802 if (!ret) {
803 return ret;
804 }
805
806 num_used = *pnum;
807 buf += BDRV_SECTOR_SIZE * *pnum;
808 n -= *pnum;
809 num_checked = num_used;
810
811 while (n > 0) {
812 ret = is_allocated_sectors(buf, n, pnum);
813
814 buf += BDRV_SECTOR_SIZE * *pnum;
815 n -= *pnum;
816 num_checked += *pnum;
817 if (ret) {
818 num_used = num_checked;
819 } else if (*pnum >= min) {
820 break;
821 }
822 }
823
824 *pnum = num_used;
825 return 1;
826}
827
3e85c6fd
KW
828/*
829 * Compares two buffers sector by sector. Returns 0 if the first sector of both
830 * buffers matches, non-zero otherwise.
831 *
832 * pnum is set to the number of sectors (including and immediately following
833 * the first one) that are known to have the same comparison result
834 */
835static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
836 int *pnum)
837{
838 int res, i;
839
840 if (n <= 0) {
841 *pnum = 0;
842 return 0;
843 }
844
845 res = !!memcmp(buf1, buf2, 512);
846 for(i = 1; i < n; i++) {
847 buf1 += 512;
848 buf2 += 512;
849
850 if (!!memcmp(buf1, buf2, 512) != res) {
851 break;
852 }
853 }
854
855 *pnum = i;
856 return res;
857}
858
80ee15a6 859#define IO_BUF_SIZE (2 * 1024 * 1024)
ea2384d3 860
d14ed18c
MR
861static int64_t sectors_to_bytes(int64_t sectors)
862{
863 return sectors << BDRV_SECTOR_BITS;
864}
865
866static int64_t sectors_to_process(int64_t total, int64_t from)
867{
868 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
869}
870
871/*
872 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
873 *
874 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
875 * data and negative value on error.
876 *
877 * @param bs: Driver used for accessing file
878 * @param sect_num: Number of first sector to check
879 * @param sect_count: Number of sectors to check
880 * @param filename: Name of disk file we are checking (logging purpose)
881 * @param buffer: Allocated buffer for storing read data
882 * @param quiet: Flag for quiet mode
883 */
884static int check_empty_sectors(BlockDriverState *bs, int64_t sect_num,
885 int sect_count, const char *filename,
886 uint8_t *buffer, bool quiet)
887{
888 int pnum, ret = 0;
889 ret = bdrv_read(bs, sect_num, buffer, sect_count);
890 if (ret < 0) {
891 error_report("Error while reading offset %" PRId64 " of %s: %s",
892 sectors_to_bytes(sect_num), filename, strerror(-ret));
893 return ret;
894 }
895 ret = is_allocated_sectors(buffer, sect_count, &pnum);
896 if (ret || pnum != sect_count) {
897 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
898 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
899 return 1;
900 }
901
902 return 0;
903}
904
905/*
906 * Compares two images. Exit codes:
907 *
908 * 0 - Images are identical
909 * 1 - Images differ
910 * >1 - Error occurred
911 */
912static int img_compare(int argc, char **argv)
913{
914 const char *fmt1 = NULL, *fmt2 = NULL, *filename1, *filename2;
915 BlockDriverState *bs1, *bs2;
916 int64_t total_sectors1, total_sectors2;
917 uint8_t *buf1 = NULL, *buf2 = NULL;
918 int pnum1, pnum2;
919 int allocated1, allocated2;
920 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
921 bool progress = false, quiet = false, strict = false;
922 int64_t total_sectors;
923 int64_t sector_num = 0;
924 int64_t nb_sectors;
925 int c, pnum;
926 uint64_t bs_sectors;
927 uint64_t progress_base;
928
929 for (;;) {
930 c = getopt(argc, argv, "hpf:F:sq");
931 if (c == -1) {
932 break;
933 }
934 switch (c) {
935 case '?':
936 case 'h':
937 help();
938 break;
939 case 'f':
940 fmt1 = optarg;
941 break;
942 case 'F':
943 fmt2 = optarg;
944 break;
945 case 'p':
946 progress = true;
947 break;
948 case 'q':
949 quiet = true;
950 break;
951 case 's':
952 strict = true;
953 break;
954 }
955 }
956
957 /* Progress is not shown in Quiet mode */
958 if (quiet) {
959 progress = false;
960 }
961
962
fc11eb26 963 if (optind != argc - 2) {
d14ed18c
MR
964 help();
965 }
966 filename1 = argv[optind++];
967 filename2 = argv[optind++];
968
969 /* Initialize before goto out */
970 qemu_progress_init(progress, 2.0);
971
972 bs1 = bdrv_new_open(filename1, fmt1, BDRV_O_FLAGS, true, quiet);
973 if (!bs1) {
974 error_report("Can't open file %s", filename1);
975 ret = 2;
976 goto out3;
977 }
978
979 bs2 = bdrv_new_open(filename2, fmt2, BDRV_O_FLAGS, true, quiet);
980 if (!bs2) {
981 error_report("Can't open file %s", filename2);
982 ret = 2;
983 goto out2;
984 }
985
986 buf1 = qemu_blockalign(bs1, IO_BUF_SIZE);
987 buf2 = qemu_blockalign(bs2, IO_BUF_SIZE);
988 bdrv_get_geometry(bs1, &bs_sectors);
989 total_sectors1 = bs_sectors;
990 bdrv_get_geometry(bs2, &bs_sectors);
991 total_sectors2 = bs_sectors;
992 total_sectors = MIN(total_sectors1, total_sectors2);
993 progress_base = MAX(total_sectors1, total_sectors2);
994
995 qemu_progress_print(0, 100);
996
997 if (strict && total_sectors1 != total_sectors2) {
998 ret = 1;
999 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1000 goto out;
1001 }
1002
1003 for (;;) {
1004 nb_sectors = sectors_to_process(total_sectors, sector_num);
1005 if (nb_sectors <= 0) {
1006 break;
1007 }
1008 allocated1 = bdrv_is_allocated_above(bs1, NULL, sector_num, nb_sectors,
1009 &pnum1);
1010 if (allocated1 < 0) {
1011 ret = 3;
1012 error_report("Sector allocation test failed for %s", filename1);
1013 goto out;
1014 }
1015
1016 allocated2 = bdrv_is_allocated_above(bs2, NULL, sector_num, nb_sectors,
1017 &pnum2);
1018 if (allocated2 < 0) {
1019 ret = 3;
1020 error_report("Sector allocation test failed for %s", filename2);
1021 goto out;
1022 }
1023 nb_sectors = MIN(pnum1, pnum2);
1024
1025 if (allocated1 == allocated2) {
1026 if (allocated1) {
1027 ret = bdrv_read(bs1, sector_num, buf1, nb_sectors);
1028 if (ret < 0) {
1029 error_report("Error while reading offset %" PRId64 " of %s:"
1030 " %s", sectors_to_bytes(sector_num), filename1,
1031 strerror(-ret));
1032 ret = 4;
1033 goto out;
1034 }
1035 ret = bdrv_read(bs2, sector_num, buf2, nb_sectors);
1036 if (ret < 0) {
1037 error_report("Error while reading offset %" PRId64
1038 " of %s: %s", sectors_to_bytes(sector_num),
1039 filename2, strerror(-ret));
1040 ret = 4;
1041 goto out;
1042 }
1043 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1044 if (ret || pnum != nb_sectors) {
d14ed18c
MR
1045 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1046 sectors_to_bytes(
1047 ret ? sector_num : sector_num + pnum));
36452f12 1048 ret = 1;
d14ed18c
MR
1049 goto out;
1050 }
1051 }
1052 } else {
1053 if (strict) {
1054 ret = 1;
1055 qprintf(quiet, "Strict mode: Offset %" PRId64
1056 " allocation mismatch!\n",
1057 sectors_to_bytes(sector_num));
1058 goto out;
1059 }
1060
1061 if (allocated1) {
1062 ret = check_empty_sectors(bs1, sector_num, nb_sectors,
1063 filename1, buf1, quiet);
1064 } else {
1065 ret = check_empty_sectors(bs2, sector_num, nb_sectors,
1066 filename2, buf1, quiet);
1067 }
1068 if (ret) {
1069 if (ret < 0) {
d14ed18c
MR
1070 error_report("Error while reading offset %" PRId64 ": %s",
1071 sectors_to_bytes(sector_num), strerror(-ret));
36452f12 1072 ret = 4;
d14ed18c
MR
1073 }
1074 goto out;
1075 }
1076 }
1077 sector_num += nb_sectors;
1078 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1079 }
1080
1081 if (total_sectors1 != total_sectors2) {
1082 BlockDriverState *bs_over;
1083 int64_t total_sectors_over;
1084 const char *filename_over;
1085
1086 qprintf(quiet, "Warning: Image size mismatch!\n");
1087 if (total_sectors1 > total_sectors2) {
1088 total_sectors_over = total_sectors1;
1089 bs_over = bs1;
1090 filename_over = filename1;
1091 } else {
1092 total_sectors_over = total_sectors2;
1093 bs_over = bs2;
1094 filename_over = filename2;
1095 }
1096
1097 for (;;) {
1098 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1099 if (nb_sectors <= 0) {
1100 break;
1101 }
1102 ret = bdrv_is_allocated_above(bs_over, NULL, sector_num,
1103 nb_sectors, &pnum);
1104 if (ret < 0) {
1105 ret = 3;
1106 error_report("Sector allocation test failed for %s",
1107 filename_over);
1108 goto out;
1109
1110 }
1111 nb_sectors = pnum;
1112 if (ret) {
1113 ret = check_empty_sectors(bs_over, sector_num, nb_sectors,
1114 filename_over, buf1, quiet);
1115 if (ret) {
1116 if (ret < 0) {
d14ed18c
MR
1117 error_report("Error while reading offset %" PRId64
1118 " of %s: %s", sectors_to_bytes(sector_num),
1119 filename_over, strerror(-ret));
36452f12 1120 ret = 4;
d14ed18c
MR
1121 }
1122 goto out;
1123 }
1124 }
1125 sector_num += nb_sectors;
1126 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1127 }
1128 }
1129
1130 qprintf(quiet, "Images are identical.\n");
1131 ret = 0;
1132
1133out:
4f6fd349 1134 bdrv_unref(bs2);
d14ed18c
MR
1135 qemu_vfree(buf1);
1136 qemu_vfree(buf2);
1137out2:
4f6fd349 1138 bdrv_unref(bs1);
d14ed18c
MR
1139out3:
1140 qemu_progress_end();
1141 return ret;
1142}
1143
ea2384d3
FB
1144static int img_convert(int argc, char **argv)
1145{
24f833cd 1146 int c, n, n1, bs_n, bs_i, compress, cluster_sectors, skip_create;
13c28af8 1147 int64_t ret = 0;
661a0f71
FS
1148 int progress = 0, flags;
1149 const char *fmt, *out_fmt, *cache, *out_baseimg, *out_filename;
b50cbabc 1150 BlockDriver *drv, *proto_drv;
c2abccec 1151 BlockDriverState **bs = NULL, *out_bs = NULL;
802c3d4c 1152 int64_t total_sectors, nb_sectors, sector_num, bs_offset;
96b8f136 1153 uint64_t bs_sectors;
c2abccec 1154 uint8_t * buf = NULL;
f2521c90 1155 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
ea2384d3 1156 const uint8_t *buf1;
faea38e7 1157 BlockDriverInfo bdi;
b50cbabc 1158 QEMUOptionParameter *param = NULL, *create_options = NULL;
a18953fb 1159 QEMUOptionParameter *out_baseimg_param;
efa84d43 1160 char *options = NULL;
51ef6727 1161 const char *snapshot_name = NULL;
a22f123c 1162 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
f382d43a 1163 bool quiet = false;
cc84d90f 1164 Error *local_err = NULL;
ef80654d 1165 QemuOpts *sn_opts = NULL;
ea2384d3 1166
2dc8328b
KW
1167 /* Initialize before goto out */
1168 qemu_progress_init(progress, 1.0);
1169
ea2384d3
FB
1170 fmt = NULL;
1171 out_fmt = "raw";
661a0f71 1172 cache = "unsafe";
f58c7b35 1173 out_baseimg = NULL;
eec77d9e 1174 compress = 0;
b2e10493 1175 skip_create = 0;
ea2384d3 1176 for(;;) {
ef80654d 1177 c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qnl:");
b8fb60da 1178 if (c == -1) {
ea2384d3 1179 break;
b8fb60da 1180 }
ea2384d3 1181 switch(c) {
ef87394c 1182 case '?':
ea2384d3
FB
1183 case 'h':
1184 help();
1185 break;
1186 case 'f':
1187 fmt = optarg;
1188 break;
1189 case 'O':
1190 out_fmt = optarg;
1191 break;
f58c7b35
TS
1192 case 'B':
1193 out_baseimg = optarg;
1194 break;
ea2384d3 1195 case 'c':
eec77d9e 1196 compress = 1;
ea2384d3
FB
1197 break;
1198 case 'e':
9d42e15d 1199 error_report("option -e is deprecated, please use \'-o "
eec77d9e 1200 "encryption\' instead!");
2dc8328b
KW
1201 ret = -1;
1202 goto out;
ec36ba14 1203 case '6':
9d42e15d 1204 error_report("option -6 is deprecated, please use \'-o "
eec77d9e 1205 "compat6\' instead!");
2dc8328b
KW
1206 ret = -1;
1207 goto out;
efa84d43 1208 case 'o':
2dc8328b
KW
1209 if (!is_valid_option_list(optarg)) {
1210 error_report("Invalid option list: %s", optarg);
1211 ret = -1;
1212 goto out;
1213 }
1214 if (!options) {
1215 options = g_strdup(optarg);
1216 } else {
1217 char *old_options = options;
1218 options = g_strdup_printf("%s,%s", options, optarg);
1219 g_free(old_options);
1220 }
efa84d43 1221 break;
51ef6727 1222 case 's':
1223 snapshot_name = optarg;
1224 break;
ef80654d
WX
1225 case 'l':
1226 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
1227 sn_opts = qemu_opts_parse(&internal_snapshot_opts, optarg, 0);
1228 if (!sn_opts) {
1229 error_report("Failed in parsing snapshot param '%s'",
1230 optarg);
2dc8328b
KW
1231 ret = -1;
1232 goto out;
ef80654d
WX
1233 }
1234 } else {
1235 snapshot_name = optarg;
1236 }
1237 break;
a22f123c
KW
1238 case 'S':
1239 {
1240 int64_t sval;
e36b3695
MA
1241 char *end;
1242 sval = strtosz_suffix(optarg, &end, STRTOSZ_DEFSUFFIX_B);
1243 if (sval < 0 || *end) {
a22f123c 1244 error_report("Invalid minimum zero buffer size for sparse output specified");
2dc8328b
KW
1245 ret = -1;
1246 goto out;
a22f123c
KW
1247 }
1248
1249 min_sparse = sval / BDRV_SECTOR_SIZE;
1250 break;
1251 }
6b837bc4
JS
1252 case 'p':
1253 progress = 1;
1254 break;
661a0f71
FS
1255 case 't':
1256 cache = optarg;
1257 break;
f382d43a
MR
1258 case 'q':
1259 quiet = true;
1260 break;
b2e10493
AD
1261 case 'n':
1262 skip_create = 1;
1263 break;
ea2384d3
FB
1264 }
1265 }
3b46e624 1266
f382d43a
MR
1267 if (quiet) {
1268 progress = 0;
1269 }
1270
926c2d23 1271 bs_n = argc - optind - 1;
b8fb60da
JS
1272 if (bs_n < 1) {
1273 help();
1274 }
926c2d23
AZ
1275
1276 out_filename = argv[argc - 1];
f58c7b35 1277
2dc8328b 1278 if (options && has_help_option(options)) {
4ac8aacd
JS
1279 ret = print_block_option_help(out_filename, out_fmt);
1280 goto out;
1281 }
1282
c2abccec 1283 if (bs_n > 1 && out_baseimg) {
15654a6d
JS
1284 error_report("-B makes no sense when concatenating multiple input "
1285 "images");
31ca34b8
JS
1286 ret = -1;
1287 goto out;
c2abccec 1288 }
f8111c24 1289
6b837bc4
JS
1290 qemu_progress_print(0, 100);
1291
7267c094 1292 bs = g_malloc0(bs_n * sizeof(BlockDriverState *));
926c2d23
AZ
1293
1294 total_sectors = 0;
1295 for (bs_i = 0; bs_i < bs_n; bs_i++) {
f382d43a
MR
1296 bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS, true,
1297 quiet);
c2abccec 1298 if (!bs[bs_i]) {
15654a6d 1299 error_report("Could not open '%s'", argv[optind + bs_i]);
c2abccec
MK
1300 ret = -1;
1301 goto out;
1302 }
926c2d23
AZ
1303 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1304 total_sectors += bs_sectors;
1305 }
ea2384d3 1306
ef80654d
WX
1307 if (sn_opts) {
1308 ret = bdrv_snapshot_load_tmp(bs[0],
1309 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1310 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1311 &local_err);
1312 } else if (snapshot_name != NULL) {
51ef6727 1313 if (bs_n > 1) {
6daf194d 1314 error_report("No support for concatenating multiple snapshot");
51ef6727 1315 ret = -1;
1316 goto out;
1317 }
7b4c4781
WX
1318
1319 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
ef80654d 1320 }
84d18f06 1321 if (local_err) {
ef80654d
WX
1322 error_report("Failed to load snapshot: %s",
1323 error_get_pretty(local_err));
1324 error_free(local_err);
1325 ret = -1;
1326 goto out;
51ef6727 1327 }
1328
efa84d43 1329 /* Find driver and parse its options */
ea2384d3 1330 drv = bdrv_find_format(out_fmt);
c2abccec 1331 if (!drv) {
15654a6d 1332 error_report("Unknown file format '%s'", out_fmt);
c2abccec
MK
1333 ret = -1;
1334 goto out;
1335 }
efa84d43 1336
98289620 1337 proto_drv = bdrv_find_protocol(out_filename, true);
c2abccec 1338 if (!proto_drv) {
15654a6d 1339 error_report("Unknown protocol '%s'", out_filename);
c2abccec
MK
1340 ret = -1;
1341 goto out;
1342 }
b50cbabc
MK
1343
1344 create_options = append_option_parameters(create_options,
1345 drv->create_options);
1346 create_options = append_option_parameters(create_options,
1347 proto_drv->create_options);
db08adf5 1348
efa84d43 1349 if (options) {
b50cbabc 1350 param = parse_option_parameters(options, create_options, param);
efa84d43 1351 if (param == NULL) {
15654a6d 1352 error_report("Invalid options for file format '%s'.", out_fmt);
c2abccec
MK
1353 ret = -1;
1354 goto out;
efa84d43
KW
1355 }
1356 } else {
b50cbabc 1357 param = parse_option_parameters("", create_options, param);
efa84d43
KW
1358 }
1359
1360 set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512);
eec77d9e 1361 ret = add_old_style_options(out_fmt, param, out_baseimg, NULL);
c2abccec
MK
1362 if (ret < 0) {
1363 goto out;
1364 }
efa84d43 1365
a18953fb
KW
1366 /* Get backing file name if -o backing_file was used */
1367 out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
1368 if (out_baseimg_param) {
1369 out_baseimg = out_baseimg_param->value.s;
1370 }
1371
efa84d43 1372 /* Check if compression is supported */
eec77d9e 1373 if (compress) {
efa84d43
KW
1374 QEMUOptionParameter *encryption =
1375 get_option_parameter(param, BLOCK_OPT_ENCRYPT);
41521fa4
KW
1376 QEMUOptionParameter *preallocation =
1377 get_option_parameter(param, BLOCK_OPT_PREALLOC);
efa84d43
KW
1378
1379 if (!drv->bdrv_write_compressed) {
15654a6d 1380 error_report("Compression not supported for this file format");
c2abccec
MK
1381 ret = -1;
1382 goto out;
efa84d43
KW
1383 }
1384
1385 if (encryption && encryption->value.n) {
15654a6d
JS
1386 error_report("Compression and encryption not supported at "
1387 "the same time");
c2abccec
MK
1388 ret = -1;
1389 goto out;
efa84d43 1390 }
41521fa4
KW
1391
1392 if (preallocation && preallocation->value.s
1393 && strcmp(preallocation->value.s, "off"))
1394 {
1395 error_report("Compression and preallocation not supported at "
1396 "the same time");
1397 ret = -1;
1398 goto out;
1399 }
efa84d43
KW
1400 }
1401
b2e10493
AD
1402 if (!skip_create) {
1403 /* Create the new image */
cc84d90f 1404 ret = bdrv_create(drv, out_filename, param, &local_err);
b2e10493 1405 if (ret < 0) {
cc84d90f
HR
1406 error_report("%s: error while converting %s: %s",
1407 out_filename, out_fmt, error_get_pretty(local_err));
1408 error_free(local_err);
b2e10493 1409 goto out;
ea2384d3
FB
1410 }
1411 }
3b46e624 1412
5a37b60a 1413 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
c3993cdc 1414 ret = bdrv_parse_cache_flags(cache, &flags);
661a0f71
FS
1415 if (ret < 0) {
1416 error_report("Invalid cache option: %s", cache);
1417 return -1;
1418 }
1419
f382d43a 1420 out_bs = bdrv_new_open(out_filename, out_fmt, flags, true, quiet);
c2abccec
MK
1421 if (!out_bs) {
1422 ret = -1;
1423 goto out;
1424 }
ea2384d3 1425
926c2d23
AZ
1426 bs_i = 0;
1427 bs_offset = 0;
1428 bdrv_get_geometry(bs[0], &bs_sectors);
f2521c90
PL
1429
1430 /* increase bufsectors from the default 4096 (2M) if opt_transfer_length
1431 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
1432 * as maximum. */
1433 bufsectors = MIN(32768,
1434 MAX(bufsectors, MAX(out_bs->bl.opt_transfer_length,
1435 out_bs->bl.discard_alignment))
1436 );
1437
1438 buf = qemu_blockalign(out_bs, bufsectors * BDRV_SECTOR_SIZE);
926c2d23 1439
b2e10493
AD
1440 if (skip_create) {
1441 int64_t output_length = bdrv_getlength(out_bs);
1442 if (output_length < 0) {
1443 error_report("unable to get output image length: %s\n",
1444 strerror(-output_length));
1445 ret = -1;
1446 goto out;
1447 } else if (output_length < total_sectors << BDRV_SECTOR_BITS) {
1448 error_report("output file is smaller than input file");
1449 ret = -1;
1450 goto out;
1451 }
1452 }
1453
24f833cd
PL
1454 cluster_sectors = 0;
1455 ret = bdrv_get_info(out_bs, &bdi);
1456 if (ret < 0) {
1457 if (compress) {
15654a6d 1458 error_report("could not get block driver info");
c2abccec
MK
1459 goto out;
1460 }
24f833cd
PL
1461 } else {
1462 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
1463 }
1464
1465 if (compress) {
1466 if (cluster_sectors <= 0 || cluster_sectors > bufsectors) {
15654a6d 1467 error_report("invalid cluster size");
c2abccec
MK
1468 ret = -1;
1469 goto out;
1470 }
ea2384d3 1471 sector_num = 0;
6b837bc4
JS
1472
1473 nb_sectors = total_sectors;
6b837bc4 1474
ea2384d3 1475 for(;;) {
926c2d23
AZ
1476 int64_t bs_num;
1477 int remainder;
1478 uint8_t *buf2;
1479
ea2384d3
FB
1480 nb_sectors = total_sectors - sector_num;
1481 if (nb_sectors <= 0)
1482 break;
1483 if (nb_sectors >= cluster_sectors)
1484 n = cluster_sectors;
1485 else
1486 n = nb_sectors;
926c2d23
AZ
1487
1488 bs_num = sector_num - bs_offset;
1489 assert (bs_num >= 0);
1490 remainder = n;
1491 buf2 = buf;
1492 while (remainder > 0) {
1493 int nlow;
1494 while (bs_num == bs_sectors) {
1495 bs_i++;
1496 assert (bs_i < bs_n);
1497 bs_offset += bs_sectors;
1498 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1499 bs_num = 0;
0bfcd599
BS
1500 /* printf("changing part: sector_num=%" PRId64 ", "
1501 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
1502 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
926c2d23
AZ
1503 }
1504 assert (bs_num < bs_sectors);
1505
1506 nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder;
1507
c2abccec
MK
1508 ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow);
1509 if (ret < 0) {
3fba9d81
SH
1510 error_report("error while reading sector %" PRId64 ": %s",
1511 bs_num, strerror(-ret));
c2abccec
MK
1512 goto out;
1513 }
926c2d23
AZ
1514
1515 buf2 += nlow * 512;
1516 bs_num += nlow;
1517
1518 remainder -= nlow;
1519 }
1520 assert (remainder == 0);
1521
54f106d5
SH
1522 if (!buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)) {
1523 ret = bdrv_write_compressed(out_bs, sector_num, buf, n);
c2abccec 1524 if (ret != 0) {
3fba9d81
SH
1525 error_report("error while compressing sector %" PRId64
1526 ": %s", sector_num, strerror(-ret));
c2abccec
MK
1527 goto out;
1528 }
ea2384d3
FB
1529 }
1530 sector_num += n;
13c28af8 1531 qemu_progress_print(100.0 * sector_num / total_sectors, 0);
ea2384d3 1532 }
faea38e7
FB
1533 /* signal EOF to align */
1534 bdrv_write_compressed(out_bs, 0, NULL, 0);
ea2384d3 1535 } else {
802c3d4c
PL
1536 int64_t sectors_to_read, sectors_read, sector_num_next_status;
1537 bool count_allocated_sectors;
11b6699a 1538 int has_zero_init = min_sparse ? bdrv_has_zero_init(out_bs) : 0;
f2feebbd 1539
5a37b60a
PL
1540 if (!has_zero_init && bdrv_can_write_zeroes_with_unmap(out_bs)) {
1541 ret = bdrv_make_zero(out_bs, BDRV_REQ_MAY_UNMAP);
1542 if (ret < 0) {
1543 goto out;
1544 }
1545 has_zero_init = 1;
1546 }
1547
802c3d4c
PL
1548 sectors_to_read = total_sectors;
1549 count_allocated_sectors = progress && (out_baseimg || has_zero_init);
1550restart:
f58c7b35 1551 sector_num = 0; // total number of sectors converted so far
802c3d4c
PL
1552 sectors_read = 0;
1553 sector_num_next_status = 0;
6b837bc4 1554
ea2384d3
FB
1555 for(;;) {
1556 nb_sectors = total_sectors - sector_num;
b8fb60da 1557 if (nb_sectors <= 0) {
802c3d4c
PL
1558 if (count_allocated_sectors) {
1559 sectors_to_read = sectors_read;
1560 count_allocated_sectors = false;
1561 goto restart;
1562 }
13c28af8 1563 ret = 0;
ea2384d3 1564 break;
b8fb60da 1565 }
926c2d23
AZ
1566
1567 while (sector_num - bs_offset >= bs_sectors) {
1568 bs_i ++;
1569 assert (bs_i < bs_n);
1570 bs_offset += bs_sectors;
1571 bdrv_get_geometry(bs[bs_i], &bs_sectors);
0bfcd599
BS
1572 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
1573 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
926c2d23
AZ
1574 sector_num, bs_i, bs_offset, bs_sectors); */
1575 }
1576
13c28af8
PL
1577 if ((out_baseimg || has_zero_init) &&
1578 sector_num >= sector_num_next_status) {
1579 n = nb_sectors > INT_MAX ? INT_MAX : nb_sectors;
1580 ret = bdrv_get_block_status(bs[bs_i], sector_num - bs_offset,
1581 n, &n1);
e4a86f88 1582 if (ret < 0) {
13c28af8
PL
1583 error_report("error while reading block status of sector %"
1584 PRId64 ": %s", sector_num - bs_offset,
1585 strerror(-ret));
e4a86f88
PB
1586 goto out;
1587 }
13c28af8
PL
1588 /* If the output image is zero initialized, we are not working
1589 * on a shared base and the input is zero we can skip the next
1590 * n1 sectors */
1591 if (has_zero_init && !out_baseimg && (ret & BDRV_BLOCK_ZERO)) {
e4a86f88
PB
1592 sector_num += n1;
1593 continue;
93c65b47 1594 }
13c28af8
PL
1595 /* If the output image is being created as a copy on write
1596 * image, assume that sectors which are unallocated in the
1597 * input image are present in both the output's and input's
1598 * base images (no need to copy them). */
1599 if (out_baseimg) {
1600 if (!(ret & BDRV_BLOCK_DATA)) {
1601 sector_num += n1;
1602 continue;
1603 }
1604 /* The next 'n1' sectors are allocated in the input image.
1605 * Copy only those as they may be followed by unallocated
1606 * sectors. */
1607 nb_sectors = n1;
1608 }
1609 /* avoid redundant callouts to get_block_status */
1610 sector_num_next_status = sector_num + n1;
f58c7b35
TS
1611 }
1612
f2521c90 1613 n = MIN(nb_sectors, bufsectors);
24f833cd
PL
1614
1615 /* round down request length to an aligned sector, but
1616 * do not bother doing this on short requests. They happen
1617 * when we found an all-zero area, and the next sector to
1618 * write will not be sector_num + n. */
1619 if (cluster_sectors > 0 && n >= cluster_sectors) {
1620 int64_t next_aligned_sector = (sector_num + n);
1621 next_aligned_sector -= next_aligned_sector % cluster_sectors;
1622 if (sector_num + n > next_aligned_sector) {
1623 n = next_aligned_sector - sector_num;
1624 }
1625 }
1626
13c28af8 1627 n = MIN(n, bs_sectors - (sector_num - bs_offset));
13c28af8 1628
802c3d4c
PL
1629 sectors_read += n;
1630 if (count_allocated_sectors) {
1631 sector_num += n;
1632 continue;
1633 }
1634
1635 n1 = n;
c2abccec
MK
1636 ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n);
1637 if (ret < 0) {
3fba9d81
SH
1638 error_report("error while reading sector %" PRId64 ": %s",
1639 sector_num - bs_offset, strerror(-ret));
c2abccec
MK
1640 goto out;
1641 }
ea2384d3
FB
1642 /* NOTE: at the same time we convert, we do not write zero
1643 sectors to have a chance to compress the image. Ideally, we
1644 should add a specific call to have the info to go faster */
1645 buf1 = buf;
1646 while (n > 0) {
11212d8f 1647 if (!has_zero_init ||
a22f123c 1648 is_allocated_sectors_min(buf1, n, &n1, min_sparse)) {
c2abccec
MK
1649 ret = bdrv_write(out_bs, sector_num, buf1, n1);
1650 if (ret < 0) {
3fba9d81
SH
1651 error_report("error while writing sector %" PRId64
1652 ": %s", sector_num, strerror(-ret));
c2abccec
MK
1653 goto out;
1654 }
ea2384d3
FB
1655 }
1656 sector_num += n1;
1657 n -= n1;
1658 buf1 += n1 * 512;
1659 }
802c3d4c 1660 qemu_progress_print(100.0 * sectors_read / sectors_to_read, 0);
ea2384d3
FB
1661 }
1662 }
c2abccec 1663out:
13c28af8
PL
1664 if (!ret) {
1665 qemu_progress_print(100, 0);
1666 }
6b837bc4 1667 qemu_progress_end();
c2abccec
MK
1668 free_option_parameters(create_options);
1669 free_option_parameters(param);
bb1c0597 1670 qemu_vfree(buf);
2dc8328b 1671 g_free(options);
ef80654d
WX
1672 if (sn_opts) {
1673 qemu_opts_del(sn_opts);
1674 }
c2abccec 1675 if (out_bs) {
4f6fd349 1676 bdrv_unref(out_bs);
c2abccec 1677 }
31ca34b8
JS
1678 if (bs) {
1679 for (bs_i = 0; bs_i < bs_n; bs_i++) {
1680 if (bs[bs_i]) {
4f6fd349 1681 bdrv_unref(bs[bs_i]);
31ca34b8 1682 }
c2abccec 1683 }
7267c094 1684 g_free(bs);
c2abccec 1685 }
c2abccec
MK
1686 if (ret) {
1687 return 1;
1688 }
ea2384d3
FB
1689 return 0;
1690}
1691
57d1a2b6 1692
faea38e7
FB
1693static void dump_snapshots(BlockDriverState *bs)
1694{
1695 QEMUSnapshotInfo *sn_tab, *sn;
1696 int nb_sns, i;
faea38e7
FB
1697
1698 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1699 if (nb_sns <= 0)
1700 return;
1701 printf("Snapshot list:\n");
5b917044
WX
1702 bdrv_snapshot_dump(fprintf, stdout, NULL);
1703 printf("\n");
faea38e7
FB
1704 for(i = 0; i < nb_sns; i++) {
1705 sn = &sn_tab[i];
5b917044
WX
1706 bdrv_snapshot_dump(fprintf, stdout, sn);
1707 printf("\n");
faea38e7 1708 }
7267c094 1709 g_free(sn_tab);
faea38e7
FB
1710}
1711
9699bf0d
SH
1712static void dump_json_image_info_list(ImageInfoList *list)
1713{
1714 Error *errp = NULL;
1715 QString *str;
1716 QmpOutputVisitor *ov = qmp_output_visitor_new();
1717 QObject *obj;
1718 visit_type_ImageInfoList(qmp_output_get_visitor(ov),
1719 &list, NULL, &errp);
1720 obj = qmp_output_get_qobject(ov);
1721 str = qobject_to_json_pretty(obj);
1722 assert(str != NULL);
1723 printf("%s\n", qstring_get_str(str));
1724 qobject_decref(obj);
1725 qmp_output_visitor_cleanup(ov);
1726 QDECREF(str);
1727}
1728
c054b3fd
BC
1729static void dump_json_image_info(ImageInfo *info)
1730{
1731 Error *errp = NULL;
1732 QString *str;
1733 QmpOutputVisitor *ov = qmp_output_visitor_new();
1734 QObject *obj;
1735 visit_type_ImageInfo(qmp_output_get_visitor(ov),
1736 &info, NULL, &errp);
1737 obj = qmp_output_get_qobject(ov);
1738 str = qobject_to_json_pretty(obj);
1739 assert(str != NULL);
1740 printf("%s\n", qstring_get_str(str));
1741 qobject_decref(obj);
1742 qmp_output_visitor_cleanup(ov);
1743 QDECREF(str);
1744}
1745
9699bf0d
SH
1746static void dump_human_image_info_list(ImageInfoList *list)
1747{
1748 ImageInfoList *elem;
1749 bool delim = false;
1750
1751 for (elem = list; elem; elem = elem->next) {
1752 if (delim) {
1753 printf("\n");
1754 }
1755 delim = true;
1756
5b917044 1757 bdrv_image_info_dump(fprintf, stdout, elem->value);
9699bf0d
SH
1758 }
1759}
1760
1761static gboolean str_equal_func(gconstpointer a, gconstpointer b)
1762{
1763 return strcmp(a, b) == 0;
1764}
1765
1766/**
1767 * Open an image file chain and return an ImageInfoList
1768 *
1769 * @filename: topmost image filename
1770 * @fmt: topmost image format (may be NULL to autodetect)
1771 * @chain: true - enumerate entire backing file chain
1772 * false - only topmost image file
1773 *
1774 * Returns a list of ImageInfo objects or NULL if there was an error opening an
1775 * image file. If there was an error a message will have been printed to
1776 * stderr.
1777 */
1778static ImageInfoList *collect_image_info_list(const char *filename,
1779 const char *fmt,
1780 bool chain)
1781{
1782 ImageInfoList *head = NULL;
1783 ImageInfoList **last = &head;
1784 GHashTable *filenames;
43526ec8 1785 Error *err = NULL;
9699bf0d
SH
1786
1787 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
1788
1789 while (filename) {
1790 BlockDriverState *bs;
1791 ImageInfo *info;
1792 ImageInfoList *elem;
1793
1794 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
1795 error_report("Backing file '%s' creates an infinite loop.",
1796 filename);
1797 goto err;
1798 }
1799 g_hash_table_insert(filenames, (gpointer)filename, NULL);
1800
1801 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_NO_BACKING,
f382d43a 1802 false, false);
9699bf0d
SH
1803 if (!bs) {
1804 goto err;
1805 }
1806
43526ec8 1807 bdrv_query_image_info(bs, &info, &err);
84d18f06 1808 if (err) {
43526ec8
WX
1809 error_report("%s", error_get_pretty(err));
1810 error_free(err);
1811 goto err;
fb0ed453 1812 }
9699bf0d
SH
1813
1814 elem = g_new0(ImageInfoList, 1);
1815 elem->value = info;
1816 *last = elem;
1817 last = &elem->next;
1818
4f6fd349 1819 bdrv_unref(bs);
9699bf0d
SH
1820
1821 filename = fmt = NULL;
1822 if (chain) {
1823 if (info->has_full_backing_filename) {
1824 filename = info->full_backing_filename;
1825 } else if (info->has_backing_filename) {
1826 filename = info->backing_filename;
1827 }
1828 if (info->has_backing_filename_format) {
1829 fmt = info->backing_filename_format;
1830 }
1831 }
1832 }
1833 g_hash_table_destroy(filenames);
1834 return head;
1835
1836err:
1837 qapi_free_ImageInfoList(head);
1838 g_hash_table_destroy(filenames);
1839 return NULL;
1840}
1841
c054b3fd
BC
1842static int img_info(int argc, char **argv)
1843{
1844 int c;
1845 OutputFormat output_format = OFORMAT_HUMAN;
9699bf0d 1846 bool chain = false;
c054b3fd 1847 const char *filename, *fmt, *output;
9699bf0d 1848 ImageInfoList *list;
c054b3fd 1849
ea2384d3 1850 fmt = NULL;
c054b3fd 1851 output = NULL;
ea2384d3 1852 for(;;) {
c054b3fd
BC
1853 int option_index = 0;
1854 static const struct option long_options[] = {
1855 {"help", no_argument, 0, 'h'},
1856 {"format", required_argument, 0, 'f'},
1857 {"output", required_argument, 0, OPTION_OUTPUT},
9699bf0d 1858 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
c054b3fd
BC
1859 {0, 0, 0, 0}
1860 };
1861 c = getopt_long(argc, argv, "f:h",
1862 long_options, &option_index);
b8fb60da 1863 if (c == -1) {
ea2384d3 1864 break;
b8fb60da 1865 }
ea2384d3 1866 switch(c) {
ef87394c 1867 case '?':
ea2384d3
FB
1868 case 'h':
1869 help();
1870 break;
1871 case 'f':
1872 fmt = optarg;
1873 break;
c054b3fd
BC
1874 case OPTION_OUTPUT:
1875 output = optarg;
1876 break;
9699bf0d
SH
1877 case OPTION_BACKING_CHAIN:
1878 chain = true;
1879 break;
ea2384d3
FB
1880 }
1881 }
fc11eb26 1882 if (optind != argc - 1) {
ea2384d3 1883 help();
b8fb60da 1884 }
ea2384d3
FB
1885 filename = argv[optind++];
1886
c054b3fd
BC
1887 if (output && !strcmp(output, "json")) {
1888 output_format = OFORMAT_JSON;
1889 } else if (output && !strcmp(output, "human")) {
1890 output_format = OFORMAT_HUMAN;
1891 } else if (output) {
1892 error_report("--output must be used with human or json as argument.");
c2abccec
MK
1893 return 1;
1894 }
c054b3fd 1895
9699bf0d
SH
1896 list = collect_image_info_list(filename, fmt, chain);
1897 if (!list) {
c2abccec 1898 return 1;
faea38e7 1899 }
c054b3fd 1900
c054b3fd
BC
1901 switch (output_format) {
1902 case OFORMAT_HUMAN:
9699bf0d 1903 dump_human_image_info_list(list);
c054b3fd
BC
1904 break;
1905 case OFORMAT_JSON:
9699bf0d
SH
1906 if (chain) {
1907 dump_json_image_info_list(list);
1908 } else {
1909 dump_json_image_info(list->value);
1910 }
c054b3fd 1911 break;
faea38e7 1912 }
c054b3fd 1913
9699bf0d 1914 qapi_free_ImageInfoList(list);
ea2384d3
FB
1915 return 0;
1916}
1917
4c93a13b
PB
1918
1919typedef struct MapEntry {
1920 int flags;
1921 int depth;
1922 int64_t start;
1923 int64_t length;
1924 int64_t offset;
1925 BlockDriverState *bs;
1926} MapEntry;
1927
1928static void dump_map_entry(OutputFormat output_format, MapEntry *e,
1929 MapEntry *next)
1930{
1931 switch (output_format) {
1932 case OFORMAT_HUMAN:
1933 if ((e->flags & BDRV_BLOCK_DATA) &&
1934 !(e->flags & BDRV_BLOCK_OFFSET_VALID)) {
1935 error_report("File contains external, encrypted or compressed clusters.");
1936 exit(1);
1937 }
1938 if ((e->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) == BDRV_BLOCK_DATA) {
1939 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
1940 e->start, e->length, e->offset, e->bs->filename);
1941 }
1942 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
1943 * Modify the flags here to allow more coalescing.
1944 */
1945 if (next &&
1946 (next->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) != BDRV_BLOCK_DATA) {
1947 next->flags &= ~BDRV_BLOCK_DATA;
1948 next->flags |= BDRV_BLOCK_ZERO;
1949 }
1950 break;
1951 case OFORMAT_JSON:
1952 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64", \"depth\": %d,"
1953 " \"zero\": %s, \"data\": %s",
1954 (e->start == 0 ? "[" : ",\n"),
1955 e->start, e->length, e->depth,
1956 (e->flags & BDRV_BLOCK_ZERO) ? "true" : "false",
1957 (e->flags & BDRV_BLOCK_DATA) ? "true" : "false");
1958 if (e->flags & BDRV_BLOCK_OFFSET_VALID) {
c745bfb4 1959 printf(", \"offset\": %"PRId64"", e->offset);
4c93a13b
PB
1960 }
1961 putchar('}');
1962
1963 if (!next) {
1964 printf("]\n");
1965 }
1966 break;
1967 }
1968}
1969
1970static int get_block_status(BlockDriverState *bs, int64_t sector_num,
1971 int nb_sectors, MapEntry *e)
1972{
1973 int64_t ret;
1974 int depth;
1975
1976 /* As an optimization, we could cache the current range of unallocated
1977 * clusters in each file of the chain, and avoid querying the same
1978 * range repeatedly.
1979 */
1980
1981 depth = 0;
1982 for (;;) {
1983 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors);
1984 if (ret < 0) {
1985 return ret;
1986 }
1987 assert(nb_sectors);
1988 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
1989 break;
1990 }
1991 bs = bs->backing_hd;
1992 if (bs == NULL) {
1993 ret = 0;
1994 break;
1995 }
1996
1997 depth++;
1998 }
1999
2000 e->start = sector_num * BDRV_SECTOR_SIZE;
2001 e->length = nb_sectors * BDRV_SECTOR_SIZE;
2002 e->flags = ret & ~BDRV_BLOCK_OFFSET_MASK;
2003 e->offset = ret & BDRV_BLOCK_OFFSET_MASK;
2004 e->depth = depth;
2005 e->bs = bs;
2006 return 0;
2007}
2008
2009static int img_map(int argc, char **argv)
2010{
2011 int c;
2012 OutputFormat output_format = OFORMAT_HUMAN;
2013 BlockDriverState *bs;
2014 const char *filename, *fmt, *output;
2015 int64_t length;
2016 MapEntry curr = { .length = 0 }, next;
2017 int ret = 0;
2018
2019 fmt = NULL;
2020 output = NULL;
2021 for (;;) {
2022 int option_index = 0;
2023 static const struct option long_options[] = {
2024 {"help", no_argument, 0, 'h'},
2025 {"format", required_argument, 0, 'f'},
2026 {"output", required_argument, 0, OPTION_OUTPUT},
2027 {0, 0, 0, 0}
2028 };
2029 c = getopt_long(argc, argv, "f:h",
2030 long_options, &option_index);
2031 if (c == -1) {
2032 break;
2033 }
2034 switch (c) {
2035 case '?':
2036 case 'h':
2037 help();
2038 break;
2039 case 'f':
2040 fmt = optarg;
2041 break;
2042 case OPTION_OUTPUT:
2043 output = optarg;
2044 break;
2045 }
2046 }
2047 if (optind >= argc) {
2048 help();
2049 }
2050 filename = argv[optind++];
2051
2052 if (output && !strcmp(output, "json")) {
2053 output_format = OFORMAT_JSON;
2054 } else if (output && !strcmp(output, "human")) {
2055 output_format = OFORMAT_HUMAN;
2056 } else if (output) {
2057 error_report("--output must be used with human or json as argument.");
2058 return 1;
2059 }
2060
2061 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS, true, false);
2062 if (!bs) {
2063 return 1;
2064 }
2065
2066 if (output_format == OFORMAT_HUMAN) {
2067 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2068 }
2069
2070 length = bdrv_getlength(bs);
2071 while (curr.start + curr.length < length) {
2072 int64_t nsectors_left;
2073 int64_t sector_num;
2074 int n;
2075
2076 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2077
2078 /* Probe up to 1 GiB at a time. */
2079 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2080 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2081 ret = get_block_status(bs, sector_num, n, &next);
2082
2083 if (ret < 0) {
2084 error_report("Could not read file metadata: %s", strerror(-ret));
2085 goto out;
2086 }
2087
2088 if (curr.length != 0 && curr.flags == next.flags &&
2089 curr.depth == next.depth &&
2090 ((curr.flags & BDRV_BLOCK_OFFSET_VALID) == 0 ||
2091 curr.offset + curr.length == next.offset)) {
2092 curr.length += next.length;
2093 continue;
2094 }
2095
2096 if (curr.length > 0) {
2097 dump_map_entry(output_format, &curr, &next);
2098 }
2099 curr = next;
2100 }
2101
2102 dump_map_entry(output_format, &curr, NULL);
2103
2104out:
2105 bdrv_unref(bs);
2106 return ret < 0;
2107}
2108
f7b4a940
AL
2109#define SNAPSHOT_LIST 1
2110#define SNAPSHOT_CREATE 2
2111#define SNAPSHOT_APPLY 3
2112#define SNAPSHOT_DELETE 4
2113
153859be 2114static int img_snapshot(int argc, char **argv)
f7b4a940
AL
2115{
2116 BlockDriverState *bs;
2117 QEMUSnapshotInfo sn;
2118 char *filename, *snapshot_name = NULL;
c2abccec 2119 int c, ret = 0, bdrv_oflags;
f7b4a940
AL
2120 int action = 0;
2121 qemu_timeval tv;
f382d43a 2122 bool quiet = false;
a89d89d3 2123 Error *err = NULL;
f7b4a940 2124
710da702 2125 bdrv_oflags = BDRV_O_FLAGS | BDRV_O_RDWR;
f7b4a940
AL
2126 /* Parse commandline parameters */
2127 for(;;) {
f382d43a 2128 c = getopt(argc, argv, "la:c:d:hq");
b8fb60da 2129 if (c == -1) {
f7b4a940 2130 break;
b8fb60da 2131 }
f7b4a940 2132 switch(c) {
ef87394c 2133 case '?':
f7b4a940
AL
2134 case 'h':
2135 help();
153859be 2136 return 0;
f7b4a940
AL
2137 case 'l':
2138 if (action) {
2139 help();
153859be 2140 return 0;
f7b4a940
AL
2141 }
2142 action = SNAPSHOT_LIST;
f5edb014 2143 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
f7b4a940
AL
2144 break;
2145 case 'a':
2146 if (action) {
2147 help();
153859be 2148 return 0;
f7b4a940
AL
2149 }
2150 action = SNAPSHOT_APPLY;
2151 snapshot_name = optarg;
2152 break;
2153 case 'c':
2154 if (action) {
2155 help();
153859be 2156 return 0;
f7b4a940
AL
2157 }
2158 action = SNAPSHOT_CREATE;
2159 snapshot_name = optarg;
2160 break;
2161 case 'd':
2162 if (action) {
2163 help();
153859be 2164 return 0;
f7b4a940
AL
2165 }
2166 action = SNAPSHOT_DELETE;
2167 snapshot_name = optarg;
2168 break;
f382d43a
MR
2169 case 'q':
2170 quiet = true;
2171 break;
f7b4a940
AL
2172 }
2173 }
2174
fc11eb26 2175 if (optind != argc - 1) {
f7b4a940 2176 help();
b8fb60da 2177 }
f7b4a940
AL
2178 filename = argv[optind++];
2179
2180 /* Open the image */
f382d43a 2181 bs = bdrv_new_open(filename, NULL, bdrv_oflags, true, quiet);
c2abccec
MK
2182 if (!bs) {
2183 return 1;
2184 }
f7b4a940
AL
2185
2186 /* Perform the requested action */
2187 switch(action) {
2188 case SNAPSHOT_LIST:
2189 dump_snapshots(bs);
2190 break;
2191
2192 case SNAPSHOT_CREATE:
2193 memset(&sn, 0, sizeof(sn));
2194 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2195
2196 qemu_gettimeofday(&tv);
2197 sn.date_sec = tv.tv_sec;
2198 sn.date_nsec = tv.tv_usec * 1000;
2199
2200 ret = bdrv_snapshot_create(bs, &sn);
b8fb60da 2201 if (ret) {
15654a6d 2202 error_report("Could not create snapshot '%s': %d (%s)",
f7b4a940 2203 snapshot_name, ret, strerror(-ret));
b8fb60da 2204 }
f7b4a940
AL
2205 break;
2206
2207 case SNAPSHOT_APPLY:
2208 ret = bdrv_snapshot_goto(bs, snapshot_name);
b8fb60da 2209 if (ret) {
15654a6d 2210 error_report("Could not apply snapshot '%s': %d (%s)",
f7b4a940 2211 snapshot_name, ret, strerror(-ret));
b8fb60da 2212 }
f7b4a940
AL
2213 break;
2214
2215 case SNAPSHOT_DELETE:
a89d89d3 2216 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
84d18f06 2217 if (err) {
a89d89d3
WX
2218 error_report("Could not delete snapshot '%s': (%s)",
2219 snapshot_name, error_get_pretty(err));
2220 error_free(err);
2221 ret = 1;
b8fb60da 2222 }
f7b4a940
AL
2223 break;
2224 }
2225
2226 /* Cleanup */
4f6fd349 2227 bdrv_unref(bs);
c2abccec
MK
2228 if (ret) {
2229 return 1;
2230 }
153859be 2231 return 0;
f7b4a940
AL
2232}
2233
3e85c6fd
KW
2234static int img_rebase(int argc, char **argv)
2235{
c2abccec 2236 BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL;
f163d073 2237 BlockDriver *old_backing_drv, *new_backing_drv;
3e85c6fd 2238 char *filename;
661a0f71 2239 const char *fmt, *cache, *out_basefmt, *out_baseimg;
3e85c6fd
KW
2240 int c, flags, ret;
2241 int unsafe = 0;
6b837bc4 2242 int progress = 0;
f382d43a 2243 bool quiet = false;
34b5d2c6 2244 Error *local_err = NULL;
3e85c6fd
KW
2245
2246 /* Parse commandline parameters */
e53dbee0 2247 fmt = NULL;
661a0f71 2248 cache = BDRV_DEFAULT_CACHE;
3e85c6fd
KW
2249 out_baseimg = NULL;
2250 out_basefmt = NULL;
3e85c6fd 2251 for(;;) {
f382d43a 2252 c = getopt(argc, argv, "uhf:F:b:pt:q");
b8fb60da 2253 if (c == -1) {
3e85c6fd 2254 break;
b8fb60da 2255 }
3e85c6fd 2256 switch(c) {
ef87394c 2257 case '?':
3e85c6fd
KW
2258 case 'h':
2259 help();
2260 return 0;
e53dbee0
KW
2261 case 'f':
2262 fmt = optarg;
2263 break;
3e85c6fd
KW
2264 case 'F':
2265 out_basefmt = optarg;
2266 break;
2267 case 'b':
2268 out_baseimg = optarg;
2269 break;
2270 case 'u':
2271 unsafe = 1;
2272 break;
6b837bc4
JS
2273 case 'p':
2274 progress = 1;
2275 break;
661a0f71
FS
2276 case 't':
2277 cache = optarg;
2278 break;
f382d43a
MR
2279 case 'q':
2280 quiet = true;
2281 break;
3e85c6fd
KW
2282 }
2283 }
2284
f382d43a
MR
2285 if (quiet) {
2286 progress = 0;
2287 }
2288
fc11eb26 2289 if ((optind != argc - 1) || (!unsafe && !out_baseimg)) {
3e85c6fd 2290 help();
b8fb60da 2291 }
3e85c6fd
KW
2292 filename = argv[optind++];
2293
6b837bc4
JS
2294 qemu_progress_init(progress, 2.0);
2295 qemu_progress_print(0, 100);
2296
661a0f71 2297 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
c3993cdc 2298 ret = bdrv_parse_cache_flags(cache, &flags);
661a0f71
FS
2299 if (ret < 0) {
2300 error_report("Invalid cache option: %s", cache);
2301 return -1;
2302 }
2303
3e85c6fd
KW
2304 /*
2305 * Open the images.
2306 *
2307 * Ignore the old backing file for unsafe rebase in case we want to correct
2308 * the reference to a renamed or moved backing file.
2309 */
f382d43a 2310 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
c2abccec
MK
2311 if (!bs) {
2312 return 1;
2313 }
3e85c6fd
KW
2314
2315 /* Find the right drivers for the backing files */
2316 old_backing_drv = NULL;
2317 new_backing_drv = NULL;
2318
2319 if (!unsafe && bs->backing_format[0] != '\0') {
2320 old_backing_drv = bdrv_find_format(bs->backing_format);
2321 if (old_backing_drv == NULL) {
15654a6d 2322 error_report("Invalid format name: '%s'", bs->backing_format);
c2abccec
MK
2323 ret = -1;
2324 goto out;
3e85c6fd
KW
2325 }
2326 }
2327
2328 if (out_basefmt != NULL) {
2329 new_backing_drv = bdrv_find_format(out_basefmt);
2330 if (new_backing_drv == NULL) {
15654a6d 2331 error_report("Invalid format name: '%s'", out_basefmt);
c2abccec
MK
2332 ret = -1;
2333 goto out;
3e85c6fd
KW
2334 }
2335 }
2336
2337 /* For safe rebasing we need to compare old and new backing file */
2338 if (unsafe) {
2339 /* Make the compiler happy */
2340 bs_old_backing = NULL;
2341 bs_new_backing = NULL;
2342 } else {
2343 char backing_name[1024];
2344
2345 bs_old_backing = bdrv_new("old_backing");
2346 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
ddf5636d 2347 ret = bdrv_open(&bs_old_backing, backing_name, NULL, NULL, BDRV_O_FLAGS,
34b5d2c6 2348 old_backing_drv, &local_err);
c2abccec 2349 if (ret) {
34b5d2c6
HR
2350 error_report("Could not open old backing file '%s': %s",
2351 backing_name, error_get_pretty(local_err));
2352 error_free(local_err);
c2abccec 2353 goto out;
3e85c6fd 2354 }
a616673d
AB
2355 if (out_baseimg[0]) {
2356 bs_new_backing = bdrv_new("new_backing");
ddf5636d
HR
2357 ret = bdrv_open(&bs_new_backing, out_baseimg, NULL, NULL,
2358 BDRV_O_FLAGS, new_backing_drv, &local_err);
a616673d 2359 if (ret) {
34b5d2c6
HR
2360 error_report("Could not open new backing file '%s': %s",
2361 out_baseimg, error_get_pretty(local_err));
2362 error_free(local_err);
a616673d
AB
2363 goto out;
2364 }
3e85c6fd
KW
2365 }
2366 }
2367
2368 /*
2369 * Check each unallocated cluster in the COW file. If it is unallocated,
2370 * accesses go to the backing file. We must therefore compare this cluster
2371 * in the old and new backing file, and if they differ we need to copy it
2372 * from the old backing file into the COW file.
2373 *
2374 * If qemu-img crashes during this step, no harm is done. The content of
2375 * the image is the same as the original one at any time.
2376 */
2377 if (!unsafe) {
2378 uint64_t num_sectors;
87a1b3e3 2379 uint64_t old_backing_num_sectors;
a616673d 2380 uint64_t new_backing_num_sectors = 0;
3e85c6fd 2381 uint64_t sector;
cc60e327 2382 int n;
d6771bfa
T
2383 uint8_t * buf_old;
2384 uint8_t * buf_new;
1f710495 2385 float local_progress = 0;
d6771bfa 2386
bb1c0597
KW
2387 buf_old = qemu_blockalign(bs, IO_BUF_SIZE);
2388 buf_new = qemu_blockalign(bs, IO_BUF_SIZE);
3e85c6fd
KW
2389
2390 bdrv_get_geometry(bs, &num_sectors);
87a1b3e3 2391 bdrv_get_geometry(bs_old_backing, &old_backing_num_sectors);
a616673d
AB
2392 if (bs_new_backing) {
2393 bdrv_get_geometry(bs_new_backing, &new_backing_num_sectors);
2394 }
3e85c6fd 2395
1f710495
KW
2396 if (num_sectors != 0) {
2397 local_progress = (float)100 /
2398 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
2399 }
2400
3e85c6fd
KW
2401 for (sector = 0; sector < num_sectors; sector += n) {
2402
2403 /* How many sectors can we handle with the next read? */
2404 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
2405 n = (IO_BUF_SIZE / 512);
2406 } else {
2407 n = num_sectors - sector;
2408 }
2409
2410 /* If the cluster is allocated, we don't need to take action */
cc60e327 2411 ret = bdrv_is_allocated(bs, sector, n, &n);
d663640c
PB
2412 if (ret < 0) {
2413 error_report("error while reading image metadata: %s",
2414 strerror(-ret));
2415 goto out;
2416 }
cc60e327 2417 if (ret) {
3e85c6fd
KW
2418 continue;
2419 }
2420
87a1b3e3
KW
2421 /*
2422 * Read old and new backing file and take into consideration that
2423 * backing files may be smaller than the COW image.
2424 */
2425 if (sector >= old_backing_num_sectors) {
2426 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
2427 } else {
2428 if (sector + n > old_backing_num_sectors) {
2429 n = old_backing_num_sectors - sector;
2430 }
2431
2432 ret = bdrv_read(bs_old_backing, sector, buf_old, n);
2433 if (ret < 0) {
2434 error_report("error while reading from old backing file");
2435 goto out;
2436 }
3e85c6fd 2437 }
87a1b3e3 2438
a616673d 2439 if (sector >= new_backing_num_sectors || !bs_new_backing) {
87a1b3e3
KW
2440 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
2441 } else {
2442 if (sector + n > new_backing_num_sectors) {
2443 n = new_backing_num_sectors - sector;
2444 }
2445
2446 ret = bdrv_read(bs_new_backing, sector, buf_new, n);
2447 if (ret < 0) {
2448 error_report("error while reading from new backing file");
2449 goto out;
2450 }
3e85c6fd
KW
2451 }
2452
2453 /* If they differ, we need to write to the COW file */
2454 uint64_t written = 0;
2455
2456 while (written < n) {
2457 int pnum;
2458
2459 if (compare_sectors(buf_old + written * 512,
60b1bd4f 2460 buf_new + written * 512, n - written, &pnum))
3e85c6fd
KW
2461 {
2462 ret = bdrv_write(bs, sector + written,
2463 buf_old + written * 512, pnum);
2464 if (ret < 0) {
15654a6d 2465 error_report("Error while writing to COW image: %s",
3e85c6fd 2466 strerror(-ret));
c2abccec 2467 goto out;
3e85c6fd
KW
2468 }
2469 }
2470
2471 written += pnum;
2472 }
6b837bc4 2473 qemu_progress_print(local_progress, 100);
3e85c6fd 2474 }
d6771bfa 2475
bb1c0597
KW
2476 qemu_vfree(buf_old);
2477 qemu_vfree(buf_new);
3e85c6fd
KW
2478 }
2479
2480 /*
2481 * Change the backing file. All clusters that are different from the old
2482 * backing file are overwritten in the COW file now, so the visible content
2483 * doesn't change when we switch the backing file.
2484 */
a616673d
AB
2485 if (out_baseimg && *out_baseimg) {
2486 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
2487 } else {
2488 ret = bdrv_change_backing_file(bs, NULL, NULL);
2489 }
2490
3e85c6fd 2491 if (ret == -ENOSPC) {
15654a6d
JS
2492 error_report("Could not change the backing file to '%s': No "
2493 "space left in the file header", out_baseimg);
3e85c6fd 2494 } else if (ret < 0) {
15654a6d 2495 error_report("Could not change the backing file to '%s': %s",
3e85c6fd
KW
2496 out_baseimg, strerror(-ret));
2497 }
2498
6b837bc4 2499 qemu_progress_print(100, 0);
3e85c6fd
KW
2500 /*
2501 * TODO At this point it is possible to check if any clusters that are
2502 * allocated in the COW file are the same in the backing file. If so, they
2503 * could be dropped from the COW file. Don't do this before switching the
2504 * backing file, in case of a crash this would lead to corruption.
2505 */
c2abccec 2506out:
6b837bc4 2507 qemu_progress_end();
3e85c6fd
KW
2508 /* Cleanup */
2509 if (!unsafe) {
eb863add 2510 if (bs_old_backing != NULL) {
4f6fd349 2511 bdrv_unref(bs_old_backing);
eb863add
KW
2512 }
2513 if (bs_new_backing != NULL) {
4f6fd349 2514 bdrv_unref(bs_new_backing);
eb863add 2515 }
3e85c6fd
KW
2516 }
2517
4f6fd349 2518 bdrv_unref(bs);
c2abccec
MK
2519 if (ret) {
2520 return 1;
2521 }
3e85c6fd
KW
2522 return 0;
2523}
2524
ae6b0ed6
SH
2525static int img_resize(int argc, char **argv)
2526{
2527 int c, ret, relative;
2528 const char *filename, *fmt, *size;
2529 int64_t n, total_size;
f382d43a 2530 bool quiet = false;
2a81998a 2531 BlockDriverState *bs = NULL;
20caf0f7
DXW
2532 QemuOpts *param;
2533 static QemuOptsList resize_options = {
2534 .name = "resize_options",
2535 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
2536 .desc = {
2537 {
2538 .name = BLOCK_OPT_SIZE,
2539 .type = QEMU_OPT_SIZE,
2540 .help = "Virtual disk size"
2541 }, {
2542 /* end of list */
2543 }
ae6b0ed6 2544 },
ae6b0ed6
SH
2545 };
2546
e80fec7f
KW
2547 /* Remove size from argv manually so that negative numbers are not treated
2548 * as options by getopt. */
2549 if (argc < 3) {
2550 help();
2551 return 1;
2552 }
2553
2554 size = argv[--argc];
2555
2556 /* Parse getopt arguments */
ae6b0ed6
SH
2557 fmt = NULL;
2558 for(;;) {
f382d43a 2559 c = getopt(argc, argv, "f:hq");
ae6b0ed6
SH
2560 if (c == -1) {
2561 break;
2562 }
2563 switch(c) {
ef87394c 2564 case '?':
ae6b0ed6
SH
2565 case 'h':
2566 help();
2567 break;
2568 case 'f':
2569 fmt = optarg;
2570 break;
f382d43a
MR
2571 case 'q':
2572 quiet = true;
2573 break;
ae6b0ed6
SH
2574 }
2575 }
fc11eb26 2576 if (optind != argc - 1) {
ae6b0ed6
SH
2577 help();
2578 }
2579 filename = argv[optind++];
ae6b0ed6
SH
2580
2581 /* Choose grow, shrink, or absolute resize mode */
2582 switch (size[0]) {
2583 case '+':
2584 relative = 1;
2585 size++;
2586 break;
2587 case '-':
2588 relative = -1;
2589 size++;
2590 break;
2591 default:
2592 relative = 0;
2593 break;
2594 }
2595
2596 /* Parse size */
87ea75d5 2597 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
20caf0f7 2598 if (qemu_opt_set(param, BLOCK_OPT_SIZE, size)) {
ae6b0ed6 2599 /* Error message already printed when size parsing fails */
2a81998a 2600 ret = -1;
20caf0f7 2601 qemu_opts_del(param);
2a81998a 2602 goto out;
ae6b0ed6 2603 }
20caf0f7
DXW
2604 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
2605 qemu_opts_del(param);
ae6b0ed6 2606
f382d43a 2607 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
c2abccec 2608 if (!bs) {
2a81998a
JS
2609 ret = -1;
2610 goto out;
c2abccec 2611 }
ae6b0ed6
SH
2612
2613 if (relative) {
2614 total_size = bdrv_getlength(bs) + n * relative;
2615 } else {
2616 total_size = n;
2617 }
2618 if (total_size <= 0) {
15654a6d 2619 error_report("New image size must be positive");
c2abccec
MK
2620 ret = -1;
2621 goto out;
ae6b0ed6
SH
2622 }
2623
2624 ret = bdrv_truncate(bs, total_size);
2625 switch (ret) {
2626 case 0:
f382d43a 2627 qprintf(quiet, "Image resized.\n");
ae6b0ed6
SH
2628 break;
2629 case -ENOTSUP:
259b2173 2630 error_report("This image does not support resize");
ae6b0ed6
SH
2631 break;
2632 case -EACCES:
15654a6d 2633 error_report("Image is read-only");
ae6b0ed6
SH
2634 break;
2635 default:
15654a6d 2636 error_report("Error resizing image (%d)", -ret);
ae6b0ed6
SH
2637 break;
2638 }
c2abccec 2639out:
2a81998a 2640 if (bs) {
4f6fd349 2641 bdrv_unref(bs);
2a81998a 2642 }
c2abccec
MK
2643 if (ret) {
2644 return 1;
2645 }
ae6b0ed6
SH
2646 return 0;
2647}
2648
6f176b48
HR
2649static int img_amend(int argc, char **argv)
2650{
2651 int c, ret = 0;
2652 char *options = NULL;
2653 QEMUOptionParameter *create_options = NULL, *options_param = NULL;
2654 const char *fmt = NULL, *filename;
2655 bool quiet = false;
2656 BlockDriverState *bs = NULL;
2657
2658 for (;;) {
2659 c = getopt(argc, argv, "hqf:o:");
2660 if (c == -1) {
2661 break;
2662 }
2663
2664 switch (c) {
2665 case 'h':
2666 case '?':
2667 help();
2668 break;
2669 case 'o':
2670 options = optarg;
2671 break;
2672 case 'f':
2673 fmt = optarg;
2674 break;
2675 case 'q':
2676 quiet = true;
2677 break;
2678 }
2679 }
2680
2681 if (optind != argc - 1) {
2682 help();
2683 }
2684
2685 if (!options) {
2686 help();
2687 }
2688
2689 filename = argv[argc - 1];
2690
2691 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
2692 if (!bs) {
2693 error_report("Could not open image '%s'", filename);
2694 ret = -1;
2695 goto out;
2696 }
2697
2698 fmt = bs->drv->format_name;
2699
2700 if (is_help_option(options)) {
2701 ret = print_block_option_help(filename, fmt);
2702 goto out;
2703 }
2704
2705 create_options = append_option_parameters(create_options,
2706 bs->drv->create_options);
2707 options_param = parse_option_parameters(options, create_options,
2708 options_param);
2709 if (options_param == NULL) {
2710 error_report("Invalid options for file format '%s'", fmt);
2711 ret = -1;
2712 goto out;
2713 }
2714
2715 ret = bdrv_amend_options(bs, options_param);
2716 if (ret < 0) {
2717 error_report("Error while amending options: %s", strerror(-ret));
2718 goto out;
2719 }
2720
2721out:
2722 if (bs) {
2723 bdrv_unref(bs);
2724 }
2725 free_option_parameters(create_options);
2726 free_option_parameters(options_param);
2727 if (ret) {
2728 return 1;
2729 }
2730 return 0;
2731}
2732
c227f099 2733static const img_cmd_t img_cmds[] = {
153859be
SB
2734#define DEF(option, callback, arg_string) \
2735 { option, callback },
2736#include "qemu-img-cmds.h"
2737#undef DEF
2738#undef GEN_DOCS
2739 { NULL, NULL, },
2740};
2741
ea2384d3
FB
2742int main(int argc, char **argv)
2743{
c227f099 2744 const img_cmd_t *cmd;
153859be 2745 const char *cmdname;
ea2384d3 2746
526eda14
MK
2747#ifdef CONFIG_POSIX
2748 signal(SIGPIPE, SIG_IGN);
2749#endif
2750
53f76e58
KW
2751 error_set_progname(argv[0]);
2752
2592c59a 2753 qemu_init_main_loop();
ea2384d3
FB
2754 bdrv_init();
2755 if (argc < 2)
2756 help();
153859be 2757 cmdname = argv[1];
8f9b157e 2758 argc--; argv++;
153859be
SB
2759
2760 /* find the command */
2761 for(cmd = img_cmds; cmd->name != NULL; cmd++) {
2762 if (!strcmp(cmdname, cmd->name)) {
2763 return cmd->handler(argc, argv);
2764 }
ea2384d3 2765 }
153859be
SB
2766
2767 /* not found */
2768 help();
ea2384d3
FB
2769 return 0;
2770}