blob: 728f471801398b6d26793fc8a3e432e6b4bc53ea [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 */
Peter Maydell80c71a22016-01-18 18:01:42 +000024#include "qemu/osdep.h"
Fam Zheng67a1de02016-06-01 17:44:21 +080025#include "qemu-version.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010026#include "qapi/error.h"
Benoît Canetc054b3f2012-09-05 13:09:02 +020027#include "qapi-visit.h"
28#include "qapi/qmp-output-visitor.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010029#include "qapi/qmp/qerror.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010030#include "qapi/qmp/qjson.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020031#include "qemu/cutils.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000032#include "qemu/config-file.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/option.h"
34#include "qemu/error-report.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030035#include "qemu/log.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000036#include "qom/object_interfaces.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/sysemu.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020038#include "sysemu/block-backend.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010039#include "block/block_int.h"
Max Reitzd4a32382014-10-24 15:57:37 +020040#include "block/blockjob.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080041#include "block/qapi.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030043#include "trace/control.h"
Benoît Canetc054b3f2012-09-05 13:09:02 +020044#include <getopt.h>
bellarde8445332006-06-14 15:32:10 +000045
Don Slutz61979a62015-01-09 10:17:35 -050046#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
Jeff Cody5f6979c2014-04-28 14:37:18 -040047 ", Copyright (c) 2004-2008 Fabrice Bellard\n"
48
Anthony Liguoric227f092009-10-01 16:12:16 -050049typedef struct img_cmd_t {
Stuart Brady153859b2009-06-07 00:42:17 +010050 const char *name;
51 int (*handler)(int argc, char **argv);
Anthony Liguoric227f092009-10-01 16:12:16 -050052} img_cmd_t;
Stuart Brady153859b2009-06-07 00:42:17 +010053
Federico Simoncelli8599ea42013-01-28 06:59:47 -050054enum {
55 OPTION_OUTPUT = 256,
56 OPTION_BACKING_CHAIN = 257,
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000057 OPTION_OBJECT = 258,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +000058 OPTION_IMAGE_OPTS = 259,
Kevin Wolfb6495fa2015-07-10 18:09:18 +020059 OPTION_PATTERN = 260,
Kevin Wolf55d539c2016-06-03 13:59:41 +020060 OPTION_FLUSH_INTERVAL = 261,
61 OPTION_NO_DRAIN = 262,
Federico Simoncelli8599ea42013-01-28 06:59:47 -050062};
63
64typedef enum OutputFormat {
65 OFORMAT_JSON,
66 OFORMAT_HUMAN,
67} OutputFormat;
68
Kevin Wolfe6996142016-03-15 13:03:11 +010069/* Default to cache=writeback as data integrity is not important for qemu-img */
Federico Simoncelli661a0f72011-06-20 12:48:19 -040070#define BDRV_DEFAULT_CACHE "writeback"
aurel32137519c2008-11-30 19:12:49 +000071
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +010072static void format_print(void *opaque, const char *name)
bellardea2384d2004-08-01 21:59:26 +000073{
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +010074 printf(" %s", name);
bellardea2384d2004-08-01 21:59:26 +000075}
76
Fam Zhengac1307a2014-04-22 13:36:11 +080077static void QEMU_NORETURN GCC_FMT_ATTR(1, 2) error_exit(const char *fmt, ...)
78{
79 va_list ap;
80
81 error_printf("qemu-img: ");
82
83 va_start(ap, fmt);
84 error_vprintf(fmt, ap);
85 va_end(ap);
86
87 error_printf("\nTry 'qemu-img --help' for more information\n");
88 exit(EXIT_FAILURE);
89}
90
blueswir1d2c639d2009-01-24 18:19:25 +000091/* Please keep in synch with qemu-img.texi */
Fam Zhengac1307a2014-04-22 13:36:11 +080092static void QEMU_NORETURN help(void)
bellardea2384d2004-08-01 21:59:26 +000093{
Paolo Bonzinie00291c2010-02-04 16:49:56 +010094 const char *help_msg =
Jeff Cody5f6979c2014-04-28 14:37:18 -040095 QEMU_IMG_VERSION
Denis V. Lunev10985132016-06-17 17:44:13 +030096 "usage: qemu-img [standard options] command [command options]\n"
malc3f020d72010-02-08 12:04:56 +030097 "QEMU disk image utility\n"
98 "\n"
Denis V. Lunev10985132016-06-17 17:44:13 +030099 " '-h', '--help' display this help and exit\n"
100 " '-V', '--version' output version information and exit\n"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +0300101 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
102 " specify tracing options\n"
Denis V. Lunev10985132016-06-17 17:44:13 +0300103 "\n"
malc3f020d72010-02-08 12:04:56 +0300104 "Command syntax:\n"
Stuart Brady153859b2009-06-07 00:42:17 +0100105#define DEF(option, callback, arg_string) \
106 " " arg_string "\n"
107#include "qemu-img-cmds.h"
108#undef DEF
109#undef GEN_DOCS
malc3f020d72010-02-08 12:04:56 +0300110 "\n"
111 "Command parameters:\n"
112 " 'filename' is a disk image filename\n"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000113 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
114 " manual page for a description of the object properties. The most common\n"
115 " object type is a 'secret', which is used to supply passwords and/or\n"
116 " encryption keys.\n"
malc3f020d72010-02-08 12:04:56 +0300117 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400118 " 'cache' is the cache mode used to write the output disk image, the valid\n"
Liu Yuan80ccf932012-04-20 17:10:56 +0800119 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
120 " 'directsync' and 'unsafe' (default for convert)\n"
Stefan Hajnoczibb87fdf2014-09-02 11:01:02 +0100121 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
122 " options are the same as for the 'cache' option\n"
malc3f020d72010-02-08 12:04:56 +0300123 " 'size' is the disk image size in bytes. Optional suffixes\n"
Kevin Wolf5e009842013-06-05 14:19:27 +0200124 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
125 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
126 " supported. 'b' is ignored.\n"
malc3f020d72010-02-08 12:04:56 +0300127 " 'output_filename' is the destination disk image filename\n"
128 " 'output_fmt' is the destination format\n"
129 " 'options' is a comma separated list of format specific options in a\n"
130 " name=value format. Use -o ? for an overview of the options supported by the\n"
131 " used format\n"
Wenchao Xiaef806542013-12-04 17:10:57 +0800132 " 'snapshot_param' is param used for internal snapshot, format\n"
133 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
134 " '[ID_OR_NAME]'\n"
135 " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n"
136 " instead\n"
malc3f020d72010-02-08 12:04:56 +0300137 " '-c' indicates that target image must be compressed (qcow format only)\n"
138 " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
139 " match exactly. The image doesn't need a working backing file before\n"
140 " rebasing in this case (useful for renaming the backing file)\n"
141 " '-h' with or without a command shows this help and lists the supported formats\n"
Jes Sorensen6b837bc2011-03-30 14:16:25 +0200142 " '-p' show progress of command (only certain commands)\n"
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100143 " '-q' use Quiet mode - do not print any output (except errors)\n"
Peter Lieven11b66992013-10-24 12:07:05 +0200144 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
145 " contain only zeros for qemu-img to create a sparse image during\n"
146 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
147 " unallocated or zero sectors, and the destination image will always be\n"
148 " fully allocated\n"
Benoît Canetc054b3f2012-09-05 13:09:02 +0200149 " '--output' takes the format in which the output must be done (human or json)\n"
Alexandre Derumierb2e10492013-09-02 19:07:24 +0100150 " '-n' skips the target volume creation (useful if the volume is created\n"
151 " prior to running qemu-img)\n"
malc3f020d72010-02-08 12:04:56 +0300152 "\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200153 "Parameters to check subcommand:\n"
154 " '-r' tries to repair any inconsistencies that are found during the check.\n"
155 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
156 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
Stefan Weil0546b8c2012-08-10 22:03:25 +0200157 " hiding corruption that has already occurred.\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200158 "\n"
malc3f020d72010-02-08 12:04:56 +0300159 "Parameters to snapshot subcommand:\n"
160 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
161 " '-a' applies a snapshot (revert disk to saved state)\n"
162 " '-c' creates a snapshot\n"
163 " '-d' deletes a snapshot\n"
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100164 " '-l' lists all snapshots in the given image\n"
165 "\n"
166 "Parameters to compare subcommand:\n"
167 " '-f' first image format\n"
168 " '-F' second image format\n"
169 " '-s' run in Strict mode - fail on different image size or sector allocation\n";
Paolo Bonzinie00291c2010-02-04 16:49:56 +0100170
171 printf("%s\nSupported formats:", help_msg);
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +0100172 bdrv_iterate_format(format_print, NULL);
bellardea2384d2004-08-01 21:59:26 +0000173 printf("\n");
Fam Zhengac1307a2014-04-22 13:36:11 +0800174 exit(EXIT_SUCCESS);
bellardea2384d2004-08-01 21:59:26 +0000175}
176
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000177static QemuOptsList qemu_object_opts = {
178 .name = "object",
179 .implied_opt_name = "qom-type",
180 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
181 .desc = {
182 { }
183 },
184};
185
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000186static QemuOptsList qemu_source_opts = {
187 .name = "source",
188 .implied_opt_name = "file",
189 .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head),
190 .desc = {
191 { }
192 },
193};
194
Stefan Weil7c30f652013-06-16 17:01:05 +0200195static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100196{
197 int ret = 0;
198 if (!quiet) {
199 va_list args;
200 va_start(args, fmt);
201 ret = vprintf(fmt, args);
202 va_end(args);
203 }
204 return ret;
205}
206
bellardea2384d2004-08-01 21:59:26 +0000207
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100208static int print_block_option_help(const char *filename, const char *fmt)
209{
210 BlockDriver *drv, *proto_drv;
Chunyan Liu83d05212014-06-05 17:20:51 +0800211 QemuOptsList *create_opts = NULL;
Max Reitzb65a5e12015-02-05 13:58:12 -0500212 Error *local_err = NULL;
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100213
214 /* Find driver and parse its options */
215 drv = bdrv_find_format(fmt);
216 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100217 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100218 return 1;
219 }
220
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800221 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100222 if (filename) {
Max Reitzb65a5e12015-02-05 13:58:12 -0500223 proto_drv = bdrv_find_protocol(filename, true, &local_err);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100224 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +0100225 error_report_err(local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +0800226 qemu_opts_free(create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100227 return 1;
228 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800229 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100230 }
231
Chunyan Liu83d05212014-06-05 17:20:51 +0800232 qemu_opts_print_help(create_opts);
233 qemu_opts_free(create_opts);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100234 return 0;
235}
236
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000237
238static int img_open_password(BlockBackend *blk, const char *filename,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000239 int flags, bool quiet)
bellard75c23802004-08-27 21:28:58 +0000240{
241 BlockDriverState *bs;
bellard75c23802004-08-27 21:28:58 +0000242 char password[256];
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000243
244 bs = blk_bs(blk);
Daniel P. Berrange4ef130f2016-03-21 14:11:43 +0000245 if (bdrv_is_encrypted(bs) && bdrv_key_required(bs) &&
246 !(flags & BDRV_O_NO_IO)) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000247 qprintf(quiet, "Disk image '%s' is encrypted.\n", filename);
248 if (qemu_read_password(password, sizeof(password)) < 0) {
249 error_report("No password given");
250 return -1;
251 }
252 if (bdrv_set_key(bs, password) < 0) {
253 error_report("invalid password");
254 return -1;
255 }
256 }
257 return 0;
258}
259
260
Max Reitzefaa7c42016-03-16 19:54:38 +0100261static BlockBackend *img_open_opts(const char *optstr,
Kevin Wolfce099542016-03-15 13:01:04 +0100262 QemuOpts *opts, int flags, bool writethrough,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000263 bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000264{
265 QDict *options;
266 Error *local_err = NULL;
267 BlockBackend *blk;
268 options = qemu_opts_to_qdict(opts, NULL);
Max Reitzefaa7c42016-03-16 19:54:38 +0100269 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000270 if (!blk) {
Daniel P. Berrange143605a2016-04-06 10:16:18 +0100271 error_reportf_err(local_err, "Could not open '%s': ", optstr);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000272 return NULL;
273 }
Kevin Wolfce099542016-03-15 13:01:04 +0100274 blk_set_enable_write_cache(blk, !writethrough);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000275
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000276 if (img_open_password(blk, optstr, flags, quiet) < 0) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000277 blk_unref(blk);
278 return NULL;
279 }
280 return blk;
281}
282
Max Reitzefaa7c42016-03-16 19:54:38 +0100283static BlockBackend *img_open_file(const char *filename,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000284 const char *fmt, int flags,
Kevin Wolfce099542016-03-15 13:01:04 +0100285 bool writethrough, bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000286{
287 BlockBackend *blk;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200288 Error *local_err = NULL;
Max Reitz5bd31322015-02-05 13:58:16 -0500289 QDict *options = NULL;
Kevin Wolfad717132010-12-16 15:37:41 +0100290
bellard75c23802004-08-27 21:28:58 +0000291 if (fmt) {
Max Reitz5bd31322015-02-05 13:58:16 -0500292 options = qdict_new();
293 qdict_put(options, "driver", qstring_from_str(fmt));
bellard75c23802004-08-27 21:28:58 +0000294 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100295
Max Reitzefaa7c42016-03-16 19:54:38 +0100296 blk = blk_new_open(filename, NULL, options, flags, &local_err);
Max Reitz5bd31322015-02-05 13:58:16 -0500297 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100298 error_reportf_err(local_err, "Could not open '%s': ", filename);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000299 return NULL;
bellard75c23802004-08-27 21:28:58 +0000300 }
Kevin Wolfce099542016-03-15 13:01:04 +0100301 blk_set_enable_write_cache(blk, !writethrough);
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100302
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000303 if (img_open_password(blk, filename, flags, quiet) < 0) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000304 blk_unref(blk);
305 return NULL;
bellard75c23802004-08-27 21:28:58 +0000306 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200307 return blk;
bellard75c23802004-08-27 21:28:58 +0000308}
309
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000310
Max Reitzefaa7c42016-03-16 19:54:38 +0100311static BlockBackend *img_open(bool image_opts,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000312 const char *filename,
Kevin Wolfce099542016-03-15 13:01:04 +0100313 const char *fmt, int flags, bool writethrough,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000314 bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000315{
316 BlockBackend *blk;
317 if (image_opts) {
318 QemuOpts *opts;
319 if (fmt) {
320 error_report("--image-opts and --format are mutually exclusive");
321 return NULL;
322 }
323 opts = qemu_opts_parse_noisily(qemu_find_opts("source"),
324 filename, true);
325 if (!opts) {
326 return NULL;
327 }
Kevin Wolfce099542016-03-15 13:01:04 +0100328 blk = img_open_opts(filename, opts, flags, writethrough, quiet);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000329 } else {
Kevin Wolfce099542016-03-15 13:01:04 +0100330 blk = img_open_file(filename, fmt, flags, writethrough, quiet);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000331 }
332 return blk;
333}
334
335
Chunyan Liu83d05212014-06-05 17:20:51 +0800336static int add_old_style_options(const char *fmt, QemuOpts *opts,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100337 const char *base_filename,
338 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200339{
Markus Armbruster6750e792015-02-12 17:43:08 +0100340 Error *err = NULL;
341
Kevin Wolfefa84d42009-05-18 16:42:12 +0200342 if (base_filename) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100343 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100344 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100345 error_report("Backing file not supported for file format '%s'",
346 fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100347 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900348 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200349 }
350 }
351 if (base_fmt) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100352 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100353 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100354 error_report("Backing file format not supported for file "
355 "format '%s'", fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100356 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900357 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200358 }
359 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900360 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200361}
362
bellardea2384d2004-08-01 21:59:26 +0000363static int img_create(int argc, char **argv)
364{
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200365 int c;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100366 uint64_t img_size = -1;
bellardea2384d2004-08-01 21:59:26 +0000367 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000368 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000369 const char *filename;
370 const char *base_filename = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200371 char *options = NULL;
Luiz Capitulino9b375252012-11-30 10:52:05 -0200372 Error *local_err = NULL;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100373 bool quiet = false;
ths3b46e622007-09-17 08:09:54 +0000374
bellardea2384d2004-08-01 21:59:26 +0000375 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000376 static const struct option long_options[] = {
377 {"help", no_argument, 0, 'h'},
378 {"object", required_argument, 0, OPTION_OBJECT},
379 {0, 0, 0, 0}
380 };
381 c = getopt_long(argc, argv, "F:b:f:he6o:q",
382 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100383 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000384 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100385 }
bellardea2384d2004-08-01 21:59:26 +0000386 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100387 case '?':
bellardea2384d2004-08-01 21:59:26 +0000388 case 'h':
389 help();
390 break;
aliguori9230eaf2009-03-28 17:55:19 +0000391 case 'F':
392 base_fmt = optarg;
393 break;
bellardea2384d2004-08-01 21:59:26 +0000394 case 'b':
395 base_filename = optarg;
396 break;
397 case 'f':
398 fmt = optarg;
399 break;
400 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200401 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100402 "encryption\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100403 goto fail;
thsd8871c52007-10-24 16:11:42 +0000404 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200405 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100406 "compat6\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100407 goto fail;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200408 case 'o':
Kevin Wolf77386bf2014-02-21 16:24:04 +0100409 if (!is_valid_option_list(optarg)) {
410 error_report("Invalid option list: %s", optarg);
411 goto fail;
412 }
413 if (!options) {
414 options = g_strdup(optarg);
415 } else {
416 char *old_options = options;
417 options = g_strdup_printf("%s,%s", options, optarg);
418 g_free(old_options);
419 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200420 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100421 case 'q':
422 quiet = true;
423 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000424 case OPTION_OBJECT: {
425 QemuOpts *opts;
426 opts = qemu_opts_parse_noisily(&qemu_object_opts,
427 optarg, true);
428 if (!opts) {
429 goto fail;
430 }
431 } break;
bellardea2384d2004-08-01 21:59:26 +0000432 }
433 }
aliguori9230eaf2009-03-28 17:55:19 +0000434
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900435 /* Get the filename */
Kevin Wolfa283cb62014-02-21 16:24:07 +0100436 filename = (optind < argc) ? argv[optind] : NULL;
437 if (options && has_help_option(options)) {
438 g_free(options);
439 return print_block_option_help(filename, fmt);
440 }
441
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100442 if (optind >= argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800443 error_exit("Expecting image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100444 }
Kevin Wolfa283cb62014-02-21 16:24:07 +0100445 optind++;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900446
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000447 if (qemu_opts_foreach(&qemu_object_opts,
448 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200449 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000450 goto fail;
451 }
452
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100453 /* Get image size, if specified */
454 if (optind < argc) {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100455 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +0100456 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +0200457 sval = qemu_strtosz_suffix(argv[optind++], &end,
458 QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +0100459 if (sval < 0 || *end) {
liguang79443392012-12-17 09:49:23 +0800460 if (sval == -ERANGE) {
461 error_report("Image size must be less than 8 EiB!");
462 } else {
463 error_report("Invalid image size specified! You may use k, M, "
Kevin Wolf5e009842013-06-05 14:19:27 +0200464 "G, T, P or E suffixes for ");
465 error_report("kilobytes, megabytes, gigabytes, terabytes, "
466 "petabytes and exabytes.");
liguang79443392012-12-17 09:49:23 +0800467 }
Kevin Wolf77386bf2014-02-21 16:24:04 +0100468 goto fail;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100469 }
470 img_size = (uint64_t)sval;
471 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200472 if (optind != argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800473 error_exit("Unexpected argument: %s", argv[optind]);
Kevin Wolffc11eb22013-08-05 10:53:04 +0200474 }
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100475
Luiz Capitulino9b375252012-11-30 10:52:05 -0200476 bdrv_img_create(filename, fmt, base_filename, base_fmt,
Kevin Wolf61de4c62016-03-18 17:46:45 +0100477 options, img_size, 0, &local_err, quiet);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100478 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100479 error_reportf_err(local_err, "%s: ", filename);
Kevin Wolf77386bf2014-02-21 16:24:04 +0100480 goto fail;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900481 }
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200482
Kevin Wolf77386bf2014-02-21 16:24:04 +0100483 g_free(options);
bellardea2384d2004-08-01 21:59:26 +0000484 return 0;
Kevin Wolf77386bf2014-02-21 16:24:04 +0100485
486fail:
487 g_free(options);
488 return 1;
bellardea2384d2004-08-01 21:59:26 +0000489}
490
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100491static void dump_json_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500492{
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500493 QString *str;
494 QmpOutputVisitor *ov = qmp_output_visitor_new();
495 QObject *obj;
Eric Blake51e72bc2016-01-29 06:48:54 -0700496 visit_type_ImageCheck(qmp_output_get_visitor(ov), NULL, &check,
Eric Blake911ee362016-06-09 10:48:33 -0600497 &error_abort);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500498 obj = qmp_output_get_qobject(ov);
499 str = qobject_to_json_pretty(obj);
500 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100501 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500502 qobject_decref(obj);
Eric Blake1830f222016-06-09 10:48:40 -0600503 visit_free(qmp_output_get_visitor(ov));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500504 QDECREF(str);
505}
506
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100507static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500508{
509 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100510 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500511 } else {
512 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100513 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
514 "Data may be corrupted, or further writes to the image "
515 "may corrupt it.\n",
516 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500517 }
518
519 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100520 qprintf(quiet,
521 "\n%" PRId64 " leaked clusters were found on the image.\n"
522 "This means waste of disk space, but no harm to data.\n",
523 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500524 }
525
526 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100527 qprintf(quiet,
528 "\n%" PRId64
529 " internal errors have occurred during the check.\n",
530 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500531 }
532 }
533
534 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100535 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
536 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
537 check->allocated_clusters, check->total_clusters,
538 check->allocated_clusters * 100.0 / check->total_clusters,
539 check->fragmented_clusters * 100.0 / check->allocated_clusters,
540 check->compressed_clusters * 100.0 /
541 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500542 }
543
544 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100545 qprintf(quiet,
546 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500547 }
548}
549
550static int collect_image_check(BlockDriverState *bs,
551 ImageCheck *check,
552 const char *filename,
553 const char *fmt,
554 int fix)
555{
556 int ret;
557 BdrvCheckResult result;
558
559 ret = bdrv_check(bs, &result, fix);
560 if (ret < 0) {
561 return ret;
562 }
563
564 check->filename = g_strdup(filename);
565 check->format = g_strdup(bdrv_get_format_name(bs));
566 check->check_errors = result.check_errors;
567 check->corruptions = result.corruptions;
568 check->has_corruptions = result.corruptions != 0;
569 check->leaks = result.leaks;
570 check->has_leaks = result.leaks != 0;
571 check->corruptions_fixed = result.corruptions_fixed;
572 check->has_corruptions_fixed = result.corruptions != 0;
573 check->leaks_fixed = result.leaks_fixed;
574 check->has_leaks_fixed = result.leaks != 0;
575 check->image_end_offset = result.image_end_offset;
576 check->has_image_end_offset = result.image_end_offset != 0;
577 check->total_clusters = result.bfi.total_clusters;
578 check->has_total_clusters = result.bfi.total_clusters != 0;
579 check->allocated_clusters = result.bfi.allocated_clusters;
580 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
581 check->fragmented_clusters = result.bfi.fragmented_clusters;
582 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100583 check->compressed_clusters = result.bfi.compressed_clusters;
584 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500585
586 return 0;
587}
588
Kevin Wolfe076f332010-06-29 11:43:13 +0200589/*
590 * Checks an image for consistency. Exit codes:
591 *
Max Reitzd6635c42014-06-02 22:15:21 +0200592 * 0 - Check completed, image is good
593 * 1 - Check not completed because of internal errors
594 * 2 - Check completed, image is corrupted
595 * 3 - Check completed, image has leaked clusters, but is good otherwise
596 * 63 - Checks are not supported by the image format
Kevin Wolfe076f332010-06-29 11:43:13 +0200597 */
aliguori15859692009-04-21 23:11:53 +0000598static int img_check(int argc, char **argv)
599{
600 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500601 OutputFormat output_format = OFORMAT_HUMAN;
Max Reitz40055952014-07-22 22:58:42 +0200602 const char *filename, *fmt, *output, *cache;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200603 BlockBackend *blk;
aliguori15859692009-04-21 23:11:53 +0000604 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200605 int fix = 0;
Kevin Wolfce099542016-03-15 13:01:04 +0100606 int flags = BDRV_O_CHECK;
607 bool writethrough;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200608 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100609 bool quiet = false;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000610 bool image_opts = false;
aliguori15859692009-04-21 23:11:53 +0000611
612 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500613 output = NULL;
Max Reitz40055952014-07-22 22:58:42 +0200614 cache = BDRV_DEFAULT_CACHE;
Kevin Wolfce099542016-03-15 13:01:04 +0100615
aliguori15859692009-04-21 23:11:53 +0000616 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500617 int option_index = 0;
618 static const struct option long_options[] = {
619 {"help", no_argument, 0, 'h'},
620 {"format", required_argument, 0, 'f'},
Prasad Joshi4fd6a982014-03-25 00:08:54 +0530621 {"repair", required_argument, 0, 'r'},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500622 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000623 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000624 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500625 {0, 0, 0, 0}
626 };
Max Reitz40055952014-07-22 22:58:42 +0200627 c = getopt_long(argc, argv, "hf:r:T:q",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500628 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100629 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000630 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100631 }
aliguori15859692009-04-21 23:11:53 +0000632 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100633 case '?':
aliguori15859692009-04-21 23:11:53 +0000634 case 'h':
635 help();
636 break;
637 case 'f':
638 fmt = optarg;
639 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200640 case 'r':
641 flags |= BDRV_O_RDWR;
642
643 if (!strcmp(optarg, "leaks")) {
644 fix = BDRV_FIX_LEAKS;
645 } else if (!strcmp(optarg, "all")) {
646 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
647 } else {
Fam Zhengac1307a2014-04-22 13:36:11 +0800648 error_exit("Unknown option value for -r "
649 "(expecting 'leaks' or 'all'): %s", optarg);
Kevin Wolf4534ff52012-05-11 16:07:02 +0200650 }
651 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500652 case OPTION_OUTPUT:
653 output = optarg;
654 break;
Max Reitz40055952014-07-22 22:58:42 +0200655 case 'T':
656 cache = optarg;
657 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100658 case 'q':
659 quiet = true;
660 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000661 case OPTION_OBJECT: {
662 QemuOpts *opts;
663 opts = qemu_opts_parse_noisily(&qemu_object_opts,
664 optarg, true);
665 if (!opts) {
666 return 1;
667 }
668 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000669 case OPTION_IMAGE_OPTS:
670 image_opts = true;
671 break;
aliguori15859692009-04-21 23:11:53 +0000672 }
673 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200674 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800675 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100676 }
aliguori15859692009-04-21 23:11:53 +0000677 filename = argv[optind++];
678
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500679 if (output && !strcmp(output, "json")) {
680 output_format = OFORMAT_JSON;
681 } else if (output && !strcmp(output, "human")) {
682 output_format = OFORMAT_HUMAN;
683 } else if (output) {
684 error_report("--output must be used with human or json as argument.");
685 return 1;
686 }
687
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000688 if (qemu_opts_foreach(&qemu_object_opts,
689 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200690 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000691 return 1;
692 }
693
Kevin Wolfce099542016-03-15 13:01:04 +0100694 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +0200695 if (ret < 0) {
696 error_report("Invalid source cache option: %s", cache);
697 return 1;
698 }
699
Kevin Wolfce099542016-03-15 13:01:04 +0100700 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200701 if (!blk) {
702 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900703 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200704 bs = blk_bs(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500705
706 check = g_new0(ImageCheck, 1);
707 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200708
709 if (ret == -ENOTSUP) {
Max Reitz55d492d2014-05-31 21:33:30 +0200710 error_report("This image format does not support checks");
Peter Lievenfefddf92013-10-24 08:53:34 +0200711 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500712 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200713 }
714
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500715 if (check->corruptions_fixed || check->leaks_fixed) {
716 int corruptions_fixed, leaks_fixed;
717
718 leaks_fixed = check->leaks_fixed;
719 corruptions_fixed = check->corruptions_fixed;
720
721 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100722 qprintf(quiet,
723 "The following inconsistencies were found and repaired:\n\n"
724 " %" PRId64 " leaked clusters\n"
725 " %" PRId64 " corruptions\n\n"
726 "Double checking the fixed image now...\n",
727 check->leaks_fixed,
728 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500729 }
730
731 ret = collect_image_check(bs, check, filename, fmt, 0);
732
733 check->leaks_fixed = leaks_fixed;
734 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200735 }
736
Max Reitz832390a2014-10-23 15:29:12 +0200737 if (!ret) {
738 switch (output_format) {
739 case OFORMAT_HUMAN:
740 dump_human_image_check(check, quiet);
741 break;
742 case OFORMAT_JSON:
743 dump_json_image_check(check, quiet);
744 break;
745 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500746 }
747
748 if (ret || check->check_errors) {
Max Reitz832390a2014-10-23 15:29:12 +0200749 if (ret) {
750 error_report("Check failed: %s", strerror(-ret));
751 } else {
752 error_report("Check failed");
753 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500754 ret = 1;
755 goto fail;
756 }
757
758 if (check->corruptions) {
759 ret = 2;
760 } else if (check->leaks) {
761 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200762 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500763 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000764 }
765
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500766fail:
767 qapi_free_ImageCheck(check);
Markus Armbruster26f54e92014-10-07 13:59:04 +0200768 blk_unref(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500769 return ret;
aliguori15859692009-04-21 23:11:53 +0000770}
771
Max Reitzd4a32382014-10-24 15:57:37 +0200772typedef struct CommonBlockJobCBInfo {
773 BlockDriverState *bs;
774 Error **errp;
775} CommonBlockJobCBInfo;
776
777static void common_block_job_cb(void *opaque, int ret)
778{
779 CommonBlockJobCBInfo *cbi = opaque;
780
781 if (ret < 0) {
782 error_setg_errno(cbi->errp, -ret, "Block job failed");
783 }
Max Reitzd4a32382014-10-24 15:57:37 +0200784}
785
786static void run_block_job(BlockJob *job, Error **errp)
787{
Kevin Wolfb75536c2016-04-18 17:30:17 +0200788 AioContext *aio_context = blk_get_aio_context(job->blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200789
790 do {
791 aio_poll(aio_context, true);
John Snow62547b82015-11-02 18:28:20 -0500792 qemu_progress_print(job->len ?
793 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200794 } while (!job->ready);
795
796 block_job_complete_sync(job, errp);
Max Reitz687fa1d2014-10-24 15:57:39 +0200797
798 /* A block job may finish instantaneously without publishing any progress,
799 * so just signal completion here */
800 qemu_progress_print(100.f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200801}
802
bellardea2384d2004-08-01 21:59:26 +0000803static int img_commit(int argc, char **argv)
804{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400805 int c, ret, flags;
Max Reitz1b22bff2014-10-24 15:57:40 +0200806 const char *filename, *fmt, *cache, *base;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200807 BlockBackend *blk;
Max Reitzd4a32382014-10-24 15:57:37 +0200808 BlockDriverState *bs, *base_bs;
Max Reitz687fa1d2014-10-24 15:57:39 +0200809 bool progress = false, quiet = false, drop = false;
Kevin Wolfce099542016-03-15 13:01:04 +0100810 bool writethrough;
Max Reitzd4a32382014-10-24 15:57:37 +0200811 Error *local_err = NULL;
812 CommonBlockJobCBInfo cbi;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000813 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +0000814
815 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400816 cache = BDRV_DEFAULT_CACHE;
Max Reitz1b22bff2014-10-24 15:57:40 +0200817 base = NULL;
bellardea2384d2004-08-01 21:59:26 +0000818 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000819 static const struct option long_options[] = {
820 {"help", no_argument, 0, 'h'},
821 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000822 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000823 {0, 0, 0, 0}
824 };
825 c = getopt_long(argc, argv, "f:ht:b:dpq",
826 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100827 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000828 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100829 }
bellardea2384d2004-08-01 21:59:26 +0000830 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100831 case '?':
bellardea2384d2004-08-01 21:59:26 +0000832 case 'h':
833 help();
834 break;
835 case 'f':
836 fmt = optarg;
837 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400838 case 't':
839 cache = optarg;
840 break;
Max Reitz1b22bff2014-10-24 15:57:40 +0200841 case 'b':
842 base = optarg;
843 /* -b implies -d */
844 drop = true;
845 break;
Max Reitz9a86fe42014-10-24 15:57:38 +0200846 case 'd':
847 drop = true;
848 break;
Max Reitz687fa1d2014-10-24 15:57:39 +0200849 case 'p':
850 progress = true;
851 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100852 case 'q':
853 quiet = true;
854 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000855 case OPTION_OBJECT: {
856 QemuOpts *opts;
857 opts = qemu_opts_parse_noisily(&qemu_object_opts,
858 optarg, true);
859 if (!opts) {
860 return 1;
861 }
862 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000863 case OPTION_IMAGE_OPTS:
864 image_opts = true;
865 break;
bellardea2384d2004-08-01 21:59:26 +0000866 }
867 }
Max Reitz687fa1d2014-10-24 15:57:39 +0200868
869 /* Progress is not shown in Quiet mode */
870 if (quiet) {
871 progress = false;
872 }
873
Kevin Wolffc11eb22013-08-05 10:53:04 +0200874 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800875 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100876 }
bellardea2384d2004-08-01 21:59:26 +0000877 filename = argv[optind++];
878
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000879 if (qemu_opts_foreach(&qemu_object_opts,
880 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200881 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000882 return 1;
883 }
884
Max Reitz9a86fe42014-10-24 15:57:38 +0200885 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
Kevin Wolfce099542016-03-15 13:01:04 +0100886 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400887 if (ret < 0) {
888 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczia3981eb2014-08-26 19:17:54 +0100889 return 1;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400890 }
891
Kevin Wolfce099542016-03-15 13:01:04 +0100892 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200893 if (!blk) {
894 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900895 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200896 bs = blk_bs(blk);
897
Max Reitz687fa1d2014-10-24 15:57:39 +0200898 qemu_progress_init(progress, 1.f);
899 qemu_progress_print(0.f, 100);
900
Max Reitz1b22bff2014-10-24 15:57:40 +0200901 if (base) {
902 base_bs = bdrv_find_backing_image(bs, base);
903 if (!base_bs) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100904 error_setg(&local_err, QERR_BASE_NOT_FOUND, base);
Max Reitz1b22bff2014-10-24 15:57:40 +0200905 goto done;
906 }
907 } else {
908 /* This is different from QMP, which by default uses the deepest file in
909 * the backing chain (i.e., the very base); however, the traditional
910 * behavior of qemu-img commit is using the immediate backing file. */
Kevin Wolf760e0062015-06-17 14:55:21 +0200911 base_bs = backing_bs(bs);
Max Reitz1b22bff2014-10-24 15:57:40 +0200912 if (!base_bs) {
913 error_setg(&local_err, "Image does not have a backing file");
914 goto done;
915 }
bellardea2384d2004-08-01 21:59:26 +0000916 }
917
Max Reitzd4a32382014-10-24 15:57:37 +0200918 cbi = (CommonBlockJobCBInfo){
919 .errp = &local_err,
920 .bs = bs,
921 };
922
923 commit_active_start(bs, base_bs, 0, BLOCKDEV_ON_ERROR_REPORT,
924 common_block_job_cb, &cbi, &local_err);
925 if (local_err) {
926 goto done;
927 }
928
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200929 /* When the block job completes, the BlockBackend reference will point to
930 * the old backing file. In order to avoid that the top image is already
931 * deleted, so we can still empty it afterwards, increment the reference
932 * counter here preemptively. */
Max Reitz9a86fe42014-10-24 15:57:38 +0200933 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200934 bdrv_ref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200935 }
936
Max Reitzd4a32382014-10-24 15:57:37 +0200937 run_block_job(bs->job, &local_err);
Max Reitz9a86fe42014-10-24 15:57:38 +0200938 if (local_err) {
939 goto unref_backing;
940 }
941
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200942 if (!drop && bs->drv->bdrv_make_empty) {
943 ret = bs->drv->bdrv_make_empty(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200944 if (ret) {
945 error_setg_errno(&local_err, -ret, "Could not empty %s",
946 filename);
947 goto unref_backing;
948 }
949 }
950
951unref_backing:
952 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200953 bdrv_unref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200954 }
Max Reitzd4a32382014-10-24 15:57:37 +0200955
956done:
Max Reitz687fa1d2014-10-24 15:57:39 +0200957 qemu_progress_end();
958
Markus Armbruster26f54e92014-10-07 13:59:04 +0200959 blk_unref(blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200960
961 if (local_err) {
Markus Armbruster6936f292015-02-10 15:14:02 +0100962 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900963 return 1;
964 }
Max Reitzd4a32382014-10-24 15:57:37 +0200965
966 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000967 return 0;
968}
969
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400970/*
thsf58c7b32008-06-05 21:53:49 +0000971 * Returns true iff the first sector pointed to by 'buf' contains at least
972 * a non-NUL byte.
973 *
974 * 'pnum' is set to the number of sectors (including and immediately following
975 * the first one) that are known to be in the same allocated/unallocated state.
976 */
bellardea2384d2004-08-01 21:59:26 +0000977static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
978{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000979 bool is_zero;
980 int i;
bellardea2384d2004-08-01 21:59:26 +0000981
982 if (n <= 0) {
983 *pnum = 0;
984 return 0;
985 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000986 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +0000987 for(i = 1; i < n; i++) {
988 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000989 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +0000990 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000991 }
bellardea2384d2004-08-01 21:59:26 +0000992 }
993 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000994 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +0000995}
996
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100997/*
Kevin Wolfa22f1232011-08-26 15:27:13 +0200998 * Like is_allocated_sectors, but if the buffer starts with a used sector,
999 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1000 * breaking up write requests for only small sparse areas.
1001 */
1002static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1003 int min)
1004{
1005 int ret;
1006 int num_checked, num_used;
1007
1008 if (n < min) {
1009 min = n;
1010 }
1011
1012 ret = is_allocated_sectors(buf, n, pnum);
1013 if (!ret) {
1014 return ret;
1015 }
1016
1017 num_used = *pnum;
1018 buf += BDRV_SECTOR_SIZE * *pnum;
1019 n -= *pnum;
1020 num_checked = num_used;
1021
1022 while (n > 0) {
1023 ret = is_allocated_sectors(buf, n, pnum);
1024
1025 buf += BDRV_SECTOR_SIZE * *pnum;
1026 n -= *pnum;
1027 num_checked += *pnum;
1028 if (ret) {
1029 num_used = num_checked;
1030 } else if (*pnum >= min) {
1031 break;
1032 }
1033 }
1034
1035 *pnum = num_used;
1036 return 1;
1037}
1038
1039/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001040 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1041 * buffers matches, non-zero otherwise.
1042 *
1043 * pnum is set to the number of sectors (including and immediately following
1044 * the first one) that are known to have the same comparison result
1045 */
1046static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1047 int *pnum)
1048{
Radim Krčmář8c1ac472015-02-20 17:06:15 +01001049 bool res;
1050 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001051
1052 if (n <= 0) {
1053 *pnum = 0;
1054 return 0;
1055 }
1056
1057 res = !!memcmp(buf1, buf2, 512);
1058 for(i = 1; i < n; i++) {
1059 buf1 += 512;
1060 buf2 += 512;
1061
1062 if (!!memcmp(buf1, buf2, 512) != res) {
1063 break;
1064 }
1065 }
1066
1067 *pnum = i;
1068 return res;
1069}
1070
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001071#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001072
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001073static int64_t sectors_to_bytes(int64_t sectors)
1074{
1075 return sectors << BDRV_SECTOR_BITS;
1076}
1077
1078static int64_t sectors_to_process(int64_t total, int64_t from)
1079{
1080 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1081}
1082
1083/*
1084 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1085 *
1086 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1087 * data and negative value on error.
1088 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001089 * @param blk: BlockBackend for the image
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001090 * @param sect_num: Number of first sector to check
1091 * @param sect_count: Number of sectors to check
1092 * @param filename: Name of disk file we are checking (logging purpose)
1093 * @param buffer: Allocated buffer for storing read data
1094 * @param quiet: Flag for quiet mode
1095 */
Max Reitzf1d3cd72015-02-05 13:58:18 -05001096static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001097 int sect_count, const char *filename,
1098 uint8_t *buffer, bool quiet)
1099{
1100 int pnum, ret = 0;
Eric Blake91669202016-05-06 10:26:43 -06001101 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1102 sect_count << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001103 if (ret < 0) {
1104 error_report("Error while reading offset %" PRId64 " of %s: %s",
1105 sectors_to_bytes(sect_num), filename, strerror(-ret));
1106 return ret;
1107 }
1108 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1109 if (ret || pnum != sect_count) {
1110 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1111 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1112 return 1;
1113 }
1114
1115 return 0;
1116}
1117
1118/*
1119 * Compares two images. Exit codes:
1120 *
1121 * 0 - Images are identical
1122 * 1 - Images differ
1123 * >1 - Error occurred
1124 */
1125static int img_compare(int argc, char **argv)
1126{
Max Reitz40055952014-07-22 22:58:42 +02001127 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001128 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001129 BlockDriverState *bs1, *bs2;
1130 int64_t total_sectors1, total_sectors2;
1131 uint8_t *buf1 = NULL, *buf2 = NULL;
1132 int pnum1, pnum2;
1133 int allocated1, allocated2;
1134 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1135 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001136 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001137 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001138 int64_t total_sectors;
1139 int64_t sector_num = 0;
1140 int64_t nb_sectors;
1141 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001142 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001143 bool image_opts = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001144
Max Reitz40055952014-07-22 22:58:42 +02001145 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001146 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001147 static const struct option long_options[] = {
1148 {"help", no_argument, 0, 'h'},
1149 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001150 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001151 {0, 0, 0, 0}
1152 };
1153 c = getopt_long(argc, argv, "hf:F:T:pqs",
1154 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001155 if (c == -1) {
1156 break;
1157 }
1158 switch (c) {
1159 case '?':
1160 case 'h':
1161 help();
1162 break;
1163 case 'f':
1164 fmt1 = optarg;
1165 break;
1166 case 'F':
1167 fmt2 = optarg;
1168 break;
Max Reitz40055952014-07-22 22:58:42 +02001169 case 'T':
1170 cache = optarg;
1171 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001172 case 'p':
1173 progress = true;
1174 break;
1175 case 'q':
1176 quiet = true;
1177 break;
1178 case 's':
1179 strict = true;
1180 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001181 case OPTION_OBJECT: {
1182 QemuOpts *opts;
1183 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1184 optarg, true);
1185 if (!opts) {
1186 ret = 2;
1187 goto out4;
1188 }
1189 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001190 case OPTION_IMAGE_OPTS:
1191 image_opts = true;
1192 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001193 }
1194 }
1195
1196 /* Progress is not shown in Quiet mode */
1197 if (quiet) {
1198 progress = false;
1199 }
1200
1201
Kevin Wolffc11eb22013-08-05 10:53:04 +02001202 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001203 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001204 }
1205 filename1 = argv[optind++];
1206 filename2 = argv[optind++];
1207
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001208 if (qemu_opts_foreach(&qemu_object_opts,
1209 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001210 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001211 ret = 2;
1212 goto out4;
1213 }
1214
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001215 /* Initialize before goto out */
1216 qemu_progress_init(progress, 2.0);
1217
Kevin Wolfce099542016-03-15 13:01:04 +01001218 flags = 0;
1219 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001220 if (ret < 0) {
1221 error_report("Invalid source cache option: %s", cache);
1222 ret = 2;
1223 goto out3;
1224 }
1225
Kevin Wolfce099542016-03-15 13:01:04 +01001226 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001227 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001228 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001229 goto out3;
1230 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001231
Kevin Wolfce099542016-03-15 13:01:04 +01001232 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001233 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001234 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001235 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001236 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001237 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001238 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001239
Max Reitzf1d3cd72015-02-05 13:58:18 -05001240 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1241 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1242 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001243 if (total_sectors1 < 0) {
1244 error_report("Can't get size of %s: %s",
1245 filename1, strerror(-total_sectors1));
1246 ret = 4;
1247 goto out;
1248 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001249 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001250 if (total_sectors2 < 0) {
1251 error_report("Can't get size of %s: %s",
1252 filename2, strerror(-total_sectors2));
1253 ret = 4;
1254 goto out;
1255 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001256 total_sectors = MIN(total_sectors1, total_sectors2);
1257 progress_base = MAX(total_sectors1, total_sectors2);
1258
1259 qemu_progress_print(0, 100);
1260
1261 if (strict && total_sectors1 != total_sectors2) {
1262 ret = 1;
1263 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1264 goto out;
1265 }
1266
1267 for (;;) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001268 int64_t status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001269 BlockDriverState *file;
1270
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001271 nb_sectors = sectors_to_process(total_sectors, sector_num);
1272 if (nb_sectors <= 0) {
1273 break;
1274 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001275 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1276 total_sectors1 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001277 &pnum1, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001278 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001279 ret = 3;
1280 error_report("Sector allocation test failed for %s", filename1);
1281 goto out;
1282 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001283 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001284
Fam Zheng25ad8e62016-01-13 16:37:41 +08001285 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1286 total_sectors2 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001287 &pnum2, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001288 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001289 ret = 3;
1290 error_report("Sector allocation test failed for %s", filename2);
1291 goto out;
1292 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001293 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1294 if (pnum1) {
1295 nb_sectors = MIN(nb_sectors, pnum1);
1296 }
1297 if (pnum2) {
1298 nb_sectors = MIN(nb_sectors, pnum2);
1299 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001300
Fam Zheng25ad8e62016-01-13 16:37:41 +08001301 if (strict) {
1302 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1303 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1304 ret = 1;
1305 qprintf(quiet, "Strict mode: Offset %" PRId64
1306 " block status mismatch!\n",
1307 sectors_to_bytes(sector_num));
1308 goto out;
1309 }
1310 }
1311 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1312 nb_sectors = MIN(pnum1, pnum2);
1313 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001314 if (allocated1) {
Eric Blake91669202016-05-06 10:26:43 -06001315 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1316 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001317 if (ret < 0) {
1318 error_report("Error while reading offset %" PRId64 " of %s:"
1319 " %s", sectors_to_bytes(sector_num), filename1,
1320 strerror(-ret));
1321 ret = 4;
1322 goto out;
1323 }
Eric Blake91669202016-05-06 10:26:43 -06001324 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1325 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001326 if (ret < 0) {
1327 error_report("Error while reading offset %" PRId64
1328 " of %s: %s", sectors_to_bytes(sector_num),
1329 filename2, strerror(-ret));
1330 ret = 4;
1331 goto out;
1332 }
1333 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1334 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001335 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1336 sectors_to_bytes(
1337 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001338 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001339 goto out;
1340 }
1341 }
1342 } else {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001343
1344 if (allocated1) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001345 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001346 filename1, buf1, quiet);
1347 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001348 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001349 filename2, buf1, quiet);
1350 }
1351 if (ret) {
1352 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001353 error_report("Error while reading offset %" PRId64 ": %s",
1354 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001355 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001356 }
1357 goto out;
1358 }
1359 }
1360 sector_num += nb_sectors;
1361 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1362 }
1363
1364 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001365 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001366 int64_t total_sectors_over;
1367 const char *filename_over;
1368
1369 qprintf(quiet, "Warning: Image size mismatch!\n");
1370 if (total_sectors1 > total_sectors2) {
1371 total_sectors_over = total_sectors1;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001372 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001373 filename_over = filename1;
1374 } else {
1375 total_sectors_over = total_sectors2;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001376 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001377 filename_over = filename2;
1378 }
1379
1380 for (;;) {
1381 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1382 if (nb_sectors <= 0) {
1383 break;
1384 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001385 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL, sector_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001386 nb_sectors, &pnum);
1387 if (ret < 0) {
1388 ret = 3;
1389 error_report("Sector allocation test failed for %s",
1390 filename_over);
1391 goto out;
1392
1393 }
1394 nb_sectors = pnum;
1395 if (ret) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001396 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001397 filename_over, buf1, quiet);
1398 if (ret) {
1399 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001400 error_report("Error while reading offset %" PRId64
1401 " of %s: %s", sectors_to_bytes(sector_num),
1402 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001403 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001404 }
1405 goto out;
1406 }
1407 }
1408 sector_num += nb_sectors;
1409 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1410 }
1411 }
1412
1413 qprintf(quiet, "Images are identical.\n");
1414 ret = 0;
1415
1416out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001417 qemu_vfree(buf1);
1418 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001419 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001420out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001421 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001422out3:
1423 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001424out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001425 return ret;
1426}
1427
Kevin Wolf690c7302015-03-19 13:33:32 +01001428enum ImgConvertBlockStatus {
1429 BLK_DATA,
1430 BLK_ZERO,
1431 BLK_BACKING_FILE,
1432};
1433
1434typedef struct ImgConvertState {
1435 BlockBackend **src;
1436 int64_t *src_sectors;
1437 int src_cur, src_num;
1438 int64_t src_cur_offset;
1439 int64_t total_sectors;
1440 int64_t allocated_sectors;
1441 enum ImgConvertBlockStatus status;
1442 int64_t sector_next_status;
1443 BlockBackend *target;
1444 bool has_zero_init;
1445 bool compressed;
1446 bool target_has_backing;
1447 int min_sparse;
1448 size_t cluster_sectors;
1449 size_t buf_sectors;
1450} ImgConvertState;
1451
1452static void convert_select_part(ImgConvertState *s, int64_t sector_num)
1453{
1454 assert(sector_num >= s->src_cur_offset);
1455 while (sector_num - s->src_cur_offset >= s->src_sectors[s->src_cur]) {
1456 s->src_cur_offset += s->src_sectors[s->src_cur];
1457 s->src_cur++;
1458 assert(s->src_cur < s->src_num);
1459 }
1460}
1461
1462static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1463{
1464 int64_t ret;
1465 int n;
1466
1467 convert_select_part(s, sector_num);
1468
1469 assert(s->total_sectors > sector_num);
1470 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1471
1472 if (s->sector_next_status <= sector_num) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08001473 BlockDriverState *file;
Kevin Wolf690c7302015-03-19 13:33:32 +01001474 ret = bdrv_get_block_status(blk_bs(s->src[s->src_cur]),
1475 sector_num - s->src_cur_offset,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001476 n, &n, &file);
Kevin Wolf690c7302015-03-19 13:33:32 +01001477 if (ret < 0) {
1478 return ret;
1479 }
1480
1481 if (ret & BDRV_BLOCK_ZERO) {
1482 s->status = BLK_ZERO;
1483 } else if (ret & BDRV_BLOCK_DATA) {
1484 s->status = BLK_DATA;
1485 } else if (!s->target_has_backing) {
1486 /* Without a target backing file we must copy over the contents of
1487 * the backing file as well. */
Ren Kimura263a6f42016-04-28 01:04:58 +09001488 /* Check block status of the backing file chain to avoid
Kevin Wolf690c7302015-03-19 13:33:32 +01001489 * needlessly reading zeroes and limiting the iteration to the
1490 * buffer size */
Ren Kimura263a6f42016-04-28 01:04:58 +09001491 ret = bdrv_get_block_status_above(blk_bs(s->src[s->src_cur]), NULL,
1492 sector_num - s->src_cur_offset,
1493 n, &n, &file);
1494 if (ret < 0) {
1495 return ret;
1496 }
1497
1498 if (ret & BDRV_BLOCK_ZERO) {
1499 s->status = BLK_ZERO;
1500 } else {
1501 s->status = BLK_DATA;
1502 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001503 } else {
1504 s->status = BLK_BACKING_FILE;
1505 }
1506
1507 s->sector_next_status = sector_num + n;
1508 }
1509
1510 n = MIN(n, s->sector_next_status - sector_num);
1511 if (s->status == BLK_DATA) {
1512 n = MIN(n, s->buf_sectors);
1513 }
1514
1515 /* We need to write complete clusters for compressed images, so if an
1516 * unallocated area is shorter than that, we must consider the whole
1517 * cluster allocated. */
1518 if (s->compressed) {
1519 if (n < s->cluster_sectors) {
1520 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1521 s->status = BLK_DATA;
1522 } else {
1523 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1524 }
1525 }
1526
1527 return n;
1528}
1529
1530static int convert_read(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1531 uint8_t *buf)
1532{
1533 int n;
1534 int ret;
1535
Kevin Wolf690c7302015-03-19 13:33:32 +01001536 assert(nb_sectors <= s->buf_sectors);
1537 while (nb_sectors > 0) {
1538 BlockBackend *blk;
1539 int64_t bs_sectors;
1540
1541 /* In the case of compression with multiple source files, we can get a
1542 * nb_sectors that spreads into the next part. So we must be able to
1543 * read across multiple BDSes for one convert_read() call. */
1544 convert_select_part(s, sector_num);
1545 blk = s->src[s->src_cur];
1546 bs_sectors = s->src_sectors[s->src_cur];
1547
1548 n = MIN(nb_sectors, bs_sectors - (sector_num - s->src_cur_offset));
Eric Blake91669202016-05-06 10:26:43 -06001549 ret = blk_pread(blk,
1550 (sector_num - s->src_cur_offset) << BDRV_SECTOR_BITS,
1551 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001552 if (ret < 0) {
1553 return ret;
1554 }
1555
1556 sector_num += n;
1557 nb_sectors -= n;
1558 buf += n * BDRV_SECTOR_SIZE;
1559 }
1560
1561 return 0;
1562}
1563
1564static int convert_write(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1565 const uint8_t *buf)
1566{
1567 int ret;
1568
1569 while (nb_sectors > 0) {
1570 int n = nb_sectors;
1571
1572 switch (s->status) {
1573 case BLK_BACKING_FILE:
1574 /* If we have a backing file, leave clusters unallocated that are
1575 * unallocated in the source image, so that the backing file is
1576 * visible at the respective offset. */
1577 assert(s->target_has_backing);
1578 break;
1579
1580 case BLK_DATA:
1581 /* We must always write compressed clusters as a whole, so don't
1582 * try to find zeroed parts in the buffer. We can only save the
1583 * write if the buffer is completely zeroed and we're allowed to
1584 * keep the target sparse. */
1585 if (s->compressed) {
1586 if (s->has_zero_init && s->min_sparse &&
1587 buffer_is_zero(buf, n * BDRV_SECTOR_SIZE))
1588 {
1589 assert(!s->target_has_backing);
1590 break;
1591 }
1592
1593 ret = blk_write_compressed(s->target, sector_num, buf, n);
1594 if (ret < 0) {
1595 return ret;
1596 }
1597 break;
1598 }
1599
1600 /* If there is real non-zero data or we're told to keep the target
1601 * fully allocated (-S 0), we must write it. Otherwise we can treat
1602 * it as zero sectors. */
1603 if (!s->min_sparse ||
1604 is_allocated_sectors_min(buf, n, &n, s->min_sparse))
1605 {
Eric Blake91669202016-05-06 10:26:43 -06001606 ret = blk_pwrite(s->target, sector_num << BDRV_SECTOR_BITS,
1607 buf, n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001608 if (ret < 0) {
1609 return ret;
1610 }
1611 break;
1612 }
1613 /* fall-through */
1614
1615 case BLK_ZERO:
1616 if (s->has_zero_init) {
1617 break;
1618 }
Eric Blaked004bd52016-05-24 16:25:20 -06001619 ret = blk_pwrite_zeroes(s->target, sector_num << BDRV_SECTOR_BITS,
1620 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001621 if (ret < 0) {
1622 return ret;
1623 }
1624 break;
1625 }
1626
1627 sector_num += n;
1628 nb_sectors -= n;
1629 buf += n * BDRV_SECTOR_SIZE;
1630 }
1631
1632 return 0;
1633}
1634
1635static int convert_do_copy(ImgConvertState *s)
1636{
1637 uint8_t *buf = NULL;
1638 int64_t sector_num, allocated_done;
1639 int ret;
1640 int n;
1641
1642 /* Check whether we have zero initialisation or can get it efficiently */
1643 s->has_zero_init = s->min_sparse && !s->target_has_backing
1644 ? bdrv_has_zero_init(blk_bs(s->target))
1645 : false;
1646
1647 if (!s->has_zero_init && !s->target_has_backing &&
1648 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1649 {
1650 ret = bdrv_make_zero(blk_bs(s->target), BDRV_REQ_MAY_UNMAP);
1651 if (ret == 0) {
1652 s->has_zero_init = true;
1653 }
1654 }
1655
1656 /* Allocate buffer for copied data. For compressed images, only one cluster
1657 * can be copied at a time. */
1658 if (s->compressed) {
1659 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1660 error_report("invalid cluster size");
1661 ret = -EINVAL;
1662 goto fail;
1663 }
1664 s->buf_sectors = s->cluster_sectors;
1665 }
1666 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1667
1668 /* Calculate allocated sectors for progress */
1669 s->allocated_sectors = 0;
1670 sector_num = 0;
1671 while (sector_num < s->total_sectors) {
1672 n = convert_iteration_sectors(s, sector_num);
1673 if (n < 0) {
1674 ret = n;
1675 goto fail;
1676 }
Max Reitzaad15de2016-03-24 23:33:57 +01001677 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1678 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001679 s->allocated_sectors += n;
1680 }
1681 sector_num += n;
1682 }
1683
1684 /* Do the copy */
1685 s->src_cur = 0;
1686 s->src_cur_offset = 0;
1687 s->sector_next_status = 0;
1688
1689 sector_num = 0;
1690 allocated_done = 0;
1691
1692 while (sector_num < s->total_sectors) {
1693 n = convert_iteration_sectors(s, sector_num);
1694 if (n < 0) {
1695 ret = n;
1696 goto fail;
1697 }
Max Reitzaad15de2016-03-24 23:33:57 +01001698 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1699 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001700 allocated_done += n;
1701 qemu_progress_print(100.0 * allocated_done / s->allocated_sectors,
1702 0);
1703 }
1704
Max Reitzaad15de2016-03-24 23:33:57 +01001705 if (s->status == BLK_DATA) {
1706 ret = convert_read(s, sector_num, n, buf);
1707 if (ret < 0) {
1708 error_report("error while reading sector %" PRId64
1709 ": %s", sector_num, strerror(-ret));
1710 goto fail;
1711 }
1712 } else if (!s->min_sparse && s->status == BLK_ZERO) {
1713 n = MIN(n, s->buf_sectors);
1714 memset(buf, 0, n * BDRV_SECTOR_SIZE);
1715 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001716 }
1717
1718 ret = convert_write(s, sector_num, n, buf);
1719 if (ret < 0) {
1720 error_report("error while writing sector %" PRId64
1721 ": %s", sector_num, strerror(-ret));
1722 goto fail;
1723 }
1724
1725 sector_num += n;
1726 }
1727
1728 if (s->compressed) {
1729 /* signal EOF to align */
1730 ret = blk_write_compressed(s->target, 0, NULL, 0);
1731 if (ret < 0) {
1732 goto fail;
1733 }
1734 }
1735
1736 ret = 0;
1737fail:
1738 qemu_vfree(buf);
1739 return ret;
1740}
1741
bellardea2384d2004-08-01 21:59:26 +00001742static int img_convert(int argc, char **argv)
1743{
Kevin Wolf690c7302015-03-19 13:33:32 +01001744 int c, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001745 int64_t ret = 0;
Max Reitz40055952014-07-22 22:58:42 +02001746 int progress = 0, flags, src_flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001747 bool writethrough, src_writethrough;
Max Reitz40055952014-07-22 22:58:42 +02001748 const char *fmt, *out_fmt, *cache, *src_cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001749 BlockDriver *drv, *proto_drv;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001750 BlockBackend **blk = NULL, *out_blk = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001751 BlockDriverState **bs = NULL, *out_bs = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001752 int64_t total_sectors;
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001753 int64_t *bs_sectors = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001754 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardfaea38e2006-08-05 21:31:00 +00001755 BlockDriverInfo bdi;
Chunyan Liu83d05212014-06-05 17:20:51 +08001756 QemuOpts *opts = NULL;
1757 QemuOptsList *create_opts = NULL;
1758 const char *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001759 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001760 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001761 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001762 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001763 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001764 QemuOpts *sn_opts = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001765 ImgConvertState state;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001766 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +00001767
1768 fmt = NULL;
1769 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001770 cache = "unsafe";
Max Reitz40055952014-07-22 22:58:42 +02001771 src_cache = BDRV_DEFAULT_CACHE;
thsf58c7b32008-06-05 21:53:49 +00001772 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001773 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001774 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001775 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001776 static const struct option long_options[] = {
1777 {"help", no_argument, 0, 'h'},
1778 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001779 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001780 {0, 0, 0, 0}
1781 };
1782 c = getopt_long(argc, argv, "hf:O:B:ce6o:s:l:S:pt:T:qn",
1783 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001784 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001785 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001786 }
bellardea2384d2004-08-01 21:59:26 +00001787 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001788 case '?':
bellardea2384d2004-08-01 21:59:26 +00001789 case 'h':
1790 help();
1791 break;
1792 case 'f':
1793 fmt = optarg;
1794 break;
1795 case 'O':
1796 out_fmt = optarg;
1797 break;
thsf58c7b32008-06-05 21:53:49 +00001798 case 'B':
1799 out_baseimg = optarg;
1800 break;
bellardea2384d2004-08-01 21:59:26 +00001801 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001802 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001803 break;
1804 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001805 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001806 "encryption\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001807 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001808 goto fail_getopt;
thsec36ba12007-09-16 21:59:02 +00001809 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001810 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001811 "compat6\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001812 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001813 goto fail_getopt;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001814 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001815 if (!is_valid_option_list(optarg)) {
1816 error_report("Invalid option list: %s", optarg);
1817 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001818 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01001819 }
1820 if (!options) {
1821 options = g_strdup(optarg);
1822 } else {
1823 char *old_options = options;
1824 options = g_strdup_printf("%s,%s", options, optarg);
1825 g_free(old_options);
1826 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001827 break;
edison51ef6722010-09-21 19:58:41 -07001828 case 's':
1829 snapshot_name = optarg;
1830 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001831 case 'l':
1832 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01001833 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
1834 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08001835 if (!sn_opts) {
1836 error_report("Failed in parsing snapshot param '%s'",
1837 optarg);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001838 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001839 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08001840 }
1841 } else {
1842 snapshot_name = optarg;
1843 }
1844 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001845 case 'S':
1846 {
1847 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001848 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +02001849 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +01001850 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001851 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001852 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001853 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001854 }
1855
1856 min_sparse = sval / BDRV_SECTOR_SIZE;
1857 break;
1858 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001859 case 'p':
1860 progress = 1;
1861 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001862 case 't':
1863 cache = optarg;
1864 break;
Max Reitz40055952014-07-22 22:58:42 +02001865 case 'T':
1866 src_cache = optarg;
1867 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001868 case 'q':
1869 quiet = true;
1870 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001871 case 'n':
1872 skip_create = 1;
1873 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001874 case OPTION_OBJECT:
1875 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1876 optarg, true);
1877 if (!opts) {
1878 goto fail_getopt;
1879 }
1880 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001881 case OPTION_IMAGE_OPTS:
1882 image_opts = true;
1883 break;
bellardea2384d2004-08-01 21:59:26 +00001884 }
1885 }
ths3b46e622007-09-17 08:09:54 +00001886
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001887 if (qemu_opts_foreach(&qemu_object_opts,
1888 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001889 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001890 goto fail_getopt;
1891 }
1892
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001893 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001894 if (quiet) {
1895 progress = 0;
1896 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001897 qemu_progress_init(progress, 1.0);
1898
balrog926c2d22007-10-31 01:11:44 +00001899 bs_n = argc - optind - 1;
Kevin Wolfa283cb62014-02-21 16:24:07 +01001900 out_filename = bs_n >= 1 ? argv[argc - 1] : NULL;
thsf58c7b32008-06-05 21:53:49 +00001901
Kevin Wolf2dc83282014-02-21 16:24:05 +01001902 if (options && has_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001903 ret = print_block_option_help(out_filename, out_fmt);
1904 goto out;
1905 }
1906
bellardea2384d2004-08-01 21:59:26 +00001907 if (bs_n < 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001908 error_exit("Must specify image file name");
ths5fafdf22007-09-16 21:08:06 +00001909 }
bellardea2384d2004-08-01 21:59:26 +00001910
thsf58c7b32008-06-05 21:53:49 +00001911
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001912 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001913 error_report("-B makes no sense when concatenating multiple input "
1914 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001915 ret = -1;
1916 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001917 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001918
Kevin Wolfce099542016-03-15 13:01:04 +01001919 src_flags = 0;
1920 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001921 if (ret < 0) {
1922 error_report("Invalid source cache option: %s", src_cache);
1923 goto out;
1924 }
1925
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001926 qemu_progress_print(0, 100);
1927
Markus Armbruster26f54e92014-10-07 13:59:04 +02001928 blk = g_new0(BlockBackend *, bs_n);
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001929 bs = g_new0(BlockDriverState *, bs_n);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001930 bs_sectors = g_new(int64_t, bs_n);
balrog926c2d22007-10-31 01:11:44 +00001931
1932 total_sectors = 0;
1933 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Max Reitzefaa7c42016-03-16 19:54:38 +01001934 blk[bs_i] = img_open(image_opts, argv[optind + bs_i],
Kevin Wolfce099542016-03-15 13:01:04 +01001935 fmt, src_flags, src_writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001936 if (!blk[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001937 ret = -1;
1938 goto out;
1939 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001940 bs[bs_i] = blk_bs(blk[bs_i]);
Max Reitzf1d3cd72015-02-05 13:58:18 -05001941 bs_sectors[bs_i] = blk_nb_sectors(blk[bs_i]);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001942 if (bs_sectors[bs_i] < 0) {
1943 error_report("Could not get size of %s: %s",
1944 argv[optind + bs_i], strerror(-bs_sectors[bs_i]));
1945 ret = -1;
1946 goto out;
1947 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001948 total_sectors += bs_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00001949 }
bellardea2384d2004-08-01 21:59:26 +00001950
Wenchao Xiaef806542013-12-04 17:10:57 +08001951 if (sn_opts) {
1952 ret = bdrv_snapshot_load_tmp(bs[0],
1953 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1954 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1955 &local_err);
1956 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001957 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001958 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001959 ret = -1;
1960 goto out;
1961 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001962
1963 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001964 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001965 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001966 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08001967 ret = -1;
1968 goto out;
edison51ef6722010-09-21 19:58:41 -07001969 }
1970
Kevin Wolfefa84d42009-05-18 16:42:12 +02001971 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001972 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001973 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001974 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001975 ret = -1;
1976 goto out;
1977 }
balrog926c2d22007-10-31 01:11:44 +00001978
Max Reitzb65a5e12015-02-05 13:58:12 -05001979 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001980 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +01001981 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001982 ret = -1;
1983 goto out;
1984 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001985
Max Reitz2e024cd2015-02-11 09:58:46 -05001986 if (!skip_create) {
1987 if (!drv->create_opts) {
1988 error_report("Format driver '%s' does not support image creation",
1989 drv->format_name);
1990 ret = -1;
1991 goto out;
1992 }
Max Reitzf75613c2014-12-02 18:32:46 +01001993
Max Reitz2e024cd2015-02-11 09:58:46 -05001994 if (!proto_drv->create_opts) {
1995 error_report("Protocol driver '%s' does not support image creation",
1996 proto_drv->format_name);
1997 ret = -1;
1998 goto out;
1999 }
Max Reitzf75613c2014-12-02 18:32:46 +01002000
Max Reitz2e024cd2015-02-11 09:58:46 -05002001 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2002 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002003
Max Reitz2e024cd2015-02-11 09:58:46 -05002004 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002005 if (options) {
2006 qemu_opts_do_parse(opts, options, NULL, &local_err);
2007 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002008 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002009 ret = -1;
2010 goto out;
2011 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002012 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002013
Markus Armbruster39101f22015-02-12 16:46:36 +01002014 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_sectors * 512,
2015 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002016 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2017 if (ret < 0) {
2018 goto out;
2019 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002020 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002021
Kevin Wolfa18953f2010-10-14 15:46:04 +02002022 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002023 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002024 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002025 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002026 }
2027
Kevin Wolfefa84d42009-05-18 16:42:12 +02002028 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01002029 if (compress) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002030 bool encryption =
2031 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2032 const char *preallocation =
2033 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002034
2035 if (!drv->bdrv_write_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002036 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002037 ret = -1;
2038 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002039 }
2040
Chunyan Liu83d05212014-06-05 17:20:51 +08002041 if (encryption) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002042 error_report("Compression and encryption not supported at "
2043 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002044 ret = -1;
2045 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002046 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002047
Chunyan Liu83d05212014-06-05 17:20:51 +08002048 if (preallocation
2049 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002050 {
2051 error_report("Compression and preallocation not supported at "
2052 "the same time");
2053 ret = -1;
2054 goto out;
2055 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002056 }
2057
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002058 if (!skip_create) {
2059 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002060 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002061 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002062 error_reportf_err(local_err, "%s: error while converting %s: ",
2063 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002064 goto out;
bellardea2384d2004-08-01 21:59:26 +00002065 }
2066 }
ths3b46e622007-09-17 08:09:54 +00002067
Peter Lieven5a37b602013-10-24 12:07:06 +02002068 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002069 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002070 if (ret < 0) {
2071 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002072 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002073 }
2074
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002075 /* XXX we should allow --image-opts to trigger use of
2076 * img_open() here, but then we have trouble with
2077 * the bdrv_create() call which takes different params.
2078 * Not critical right now, so fix can wait...
2079 */
Kevin Wolfce099542016-03-15 13:01:04 +01002080 out_blk = img_open_file(out_filename, out_fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002081 if (!out_blk) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002082 ret = -1;
2083 goto out;
2084 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002085 out_bs = blk_bs(out_blk);
bellardea2384d2004-08-01 21:59:26 +00002086
Peter Lievenf2521c92013-11-27 11:07:06 +01002087 /* increase bufsectors from the default 4096 (2M) if opt_transfer_length
2088 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2089 * as maximum. */
2090 bufsectors = MIN(32768,
2091 MAX(bufsectors, MAX(out_bs->bl.opt_transfer_length,
2092 out_bs->bl.discard_alignment))
2093 );
2094
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002095 if (skip_create) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05002096 int64_t output_sectors = blk_nb_sectors(out_blk);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002097 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002098 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002099 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002100 ret = -1;
2101 goto out;
Markus Armbruster43716fa2014-06-26 13:23:21 +02002102 } else if (output_sectors < total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002103 error_report("output file is smaller than input file");
2104 ret = -1;
2105 goto out;
2106 }
2107 }
2108
Peter Lieven24f833c2013-11-27 11:07:07 +01002109 cluster_sectors = 0;
2110 ret = bdrv_get_info(out_bs, &bdi);
2111 if (ret < 0) {
2112 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002113 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002114 goto out;
2115 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002116 } else {
Fam Zheng85f49ca2014-05-06 21:08:43 +08002117 compress = compress || bdi.needs_compressed_writes;
Peter Lieven24f833c2013-11-27 11:07:07 +01002118 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2119 }
2120
Kevin Wolf690c7302015-03-19 13:33:32 +01002121 state = (ImgConvertState) {
2122 .src = blk,
2123 .src_sectors = bs_sectors,
2124 .src_num = bs_n,
2125 .total_sectors = total_sectors,
2126 .target = out_blk,
2127 .compressed = compress,
2128 .target_has_backing = (bool) out_baseimg,
2129 .min_sparse = min_sparse,
2130 .cluster_sectors = cluster_sectors,
2131 .buf_sectors = bufsectors,
2132 };
2133 ret = convert_do_copy(&state);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002134
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002135out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002136 if (!ret) {
2137 qemu_progress_print(100, 0);
2138 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002139 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002140 qemu_opts_del(opts);
2141 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002142 qemu_opts_del(sn_opts);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002143 blk_unref(out_blk);
Markus Armbruster9ba10c92014-10-07 13:59:08 +02002144 g_free(bs);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002145 if (blk) {
2146 for (bs_i = 0; bs_i < bs_n; bs_i++) {
2147 blk_unref(blk[bs_i]);
2148 }
2149 g_free(blk);
2150 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02002151 g_free(bs_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002152fail_getopt:
2153 g_free(options);
2154
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002155 if (ret) {
2156 return 1;
2157 }
bellardea2384d2004-08-01 21:59:26 +00002158 return 0;
2159}
2160
bellard57d1a2b2004-08-03 21:15:11 +00002161
bellardfaea38e2006-08-05 21:31:00 +00002162static void dump_snapshots(BlockDriverState *bs)
2163{
2164 QEMUSnapshotInfo *sn_tab, *sn;
2165 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002166
2167 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2168 if (nb_sns <= 0)
2169 return;
2170 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002171 bdrv_snapshot_dump(fprintf, stdout, NULL);
2172 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002173 for(i = 0; i < nb_sns; i++) {
2174 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002175 bdrv_snapshot_dump(fprintf, stdout, sn);
2176 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002177 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002178 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002179}
2180
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002181static void dump_json_image_info_list(ImageInfoList *list)
2182{
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002183 QString *str;
2184 QmpOutputVisitor *ov = qmp_output_visitor_new();
2185 QObject *obj;
Eric Blake51e72bc2016-01-29 06:48:54 -07002186 visit_type_ImageInfoList(qmp_output_get_visitor(ov), NULL, &list,
Eric Blake911ee362016-06-09 10:48:33 -06002187 &error_abort);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002188 obj = qmp_output_get_qobject(ov);
2189 str = qobject_to_json_pretty(obj);
2190 assert(str != NULL);
2191 printf("%s\n", qstring_get_str(str));
2192 qobject_decref(obj);
Eric Blake1830f222016-06-09 10:48:40 -06002193 visit_free(qmp_output_get_visitor(ov));
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002194 QDECREF(str);
2195}
2196
Benoît Canetc054b3f2012-09-05 13:09:02 +02002197static void dump_json_image_info(ImageInfo *info)
2198{
Benoît Canetc054b3f2012-09-05 13:09:02 +02002199 QString *str;
2200 QmpOutputVisitor *ov = qmp_output_visitor_new();
2201 QObject *obj;
Eric Blake911ee362016-06-09 10:48:33 -06002202 visit_type_ImageInfo(qmp_output_get_visitor(ov), NULL, &info,
2203 &error_abort);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002204 obj = qmp_output_get_qobject(ov);
2205 str = qobject_to_json_pretty(obj);
2206 assert(str != NULL);
2207 printf("%s\n", qstring_get_str(str));
2208 qobject_decref(obj);
Eric Blake1830f222016-06-09 10:48:40 -06002209 visit_free(qmp_output_get_visitor(ov));
Benoît Canetc054b3f2012-09-05 13:09:02 +02002210 QDECREF(str);
2211}
2212
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002213static void dump_human_image_info_list(ImageInfoList *list)
2214{
2215 ImageInfoList *elem;
2216 bool delim = false;
2217
2218 for (elem = list; elem; elem = elem->next) {
2219 if (delim) {
2220 printf("\n");
2221 }
2222 delim = true;
2223
Wenchao Xia5b917042013-05-25 11:09:45 +08002224 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002225 }
2226}
2227
2228static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2229{
2230 return strcmp(a, b) == 0;
2231}
2232
2233/**
2234 * Open an image file chain and return an ImageInfoList
2235 *
2236 * @filename: topmost image filename
2237 * @fmt: topmost image format (may be NULL to autodetect)
2238 * @chain: true - enumerate entire backing file chain
2239 * false - only topmost image file
2240 *
2241 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2242 * image file. If there was an error a message will have been printed to
2243 * stderr.
2244 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002245static ImageInfoList *collect_image_info_list(bool image_opts,
2246 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002247 const char *fmt,
2248 bool chain)
2249{
2250 ImageInfoList *head = NULL;
2251 ImageInfoList **last = &head;
2252 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002253 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002254
2255 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2256
2257 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002258 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002259 BlockDriverState *bs;
2260 ImageInfo *info;
2261 ImageInfoList *elem;
2262
2263 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2264 error_report("Backing file '%s' creates an infinite loop.",
2265 filename);
2266 goto err;
2267 }
2268 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2269
Max Reitzefaa7c42016-03-16 19:54:38 +01002270 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01002271 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002272 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002273 goto err;
2274 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002275 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002276
Wenchao Xia43526ec2013-06-06 12:27:58 +08002277 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002278 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002279 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002280 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002281 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002282 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002283
2284 elem = g_new0(ImageInfoList, 1);
2285 elem->value = info;
2286 *last = elem;
2287 last = &elem->next;
2288
Markus Armbruster26f54e92014-10-07 13:59:04 +02002289 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002290
2291 filename = fmt = NULL;
2292 if (chain) {
2293 if (info->has_full_backing_filename) {
2294 filename = info->full_backing_filename;
2295 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002296 error_report("Could not determine absolute backing filename,"
2297 " but backing filename '%s' present",
2298 info->backing_filename);
2299 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002300 }
2301 if (info->has_backing_filename_format) {
2302 fmt = info->backing_filename_format;
2303 }
2304 }
2305 }
2306 g_hash_table_destroy(filenames);
2307 return head;
2308
2309err:
2310 qapi_free_ImageInfoList(head);
2311 g_hash_table_destroy(filenames);
2312 return NULL;
2313}
2314
Benoît Canetc054b3f2012-09-05 13:09:02 +02002315static int img_info(int argc, char **argv)
2316{
2317 int c;
2318 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002319 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002320 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002321 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002322 bool image_opts = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002323
bellardea2384d2004-08-01 21:59:26 +00002324 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002325 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002326 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02002327 int option_index = 0;
2328 static const struct option long_options[] = {
2329 {"help", no_argument, 0, 'h'},
2330 {"format", required_argument, 0, 'f'},
2331 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002332 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002333 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002334 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Benoît Canetc054b3f2012-09-05 13:09:02 +02002335 {0, 0, 0, 0}
2336 };
2337 c = getopt_long(argc, argv, "f:h",
2338 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002339 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002340 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002341 }
bellardea2384d2004-08-01 21:59:26 +00002342 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002343 case '?':
bellardea2384d2004-08-01 21:59:26 +00002344 case 'h':
2345 help();
2346 break;
2347 case 'f':
2348 fmt = optarg;
2349 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002350 case OPTION_OUTPUT:
2351 output = optarg;
2352 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002353 case OPTION_BACKING_CHAIN:
2354 chain = true;
2355 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002356 case OPTION_OBJECT: {
2357 QemuOpts *opts;
2358 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2359 optarg, true);
2360 if (!opts) {
2361 return 1;
2362 }
2363 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002364 case OPTION_IMAGE_OPTS:
2365 image_opts = true;
2366 break;
bellardea2384d2004-08-01 21:59:26 +00002367 }
2368 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002369 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002370 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002371 }
bellardea2384d2004-08-01 21:59:26 +00002372 filename = argv[optind++];
2373
Benoît Canetc054b3f2012-09-05 13:09:02 +02002374 if (output && !strcmp(output, "json")) {
2375 output_format = OFORMAT_JSON;
2376 } else if (output && !strcmp(output, "human")) {
2377 output_format = OFORMAT_HUMAN;
2378 } else if (output) {
2379 error_report("--output must be used with human or json as argument.");
2380 return 1;
2381 }
2382
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002383 if (qemu_opts_foreach(&qemu_object_opts,
2384 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002385 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002386 return 1;
2387 }
2388
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002389 list = collect_image_info_list(image_opts, filename, fmt, chain);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002390 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002391 return 1;
2392 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002393
Benoît Canetc054b3f2012-09-05 13:09:02 +02002394 switch (output_format) {
2395 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002396 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002397 break;
2398 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002399 if (chain) {
2400 dump_json_image_info_list(list);
2401 } else {
2402 dump_json_image_info(list->value);
2403 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002404 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002405 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002406
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002407 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002408 return 0;
2409}
2410
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002411static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2412 MapEntry *next)
2413{
2414 switch (output_format) {
2415 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002416 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002417 error_report("File contains external, encrypted or compressed clusters.");
2418 exit(1);
2419 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002420 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002421 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002422 e->start, e->length,
2423 e->has_offset ? e->offset : 0,
2424 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002425 }
2426 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2427 * Modify the flags here to allow more coalescing.
2428 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002429 if (next && (!next->data || next->zero)) {
2430 next->data = false;
2431 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002432 }
2433 break;
2434 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002435 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2436 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002437 (e->start == 0 ? "[" : ",\n"),
2438 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002439 e->zero ? "true" : "false",
2440 e->data ? "true" : "false");
2441 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002442 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002443 }
2444 putchar('}');
2445
2446 if (!next) {
2447 printf("]\n");
2448 }
2449 break;
2450 }
2451}
2452
2453static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2454 int nb_sectors, MapEntry *e)
2455{
2456 int64_t ret;
2457 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002458 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002459 bool has_offset;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002460
2461 /* As an optimization, we could cache the current range of unallocated
2462 * clusters in each file of the chain, and avoid querying the same
2463 * range repeatedly.
2464 */
2465
2466 depth = 0;
2467 for (;;) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08002468 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2469 &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002470 if (ret < 0) {
2471 return ret;
2472 }
2473 assert(nb_sectors);
2474 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2475 break;
2476 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002477 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002478 if (bs == NULL) {
2479 ret = 0;
2480 break;
2481 }
2482
2483 depth++;
2484 }
2485
John Snow28756452016-02-05 13:12:33 -05002486 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2487
2488 *e = (MapEntry) {
2489 .start = sector_num * BDRV_SECTOR_SIZE,
2490 .length = nb_sectors * BDRV_SECTOR_SIZE,
2491 .data = !!(ret & BDRV_BLOCK_DATA),
2492 .zero = !!(ret & BDRV_BLOCK_ZERO),
2493 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2494 .has_offset = has_offset,
2495 .depth = depth,
2496 .has_filename = file && has_offset,
2497 .filename = file && has_offset ? file->filename : NULL,
2498 };
2499
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002500 return 0;
2501}
2502
Fam Zheng16b0d552016-01-26 11:59:02 +08002503static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2504{
2505 if (curr->length == 0) {
2506 return false;
2507 }
2508 if (curr->zero != next->zero ||
2509 curr->data != next->data ||
2510 curr->depth != next->depth ||
2511 curr->has_filename != next->has_filename ||
2512 curr->has_offset != next->has_offset) {
2513 return false;
2514 }
2515 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2516 return false;
2517 }
2518 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2519 return false;
2520 }
2521 return true;
2522}
2523
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002524static int img_map(int argc, char **argv)
2525{
2526 int c;
2527 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002528 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002529 BlockDriverState *bs;
2530 const char *filename, *fmt, *output;
2531 int64_t length;
2532 MapEntry curr = { .length = 0 }, next;
2533 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002534 bool image_opts = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002535
2536 fmt = NULL;
2537 output = NULL;
2538 for (;;) {
2539 int option_index = 0;
2540 static const struct option long_options[] = {
2541 {"help", no_argument, 0, 'h'},
2542 {"format", required_argument, 0, 'f'},
2543 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002544 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002545 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002546 {0, 0, 0, 0}
2547 };
2548 c = getopt_long(argc, argv, "f:h",
2549 long_options, &option_index);
2550 if (c == -1) {
2551 break;
2552 }
2553 switch (c) {
2554 case '?':
2555 case 'h':
2556 help();
2557 break;
2558 case 'f':
2559 fmt = optarg;
2560 break;
2561 case OPTION_OUTPUT:
2562 output = optarg;
2563 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002564 case OPTION_OBJECT: {
2565 QemuOpts *opts;
2566 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2567 optarg, true);
2568 if (!opts) {
2569 return 1;
2570 }
2571 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002572 case OPTION_IMAGE_OPTS:
2573 image_opts = true;
2574 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002575 }
2576 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002577 if (optind != argc - 1) {
2578 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002579 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002580 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002581
2582 if (output && !strcmp(output, "json")) {
2583 output_format = OFORMAT_JSON;
2584 } else if (output && !strcmp(output, "human")) {
2585 output_format = OFORMAT_HUMAN;
2586 } else if (output) {
2587 error_report("--output must be used with human or json as argument.");
2588 return 1;
2589 }
2590
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002591 if (qemu_opts_foreach(&qemu_object_opts,
2592 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002593 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002594 return 1;
2595 }
2596
Kevin Wolfce099542016-03-15 13:01:04 +01002597 blk = img_open(image_opts, filename, fmt, 0, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002598 if (!blk) {
2599 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002600 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002601 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002602
2603 if (output_format == OFORMAT_HUMAN) {
2604 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2605 }
2606
Max Reitzf1d3cd72015-02-05 13:58:18 -05002607 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002608 while (curr.start + curr.length < length) {
2609 int64_t nsectors_left;
2610 int64_t sector_num;
2611 int n;
2612
2613 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2614
2615 /* Probe up to 1 GiB at a time. */
2616 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2617 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2618 ret = get_block_status(bs, sector_num, n, &next);
2619
2620 if (ret < 0) {
2621 error_report("Could not read file metadata: %s", strerror(-ret));
2622 goto out;
2623 }
2624
Fam Zheng16b0d552016-01-26 11:59:02 +08002625 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002626 curr.length += next.length;
2627 continue;
2628 }
2629
2630 if (curr.length > 0) {
2631 dump_map_entry(output_format, &curr, &next);
2632 }
2633 curr = next;
2634 }
2635
2636 dump_map_entry(output_format, &curr, NULL);
2637
2638out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002639 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002640 return ret < 0;
2641}
2642
aliguorif7b4a942009-01-07 17:40:15 +00002643#define SNAPSHOT_LIST 1
2644#define SNAPSHOT_CREATE 2
2645#define SNAPSHOT_APPLY 3
2646#define SNAPSHOT_DELETE 4
2647
Stuart Brady153859b2009-06-07 00:42:17 +01002648static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002649{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002650 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002651 BlockDriverState *bs;
2652 QEMUSnapshotInfo sn;
2653 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002654 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002655 int action = 0;
2656 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002657 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002658 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002659 bool image_opts = false;
aliguorif7b4a942009-01-07 17:40:15 +00002660
Kevin Wolfce099542016-03-15 13:01:04 +01002661 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002662 /* Parse commandline parameters */
2663 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002664 static const struct option long_options[] = {
2665 {"help", no_argument, 0, 'h'},
2666 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002667 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002668 {0, 0, 0, 0}
2669 };
2670 c = getopt_long(argc, argv, "la:c:d:hq",
2671 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002672 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002673 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002674 }
aliguorif7b4a942009-01-07 17:40:15 +00002675 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002676 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002677 case 'h':
2678 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002679 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002680 case 'l':
2681 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002682 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002683 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002684 }
2685 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002686 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002687 break;
2688 case 'a':
2689 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002690 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002691 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002692 }
2693 action = SNAPSHOT_APPLY;
2694 snapshot_name = optarg;
2695 break;
2696 case 'c':
2697 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002698 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002699 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002700 }
2701 action = SNAPSHOT_CREATE;
2702 snapshot_name = optarg;
2703 break;
2704 case 'd':
2705 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002706 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002707 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002708 }
2709 action = SNAPSHOT_DELETE;
2710 snapshot_name = optarg;
2711 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002712 case 'q':
2713 quiet = true;
2714 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002715 case OPTION_OBJECT: {
2716 QemuOpts *opts;
2717 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2718 optarg, true);
2719 if (!opts) {
2720 return 1;
2721 }
2722 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002723 case OPTION_IMAGE_OPTS:
2724 image_opts = true;
2725 break;
aliguorif7b4a942009-01-07 17:40:15 +00002726 }
2727 }
2728
Kevin Wolffc11eb22013-08-05 10:53:04 +02002729 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002730 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002731 }
aliguorif7b4a942009-01-07 17:40:15 +00002732 filename = argv[optind++];
2733
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002734 if (qemu_opts_foreach(&qemu_object_opts,
2735 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002736 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002737 return 1;
2738 }
2739
aliguorif7b4a942009-01-07 17:40:15 +00002740 /* Open the image */
Kevin Wolfce099542016-03-15 13:01:04 +01002741 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002742 if (!blk) {
2743 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002744 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002745 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002746
2747 /* Perform the requested action */
2748 switch(action) {
2749 case SNAPSHOT_LIST:
2750 dump_snapshots(bs);
2751 break;
2752
2753 case SNAPSHOT_CREATE:
2754 memset(&sn, 0, sizeof(sn));
2755 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2756
2757 qemu_gettimeofday(&tv);
2758 sn.date_sec = tv.tv_sec;
2759 sn.date_nsec = tv.tv_usec * 1000;
2760
2761 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002762 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002763 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002764 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002765 }
aliguorif7b4a942009-01-07 17:40:15 +00002766 break;
2767
2768 case SNAPSHOT_APPLY:
2769 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002770 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002771 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002772 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002773 }
aliguorif7b4a942009-01-07 17:40:15 +00002774 break;
2775
2776 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002777 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002778 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002779 error_reportf_err(err, "Could not delete snapshot '%s': ",
2780 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002781 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002782 }
aliguorif7b4a942009-01-07 17:40:15 +00002783 break;
2784 }
2785
2786 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02002787 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002788 if (ret) {
2789 return 1;
2790 }
Stuart Brady153859b2009-06-07 00:42:17 +01002791 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002792}
2793
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002794static int img_rebase(int argc, char **argv)
2795{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002796 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01002797 uint8_t *buf_old = NULL;
2798 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05002799 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002800 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02002801 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
2802 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01002803 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002804 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002805 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002806 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002807 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002808 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002809
2810 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002811 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002812 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02002813 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002814 out_baseimg = NULL;
2815 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002816 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002817 static const struct option long_options[] = {
2818 {"help", no_argument, 0, 'h'},
2819 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002820 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002821 {0, 0, 0, 0}
2822 };
2823 c = getopt_long(argc, argv, "hf:F:b:upt:T:q",
2824 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002825 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002826 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002827 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002828 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002829 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002830 case 'h':
2831 help();
2832 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002833 case 'f':
2834 fmt = optarg;
2835 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002836 case 'F':
2837 out_basefmt = optarg;
2838 break;
2839 case 'b':
2840 out_baseimg = optarg;
2841 break;
2842 case 'u':
2843 unsafe = 1;
2844 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002845 case 'p':
2846 progress = 1;
2847 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002848 case 't':
2849 cache = optarg;
2850 break;
Max Reitz40055952014-07-22 22:58:42 +02002851 case 'T':
2852 src_cache = optarg;
2853 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002854 case 'q':
2855 quiet = true;
2856 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002857 case OPTION_OBJECT: {
2858 QemuOpts *opts;
2859 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2860 optarg, true);
2861 if (!opts) {
2862 return 1;
2863 }
2864 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002865 case OPTION_IMAGE_OPTS:
2866 image_opts = true;
2867 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002868 }
2869 }
2870
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002871 if (quiet) {
2872 progress = 0;
2873 }
2874
Fam Zhengac1307a2014-04-22 13:36:11 +08002875 if (optind != argc - 1) {
2876 error_exit("Expecting one image file name");
2877 }
2878 if (!unsafe && !out_baseimg) {
2879 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002880 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002881 filename = argv[optind++];
2882
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002883 if (qemu_opts_foreach(&qemu_object_opts,
2884 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002885 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002886 return 1;
2887 }
2888
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002889 qemu_progress_init(progress, 2.0);
2890 qemu_progress_print(0, 100);
2891
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002892 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01002893 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002894 if (ret < 0) {
2895 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002896 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002897 }
2898
Kevin Wolfce099542016-03-15 13:01:04 +01002899 src_flags = 0;
2900 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02002901 if (ret < 0) {
2902 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002903 goto out;
Max Reitz40055952014-07-22 22:58:42 +02002904 }
2905
Kevin Wolfce099542016-03-15 13:01:04 +01002906 /* The source files are opened read-only, don't care about WCE */
2907 assert((src_flags & BDRV_O_RDWR) == 0);
2908 (void) src_writethrough;
2909
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002910 /*
2911 * Open the images.
2912 *
2913 * Ignore the old backing file for unsafe rebase in case we want to correct
2914 * the reference to a renamed or moved backing file.
2915 */
Kevin Wolfce099542016-03-15 13:01:04 +01002916 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002917 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002918 ret = -1;
2919 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002920 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002921 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002922
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002923 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05002924 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002925 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002926 ret = -1;
2927 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002928 }
2929 }
2930
2931 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002932 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05002933 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05002934 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002935
Max Reitz644483d2015-02-05 13:58:17 -05002936 if (bs->backing_format[0] != '\0') {
2937 options = qdict_new();
2938 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
2939 }
2940
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002941 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01002942 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002943 options, src_flags, &local_err);
2944 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002945 error_reportf_err(local_err,
2946 "Could not open old backing file '%s': ",
2947 backing_name);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002948 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002949 }
Max Reitz644483d2015-02-05 13:58:17 -05002950
Alex Bligha6166732012-10-16 13:46:18 +01002951 if (out_baseimg[0]) {
Max Reitz644483d2015-02-05 13:58:17 -05002952 if (out_basefmt) {
2953 options = qdict_new();
2954 qdict_put(options, "driver", qstring_from_str(out_basefmt));
2955 } else {
2956 options = NULL;
2957 }
2958
Max Reitzefaa7c42016-03-16 19:54:38 +01002959 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002960 options, src_flags, &local_err);
2961 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002962 error_reportf_err(local_err,
2963 "Could not open new backing file '%s': ",
2964 out_baseimg);
Alex Bligha6166732012-10-16 13:46:18 +01002965 goto out;
2966 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002967 }
2968 }
2969
2970 /*
2971 * Check each unallocated cluster in the COW file. If it is unallocated,
2972 * accesses go to the backing file. We must therefore compare this cluster
2973 * in the old and new backing file, and if they differ we need to copy it
2974 * from the old backing file into the COW file.
2975 *
2976 * If qemu-img crashes during this step, no harm is done. The content of
2977 * the image is the same as the original one at any time.
2978 */
2979 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002980 int64_t num_sectors;
2981 int64_t old_backing_num_sectors;
2982 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002983 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02002984 int n;
Kevin Wolf1f710492012-10-12 14:29:18 +02002985 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08002986
Max Reitzf1d3cd72015-02-05 13:58:18 -05002987 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
2988 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002989
Max Reitzf1d3cd72015-02-05 13:58:18 -05002990 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002991 if (num_sectors < 0) {
2992 error_report("Could not get size of '%s': %s",
2993 filename, strerror(-num_sectors));
2994 ret = -1;
2995 goto out;
2996 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05002997 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002998 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05002999 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003000
3001 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3002 error_report("Could not get size of '%s': %s",
3003 backing_name, strerror(-old_backing_num_sectors));
3004 ret = -1;
3005 goto out;
3006 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003007 if (blk_new_backing) {
3008 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003009 if (new_backing_num_sectors < 0) {
3010 error_report("Could not get size of '%s': %s",
3011 out_baseimg, strerror(-new_backing_num_sectors));
3012 ret = -1;
3013 goto out;
3014 }
Alex Bligha6166732012-10-16 13:46:18 +01003015 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003016
Kevin Wolf1f710492012-10-12 14:29:18 +02003017 if (num_sectors != 0) {
3018 local_progress = (float)100 /
3019 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3020 }
3021
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003022 for (sector = 0; sector < num_sectors; sector += n) {
3023
3024 /* How many sectors can we handle with the next read? */
3025 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3026 n = (IO_BUF_SIZE / 512);
3027 } else {
3028 n = num_sectors - sector;
3029 }
3030
3031 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02003032 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003033 if (ret < 0) {
3034 error_report("error while reading image metadata: %s",
3035 strerror(-ret));
3036 goto out;
3037 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02003038 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003039 continue;
3040 }
3041
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003042 /*
3043 * Read old and new backing file and take into consideration that
3044 * backing files may be smaller than the COW image.
3045 */
3046 if (sector >= old_backing_num_sectors) {
3047 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3048 } else {
3049 if (sector + n > old_backing_num_sectors) {
3050 n = old_backing_num_sectors - sector;
3051 }
3052
Eric Blake91669202016-05-06 10:26:43 -06003053 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3054 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003055 if (ret < 0) {
3056 error_report("error while reading from old backing file");
3057 goto out;
3058 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003059 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003060
Max Reitzf1d3cd72015-02-05 13:58:18 -05003061 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003062 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3063 } else {
3064 if (sector + n > new_backing_num_sectors) {
3065 n = new_backing_num_sectors - sector;
3066 }
3067
Eric Blake91669202016-05-06 10:26:43 -06003068 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3069 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003070 if (ret < 0) {
3071 error_report("error while reading from new backing file");
3072 goto out;
3073 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003074 }
3075
3076 /* If they differ, we need to write to the COW file */
3077 uint64_t written = 0;
3078
3079 while (written < n) {
3080 int pnum;
3081
3082 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003083 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003084 {
Eric Blake91669202016-05-06 10:26:43 -06003085 ret = blk_pwrite(blk,
3086 (sector + written) << BDRV_SECTOR_BITS,
3087 buf_old + written * 512,
3088 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003089 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003090 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003091 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003092 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003093 }
3094 }
3095
3096 written += pnum;
3097 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003098 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003099 }
3100 }
3101
3102 /*
3103 * Change the backing file. All clusters that are different from the old
3104 * backing file are overwritten in the COW file now, so the visible content
3105 * doesn't change when we switch the backing file.
3106 */
Alex Bligha6166732012-10-16 13:46:18 +01003107 if (out_baseimg && *out_baseimg) {
3108 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3109 } else {
3110 ret = bdrv_change_backing_file(bs, NULL, NULL);
3111 }
3112
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003113 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003114 error_report("Could not change the backing file to '%s': No "
3115 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003116 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003117 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003118 out_baseimg, strerror(-ret));
3119 }
3120
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003121 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003122 /*
3123 * TODO At this point it is possible to check if any clusters that are
3124 * allocated in the COW file are the same in the backing file. If so, they
3125 * could be dropped from the COW file. Don't do this before switching the
3126 * backing file, in case of a crash this would lead to corruption.
3127 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003128out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003129 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003130 /* Cleanup */
3131 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003132 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003133 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003134 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003135 qemu_vfree(buf_old);
3136 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003137
Markus Armbruster26f54e92014-10-07 13:59:04 +02003138 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003139 if (ret) {
3140 return 1;
3141 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003142 return 0;
3143}
3144
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003145static int img_resize(int argc, char **argv)
3146{
Markus Armbruster6750e792015-02-12 17:43:08 +01003147 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003148 int c, ret, relative;
3149 const char *filename, *fmt, *size;
3150 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003151 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003152 BlockBackend *blk = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003153 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003154
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003155 static QemuOptsList resize_options = {
3156 .name = "resize_options",
3157 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3158 .desc = {
3159 {
3160 .name = BLOCK_OPT_SIZE,
3161 .type = QEMU_OPT_SIZE,
3162 .help = "Virtual disk size"
3163 }, {
3164 /* end of list */
3165 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003166 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003167 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003168 bool image_opts = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003169
Kevin Wolfe80fec72011-04-29 10:58:12 +02003170 /* Remove size from argv manually so that negative numbers are not treated
3171 * as options by getopt. */
3172 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003173 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003174 return 1;
3175 }
3176
3177 size = argv[--argc];
3178
3179 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003180 fmt = NULL;
3181 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003182 static const struct option long_options[] = {
3183 {"help", no_argument, 0, 'h'},
3184 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003185 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003186 {0, 0, 0, 0}
3187 };
3188 c = getopt_long(argc, argv, "f:hq",
3189 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003190 if (c == -1) {
3191 break;
3192 }
3193 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01003194 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003195 case 'h':
3196 help();
3197 break;
3198 case 'f':
3199 fmt = optarg;
3200 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003201 case 'q':
3202 quiet = true;
3203 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003204 case OPTION_OBJECT: {
3205 QemuOpts *opts;
3206 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3207 optarg, true);
3208 if (!opts) {
3209 return 1;
3210 }
3211 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003212 case OPTION_IMAGE_OPTS:
3213 image_opts = true;
3214 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003215 }
3216 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003217 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003218 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003219 }
3220 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003221
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003222 if (qemu_opts_foreach(&qemu_object_opts,
3223 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003224 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003225 return 1;
3226 }
3227
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003228 /* Choose grow, shrink, or absolute resize mode */
3229 switch (size[0]) {
3230 case '+':
3231 relative = 1;
3232 size++;
3233 break;
3234 case '-':
3235 relative = -1;
3236 size++;
3237 break;
3238 default:
3239 relative = 0;
3240 break;
3241 }
3242
3243 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003244 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003245 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003246 if (err) {
3247 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003248 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003249 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003250 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003251 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003252 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3253 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003254
Max Reitzefaa7c42016-03-16 19:54:38 +01003255 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01003256 BDRV_O_RDWR, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003257 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003258 ret = -1;
3259 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003260 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003261
3262 if (relative) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05003263 total_size = blk_getlength(blk) + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003264 } else {
3265 total_size = n;
3266 }
3267 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003268 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003269 ret = -1;
3270 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003271 }
3272
Max Reitzf1d3cd72015-02-05 13:58:18 -05003273 ret = blk_truncate(blk, total_size);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003274 switch (ret) {
3275 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003276 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003277 break;
3278 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01003279 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003280 break;
3281 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01003282 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003283 break;
3284 default:
Jes Sorensen15654a62010-12-16 14:31:53 +01003285 error_report("Error resizing image (%d)", -ret);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003286 break;
3287 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003288out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003289 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003290 if (ret) {
3291 return 1;
3292 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003293 return 0;
3294}
3295
Max Reitz76a3a342014-10-27 11:12:51 +01003296static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003297 int64_t offset, int64_t total_work_size,
3298 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003299{
3300 qemu_progress_print(100.f * offset / total_work_size, 0);
3301}
3302
Max Reitz6f176b42013-09-03 10:09:50 +02003303static int img_amend(int argc, char **argv)
3304{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003305 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003306 int c, ret = 0;
3307 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003308 QemuOptsList *create_opts = NULL;
3309 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003310 const char *fmt = NULL, *filename, *cache;
3311 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003312 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003313 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003314 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003315 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003316 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003317
Max Reitzbd39e6e2014-07-22 22:58:43 +02003318 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003319 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003320 static const struct option long_options[] = {
3321 {"help", no_argument, 0, 'h'},
3322 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003323 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003324 {0, 0, 0, 0}
3325 };
3326 c = getopt_long(argc, argv, "ho:f:t:pq",
3327 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003328 if (c == -1) {
3329 break;
3330 }
3331
3332 switch (c) {
3333 case 'h':
3334 case '?':
3335 help();
3336 break;
3337 case 'o':
Kevin Wolf626f84f2014-02-21 16:24:06 +01003338 if (!is_valid_option_list(optarg)) {
3339 error_report("Invalid option list: %s", optarg);
3340 ret = -1;
Max Reitze814dff2015-08-20 16:00:38 -07003341 goto out_no_progress;
Kevin Wolf626f84f2014-02-21 16:24:06 +01003342 }
3343 if (!options) {
3344 options = g_strdup(optarg);
3345 } else {
3346 char *old_options = options;
3347 options = g_strdup_printf("%s,%s", options, optarg);
3348 g_free(old_options);
3349 }
Max Reitz6f176b42013-09-03 10:09:50 +02003350 break;
3351 case 'f':
3352 fmt = optarg;
3353 break;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003354 case 't':
3355 cache = optarg;
3356 break;
Max Reitz76a3a342014-10-27 11:12:51 +01003357 case 'p':
3358 progress = true;
3359 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003360 case 'q':
3361 quiet = true;
3362 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003363 case OPTION_OBJECT:
3364 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3365 optarg, true);
3366 if (!opts) {
3367 ret = -1;
3368 goto out_no_progress;
3369 }
3370 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003371 case OPTION_IMAGE_OPTS:
3372 image_opts = true;
3373 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003374 }
3375 }
3376
Max Reitz6f176b42013-09-03 10:09:50 +02003377 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003378 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003379 }
3380
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003381 if (qemu_opts_foreach(&qemu_object_opts,
3382 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003383 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003384 ret = -1;
3385 goto out_no_progress;
3386 }
3387
Max Reitz76a3a342014-10-27 11:12:51 +01003388 if (quiet) {
3389 progress = false;
3390 }
3391 qemu_progress_init(progress, 1.0);
3392
Kevin Wolfa283cb62014-02-21 16:24:07 +01003393 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3394 if (fmt && has_help_option(options)) {
3395 /* If a format is explicitly specified (and possibly no filename is
3396 * given), print option help here */
3397 ret = print_block_option_help(filename, fmt);
3398 goto out;
3399 }
3400
3401 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003402 error_report("Expecting one image file name");
3403 ret = -1;
3404 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003405 }
Max Reitz6f176b42013-09-03 10:09:50 +02003406
Kevin Wolfce099542016-03-15 13:01:04 +01003407 flags = BDRV_O_RDWR;
3408 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003409 if (ret < 0) {
3410 error_report("Invalid cache option: %s", cache);
3411 goto out;
3412 }
3413
Kevin Wolfce099542016-03-15 13:01:04 +01003414 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003415 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003416 ret = -1;
3417 goto out;
3418 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003419 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003420
3421 fmt = bs->drv->format_name;
3422
Kevin Wolf626f84f2014-02-21 16:24:06 +01003423 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003424 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003425 ret = print_block_option_help(filename, fmt);
3426 goto out;
3427 }
3428
Max Reitzb2439d22014-12-02 18:32:47 +01003429 if (!bs->drv->create_opts) {
3430 error_report("Format driver '%s' does not support any options to amend",
3431 fmt);
3432 ret = -1;
3433 goto out;
3434 }
3435
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003436 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003437 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003438 if (options) {
3439 qemu_opts_do_parse(opts, options, NULL, &err);
3440 if (err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01003441 error_report_err(err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003442 ret = -1;
3443 goto out;
3444 }
Max Reitz6f176b42013-09-03 10:09:50 +02003445 }
3446
Max Reitz76a3a342014-10-27 11:12:51 +01003447 /* In case the driver does not call amend_status_cb() */
3448 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003449 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003450 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003451 if (ret < 0) {
3452 error_report("Error while amending options: %s", strerror(-ret));
3453 goto out;
3454 }
3455
3456out:
Max Reitz76a3a342014-10-27 11:12:51 +01003457 qemu_progress_end();
3458
Max Reitze814dff2015-08-20 16:00:38 -07003459out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003460 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003461 qemu_opts_del(opts);
3462 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003463 g_free(options);
3464
Max Reitz6f176b42013-09-03 10:09:50 +02003465 if (ret) {
3466 return 1;
3467 }
3468 return 0;
3469}
3470
Kevin Wolfb6133b82014-08-05 14:17:13 +02003471typedef struct BenchData {
3472 BlockBackend *blk;
3473 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003474 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003475 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003476 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003477 int nrreq;
3478 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003479 int flush_interval;
3480 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003481 uint8_t *buf;
3482 QEMUIOVector *qiov;
3483
3484 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003485 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003486 uint64_t offset;
3487} BenchData;
3488
Kevin Wolf55d539c2016-06-03 13:59:41 +02003489static void bench_undrained_flush_cb(void *opaque, int ret)
3490{
3491 if (ret < 0) {
3492 error_report("Failed flush request: %s\n", strerror(-ret));
3493 exit(EXIT_FAILURE);
3494 }
3495}
3496
Kevin Wolfb6133b82014-08-05 14:17:13 +02003497static void bench_cb(void *opaque, int ret)
3498{
3499 BenchData *b = opaque;
3500 BlockAIOCB *acb;
3501
3502 if (ret < 0) {
3503 error_report("Failed request: %s\n", strerror(-ret));
3504 exit(EXIT_FAILURE);
3505 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003506
3507 if (b->in_flush) {
3508 /* Just finished a flush with drained queue: Start next requests */
3509 assert(b->in_flight == 0);
3510 b->in_flush = false;
3511 } else if (b->in_flight > 0) {
3512 int remaining = b->n - b->in_flight;
3513
Kevin Wolfb6133b82014-08-05 14:17:13 +02003514 b->n--;
3515 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003516
3517 /* Time for flush? Drain queue if requested, then flush */
3518 if (b->flush_interval && remaining % b->flush_interval == 0) {
3519 if (!b->in_flight || !b->drain_on_flush) {
3520 BlockCompletionFunc *cb;
3521
3522 if (b->drain_on_flush) {
3523 b->in_flush = true;
3524 cb = bench_cb;
3525 } else {
3526 cb = bench_undrained_flush_cb;
3527 }
3528
3529 acb = blk_aio_flush(b->blk, cb, b);
3530 if (!acb) {
3531 error_report("Failed to issue flush request");
3532 exit(EXIT_FAILURE);
3533 }
3534 }
3535 if (b->drain_on_flush) {
3536 return;
3537 }
3538 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003539 }
3540
3541 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003542 if (b->write) {
3543 acb = blk_aio_pwritev(b->blk, b->offset, b->qiov, 0,
3544 bench_cb, b);
3545 } else {
3546 acb = blk_aio_preadv(b->blk, b->offset, b->qiov, 0,
3547 bench_cb, b);
3548 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003549 if (!acb) {
3550 error_report("Failed to issue request");
3551 exit(EXIT_FAILURE);
3552 }
3553 b->in_flight++;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003554 b->offset += b->step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003555 b->offset %= b->image_size;
3556 }
3557}
3558
3559static int img_bench(int argc, char **argv)
3560{
3561 int c, ret = 0;
3562 const char *fmt = NULL, *filename;
3563 bool quiet = false;
3564 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003565 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003566 int count = 75000;
3567 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003568 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003569 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003570 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003571 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003572 int flush_interval = 0;
3573 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003574 int64_t image_size;
3575 BlockBackend *blk = NULL;
3576 BenchData data = {};
3577 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003578 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003579 struct timeval t1, t2;
3580 int i;
3581
3582 for (;;) {
3583 static const struct option long_options[] = {
3584 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003585 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003586 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003587 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003588 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003589 {0, 0, 0, 0}
3590 };
Kevin Wolf83de9be2015-07-13 13:13:17 +02003591 c = getopt_long(argc, argv, "hc:d:f:no:qs:S:t:w", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003592 if (c == -1) {
3593 break;
3594 }
3595
3596 switch (c) {
3597 case 'h':
3598 case '?':
3599 help();
3600 break;
3601 case 'c':
3602 {
3603 char *end;
3604 errno = 0;
3605 count = strtoul(optarg, &end, 0);
3606 if (errno || *end || count > INT_MAX) {
3607 error_report("Invalid request count specified");
3608 return 1;
3609 }
3610 break;
3611 }
3612 case 'd':
3613 {
3614 char *end;
3615 errno = 0;
3616 depth = strtoul(optarg, &end, 0);
3617 if (errno || *end || depth > INT_MAX) {
3618 error_report("Invalid queue depth specified");
3619 return 1;
3620 }
3621 break;
3622 }
3623 case 'f':
3624 fmt = optarg;
3625 break;
3626 case 'n':
3627 flags |= BDRV_O_NATIVE_AIO;
3628 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003629 case 'o':
3630 {
3631 char *end;
3632 errno = 0;
3633 offset = qemu_strtosz_suffix(optarg, &end,
3634 QEMU_STRTOSZ_DEFSUFFIX_B);
3635 if (offset < 0|| *end) {
3636 error_report("Invalid offset specified");
3637 return 1;
3638 }
3639 break;
3640 }
3641 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003642 case 'q':
3643 quiet = true;
3644 break;
3645 case 's':
3646 {
3647 int64_t sval;
3648 char *end;
3649
3650 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3651 if (sval < 0 || sval > INT_MAX || *end) {
3652 error_report("Invalid buffer size specified");
3653 return 1;
3654 }
3655
3656 bufsize = sval;
3657 break;
3658 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003659 case 'S':
3660 {
3661 int64_t sval;
3662 char *end;
3663
3664 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3665 if (sval < 0 || sval > INT_MAX || *end) {
3666 error_report("Invalid step size specified");
3667 return 1;
3668 }
3669
3670 step = sval;
3671 break;
3672 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003673 case 't':
3674 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3675 if (ret < 0) {
3676 error_report("Invalid cache mode");
3677 ret = -1;
3678 goto out;
3679 }
3680 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003681 case 'w':
3682 flags |= BDRV_O_RDWR;
3683 is_write = true;
3684 break;
3685 case OPTION_PATTERN:
3686 {
3687 char *end;
3688 errno = 0;
3689 pattern = strtoul(optarg, &end, 0);
3690 if (errno || *end || pattern > 0xff) {
3691 error_report("Invalid pattern byte specified");
3692 return 1;
3693 }
3694 break;
3695 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003696 case OPTION_FLUSH_INTERVAL:
3697 {
3698 char *end;
3699 errno = 0;
3700 flush_interval = strtoul(optarg, &end, 0);
3701 if (errno || *end || flush_interval > INT_MAX) {
3702 error_report("Invalid flush interval specified");
3703 return 1;
3704 }
3705 break;
3706 }
3707 case OPTION_NO_DRAIN:
3708 drain_on_flush = false;
3709 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003710 case OPTION_IMAGE_OPTS:
3711 image_opts = true;
3712 break;
3713 }
3714 }
3715
3716 if (optind != argc - 1) {
3717 error_exit("Expecting one image file name");
3718 }
3719 filename = argv[argc - 1];
3720
Kevin Wolf55d539c2016-06-03 13:59:41 +02003721 if (!is_write && flush_interval) {
3722 error_report("--flush-interval is only available in write tests");
3723 ret = -1;
3724 goto out;
3725 }
3726 if (flush_interval && flush_interval < depth) {
3727 error_report("Flush interval can't be smaller than depth");
3728 ret = -1;
3729 goto out;
3730 }
3731
Kevin Wolfb6133b82014-08-05 14:17:13 +02003732 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
3733 if (!blk) {
3734 ret = -1;
3735 goto out;
3736 }
3737
3738 image_size = blk_getlength(blk);
3739 if (image_size < 0) {
3740 ret = image_size;
3741 goto out;
3742 }
3743
3744 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02003745 .blk = blk,
3746 .image_size = image_size,
3747 .bufsize = bufsize,
3748 .step = step ?: bufsize,
3749 .nrreq = depth,
3750 .n = count,
3751 .offset = offset,
3752 .write = is_write,
3753 .flush_interval = flush_interval,
3754 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02003755 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02003756 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02003757 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02003758 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02003759 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02003760 if (flush_interval) {
3761 printf("Sending flush every %d requests\n", flush_interval);
3762 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003763
3764 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003765 memset(data.buf, pattern, data.nrreq * data.bufsize);
3766
Kevin Wolfb6133b82014-08-05 14:17:13 +02003767 data.qiov = g_new(QEMUIOVector, data.nrreq);
3768 for (i = 0; i < data.nrreq; i++) {
3769 qemu_iovec_init(&data.qiov[i], 1);
3770 qemu_iovec_add(&data.qiov[i],
3771 data.buf + i * data.bufsize, data.bufsize);
3772 }
3773
3774 gettimeofday(&t1, NULL);
3775 bench_cb(&data, 0);
3776
3777 while (data.n > 0) {
3778 main_loop_wait(false);
3779 }
3780 gettimeofday(&t2, NULL);
3781
3782 printf("Run completed in %3.3f seconds.\n",
3783 (t2.tv_sec - t1.tv_sec)
3784 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
3785
3786out:
3787 qemu_vfree(data.buf);
3788 blk_unref(blk);
3789
3790 if (ret) {
3791 return 1;
3792 }
3793 return 0;
3794}
3795
3796
Anthony Liguoric227f092009-10-01 16:12:16 -05003797static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01003798#define DEF(option, callback, arg_string) \
3799 { option, callback },
3800#include "qemu-img-cmds.h"
3801#undef DEF
3802#undef GEN_DOCS
3803 { NULL, NULL, },
3804};
3805
bellardea2384d2004-08-01 21:59:26 +00003806int main(int argc, char **argv)
3807{
Anthony Liguoric227f092009-10-01 16:12:16 -05003808 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01003809 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003810 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003811 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04003812 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04003813 static const struct option long_options[] = {
3814 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03003815 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003816 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04003817 {0, 0, 0, 0}
3818 };
bellardea2384d2004-08-01 21:59:26 +00003819
MORITA Kazutaka526eda12013-07-23 17:30:11 +09003820#ifdef CONFIG_POSIX
3821 signal(SIGPIPE, SIG_IGN);
3822#endif
3823
Kevin Wolf53f76e52010-12-16 15:10:32 +01003824 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08003825 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01003826
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003827 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01003828 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003829 exit(EXIT_FAILURE);
3830 }
3831
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03003832 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01003833
Daniel P. Berrange064097d2016-02-10 18:41:01 +00003834 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00003835 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08003836 if (argc < 2) {
3837 error_exit("Not enough arguments");
3838 }
Stuart Brady153859b2009-06-07 00:42:17 +01003839
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003840 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003841 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003842 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003843
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003844 while ((c = getopt_long(argc, argv, "+hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03003845 switch (c) {
3846 case 'h':
3847 help();
3848 return 0;
3849 case 'V':
3850 printf(QEMU_IMG_VERSION);
3851 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003852 case 'T':
3853 g_free(trace_file);
3854 trace_file = trace_opt_parse(optarg);
3855 break;
Stuart Brady153859b2009-06-07 00:42:17 +01003856 }
bellardea2384d2004-08-01 21:59:26 +00003857 }
Stuart Brady153859b2009-06-07 00:42:17 +01003858
Denis V. Lunev10985132016-06-17 17:44:13 +03003859 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04003860
Denis V. Lunev10985132016-06-17 17:44:13 +03003861 /* reset getopt_long scanning */
3862 argc -= optind;
3863 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04003864 return 0;
3865 }
Denis V. Lunev10985132016-06-17 17:44:13 +03003866 argv += optind;
3867 optind = 1;
3868
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003869 if (!trace_init_backends()) {
3870 exit(1);
3871 }
3872 trace_init_file(trace_file);
3873 qemu_set_log(LOG_TRACE);
3874
Denis V. Lunev10985132016-06-17 17:44:13 +03003875 /* find the command */
3876 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
3877 if (!strcmp(cmdname, cmd->name)) {
3878 return cmd->handler(argc, argv);
3879 }
3880 }
Jeff Cody7db16892014-04-25 17:02:32 -04003881
Stuart Brady153859b2009-06-07 00:42:17 +01003882 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08003883 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00003884}