blob: 5512f5bfe40556438cb8f4b2d8c2fcba0a1e8546 [file] [log] [blame]
bellardea2384d2004-08-01 21:59:26 +00001/*
bellardfb43f4d2006-08-07 21:34:46 +00002 * QEMU disk image utility
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardea2384d2004-08-01 21:59:26 +00006 * 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 */
Benoît Canetc054b3f2012-09-05 13:09:02 +020024#include "qapi-visit.h"
25#include "qapi/qmp-output-visitor.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010026#include "qapi/qmp/qjson.h"
pbrookfaf07962007-11-11 02:51:17 +000027#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010028#include "qemu/option.h"
29#include "qemu/error-report.h"
30#include "qemu/osdep.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010031#include "sysemu/sysemu.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010032#include "block/block_int.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080033#include "block/qapi.h"
Benoît Canetc054b3f2012-09-05 13:09:02 +020034#include <getopt.h>
aliguori9230eaf2009-03-28 17:55:19 +000035#include <stdio.h>
Miroslav Rezaninaf382d432013-02-13 09:09:40 +010036#include <stdarg.h>
bellardea2384d2004-08-01 21:59:26 +000037
bellarde8445332006-06-14 15:32:10 +000038#ifdef _WIN32
39#include <windows.h>
40#endif
41
Anthony Liguoric227f092009-10-01 16:12:16 -050042typedef struct img_cmd_t {
Stuart Brady153859b2009-06-07 00:42:17 +010043 const char *name;
44 int (*handler)(int argc, char **argv);
Anthony Liguoric227f092009-10-01 16:12:16 -050045} img_cmd_t;
Stuart Brady153859b2009-06-07 00:42:17 +010046
Federico Simoncelli8599ea42013-01-28 06:59:47 -050047enum {
48 OPTION_OUTPUT = 256,
49 OPTION_BACKING_CHAIN = 257,
50};
51
52typedef enum OutputFormat {
53 OFORMAT_JSON,
54 OFORMAT_HUMAN,
55} OutputFormat;
56
aurel32137519c2008-11-30 19:12:49 +000057/* Default to cache=writeback as data integrity is not important for qemu-tcg. */
Stefan Hajnocziadfe0782010-04-13 10:29:35 +010058#define BDRV_O_FLAGS BDRV_O_CACHE_WB
Federico Simoncelli661a0f72011-06-20 12:48:19 -040059#define BDRV_DEFAULT_CACHE "writeback"
aurel32137519c2008-11-30 19:12:49 +000060
bellardea2384d2004-08-01 21:59:26 +000061static void format_print(void *opaque, const char *name)
62{
63 printf(" %s", name);
64}
65
blueswir1d2c639d2009-01-24 18:19:25 +000066/* Please keep in synch with qemu-img.texi */
pbrook3f379ab2007-11-11 03:33:13 +000067static void help(void)
bellardea2384d2004-08-01 21:59:26 +000068{
Paolo Bonzinie00291c2010-02-04 16:49:56 +010069 const char *help_msg =
70 "qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
malc3f020d72010-02-08 12:04:56 +030071 "usage: qemu-img command [command options]\n"
72 "QEMU disk image utility\n"
73 "\n"
74 "Command syntax:\n"
Stuart Brady153859b2009-06-07 00:42:17 +010075#define DEF(option, callback, arg_string) \
76 " " arg_string "\n"
77#include "qemu-img-cmds.h"
78#undef DEF
79#undef GEN_DOCS
malc3f020d72010-02-08 12:04:56 +030080 "\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"
Federico Simoncelli661a0f72011-06-20 12:48:19 -040084 " 'cache' is the cache mode used to write the output disk image, the valid\n"
Liu Yuan80ccf932012-04-20 17:10:56 +080085 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
86 " 'directsync' and 'unsafe' (default for convert)\n"
malc3f020d72010-02-08 12:04:56 +030087 " 'size' is the disk image size in bytes. Optional suffixes\n"
Kevin Wolf5e009842013-06-05 14:19:27 +020088 " '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"
malc3f020d72010-02-08 12:04:56 +030091 " '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"
Wenchao Xiaef806542013-12-04 17:10:57 +080096 " '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"
malc3f020d72010-02-08 12:04:56 +0300101 " '-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"
Jes Sorensen6b837bc2011-03-30 14:16:25 +0200106 " '-p' show progress of command (only certain commands)\n"
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100107 " '-q' use Quiet mode - do not print any output (except errors)\n"
Peter Lieven11b66992013-10-24 12:07:05 +0200108 " '-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"
Benoît Canetc054b3f2012-09-05 13:09:02 +0200113 " '--output' takes the format in which the output must be done (human or json)\n"
Alexandre Derumierb2e10492013-09-02 19:07:24 +0100114 " '-n' skips the target volume creation (useful if the volume is created\n"
115 " prior to running qemu-img)\n"
malc3f020d72010-02-08 12:04:56 +0300116 "\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200117 "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"
Stefan Weil0546b8c2012-08-10 22:03:25 +0200121 " hiding corruption that has already occurred.\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200122 "\n"
malc3f020d72010-02-08 12:04:56 +0300123 "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"
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100128 " '-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";
Paolo Bonzinie00291c2010-02-04 16:49:56 +0100134
135 printf("%s\nSupported formats:", help_msg);
bellardea2384d2004-08-01 21:59:26 +0000136 bdrv_iterate_format(format_print, NULL);
137 printf("\n");
138 exit(1);
139}
140
Stefan Weil7c30f652013-06-16 17:01:05 +0200141static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100142{
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
bellardea2384d2004-08-01 21:59:26 +0000153#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;
ths3b46e622007-09-17 08:09:54 +0000198
bellardea2384d2004-08-01 21:59:26 +0000199 tcsetattr (0, TCSANOW, &tty);
200
201 atexit(term_exit);
202}
203
pbrook3f379ab2007-11-11 03:33:13 +0000204static int read_password(char *buf, int buf_size)
bellardea2384d2004-08-01 21:59:26 +0000205{
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
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100241static 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) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100249 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100250 return 1;
251 }
252
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100253 create_options = append_option_parameters(create_options,
254 drv->create_options);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100255
256 if (filename) {
257 proto_drv = bdrv_find_protocol(filename, true);
258 if (!proto_drv) {
259 error_report("Unknown protocol '%s'", filename);
260 return 1;
261 }
262 create_options = append_option_parameters(create_options,
263 proto_drv->create_options);
264 }
265
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100266 print_option_help(create_options);
267 free_option_parameters(create_options);
268 return 0;
269}
270
bellard75c23802004-08-27 21:28:58 +0000271static BlockDriverState *bdrv_new_open(const char *filename,
Sheng Yang9bc378c2010-01-29 10:15:06 +0800272 const char *fmt,
Daniel P. Berrangef0536bb2012-09-10 12:11:31 +0100273 int flags,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100274 bool require_io,
275 bool quiet)
bellard75c23802004-08-27 21:28:58 +0000276{
277 BlockDriverState *bs;
278 BlockDriver *drv;
279 char password[256];
Max Reitz34b5d2c2013-09-05 14:45:29 +0200280 Error *local_err = NULL;
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100281 int ret;
bellard75c23802004-08-27 21:28:58 +0000282
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100283 bs = bdrv_new("image");
Kevin Wolfad717132010-12-16 15:37:41 +0100284
bellard75c23802004-08-27 21:28:58 +0000285 if (fmt) {
286 drv = bdrv_find_format(fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900287 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100288 error_report("Unknown file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900289 goto fail;
290 }
bellard75c23802004-08-27 21:28:58 +0000291 } else {
292 drv = NULL;
293 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100294
Max Reitzddf56362014-02-18 18:33:06 +0100295 ret = bdrv_open(&bs, filename, NULL, NULL, flags, drv, &local_err);
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100296 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200297 error_report("Could not open '%s': %s", filename,
298 error_get_pretty(local_err));
299 error_free(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900300 goto fail;
bellard75c23802004-08-27 21:28:58 +0000301 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100302
Daniel P. Berrangef0536bb2012-09-10 12:11:31 +0100303 if (bdrv_is_encrypted(bs) && require_io) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100304 qprintf(quiet, "Disk image '%s' is encrypted.\n", filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900305 if (read_password(password, sizeof(password)) < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100306 error_report("No password given");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900307 goto fail;
308 }
309 if (bdrv_set_key(bs, password) < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100310 error_report("invalid password");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900311 goto fail;
312 }
bellard75c23802004-08-27 21:28:58 +0000313 }
314 return bs;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900315fail:
Max Reitzf67503e2014-02-18 18:33:05 +0100316 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900317 return NULL;
bellard75c23802004-08-27 21:28:58 +0000318}
319
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900320static int add_old_style_options(const char *fmt, QEMUOptionParameter *list,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100321 const char *base_filename,
322 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200323{
Kevin Wolfefa84d42009-05-18 16:42:12 +0200324 if (base_filename) {
325 if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100326 error_report("Backing file not supported for file format '%s'",
327 fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900328 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200329 }
330 }
331 if (base_fmt) {
332 if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100333 error_report("Backing file format not supported for file "
334 "format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900335 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200336 }
337 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900338 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200339}
340
bellardea2384d2004-08-01 21:59:26 +0000341static int img_create(int argc, char **argv)
342{
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200343 int c;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100344 uint64_t img_size = -1;
bellardea2384d2004-08-01 21:59:26 +0000345 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000346 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000347 const char *filename;
348 const char *base_filename = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200349 char *options = NULL;
Luiz Capitulino9b375252012-11-30 10:52:05 -0200350 Error *local_err = NULL;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100351 bool quiet = false;
ths3b46e622007-09-17 08:09:54 +0000352
bellardea2384d2004-08-01 21:59:26 +0000353 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100354 c = getopt(argc, argv, "F:b:f:he6o:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100355 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000356 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100357 }
bellardea2384d2004-08-01 21:59:26 +0000358 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100359 case '?':
bellardea2384d2004-08-01 21:59:26 +0000360 case 'h':
361 help();
362 break;
aliguori9230eaf2009-03-28 17:55:19 +0000363 case 'F':
364 base_fmt = optarg;
365 break;
bellardea2384d2004-08-01 21:59:26 +0000366 case 'b':
367 base_filename = optarg;
368 break;
369 case 'f':
370 fmt = optarg;
371 break;
372 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200373 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100374 "encryption\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100375 goto fail;
thsd8871c52007-10-24 16:11:42 +0000376 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200377 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100378 "compat6\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100379 goto fail;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200380 case 'o':
Kevin Wolf77386bf2014-02-21 16:24:04 +0100381 if (!is_valid_option_list(optarg)) {
382 error_report("Invalid option list: %s", optarg);
383 goto fail;
384 }
385 if (!options) {
386 options = g_strdup(optarg);
387 } else {
388 char *old_options = options;
389 options = g_strdup_printf("%s,%s", options, optarg);
390 g_free(old_options);
391 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200392 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100393 case 'q':
394 quiet = true;
395 break;
bellardea2384d2004-08-01 21:59:26 +0000396 }
397 }
aliguori9230eaf2009-03-28 17:55:19 +0000398
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900399 /* Get the filename */
Kevin Wolfa283cb62014-02-21 16:24:07 +0100400 filename = (optind < argc) ? argv[optind] : NULL;
401 if (options && has_help_option(options)) {
402 g_free(options);
403 return print_block_option_help(filename, fmt);
404 }
405
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100406 if (optind >= argc) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900407 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100408 }
Kevin Wolfa283cb62014-02-21 16:24:07 +0100409 optind++;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900410
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100411 /* Get image size, if specified */
412 if (optind < argc) {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100413 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +0100414 char *end;
415 sval = strtosz_suffix(argv[optind++], &end, STRTOSZ_DEFSUFFIX_B);
416 if (sval < 0 || *end) {
liguang79443392012-12-17 09:49:23 +0800417 if (sval == -ERANGE) {
418 error_report("Image size must be less than 8 EiB!");
419 } else {
420 error_report("Invalid image size specified! You may use k, M, "
Kevin Wolf5e009842013-06-05 14:19:27 +0200421 "G, T, P or E suffixes for ");
422 error_report("kilobytes, megabytes, gigabytes, terabytes, "
423 "petabytes and exabytes.");
liguang79443392012-12-17 09:49:23 +0800424 }
Kevin Wolf77386bf2014-02-21 16:24:04 +0100425 goto fail;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100426 }
427 img_size = (uint64_t)sval;
428 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200429 if (optind != argc) {
430 help();
431 }
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100432
Luiz Capitulino9b375252012-11-30 10:52:05 -0200433 bdrv_img_create(filename, fmt, base_filename, base_fmt,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100434 options, img_size, BDRV_O_FLAGS, &local_err, quiet);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100435 if (local_err) {
Max Reitzb70d8c22013-09-06 16:51:03 +0200436 error_report("%s: %s", filename, error_get_pretty(local_err));
Luiz Capitulino9b375252012-11-30 10:52:05 -0200437 error_free(local_err);
Kevin Wolf77386bf2014-02-21 16:24:04 +0100438 goto fail;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900439 }
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200440
Kevin Wolf77386bf2014-02-21 16:24:04 +0100441 g_free(options);
bellardea2384d2004-08-01 21:59:26 +0000442 return 0;
Kevin Wolf77386bf2014-02-21 16:24:04 +0100443
444fail:
445 g_free(options);
446 return 1;
bellardea2384d2004-08-01 21:59:26 +0000447}
448
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100449static void dump_json_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500450{
451 Error *errp = NULL;
452 QString *str;
453 QmpOutputVisitor *ov = qmp_output_visitor_new();
454 QObject *obj;
455 visit_type_ImageCheck(qmp_output_get_visitor(ov),
456 &check, NULL, &errp);
457 obj = qmp_output_get_qobject(ov);
458 str = qobject_to_json_pretty(obj);
459 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100460 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500461 qobject_decref(obj);
462 qmp_output_visitor_cleanup(ov);
463 QDECREF(str);
464}
465
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100466static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500467{
468 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100469 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500470 } else {
471 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100472 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
473 "Data may be corrupted, or further writes to the image "
474 "may corrupt it.\n",
475 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500476 }
477
478 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100479 qprintf(quiet,
480 "\n%" PRId64 " leaked clusters were found on the image.\n"
481 "This means waste of disk space, but no harm to data.\n",
482 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500483 }
484
485 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100486 qprintf(quiet,
487 "\n%" PRId64
488 " internal errors have occurred during the check.\n",
489 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500490 }
491 }
492
493 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100494 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
495 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
496 check->allocated_clusters, check->total_clusters,
497 check->allocated_clusters * 100.0 / check->total_clusters,
498 check->fragmented_clusters * 100.0 / check->allocated_clusters,
499 check->compressed_clusters * 100.0 /
500 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500501 }
502
503 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100504 qprintf(quiet,
505 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500506 }
507}
508
509static int collect_image_check(BlockDriverState *bs,
510 ImageCheck *check,
511 const char *filename,
512 const char *fmt,
513 int fix)
514{
515 int ret;
516 BdrvCheckResult result;
517
518 ret = bdrv_check(bs, &result, fix);
519 if (ret < 0) {
520 return ret;
521 }
522
523 check->filename = g_strdup(filename);
524 check->format = g_strdup(bdrv_get_format_name(bs));
525 check->check_errors = result.check_errors;
526 check->corruptions = result.corruptions;
527 check->has_corruptions = result.corruptions != 0;
528 check->leaks = result.leaks;
529 check->has_leaks = result.leaks != 0;
530 check->corruptions_fixed = result.corruptions_fixed;
531 check->has_corruptions_fixed = result.corruptions != 0;
532 check->leaks_fixed = result.leaks_fixed;
533 check->has_leaks_fixed = result.leaks != 0;
534 check->image_end_offset = result.image_end_offset;
535 check->has_image_end_offset = result.image_end_offset != 0;
536 check->total_clusters = result.bfi.total_clusters;
537 check->has_total_clusters = result.bfi.total_clusters != 0;
538 check->allocated_clusters = result.bfi.allocated_clusters;
539 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
540 check->fragmented_clusters = result.bfi.fragmented_clusters;
541 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100542 check->compressed_clusters = result.bfi.compressed_clusters;
543 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500544
545 return 0;
546}
547
Kevin Wolfe076f332010-06-29 11:43:13 +0200548/*
549 * Checks an image for consistency. Exit codes:
550 *
551 * 0 - Check completed, image is good
552 * 1 - Check not completed because of internal errors
553 * 2 - Check completed, image is corrupted
554 * 3 - Check completed, image has leaked clusters, but is good otherwise
555 */
aliguori15859692009-04-21 23:11:53 +0000556static int img_check(int argc, char **argv)
557{
558 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500559 OutputFormat output_format = OFORMAT_HUMAN;
560 const char *filename, *fmt, *output;
aliguori15859692009-04-21 23:11:53 +0000561 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200562 int fix = 0;
Stefan Hajnoczi058f8f12012-08-09 13:05:56 +0100563 int flags = BDRV_O_FLAGS | BDRV_O_CHECK;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500564 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100565 bool quiet = false;
aliguori15859692009-04-21 23:11:53 +0000566
567 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500568 output = NULL;
aliguori15859692009-04-21 23:11:53 +0000569 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500570 int option_index = 0;
571 static const struct option long_options[] = {
572 {"help", no_argument, 0, 'h'},
573 {"format", required_argument, 0, 'f'},
574 {"repair", no_argument, 0, 'r'},
575 {"output", required_argument, 0, OPTION_OUTPUT},
576 {0, 0, 0, 0}
577 };
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100578 c = getopt_long(argc, argv, "f:hr:q",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500579 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100580 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000581 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100582 }
aliguori15859692009-04-21 23:11:53 +0000583 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100584 case '?':
aliguori15859692009-04-21 23:11:53 +0000585 case 'h':
586 help();
587 break;
588 case 'f':
589 fmt = optarg;
590 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200591 case 'r':
592 flags |= BDRV_O_RDWR;
593
594 if (!strcmp(optarg, "leaks")) {
595 fix = BDRV_FIX_LEAKS;
596 } else if (!strcmp(optarg, "all")) {
597 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
598 } else {
599 help();
600 }
601 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500602 case OPTION_OUTPUT:
603 output = optarg;
604 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100605 case 'q':
606 quiet = true;
607 break;
aliguori15859692009-04-21 23:11:53 +0000608 }
609 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200610 if (optind != argc - 1) {
aliguori15859692009-04-21 23:11:53 +0000611 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100612 }
aliguori15859692009-04-21 23:11:53 +0000613 filename = argv[optind++];
614
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500615 if (output && !strcmp(output, "json")) {
616 output_format = OFORMAT_JSON;
617 } else if (output && !strcmp(output, "human")) {
618 output_format = OFORMAT_HUMAN;
619 } else if (output) {
620 error_report("--output must be used with human or json as argument.");
621 return 1;
622 }
623
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100624 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900625 if (!bs) {
626 return 1;
627 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500628
629 check = g_new0(ImageCheck, 1);
630 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200631
632 if (ret == -ENOTSUP) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500633 if (output_format == OFORMAT_HUMAN) {
634 error_report("This image format does not support checks");
635 }
Peter Lievenfefddf92013-10-24 08:53:34 +0200636 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500637 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200638 }
639
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500640 if (check->corruptions_fixed || check->leaks_fixed) {
641 int corruptions_fixed, leaks_fixed;
642
643 leaks_fixed = check->leaks_fixed;
644 corruptions_fixed = check->corruptions_fixed;
645
646 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100647 qprintf(quiet,
648 "The following inconsistencies were found and repaired:\n\n"
649 " %" PRId64 " leaked clusters\n"
650 " %" PRId64 " corruptions\n\n"
651 "Double checking the fixed image now...\n",
652 check->leaks_fixed,
653 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500654 }
655
656 ret = collect_image_check(bs, check, filename, fmt, 0);
657
658 check->leaks_fixed = leaks_fixed;
659 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200660 }
661
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500662 switch (output_format) {
663 case OFORMAT_HUMAN:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100664 dump_human_image_check(check, quiet);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500665 break;
666 case OFORMAT_JSON:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100667 dump_json_image_check(check, quiet);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500668 break;
669 }
670
671 if (ret || check->check_errors) {
672 ret = 1;
673 goto fail;
674 }
675
676 if (check->corruptions) {
677 ret = 2;
678 } else if (check->leaks) {
679 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200680 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500681 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000682 }
683
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500684fail:
685 qapi_free_ImageCheck(check);
Fam Zheng4f6fd342013-08-23 09:14:47 +0800686 bdrv_unref(bs);
Kevin Wolfe076f332010-06-29 11:43:13 +0200687
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500688 return ret;
aliguori15859692009-04-21 23:11:53 +0000689}
690
bellardea2384d2004-08-01 21:59:26 +0000691static int img_commit(int argc, char **argv)
692{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400693 int c, ret, flags;
694 const char *filename, *fmt, *cache;
bellardea2384d2004-08-01 21:59:26 +0000695 BlockDriverState *bs;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100696 bool quiet = false;
bellardea2384d2004-08-01 21:59:26 +0000697
698 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400699 cache = BDRV_DEFAULT_CACHE;
bellardea2384d2004-08-01 21:59:26 +0000700 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100701 c = getopt(argc, argv, "f:ht:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100702 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000703 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100704 }
bellardea2384d2004-08-01 21:59:26 +0000705 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100706 case '?':
bellardea2384d2004-08-01 21:59:26 +0000707 case 'h':
708 help();
709 break;
710 case 'f':
711 fmt = optarg;
712 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400713 case 't':
714 cache = optarg;
715 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100716 case 'q':
717 quiet = true;
718 break;
bellardea2384d2004-08-01 21:59:26 +0000719 }
720 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200721 if (optind != argc - 1) {
bellardea2384d2004-08-01 21:59:26 +0000722 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100723 }
bellardea2384d2004-08-01 21:59:26 +0000724 filename = argv[optind++];
725
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400726 flags = BDRV_O_RDWR;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100727 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400728 if (ret < 0) {
729 error_report("Invalid cache option: %s", cache);
730 return -1;
731 }
732
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100733 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900734 if (!bs) {
735 return 1;
736 }
bellardea2384d2004-08-01 21:59:26 +0000737 ret = bdrv_commit(bs);
738 switch(ret) {
739 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100740 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000741 break;
742 case -ENOENT:
Jes Sorensen15654a62010-12-16 14:31:53 +0100743 error_report("No disk inserted");
bellardea2384d2004-08-01 21:59:26 +0000744 break;
745 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +0100746 error_report("Image is read-only");
bellardea2384d2004-08-01 21:59:26 +0000747 break;
748 case -ENOTSUP:
Jes Sorensen15654a62010-12-16 14:31:53 +0100749 error_report("Image is already committed");
bellardea2384d2004-08-01 21:59:26 +0000750 break;
751 default:
Jes Sorensen15654a62010-12-16 14:31:53 +0100752 error_report("Error while committing image");
bellardea2384d2004-08-01 21:59:26 +0000753 break;
754 }
755
Fam Zheng4f6fd342013-08-23 09:14:47 +0800756 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900757 if (ret) {
758 return 1;
759 }
bellardea2384d2004-08-01 21:59:26 +0000760 return 0;
761}
762
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400763/*
thsf58c7b32008-06-05 21:53:49 +0000764 * Returns true iff the first sector pointed to by 'buf' contains at least
765 * a non-NUL byte.
766 *
767 * 'pnum' is set to the number of sectors (including and immediately following
768 * the first one) that are known to be in the same allocated/unallocated state.
769 */
bellardea2384d2004-08-01 21:59:26 +0000770static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
771{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000772 bool is_zero;
773 int i;
bellardea2384d2004-08-01 21:59:26 +0000774
775 if (n <= 0) {
776 *pnum = 0;
777 return 0;
778 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000779 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +0000780 for(i = 1; i < n; i++) {
781 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000782 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +0000783 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000784 }
bellardea2384d2004-08-01 21:59:26 +0000785 }
786 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000787 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +0000788}
789
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100790/*
Kevin Wolfa22f1232011-08-26 15:27:13 +0200791 * Like is_allocated_sectors, but if the buffer starts with a used sector,
792 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
793 * breaking up write requests for only small sparse areas.
794 */
795static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
796 int min)
797{
798 int ret;
799 int num_checked, num_used;
800
801 if (n < min) {
802 min = n;
803 }
804
805 ret = is_allocated_sectors(buf, n, pnum);
806 if (!ret) {
807 return ret;
808 }
809
810 num_used = *pnum;
811 buf += BDRV_SECTOR_SIZE * *pnum;
812 n -= *pnum;
813 num_checked = num_used;
814
815 while (n > 0) {
816 ret = is_allocated_sectors(buf, n, pnum);
817
818 buf += BDRV_SECTOR_SIZE * *pnum;
819 n -= *pnum;
820 num_checked += *pnum;
821 if (ret) {
822 num_used = num_checked;
823 } else if (*pnum >= min) {
824 break;
825 }
826 }
827
828 *pnum = num_used;
829 return 1;
830}
831
832/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100833 * Compares two buffers sector by sector. Returns 0 if the first sector of both
834 * buffers matches, non-zero otherwise.
835 *
836 * pnum is set to the number of sectors (including and immediately following
837 * the first one) that are known to have the same comparison result
838 */
839static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
840 int *pnum)
841{
842 int res, i;
843
844 if (n <= 0) {
845 *pnum = 0;
846 return 0;
847 }
848
849 res = !!memcmp(buf1, buf2, 512);
850 for(i = 1; i < n; i++) {
851 buf1 += 512;
852 buf2 += 512;
853
854 if (!!memcmp(buf1, buf2, 512) != res) {
855 break;
856 }
857 }
858
859 *pnum = i;
860 return res;
861}
862
Kevin Wolf80ee15a2009-09-15 12:30:43 +0200863#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +0000864
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100865static int64_t sectors_to_bytes(int64_t sectors)
866{
867 return sectors << BDRV_SECTOR_BITS;
868}
869
870static int64_t sectors_to_process(int64_t total, int64_t from)
871{
872 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
873}
874
875/*
876 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
877 *
878 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
879 * data and negative value on error.
880 *
881 * @param bs: Driver used for accessing file
882 * @param sect_num: Number of first sector to check
883 * @param sect_count: Number of sectors to check
884 * @param filename: Name of disk file we are checking (logging purpose)
885 * @param buffer: Allocated buffer for storing read data
886 * @param quiet: Flag for quiet mode
887 */
888static int check_empty_sectors(BlockDriverState *bs, int64_t sect_num,
889 int sect_count, const char *filename,
890 uint8_t *buffer, bool quiet)
891{
892 int pnum, ret = 0;
893 ret = bdrv_read(bs, sect_num, buffer, sect_count);
894 if (ret < 0) {
895 error_report("Error while reading offset %" PRId64 " of %s: %s",
896 sectors_to_bytes(sect_num), filename, strerror(-ret));
897 return ret;
898 }
899 ret = is_allocated_sectors(buffer, sect_count, &pnum);
900 if (ret || pnum != sect_count) {
901 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
902 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
903 return 1;
904 }
905
906 return 0;
907}
908
909/*
910 * Compares two images. Exit codes:
911 *
912 * 0 - Images are identical
913 * 1 - Images differ
914 * >1 - Error occurred
915 */
916static int img_compare(int argc, char **argv)
917{
918 const char *fmt1 = NULL, *fmt2 = NULL, *filename1, *filename2;
919 BlockDriverState *bs1, *bs2;
920 int64_t total_sectors1, total_sectors2;
921 uint8_t *buf1 = NULL, *buf2 = NULL;
922 int pnum1, pnum2;
923 int allocated1, allocated2;
924 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
925 bool progress = false, quiet = false, strict = false;
926 int64_t total_sectors;
927 int64_t sector_num = 0;
928 int64_t nb_sectors;
929 int c, pnum;
930 uint64_t bs_sectors;
931 uint64_t progress_base;
932
933 for (;;) {
934 c = getopt(argc, argv, "hpf:F:sq");
935 if (c == -1) {
936 break;
937 }
938 switch (c) {
939 case '?':
940 case 'h':
941 help();
942 break;
943 case 'f':
944 fmt1 = optarg;
945 break;
946 case 'F':
947 fmt2 = optarg;
948 break;
949 case 'p':
950 progress = true;
951 break;
952 case 'q':
953 quiet = true;
954 break;
955 case 's':
956 strict = true;
957 break;
958 }
959 }
960
961 /* Progress is not shown in Quiet mode */
962 if (quiet) {
963 progress = false;
964 }
965
966
Kevin Wolffc11eb22013-08-05 10:53:04 +0200967 if (optind != argc - 2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100968 help();
969 }
970 filename1 = argv[optind++];
971 filename2 = argv[optind++];
972
973 /* Initialize before goto out */
974 qemu_progress_init(progress, 2.0);
975
976 bs1 = bdrv_new_open(filename1, fmt1, BDRV_O_FLAGS, true, quiet);
977 if (!bs1) {
978 error_report("Can't open file %s", filename1);
979 ret = 2;
980 goto out3;
981 }
982
983 bs2 = bdrv_new_open(filename2, fmt2, BDRV_O_FLAGS, true, quiet);
984 if (!bs2) {
985 error_report("Can't open file %s", filename2);
986 ret = 2;
987 goto out2;
988 }
989
990 buf1 = qemu_blockalign(bs1, IO_BUF_SIZE);
991 buf2 = qemu_blockalign(bs2, IO_BUF_SIZE);
992 bdrv_get_geometry(bs1, &bs_sectors);
993 total_sectors1 = bs_sectors;
994 bdrv_get_geometry(bs2, &bs_sectors);
995 total_sectors2 = bs_sectors;
996 total_sectors = MIN(total_sectors1, total_sectors2);
997 progress_base = MAX(total_sectors1, total_sectors2);
998
999 qemu_progress_print(0, 100);
1000
1001 if (strict && total_sectors1 != total_sectors2) {
1002 ret = 1;
1003 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1004 goto out;
1005 }
1006
1007 for (;;) {
1008 nb_sectors = sectors_to_process(total_sectors, sector_num);
1009 if (nb_sectors <= 0) {
1010 break;
1011 }
1012 allocated1 = bdrv_is_allocated_above(bs1, NULL, sector_num, nb_sectors,
1013 &pnum1);
1014 if (allocated1 < 0) {
1015 ret = 3;
1016 error_report("Sector allocation test failed for %s", filename1);
1017 goto out;
1018 }
1019
1020 allocated2 = bdrv_is_allocated_above(bs2, NULL, sector_num, nb_sectors,
1021 &pnum2);
1022 if (allocated2 < 0) {
1023 ret = 3;
1024 error_report("Sector allocation test failed for %s", filename2);
1025 goto out;
1026 }
1027 nb_sectors = MIN(pnum1, pnum2);
1028
1029 if (allocated1 == allocated2) {
1030 if (allocated1) {
1031 ret = bdrv_read(bs1, sector_num, buf1, nb_sectors);
1032 if (ret < 0) {
1033 error_report("Error while reading offset %" PRId64 " of %s:"
1034 " %s", sectors_to_bytes(sector_num), filename1,
1035 strerror(-ret));
1036 ret = 4;
1037 goto out;
1038 }
1039 ret = bdrv_read(bs2, sector_num, buf2, nb_sectors);
1040 if (ret < 0) {
1041 error_report("Error while reading offset %" PRId64
1042 " of %s: %s", sectors_to_bytes(sector_num),
1043 filename2, strerror(-ret));
1044 ret = 4;
1045 goto out;
1046 }
1047 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1048 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001049 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1050 sectors_to_bytes(
1051 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001052 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001053 goto out;
1054 }
1055 }
1056 } else {
1057 if (strict) {
1058 ret = 1;
1059 qprintf(quiet, "Strict mode: Offset %" PRId64
1060 " allocation mismatch!\n",
1061 sectors_to_bytes(sector_num));
1062 goto out;
1063 }
1064
1065 if (allocated1) {
1066 ret = check_empty_sectors(bs1, sector_num, nb_sectors,
1067 filename1, buf1, quiet);
1068 } else {
1069 ret = check_empty_sectors(bs2, sector_num, nb_sectors,
1070 filename2, buf1, quiet);
1071 }
1072 if (ret) {
1073 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001074 error_report("Error while reading offset %" PRId64 ": %s",
1075 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001076 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001077 }
1078 goto out;
1079 }
1080 }
1081 sector_num += nb_sectors;
1082 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1083 }
1084
1085 if (total_sectors1 != total_sectors2) {
1086 BlockDriverState *bs_over;
1087 int64_t total_sectors_over;
1088 const char *filename_over;
1089
1090 qprintf(quiet, "Warning: Image size mismatch!\n");
1091 if (total_sectors1 > total_sectors2) {
1092 total_sectors_over = total_sectors1;
1093 bs_over = bs1;
1094 filename_over = filename1;
1095 } else {
1096 total_sectors_over = total_sectors2;
1097 bs_over = bs2;
1098 filename_over = filename2;
1099 }
1100
1101 for (;;) {
1102 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1103 if (nb_sectors <= 0) {
1104 break;
1105 }
1106 ret = bdrv_is_allocated_above(bs_over, NULL, sector_num,
1107 nb_sectors, &pnum);
1108 if (ret < 0) {
1109 ret = 3;
1110 error_report("Sector allocation test failed for %s",
1111 filename_over);
1112 goto out;
1113
1114 }
1115 nb_sectors = pnum;
1116 if (ret) {
1117 ret = check_empty_sectors(bs_over, sector_num, nb_sectors,
1118 filename_over, buf1, quiet);
1119 if (ret) {
1120 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001121 error_report("Error while reading offset %" PRId64
1122 " of %s: %s", sectors_to_bytes(sector_num),
1123 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001124 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001125 }
1126 goto out;
1127 }
1128 }
1129 sector_num += nb_sectors;
1130 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1131 }
1132 }
1133
1134 qprintf(quiet, "Images are identical.\n");
1135 ret = 0;
1136
1137out:
Fam Zheng4f6fd342013-08-23 09:14:47 +08001138 bdrv_unref(bs2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001139 qemu_vfree(buf1);
1140 qemu_vfree(buf2);
1141out2:
Fam Zheng4f6fd342013-08-23 09:14:47 +08001142 bdrv_unref(bs1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001143out3:
1144 qemu_progress_end();
1145 return ret;
1146}
1147
bellardea2384d2004-08-01 21:59:26 +00001148static int img_convert(int argc, char **argv)
1149{
Peter Lieven24f833c2013-11-27 11:07:07 +01001150 int c, n, n1, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001151 int64_t ret = 0;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001152 int progress = 0, flags;
1153 const char *fmt, *out_fmt, *cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001154 BlockDriver *drv, *proto_drv;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001155 BlockDriverState **bs = NULL, *out_bs = NULL;
Peter Lieven802c3d42013-12-05 15:54:53 +01001156 int64_t total_sectors, nb_sectors, sector_num, bs_offset;
ths96b8f132007-12-17 01:35:20 +00001157 uint64_t bs_sectors;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001158 uint8_t * buf = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001159 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardea2384d2004-08-01 21:59:26 +00001160 const uint8_t *buf1;
bellardfaea38e2006-08-05 21:31:00 +00001161 BlockDriverInfo bdi;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001162 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfa18953f2010-10-14 15:46:04 +02001163 QEMUOptionParameter *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001164 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001165 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001166 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001167 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001168 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001169 QemuOpts *sn_opts = NULL;
bellardea2384d2004-08-01 21:59:26 +00001170
Kevin Wolf2dc83282014-02-21 16:24:05 +01001171 /* Initialize before goto out */
1172 qemu_progress_init(progress, 1.0);
1173
bellardea2384d2004-08-01 21:59:26 +00001174 fmt = NULL;
1175 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001176 cache = "unsafe";
thsf58c7b32008-06-05 21:53:49 +00001177 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001178 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001179 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001180 for(;;) {
Wenchao Xiaef806542013-12-04 17:10:57 +08001181 c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qnl:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001182 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001183 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001184 }
bellardea2384d2004-08-01 21:59:26 +00001185 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001186 case '?':
bellardea2384d2004-08-01 21:59:26 +00001187 case 'h':
1188 help();
1189 break;
1190 case 'f':
1191 fmt = optarg;
1192 break;
1193 case 'O':
1194 out_fmt = optarg;
1195 break;
thsf58c7b32008-06-05 21:53:49 +00001196 case 'B':
1197 out_baseimg = optarg;
1198 break;
bellardea2384d2004-08-01 21:59:26 +00001199 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001200 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001201 break;
1202 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001203 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001204 "encryption\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001205 ret = -1;
1206 goto out;
thsec36ba12007-09-16 21:59:02 +00001207 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001208 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001209 "compat6\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001210 ret = -1;
1211 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001212 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001213 if (!is_valid_option_list(optarg)) {
1214 error_report("Invalid option list: %s", optarg);
1215 ret = -1;
1216 goto out;
1217 }
1218 if (!options) {
1219 options = g_strdup(optarg);
1220 } else {
1221 char *old_options = options;
1222 options = g_strdup_printf("%s,%s", options, optarg);
1223 g_free(old_options);
1224 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001225 break;
edison51ef6722010-09-21 19:58:41 -07001226 case 's':
1227 snapshot_name = optarg;
1228 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001229 case 'l':
1230 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
1231 sn_opts = qemu_opts_parse(&internal_snapshot_opts, optarg, 0);
1232 if (!sn_opts) {
1233 error_report("Failed in parsing snapshot param '%s'",
1234 optarg);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001235 ret = -1;
1236 goto out;
Wenchao Xiaef806542013-12-04 17:10:57 +08001237 }
1238 } else {
1239 snapshot_name = optarg;
1240 }
1241 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001242 case 'S':
1243 {
1244 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001245 char *end;
1246 sval = strtosz_suffix(optarg, &end, STRTOSZ_DEFSUFFIX_B);
1247 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001248 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001249 ret = -1;
1250 goto out;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001251 }
1252
1253 min_sparse = sval / BDRV_SECTOR_SIZE;
1254 break;
1255 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001256 case 'p':
1257 progress = 1;
1258 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001259 case 't':
1260 cache = optarg;
1261 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001262 case 'q':
1263 quiet = true;
1264 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001265 case 'n':
1266 skip_create = 1;
1267 break;
bellardea2384d2004-08-01 21:59:26 +00001268 }
1269 }
ths3b46e622007-09-17 08:09:54 +00001270
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001271 if (quiet) {
1272 progress = 0;
1273 }
1274
balrog926c2d22007-10-31 01:11:44 +00001275 bs_n = argc - optind - 1;
Kevin Wolfa283cb62014-02-21 16:24:07 +01001276 out_filename = bs_n >= 1 ? argv[argc - 1] : NULL;
thsf58c7b32008-06-05 21:53:49 +00001277
Kevin Wolf2dc83282014-02-21 16:24:05 +01001278 if (options && has_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001279 ret = print_block_option_help(out_filename, out_fmt);
1280 goto out;
1281 }
1282
Kevin Wolfa283cb62014-02-21 16:24:07 +01001283 if (bs_n < 1) {
1284 help();
1285 }
1286
1287
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001288 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001289 error_report("-B makes no sense when concatenating multiple input "
1290 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001291 ret = -1;
1292 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001293 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001294
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001295 qemu_progress_print(0, 100);
1296
Anthony Liguori7267c092011-08-20 22:09:37 -05001297 bs = g_malloc0(bs_n * sizeof(BlockDriverState *));
balrog926c2d22007-10-31 01:11:44 +00001298
1299 total_sectors = 0;
1300 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001301 bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS, true,
1302 quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001303 if (!bs[bs_i]) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001304 error_report("Could not open '%s'", argv[optind + bs_i]);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001305 ret = -1;
1306 goto out;
1307 }
balrog926c2d22007-10-31 01:11:44 +00001308 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1309 total_sectors += bs_sectors;
1310 }
bellardea2384d2004-08-01 21:59:26 +00001311
Wenchao Xiaef806542013-12-04 17:10:57 +08001312 if (sn_opts) {
1313 ret = bdrv_snapshot_load_tmp(bs[0],
1314 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1315 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1316 &local_err);
1317 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001318 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001319 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001320 ret = -1;
1321 goto out;
1322 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001323
1324 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001325 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001326 if (local_err) {
Wenchao Xiaef806542013-12-04 17:10:57 +08001327 error_report("Failed to load snapshot: %s",
1328 error_get_pretty(local_err));
1329 error_free(local_err);
1330 ret = -1;
1331 goto out;
edison51ef6722010-09-21 19:58:41 -07001332 }
1333
Kevin Wolfefa84d42009-05-18 16:42:12 +02001334 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001335 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001336 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001337 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001338 ret = -1;
1339 goto out;
1340 }
balrog926c2d22007-10-31 01:11:44 +00001341
Kevin Wolf98289622013-07-10 15:47:39 +02001342 proto_drv = bdrv_find_protocol(out_filename, true);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001343 if (!proto_drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001344 error_report("Unknown protocol '%s'", out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001345 ret = -1;
1346 goto out;
1347 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001348
1349 create_options = append_option_parameters(create_options,
1350 drv->create_options);
1351 create_options = append_option_parameters(create_options,
1352 proto_drv->create_options);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02001353
Kevin Wolfefa84d42009-05-18 16:42:12 +02001354 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001355 param = parse_option_parameters(options, create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001356 if (param == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001357 error_report("Invalid options for file format '%s'.", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001358 ret = -1;
1359 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001360 }
1361 } else {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001362 param = parse_option_parameters("", create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001363 }
1364
1365 set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512);
Jes Sorenseneec77d92010-12-07 17:44:34 +01001366 ret = add_old_style_options(out_fmt, param, out_baseimg, NULL);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001367 if (ret < 0) {
1368 goto out;
1369 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001370
Kevin Wolfa18953f2010-10-14 15:46:04 +02001371 /* Get backing file name if -o backing_file was used */
1372 out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
1373 if (out_baseimg_param) {
1374 out_baseimg = out_baseimg_param->value.s;
1375 }
1376
Kevin Wolfefa84d42009-05-18 16:42:12 +02001377 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01001378 if (compress) {
Kevin Wolfefa84d42009-05-18 16:42:12 +02001379 QEMUOptionParameter *encryption =
1380 get_option_parameter(param, BLOCK_OPT_ENCRYPT);
Kevin Wolf41521fa2011-10-18 16:19:42 +02001381 QEMUOptionParameter *preallocation =
1382 get_option_parameter(param, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001383
1384 if (!drv->bdrv_write_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001385 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001386 ret = -1;
1387 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001388 }
1389
1390 if (encryption && encryption->value.n) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001391 error_report("Compression and encryption not supported at "
1392 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001393 ret = -1;
1394 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001395 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02001396
1397 if (preallocation && preallocation->value.s
1398 && strcmp(preallocation->value.s, "off"))
1399 {
1400 error_report("Compression and preallocation not supported at "
1401 "the same time");
1402 ret = -1;
1403 goto out;
1404 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001405 }
1406
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001407 if (!skip_create) {
1408 /* Create the new image */
Max Reitzcc84d902013-09-06 17:14:26 +02001409 ret = bdrv_create(drv, out_filename, param, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001410 if (ret < 0) {
Max Reitzcc84d902013-09-06 17:14:26 +02001411 error_report("%s: error while converting %s: %s",
1412 out_filename, out_fmt, error_get_pretty(local_err));
1413 error_free(local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001414 goto out;
bellardea2384d2004-08-01 21:59:26 +00001415 }
1416 }
ths3b46e622007-09-17 08:09:54 +00001417
Peter Lieven5a37b602013-10-24 12:07:06 +02001418 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001419 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001420 if (ret < 0) {
1421 error_report("Invalid cache option: %s", cache);
1422 return -1;
1423 }
1424
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001425 out_bs = bdrv_new_open(out_filename, out_fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001426 if (!out_bs) {
1427 ret = -1;
1428 goto out;
1429 }
bellardea2384d2004-08-01 21:59:26 +00001430
balrog926c2d22007-10-31 01:11:44 +00001431 bs_i = 0;
1432 bs_offset = 0;
1433 bdrv_get_geometry(bs[0], &bs_sectors);
Peter Lievenf2521c92013-11-27 11:07:06 +01001434
1435 /* increase bufsectors from the default 4096 (2M) if opt_transfer_length
1436 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
1437 * as maximum. */
1438 bufsectors = MIN(32768,
1439 MAX(bufsectors, MAX(out_bs->bl.opt_transfer_length,
1440 out_bs->bl.discard_alignment))
1441 );
1442
1443 buf = qemu_blockalign(out_bs, bufsectors * BDRV_SECTOR_SIZE);
balrog926c2d22007-10-31 01:11:44 +00001444
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001445 if (skip_create) {
1446 int64_t output_length = bdrv_getlength(out_bs);
1447 if (output_length < 0) {
1448 error_report("unable to get output image length: %s\n",
1449 strerror(-output_length));
1450 ret = -1;
1451 goto out;
1452 } else if (output_length < total_sectors << BDRV_SECTOR_BITS) {
1453 error_report("output file is smaller than input file");
1454 ret = -1;
1455 goto out;
1456 }
1457 }
1458
Peter Lieven24f833c2013-11-27 11:07:07 +01001459 cluster_sectors = 0;
1460 ret = bdrv_get_info(out_bs, &bdi);
1461 if (ret < 0) {
1462 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001463 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001464 goto out;
1465 }
Peter Lieven24f833c2013-11-27 11:07:07 +01001466 } else {
1467 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
1468 }
1469
1470 if (compress) {
1471 if (cluster_sectors <= 0 || cluster_sectors > bufsectors) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001472 error_report("invalid cluster size");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001473 ret = -1;
1474 goto out;
1475 }
bellardea2384d2004-08-01 21:59:26 +00001476 sector_num = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001477
1478 nb_sectors = total_sectors;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001479
bellardea2384d2004-08-01 21:59:26 +00001480 for(;;) {
balrog926c2d22007-10-31 01:11:44 +00001481 int64_t bs_num;
1482 int remainder;
1483 uint8_t *buf2;
1484
bellardea2384d2004-08-01 21:59:26 +00001485 nb_sectors = total_sectors - sector_num;
1486 if (nb_sectors <= 0)
1487 break;
1488 if (nb_sectors >= cluster_sectors)
1489 n = cluster_sectors;
1490 else
1491 n = nb_sectors;
balrog926c2d22007-10-31 01:11:44 +00001492
1493 bs_num = sector_num - bs_offset;
1494 assert (bs_num >= 0);
1495 remainder = n;
1496 buf2 = buf;
1497 while (remainder > 0) {
1498 int nlow;
1499 while (bs_num == bs_sectors) {
1500 bs_i++;
1501 assert (bs_i < bs_n);
1502 bs_offset += bs_sectors;
1503 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1504 bs_num = 0;
Blue Swirl0bfcd592010-05-22 08:02:12 +00001505 /* printf("changing part: sector_num=%" PRId64 ", "
1506 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
1507 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
balrog926c2d22007-10-31 01:11:44 +00001508 }
1509 assert (bs_num < bs_sectors);
1510
1511 nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder;
1512
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001513 ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow);
1514 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001515 error_report("error while reading sector %" PRId64 ": %s",
1516 bs_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001517 goto out;
1518 }
balrog926c2d22007-10-31 01:11:44 +00001519
1520 buf2 += nlow * 512;
1521 bs_num += nlow;
1522
1523 remainder -= nlow;
1524 }
1525 assert (remainder == 0);
1526
Stefan Hajnoczi54f106d2013-04-15 17:17:33 +02001527 if (!buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)) {
1528 ret = bdrv_write_compressed(out_bs, sector_num, buf, n);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001529 if (ret != 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001530 error_report("error while compressing sector %" PRId64
1531 ": %s", sector_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001532 goto out;
1533 }
bellardea2384d2004-08-01 21:59:26 +00001534 }
1535 sector_num += n;
Peter Lieven13c28af2013-11-27 11:07:01 +01001536 qemu_progress_print(100.0 * sector_num / total_sectors, 0);
bellardea2384d2004-08-01 21:59:26 +00001537 }
bellardfaea38e2006-08-05 21:31:00 +00001538 /* signal EOF to align */
1539 bdrv_write_compressed(out_bs, 0, NULL, 0);
bellardea2384d2004-08-01 21:59:26 +00001540 } else {
Peter Lieven802c3d42013-12-05 15:54:53 +01001541 int64_t sectors_to_read, sectors_read, sector_num_next_status;
1542 bool count_allocated_sectors;
Peter Lieven11b66992013-10-24 12:07:05 +02001543 int has_zero_init = min_sparse ? bdrv_has_zero_init(out_bs) : 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02001544
Peter Lieven5a37b602013-10-24 12:07:06 +02001545 if (!has_zero_init && bdrv_can_write_zeroes_with_unmap(out_bs)) {
1546 ret = bdrv_make_zero(out_bs, BDRV_REQ_MAY_UNMAP);
1547 if (ret < 0) {
1548 goto out;
1549 }
1550 has_zero_init = 1;
1551 }
1552
Peter Lieven802c3d42013-12-05 15:54:53 +01001553 sectors_to_read = total_sectors;
1554 count_allocated_sectors = progress && (out_baseimg || has_zero_init);
1555restart:
thsf58c7b32008-06-05 21:53:49 +00001556 sector_num = 0; // total number of sectors converted so far
Peter Lieven802c3d42013-12-05 15:54:53 +01001557 sectors_read = 0;
1558 sector_num_next_status = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001559
bellardea2384d2004-08-01 21:59:26 +00001560 for(;;) {
1561 nb_sectors = total_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001562 if (nb_sectors <= 0) {
Peter Lieven802c3d42013-12-05 15:54:53 +01001563 if (count_allocated_sectors) {
1564 sectors_to_read = sectors_read;
1565 count_allocated_sectors = false;
1566 goto restart;
1567 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001568 ret = 0;
bellardea2384d2004-08-01 21:59:26 +00001569 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001570 }
balrog926c2d22007-10-31 01:11:44 +00001571
1572 while (sector_num - bs_offset >= bs_sectors) {
1573 bs_i ++;
1574 assert (bs_i < bs_n);
1575 bs_offset += bs_sectors;
1576 bdrv_get_geometry(bs[bs_i], &bs_sectors);
Blue Swirl0bfcd592010-05-22 08:02:12 +00001577 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
1578 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
balrog926c2d22007-10-31 01:11:44 +00001579 sector_num, bs_i, bs_offset, bs_sectors); */
1580 }
1581
Peter Lieven13c28af2013-11-27 11:07:01 +01001582 if ((out_baseimg || has_zero_init) &&
1583 sector_num >= sector_num_next_status) {
1584 n = nb_sectors > INT_MAX ? INT_MAX : nb_sectors;
1585 ret = bdrv_get_block_status(bs[bs_i], sector_num - bs_offset,
1586 n, &n1);
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001587 if (ret < 0) {
Peter Lieven13c28af2013-11-27 11:07:01 +01001588 error_report("error while reading block status of sector %"
1589 PRId64 ": %s", sector_num - bs_offset,
1590 strerror(-ret));
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001591 goto out;
aliguori93c65b42009-04-05 17:40:43 +00001592 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001593 /* If the output image is zero initialized, we are not working
1594 * on a shared base and the input is zero we can skip the next
1595 * n1 sectors */
1596 if (has_zero_init && !out_baseimg && (ret & BDRV_BLOCK_ZERO)) {
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001597 sector_num += n1;
1598 continue;
1599 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001600 /* If the output image is being created as a copy on write
1601 * image, assume that sectors which are unallocated in the
1602 * input image are present in both the output's and input's
1603 * base images (no need to copy them). */
1604 if (out_baseimg) {
1605 if (!(ret & BDRV_BLOCK_DATA)) {
1606 sector_num += n1;
1607 continue;
1608 }
1609 /* The next 'n1' sectors are allocated in the input image.
1610 * Copy only those as they may be followed by unallocated
1611 * sectors. */
1612 nb_sectors = n1;
1613 }
1614 /* avoid redundant callouts to get_block_status */
1615 sector_num_next_status = sector_num + n1;
thsf58c7b32008-06-05 21:53:49 +00001616 }
1617
Peter Lievenf2521c92013-11-27 11:07:06 +01001618 n = MIN(nb_sectors, bufsectors);
Peter Lieven24f833c2013-11-27 11:07:07 +01001619
1620 /* round down request length to an aligned sector, but
1621 * do not bother doing this on short requests. They happen
1622 * when we found an all-zero area, and the next sector to
1623 * write will not be sector_num + n. */
1624 if (cluster_sectors > 0 && n >= cluster_sectors) {
1625 int64_t next_aligned_sector = (sector_num + n);
1626 next_aligned_sector -= next_aligned_sector % cluster_sectors;
1627 if (sector_num + n > next_aligned_sector) {
1628 n = next_aligned_sector - sector_num;
1629 }
1630 }
1631
Peter Lieven13c28af2013-11-27 11:07:01 +01001632 n = MIN(n, bs_sectors - (sector_num - bs_offset));
Peter Lieven13c28af2013-11-27 11:07:01 +01001633
Peter Lieven802c3d42013-12-05 15:54:53 +01001634 sectors_read += n;
1635 if (count_allocated_sectors) {
1636 sector_num += n;
1637 continue;
1638 }
1639
1640 n1 = n;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001641 ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n);
1642 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001643 error_report("error while reading sector %" PRId64 ": %s",
1644 sector_num - bs_offset, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001645 goto out;
1646 }
bellardea2384d2004-08-01 21:59:26 +00001647 /* NOTE: at the same time we convert, we do not write zero
1648 sectors to have a chance to compress the image. Ideally, we
1649 should add a specific call to have the info to go faster */
1650 buf1 = buf;
1651 while (n > 0) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02001652 if (!has_zero_init ||
Kevin Wolfa22f1232011-08-26 15:27:13 +02001653 is_allocated_sectors_min(buf1, n, &n1, min_sparse)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001654 ret = bdrv_write(out_bs, sector_num, buf1, n1);
1655 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001656 error_report("error while writing sector %" PRId64
1657 ": %s", sector_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001658 goto out;
1659 }
bellardea2384d2004-08-01 21:59:26 +00001660 }
1661 sector_num += n1;
1662 n -= n1;
1663 buf1 += n1 * 512;
1664 }
Peter Lieven802c3d42013-12-05 15:54:53 +01001665 qemu_progress_print(100.0 * sectors_read / sectors_to_read, 0);
bellardea2384d2004-08-01 21:59:26 +00001666 }
1667 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001668out:
Peter Lieven13c28af2013-11-27 11:07:01 +01001669 if (!ret) {
1670 qemu_progress_print(100, 0);
1671 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001672 qemu_progress_end();
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001673 free_option_parameters(create_options);
1674 free_option_parameters(param);
Kevin Wolfbb1c0592011-08-08 14:09:12 +02001675 qemu_vfree(buf);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001676 g_free(options);
Wenchao Xiaef806542013-12-04 17:10:57 +08001677 if (sn_opts) {
1678 qemu_opts_del(sn_opts);
1679 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001680 if (out_bs) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08001681 bdrv_unref(out_bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001682 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001683 if (bs) {
1684 for (bs_i = 0; bs_i < bs_n; bs_i++) {
1685 if (bs[bs_i]) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08001686 bdrv_unref(bs[bs_i]);
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001687 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001688 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001689 g_free(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001690 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001691 if (ret) {
1692 return 1;
1693 }
bellardea2384d2004-08-01 21:59:26 +00001694 return 0;
1695}
1696
bellard57d1a2b2004-08-03 21:15:11 +00001697
bellardfaea38e2006-08-05 21:31:00 +00001698static void dump_snapshots(BlockDriverState *bs)
1699{
1700 QEMUSnapshotInfo *sn_tab, *sn;
1701 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00001702
1703 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1704 if (nb_sns <= 0)
1705 return;
1706 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08001707 bdrv_snapshot_dump(fprintf, stdout, NULL);
1708 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00001709 for(i = 0; i < nb_sns; i++) {
1710 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08001711 bdrv_snapshot_dump(fprintf, stdout, sn);
1712 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00001713 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001714 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00001715}
1716
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001717static void dump_json_image_info_list(ImageInfoList *list)
1718{
1719 Error *errp = NULL;
1720 QString *str;
1721 QmpOutputVisitor *ov = qmp_output_visitor_new();
1722 QObject *obj;
1723 visit_type_ImageInfoList(qmp_output_get_visitor(ov),
1724 &list, NULL, &errp);
1725 obj = qmp_output_get_qobject(ov);
1726 str = qobject_to_json_pretty(obj);
1727 assert(str != NULL);
1728 printf("%s\n", qstring_get_str(str));
1729 qobject_decref(obj);
1730 qmp_output_visitor_cleanup(ov);
1731 QDECREF(str);
1732}
1733
Benoît Canetc054b3f2012-09-05 13:09:02 +02001734static void dump_json_image_info(ImageInfo *info)
1735{
1736 Error *errp = NULL;
1737 QString *str;
1738 QmpOutputVisitor *ov = qmp_output_visitor_new();
1739 QObject *obj;
1740 visit_type_ImageInfo(qmp_output_get_visitor(ov),
1741 &info, NULL, &errp);
1742 obj = qmp_output_get_qobject(ov);
1743 str = qobject_to_json_pretty(obj);
1744 assert(str != NULL);
1745 printf("%s\n", qstring_get_str(str));
1746 qobject_decref(obj);
1747 qmp_output_visitor_cleanup(ov);
1748 QDECREF(str);
1749}
1750
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001751static void dump_human_image_info_list(ImageInfoList *list)
1752{
1753 ImageInfoList *elem;
1754 bool delim = false;
1755
1756 for (elem = list; elem; elem = elem->next) {
1757 if (delim) {
1758 printf("\n");
1759 }
1760 delim = true;
1761
Wenchao Xia5b917042013-05-25 11:09:45 +08001762 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001763 }
1764}
1765
1766static gboolean str_equal_func(gconstpointer a, gconstpointer b)
1767{
1768 return strcmp(a, b) == 0;
1769}
1770
1771/**
1772 * Open an image file chain and return an ImageInfoList
1773 *
1774 * @filename: topmost image filename
1775 * @fmt: topmost image format (may be NULL to autodetect)
1776 * @chain: true - enumerate entire backing file chain
1777 * false - only topmost image file
1778 *
1779 * Returns a list of ImageInfo objects or NULL if there was an error opening an
1780 * image file. If there was an error a message will have been printed to
1781 * stderr.
1782 */
1783static ImageInfoList *collect_image_info_list(const char *filename,
1784 const char *fmt,
1785 bool chain)
1786{
1787 ImageInfoList *head = NULL;
1788 ImageInfoList **last = &head;
1789 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08001790 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001791
1792 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
1793
1794 while (filename) {
1795 BlockDriverState *bs;
1796 ImageInfo *info;
1797 ImageInfoList *elem;
1798
1799 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
1800 error_report("Backing file '%s' creates an infinite loop.",
1801 filename);
1802 goto err;
1803 }
1804 g_hash_table_insert(filenames, (gpointer)filename, NULL);
1805
1806 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_NO_BACKING,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001807 false, false);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001808 if (!bs) {
1809 goto err;
1810 }
1811
Wenchao Xia43526ec2013-06-06 12:27:58 +08001812 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001813 if (err) {
Wenchao Xia43526ec2013-06-06 12:27:58 +08001814 error_report("%s", error_get_pretty(err));
1815 error_free(err);
1816 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08001817 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001818
1819 elem = g_new0(ImageInfoList, 1);
1820 elem->value = info;
1821 *last = elem;
1822 last = &elem->next;
1823
Fam Zheng4f6fd342013-08-23 09:14:47 +08001824 bdrv_unref(bs);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001825
1826 filename = fmt = NULL;
1827 if (chain) {
1828 if (info->has_full_backing_filename) {
1829 filename = info->full_backing_filename;
1830 } else if (info->has_backing_filename) {
1831 filename = info->backing_filename;
1832 }
1833 if (info->has_backing_filename_format) {
1834 fmt = info->backing_filename_format;
1835 }
1836 }
1837 }
1838 g_hash_table_destroy(filenames);
1839 return head;
1840
1841err:
1842 qapi_free_ImageInfoList(head);
1843 g_hash_table_destroy(filenames);
1844 return NULL;
1845}
1846
Benoît Canetc054b3f2012-09-05 13:09:02 +02001847static int img_info(int argc, char **argv)
1848{
1849 int c;
1850 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001851 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001852 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001853 ImageInfoList *list;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001854
bellardea2384d2004-08-01 21:59:26 +00001855 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001856 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00001857 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02001858 int option_index = 0;
1859 static const struct option long_options[] = {
1860 {"help", no_argument, 0, 'h'},
1861 {"format", required_argument, 0, 'f'},
1862 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001863 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Benoît Canetc054b3f2012-09-05 13:09:02 +02001864 {0, 0, 0, 0}
1865 };
1866 c = getopt_long(argc, argv, "f:h",
1867 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001868 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001869 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001870 }
bellardea2384d2004-08-01 21:59:26 +00001871 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001872 case '?':
bellardea2384d2004-08-01 21:59:26 +00001873 case 'h':
1874 help();
1875 break;
1876 case 'f':
1877 fmt = optarg;
1878 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001879 case OPTION_OUTPUT:
1880 output = optarg;
1881 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001882 case OPTION_BACKING_CHAIN:
1883 chain = true;
1884 break;
bellardea2384d2004-08-01 21:59:26 +00001885 }
1886 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02001887 if (optind != argc - 1) {
bellardea2384d2004-08-01 21:59:26 +00001888 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001889 }
bellardea2384d2004-08-01 21:59:26 +00001890 filename = argv[optind++];
1891
Benoît Canetc054b3f2012-09-05 13:09:02 +02001892 if (output && !strcmp(output, "json")) {
1893 output_format = OFORMAT_JSON;
1894 } else if (output && !strcmp(output, "human")) {
1895 output_format = OFORMAT_HUMAN;
1896 } else if (output) {
1897 error_report("--output must be used with human or json as argument.");
1898 return 1;
1899 }
1900
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001901 list = collect_image_info_list(filename, fmt, chain);
1902 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001903 return 1;
1904 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001905
Benoît Canetc054b3f2012-09-05 13:09:02 +02001906 switch (output_format) {
1907 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001908 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02001909 break;
1910 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001911 if (chain) {
1912 dump_json_image_info_list(list);
1913 } else {
1914 dump_json_image_info(list->value);
1915 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001916 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001917 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001918
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001919 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00001920 return 0;
1921}
1922
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02001923
1924typedef struct MapEntry {
1925 int flags;
1926 int depth;
1927 int64_t start;
1928 int64_t length;
1929 int64_t offset;
1930 BlockDriverState *bs;
1931} MapEntry;
1932
1933static void dump_map_entry(OutputFormat output_format, MapEntry *e,
1934 MapEntry *next)
1935{
1936 switch (output_format) {
1937 case OFORMAT_HUMAN:
1938 if ((e->flags & BDRV_BLOCK_DATA) &&
1939 !(e->flags & BDRV_BLOCK_OFFSET_VALID)) {
1940 error_report("File contains external, encrypted or compressed clusters.");
1941 exit(1);
1942 }
1943 if ((e->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) == BDRV_BLOCK_DATA) {
1944 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
1945 e->start, e->length, e->offset, e->bs->filename);
1946 }
1947 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
1948 * Modify the flags here to allow more coalescing.
1949 */
1950 if (next &&
1951 (next->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) != BDRV_BLOCK_DATA) {
1952 next->flags &= ~BDRV_BLOCK_DATA;
1953 next->flags |= BDRV_BLOCK_ZERO;
1954 }
1955 break;
1956 case OFORMAT_JSON:
1957 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64", \"depth\": %d,"
1958 " \"zero\": %s, \"data\": %s",
1959 (e->start == 0 ? "[" : ",\n"),
1960 e->start, e->length, e->depth,
1961 (e->flags & BDRV_BLOCK_ZERO) ? "true" : "false",
1962 (e->flags & BDRV_BLOCK_DATA) ? "true" : "false");
1963 if (e->flags & BDRV_BLOCK_OFFSET_VALID) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02001964 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02001965 }
1966 putchar('}');
1967
1968 if (!next) {
1969 printf("]\n");
1970 }
1971 break;
1972 }
1973}
1974
1975static int get_block_status(BlockDriverState *bs, int64_t sector_num,
1976 int nb_sectors, MapEntry *e)
1977{
1978 int64_t ret;
1979 int depth;
1980
1981 /* As an optimization, we could cache the current range of unallocated
1982 * clusters in each file of the chain, and avoid querying the same
1983 * range repeatedly.
1984 */
1985
1986 depth = 0;
1987 for (;;) {
1988 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors);
1989 if (ret < 0) {
1990 return ret;
1991 }
1992 assert(nb_sectors);
1993 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
1994 break;
1995 }
1996 bs = bs->backing_hd;
1997 if (bs == NULL) {
1998 ret = 0;
1999 break;
2000 }
2001
2002 depth++;
2003 }
2004
2005 e->start = sector_num * BDRV_SECTOR_SIZE;
2006 e->length = nb_sectors * BDRV_SECTOR_SIZE;
2007 e->flags = ret & ~BDRV_BLOCK_OFFSET_MASK;
2008 e->offset = ret & BDRV_BLOCK_OFFSET_MASK;
2009 e->depth = depth;
2010 e->bs = bs;
2011 return 0;
2012}
2013
2014static int img_map(int argc, char **argv)
2015{
2016 int c;
2017 OutputFormat output_format = OFORMAT_HUMAN;
2018 BlockDriverState *bs;
2019 const char *filename, *fmt, *output;
2020 int64_t length;
2021 MapEntry curr = { .length = 0 }, next;
2022 int ret = 0;
2023
2024 fmt = NULL;
2025 output = NULL;
2026 for (;;) {
2027 int option_index = 0;
2028 static const struct option long_options[] = {
2029 {"help", no_argument, 0, 'h'},
2030 {"format", required_argument, 0, 'f'},
2031 {"output", required_argument, 0, OPTION_OUTPUT},
2032 {0, 0, 0, 0}
2033 };
2034 c = getopt_long(argc, argv, "f:h",
2035 long_options, &option_index);
2036 if (c == -1) {
2037 break;
2038 }
2039 switch (c) {
2040 case '?':
2041 case 'h':
2042 help();
2043 break;
2044 case 'f':
2045 fmt = optarg;
2046 break;
2047 case OPTION_OUTPUT:
2048 output = optarg;
2049 break;
2050 }
2051 }
2052 if (optind >= argc) {
2053 help();
2054 }
2055 filename = argv[optind++];
2056
2057 if (output && !strcmp(output, "json")) {
2058 output_format = OFORMAT_JSON;
2059 } else if (output && !strcmp(output, "human")) {
2060 output_format = OFORMAT_HUMAN;
2061 } else if (output) {
2062 error_report("--output must be used with human or json as argument.");
2063 return 1;
2064 }
2065
2066 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS, true, false);
2067 if (!bs) {
2068 return 1;
2069 }
2070
2071 if (output_format == OFORMAT_HUMAN) {
2072 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2073 }
2074
2075 length = bdrv_getlength(bs);
2076 while (curr.start + curr.length < length) {
2077 int64_t nsectors_left;
2078 int64_t sector_num;
2079 int n;
2080
2081 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2082
2083 /* Probe up to 1 GiB at a time. */
2084 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2085 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2086 ret = get_block_status(bs, sector_num, n, &next);
2087
2088 if (ret < 0) {
2089 error_report("Could not read file metadata: %s", strerror(-ret));
2090 goto out;
2091 }
2092
2093 if (curr.length != 0 && curr.flags == next.flags &&
2094 curr.depth == next.depth &&
2095 ((curr.flags & BDRV_BLOCK_OFFSET_VALID) == 0 ||
2096 curr.offset + curr.length == next.offset)) {
2097 curr.length += next.length;
2098 continue;
2099 }
2100
2101 if (curr.length > 0) {
2102 dump_map_entry(output_format, &curr, &next);
2103 }
2104 curr = next;
2105 }
2106
2107 dump_map_entry(output_format, &curr, NULL);
2108
2109out:
2110 bdrv_unref(bs);
2111 return ret < 0;
2112}
2113
aliguorif7b4a942009-01-07 17:40:15 +00002114#define SNAPSHOT_LIST 1
2115#define SNAPSHOT_CREATE 2
2116#define SNAPSHOT_APPLY 3
2117#define SNAPSHOT_DELETE 4
2118
Stuart Brady153859b2009-06-07 00:42:17 +01002119static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002120{
2121 BlockDriverState *bs;
2122 QEMUSnapshotInfo sn;
2123 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002124 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002125 int action = 0;
2126 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002127 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002128 Error *err = NULL;
aliguorif7b4a942009-01-07 17:40:15 +00002129
Kevin Wolf710da702011-01-10 12:33:02 +01002130 bdrv_oflags = BDRV_O_FLAGS | BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002131 /* Parse commandline parameters */
2132 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002133 c = getopt(argc, argv, "la:c:d:hq");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002134 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002135 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002136 }
aliguorif7b4a942009-01-07 17:40:15 +00002137 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002138 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002139 case 'h':
2140 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002141 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002142 case 'l':
2143 if (action) {
2144 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002145 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002146 }
2147 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002148 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002149 break;
2150 case 'a':
2151 if (action) {
2152 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002153 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002154 }
2155 action = SNAPSHOT_APPLY;
2156 snapshot_name = optarg;
2157 break;
2158 case 'c':
2159 if (action) {
2160 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002161 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002162 }
2163 action = SNAPSHOT_CREATE;
2164 snapshot_name = optarg;
2165 break;
2166 case 'd':
2167 if (action) {
2168 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002169 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002170 }
2171 action = SNAPSHOT_DELETE;
2172 snapshot_name = optarg;
2173 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002174 case 'q':
2175 quiet = true;
2176 break;
aliguorif7b4a942009-01-07 17:40:15 +00002177 }
2178 }
2179
Kevin Wolffc11eb22013-08-05 10:53:04 +02002180 if (optind != argc - 1) {
aliguorif7b4a942009-01-07 17:40:15 +00002181 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002182 }
aliguorif7b4a942009-01-07 17:40:15 +00002183 filename = argv[optind++];
2184
2185 /* Open the image */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002186 bs = bdrv_new_open(filename, NULL, bdrv_oflags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002187 if (!bs) {
2188 return 1;
2189 }
aliguorif7b4a942009-01-07 17:40:15 +00002190
2191 /* Perform the requested action */
2192 switch(action) {
2193 case SNAPSHOT_LIST:
2194 dump_snapshots(bs);
2195 break;
2196
2197 case SNAPSHOT_CREATE:
2198 memset(&sn, 0, sizeof(sn));
2199 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2200
2201 qemu_gettimeofday(&tv);
2202 sn.date_sec = tv.tv_sec;
2203 sn.date_nsec = tv.tv_usec * 1000;
2204
2205 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002206 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002207 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002208 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002209 }
aliguorif7b4a942009-01-07 17:40:15 +00002210 break;
2211
2212 case SNAPSHOT_APPLY:
2213 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002214 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002215 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002216 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002217 }
aliguorif7b4a942009-01-07 17:40:15 +00002218 break;
2219
2220 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002221 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002222 if (err) {
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002223 error_report("Could not delete snapshot '%s': (%s)",
2224 snapshot_name, error_get_pretty(err));
2225 error_free(err);
2226 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002227 }
aliguorif7b4a942009-01-07 17:40:15 +00002228 break;
2229 }
2230
2231 /* Cleanup */
Fam Zheng4f6fd342013-08-23 09:14:47 +08002232 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002233 if (ret) {
2234 return 1;
2235 }
Stuart Brady153859b2009-06-07 00:42:17 +01002236 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002237}
2238
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002239static int img_rebase(int argc, char **argv)
2240{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002241 BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL;
Stefan Hajnoczif163d072010-04-13 10:29:34 +01002242 BlockDriver *old_backing_drv, *new_backing_drv;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002243 char *filename;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002244 const char *fmt, *cache, *out_basefmt, *out_baseimg;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002245 int c, flags, ret;
2246 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002247 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002248 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002249 Error *local_err = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002250
2251 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002252 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002253 cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002254 out_baseimg = NULL;
2255 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002256 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002257 c = getopt(argc, argv, "uhf:F:b:pt:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002258 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002259 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002260 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002261 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002262 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002263 case 'h':
2264 help();
2265 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002266 case 'f':
2267 fmt = optarg;
2268 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002269 case 'F':
2270 out_basefmt = optarg;
2271 break;
2272 case 'b':
2273 out_baseimg = optarg;
2274 break;
2275 case 'u':
2276 unsafe = 1;
2277 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002278 case 'p':
2279 progress = 1;
2280 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002281 case 't':
2282 cache = optarg;
2283 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002284 case 'q':
2285 quiet = true;
2286 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002287 }
2288 }
2289
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002290 if (quiet) {
2291 progress = 0;
2292 }
2293
Kevin Wolffc11eb22013-08-05 10:53:04 +02002294 if ((optind != argc - 1) || (!unsafe && !out_baseimg)) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002295 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002296 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002297 filename = argv[optind++];
2298
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002299 qemu_progress_init(progress, 2.0);
2300 qemu_progress_print(0, 100);
2301
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002302 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01002303 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002304 if (ret < 0) {
2305 error_report("Invalid cache option: %s", cache);
2306 return -1;
2307 }
2308
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002309 /*
2310 * Open the images.
2311 *
2312 * Ignore the old backing file for unsafe rebase in case we want to correct
2313 * the reference to a renamed or moved backing file.
2314 */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002315 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002316 if (!bs) {
2317 return 1;
2318 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002319
2320 /* Find the right drivers for the backing files */
2321 old_backing_drv = NULL;
2322 new_backing_drv = NULL;
2323
2324 if (!unsafe && bs->backing_format[0] != '\0') {
2325 old_backing_drv = bdrv_find_format(bs->backing_format);
2326 if (old_backing_drv == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002327 error_report("Invalid format name: '%s'", bs->backing_format);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002328 ret = -1;
2329 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002330 }
2331 }
2332
2333 if (out_basefmt != NULL) {
2334 new_backing_drv = bdrv_find_format(out_basefmt);
2335 if (new_backing_drv == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002336 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002337 ret = -1;
2338 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002339 }
2340 }
2341
2342 /* For safe rebasing we need to compare old and new backing file */
2343 if (unsafe) {
2344 /* Make the compiler happy */
2345 bs_old_backing = NULL;
2346 bs_new_backing = NULL;
2347 } else {
2348 char backing_name[1024];
2349
2350 bs_old_backing = bdrv_new("old_backing");
2351 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzddf56362014-02-18 18:33:06 +01002352 ret = bdrv_open(&bs_old_backing, backing_name, NULL, NULL, BDRV_O_FLAGS,
Max Reitz34b5d2c2013-09-05 14:45:29 +02002353 old_backing_drv, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002354 if (ret) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02002355 error_report("Could not open old backing file '%s': %s",
2356 backing_name, error_get_pretty(local_err));
2357 error_free(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002358 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002359 }
Alex Bligha6166732012-10-16 13:46:18 +01002360 if (out_baseimg[0]) {
2361 bs_new_backing = bdrv_new("new_backing");
Max Reitzddf56362014-02-18 18:33:06 +01002362 ret = bdrv_open(&bs_new_backing, out_baseimg, NULL, NULL,
2363 BDRV_O_FLAGS, new_backing_drv, &local_err);
Alex Bligha6166732012-10-16 13:46:18 +01002364 if (ret) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02002365 error_report("Could not open new backing file '%s': %s",
2366 out_baseimg, error_get_pretty(local_err));
2367 error_free(local_err);
Alex Bligha6166732012-10-16 13:46:18 +01002368 goto out;
2369 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002370 }
2371 }
2372
2373 /*
2374 * Check each unallocated cluster in the COW file. If it is unallocated,
2375 * accesses go to the backing file. We must therefore compare this cluster
2376 * in the old and new backing file, and if they differ we need to copy it
2377 * from the old backing file into the COW file.
2378 *
2379 * If qemu-img crashes during this step, no harm is done. The content of
2380 * the image is the same as the original one at any time.
2381 */
2382 if (!unsafe) {
2383 uint64_t num_sectors;
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002384 uint64_t old_backing_num_sectors;
Alex Bligha6166732012-10-16 13:46:18 +01002385 uint64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002386 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02002387 int n;
TeLeMand6771bf2010-02-08 16:20:00 +08002388 uint8_t * buf_old;
2389 uint8_t * buf_new;
Kevin Wolf1f710492012-10-12 14:29:18 +02002390 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08002391
Kevin Wolfbb1c0592011-08-08 14:09:12 +02002392 buf_old = qemu_blockalign(bs, IO_BUF_SIZE);
2393 buf_new = qemu_blockalign(bs, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002394
2395 bdrv_get_geometry(bs, &num_sectors);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002396 bdrv_get_geometry(bs_old_backing, &old_backing_num_sectors);
Alex Bligha6166732012-10-16 13:46:18 +01002397 if (bs_new_backing) {
2398 bdrv_get_geometry(bs_new_backing, &new_backing_num_sectors);
2399 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002400
Kevin Wolf1f710492012-10-12 14:29:18 +02002401 if (num_sectors != 0) {
2402 local_progress = (float)100 /
2403 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
2404 }
2405
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002406 for (sector = 0; sector < num_sectors; sector += n) {
2407
2408 /* How many sectors can we handle with the next read? */
2409 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
2410 n = (IO_BUF_SIZE / 512);
2411 } else {
2412 n = num_sectors - sector;
2413 }
2414
2415 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02002416 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02002417 if (ret < 0) {
2418 error_report("error while reading image metadata: %s",
2419 strerror(-ret));
2420 goto out;
2421 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02002422 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002423 continue;
2424 }
2425
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002426 /*
2427 * Read old and new backing file and take into consideration that
2428 * backing files may be smaller than the COW image.
2429 */
2430 if (sector >= old_backing_num_sectors) {
2431 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
2432 } else {
2433 if (sector + n > old_backing_num_sectors) {
2434 n = old_backing_num_sectors - sector;
2435 }
2436
2437 ret = bdrv_read(bs_old_backing, sector, buf_old, n);
2438 if (ret < 0) {
2439 error_report("error while reading from old backing file");
2440 goto out;
2441 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002442 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002443
Alex Bligha6166732012-10-16 13:46:18 +01002444 if (sector >= new_backing_num_sectors || !bs_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002445 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
2446 } else {
2447 if (sector + n > new_backing_num_sectors) {
2448 n = new_backing_num_sectors - sector;
2449 }
2450
2451 ret = bdrv_read(bs_new_backing, sector, buf_new, n);
2452 if (ret < 0) {
2453 error_report("error while reading from new backing file");
2454 goto out;
2455 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002456 }
2457
2458 /* If they differ, we need to write to the COW file */
2459 uint64_t written = 0;
2460
2461 while (written < n) {
2462 int pnum;
2463
2464 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01002465 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002466 {
2467 ret = bdrv_write(bs, sector + written,
2468 buf_old + written * 512, pnum);
2469 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002470 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002471 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002472 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002473 }
2474 }
2475
2476 written += pnum;
2477 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002478 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002479 }
TeLeMand6771bf2010-02-08 16:20:00 +08002480
Kevin Wolfbb1c0592011-08-08 14:09:12 +02002481 qemu_vfree(buf_old);
2482 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002483 }
2484
2485 /*
2486 * Change the backing file. All clusters that are different from the old
2487 * backing file are overwritten in the COW file now, so the visible content
2488 * doesn't change when we switch the backing file.
2489 */
Alex Bligha6166732012-10-16 13:46:18 +01002490 if (out_baseimg && *out_baseimg) {
2491 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
2492 } else {
2493 ret = bdrv_change_backing_file(bs, NULL, NULL);
2494 }
2495
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002496 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002497 error_report("Could not change the backing file to '%s': No "
2498 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002499 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002500 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002501 out_baseimg, strerror(-ret));
2502 }
2503
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002504 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002505 /*
2506 * TODO At this point it is possible to check if any clusters that are
2507 * allocated in the COW file are the same in the backing file. If so, they
2508 * could be dropped from the COW file. Don't do this before switching the
2509 * backing file, in case of a crash this would lead to corruption.
2510 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002511out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002512 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002513 /* Cleanup */
2514 if (!unsafe) {
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002515 if (bs_old_backing != NULL) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002516 bdrv_unref(bs_old_backing);
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002517 }
2518 if (bs_new_backing != NULL) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002519 bdrv_unref(bs_new_backing);
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002520 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002521 }
2522
Fam Zheng4f6fd342013-08-23 09:14:47 +08002523 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002524 if (ret) {
2525 return 1;
2526 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002527 return 0;
2528}
2529
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002530static int img_resize(int argc, char **argv)
2531{
2532 int c, ret, relative;
2533 const char *filename, *fmt, *size;
2534 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002535 bool quiet = false;
Jes Sorensen2a819982010-12-06 17:08:31 +01002536 BlockDriverState *bs = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002537 QemuOpts *param;
2538 static QemuOptsList resize_options = {
2539 .name = "resize_options",
2540 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
2541 .desc = {
2542 {
2543 .name = BLOCK_OPT_SIZE,
2544 .type = QEMU_OPT_SIZE,
2545 .help = "Virtual disk size"
2546 }, {
2547 /* end of list */
2548 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002549 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002550 };
2551
Kevin Wolfe80fec72011-04-29 10:58:12 +02002552 /* Remove size from argv manually so that negative numbers are not treated
2553 * as options by getopt. */
2554 if (argc < 3) {
2555 help();
2556 return 1;
2557 }
2558
2559 size = argv[--argc];
2560
2561 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002562 fmt = NULL;
2563 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002564 c = getopt(argc, argv, "f:hq");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002565 if (c == -1) {
2566 break;
2567 }
2568 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002569 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002570 case 'h':
2571 help();
2572 break;
2573 case 'f':
2574 fmt = optarg;
2575 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002576 case 'q':
2577 quiet = true;
2578 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002579 }
2580 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002581 if (optind != argc - 1) {
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002582 help();
2583 }
2584 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002585
2586 /* Choose grow, shrink, or absolute resize mode */
2587 switch (size[0]) {
2588 case '+':
2589 relative = 1;
2590 size++;
2591 break;
2592 case '-':
2593 relative = -1;
2594 size++;
2595 break;
2596 default:
2597 relative = 0;
2598 break;
2599 }
2600
2601 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08002602 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002603 if (qemu_opt_set(param, BLOCK_OPT_SIZE, size)) {
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002604 /* Error message already printed when size parsing fails */
Jes Sorensen2a819982010-12-06 17:08:31 +01002605 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002606 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01002607 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002608 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002609 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
2610 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002611
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002612 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002613 if (!bs) {
Jes Sorensen2a819982010-12-06 17:08:31 +01002614 ret = -1;
2615 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002616 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002617
2618 if (relative) {
2619 total_size = bdrv_getlength(bs) + n * relative;
2620 } else {
2621 total_size = n;
2622 }
2623 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002624 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002625 ret = -1;
2626 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002627 }
2628
2629 ret = bdrv_truncate(bs, total_size);
2630 switch (ret) {
2631 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002632 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002633 break;
2634 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01002635 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002636 break;
2637 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01002638 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002639 break;
2640 default:
Jes Sorensen15654a62010-12-16 14:31:53 +01002641 error_report("Error resizing image (%d)", -ret);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002642 break;
2643 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002644out:
Jes Sorensen2a819982010-12-06 17:08:31 +01002645 if (bs) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002646 bdrv_unref(bs);
Jes Sorensen2a819982010-12-06 17:08:31 +01002647 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002648 if (ret) {
2649 return 1;
2650 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002651 return 0;
2652}
2653
Max Reitz6f176b42013-09-03 10:09:50 +02002654static int img_amend(int argc, char **argv)
2655{
2656 int c, ret = 0;
2657 char *options = NULL;
2658 QEMUOptionParameter *create_options = NULL, *options_param = NULL;
2659 const char *fmt = NULL, *filename;
2660 bool quiet = false;
2661 BlockDriverState *bs = NULL;
2662
2663 for (;;) {
2664 c = getopt(argc, argv, "hqf:o:");
2665 if (c == -1) {
2666 break;
2667 }
2668
2669 switch (c) {
2670 case 'h':
2671 case '?':
2672 help();
2673 break;
2674 case 'o':
Kevin Wolf626f84f2014-02-21 16:24:06 +01002675 if (!is_valid_option_list(optarg)) {
2676 error_report("Invalid option list: %s", optarg);
2677 ret = -1;
2678 goto out;
2679 }
2680 if (!options) {
2681 options = g_strdup(optarg);
2682 } else {
2683 char *old_options = options;
2684 options = g_strdup_printf("%s,%s", options, optarg);
2685 g_free(old_options);
2686 }
Max Reitz6f176b42013-09-03 10:09:50 +02002687 break;
2688 case 'f':
2689 fmt = optarg;
2690 break;
2691 case 'q':
2692 quiet = true;
2693 break;
2694 }
2695 }
2696
Max Reitz6f176b42013-09-03 10:09:50 +02002697 if (!options) {
2698 help();
2699 }
2700
Kevin Wolfa283cb62014-02-21 16:24:07 +01002701 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
2702 if (fmt && has_help_option(options)) {
2703 /* If a format is explicitly specified (and possibly no filename is
2704 * given), print option help here */
2705 ret = print_block_option_help(filename, fmt);
2706 goto out;
2707 }
2708
2709 if (optind != argc - 1) {
2710 help();
2711 }
Max Reitz6f176b42013-09-03 10:09:50 +02002712
2713 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
2714 if (!bs) {
2715 error_report("Could not open image '%s'", filename);
2716 ret = -1;
2717 goto out;
2718 }
2719
2720 fmt = bs->drv->format_name;
2721
Kevin Wolf626f84f2014-02-21 16:24:06 +01002722 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01002723 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02002724 ret = print_block_option_help(filename, fmt);
2725 goto out;
2726 }
2727
2728 create_options = append_option_parameters(create_options,
2729 bs->drv->create_options);
2730 options_param = parse_option_parameters(options, create_options,
2731 options_param);
2732 if (options_param == NULL) {
2733 error_report("Invalid options for file format '%s'", fmt);
2734 ret = -1;
2735 goto out;
2736 }
2737
2738 ret = bdrv_amend_options(bs, options_param);
2739 if (ret < 0) {
2740 error_report("Error while amending options: %s", strerror(-ret));
2741 goto out;
2742 }
2743
2744out:
2745 if (bs) {
2746 bdrv_unref(bs);
2747 }
2748 free_option_parameters(create_options);
2749 free_option_parameters(options_param);
Kevin Wolf626f84f2014-02-21 16:24:06 +01002750 g_free(options);
2751
Max Reitz6f176b42013-09-03 10:09:50 +02002752 if (ret) {
2753 return 1;
2754 }
2755 return 0;
2756}
2757
Anthony Liguoric227f092009-10-01 16:12:16 -05002758static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01002759#define DEF(option, callback, arg_string) \
2760 { option, callback },
2761#include "qemu-img-cmds.h"
2762#undef DEF
2763#undef GEN_DOCS
2764 { NULL, NULL, },
2765};
2766
bellardea2384d2004-08-01 21:59:26 +00002767int main(int argc, char **argv)
2768{
Anthony Liguoric227f092009-10-01 16:12:16 -05002769 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01002770 const char *cmdname;
bellardea2384d2004-08-01 21:59:26 +00002771
MORITA Kazutaka526eda12013-07-23 17:30:11 +09002772#ifdef CONFIG_POSIX
2773 signal(SIGPIPE, SIG_IGN);
2774#endif
2775
Kevin Wolf53f76e52010-12-16 15:10:32 +01002776 error_set_progname(argv[0]);
2777
Paolo Bonzini2592c592012-11-03 18:10:17 +01002778 qemu_init_main_loop();
bellardea2384d2004-08-01 21:59:26 +00002779 bdrv_init();
2780 if (argc < 2)
2781 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002782 cmdname = argv[1];
aurel328f9b1572009-02-09 18:14:31 +00002783 argc--; argv++;
Stuart Brady153859b2009-06-07 00:42:17 +01002784
2785 /* find the command */
2786 for(cmd = img_cmds; cmd->name != NULL; cmd++) {
2787 if (!strcmp(cmdname, cmd->name)) {
2788 return cmd->handler(argc, argv);
2789 }
bellardea2384d2004-08-01 21:59:26 +00002790 }
Stuart Brady153859b2009-06-07 00:42:17 +01002791
2792 /* not found */
2793 help();
bellardea2384d2004-08-01 21:59:26 +00002794 return 0;
2795}