blob: 9c1643d0c10ee4faea83d7d71f59f79610bf73b6 [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
Kevin Wolf98289622013-07-10 15:47:39 +0200253 proto_drv = bdrv_find_protocol(filename, true);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100254 if (!proto_drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100255 error_report("Unknown protocol '%s'", filename);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100256 return 1;
257 }
258
259 create_options = append_option_parameters(create_options,
260 drv->create_options);
261 create_options = append_option_parameters(create_options,
262 proto_drv->create_options);
263 print_option_help(create_options);
264 free_option_parameters(create_options);
265 return 0;
266}
267
bellard75c23802004-08-27 21:28:58 +0000268static BlockDriverState *bdrv_new_open(const char *filename,
Sheng Yang9bc378c2010-01-29 10:15:06 +0800269 const char *fmt,
Daniel P. Berrangef0536bb2012-09-10 12:11:31 +0100270 int flags,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100271 bool require_io,
272 bool quiet)
bellard75c23802004-08-27 21:28:58 +0000273{
274 BlockDriverState *bs;
275 BlockDriver *drv;
276 char password[256];
Max Reitz34b5d2c2013-09-05 14:45:29 +0200277 Error *local_err = NULL;
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100278 int ret;
bellard75c23802004-08-27 21:28:58 +0000279
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100280 bs = bdrv_new("image");
Kevin Wolfad717132010-12-16 15:37:41 +0100281
bellard75c23802004-08-27 21:28:58 +0000282 if (fmt) {
283 drv = bdrv_find_format(fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900284 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100285 error_report("Unknown file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900286 goto fail;
287 }
bellard75c23802004-08-27 21:28:58 +0000288 } else {
289 drv = NULL;
290 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100291
Max Reitzddf56362014-02-18 18:33:06 +0100292 ret = bdrv_open(&bs, filename, NULL, NULL, flags, drv, &local_err);
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100293 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200294 error_report("Could not open '%s': %s", filename,
295 error_get_pretty(local_err));
296 error_free(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900297 goto fail;
bellard75c23802004-08-27 21:28:58 +0000298 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100299
Daniel P. Berrangef0536bb2012-09-10 12:11:31 +0100300 if (bdrv_is_encrypted(bs) && require_io) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100301 qprintf(quiet, "Disk image '%s' is encrypted.\n", filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900302 if (read_password(password, sizeof(password)) < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100303 error_report("No password given");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900304 goto fail;
305 }
306 if (bdrv_set_key(bs, password) < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100307 error_report("invalid password");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900308 goto fail;
309 }
bellard75c23802004-08-27 21:28:58 +0000310 }
311 return bs;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900312fail:
Max Reitzf67503e2014-02-18 18:33:05 +0100313 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900314 return NULL;
bellard75c23802004-08-27 21:28:58 +0000315}
316
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900317static int add_old_style_options(const char *fmt, QEMUOptionParameter *list,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100318 const char *base_filename,
319 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200320{
Kevin Wolfefa84d42009-05-18 16:42:12 +0200321 if (base_filename) {
322 if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100323 error_report("Backing file not supported for file format '%s'",
324 fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900325 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200326 }
327 }
328 if (base_fmt) {
329 if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100330 error_report("Backing file format not supported for file "
331 "format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900332 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200333 }
334 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900335 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200336}
337
bellardea2384d2004-08-01 21:59:26 +0000338static int img_create(int argc, char **argv)
339{
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200340 int c;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100341 uint64_t img_size = -1;
bellardea2384d2004-08-01 21:59:26 +0000342 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000343 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000344 const char *filename;
345 const char *base_filename = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200346 char *options = NULL;
Luiz Capitulino9b375252012-11-30 10:52:05 -0200347 Error *local_err = NULL;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100348 bool quiet = false;
ths3b46e622007-09-17 08:09:54 +0000349
bellardea2384d2004-08-01 21:59:26 +0000350 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100351 c = getopt(argc, argv, "F:b:f:he6o:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100352 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000353 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100354 }
bellardea2384d2004-08-01 21:59:26 +0000355 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100356 case '?':
bellardea2384d2004-08-01 21:59:26 +0000357 case 'h':
358 help();
359 break;
aliguori9230eaf2009-03-28 17:55:19 +0000360 case 'F':
361 base_fmt = optarg;
362 break;
bellardea2384d2004-08-01 21:59:26 +0000363 case 'b':
364 base_filename = optarg;
365 break;
366 case 'f':
367 fmt = optarg;
368 break;
369 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200370 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100371 "encryption\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100372 goto fail;
thsd8871c52007-10-24 16:11:42 +0000373 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200374 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100375 "compat6\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100376 goto fail;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200377 case 'o':
Kevin Wolf77386bf2014-02-21 16:24:04 +0100378 if (!is_valid_option_list(optarg)) {
379 error_report("Invalid option list: %s", optarg);
380 goto fail;
381 }
382 if (!options) {
383 options = g_strdup(optarg);
384 } else {
385 char *old_options = options;
386 options = g_strdup_printf("%s,%s", options, optarg);
387 g_free(old_options);
388 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200389 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100390 case 'q':
391 quiet = true;
392 break;
bellardea2384d2004-08-01 21:59:26 +0000393 }
394 }
aliguori9230eaf2009-03-28 17:55:19 +0000395
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900396 /* Get the filename */
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100397 if (optind >= argc) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900398 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100399 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900400 filename = argv[optind++];
401
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100402 /* Get image size, if specified */
403 if (optind < argc) {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100404 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +0100405 char *end;
406 sval = strtosz_suffix(argv[optind++], &end, STRTOSZ_DEFSUFFIX_B);
407 if (sval < 0 || *end) {
liguang79443392012-12-17 09:49:23 +0800408 if (sval == -ERANGE) {
409 error_report("Image size must be less than 8 EiB!");
410 } else {
411 error_report("Invalid image size specified! You may use k, M, "
Kevin Wolf5e009842013-06-05 14:19:27 +0200412 "G, T, P or E suffixes for ");
413 error_report("kilobytes, megabytes, gigabytes, terabytes, "
414 "petabytes and exabytes.");
liguang79443392012-12-17 09:49:23 +0800415 }
Kevin Wolf77386bf2014-02-21 16:24:04 +0100416 goto fail;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100417 }
418 img_size = (uint64_t)sval;
419 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200420 if (optind != argc) {
421 help();
422 }
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100423
Kevin Wolf77386bf2014-02-21 16:24:04 +0100424 if (options && has_help_option(options)) {
425 g_free(options);
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200426 return print_block_option_help(filename, fmt);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100427 }
428
Luiz Capitulino9b375252012-11-30 10:52:05 -0200429 bdrv_img_create(filename, fmt, base_filename, base_fmt,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100430 options, img_size, BDRV_O_FLAGS, &local_err, quiet);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100431 if (local_err) {
Max Reitzb70d8c22013-09-06 16:51:03 +0200432 error_report("%s: %s", filename, error_get_pretty(local_err));
Luiz Capitulino9b375252012-11-30 10:52:05 -0200433 error_free(local_err);
Kevin Wolf77386bf2014-02-21 16:24:04 +0100434 goto fail;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900435 }
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200436
Kevin Wolf77386bf2014-02-21 16:24:04 +0100437 g_free(options);
bellardea2384d2004-08-01 21:59:26 +0000438 return 0;
Kevin Wolf77386bf2014-02-21 16:24:04 +0100439
440fail:
441 g_free(options);
442 return 1;
bellardea2384d2004-08-01 21:59:26 +0000443}
444
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100445static void dump_json_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500446{
447 Error *errp = NULL;
448 QString *str;
449 QmpOutputVisitor *ov = qmp_output_visitor_new();
450 QObject *obj;
451 visit_type_ImageCheck(qmp_output_get_visitor(ov),
452 &check, NULL, &errp);
453 obj = qmp_output_get_qobject(ov);
454 str = qobject_to_json_pretty(obj);
455 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100456 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500457 qobject_decref(obj);
458 qmp_output_visitor_cleanup(ov);
459 QDECREF(str);
460}
461
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100462static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500463{
464 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100465 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500466 } else {
467 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100468 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
469 "Data may be corrupted, or further writes to the image "
470 "may corrupt it.\n",
471 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500472 }
473
474 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100475 qprintf(quiet,
476 "\n%" PRId64 " leaked clusters were found on the image.\n"
477 "This means waste of disk space, but no harm to data.\n",
478 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500479 }
480
481 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100482 qprintf(quiet,
483 "\n%" PRId64
484 " internal errors have occurred during the check.\n",
485 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500486 }
487 }
488
489 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100490 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
491 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
492 check->allocated_clusters, check->total_clusters,
493 check->allocated_clusters * 100.0 / check->total_clusters,
494 check->fragmented_clusters * 100.0 / check->allocated_clusters,
495 check->compressed_clusters * 100.0 /
496 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500497 }
498
499 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100500 qprintf(quiet,
501 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500502 }
503}
504
505static int collect_image_check(BlockDriverState *bs,
506 ImageCheck *check,
507 const char *filename,
508 const char *fmt,
509 int fix)
510{
511 int ret;
512 BdrvCheckResult result;
513
514 ret = bdrv_check(bs, &result, fix);
515 if (ret < 0) {
516 return ret;
517 }
518
519 check->filename = g_strdup(filename);
520 check->format = g_strdup(bdrv_get_format_name(bs));
521 check->check_errors = result.check_errors;
522 check->corruptions = result.corruptions;
523 check->has_corruptions = result.corruptions != 0;
524 check->leaks = result.leaks;
525 check->has_leaks = result.leaks != 0;
526 check->corruptions_fixed = result.corruptions_fixed;
527 check->has_corruptions_fixed = result.corruptions != 0;
528 check->leaks_fixed = result.leaks_fixed;
529 check->has_leaks_fixed = result.leaks != 0;
530 check->image_end_offset = result.image_end_offset;
531 check->has_image_end_offset = result.image_end_offset != 0;
532 check->total_clusters = result.bfi.total_clusters;
533 check->has_total_clusters = result.bfi.total_clusters != 0;
534 check->allocated_clusters = result.bfi.allocated_clusters;
535 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
536 check->fragmented_clusters = result.bfi.fragmented_clusters;
537 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100538 check->compressed_clusters = result.bfi.compressed_clusters;
539 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500540
541 return 0;
542}
543
Kevin Wolfe076f332010-06-29 11:43:13 +0200544/*
545 * Checks an image for consistency. Exit codes:
546 *
547 * 0 - Check completed, image is good
548 * 1 - Check not completed because of internal errors
549 * 2 - Check completed, image is corrupted
550 * 3 - Check completed, image has leaked clusters, but is good otherwise
551 */
aliguori15859692009-04-21 23:11:53 +0000552static int img_check(int argc, char **argv)
553{
554 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500555 OutputFormat output_format = OFORMAT_HUMAN;
556 const char *filename, *fmt, *output;
aliguori15859692009-04-21 23:11:53 +0000557 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200558 int fix = 0;
Stefan Hajnoczi058f8f12012-08-09 13:05:56 +0100559 int flags = BDRV_O_FLAGS | BDRV_O_CHECK;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500560 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100561 bool quiet = false;
aliguori15859692009-04-21 23:11:53 +0000562
563 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500564 output = NULL;
aliguori15859692009-04-21 23:11:53 +0000565 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500566 int option_index = 0;
567 static const struct option long_options[] = {
568 {"help", no_argument, 0, 'h'},
569 {"format", required_argument, 0, 'f'},
570 {"repair", no_argument, 0, 'r'},
571 {"output", required_argument, 0, OPTION_OUTPUT},
572 {0, 0, 0, 0}
573 };
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100574 c = getopt_long(argc, argv, "f:hr:q",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500575 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100576 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000577 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100578 }
aliguori15859692009-04-21 23:11:53 +0000579 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100580 case '?':
aliguori15859692009-04-21 23:11:53 +0000581 case 'h':
582 help();
583 break;
584 case 'f':
585 fmt = optarg;
586 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200587 case 'r':
588 flags |= BDRV_O_RDWR;
589
590 if (!strcmp(optarg, "leaks")) {
591 fix = BDRV_FIX_LEAKS;
592 } else if (!strcmp(optarg, "all")) {
593 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
594 } else {
595 help();
596 }
597 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500598 case OPTION_OUTPUT:
599 output = optarg;
600 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100601 case 'q':
602 quiet = true;
603 break;
aliguori15859692009-04-21 23:11:53 +0000604 }
605 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200606 if (optind != argc - 1) {
aliguori15859692009-04-21 23:11:53 +0000607 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100608 }
aliguori15859692009-04-21 23:11:53 +0000609 filename = argv[optind++];
610
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500611 if (output && !strcmp(output, "json")) {
612 output_format = OFORMAT_JSON;
613 } else if (output && !strcmp(output, "human")) {
614 output_format = OFORMAT_HUMAN;
615 } else if (output) {
616 error_report("--output must be used with human or json as argument.");
617 return 1;
618 }
619
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100620 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900621 if (!bs) {
622 return 1;
623 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500624
625 check = g_new0(ImageCheck, 1);
626 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200627
628 if (ret == -ENOTSUP) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500629 if (output_format == OFORMAT_HUMAN) {
630 error_report("This image format does not support checks");
631 }
Peter Lievenfefddf92013-10-24 08:53:34 +0200632 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500633 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200634 }
635
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500636 if (check->corruptions_fixed || check->leaks_fixed) {
637 int corruptions_fixed, leaks_fixed;
638
639 leaks_fixed = check->leaks_fixed;
640 corruptions_fixed = check->corruptions_fixed;
641
642 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100643 qprintf(quiet,
644 "The following inconsistencies were found and repaired:\n\n"
645 " %" PRId64 " leaked clusters\n"
646 " %" PRId64 " corruptions\n\n"
647 "Double checking the fixed image now...\n",
648 check->leaks_fixed,
649 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500650 }
651
652 ret = collect_image_check(bs, check, filename, fmt, 0);
653
654 check->leaks_fixed = leaks_fixed;
655 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200656 }
657
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500658 switch (output_format) {
659 case OFORMAT_HUMAN:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100660 dump_human_image_check(check, quiet);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500661 break;
662 case OFORMAT_JSON:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100663 dump_json_image_check(check, quiet);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500664 break;
665 }
666
667 if (ret || check->check_errors) {
668 ret = 1;
669 goto fail;
670 }
671
672 if (check->corruptions) {
673 ret = 2;
674 } else if (check->leaks) {
675 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200676 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500677 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000678 }
679
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500680fail:
681 qapi_free_ImageCheck(check);
Fam Zheng4f6fd342013-08-23 09:14:47 +0800682 bdrv_unref(bs);
Kevin Wolfe076f332010-06-29 11:43:13 +0200683
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500684 return ret;
aliguori15859692009-04-21 23:11:53 +0000685}
686
bellardea2384d2004-08-01 21:59:26 +0000687static int img_commit(int argc, char **argv)
688{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400689 int c, ret, flags;
690 const char *filename, *fmt, *cache;
bellardea2384d2004-08-01 21:59:26 +0000691 BlockDriverState *bs;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100692 bool quiet = false;
bellardea2384d2004-08-01 21:59:26 +0000693
694 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400695 cache = BDRV_DEFAULT_CACHE;
bellardea2384d2004-08-01 21:59:26 +0000696 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100697 c = getopt(argc, argv, "f:ht:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100698 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000699 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100700 }
bellardea2384d2004-08-01 21:59:26 +0000701 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100702 case '?':
bellardea2384d2004-08-01 21:59:26 +0000703 case 'h':
704 help();
705 break;
706 case 'f':
707 fmt = optarg;
708 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400709 case 't':
710 cache = optarg;
711 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100712 case 'q':
713 quiet = true;
714 break;
bellardea2384d2004-08-01 21:59:26 +0000715 }
716 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200717 if (optind != argc - 1) {
bellardea2384d2004-08-01 21:59:26 +0000718 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100719 }
bellardea2384d2004-08-01 21:59:26 +0000720 filename = argv[optind++];
721
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400722 flags = BDRV_O_RDWR;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100723 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400724 if (ret < 0) {
725 error_report("Invalid cache option: %s", cache);
726 return -1;
727 }
728
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100729 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900730 if (!bs) {
731 return 1;
732 }
bellardea2384d2004-08-01 21:59:26 +0000733 ret = bdrv_commit(bs);
734 switch(ret) {
735 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100736 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000737 break;
738 case -ENOENT:
Jes Sorensen15654a62010-12-16 14:31:53 +0100739 error_report("No disk inserted");
bellardea2384d2004-08-01 21:59:26 +0000740 break;
741 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +0100742 error_report("Image is read-only");
bellardea2384d2004-08-01 21:59:26 +0000743 break;
744 case -ENOTSUP:
Jes Sorensen15654a62010-12-16 14:31:53 +0100745 error_report("Image is already committed");
bellardea2384d2004-08-01 21:59:26 +0000746 break;
747 default:
Jes Sorensen15654a62010-12-16 14:31:53 +0100748 error_report("Error while committing image");
bellardea2384d2004-08-01 21:59:26 +0000749 break;
750 }
751
Fam Zheng4f6fd342013-08-23 09:14:47 +0800752 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900753 if (ret) {
754 return 1;
755 }
bellardea2384d2004-08-01 21:59:26 +0000756 return 0;
757}
758
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400759/*
thsf58c7b32008-06-05 21:53:49 +0000760 * Returns true iff the first sector pointed to by 'buf' contains at least
761 * a non-NUL byte.
762 *
763 * 'pnum' is set to the number of sectors (including and immediately following
764 * the first one) that are known to be in the same allocated/unallocated state.
765 */
bellardea2384d2004-08-01 21:59:26 +0000766static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
767{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000768 bool is_zero;
769 int i;
bellardea2384d2004-08-01 21:59:26 +0000770
771 if (n <= 0) {
772 *pnum = 0;
773 return 0;
774 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000775 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +0000776 for(i = 1; i < n; i++) {
777 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000778 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +0000779 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000780 }
bellardea2384d2004-08-01 21:59:26 +0000781 }
782 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000783 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +0000784}
785
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100786/*
Kevin Wolfa22f1232011-08-26 15:27:13 +0200787 * Like is_allocated_sectors, but if the buffer starts with a used sector,
788 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
789 * breaking up write requests for only small sparse areas.
790 */
791static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
792 int min)
793{
794 int ret;
795 int num_checked, num_used;
796
797 if (n < min) {
798 min = n;
799 }
800
801 ret = is_allocated_sectors(buf, n, pnum);
802 if (!ret) {
803 return ret;
804 }
805
806 num_used = *pnum;
807 buf += BDRV_SECTOR_SIZE * *pnum;
808 n -= *pnum;
809 num_checked = num_used;
810
811 while (n > 0) {
812 ret = is_allocated_sectors(buf, n, pnum);
813
814 buf += BDRV_SECTOR_SIZE * *pnum;
815 n -= *pnum;
816 num_checked += *pnum;
817 if (ret) {
818 num_used = num_checked;
819 } else if (*pnum >= min) {
820 break;
821 }
822 }
823
824 *pnum = num_used;
825 return 1;
826}
827
828/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100829 * Compares two buffers sector by sector. Returns 0 if the first sector of both
830 * buffers matches, non-zero otherwise.
831 *
832 * pnum is set to the number of sectors (including and immediately following
833 * the first one) that are known to have the same comparison result
834 */
835static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
836 int *pnum)
837{
838 int res, i;
839
840 if (n <= 0) {
841 *pnum = 0;
842 return 0;
843 }
844
845 res = !!memcmp(buf1, buf2, 512);
846 for(i = 1; i < n; i++) {
847 buf1 += 512;
848 buf2 += 512;
849
850 if (!!memcmp(buf1, buf2, 512) != res) {
851 break;
852 }
853 }
854
855 *pnum = i;
856 return res;
857}
858
Kevin Wolf80ee15a2009-09-15 12:30:43 +0200859#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +0000860
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100861static int64_t sectors_to_bytes(int64_t sectors)
862{
863 return sectors << BDRV_SECTOR_BITS;
864}
865
866static int64_t sectors_to_process(int64_t total, int64_t from)
867{
868 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
869}
870
871/*
872 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
873 *
874 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
875 * data and negative value on error.
876 *
877 * @param bs: Driver used for accessing file
878 * @param sect_num: Number of first sector to check
879 * @param sect_count: Number of sectors to check
880 * @param filename: Name of disk file we are checking (logging purpose)
881 * @param buffer: Allocated buffer for storing read data
882 * @param quiet: Flag for quiet mode
883 */
884static int check_empty_sectors(BlockDriverState *bs, int64_t sect_num,
885 int sect_count, const char *filename,
886 uint8_t *buffer, bool quiet)
887{
888 int pnum, ret = 0;
889 ret = bdrv_read(bs, sect_num, buffer, sect_count);
890 if (ret < 0) {
891 error_report("Error while reading offset %" PRId64 " of %s: %s",
892 sectors_to_bytes(sect_num), filename, strerror(-ret));
893 return ret;
894 }
895 ret = is_allocated_sectors(buffer, sect_count, &pnum);
896 if (ret || pnum != sect_count) {
897 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
898 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
899 return 1;
900 }
901
902 return 0;
903}
904
905/*
906 * Compares two images. Exit codes:
907 *
908 * 0 - Images are identical
909 * 1 - Images differ
910 * >1 - Error occurred
911 */
912static int img_compare(int argc, char **argv)
913{
914 const char *fmt1 = NULL, *fmt2 = NULL, *filename1, *filename2;
915 BlockDriverState *bs1, *bs2;
916 int64_t total_sectors1, total_sectors2;
917 uint8_t *buf1 = NULL, *buf2 = NULL;
918 int pnum1, pnum2;
919 int allocated1, allocated2;
920 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
921 bool progress = false, quiet = false, strict = false;
922 int64_t total_sectors;
923 int64_t sector_num = 0;
924 int64_t nb_sectors;
925 int c, pnum;
926 uint64_t bs_sectors;
927 uint64_t progress_base;
928
929 for (;;) {
930 c = getopt(argc, argv, "hpf:F:sq");
931 if (c == -1) {
932 break;
933 }
934 switch (c) {
935 case '?':
936 case 'h':
937 help();
938 break;
939 case 'f':
940 fmt1 = optarg;
941 break;
942 case 'F':
943 fmt2 = optarg;
944 break;
945 case 'p':
946 progress = true;
947 break;
948 case 'q':
949 quiet = true;
950 break;
951 case 's':
952 strict = true;
953 break;
954 }
955 }
956
957 /* Progress is not shown in Quiet mode */
958 if (quiet) {
959 progress = false;
960 }
961
962
Kevin Wolffc11eb22013-08-05 10:53:04 +0200963 if (optind != argc - 2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100964 help();
965 }
966 filename1 = argv[optind++];
967 filename2 = argv[optind++];
968
969 /* Initialize before goto out */
970 qemu_progress_init(progress, 2.0);
971
972 bs1 = bdrv_new_open(filename1, fmt1, BDRV_O_FLAGS, true, quiet);
973 if (!bs1) {
974 error_report("Can't open file %s", filename1);
975 ret = 2;
976 goto out3;
977 }
978
979 bs2 = bdrv_new_open(filename2, fmt2, BDRV_O_FLAGS, true, quiet);
980 if (!bs2) {
981 error_report("Can't open file %s", filename2);
982 ret = 2;
983 goto out2;
984 }
985
986 buf1 = qemu_blockalign(bs1, IO_BUF_SIZE);
987 buf2 = qemu_blockalign(bs2, IO_BUF_SIZE);
988 bdrv_get_geometry(bs1, &bs_sectors);
989 total_sectors1 = bs_sectors;
990 bdrv_get_geometry(bs2, &bs_sectors);
991 total_sectors2 = bs_sectors;
992 total_sectors = MIN(total_sectors1, total_sectors2);
993 progress_base = MAX(total_sectors1, total_sectors2);
994
995 qemu_progress_print(0, 100);
996
997 if (strict && total_sectors1 != total_sectors2) {
998 ret = 1;
999 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1000 goto out;
1001 }
1002
1003 for (;;) {
1004 nb_sectors = sectors_to_process(total_sectors, sector_num);
1005 if (nb_sectors <= 0) {
1006 break;
1007 }
1008 allocated1 = bdrv_is_allocated_above(bs1, NULL, sector_num, nb_sectors,
1009 &pnum1);
1010 if (allocated1 < 0) {
1011 ret = 3;
1012 error_report("Sector allocation test failed for %s", filename1);
1013 goto out;
1014 }
1015
1016 allocated2 = bdrv_is_allocated_above(bs2, NULL, sector_num, nb_sectors,
1017 &pnum2);
1018 if (allocated2 < 0) {
1019 ret = 3;
1020 error_report("Sector allocation test failed for %s", filename2);
1021 goto out;
1022 }
1023 nb_sectors = MIN(pnum1, pnum2);
1024
1025 if (allocated1 == allocated2) {
1026 if (allocated1) {
1027 ret = bdrv_read(bs1, sector_num, buf1, nb_sectors);
1028 if (ret < 0) {
1029 error_report("Error while reading offset %" PRId64 " of %s:"
1030 " %s", sectors_to_bytes(sector_num), filename1,
1031 strerror(-ret));
1032 ret = 4;
1033 goto out;
1034 }
1035 ret = bdrv_read(bs2, sector_num, buf2, nb_sectors);
1036 if (ret < 0) {
1037 error_report("Error while reading offset %" PRId64
1038 " of %s: %s", sectors_to_bytes(sector_num),
1039 filename2, strerror(-ret));
1040 ret = 4;
1041 goto out;
1042 }
1043 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1044 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001045 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1046 sectors_to_bytes(
1047 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001048 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001049 goto out;
1050 }
1051 }
1052 } else {
1053 if (strict) {
1054 ret = 1;
1055 qprintf(quiet, "Strict mode: Offset %" PRId64
1056 " allocation mismatch!\n",
1057 sectors_to_bytes(sector_num));
1058 goto out;
1059 }
1060
1061 if (allocated1) {
1062 ret = check_empty_sectors(bs1, sector_num, nb_sectors,
1063 filename1, buf1, quiet);
1064 } else {
1065 ret = check_empty_sectors(bs2, sector_num, nb_sectors,
1066 filename2, buf1, quiet);
1067 }
1068 if (ret) {
1069 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001070 error_report("Error while reading offset %" PRId64 ": %s",
1071 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001072 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001073 }
1074 goto out;
1075 }
1076 }
1077 sector_num += nb_sectors;
1078 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1079 }
1080
1081 if (total_sectors1 != total_sectors2) {
1082 BlockDriverState *bs_over;
1083 int64_t total_sectors_over;
1084 const char *filename_over;
1085
1086 qprintf(quiet, "Warning: Image size mismatch!\n");
1087 if (total_sectors1 > total_sectors2) {
1088 total_sectors_over = total_sectors1;
1089 bs_over = bs1;
1090 filename_over = filename1;
1091 } else {
1092 total_sectors_over = total_sectors2;
1093 bs_over = bs2;
1094 filename_over = filename2;
1095 }
1096
1097 for (;;) {
1098 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1099 if (nb_sectors <= 0) {
1100 break;
1101 }
1102 ret = bdrv_is_allocated_above(bs_over, NULL, sector_num,
1103 nb_sectors, &pnum);
1104 if (ret < 0) {
1105 ret = 3;
1106 error_report("Sector allocation test failed for %s",
1107 filename_over);
1108 goto out;
1109
1110 }
1111 nb_sectors = pnum;
1112 if (ret) {
1113 ret = check_empty_sectors(bs_over, sector_num, nb_sectors,
1114 filename_over, buf1, quiet);
1115 if (ret) {
1116 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001117 error_report("Error while reading offset %" PRId64
1118 " of %s: %s", sectors_to_bytes(sector_num),
1119 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001120 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001121 }
1122 goto out;
1123 }
1124 }
1125 sector_num += nb_sectors;
1126 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1127 }
1128 }
1129
1130 qprintf(quiet, "Images are identical.\n");
1131 ret = 0;
1132
1133out:
Fam Zheng4f6fd342013-08-23 09:14:47 +08001134 bdrv_unref(bs2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001135 qemu_vfree(buf1);
1136 qemu_vfree(buf2);
1137out2:
Fam Zheng4f6fd342013-08-23 09:14:47 +08001138 bdrv_unref(bs1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001139out3:
1140 qemu_progress_end();
1141 return ret;
1142}
1143
bellardea2384d2004-08-01 21:59:26 +00001144static int img_convert(int argc, char **argv)
1145{
Peter Lieven24f833c2013-11-27 11:07:07 +01001146 int c, n, n1, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001147 int64_t ret = 0;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001148 int progress = 0, flags;
1149 const char *fmt, *out_fmt, *cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001150 BlockDriver *drv, *proto_drv;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001151 BlockDriverState **bs = NULL, *out_bs = NULL;
Peter Lieven802c3d42013-12-05 15:54:53 +01001152 int64_t total_sectors, nb_sectors, sector_num, bs_offset;
ths96b8f132007-12-17 01:35:20 +00001153 uint64_t bs_sectors;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001154 uint8_t * buf = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001155 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardea2384d2004-08-01 21:59:26 +00001156 const uint8_t *buf1;
bellardfaea38e2006-08-05 21:31:00 +00001157 BlockDriverInfo bdi;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001158 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfa18953f2010-10-14 15:46:04 +02001159 QEMUOptionParameter *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001160 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001161 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001162 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001163 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001164 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001165 QemuOpts *sn_opts = NULL;
bellardea2384d2004-08-01 21:59:26 +00001166
1167 fmt = NULL;
1168 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001169 cache = "unsafe";
thsf58c7b32008-06-05 21:53:49 +00001170 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001171 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001172 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001173 for(;;) {
Wenchao Xiaef806542013-12-04 17:10:57 +08001174 c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qnl:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001175 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001176 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001177 }
bellardea2384d2004-08-01 21:59:26 +00001178 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001179 case '?':
bellardea2384d2004-08-01 21:59:26 +00001180 case 'h':
1181 help();
1182 break;
1183 case 'f':
1184 fmt = optarg;
1185 break;
1186 case 'O':
1187 out_fmt = optarg;
1188 break;
thsf58c7b32008-06-05 21:53:49 +00001189 case 'B':
1190 out_baseimg = optarg;
1191 break;
bellardea2384d2004-08-01 21:59:26 +00001192 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001193 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001194 break;
1195 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001196 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001197 "encryption\' instead!");
1198 return 1;
thsec36ba12007-09-16 21:59:02 +00001199 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001200 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001201 "compat6\' instead!");
1202 return 1;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001203 case 'o':
1204 options = optarg;
1205 break;
edison51ef6722010-09-21 19:58:41 -07001206 case 's':
1207 snapshot_name = optarg;
1208 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001209 case 'l':
1210 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
1211 sn_opts = qemu_opts_parse(&internal_snapshot_opts, optarg, 0);
1212 if (!sn_opts) {
1213 error_report("Failed in parsing snapshot param '%s'",
1214 optarg);
1215 return 1;
1216 }
1217 } else {
1218 snapshot_name = optarg;
1219 }
1220 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001221 case 'S':
1222 {
1223 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001224 char *end;
1225 sval = strtosz_suffix(optarg, &end, STRTOSZ_DEFSUFFIX_B);
1226 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001227 error_report("Invalid minimum zero buffer size for sparse output specified");
1228 return 1;
1229 }
1230
1231 min_sparse = sval / BDRV_SECTOR_SIZE;
1232 break;
1233 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001234 case 'p':
1235 progress = 1;
1236 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001237 case 't':
1238 cache = optarg;
1239 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001240 case 'q':
1241 quiet = true;
1242 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001243 case 'n':
1244 skip_create = 1;
1245 break;
bellardea2384d2004-08-01 21:59:26 +00001246 }
1247 }
ths3b46e622007-09-17 08:09:54 +00001248
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001249 if (quiet) {
1250 progress = 0;
1251 }
1252
balrog926c2d22007-10-31 01:11:44 +00001253 bs_n = argc - optind - 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001254 if (bs_n < 1) {
1255 help();
1256 }
balrog926c2d22007-10-31 01:11:44 +00001257
1258 out_filename = argv[argc - 1];
thsf58c7b32008-06-05 21:53:49 +00001259
Charles Arnoldfa170c12012-05-11 10:57:54 -06001260 /* Initialize before goto out */
Peter Lieven40588982013-11-27 11:07:09 +01001261 qemu_progress_init(progress, 1.0);
Charles Arnoldfa170c12012-05-11 10:57:54 -06001262
Peter Maydellc8057f92012-08-02 13:45:54 +01001263 if (options && is_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001264 ret = print_block_option_help(out_filename, out_fmt);
1265 goto out;
1266 }
1267
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001268 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001269 error_report("-B makes no sense when concatenating multiple input "
1270 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001271 ret = -1;
1272 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001273 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001274
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001275 qemu_progress_print(0, 100);
1276
Anthony Liguori7267c092011-08-20 22:09:37 -05001277 bs = g_malloc0(bs_n * sizeof(BlockDriverState *));
balrog926c2d22007-10-31 01:11:44 +00001278
1279 total_sectors = 0;
1280 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001281 bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS, true,
1282 quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001283 if (!bs[bs_i]) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001284 error_report("Could not open '%s'", argv[optind + bs_i]);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001285 ret = -1;
1286 goto out;
1287 }
balrog926c2d22007-10-31 01:11:44 +00001288 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1289 total_sectors += bs_sectors;
1290 }
bellardea2384d2004-08-01 21:59:26 +00001291
Wenchao Xiaef806542013-12-04 17:10:57 +08001292 if (sn_opts) {
1293 ret = bdrv_snapshot_load_tmp(bs[0],
1294 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1295 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1296 &local_err);
1297 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001298 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001299 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001300 ret = -1;
1301 goto out;
1302 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001303
1304 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001305 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001306 if (local_err) {
Wenchao Xiaef806542013-12-04 17:10:57 +08001307 error_report("Failed to load snapshot: %s",
1308 error_get_pretty(local_err));
1309 error_free(local_err);
1310 ret = -1;
1311 goto out;
edison51ef6722010-09-21 19:58:41 -07001312 }
1313
Kevin Wolfefa84d42009-05-18 16:42:12 +02001314 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001315 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001316 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001317 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001318 ret = -1;
1319 goto out;
1320 }
balrog926c2d22007-10-31 01:11:44 +00001321
Kevin Wolf98289622013-07-10 15:47:39 +02001322 proto_drv = bdrv_find_protocol(out_filename, true);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001323 if (!proto_drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001324 error_report("Unknown protocol '%s'", out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001325 ret = -1;
1326 goto out;
1327 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001328
1329 create_options = append_option_parameters(create_options,
1330 drv->create_options);
1331 create_options = append_option_parameters(create_options,
1332 proto_drv->create_options);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02001333
Kevin Wolfefa84d42009-05-18 16:42:12 +02001334 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001335 param = parse_option_parameters(options, create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001336 if (param == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001337 error_report("Invalid options for file format '%s'.", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001338 ret = -1;
1339 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001340 }
1341 } else {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001342 param = parse_option_parameters("", create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001343 }
1344
1345 set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512);
Jes Sorenseneec77d92010-12-07 17:44:34 +01001346 ret = add_old_style_options(out_fmt, param, out_baseimg, NULL);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001347 if (ret < 0) {
1348 goto out;
1349 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001350
Kevin Wolfa18953f2010-10-14 15:46:04 +02001351 /* Get backing file name if -o backing_file was used */
1352 out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
1353 if (out_baseimg_param) {
1354 out_baseimg = out_baseimg_param->value.s;
1355 }
1356
Kevin Wolfefa84d42009-05-18 16:42:12 +02001357 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01001358 if (compress) {
Kevin Wolfefa84d42009-05-18 16:42:12 +02001359 QEMUOptionParameter *encryption =
1360 get_option_parameter(param, BLOCK_OPT_ENCRYPT);
Kevin Wolf41521fa2011-10-18 16:19:42 +02001361 QEMUOptionParameter *preallocation =
1362 get_option_parameter(param, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02001363
1364 if (!drv->bdrv_write_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001365 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001366 ret = -1;
1367 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001368 }
1369
1370 if (encryption && encryption->value.n) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001371 error_report("Compression and encryption not supported at "
1372 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001373 ret = -1;
1374 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001375 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02001376
1377 if (preallocation && preallocation->value.s
1378 && strcmp(preallocation->value.s, "off"))
1379 {
1380 error_report("Compression and preallocation not supported at "
1381 "the same time");
1382 ret = -1;
1383 goto out;
1384 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001385 }
1386
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001387 if (!skip_create) {
1388 /* Create the new image */
Max Reitzcc84d902013-09-06 17:14:26 +02001389 ret = bdrv_create(drv, out_filename, param, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001390 if (ret < 0) {
Max Reitzcc84d902013-09-06 17:14:26 +02001391 error_report("%s: error while converting %s: %s",
1392 out_filename, out_fmt, error_get_pretty(local_err));
1393 error_free(local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001394 goto out;
bellardea2384d2004-08-01 21:59:26 +00001395 }
1396 }
ths3b46e622007-09-17 08:09:54 +00001397
Peter Lieven5a37b602013-10-24 12:07:06 +02001398 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001399 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001400 if (ret < 0) {
1401 error_report("Invalid cache option: %s", cache);
1402 return -1;
1403 }
1404
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001405 out_bs = bdrv_new_open(out_filename, out_fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001406 if (!out_bs) {
1407 ret = -1;
1408 goto out;
1409 }
bellardea2384d2004-08-01 21:59:26 +00001410
balrog926c2d22007-10-31 01:11:44 +00001411 bs_i = 0;
1412 bs_offset = 0;
1413 bdrv_get_geometry(bs[0], &bs_sectors);
Peter Lievenf2521c92013-11-27 11:07:06 +01001414
1415 /* increase bufsectors from the default 4096 (2M) if opt_transfer_length
1416 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
1417 * as maximum. */
1418 bufsectors = MIN(32768,
1419 MAX(bufsectors, MAX(out_bs->bl.opt_transfer_length,
1420 out_bs->bl.discard_alignment))
1421 );
1422
1423 buf = qemu_blockalign(out_bs, bufsectors * BDRV_SECTOR_SIZE);
balrog926c2d22007-10-31 01:11:44 +00001424
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001425 if (skip_create) {
1426 int64_t output_length = bdrv_getlength(out_bs);
1427 if (output_length < 0) {
1428 error_report("unable to get output image length: %s\n",
1429 strerror(-output_length));
1430 ret = -1;
1431 goto out;
1432 } else if (output_length < total_sectors << BDRV_SECTOR_BITS) {
1433 error_report("output file is smaller than input file");
1434 ret = -1;
1435 goto out;
1436 }
1437 }
1438
Peter Lieven24f833c2013-11-27 11:07:07 +01001439 cluster_sectors = 0;
1440 ret = bdrv_get_info(out_bs, &bdi);
1441 if (ret < 0) {
1442 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001443 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001444 goto out;
1445 }
Peter Lieven24f833c2013-11-27 11:07:07 +01001446 } else {
1447 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
1448 }
1449
1450 if (compress) {
1451 if (cluster_sectors <= 0 || cluster_sectors > bufsectors) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001452 error_report("invalid cluster size");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001453 ret = -1;
1454 goto out;
1455 }
bellardea2384d2004-08-01 21:59:26 +00001456 sector_num = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001457
1458 nb_sectors = total_sectors;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001459
bellardea2384d2004-08-01 21:59:26 +00001460 for(;;) {
balrog926c2d22007-10-31 01:11:44 +00001461 int64_t bs_num;
1462 int remainder;
1463 uint8_t *buf2;
1464
bellardea2384d2004-08-01 21:59:26 +00001465 nb_sectors = total_sectors - sector_num;
1466 if (nb_sectors <= 0)
1467 break;
1468 if (nb_sectors >= cluster_sectors)
1469 n = cluster_sectors;
1470 else
1471 n = nb_sectors;
balrog926c2d22007-10-31 01:11:44 +00001472
1473 bs_num = sector_num - bs_offset;
1474 assert (bs_num >= 0);
1475 remainder = n;
1476 buf2 = buf;
1477 while (remainder > 0) {
1478 int nlow;
1479 while (bs_num == bs_sectors) {
1480 bs_i++;
1481 assert (bs_i < bs_n);
1482 bs_offset += bs_sectors;
1483 bdrv_get_geometry(bs[bs_i], &bs_sectors);
1484 bs_num = 0;
Blue Swirl0bfcd592010-05-22 08:02:12 +00001485 /* printf("changing part: sector_num=%" PRId64 ", "
1486 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
1487 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
balrog926c2d22007-10-31 01:11:44 +00001488 }
1489 assert (bs_num < bs_sectors);
1490
1491 nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder;
1492
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001493 ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow);
1494 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001495 error_report("error while reading sector %" PRId64 ": %s",
1496 bs_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001497 goto out;
1498 }
balrog926c2d22007-10-31 01:11:44 +00001499
1500 buf2 += nlow * 512;
1501 bs_num += nlow;
1502
1503 remainder -= nlow;
1504 }
1505 assert (remainder == 0);
1506
Stefan Hajnoczi54f106d2013-04-15 17:17:33 +02001507 if (!buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)) {
1508 ret = bdrv_write_compressed(out_bs, sector_num, buf, n);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001509 if (ret != 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001510 error_report("error while compressing sector %" PRId64
1511 ": %s", sector_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001512 goto out;
1513 }
bellardea2384d2004-08-01 21:59:26 +00001514 }
1515 sector_num += n;
Peter Lieven13c28af2013-11-27 11:07:01 +01001516 qemu_progress_print(100.0 * sector_num / total_sectors, 0);
bellardea2384d2004-08-01 21:59:26 +00001517 }
bellardfaea38e2006-08-05 21:31:00 +00001518 /* signal EOF to align */
1519 bdrv_write_compressed(out_bs, 0, NULL, 0);
bellardea2384d2004-08-01 21:59:26 +00001520 } else {
Peter Lieven802c3d42013-12-05 15:54:53 +01001521 int64_t sectors_to_read, sectors_read, sector_num_next_status;
1522 bool count_allocated_sectors;
Peter Lieven11b66992013-10-24 12:07:05 +02001523 int has_zero_init = min_sparse ? bdrv_has_zero_init(out_bs) : 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02001524
Peter Lieven5a37b602013-10-24 12:07:06 +02001525 if (!has_zero_init && bdrv_can_write_zeroes_with_unmap(out_bs)) {
1526 ret = bdrv_make_zero(out_bs, BDRV_REQ_MAY_UNMAP);
1527 if (ret < 0) {
1528 goto out;
1529 }
1530 has_zero_init = 1;
1531 }
1532
Peter Lieven802c3d42013-12-05 15:54:53 +01001533 sectors_to_read = total_sectors;
1534 count_allocated_sectors = progress && (out_baseimg || has_zero_init);
1535restart:
thsf58c7b32008-06-05 21:53:49 +00001536 sector_num = 0; // total number of sectors converted so far
Peter Lieven802c3d42013-12-05 15:54:53 +01001537 sectors_read = 0;
1538 sector_num_next_status = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001539
bellardea2384d2004-08-01 21:59:26 +00001540 for(;;) {
1541 nb_sectors = total_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001542 if (nb_sectors <= 0) {
Peter Lieven802c3d42013-12-05 15:54:53 +01001543 if (count_allocated_sectors) {
1544 sectors_to_read = sectors_read;
1545 count_allocated_sectors = false;
1546 goto restart;
1547 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001548 ret = 0;
bellardea2384d2004-08-01 21:59:26 +00001549 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001550 }
balrog926c2d22007-10-31 01:11:44 +00001551
1552 while (sector_num - bs_offset >= bs_sectors) {
1553 bs_i ++;
1554 assert (bs_i < bs_n);
1555 bs_offset += bs_sectors;
1556 bdrv_get_geometry(bs[bs_i], &bs_sectors);
Blue Swirl0bfcd592010-05-22 08:02:12 +00001557 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
1558 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
balrog926c2d22007-10-31 01:11:44 +00001559 sector_num, bs_i, bs_offset, bs_sectors); */
1560 }
1561
Peter Lieven13c28af2013-11-27 11:07:01 +01001562 if ((out_baseimg || has_zero_init) &&
1563 sector_num >= sector_num_next_status) {
1564 n = nb_sectors > INT_MAX ? INT_MAX : nb_sectors;
1565 ret = bdrv_get_block_status(bs[bs_i], sector_num - bs_offset,
1566 n, &n1);
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001567 if (ret < 0) {
Peter Lieven13c28af2013-11-27 11:07:01 +01001568 error_report("error while reading block status of sector %"
1569 PRId64 ": %s", sector_num - bs_offset,
1570 strerror(-ret));
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001571 goto out;
aliguori93c65b42009-04-05 17:40:43 +00001572 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001573 /* If the output image is zero initialized, we are not working
1574 * on a shared base and the input is zero we can skip the next
1575 * n1 sectors */
1576 if (has_zero_init && !out_baseimg && (ret & BDRV_BLOCK_ZERO)) {
Paolo Bonzinie4a86f82013-09-04 19:00:26 +02001577 sector_num += n1;
1578 continue;
1579 }
Peter Lieven13c28af2013-11-27 11:07:01 +01001580 /* If the output image is being created as a copy on write
1581 * image, assume that sectors which are unallocated in the
1582 * input image are present in both the output's and input's
1583 * base images (no need to copy them). */
1584 if (out_baseimg) {
1585 if (!(ret & BDRV_BLOCK_DATA)) {
1586 sector_num += n1;
1587 continue;
1588 }
1589 /* The next 'n1' sectors are allocated in the input image.
1590 * Copy only those as they may be followed by unallocated
1591 * sectors. */
1592 nb_sectors = n1;
1593 }
1594 /* avoid redundant callouts to get_block_status */
1595 sector_num_next_status = sector_num + n1;
thsf58c7b32008-06-05 21:53:49 +00001596 }
1597
Peter Lievenf2521c92013-11-27 11:07:06 +01001598 n = MIN(nb_sectors, bufsectors);
Peter Lieven24f833c2013-11-27 11:07:07 +01001599
1600 /* round down request length to an aligned sector, but
1601 * do not bother doing this on short requests. They happen
1602 * when we found an all-zero area, and the next sector to
1603 * write will not be sector_num + n. */
1604 if (cluster_sectors > 0 && n >= cluster_sectors) {
1605 int64_t next_aligned_sector = (sector_num + n);
1606 next_aligned_sector -= next_aligned_sector % cluster_sectors;
1607 if (sector_num + n > next_aligned_sector) {
1608 n = next_aligned_sector - sector_num;
1609 }
1610 }
1611
Peter Lieven13c28af2013-11-27 11:07:01 +01001612 n = MIN(n, bs_sectors - (sector_num - bs_offset));
Peter Lieven13c28af2013-11-27 11:07:01 +01001613
Peter Lieven802c3d42013-12-05 15:54:53 +01001614 sectors_read += n;
1615 if (count_allocated_sectors) {
1616 sector_num += n;
1617 continue;
1618 }
1619
1620 n1 = n;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001621 ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n);
1622 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001623 error_report("error while reading sector %" PRId64 ": %s",
1624 sector_num - bs_offset, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001625 goto out;
1626 }
bellardea2384d2004-08-01 21:59:26 +00001627 /* NOTE: at the same time we convert, we do not write zero
1628 sectors to have a chance to compress the image. Ideally, we
1629 should add a specific call to have the info to go faster */
1630 buf1 = buf;
1631 while (n > 0) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02001632 if (!has_zero_init ||
Kevin Wolfa22f1232011-08-26 15:27:13 +02001633 is_allocated_sectors_min(buf1, n, &n1, min_sparse)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001634 ret = bdrv_write(out_bs, sector_num, buf1, n1);
1635 if (ret < 0) {
Stefan Hajnoczi3fba9d82011-08-17 17:41:09 +01001636 error_report("error while writing sector %" PRId64
1637 ": %s", sector_num, strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001638 goto out;
1639 }
bellardea2384d2004-08-01 21:59:26 +00001640 }
1641 sector_num += n1;
1642 n -= n1;
1643 buf1 += n1 * 512;
1644 }
Peter Lieven802c3d42013-12-05 15:54:53 +01001645 qemu_progress_print(100.0 * sectors_read / sectors_to_read, 0);
bellardea2384d2004-08-01 21:59:26 +00001646 }
1647 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001648out:
Peter Lieven13c28af2013-11-27 11:07:01 +01001649 if (!ret) {
1650 qemu_progress_print(100, 0);
1651 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001652 qemu_progress_end();
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001653 free_option_parameters(create_options);
1654 free_option_parameters(param);
Kevin Wolfbb1c0592011-08-08 14:09:12 +02001655 qemu_vfree(buf);
Wenchao Xiaef806542013-12-04 17:10:57 +08001656 if (sn_opts) {
1657 qemu_opts_del(sn_opts);
1658 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001659 if (out_bs) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08001660 bdrv_unref(out_bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001661 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001662 if (bs) {
1663 for (bs_i = 0; bs_i < bs_n; bs_i++) {
1664 if (bs[bs_i]) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08001665 bdrv_unref(bs[bs_i]);
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001666 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001667 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001668 g_free(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001669 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001670 if (ret) {
1671 return 1;
1672 }
bellardea2384d2004-08-01 21:59:26 +00001673 return 0;
1674}
1675
bellard57d1a2b2004-08-03 21:15:11 +00001676
bellardfaea38e2006-08-05 21:31:00 +00001677static void dump_snapshots(BlockDriverState *bs)
1678{
1679 QEMUSnapshotInfo *sn_tab, *sn;
1680 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00001681
1682 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1683 if (nb_sns <= 0)
1684 return;
1685 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08001686 bdrv_snapshot_dump(fprintf, stdout, NULL);
1687 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00001688 for(i = 0; i < nb_sns; i++) {
1689 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08001690 bdrv_snapshot_dump(fprintf, stdout, sn);
1691 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00001692 }
Anthony Liguori7267c092011-08-20 22:09:37 -05001693 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00001694}
1695
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001696static void dump_json_image_info_list(ImageInfoList *list)
1697{
1698 Error *errp = NULL;
1699 QString *str;
1700 QmpOutputVisitor *ov = qmp_output_visitor_new();
1701 QObject *obj;
1702 visit_type_ImageInfoList(qmp_output_get_visitor(ov),
1703 &list, NULL, &errp);
1704 obj = qmp_output_get_qobject(ov);
1705 str = qobject_to_json_pretty(obj);
1706 assert(str != NULL);
1707 printf("%s\n", qstring_get_str(str));
1708 qobject_decref(obj);
1709 qmp_output_visitor_cleanup(ov);
1710 QDECREF(str);
1711}
1712
Benoît Canetc054b3f2012-09-05 13:09:02 +02001713static void dump_json_image_info(ImageInfo *info)
1714{
1715 Error *errp = NULL;
1716 QString *str;
1717 QmpOutputVisitor *ov = qmp_output_visitor_new();
1718 QObject *obj;
1719 visit_type_ImageInfo(qmp_output_get_visitor(ov),
1720 &info, NULL, &errp);
1721 obj = qmp_output_get_qobject(ov);
1722 str = qobject_to_json_pretty(obj);
1723 assert(str != NULL);
1724 printf("%s\n", qstring_get_str(str));
1725 qobject_decref(obj);
1726 qmp_output_visitor_cleanup(ov);
1727 QDECREF(str);
1728}
1729
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001730static void dump_human_image_info_list(ImageInfoList *list)
1731{
1732 ImageInfoList *elem;
1733 bool delim = false;
1734
1735 for (elem = list; elem; elem = elem->next) {
1736 if (delim) {
1737 printf("\n");
1738 }
1739 delim = true;
1740
Wenchao Xia5b917042013-05-25 11:09:45 +08001741 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001742 }
1743}
1744
1745static gboolean str_equal_func(gconstpointer a, gconstpointer b)
1746{
1747 return strcmp(a, b) == 0;
1748}
1749
1750/**
1751 * Open an image file chain and return an ImageInfoList
1752 *
1753 * @filename: topmost image filename
1754 * @fmt: topmost image format (may be NULL to autodetect)
1755 * @chain: true - enumerate entire backing file chain
1756 * false - only topmost image file
1757 *
1758 * Returns a list of ImageInfo objects or NULL if there was an error opening an
1759 * image file. If there was an error a message will have been printed to
1760 * stderr.
1761 */
1762static ImageInfoList *collect_image_info_list(const char *filename,
1763 const char *fmt,
1764 bool chain)
1765{
1766 ImageInfoList *head = NULL;
1767 ImageInfoList **last = &head;
1768 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08001769 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001770
1771 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
1772
1773 while (filename) {
1774 BlockDriverState *bs;
1775 ImageInfo *info;
1776 ImageInfoList *elem;
1777
1778 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
1779 error_report("Backing file '%s' creates an infinite loop.",
1780 filename);
1781 goto err;
1782 }
1783 g_hash_table_insert(filenames, (gpointer)filename, NULL);
1784
1785 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_NO_BACKING,
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001786 false, false);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001787 if (!bs) {
1788 goto err;
1789 }
1790
Wenchao Xia43526ec2013-06-06 12:27:58 +08001791 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01001792 if (err) {
Wenchao Xia43526ec2013-06-06 12:27:58 +08001793 error_report("%s", error_get_pretty(err));
1794 error_free(err);
1795 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08001796 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001797
1798 elem = g_new0(ImageInfoList, 1);
1799 elem->value = info;
1800 *last = elem;
1801 last = &elem->next;
1802
Fam Zheng4f6fd342013-08-23 09:14:47 +08001803 bdrv_unref(bs);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001804
1805 filename = fmt = NULL;
1806 if (chain) {
1807 if (info->has_full_backing_filename) {
1808 filename = info->full_backing_filename;
1809 } else if (info->has_backing_filename) {
1810 filename = info->backing_filename;
1811 }
1812 if (info->has_backing_filename_format) {
1813 fmt = info->backing_filename_format;
1814 }
1815 }
1816 }
1817 g_hash_table_destroy(filenames);
1818 return head;
1819
1820err:
1821 qapi_free_ImageInfoList(head);
1822 g_hash_table_destroy(filenames);
1823 return NULL;
1824}
1825
Benoît Canetc054b3f2012-09-05 13:09:02 +02001826static int img_info(int argc, char **argv)
1827{
1828 int c;
1829 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001830 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001831 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001832 ImageInfoList *list;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001833
bellardea2384d2004-08-01 21:59:26 +00001834 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001835 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00001836 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02001837 int option_index = 0;
1838 static const struct option long_options[] = {
1839 {"help", no_argument, 0, 'h'},
1840 {"format", required_argument, 0, 'f'},
1841 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001842 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Benoît Canetc054b3f2012-09-05 13:09:02 +02001843 {0, 0, 0, 0}
1844 };
1845 c = getopt_long(argc, argv, "f:h",
1846 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001847 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001848 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001849 }
bellardea2384d2004-08-01 21:59:26 +00001850 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001851 case '?':
bellardea2384d2004-08-01 21:59:26 +00001852 case 'h':
1853 help();
1854 break;
1855 case 'f':
1856 fmt = optarg;
1857 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02001858 case OPTION_OUTPUT:
1859 output = optarg;
1860 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001861 case OPTION_BACKING_CHAIN:
1862 chain = true;
1863 break;
bellardea2384d2004-08-01 21:59:26 +00001864 }
1865 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02001866 if (optind != argc - 1) {
bellardea2384d2004-08-01 21:59:26 +00001867 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001868 }
bellardea2384d2004-08-01 21:59:26 +00001869 filename = argv[optind++];
1870
Benoît Canetc054b3f2012-09-05 13:09:02 +02001871 if (output && !strcmp(output, "json")) {
1872 output_format = OFORMAT_JSON;
1873 } else if (output && !strcmp(output, "human")) {
1874 output_format = OFORMAT_HUMAN;
1875 } else if (output) {
1876 error_report("--output must be used with human or json as argument.");
1877 return 1;
1878 }
1879
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001880 list = collect_image_info_list(filename, fmt, chain);
1881 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001882 return 1;
1883 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001884
Benoît Canetc054b3f2012-09-05 13:09:02 +02001885 switch (output_format) {
1886 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001887 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02001888 break;
1889 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001890 if (chain) {
1891 dump_json_image_info_list(list);
1892 } else {
1893 dump_json_image_info(list->value);
1894 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001895 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001896 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02001897
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02001898 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00001899 return 0;
1900}
1901
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02001902
1903typedef struct MapEntry {
1904 int flags;
1905 int depth;
1906 int64_t start;
1907 int64_t length;
1908 int64_t offset;
1909 BlockDriverState *bs;
1910} MapEntry;
1911
1912static void dump_map_entry(OutputFormat output_format, MapEntry *e,
1913 MapEntry *next)
1914{
1915 switch (output_format) {
1916 case OFORMAT_HUMAN:
1917 if ((e->flags & BDRV_BLOCK_DATA) &&
1918 !(e->flags & BDRV_BLOCK_OFFSET_VALID)) {
1919 error_report("File contains external, encrypted or compressed clusters.");
1920 exit(1);
1921 }
1922 if ((e->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) == BDRV_BLOCK_DATA) {
1923 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
1924 e->start, e->length, e->offset, e->bs->filename);
1925 }
1926 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
1927 * Modify the flags here to allow more coalescing.
1928 */
1929 if (next &&
1930 (next->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) != BDRV_BLOCK_DATA) {
1931 next->flags &= ~BDRV_BLOCK_DATA;
1932 next->flags |= BDRV_BLOCK_ZERO;
1933 }
1934 break;
1935 case OFORMAT_JSON:
1936 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64", \"depth\": %d,"
1937 " \"zero\": %s, \"data\": %s",
1938 (e->start == 0 ? "[" : ",\n"),
1939 e->start, e->length, e->depth,
1940 (e->flags & BDRV_BLOCK_ZERO) ? "true" : "false",
1941 (e->flags & BDRV_BLOCK_DATA) ? "true" : "false");
1942 if (e->flags & BDRV_BLOCK_OFFSET_VALID) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02001943 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02001944 }
1945 putchar('}');
1946
1947 if (!next) {
1948 printf("]\n");
1949 }
1950 break;
1951 }
1952}
1953
1954static int get_block_status(BlockDriverState *bs, int64_t sector_num,
1955 int nb_sectors, MapEntry *e)
1956{
1957 int64_t ret;
1958 int depth;
1959
1960 /* As an optimization, we could cache the current range of unallocated
1961 * clusters in each file of the chain, and avoid querying the same
1962 * range repeatedly.
1963 */
1964
1965 depth = 0;
1966 for (;;) {
1967 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors);
1968 if (ret < 0) {
1969 return ret;
1970 }
1971 assert(nb_sectors);
1972 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
1973 break;
1974 }
1975 bs = bs->backing_hd;
1976 if (bs == NULL) {
1977 ret = 0;
1978 break;
1979 }
1980
1981 depth++;
1982 }
1983
1984 e->start = sector_num * BDRV_SECTOR_SIZE;
1985 e->length = nb_sectors * BDRV_SECTOR_SIZE;
1986 e->flags = ret & ~BDRV_BLOCK_OFFSET_MASK;
1987 e->offset = ret & BDRV_BLOCK_OFFSET_MASK;
1988 e->depth = depth;
1989 e->bs = bs;
1990 return 0;
1991}
1992
1993static int img_map(int argc, char **argv)
1994{
1995 int c;
1996 OutputFormat output_format = OFORMAT_HUMAN;
1997 BlockDriverState *bs;
1998 const char *filename, *fmt, *output;
1999 int64_t length;
2000 MapEntry curr = { .length = 0 }, next;
2001 int ret = 0;
2002
2003 fmt = NULL;
2004 output = NULL;
2005 for (;;) {
2006 int option_index = 0;
2007 static const struct option long_options[] = {
2008 {"help", no_argument, 0, 'h'},
2009 {"format", required_argument, 0, 'f'},
2010 {"output", required_argument, 0, OPTION_OUTPUT},
2011 {0, 0, 0, 0}
2012 };
2013 c = getopt_long(argc, argv, "f:h",
2014 long_options, &option_index);
2015 if (c == -1) {
2016 break;
2017 }
2018 switch (c) {
2019 case '?':
2020 case 'h':
2021 help();
2022 break;
2023 case 'f':
2024 fmt = optarg;
2025 break;
2026 case OPTION_OUTPUT:
2027 output = optarg;
2028 break;
2029 }
2030 }
2031 if (optind >= argc) {
2032 help();
2033 }
2034 filename = argv[optind++];
2035
2036 if (output && !strcmp(output, "json")) {
2037 output_format = OFORMAT_JSON;
2038 } else if (output && !strcmp(output, "human")) {
2039 output_format = OFORMAT_HUMAN;
2040 } else if (output) {
2041 error_report("--output must be used with human or json as argument.");
2042 return 1;
2043 }
2044
2045 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS, true, false);
2046 if (!bs) {
2047 return 1;
2048 }
2049
2050 if (output_format == OFORMAT_HUMAN) {
2051 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2052 }
2053
2054 length = bdrv_getlength(bs);
2055 while (curr.start + curr.length < length) {
2056 int64_t nsectors_left;
2057 int64_t sector_num;
2058 int n;
2059
2060 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2061
2062 /* Probe up to 1 GiB at a time. */
2063 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2064 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2065 ret = get_block_status(bs, sector_num, n, &next);
2066
2067 if (ret < 0) {
2068 error_report("Could not read file metadata: %s", strerror(-ret));
2069 goto out;
2070 }
2071
2072 if (curr.length != 0 && curr.flags == next.flags &&
2073 curr.depth == next.depth &&
2074 ((curr.flags & BDRV_BLOCK_OFFSET_VALID) == 0 ||
2075 curr.offset + curr.length == next.offset)) {
2076 curr.length += next.length;
2077 continue;
2078 }
2079
2080 if (curr.length > 0) {
2081 dump_map_entry(output_format, &curr, &next);
2082 }
2083 curr = next;
2084 }
2085
2086 dump_map_entry(output_format, &curr, NULL);
2087
2088out:
2089 bdrv_unref(bs);
2090 return ret < 0;
2091}
2092
aliguorif7b4a942009-01-07 17:40:15 +00002093#define SNAPSHOT_LIST 1
2094#define SNAPSHOT_CREATE 2
2095#define SNAPSHOT_APPLY 3
2096#define SNAPSHOT_DELETE 4
2097
Stuart Brady153859b2009-06-07 00:42:17 +01002098static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002099{
2100 BlockDriverState *bs;
2101 QEMUSnapshotInfo sn;
2102 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002103 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002104 int action = 0;
2105 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002106 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002107 Error *err = NULL;
aliguorif7b4a942009-01-07 17:40:15 +00002108
Kevin Wolf710da702011-01-10 12:33:02 +01002109 bdrv_oflags = BDRV_O_FLAGS | BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002110 /* Parse commandline parameters */
2111 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002112 c = getopt(argc, argv, "la:c:d:hq");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002113 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002114 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002115 }
aliguorif7b4a942009-01-07 17:40:15 +00002116 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002117 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002118 case 'h':
2119 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002120 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002121 case 'l':
2122 if (action) {
2123 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002124 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002125 }
2126 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002127 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002128 break;
2129 case 'a':
2130 if (action) {
2131 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002132 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002133 }
2134 action = SNAPSHOT_APPLY;
2135 snapshot_name = optarg;
2136 break;
2137 case 'c':
2138 if (action) {
2139 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002140 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002141 }
2142 action = SNAPSHOT_CREATE;
2143 snapshot_name = optarg;
2144 break;
2145 case 'd':
2146 if (action) {
2147 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002148 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002149 }
2150 action = SNAPSHOT_DELETE;
2151 snapshot_name = optarg;
2152 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002153 case 'q':
2154 quiet = true;
2155 break;
aliguorif7b4a942009-01-07 17:40:15 +00002156 }
2157 }
2158
Kevin Wolffc11eb22013-08-05 10:53:04 +02002159 if (optind != argc - 1) {
aliguorif7b4a942009-01-07 17:40:15 +00002160 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002161 }
aliguorif7b4a942009-01-07 17:40:15 +00002162 filename = argv[optind++];
2163
2164 /* Open the image */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002165 bs = bdrv_new_open(filename, NULL, bdrv_oflags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002166 if (!bs) {
2167 return 1;
2168 }
aliguorif7b4a942009-01-07 17:40:15 +00002169
2170 /* Perform the requested action */
2171 switch(action) {
2172 case SNAPSHOT_LIST:
2173 dump_snapshots(bs);
2174 break;
2175
2176 case SNAPSHOT_CREATE:
2177 memset(&sn, 0, sizeof(sn));
2178 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2179
2180 qemu_gettimeofday(&tv);
2181 sn.date_sec = tv.tv_sec;
2182 sn.date_nsec = tv.tv_usec * 1000;
2183
2184 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002185 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002186 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002187 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002188 }
aliguorif7b4a942009-01-07 17:40:15 +00002189 break;
2190
2191 case SNAPSHOT_APPLY:
2192 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002193 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002194 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002195 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002196 }
aliguorif7b4a942009-01-07 17:40:15 +00002197 break;
2198
2199 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002200 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002201 if (err) {
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002202 error_report("Could not delete snapshot '%s': (%s)",
2203 snapshot_name, error_get_pretty(err));
2204 error_free(err);
2205 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002206 }
aliguorif7b4a942009-01-07 17:40:15 +00002207 break;
2208 }
2209
2210 /* Cleanup */
Fam Zheng4f6fd342013-08-23 09:14:47 +08002211 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002212 if (ret) {
2213 return 1;
2214 }
Stuart Brady153859b2009-06-07 00:42:17 +01002215 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002216}
2217
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002218static int img_rebase(int argc, char **argv)
2219{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002220 BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL;
Stefan Hajnoczif163d072010-04-13 10:29:34 +01002221 BlockDriver *old_backing_drv, *new_backing_drv;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002222 char *filename;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002223 const char *fmt, *cache, *out_basefmt, *out_baseimg;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002224 int c, flags, ret;
2225 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002226 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002227 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002228 Error *local_err = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002229
2230 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002231 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002232 cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002233 out_baseimg = NULL;
2234 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002235 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002236 c = getopt(argc, argv, "uhf:F:b:pt:q");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002237 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002238 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002239 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002240 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002241 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002242 case 'h':
2243 help();
2244 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002245 case 'f':
2246 fmt = optarg;
2247 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002248 case 'F':
2249 out_basefmt = optarg;
2250 break;
2251 case 'b':
2252 out_baseimg = optarg;
2253 break;
2254 case 'u':
2255 unsafe = 1;
2256 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002257 case 'p':
2258 progress = 1;
2259 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002260 case 't':
2261 cache = optarg;
2262 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002263 case 'q':
2264 quiet = true;
2265 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002266 }
2267 }
2268
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002269 if (quiet) {
2270 progress = 0;
2271 }
2272
Kevin Wolffc11eb22013-08-05 10:53:04 +02002273 if ((optind != argc - 1) || (!unsafe && !out_baseimg)) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002274 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002275 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002276 filename = argv[optind++];
2277
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002278 qemu_progress_init(progress, 2.0);
2279 qemu_progress_print(0, 100);
2280
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002281 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01002282 ret = bdrv_parse_cache_flags(cache, &flags);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002283 if (ret < 0) {
2284 error_report("Invalid cache option: %s", cache);
2285 return -1;
2286 }
2287
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002288 /*
2289 * Open the images.
2290 *
2291 * Ignore the old backing file for unsafe rebase in case we want to correct
2292 * the reference to a renamed or moved backing file.
2293 */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002294 bs = bdrv_new_open(filename, fmt, flags, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002295 if (!bs) {
2296 return 1;
2297 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002298
2299 /* Find the right drivers for the backing files */
2300 old_backing_drv = NULL;
2301 new_backing_drv = NULL;
2302
2303 if (!unsafe && bs->backing_format[0] != '\0') {
2304 old_backing_drv = bdrv_find_format(bs->backing_format);
2305 if (old_backing_drv == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002306 error_report("Invalid format name: '%s'", bs->backing_format);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002307 ret = -1;
2308 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002309 }
2310 }
2311
2312 if (out_basefmt != NULL) {
2313 new_backing_drv = bdrv_find_format(out_basefmt);
2314 if (new_backing_drv == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002315 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002316 ret = -1;
2317 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002318 }
2319 }
2320
2321 /* For safe rebasing we need to compare old and new backing file */
2322 if (unsafe) {
2323 /* Make the compiler happy */
2324 bs_old_backing = NULL;
2325 bs_new_backing = NULL;
2326 } else {
2327 char backing_name[1024];
2328
2329 bs_old_backing = bdrv_new("old_backing");
2330 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzddf56362014-02-18 18:33:06 +01002331 ret = bdrv_open(&bs_old_backing, backing_name, NULL, NULL, BDRV_O_FLAGS,
Max Reitz34b5d2c2013-09-05 14:45:29 +02002332 old_backing_drv, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002333 if (ret) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02002334 error_report("Could not open old backing file '%s': %s",
2335 backing_name, error_get_pretty(local_err));
2336 error_free(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002337 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002338 }
Alex Bligha6166732012-10-16 13:46:18 +01002339 if (out_baseimg[0]) {
2340 bs_new_backing = bdrv_new("new_backing");
Max Reitzddf56362014-02-18 18:33:06 +01002341 ret = bdrv_open(&bs_new_backing, out_baseimg, NULL, NULL,
2342 BDRV_O_FLAGS, new_backing_drv, &local_err);
Alex Bligha6166732012-10-16 13:46:18 +01002343 if (ret) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02002344 error_report("Could not open new backing file '%s': %s",
2345 out_baseimg, error_get_pretty(local_err));
2346 error_free(local_err);
Alex Bligha6166732012-10-16 13:46:18 +01002347 goto out;
2348 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002349 }
2350 }
2351
2352 /*
2353 * Check each unallocated cluster in the COW file. If it is unallocated,
2354 * accesses go to the backing file. We must therefore compare this cluster
2355 * in the old and new backing file, and if they differ we need to copy it
2356 * from the old backing file into the COW file.
2357 *
2358 * If qemu-img crashes during this step, no harm is done. The content of
2359 * the image is the same as the original one at any time.
2360 */
2361 if (!unsafe) {
2362 uint64_t num_sectors;
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002363 uint64_t old_backing_num_sectors;
Alex Bligha6166732012-10-16 13:46:18 +01002364 uint64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002365 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02002366 int n;
TeLeMand6771bf2010-02-08 16:20:00 +08002367 uint8_t * buf_old;
2368 uint8_t * buf_new;
Kevin Wolf1f710492012-10-12 14:29:18 +02002369 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08002370
Kevin Wolfbb1c0592011-08-08 14:09:12 +02002371 buf_old = qemu_blockalign(bs, IO_BUF_SIZE);
2372 buf_new = qemu_blockalign(bs, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002373
2374 bdrv_get_geometry(bs, &num_sectors);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002375 bdrv_get_geometry(bs_old_backing, &old_backing_num_sectors);
Alex Bligha6166732012-10-16 13:46:18 +01002376 if (bs_new_backing) {
2377 bdrv_get_geometry(bs_new_backing, &new_backing_num_sectors);
2378 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002379
Kevin Wolf1f710492012-10-12 14:29:18 +02002380 if (num_sectors != 0) {
2381 local_progress = (float)100 /
2382 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
2383 }
2384
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002385 for (sector = 0; sector < num_sectors; sector += n) {
2386
2387 /* How many sectors can we handle with the next read? */
2388 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
2389 n = (IO_BUF_SIZE / 512);
2390 } else {
2391 n = num_sectors - sector;
2392 }
2393
2394 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02002395 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02002396 if (ret < 0) {
2397 error_report("error while reading image metadata: %s",
2398 strerror(-ret));
2399 goto out;
2400 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02002401 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002402 continue;
2403 }
2404
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002405 /*
2406 * Read old and new backing file and take into consideration that
2407 * backing files may be smaller than the COW image.
2408 */
2409 if (sector >= old_backing_num_sectors) {
2410 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
2411 } else {
2412 if (sector + n > old_backing_num_sectors) {
2413 n = old_backing_num_sectors - sector;
2414 }
2415
2416 ret = bdrv_read(bs_old_backing, sector, buf_old, n);
2417 if (ret < 0) {
2418 error_report("error while reading from old backing file");
2419 goto out;
2420 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002421 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002422
Alex Bligha6166732012-10-16 13:46:18 +01002423 if (sector >= new_backing_num_sectors || !bs_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01002424 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
2425 } else {
2426 if (sector + n > new_backing_num_sectors) {
2427 n = new_backing_num_sectors - sector;
2428 }
2429
2430 ret = bdrv_read(bs_new_backing, sector, buf_new, n);
2431 if (ret < 0) {
2432 error_report("error while reading from new backing file");
2433 goto out;
2434 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002435 }
2436
2437 /* If they differ, we need to write to the COW file */
2438 uint64_t written = 0;
2439
2440 while (written < n) {
2441 int pnum;
2442
2443 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01002444 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002445 {
2446 ret = bdrv_write(bs, sector + written,
2447 buf_old + written * 512, pnum);
2448 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002449 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002450 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002451 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002452 }
2453 }
2454
2455 written += pnum;
2456 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002457 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002458 }
TeLeMand6771bf2010-02-08 16:20:00 +08002459
Kevin Wolfbb1c0592011-08-08 14:09:12 +02002460 qemu_vfree(buf_old);
2461 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002462 }
2463
2464 /*
2465 * Change the backing file. All clusters that are different from the old
2466 * backing file are overwritten in the COW file now, so the visible content
2467 * doesn't change when we switch the backing file.
2468 */
Alex Bligha6166732012-10-16 13:46:18 +01002469 if (out_baseimg && *out_baseimg) {
2470 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
2471 } else {
2472 ret = bdrv_change_backing_file(bs, NULL, NULL);
2473 }
2474
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002475 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002476 error_report("Could not change the backing file to '%s': No "
2477 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002478 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002479 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002480 out_baseimg, strerror(-ret));
2481 }
2482
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002483 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002484 /*
2485 * TODO At this point it is possible to check if any clusters that are
2486 * allocated in the COW file are the same in the backing file. If so, they
2487 * could be dropped from the COW file. Don't do this before switching the
2488 * backing file, in case of a crash this would lead to corruption.
2489 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002490out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002491 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002492 /* Cleanup */
2493 if (!unsafe) {
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002494 if (bs_old_backing != NULL) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002495 bdrv_unref(bs_old_backing);
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002496 }
2497 if (bs_new_backing != NULL) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002498 bdrv_unref(bs_new_backing);
Kevin Wolfeb863ad2011-03-31 12:39:51 +02002499 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002500 }
2501
Fam Zheng4f6fd342013-08-23 09:14:47 +08002502 bdrv_unref(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002503 if (ret) {
2504 return 1;
2505 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002506 return 0;
2507}
2508
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002509static int img_resize(int argc, char **argv)
2510{
2511 int c, ret, relative;
2512 const char *filename, *fmt, *size;
2513 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002514 bool quiet = false;
Jes Sorensen2a819982010-12-06 17:08:31 +01002515 BlockDriverState *bs = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002516 QemuOpts *param;
2517 static QemuOptsList resize_options = {
2518 .name = "resize_options",
2519 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
2520 .desc = {
2521 {
2522 .name = BLOCK_OPT_SIZE,
2523 .type = QEMU_OPT_SIZE,
2524 .help = "Virtual disk size"
2525 }, {
2526 /* end of list */
2527 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002528 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002529 };
2530
Kevin Wolfe80fec72011-04-29 10:58:12 +02002531 /* Remove size from argv manually so that negative numbers are not treated
2532 * as options by getopt. */
2533 if (argc < 3) {
2534 help();
2535 return 1;
2536 }
2537
2538 size = argv[--argc];
2539
2540 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002541 fmt = NULL;
2542 for(;;) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002543 c = getopt(argc, argv, "f:hq");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002544 if (c == -1) {
2545 break;
2546 }
2547 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002548 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002549 case 'h':
2550 help();
2551 break;
2552 case 'f':
2553 fmt = optarg;
2554 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002555 case 'q':
2556 quiet = true;
2557 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002558 }
2559 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002560 if (optind != argc - 1) {
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002561 help();
2562 }
2563 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002564
2565 /* Choose grow, shrink, or absolute resize mode */
2566 switch (size[0]) {
2567 case '+':
2568 relative = 1;
2569 size++;
2570 break;
2571 case '-':
2572 relative = -1;
2573 size++;
2574 break;
2575 default:
2576 relative = 0;
2577 break;
2578 }
2579
2580 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08002581 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002582 if (qemu_opt_set(param, BLOCK_OPT_SIZE, size)) {
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002583 /* Error message already printed when size parsing fails */
Jes Sorensen2a819982010-12-06 17:08:31 +01002584 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002585 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01002586 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002587 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08002588 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
2589 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002590
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002591 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002592 if (!bs) {
Jes Sorensen2a819982010-12-06 17:08:31 +01002593 ret = -1;
2594 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002595 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002596
2597 if (relative) {
2598 total_size = bdrv_getlength(bs) + n * relative;
2599 } else {
2600 total_size = n;
2601 }
2602 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002603 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002604 ret = -1;
2605 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002606 }
2607
2608 ret = bdrv_truncate(bs, total_size);
2609 switch (ret) {
2610 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002611 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002612 break;
2613 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01002614 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002615 break;
2616 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01002617 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002618 break;
2619 default:
Jes Sorensen15654a62010-12-16 14:31:53 +01002620 error_report("Error resizing image (%d)", -ret);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002621 break;
2622 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002623out:
Jes Sorensen2a819982010-12-06 17:08:31 +01002624 if (bs) {
Fam Zheng4f6fd342013-08-23 09:14:47 +08002625 bdrv_unref(bs);
Jes Sorensen2a819982010-12-06 17:08:31 +01002626 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002627 if (ret) {
2628 return 1;
2629 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01002630 return 0;
2631}
2632
Max Reitz6f176b42013-09-03 10:09:50 +02002633static int img_amend(int argc, char **argv)
2634{
2635 int c, ret = 0;
2636 char *options = NULL;
2637 QEMUOptionParameter *create_options = NULL, *options_param = NULL;
2638 const char *fmt = NULL, *filename;
2639 bool quiet = false;
2640 BlockDriverState *bs = NULL;
2641
2642 for (;;) {
2643 c = getopt(argc, argv, "hqf:o:");
2644 if (c == -1) {
2645 break;
2646 }
2647
2648 switch (c) {
2649 case 'h':
2650 case '?':
2651 help();
2652 break;
2653 case 'o':
2654 options = optarg;
2655 break;
2656 case 'f':
2657 fmt = optarg;
2658 break;
2659 case 'q':
2660 quiet = true;
2661 break;
2662 }
2663 }
2664
2665 if (optind != argc - 1) {
2666 help();
2667 }
2668
2669 if (!options) {
2670 help();
2671 }
2672
2673 filename = argv[argc - 1];
2674
2675 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR, true, quiet);
2676 if (!bs) {
2677 error_report("Could not open image '%s'", filename);
2678 ret = -1;
2679 goto out;
2680 }
2681
2682 fmt = bs->drv->format_name;
2683
2684 if (is_help_option(options)) {
2685 ret = print_block_option_help(filename, fmt);
2686 goto out;
2687 }
2688
2689 create_options = append_option_parameters(create_options,
2690 bs->drv->create_options);
2691 options_param = parse_option_parameters(options, create_options,
2692 options_param);
2693 if (options_param == NULL) {
2694 error_report("Invalid options for file format '%s'", fmt);
2695 ret = -1;
2696 goto out;
2697 }
2698
2699 ret = bdrv_amend_options(bs, options_param);
2700 if (ret < 0) {
2701 error_report("Error while amending options: %s", strerror(-ret));
2702 goto out;
2703 }
2704
2705out:
2706 if (bs) {
2707 bdrv_unref(bs);
2708 }
2709 free_option_parameters(create_options);
2710 free_option_parameters(options_param);
2711 if (ret) {
2712 return 1;
2713 }
2714 return 0;
2715}
2716
Anthony Liguoric227f092009-10-01 16:12:16 -05002717static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01002718#define DEF(option, callback, arg_string) \
2719 { option, callback },
2720#include "qemu-img-cmds.h"
2721#undef DEF
2722#undef GEN_DOCS
2723 { NULL, NULL, },
2724};
2725
bellardea2384d2004-08-01 21:59:26 +00002726int main(int argc, char **argv)
2727{
Anthony Liguoric227f092009-10-01 16:12:16 -05002728 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01002729 const char *cmdname;
bellardea2384d2004-08-01 21:59:26 +00002730
MORITA Kazutaka526eda12013-07-23 17:30:11 +09002731#ifdef CONFIG_POSIX
2732 signal(SIGPIPE, SIG_IGN);
2733#endif
2734
Kevin Wolf53f76e52010-12-16 15:10:32 +01002735 error_set_progname(argv[0]);
2736
Paolo Bonzini2592c592012-11-03 18:10:17 +01002737 qemu_init_main_loop();
bellardea2384d2004-08-01 21:59:26 +00002738 bdrv_init();
2739 if (argc < 2)
2740 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002741 cmdname = argv[1];
aurel328f9b1572009-02-09 18:14:31 +00002742 argc--; argv++;
Stuart Brady153859b2009-06-07 00:42:17 +01002743
2744 /* find the command */
2745 for(cmd = img_cmds; cmd->name != NULL; cmd++) {
2746 if (!strcmp(cmdname, cmd->name)) {
2747 return cmd->handler(argc, argv);
2748 }
bellardea2384d2004-08-01 21:59:26 +00002749 }
Stuart Brady153859b2009-06-07 00:42:17 +01002750
2751 /* not found */
2752 help();
bellardea2384d2004-08-01 21:59:26 +00002753 return 0;
2754}