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