blob: 235168646ebe49b9edcf139cbcefa27585b2d0d1 [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{
Markus Armbruster4399c432014-04-25 16:50:32 +0200493 Error *local_err = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500494 QString *str;
495 QmpOutputVisitor *ov = qmp_output_visitor_new();
496 QObject *obj;
Eric Blake51e72bc2016-01-29 06:48:54 -0700497 visit_type_ImageCheck(qmp_output_get_visitor(ov), NULL, &check,
498 &local_err);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500499 obj = qmp_output_get_qobject(ov);
500 str = qobject_to_json_pretty(obj);
501 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100502 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500503 qobject_decref(obj);
504 qmp_output_visitor_cleanup(ov);
505 QDECREF(str);
506}
507
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100508static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500509{
510 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100511 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500512 } else {
513 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100514 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
515 "Data may be corrupted, or further writes to the image "
516 "may corrupt it.\n",
517 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500518 }
519
520 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100521 qprintf(quiet,
522 "\n%" PRId64 " leaked clusters were found on the image.\n"
523 "This means waste of disk space, but no harm to data.\n",
524 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500525 }
526
527 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100528 qprintf(quiet,
529 "\n%" PRId64
530 " internal errors have occurred during the check.\n",
531 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500532 }
533 }
534
535 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100536 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
537 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
538 check->allocated_clusters, check->total_clusters,
539 check->allocated_clusters * 100.0 / check->total_clusters,
540 check->fragmented_clusters * 100.0 / check->allocated_clusters,
541 check->compressed_clusters * 100.0 /
542 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500543 }
544
545 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100546 qprintf(quiet,
547 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500548 }
549}
550
551static int collect_image_check(BlockDriverState *bs,
552 ImageCheck *check,
553 const char *filename,
554 const char *fmt,
555 int fix)
556{
557 int ret;
558 BdrvCheckResult result;
559
560 ret = bdrv_check(bs, &result, fix);
561 if (ret < 0) {
562 return ret;
563 }
564
565 check->filename = g_strdup(filename);
566 check->format = g_strdup(bdrv_get_format_name(bs));
567 check->check_errors = result.check_errors;
568 check->corruptions = result.corruptions;
569 check->has_corruptions = result.corruptions != 0;
570 check->leaks = result.leaks;
571 check->has_leaks = result.leaks != 0;
572 check->corruptions_fixed = result.corruptions_fixed;
573 check->has_corruptions_fixed = result.corruptions != 0;
574 check->leaks_fixed = result.leaks_fixed;
575 check->has_leaks_fixed = result.leaks != 0;
576 check->image_end_offset = result.image_end_offset;
577 check->has_image_end_offset = result.image_end_offset != 0;
578 check->total_clusters = result.bfi.total_clusters;
579 check->has_total_clusters = result.bfi.total_clusters != 0;
580 check->allocated_clusters = result.bfi.allocated_clusters;
581 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
582 check->fragmented_clusters = result.bfi.fragmented_clusters;
583 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100584 check->compressed_clusters = result.bfi.compressed_clusters;
585 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500586
587 return 0;
588}
589
Kevin Wolfe076f332010-06-29 11:43:13 +0200590/*
591 * Checks an image for consistency. Exit codes:
592 *
Max Reitzd6635c42014-06-02 22:15:21 +0200593 * 0 - Check completed, image is good
594 * 1 - Check not completed because of internal errors
595 * 2 - Check completed, image is corrupted
596 * 3 - Check completed, image has leaked clusters, but is good otherwise
597 * 63 - Checks are not supported by the image format
Kevin Wolfe076f332010-06-29 11:43:13 +0200598 */
aliguori15859692009-04-21 23:11:53 +0000599static int img_check(int argc, char **argv)
600{
601 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500602 OutputFormat output_format = OFORMAT_HUMAN;
Max Reitz40055952014-07-22 22:58:42 +0200603 const char *filename, *fmt, *output, *cache;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200604 BlockBackend *blk;
aliguori15859692009-04-21 23:11:53 +0000605 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200606 int fix = 0;
Kevin Wolfce099542016-03-15 13:01:04 +0100607 int flags = BDRV_O_CHECK;
608 bool writethrough;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200609 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100610 bool quiet = false;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000611 bool image_opts = false;
aliguori15859692009-04-21 23:11:53 +0000612
613 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500614 output = NULL;
Max Reitz40055952014-07-22 22:58:42 +0200615 cache = BDRV_DEFAULT_CACHE;
Kevin Wolfce099542016-03-15 13:01:04 +0100616
aliguori15859692009-04-21 23:11:53 +0000617 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500618 int option_index = 0;
619 static const struct option long_options[] = {
620 {"help", no_argument, 0, 'h'},
621 {"format", required_argument, 0, 'f'},
Prasad Joshi4fd6a982014-03-25 00:08:54 +0530622 {"repair", required_argument, 0, 'r'},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500623 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000624 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000625 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500626 {0, 0, 0, 0}
627 };
Max Reitz40055952014-07-22 22:58:42 +0200628 c = getopt_long(argc, argv, "hf:r:T:q",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500629 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100630 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000631 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100632 }
aliguori15859692009-04-21 23:11:53 +0000633 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100634 case '?':
aliguori15859692009-04-21 23:11:53 +0000635 case 'h':
636 help();
637 break;
638 case 'f':
639 fmt = optarg;
640 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200641 case 'r':
642 flags |= BDRV_O_RDWR;
643
644 if (!strcmp(optarg, "leaks")) {
645 fix = BDRV_FIX_LEAKS;
646 } else if (!strcmp(optarg, "all")) {
647 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
648 } else {
Fam Zhengac1307a2014-04-22 13:36:11 +0800649 error_exit("Unknown option value for -r "
650 "(expecting 'leaks' or 'all'): %s", optarg);
Kevin Wolf4534ff52012-05-11 16:07:02 +0200651 }
652 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500653 case OPTION_OUTPUT:
654 output = optarg;
655 break;
Max Reitz40055952014-07-22 22:58:42 +0200656 case 'T':
657 cache = optarg;
658 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100659 case 'q':
660 quiet = true;
661 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000662 case OPTION_OBJECT: {
663 QemuOpts *opts;
664 opts = qemu_opts_parse_noisily(&qemu_object_opts,
665 optarg, true);
666 if (!opts) {
667 return 1;
668 }
669 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000670 case OPTION_IMAGE_OPTS:
671 image_opts = true;
672 break;
aliguori15859692009-04-21 23:11:53 +0000673 }
674 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200675 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800676 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100677 }
aliguori15859692009-04-21 23:11:53 +0000678 filename = argv[optind++];
679
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500680 if (output && !strcmp(output, "json")) {
681 output_format = OFORMAT_JSON;
682 } else if (output && !strcmp(output, "human")) {
683 output_format = OFORMAT_HUMAN;
684 } else if (output) {
685 error_report("--output must be used with human or json as argument.");
686 return 1;
687 }
688
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000689 if (qemu_opts_foreach(&qemu_object_opts,
690 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200691 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000692 return 1;
693 }
694
Kevin Wolfce099542016-03-15 13:01:04 +0100695 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +0200696 if (ret < 0) {
697 error_report("Invalid source cache option: %s", cache);
698 return 1;
699 }
700
Kevin Wolfce099542016-03-15 13:01:04 +0100701 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200702 if (!blk) {
703 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900704 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200705 bs = blk_bs(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500706
707 check = g_new0(ImageCheck, 1);
708 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200709
710 if (ret == -ENOTSUP) {
Max Reitz55d492d2014-05-31 21:33:30 +0200711 error_report("This image format does not support checks");
Peter Lievenfefddf92013-10-24 08:53:34 +0200712 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500713 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200714 }
715
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500716 if (check->corruptions_fixed || check->leaks_fixed) {
717 int corruptions_fixed, leaks_fixed;
718
719 leaks_fixed = check->leaks_fixed;
720 corruptions_fixed = check->corruptions_fixed;
721
722 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100723 qprintf(quiet,
724 "The following inconsistencies were found and repaired:\n\n"
725 " %" PRId64 " leaked clusters\n"
726 " %" PRId64 " corruptions\n\n"
727 "Double checking the fixed image now...\n",
728 check->leaks_fixed,
729 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500730 }
731
732 ret = collect_image_check(bs, check, filename, fmt, 0);
733
734 check->leaks_fixed = leaks_fixed;
735 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200736 }
737
Max Reitz832390a2014-10-23 15:29:12 +0200738 if (!ret) {
739 switch (output_format) {
740 case OFORMAT_HUMAN:
741 dump_human_image_check(check, quiet);
742 break;
743 case OFORMAT_JSON:
744 dump_json_image_check(check, quiet);
745 break;
746 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500747 }
748
749 if (ret || check->check_errors) {
Max Reitz832390a2014-10-23 15:29:12 +0200750 if (ret) {
751 error_report("Check failed: %s", strerror(-ret));
752 } else {
753 error_report("Check failed");
754 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500755 ret = 1;
756 goto fail;
757 }
758
759 if (check->corruptions) {
760 ret = 2;
761 } else if (check->leaks) {
762 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200763 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500764 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000765 }
766
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500767fail:
768 qapi_free_ImageCheck(check);
Markus Armbruster26f54e92014-10-07 13:59:04 +0200769 blk_unref(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500770 return ret;
aliguori15859692009-04-21 23:11:53 +0000771}
772
Max Reitzd4a32382014-10-24 15:57:37 +0200773typedef struct CommonBlockJobCBInfo {
774 BlockDriverState *bs;
775 Error **errp;
776} CommonBlockJobCBInfo;
777
778static void common_block_job_cb(void *opaque, int ret)
779{
780 CommonBlockJobCBInfo *cbi = opaque;
781
782 if (ret < 0) {
783 error_setg_errno(cbi->errp, -ret, "Block job failed");
784 }
Max Reitzd4a32382014-10-24 15:57:37 +0200785}
786
787static void run_block_job(BlockJob *job, Error **errp)
788{
Kevin Wolfb75536c2016-04-18 17:30:17 +0200789 AioContext *aio_context = blk_get_aio_context(job->blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200790
791 do {
792 aio_poll(aio_context, true);
John Snow62547b82015-11-02 18:28:20 -0500793 qemu_progress_print(job->len ?
794 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200795 } while (!job->ready);
796
797 block_job_complete_sync(job, errp);
Max Reitz687fa1d2014-10-24 15:57:39 +0200798
799 /* A block job may finish instantaneously without publishing any progress,
800 * so just signal completion here */
801 qemu_progress_print(100.f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200802}
803
bellardea2384d2004-08-01 21:59:26 +0000804static int img_commit(int argc, char **argv)
805{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400806 int c, ret, flags;
Max Reitz1b22bff2014-10-24 15:57:40 +0200807 const char *filename, *fmt, *cache, *base;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200808 BlockBackend *blk;
Max Reitzd4a32382014-10-24 15:57:37 +0200809 BlockDriverState *bs, *base_bs;
Max Reitz687fa1d2014-10-24 15:57:39 +0200810 bool progress = false, quiet = false, drop = false;
Kevin Wolfce099542016-03-15 13:01:04 +0100811 bool writethrough;
Max Reitzd4a32382014-10-24 15:57:37 +0200812 Error *local_err = NULL;
813 CommonBlockJobCBInfo cbi;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000814 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +0000815
816 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400817 cache = BDRV_DEFAULT_CACHE;
Max Reitz1b22bff2014-10-24 15:57:40 +0200818 base = NULL;
bellardea2384d2004-08-01 21:59:26 +0000819 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000820 static const struct option long_options[] = {
821 {"help", no_argument, 0, 'h'},
822 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000823 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000824 {0, 0, 0, 0}
825 };
826 c = getopt_long(argc, argv, "f:ht:b:dpq",
827 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100828 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000829 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100830 }
bellardea2384d2004-08-01 21:59:26 +0000831 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100832 case '?':
bellardea2384d2004-08-01 21:59:26 +0000833 case 'h':
834 help();
835 break;
836 case 'f':
837 fmt = optarg;
838 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400839 case 't':
840 cache = optarg;
841 break;
Max Reitz1b22bff2014-10-24 15:57:40 +0200842 case 'b':
843 base = optarg;
844 /* -b implies -d */
845 drop = true;
846 break;
Max Reitz9a86fe42014-10-24 15:57:38 +0200847 case 'd':
848 drop = true;
849 break;
Max Reitz687fa1d2014-10-24 15:57:39 +0200850 case 'p':
851 progress = true;
852 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100853 case 'q':
854 quiet = true;
855 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000856 case OPTION_OBJECT: {
857 QemuOpts *opts;
858 opts = qemu_opts_parse_noisily(&qemu_object_opts,
859 optarg, true);
860 if (!opts) {
861 return 1;
862 }
863 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000864 case OPTION_IMAGE_OPTS:
865 image_opts = true;
866 break;
bellardea2384d2004-08-01 21:59:26 +0000867 }
868 }
Max Reitz687fa1d2014-10-24 15:57:39 +0200869
870 /* Progress is not shown in Quiet mode */
871 if (quiet) {
872 progress = false;
873 }
874
Kevin Wolffc11eb22013-08-05 10:53:04 +0200875 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800876 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100877 }
bellardea2384d2004-08-01 21:59:26 +0000878 filename = argv[optind++];
879
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000880 if (qemu_opts_foreach(&qemu_object_opts,
881 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200882 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000883 return 1;
884 }
885
Max Reitz9a86fe42014-10-24 15:57:38 +0200886 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
Kevin Wolfce099542016-03-15 13:01:04 +0100887 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400888 if (ret < 0) {
889 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczia3981eb2014-08-26 19:17:54 +0100890 return 1;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400891 }
892
Kevin Wolfce099542016-03-15 13:01:04 +0100893 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200894 if (!blk) {
895 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900896 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200897 bs = blk_bs(blk);
898
Max Reitz687fa1d2014-10-24 15:57:39 +0200899 qemu_progress_init(progress, 1.f);
900 qemu_progress_print(0.f, 100);
901
Max Reitz1b22bff2014-10-24 15:57:40 +0200902 if (base) {
903 base_bs = bdrv_find_backing_image(bs, base);
904 if (!base_bs) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100905 error_setg(&local_err, QERR_BASE_NOT_FOUND, base);
Max Reitz1b22bff2014-10-24 15:57:40 +0200906 goto done;
907 }
908 } else {
909 /* This is different from QMP, which by default uses the deepest file in
910 * the backing chain (i.e., the very base); however, the traditional
911 * behavior of qemu-img commit is using the immediate backing file. */
Kevin Wolf760e0062015-06-17 14:55:21 +0200912 base_bs = backing_bs(bs);
Max Reitz1b22bff2014-10-24 15:57:40 +0200913 if (!base_bs) {
914 error_setg(&local_err, "Image does not have a backing file");
915 goto done;
916 }
bellardea2384d2004-08-01 21:59:26 +0000917 }
918
Max Reitzd4a32382014-10-24 15:57:37 +0200919 cbi = (CommonBlockJobCBInfo){
920 .errp = &local_err,
921 .bs = bs,
922 };
923
924 commit_active_start(bs, base_bs, 0, BLOCKDEV_ON_ERROR_REPORT,
925 common_block_job_cb, &cbi, &local_err);
926 if (local_err) {
927 goto done;
928 }
929
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200930 /* When the block job completes, the BlockBackend reference will point to
931 * the old backing file. In order to avoid that the top image is already
932 * deleted, so we can still empty it afterwards, increment the reference
933 * counter here preemptively. */
Max Reitz9a86fe42014-10-24 15:57:38 +0200934 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200935 bdrv_ref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200936 }
937
Max Reitzd4a32382014-10-24 15:57:37 +0200938 run_block_job(bs->job, &local_err);
Max Reitz9a86fe42014-10-24 15:57:38 +0200939 if (local_err) {
940 goto unref_backing;
941 }
942
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200943 if (!drop && bs->drv->bdrv_make_empty) {
944 ret = bs->drv->bdrv_make_empty(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200945 if (ret) {
946 error_setg_errno(&local_err, -ret, "Could not empty %s",
947 filename);
948 goto unref_backing;
949 }
950 }
951
952unref_backing:
953 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200954 bdrv_unref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200955 }
Max Reitzd4a32382014-10-24 15:57:37 +0200956
957done:
Max Reitz687fa1d2014-10-24 15:57:39 +0200958 qemu_progress_end();
959
Markus Armbruster26f54e92014-10-07 13:59:04 +0200960 blk_unref(blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200961
962 if (local_err) {
Markus Armbruster6936f292015-02-10 15:14:02 +0100963 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900964 return 1;
965 }
Max Reitzd4a32382014-10-24 15:57:37 +0200966
967 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000968 return 0;
969}
970
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400971/*
thsf58c7b32008-06-05 21:53:49 +0000972 * Returns true iff the first sector pointed to by 'buf' contains at least
973 * a non-NUL byte.
974 *
975 * 'pnum' is set to the number of sectors (including and immediately following
976 * the first one) that are known to be in the same allocated/unallocated state.
977 */
bellardea2384d2004-08-01 21:59:26 +0000978static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
979{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000980 bool is_zero;
981 int i;
bellardea2384d2004-08-01 21:59:26 +0000982
983 if (n <= 0) {
984 *pnum = 0;
985 return 0;
986 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000987 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +0000988 for(i = 1; i < n; i++) {
989 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000990 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +0000991 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000992 }
bellardea2384d2004-08-01 21:59:26 +0000993 }
994 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000995 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +0000996}
997
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100998/*
Kevin Wolfa22f1232011-08-26 15:27:13 +0200999 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1000 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1001 * breaking up write requests for only small sparse areas.
1002 */
1003static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1004 int min)
1005{
1006 int ret;
1007 int num_checked, num_used;
1008
1009 if (n < min) {
1010 min = n;
1011 }
1012
1013 ret = is_allocated_sectors(buf, n, pnum);
1014 if (!ret) {
1015 return ret;
1016 }
1017
1018 num_used = *pnum;
1019 buf += BDRV_SECTOR_SIZE * *pnum;
1020 n -= *pnum;
1021 num_checked = num_used;
1022
1023 while (n > 0) {
1024 ret = is_allocated_sectors(buf, n, pnum);
1025
1026 buf += BDRV_SECTOR_SIZE * *pnum;
1027 n -= *pnum;
1028 num_checked += *pnum;
1029 if (ret) {
1030 num_used = num_checked;
1031 } else if (*pnum >= min) {
1032 break;
1033 }
1034 }
1035
1036 *pnum = num_used;
1037 return 1;
1038}
1039
1040/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001041 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1042 * buffers matches, non-zero otherwise.
1043 *
1044 * pnum is set to the number of sectors (including and immediately following
1045 * the first one) that are known to have the same comparison result
1046 */
1047static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1048 int *pnum)
1049{
Radim Krčmář8c1ac472015-02-20 17:06:15 +01001050 bool res;
1051 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001052
1053 if (n <= 0) {
1054 *pnum = 0;
1055 return 0;
1056 }
1057
1058 res = !!memcmp(buf1, buf2, 512);
1059 for(i = 1; i < n; i++) {
1060 buf1 += 512;
1061 buf2 += 512;
1062
1063 if (!!memcmp(buf1, buf2, 512) != res) {
1064 break;
1065 }
1066 }
1067
1068 *pnum = i;
1069 return res;
1070}
1071
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001072#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001073
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001074static int64_t sectors_to_bytes(int64_t sectors)
1075{
1076 return sectors << BDRV_SECTOR_BITS;
1077}
1078
1079static int64_t sectors_to_process(int64_t total, int64_t from)
1080{
1081 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1082}
1083
1084/*
1085 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1086 *
1087 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1088 * data and negative value on error.
1089 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001090 * @param blk: BlockBackend for the image
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001091 * @param sect_num: Number of first sector to check
1092 * @param sect_count: Number of sectors to check
1093 * @param filename: Name of disk file we are checking (logging purpose)
1094 * @param buffer: Allocated buffer for storing read data
1095 * @param quiet: Flag for quiet mode
1096 */
Max Reitzf1d3cd72015-02-05 13:58:18 -05001097static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001098 int sect_count, const char *filename,
1099 uint8_t *buffer, bool quiet)
1100{
1101 int pnum, ret = 0;
Eric Blake91669202016-05-06 10:26:43 -06001102 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1103 sect_count << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001104 if (ret < 0) {
1105 error_report("Error while reading offset %" PRId64 " of %s: %s",
1106 sectors_to_bytes(sect_num), filename, strerror(-ret));
1107 return ret;
1108 }
1109 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1110 if (ret || pnum != sect_count) {
1111 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1112 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1113 return 1;
1114 }
1115
1116 return 0;
1117}
1118
1119/*
1120 * Compares two images. Exit codes:
1121 *
1122 * 0 - Images are identical
1123 * 1 - Images differ
1124 * >1 - Error occurred
1125 */
1126static int img_compare(int argc, char **argv)
1127{
Max Reitz40055952014-07-22 22:58:42 +02001128 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001129 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001130 BlockDriverState *bs1, *bs2;
1131 int64_t total_sectors1, total_sectors2;
1132 uint8_t *buf1 = NULL, *buf2 = NULL;
1133 int pnum1, pnum2;
1134 int allocated1, allocated2;
1135 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1136 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001137 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001138 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001139 int64_t total_sectors;
1140 int64_t sector_num = 0;
1141 int64_t nb_sectors;
1142 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001143 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001144 bool image_opts = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001145
Max Reitz40055952014-07-22 22:58:42 +02001146 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001147 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001148 static const struct option long_options[] = {
1149 {"help", no_argument, 0, 'h'},
1150 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001151 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001152 {0, 0, 0, 0}
1153 };
1154 c = getopt_long(argc, argv, "hf:F:T:pqs",
1155 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001156 if (c == -1) {
1157 break;
1158 }
1159 switch (c) {
1160 case '?':
1161 case 'h':
1162 help();
1163 break;
1164 case 'f':
1165 fmt1 = optarg;
1166 break;
1167 case 'F':
1168 fmt2 = optarg;
1169 break;
Max Reitz40055952014-07-22 22:58:42 +02001170 case 'T':
1171 cache = optarg;
1172 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001173 case 'p':
1174 progress = true;
1175 break;
1176 case 'q':
1177 quiet = true;
1178 break;
1179 case 's':
1180 strict = true;
1181 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001182 case OPTION_OBJECT: {
1183 QemuOpts *opts;
1184 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1185 optarg, true);
1186 if (!opts) {
1187 ret = 2;
1188 goto out4;
1189 }
1190 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001191 case OPTION_IMAGE_OPTS:
1192 image_opts = true;
1193 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001194 }
1195 }
1196
1197 /* Progress is not shown in Quiet mode */
1198 if (quiet) {
1199 progress = false;
1200 }
1201
1202
Kevin Wolffc11eb22013-08-05 10:53:04 +02001203 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001204 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001205 }
1206 filename1 = argv[optind++];
1207 filename2 = argv[optind++];
1208
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001209 if (qemu_opts_foreach(&qemu_object_opts,
1210 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001211 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001212 ret = 2;
1213 goto out4;
1214 }
1215
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001216 /* Initialize before goto out */
1217 qemu_progress_init(progress, 2.0);
1218
Kevin Wolfce099542016-03-15 13:01:04 +01001219 flags = 0;
1220 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001221 if (ret < 0) {
1222 error_report("Invalid source cache option: %s", cache);
1223 ret = 2;
1224 goto out3;
1225 }
1226
Kevin Wolfce099542016-03-15 13:01:04 +01001227 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001228 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001229 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001230 goto out3;
1231 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001232
Kevin Wolfce099542016-03-15 13:01:04 +01001233 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001234 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001235 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001236 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001237 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001238 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001239 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001240
Max Reitzf1d3cd72015-02-05 13:58:18 -05001241 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1242 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1243 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001244 if (total_sectors1 < 0) {
1245 error_report("Can't get size of %s: %s",
1246 filename1, strerror(-total_sectors1));
1247 ret = 4;
1248 goto out;
1249 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001250 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001251 if (total_sectors2 < 0) {
1252 error_report("Can't get size of %s: %s",
1253 filename2, strerror(-total_sectors2));
1254 ret = 4;
1255 goto out;
1256 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001257 total_sectors = MIN(total_sectors1, total_sectors2);
1258 progress_base = MAX(total_sectors1, total_sectors2);
1259
1260 qemu_progress_print(0, 100);
1261
1262 if (strict && total_sectors1 != total_sectors2) {
1263 ret = 1;
1264 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1265 goto out;
1266 }
1267
1268 for (;;) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001269 int64_t status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001270 BlockDriverState *file;
1271
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001272 nb_sectors = sectors_to_process(total_sectors, sector_num);
1273 if (nb_sectors <= 0) {
1274 break;
1275 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001276 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1277 total_sectors1 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001278 &pnum1, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001279 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001280 ret = 3;
1281 error_report("Sector allocation test failed for %s", filename1);
1282 goto out;
1283 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001284 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001285
Fam Zheng25ad8e62016-01-13 16:37:41 +08001286 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1287 total_sectors2 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001288 &pnum2, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001289 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001290 ret = 3;
1291 error_report("Sector allocation test failed for %s", filename2);
1292 goto out;
1293 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001294 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1295 if (pnum1) {
1296 nb_sectors = MIN(nb_sectors, pnum1);
1297 }
1298 if (pnum2) {
1299 nb_sectors = MIN(nb_sectors, pnum2);
1300 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001301
Fam Zheng25ad8e62016-01-13 16:37:41 +08001302 if (strict) {
1303 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1304 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1305 ret = 1;
1306 qprintf(quiet, "Strict mode: Offset %" PRId64
1307 " block status mismatch!\n",
1308 sectors_to_bytes(sector_num));
1309 goto out;
1310 }
1311 }
1312 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1313 nb_sectors = MIN(pnum1, pnum2);
1314 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001315 if (allocated1) {
Eric Blake91669202016-05-06 10:26:43 -06001316 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1317 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001318 if (ret < 0) {
1319 error_report("Error while reading offset %" PRId64 " of %s:"
1320 " %s", sectors_to_bytes(sector_num), filename1,
1321 strerror(-ret));
1322 ret = 4;
1323 goto out;
1324 }
Eric Blake91669202016-05-06 10:26:43 -06001325 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1326 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001327 if (ret < 0) {
1328 error_report("Error while reading offset %" PRId64
1329 " of %s: %s", sectors_to_bytes(sector_num),
1330 filename2, strerror(-ret));
1331 ret = 4;
1332 goto out;
1333 }
1334 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1335 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001336 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1337 sectors_to_bytes(
1338 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001339 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001340 goto out;
1341 }
1342 }
1343 } else {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001344
1345 if (allocated1) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001346 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001347 filename1, buf1, quiet);
1348 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001349 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001350 filename2, buf1, quiet);
1351 }
1352 if (ret) {
1353 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001354 error_report("Error while reading offset %" PRId64 ": %s",
1355 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001356 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001357 }
1358 goto out;
1359 }
1360 }
1361 sector_num += nb_sectors;
1362 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1363 }
1364
1365 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001366 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001367 int64_t total_sectors_over;
1368 const char *filename_over;
1369
1370 qprintf(quiet, "Warning: Image size mismatch!\n");
1371 if (total_sectors1 > total_sectors2) {
1372 total_sectors_over = total_sectors1;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001373 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001374 filename_over = filename1;
1375 } else {
1376 total_sectors_over = total_sectors2;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001377 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001378 filename_over = filename2;
1379 }
1380
1381 for (;;) {
1382 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1383 if (nb_sectors <= 0) {
1384 break;
1385 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001386 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL, sector_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001387 nb_sectors, &pnum);
1388 if (ret < 0) {
1389 ret = 3;
1390 error_report("Sector allocation test failed for %s",
1391 filename_over);
1392 goto out;
1393
1394 }
1395 nb_sectors = pnum;
1396 if (ret) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001397 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001398 filename_over, buf1, quiet);
1399 if (ret) {
1400 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001401 error_report("Error while reading offset %" PRId64
1402 " of %s: %s", sectors_to_bytes(sector_num),
1403 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001404 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001405 }
1406 goto out;
1407 }
1408 }
1409 sector_num += nb_sectors;
1410 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1411 }
1412 }
1413
1414 qprintf(quiet, "Images are identical.\n");
1415 ret = 0;
1416
1417out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001418 qemu_vfree(buf1);
1419 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001420 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001421out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001422 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001423out3:
1424 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001425out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001426 return ret;
1427}
1428
Kevin Wolf690c7302015-03-19 13:33:32 +01001429enum ImgConvertBlockStatus {
1430 BLK_DATA,
1431 BLK_ZERO,
1432 BLK_BACKING_FILE,
1433};
1434
1435typedef struct ImgConvertState {
1436 BlockBackend **src;
1437 int64_t *src_sectors;
1438 int src_cur, src_num;
1439 int64_t src_cur_offset;
1440 int64_t total_sectors;
1441 int64_t allocated_sectors;
1442 enum ImgConvertBlockStatus status;
1443 int64_t sector_next_status;
1444 BlockBackend *target;
1445 bool has_zero_init;
1446 bool compressed;
1447 bool target_has_backing;
1448 int min_sparse;
1449 size_t cluster_sectors;
1450 size_t buf_sectors;
1451} ImgConvertState;
1452
1453static void convert_select_part(ImgConvertState *s, int64_t sector_num)
1454{
1455 assert(sector_num >= s->src_cur_offset);
1456 while (sector_num - s->src_cur_offset >= s->src_sectors[s->src_cur]) {
1457 s->src_cur_offset += s->src_sectors[s->src_cur];
1458 s->src_cur++;
1459 assert(s->src_cur < s->src_num);
1460 }
1461}
1462
1463static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1464{
1465 int64_t ret;
1466 int n;
1467
1468 convert_select_part(s, sector_num);
1469
1470 assert(s->total_sectors > sector_num);
1471 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1472
1473 if (s->sector_next_status <= sector_num) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08001474 BlockDriverState *file;
Kevin Wolf690c7302015-03-19 13:33:32 +01001475 ret = bdrv_get_block_status(blk_bs(s->src[s->src_cur]),
1476 sector_num - s->src_cur_offset,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001477 n, &n, &file);
Kevin Wolf690c7302015-03-19 13:33:32 +01001478 if (ret < 0) {
1479 return ret;
1480 }
1481
1482 if (ret & BDRV_BLOCK_ZERO) {
1483 s->status = BLK_ZERO;
1484 } else if (ret & BDRV_BLOCK_DATA) {
1485 s->status = BLK_DATA;
1486 } else if (!s->target_has_backing) {
1487 /* Without a target backing file we must copy over the contents of
1488 * the backing file as well. */
Ren Kimura263a6f42016-04-28 01:04:58 +09001489 /* Check block status of the backing file chain to avoid
Kevin Wolf690c7302015-03-19 13:33:32 +01001490 * needlessly reading zeroes and limiting the iteration to the
1491 * buffer size */
Ren Kimura263a6f42016-04-28 01:04:58 +09001492 ret = bdrv_get_block_status_above(blk_bs(s->src[s->src_cur]), NULL,
1493 sector_num - s->src_cur_offset,
1494 n, &n, &file);
1495 if (ret < 0) {
1496 return ret;
1497 }
1498
1499 if (ret & BDRV_BLOCK_ZERO) {
1500 s->status = BLK_ZERO;
1501 } else {
1502 s->status = BLK_DATA;
1503 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001504 } else {
1505 s->status = BLK_BACKING_FILE;
1506 }
1507
1508 s->sector_next_status = sector_num + n;
1509 }
1510
1511 n = MIN(n, s->sector_next_status - sector_num);
1512 if (s->status == BLK_DATA) {
1513 n = MIN(n, s->buf_sectors);
1514 }
1515
1516 /* We need to write complete clusters for compressed images, so if an
1517 * unallocated area is shorter than that, we must consider the whole
1518 * cluster allocated. */
1519 if (s->compressed) {
1520 if (n < s->cluster_sectors) {
1521 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1522 s->status = BLK_DATA;
1523 } else {
1524 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1525 }
1526 }
1527
1528 return n;
1529}
1530
1531static int convert_read(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1532 uint8_t *buf)
1533{
1534 int n;
1535 int ret;
1536
Kevin Wolf690c7302015-03-19 13:33:32 +01001537 assert(nb_sectors <= s->buf_sectors);
1538 while (nb_sectors > 0) {
1539 BlockBackend *blk;
1540 int64_t bs_sectors;
1541
1542 /* In the case of compression with multiple source files, we can get a
1543 * nb_sectors that spreads into the next part. So we must be able to
1544 * read across multiple BDSes for one convert_read() call. */
1545 convert_select_part(s, sector_num);
1546 blk = s->src[s->src_cur];
1547 bs_sectors = s->src_sectors[s->src_cur];
1548
1549 n = MIN(nb_sectors, bs_sectors - (sector_num - s->src_cur_offset));
Eric Blake91669202016-05-06 10:26:43 -06001550 ret = blk_pread(blk,
1551 (sector_num - s->src_cur_offset) << BDRV_SECTOR_BITS,
1552 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001553 if (ret < 0) {
1554 return ret;
1555 }
1556
1557 sector_num += n;
1558 nb_sectors -= n;
1559 buf += n * BDRV_SECTOR_SIZE;
1560 }
1561
1562 return 0;
1563}
1564
1565static int convert_write(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1566 const uint8_t *buf)
1567{
1568 int ret;
1569
1570 while (nb_sectors > 0) {
1571 int n = nb_sectors;
1572
1573 switch (s->status) {
1574 case BLK_BACKING_FILE:
1575 /* If we have a backing file, leave clusters unallocated that are
1576 * unallocated in the source image, so that the backing file is
1577 * visible at the respective offset. */
1578 assert(s->target_has_backing);
1579 break;
1580
1581 case BLK_DATA:
1582 /* We must always write compressed clusters as a whole, so don't
1583 * try to find zeroed parts in the buffer. We can only save the
1584 * write if the buffer is completely zeroed and we're allowed to
1585 * keep the target sparse. */
1586 if (s->compressed) {
1587 if (s->has_zero_init && s->min_sparse &&
1588 buffer_is_zero(buf, n * BDRV_SECTOR_SIZE))
1589 {
1590 assert(!s->target_has_backing);
1591 break;
1592 }
1593
1594 ret = blk_write_compressed(s->target, sector_num, buf, n);
1595 if (ret < 0) {
1596 return ret;
1597 }
1598 break;
1599 }
1600
1601 /* If there is real non-zero data or we're told to keep the target
1602 * fully allocated (-S 0), we must write it. Otherwise we can treat
1603 * it as zero sectors. */
1604 if (!s->min_sparse ||
1605 is_allocated_sectors_min(buf, n, &n, s->min_sparse))
1606 {
Eric Blake91669202016-05-06 10:26:43 -06001607 ret = blk_pwrite(s->target, sector_num << BDRV_SECTOR_BITS,
1608 buf, n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001609 if (ret < 0) {
1610 return ret;
1611 }
1612 break;
1613 }
1614 /* fall-through */
1615
1616 case BLK_ZERO:
1617 if (s->has_zero_init) {
1618 break;
1619 }
Eric Blaked004bd52016-05-24 16:25:20 -06001620 ret = blk_pwrite_zeroes(s->target, sector_num << BDRV_SECTOR_BITS,
1621 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001622 if (ret < 0) {
1623 return ret;
1624 }
1625 break;
1626 }
1627
1628 sector_num += n;
1629 nb_sectors -= n;
1630 buf += n * BDRV_SECTOR_SIZE;
1631 }
1632
1633 return 0;
1634}
1635
1636static int convert_do_copy(ImgConvertState *s)
1637{
1638 uint8_t *buf = NULL;
1639 int64_t sector_num, allocated_done;
1640 int ret;
1641 int n;
1642
1643 /* Check whether we have zero initialisation or can get it efficiently */
1644 s->has_zero_init = s->min_sparse && !s->target_has_backing
1645 ? bdrv_has_zero_init(blk_bs(s->target))
1646 : false;
1647
1648 if (!s->has_zero_init && !s->target_has_backing &&
1649 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1650 {
1651 ret = bdrv_make_zero(blk_bs(s->target), BDRV_REQ_MAY_UNMAP);
1652 if (ret == 0) {
1653 s->has_zero_init = true;
1654 }
1655 }
1656
1657 /* Allocate buffer for copied data. For compressed images, only one cluster
1658 * can be copied at a time. */
1659 if (s->compressed) {
1660 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1661 error_report("invalid cluster size");
1662 ret = -EINVAL;
1663 goto fail;
1664 }
1665 s->buf_sectors = s->cluster_sectors;
1666 }
1667 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1668
1669 /* Calculate allocated sectors for progress */
1670 s->allocated_sectors = 0;
1671 sector_num = 0;
1672 while (sector_num < s->total_sectors) {
1673 n = convert_iteration_sectors(s, sector_num);
1674 if (n < 0) {
1675 ret = n;
1676 goto fail;
1677 }
Max Reitzaad15de2016-03-24 23:33:57 +01001678 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1679 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001680 s->allocated_sectors += n;
1681 }
1682 sector_num += n;
1683 }
1684
1685 /* Do the copy */
1686 s->src_cur = 0;
1687 s->src_cur_offset = 0;
1688 s->sector_next_status = 0;
1689
1690 sector_num = 0;
1691 allocated_done = 0;
1692
1693 while (sector_num < s->total_sectors) {
1694 n = convert_iteration_sectors(s, sector_num);
1695 if (n < 0) {
1696 ret = n;
1697 goto fail;
1698 }
Max Reitzaad15de2016-03-24 23:33:57 +01001699 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1700 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001701 allocated_done += n;
1702 qemu_progress_print(100.0 * allocated_done / s->allocated_sectors,
1703 0);
1704 }
1705
Max Reitzaad15de2016-03-24 23:33:57 +01001706 if (s->status == BLK_DATA) {
1707 ret = convert_read(s, sector_num, n, buf);
1708 if (ret < 0) {
1709 error_report("error while reading sector %" PRId64
1710 ": %s", sector_num, strerror(-ret));
1711 goto fail;
1712 }
1713 } else if (!s->min_sparse && s->status == BLK_ZERO) {
1714 n = MIN(n, s->buf_sectors);
1715 memset(buf, 0, n * BDRV_SECTOR_SIZE);
1716 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001717 }
1718
1719 ret = convert_write(s, sector_num, n, buf);
1720 if (ret < 0) {
1721 error_report("error while writing sector %" PRId64
1722 ": %s", sector_num, strerror(-ret));
1723 goto fail;
1724 }
1725
1726 sector_num += n;
1727 }
1728
1729 if (s->compressed) {
1730 /* signal EOF to align */
1731 ret = blk_write_compressed(s->target, 0, NULL, 0);
1732 if (ret < 0) {
1733 goto fail;
1734 }
1735 }
1736
1737 ret = 0;
1738fail:
1739 qemu_vfree(buf);
1740 return ret;
1741}
1742
bellardea2384d2004-08-01 21:59:26 +00001743static int img_convert(int argc, char **argv)
1744{
Kevin Wolf690c7302015-03-19 13:33:32 +01001745 int c, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001746 int64_t ret = 0;
Max Reitz40055952014-07-22 22:58:42 +02001747 int progress = 0, flags, src_flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001748 bool writethrough, src_writethrough;
Max Reitz40055952014-07-22 22:58:42 +02001749 const char *fmt, *out_fmt, *cache, *src_cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001750 BlockDriver *drv, *proto_drv;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001751 BlockBackend **blk = NULL, *out_blk = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001752 BlockDriverState **bs = NULL, *out_bs = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001753 int64_t total_sectors;
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001754 int64_t *bs_sectors = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001755 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardfaea38e2006-08-05 21:31:00 +00001756 BlockDriverInfo bdi;
Chunyan Liu83d05212014-06-05 17:20:51 +08001757 QemuOpts *opts = NULL;
1758 QemuOptsList *create_opts = NULL;
1759 const char *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001760 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001761 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001762 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001763 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001764 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001765 QemuOpts *sn_opts = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001766 ImgConvertState state;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001767 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +00001768
1769 fmt = NULL;
1770 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001771 cache = "unsafe";
Max Reitz40055952014-07-22 22:58:42 +02001772 src_cache = BDRV_DEFAULT_CACHE;
thsf58c7b32008-06-05 21:53:49 +00001773 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001774 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001775 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001776 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001777 static const struct option long_options[] = {
1778 {"help", no_argument, 0, 'h'},
1779 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001780 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001781 {0, 0, 0, 0}
1782 };
1783 c = getopt_long(argc, argv, "hf:O:B:ce6o:s:l:S:pt:T:qn",
1784 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001785 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001786 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001787 }
bellardea2384d2004-08-01 21:59:26 +00001788 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001789 case '?':
bellardea2384d2004-08-01 21:59:26 +00001790 case 'h':
1791 help();
1792 break;
1793 case 'f':
1794 fmt = optarg;
1795 break;
1796 case 'O':
1797 out_fmt = optarg;
1798 break;
thsf58c7b32008-06-05 21:53:49 +00001799 case 'B':
1800 out_baseimg = optarg;
1801 break;
bellardea2384d2004-08-01 21:59:26 +00001802 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001803 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001804 break;
1805 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001806 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001807 "encryption\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001808 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001809 goto fail_getopt;
thsec36ba12007-09-16 21:59:02 +00001810 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001811 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001812 "compat6\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001813 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001814 goto fail_getopt;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001815 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001816 if (!is_valid_option_list(optarg)) {
1817 error_report("Invalid option list: %s", optarg);
1818 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001819 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01001820 }
1821 if (!options) {
1822 options = g_strdup(optarg);
1823 } else {
1824 char *old_options = options;
1825 options = g_strdup_printf("%s,%s", options, optarg);
1826 g_free(old_options);
1827 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001828 break;
edison51ef6722010-09-21 19:58:41 -07001829 case 's':
1830 snapshot_name = optarg;
1831 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001832 case 'l':
1833 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01001834 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
1835 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08001836 if (!sn_opts) {
1837 error_report("Failed in parsing snapshot param '%s'",
1838 optarg);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001839 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001840 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08001841 }
1842 } else {
1843 snapshot_name = optarg;
1844 }
1845 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001846 case 'S':
1847 {
1848 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001849 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +02001850 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +01001851 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001852 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001853 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001854 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001855 }
1856
1857 min_sparse = sval / BDRV_SECTOR_SIZE;
1858 break;
1859 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001860 case 'p':
1861 progress = 1;
1862 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001863 case 't':
1864 cache = optarg;
1865 break;
Max Reitz40055952014-07-22 22:58:42 +02001866 case 'T':
1867 src_cache = optarg;
1868 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001869 case 'q':
1870 quiet = true;
1871 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001872 case 'n':
1873 skip_create = 1;
1874 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001875 case OPTION_OBJECT:
1876 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1877 optarg, true);
1878 if (!opts) {
1879 goto fail_getopt;
1880 }
1881 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001882 case OPTION_IMAGE_OPTS:
1883 image_opts = true;
1884 break;
bellardea2384d2004-08-01 21:59:26 +00001885 }
1886 }
ths3b46e622007-09-17 08:09:54 +00001887
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001888 if (qemu_opts_foreach(&qemu_object_opts,
1889 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001890 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001891 goto fail_getopt;
1892 }
1893
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001894 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001895 if (quiet) {
1896 progress = 0;
1897 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001898 qemu_progress_init(progress, 1.0);
1899
balrog926c2d22007-10-31 01:11:44 +00001900 bs_n = argc - optind - 1;
Kevin Wolfa283cb62014-02-21 16:24:07 +01001901 out_filename = bs_n >= 1 ? argv[argc - 1] : NULL;
thsf58c7b32008-06-05 21:53:49 +00001902
Kevin Wolf2dc83282014-02-21 16:24:05 +01001903 if (options && has_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001904 ret = print_block_option_help(out_filename, out_fmt);
1905 goto out;
1906 }
1907
bellardea2384d2004-08-01 21:59:26 +00001908 if (bs_n < 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001909 error_exit("Must specify image file name");
ths5fafdf22007-09-16 21:08:06 +00001910 }
bellardea2384d2004-08-01 21:59:26 +00001911
thsf58c7b32008-06-05 21:53:49 +00001912
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001913 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001914 error_report("-B makes no sense when concatenating multiple input "
1915 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001916 ret = -1;
1917 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001918 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001919
Kevin Wolfce099542016-03-15 13:01:04 +01001920 src_flags = 0;
1921 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001922 if (ret < 0) {
1923 error_report("Invalid source cache option: %s", src_cache);
1924 goto out;
1925 }
1926
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001927 qemu_progress_print(0, 100);
1928
Markus Armbruster26f54e92014-10-07 13:59:04 +02001929 blk = g_new0(BlockBackend *, bs_n);
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001930 bs = g_new0(BlockDriverState *, bs_n);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001931 bs_sectors = g_new(int64_t, bs_n);
balrog926c2d22007-10-31 01:11:44 +00001932
1933 total_sectors = 0;
1934 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Max Reitzefaa7c42016-03-16 19:54:38 +01001935 blk[bs_i] = img_open(image_opts, argv[optind + bs_i],
Kevin Wolfce099542016-03-15 13:01:04 +01001936 fmt, src_flags, src_writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001937 if (!blk[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001938 ret = -1;
1939 goto out;
1940 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001941 bs[bs_i] = blk_bs(blk[bs_i]);
Max Reitzf1d3cd72015-02-05 13:58:18 -05001942 bs_sectors[bs_i] = blk_nb_sectors(blk[bs_i]);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001943 if (bs_sectors[bs_i] < 0) {
1944 error_report("Could not get size of %s: %s",
1945 argv[optind + bs_i], strerror(-bs_sectors[bs_i]));
1946 ret = -1;
1947 goto out;
1948 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001949 total_sectors += bs_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00001950 }
bellardea2384d2004-08-01 21:59:26 +00001951
Wenchao Xiaef806542013-12-04 17:10:57 +08001952 if (sn_opts) {
1953 ret = bdrv_snapshot_load_tmp(bs[0],
1954 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1955 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1956 &local_err);
1957 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001958 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001959 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001960 ret = -1;
1961 goto out;
1962 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001963
1964 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001965 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001966 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001967 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08001968 ret = -1;
1969 goto out;
edison51ef6722010-09-21 19:58:41 -07001970 }
1971
Kevin Wolfefa84d42009-05-18 16:42:12 +02001972 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001973 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001974 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001975 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001976 ret = -1;
1977 goto out;
1978 }
balrog926c2d22007-10-31 01:11:44 +00001979
Max Reitzb65a5e12015-02-05 13:58:12 -05001980 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001981 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +01001982 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001983 ret = -1;
1984 goto out;
1985 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001986
Max Reitz2e024cd2015-02-11 09:58:46 -05001987 if (!skip_create) {
1988 if (!drv->create_opts) {
1989 error_report("Format driver '%s' does not support image creation",
1990 drv->format_name);
1991 ret = -1;
1992 goto out;
1993 }
Max Reitzf75613c2014-12-02 18:32:46 +01001994
Max Reitz2e024cd2015-02-11 09:58:46 -05001995 if (!proto_drv->create_opts) {
1996 error_report("Protocol driver '%s' does not support image creation",
1997 proto_drv->format_name);
1998 ret = -1;
1999 goto out;
2000 }
Max Reitzf75613c2014-12-02 18:32:46 +01002001
Max Reitz2e024cd2015-02-11 09:58:46 -05002002 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2003 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002004
Max Reitz2e024cd2015-02-11 09:58:46 -05002005 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002006 if (options) {
2007 qemu_opts_do_parse(opts, options, NULL, &local_err);
2008 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002009 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002010 ret = -1;
2011 goto out;
2012 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002013 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002014
Markus Armbruster39101f22015-02-12 16:46:36 +01002015 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_sectors * 512,
2016 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002017 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2018 if (ret < 0) {
2019 goto out;
2020 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002021 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002022
Kevin Wolfa18953f2010-10-14 15:46:04 +02002023 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002024 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002025 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002026 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002027 }
2028
Kevin Wolfefa84d42009-05-18 16:42:12 +02002029 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01002030 if (compress) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002031 bool encryption =
2032 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2033 const char *preallocation =
2034 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002035
2036 if (!drv->bdrv_write_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002037 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002038 ret = -1;
2039 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002040 }
2041
Chunyan Liu83d05212014-06-05 17:20:51 +08002042 if (encryption) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002043 error_report("Compression and encryption not supported at "
2044 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002045 ret = -1;
2046 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002047 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002048
Chunyan Liu83d05212014-06-05 17:20:51 +08002049 if (preallocation
2050 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002051 {
2052 error_report("Compression and preallocation not supported at "
2053 "the same time");
2054 ret = -1;
2055 goto out;
2056 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002057 }
2058
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002059 if (!skip_create) {
2060 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002061 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002062 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002063 error_reportf_err(local_err, "%s: error while converting %s: ",
2064 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002065 goto out;
bellardea2384d2004-08-01 21:59:26 +00002066 }
2067 }
ths3b46e622007-09-17 08:09:54 +00002068
Peter Lieven5a37b602013-10-24 12:07:06 +02002069 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002070 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002071 if (ret < 0) {
2072 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002073 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002074 }
2075
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002076 /* XXX we should allow --image-opts to trigger use of
2077 * img_open() here, but then we have trouble with
2078 * the bdrv_create() call which takes different params.
2079 * Not critical right now, so fix can wait...
2080 */
Kevin Wolfce099542016-03-15 13:01:04 +01002081 out_blk = img_open_file(out_filename, out_fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002082 if (!out_blk) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002083 ret = -1;
2084 goto out;
2085 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002086 out_bs = blk_bs(out_blk);
bellardea2384d2004-08-01 21:59:26 +00002087
Peter Lievenf2521c92013-11-27 11:07:06 +01002088 /* increase bufsectors from the default 4096 (2M) if opt_transfer_length
2089 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2090 * as maximum. */
2091 bufsectors = MIN(32768,
2092 MAX(bufsectors, MAX(out_bs->bl.opt_transfer_length,
2093 out_bs->bl.discard_alignment))
2094 );
2095
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002096 if (skip_create) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05002097 int64_t output_sectors = blk_nb_sectors(out_blk);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002098 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002099 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002100 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002101 ret = -1;
2102 goto out;
Markus Armbruster43716fa2014-06-26 13:23:21 +02002103 } else if (output_sectors < total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002104 error_report("output file is smaller than input file");
2105 ret = -1;
2106 goto out;
2107 }
2108 }
2109
Peter Lieven24f833c2013-11-27 11:07:07 +01002110 cluster_sectors = 0;
2111 ret = bdrv_get_info(out_bs, &bdi);
2112 if (ret < 0) {
2113 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002114 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002115 goto out;
2116 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002117 } else {
Fam Zheng85f49ca2014-05-06 21:08:43 +08002118 compress = compress || bdi.needs_compressed_writes;
Peter Lieven24f833c2013-11-27 11:07:07 +01002119 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2120 }
2121
Kevin Wolf690c7302015-03-19 13:33:32 +01002122 state = (ImgConvertState) {
2123 .src = blk,
2124 .src_sectors = bs_sectors,
2125 .src_num = bs_n,
2126 .total_sectors = total_sectors,
2127 .target = out_blk,
2128 .compressed = compress,
2129 .target_has_backing = (bool) out_baseimg,
2130 .min_sparse = min_sparse,
2131 .cluster_sectors = cluster_sectors,
2132 .buf_sectors = bufsectors,
2133 };
2134 ret = convert_do_copy(&state);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002135
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002136out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002137 if (!ret) {
2138 qemu_progress_print(100, 0);
2139 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002140 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002141 qemu_opts_del(opts);
2142 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002143 qemu_opts_del(sn_opts);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002144 blk_unref(out_blk);
Markus Armbruster9ba10c92014-10-07 13:59:08 +02002145 g_free(bs);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002146 if (blk) {
2147 for (bs_i = 0; bs_i < bs_n; bs_i++) {
2148 blk_unref(blk[bs_i]);
2149 }
2150 g_free(blk);
2151 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02002152 g_free(bs_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002153fail_getopt:
2154 g_free(options);
2155
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002156 if (ret) {
2157 return 1;
2158 }
bellardea2384d2004-08-01 21:59:26 +00002159 return 0;
2160}
2161
bellard57d1a2b2004-08-03 21:15:11 +00002162
bellardfaea38e2006-08-05 21:31:00 +00002163static void dump_snapshots(BlockDriverState *bs)
2164{
2165 QEMUSnapshotInfo *sn_tab, *sn;
2166 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002167
2168 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2169 if (nb_sns <= 0)
2170 return;
2171 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002172 bdrv_snapshot_dump(fprintf, stdout, NULL);
2173 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002174 for(i = 0; i < nb_sns; i++) {
2175 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002176 bdrv_snapshot_dump(fprintf, stdout, sn);
2177 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002178 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002179 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002180}
2181
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002182static void dump_json_image_info_list(ImageInfoList *list)
2183{
Markus Armbruster4399c432014-04-25 16:50:32 +02002184 Error *local_err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002185 QString *str;
2186 QmpOutputVisitor *ov = qmp_output_visitor_new();
2187 QObject *obj;
Eric Blake51e72bc2016-01-29 06:48:54 -07002188 visit_type_ImageInfoList(qmp_output_get_visitor(ov), NULL, &list,
2189 &local_err);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002190 obj = qmp_output_get_qobject(ov);
2191 str = qobject_to_json_pretty(obj);
2192 assert(str != NULL);
2193 printf("%s\n", qstring_get_str(str));
2194 qobject_decref(obj);
2195 qmp_output_visitor_cleanup(ov);
2196 QDECREF(str);
2197}
2198
Benoît Canetc054b3f2012-09-05 13:09:02 +02002199static void dump_json_image_info(ImageInfo *info)
2200{
Markus Armbruster4399c432014-04-25 16:50:32 +02002201 Error *local_err = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002202 QString *str;
2203 QmpOutputVisitor *ov = qmp_output_visitor_new();
2204 QObject *obj;
Eric Blake51e72bc2016-01-29 06:48:54 -07002205 visit_type_ImageInfo(qmp_output_get_visitor(ov), NULL, &info, &local_err);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002206 obj = qmp_output_get_qobject(ov);
2207 str = qobject_to_json_pretty(obj);
2208 assert(str != NULL);
2209 printf("%s\n", qstring_get_str(str));
2210 qobject_decref(obj);
2211 qmp_output_visitor_cleanup(ov);
2212 QDECREF(str);
2213}
2214
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002215static void dump_human_image_info_list(ImageInfoList *list)
2216{
2217 ImageInfoList *elem;
2218 bool delim = false;
2219
2220 for (elem = list; elem; elem = elem->next) {
2221 if (delim) {
2222 printf("\n");
2223 }
2224 delim = true;
2225
Wenchao Xia5b917042013-05-25 11:09:45 +08002226 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002227 }
2228}
2229
2230static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2231{
2232 return strcmp(a, b) == 0;
2233}
2234
2235/**
2236 * Open an image file chain and return an ImageInfoList
2237 *
2238 * @filename: topmost image filename
2239 * @fmt: topmost image format (may be NULL to autodetect)
2240 * @chain: true - enumerate entire backing file chain
2241 * false - only topmost image file
2242 *
2243 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2244 * image file. If there was an error a message will have been printed to
2245 * stderr.
2246 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002247static ImageInfoList *collect_image_info_list(bool image_opts,
2248 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002249 const char *fmt,
2250 bool chain)
2251{
2252 ImageInfoList *head = NULL;
2253 ImageInfoList **last = &head;
2254 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002255 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002256
2257 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2258
2259 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002260 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002261 BlockDriverState *bs;
2262 ImageInfo *info;
2263 ImageInfoList *elem;
2264
2265 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2266 error_report("Backing file '%s' creates an infinite loop.",
2267 filename);
2268 goto err;
2269 }
2270 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2271
Max Reitzefaa7c42016-03-16 19:54:38 +01002272 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01002273 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002274 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002275 goto err;
2276 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002277 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002278
Wenchao Xia43526ec2013-06-06 12:27:58 +08002279 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002280 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002281 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002282 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002283 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002284 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002285
2286 elem = g_new0(ImageInfoList, 1);
2287 elem->value = info;
2288 *last = elem;
2289 last = &elem->next;
2290
Markus Armbruster26f54e92014-10-07 13:59:04 +02002291 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002292
2293 filename = fmt = NULL;
2294 if (chain) {
2295 if (info->has_full_backing_filename) {
2296 filename = info->full_backing_filename;
2297 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002298 error_report("Could not determine absolute backing filename,"
2299 " but backing filename '%s' present",
2300 info->backing_filename);
2301 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002302 }
2303 if (info->has_backing_filename_format) {
2304 fmt = info->backing_filename_format;
2305 }
2306 }
2307 }
2308 g_hash_table_destroy(filenames);
2309 return head;
2310
2311err:
2312 qapi_free_ImageInfoList(head);
2313 g_hash_table_destroy(filenames);
2314 return NULL;
2315}
2316
Benoît Canetc054b3f2012-09-05 13:09:02 +02002317static int img_info(int argc, char **argv)
2318{
2319 int c;
2320 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002321 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002322 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002323 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002324 bool image_opts = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002325
bellardea2384d2004-08-01 21:59:26 +00002326 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002327 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002328 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02002329 int option_index = 0;
2330 static const struct option long_options[] = {
2331 {"help", no_argument, 0, 'h'},
2332 {"format", required_argument, 0, 'f'},
2333 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002334 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002335 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002336 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Benoît Canetc054b3f2012-09-05 13:09:02 +02002337 {0, 0, 0, 0}
2338 };
2339 c = getopt_long(argc, argv, "f:h",
2340 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002341 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002342 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002343 }
bellardea2384d2004-08-01 21:59:26 +00002344 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002345 case '?':
bellardea2384d2004-08-01 21:59:26 +00002346 case 'h':
2347 help();
2348 break;
2349 case 'f':
2350 fmt = optarg;
2351 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002352 case OPTION_OUTPUT:
2353 output = optarg;
2354 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002355 case OPTION_BACKING_CHAIN:
2356 chain = true;
2357 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002358 case OPTION_OBJECT: {
2359 QemuOpts *opts;
2360 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2361 optarg, true);
2362 if (!opts) {
2363 return 1;
2364 }
2365 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002366 case OPTION_IMAGE_OPTS:
2367 image_opts = true;
2368 break;
bellardea2384d2004-08-01 21:59:26 +00002369 }
2370 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002371 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002372 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002373 }
bellardea2384d2004-08-01 21:59:26 +00002374 filename = argv[optind++];
2375
Benoît Canetc054b3f2012-09-05 13:09:02 +02002376 if (output && !strcmp(output, "json")) {
2377 output_format = OFORMAT_JSON;
2378 } else if (output && !strcmp(output, "human")) {
2379 output_format = OFORMAT_HUMAN;
2380 } else if (output) {
2381 error_report("--output must be used with human or json as argument.");
2382 return 1;
2383 }
2384
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002385 if (qemu_opts_foreach(&qemu_object_opts,
2386 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002387 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002388 return 1;
2389 }
2390
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002391 list = collect_image_info_list(image_opts, filename, fmt, chain);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002392 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002393 return 1;
2394 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002395
Benoît Canetc054b3f2012-09-05 13:09:02 +02002396 switch (output_format) {
2397 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002398 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002399 break;
2400 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002401 if (chain) {
2402 dump_json_image_info_list(list);
2403 } else {
2404 dump_json_image_info(list->value);
2405 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002406 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002407 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002408
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002409 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002410 return 0;
2411}
2412
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002413static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2414 MapEntry *next)
2415{
2416 switch (output_format) {
2417 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002418 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002419 error_report("File contains external, encrypted or compressed clusters.");
2420 exit(1);
2421 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002422 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002423 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002424 e->start, e->length,
2425 e->has_offset ? e->offset : 0,
2426 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002427 }
2428 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2429 * Modify the flags here to allow more coalescing.
2430 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002431 if (next && (!next->data || next->zero)) {
2432 next->data = false;
2433 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002434 }
2435 break;
2436 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002437 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2438 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002439 (e->start == 0 ? "[" : ",\n"),
2440 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002441 e->zero ? "true" : "false",
2442 e->data ? "true" : "false");
2443 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002444 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002445 }
2446 putchar('}');
2447
2448 if (!next) {
2449 printf("]\n");
2450 }
2451 break;
2452 }
2453}
2454
2455static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2456 int nb_sectors, MapEntry *e)
2457{
2458 int64_t ret;
2459 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002460 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002461 bool has_offset;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002462
2463 /* As an optimization, we could cache the current range of unallocated
2464 * clusters in each file of the chain, and avoid querying the same
2465 * range repeatedly.
2466 */
2467
2468 depth = 0;
2469 for (;;) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08002470 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2471 &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002472 if (ret < 0) {
2473 return ret;
2474 }
2475 assert(nb_sectors);
2476 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2477 break;
2478 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002479 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002480 if (bs == NULL) {
2481 ret = 0;
2482 break;
2483 }
2484
2485 depth++;
2486 }
2487
John Snow28756452016-02-05 13:12:33 -05002488 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2489
2490 *e = (MapEntry) {
2491 .start = sector_num * BDRV_SECTOR_SIZE,
2492 .length = nb_sectors * BDRV_SECTOR_SIZE,
2493 .data = !!(ret & BDRV_BLOCK_DATA),
2494 .zero = !!(ret & BDRV_BLOCK_ZERO),
2495 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2496 .has_offset = has_offset,
2497 .depth = depth,
2498 .has_filename = file && has_offset,
2499 .filename = file && has_offset ? file->filename : NULL,
2500 };
2501
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002502 return 0;
2503}
2504
Fam Zheng16b0d552016-01-26 11:59:02 +08002505static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2506{
2507 if (curr->length == 0) {
2508 return false;
2509 }
2510 if (curr->zero != next->zero ||
2511 curr->data != next->data ||
2512 curr->depth != next->depth ||
2513 curr->has_filename != next->has_filename ||
2514 curr->has_offset != next->has_offset) {
2515 return false;
2516 }
2517 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2518 return false;
2519 }
2520 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2521 return false;
2522 }
2523 return true;
2524}
2525
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002526static int img_map(int argc, char **argv)
2527{
2528 int c;
2529 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002530 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002531 BlockDriverState *bs;
2532 const char *filename, *fmt, *output;
2533 int64_t length;
2534 MapEntry curr = { .length = 0 }, next;
2535 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002536 bool image_opts = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002537
2538 fmt = NULL;
2539 output = NULL;
2540 for (;;) {
2541 int option_index = 0;
2542 static const struct option long_options[] = {
2543 {"help", no_argument, 0, 'h'},
2544 {"format", required_argument, 0, 'f'},
2545 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002546 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002547 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002548 {0, 0, 0, 0}
2549 };
2550 c = getopt_long(argc, argv, "f:h",
2551 long_options, &option_index);
2552 if (c == -1) {
2553 break;
2554 }
2555 switch (c) {
2556 case '?':
2557 case 'h':
2558 help();
2559 break;
2560 case 'f':
2561 fmt = optarg;
2562 break;
2563 case OPTION_OUTPUT:
2564 output = optarg;
2565 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002566 case OPTION_OBJECT: {
2567 QemuOpts *opts;
2568 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2569 optarg, true);
2570 if (!opts) {
2571 return 1;
2572 }
2573 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002574 case OPTION_IMAGE_OPTS:
2575 image_opts = true;
2576 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002577 }
2578 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002579 if (optind != argc - 1) {
2580 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002581 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002582 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002583
2584 if (output && !strcmp(output, "json")) {
2585 output_format = OFORMAT_JSON;
2586 } else if (output && !strcmp(output, "human")) {
2587 output_format = OFORMAT_HUMAN;
2588 } else if (output) {
2589 error_report("--output must be used with human or json as argument.");
2590 return 1;
2591 }
2592
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002593 if (qemu_opts_foreach(&qemu_object_opts,
2594 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002595 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002596 return 1;
2597 }
2598
Kevin Wolfce099542016-03-15 13:01:04 +01002599 blk = img_open(image_opts, filename, fmt, 0, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002600 if (!blk) {
2601 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002602 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002603 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002604
2605 if (output_format == OFORMAT_HUMAN) {
2606 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2607 }
2608
Max Reitzf1d3cd72015-02-05 13:58:18 -05002609 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002610 while (curr.start + curr.length < length) {
2611 int64_t nsectors_left;
2612 int64_t sector_num;
2613 int n;
2614
2615 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2616
2617 /* Probe up to 1 GiB at a time. */
2618 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2619 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2620 ret = get_block_status(bs, sector_num, n, &next);
2621
2622 if (ret < 0) {
2623 error_report("Could not read file metadata: %s", strerror(-ret));
2624 goto out;
2625 }
2626
Fam Zheng16b0d552016-01-26 11:59:02 +08002627 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002628 curr.length += next.length;
2629 continue;
2630 }
2631
2632 if (curr.length > 0) {
2633 dump_map_entry(output_format, &curr, &next);
2634 }
2635 curr = next;
2636 }
2637
2638 dump_map_entry(output_format, &curr, NULL);
2639
2640out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002641 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002642 return ret < 0;
2643}
2644
aliguorif7b4a942009-01-07 17:40:15 +00002645#define SNAPSHOT_LIST 1
2646#define SNAPSHOT_CREATE 2
2647#define SNAPSHOT_APPLY 3
2648#define SNAPSHOT_DELETE 4
2649
Stuart Brady153859b2009-06-07 00:42:17 +01002650static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002651{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002652 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002653 BlockDriverState *bs;
2654 QEMUSnapshotInfo sn;
2655 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002656 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002657 int action = 0;
2658 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002659 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002660 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002661 bool image_opts = false;
aliguorif7b4a942009-01-07 17:40:15 +00002662
Kevin Wolfce099542016-03-15 13:01:04 +01002663 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002664 /* Parse commandline parameters */
2665 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002666 static const struct option long_options[] = {
2667 {"help", no_argument, 0, 'h'},
2668 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002669 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002670 {0, 0, 0, 0}
2671 };
2672 c = getopt_long(argc, argv, "la:c:d:hq",
2673 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002674 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002675 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002676 }
aliguorif7b4a942009-01-07 17:40:15 +00002677 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002678 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002679 case 'h':
2680 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002681 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002682 case 'l':
2683 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002684 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002685 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002686 }
2687 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002688 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002689 break;
2690 case 'a':
2691 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002692 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002693 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002694 }
2695 action = SNAPSHOT_APPLY;
2696 snapshot_name = optarg;
2697 break;
2698 case 'c':
2699 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002700 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002701 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002702 }
2703 action = SNAPSHOT_CREATE;
2704 snapshot_name = optarg;
2705 break;
2706 case 'd':
2707 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002708 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002709 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002710 }
2711 action = SNAPSHOT_DELETE;
2712 snapshot_name = optarg;
2713 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002714 case 'q':
2715 quiet = true;
2716 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002717 case OPTION_OBJECT: {
2718 QemuOpts *opts;
2719 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2720 optarg, true);
2721 if (!opts) {
2722 return 1;
2723 }
2724 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002725 case OPTION_IMAGE_OPTS:
2726 image_opts = true;
2727 break;
aliguorif7b4a942009-01-07 17:40:15 +00002728 }
2729 }
2730
Kevin Wolffc11eb22013-08-05 10:53:04 +02002731 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002732 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002733 }
aliguorif7b4a942009-01-07 17:40:15 +00002734 filename = argv[optind++];
2735
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002736 if (qemu_opts_foreach(&qemu_object_opts,
2737 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002738 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002739 return 1;
2740 }
2741
aliguorif7b4a942009-01-07 17:40:15 +00002742 /* Open the image */
Kevin Wolfce099542016-03-15 13:01:04 +01002743 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002744 if (!blk) {
2745 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002746 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002747 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002748
2749 /* Perform the requested action */
2750 switch(action) {
2751 case SNAPSHOT_LIST:
2752 dump_snapshots(bs);
2753 break;
2754
2755 case SNAPSHOT_CREATE:
2756 memset(&sn, 0, sizeof(sn));
2757 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2758
2759 qemu_gettimeofday(&tv);
2760 sn.date_sec = tv.tv_sec;
2761 sn.date_nsec = tv.tv_usec * 1000;
2762
2763 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002764 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002765 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002766 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002767 }
aliguorif7b4a942009-01-07 17:40:15 +00002768 break;
2769
2770 case SNAPSHOT_APPLY:
2771 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002772 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002773 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002774 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002775 }
aliguorif7b4a942009-01-07 17:40:15 +00002776 break;
2777
2778 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002779 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002780 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002781 error_reportf_err(err, "Could not delete snapshot '%s': ",
2782 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002783 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002784 }
aliguorif7b4a942009-01-07 17:40:15 +00002785 break;
2786 }
2787
2788 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02002789 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002790 if (ret) {
2791 return 1;
2792 }
Stuart Brady153859b2009-06-07 00:42:17 +01002793 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002794}
2795
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002796static int img_rebase(int argc, char **argv)
2797{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002798 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01002799 uint8_t *buf_old = NULL;
2800 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05002801 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002802 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02002803 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
2804 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01002805 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002806 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002807 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002808 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002809 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002810 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002811
2812 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002813 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002814 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02002815 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002816 out_baseimg = NULL;
2817 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002818 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002819 static const struct option long_options[] = {
2820 {"help", no_argument, 0, 'h'},
2821 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002822 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002823 {0, 0, 0, 0}
2824 };
2825 c = getopt_long(argc, argv, "hf:F:b:upt:T:q",
2826 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002827 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002828 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002829 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002830 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002831 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002832 case 'h':
2833 help();
2834 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002835 case 'f':
2836 fmt = optarg;
2837 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002838 case 'F':
2839 out_basefmt = optarg;
2840 break;
2841 case 'b':
2842 out_baseimg = optarg;
2843 break;
2844 case 'u':
2845 unsafe = 1;
2846 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002847 case 'p':
2848 progress = 1;
2849 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002850 case 't':
2851 cache = optarg;
2852 break;
Max Reitz40055952014-07-22 22:58:42 +02002853 case 'T':
2854 src_cache = optarg;
2855 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002856 case 'q':
2857 quiet = true;
2858 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002859 case OPTION_OBJECT: {
2860 QemuOpts *opts;
2861 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2862 optarg, true);
2863 if (!opts) {
2864 return 1;
2865 }
2866 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002867 case OPTION_IMAGE_OPTS:
2868 image_opts = true;
2869 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002870 }
2871 }
2872
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002873 if (quiet) {
2874 progress = 0;
2875 }
2876
Fam Zhengac1307a2014-04-22 13:36:11 +08002877 if (optind != argc - 1) {
2878 error_exit("Expecting one image file name");
2879 }
2880 if (!unsafe && !out_baseimg) {
2881 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002882 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002883 filename = argv[optind++];
2884
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002885 if (qemu_opts_foreach(&qemu_object_opts,
2886 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002887 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002888 return 1;
2889 }
2890
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002891 qemu_progress_init(progress, 2.0);
2892 qemu_progress_print(0, 100);
2893
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002894 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01002895 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002896 if (ret < 0) {
2897 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002898 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002899 }
2900
Kevin Wolfce099542016-03-15 13:01:04 +01002901 src_flags = 0;
2902 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02002903 if (ret < 0) {
2904 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002905 goto out;
Max Reitz40055952014-07-22 22:58:42 +02002906 }
2907
Kevin Wolfce099542016-03-15 13:01:04 +01002908 /* The source files are opened read-only, don't care about WCE */
2909 assert((src_flags & BDRV_O_RDWR) == 0);
2910 (void) src_writethrough;
2911
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002912 /*
2913 * Open the images.
2914 *
2915 * Ignore the old backing file for unsafe rebase in case we want to correct
2916 * the reference to a renamed or moved backing file.
2917 */
Kevin Wolfce099542016-03-15 13:01:04 +01002918 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002919 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002920 ret = -1;
2921 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002922 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002923 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002924
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002925 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05002926 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002927 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002928 ret = -1;
2929 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002930 }
2931 }
2932
2933 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002934 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05002935 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05002936 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002937
Max Reitz644483d2015-02-05 13:58:17 -05002938 if (bs->backing_format[0] != '\0') {
2939 options = qdict_new();
2940 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
2941 }
2942
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002943 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01002944 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002945 options, src_flags, &local_err);
2946 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002947 error_reportf_err(local_err,
2948 "Could not open old backing file '%s': ",
2949 backing_name);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002950 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002951 }
Max Reitz644483d2015-02-05 13:58:17 -05002952
Alex Bligha6166732012-10-16 13:46:18 +01002953 if (out_baseimg[0]) {
Max Reitz644483d2015-02-05 13:58:17 -05002954 if (out_basefmt) {
2955 options = qdict_new();
2956 qdict_put(options, "driver", qstring_from_str(out_basefmt));
2957 } else {
2958 options = NULL;
2959 }
2960
Max Reitzefaa7c42016-03-16 19:54:38 +01002961 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002962 options, src_flags, &local_err);
2963 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002964 error_reportf_err(local_err,
2965 "Could not open new backing file '%s': ",
2966 out_baseimg);
Alex Bligha6166732012-10-16 13:46:18 +01002967 goto out;
2968 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002969 }
2970 }
2971
2972 /*
2973 * Check each unallocated cluster in the COW file. If it is unallocated,
2974 * accesses go to the backing file. We must therefore compare this cluster
2975 * in the old and new backing file, and if they differ we need to copy it
2976 * from the old backing file into the COW file.
2977 *
2978 * If qemu-img crashes during this step, no harm is done. The content of
2979 * the image is the same as the original one at any time.
2980 */
2981 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002982 int64_t num_sectors;
2983 int64_t old_backing_num_sectors;
2984 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002985 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02002986 int n;
Kevin Wolf1f710492012-10-12 14:29:18 +02002987 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08002988
Max Reitzf1d3cd72015-02-05 13:58:18 -05002989 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
2990 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002991
Max Reitzf1d3cd72015-02-05 13:58:18 -05002992 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002993 if (num_sectors < 0) {
2994 error_report("Could not get size of '%s': %s",
2995 filename, strerror(-num_sectors));
2996 ret = -1;
2997 goto out;
2998 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05002999 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003000 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003001 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003002
3003 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3004 error_report("Could not get size of '%s': %s",
3005 backing_name, strerror(-old_backing_num_sectors));
3006 ret = -1;
3007 goto out;
3008 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003009 if (blk_new_backing) {
3010 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003011 if (new_backing_num_sectors < 0) {
3012 error_report("Could not get size of '%s': %s",
3013 out_baseimg, strerror(-new_backing_num_sectors));
3014 ret = -1;
3015 goto out;
3016 }
Alex Bligha6166732012-10-16 13:46:18 +01003017 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003018
Kevin Wolf1f710492012-10-12 14:29:18 +02003019 if (num_sectors != 0) {
3020 local_progress = (float)100 /
3021 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3022 }
3023
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003024 for (sector = 0; sector < num_sectors; sector += n) {
3025
3026 /* How many sectors can we handle with the next read? */
3027 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3028 n = (IO_BUF_SIZE / 512);
3029 } else {
3030 n = num_sectors - sector;
3031 }
3032
3033 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02003034 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003035 if (ret < 0) {
3036 error_report("error while reading image metadata: %s",
3037 strerror(-ret));
3038 goto out;
3039 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02003040 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003041 continue;
3042 }
3043
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003044 /*
3045 * Read old and new backing file and take into consideration that
3046 * backing files may be smaller than the COW image.
3047 */
3048 if (sector >= old_backing_num_sectors) {
3049 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3050 } else {
3051 if (sector + n > old_backing_num_sectors) {
3052 n = old_backing_num_sectors - sector;
3053 }
3054
Eric Blake91669202016-05-06 10:26:43 -06003055 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3056 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003057 if (ret < 0) {
3058 error_report("error while reading from old backing file");
3059 goto out;
3060 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003061 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003062
Max Reitzf1d3cd72015-02-05 13:58:18 -05003063 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003064 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3065 } else {
3066 if (sector + n > new_backing_num_sectors) {
3067 n = new_backing_num_sectors - sector;
3068 }
3069
Eric Blake91669202016-05-06 10:26:43 -06003070 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3071 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003072 if (ret < 0) {
3073 error_report("error while reading from new backing file");
3074 goto out;
3075 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003076 }
3077
3078 /* If they differ, we need to write to the COW file */
3079 uint64_t written = 0;
3080
3081 while (written < n) {
3082 int pnum;
3083
3084 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003085 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003086 {
Eric Blake91669202016-05-06 10:26:43 -06003087 ret = blk_pwrite(blk,
3088 (sector + written) << BDRV_SECTOR_BITS,
3089 buf_old + written * 512,
3090 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003091 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003092 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003093 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003094 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003095 }
3096 }
3097
3098 written += pnum;
3099 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003100 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003101 }
3102 }
3103
3104 /*
3105 * Change the backing file. All clusters that are different from the old
3106 * backing file are overwritten in the COW file now, so the visible content
3107 * doesn't change when we switch the backing file.
3108 */
Alex Bligha6166732012-10-16 13:46:18 +01003109 if (out_baseimg && *out_baseimg) {
3110 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3111 } else {
3112 ret = bdrv_change_backing_file(bs, NULL, NULL);
3113 }
3114
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003115 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003116 error_report("Could not change the backing file to '%s': No "
3117 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003118 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003119 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003120 out_baseimg, strerror(-ret));
3121 }
3122
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003123 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003124 /*
3125 * TODO At this point it is possible to check if any clusters that are
3126 * allocated in the COW file are the same in the backing file. If so, they
3127 * could be dropped from the COW file. Don't do this before switching the
3128 * backing file, in case of a crash this would lead to corruption.
3129 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003130out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003131 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003132 /* Cleanup */
3133 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003134 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003135 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003136 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003137 qemu_vfree(buf_old);
3138 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003139
Markus Armbruster26f54e92014-10-07 13:59:04 +02003140 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003141 if (ret) {
3142 return 1;
3143 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003144 return 0;
3145}
3146
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003147static int img_resize(int argc, char **argv)
3148{
Markus Armbruster6750e792015-02-12 17:43:08 +01003149 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003150 int c, ret, relative;
3151 const char *filename, *fmt, *size;
3152 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003153 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003154 BlockBackend *blk = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003155 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003156
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003157 static QemuOptsList resize_options = {
3158 .name = "resize_options",
3159 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3160 .desc = {
3161 {
3162 .name = BLOCK_OPT_SIZE,
3163 .type = QEMU_OPT_SIZE,
3164 .help = "Virtual disk size"
3165 }, {
3166 /* end of list */
3167 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003168 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003169 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003170 bool image_opts = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003171
Kevin Wolfe80fec72011-04-29 10:58:12 +02003172 /* Remove size from argv manually so that negative numbers are not treated
3173 * as options by getopt. */
3174 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003175 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003176 return 1;
3177 }
3178
3179 size = argv[--argc];
3180
3181 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003182 fmt = NULL;
3183 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003184 static const struct option long_options[] = {
3185 {"help", no_argument, 0, 'h'},
3186 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003187 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003188 {0, 0, 0, 0}
3189 };
3190 c = getopt_long(argc, argv, "f:hq",
3191 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003192 if (c == -1) {
3193 break;
3194 }
3195 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01003196 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003197 case 'h':
3198 help();
3199 break;
3200 case 'f':
3201 fmt = optarg;
3202 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003203 case 'q':
3204 quiet = true;
3205 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003206 case OPTION_OBJECT: {
3207 QemuOpts *opts;
3208 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3209 optarg, true);
3210 if (!opts) {
3211 return 1;
3212 }
3213 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003214 case OPTION_IMAGE_OPTS:
3215 image_opts = true;
3216 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003217 }
3218 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003219 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003220 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003221 }
3222 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003223
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003224 if (qemu_opts_foreach(&qemu_object_opts,
3225 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003226 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003227 return 1;
3228 }
3229
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003230 /* Choose grow, shrink, or absolute resize mode */
3231 switch (size[0]) {
3232 case '+':
3233 relative = 1;
3234 size++;
3235 break;
3236 case '-':
3237 relative = -1;
3238 size++;
3239 break;
3240 default:
3241 relative = 0;
3242 break;
3243 }
3244
3245 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003246 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003247 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003248 if (err) {
3249 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003250 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003251 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003252 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003253 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003254 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3255 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003256
Max Reitzefaa7c42016-03-16 19:54:38 +01003257 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01003258 BDRV_O_RDWR, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003259 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003260 ret = -1;
3261 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003262 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003263
3264 if (relative) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05003265 total_size = blk_getlength(blk) + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003266 } else {
3267 total_size = n;
3268 }
3269 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003270 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003271 ret = -1;
3272 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003273 }
3274
Max Reitzf1d3cd72015-02-05 13:58:18 -05003275 ret = blk_truncate(blk, total_size);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003276 switch (ret) {
3277 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003278 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003279 break;
3280 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01003281 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003282 break;
3283 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01003284 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003285 break;
3286 default:
Jes Sorensen15654a62010-12-16 14:31:53 +01003287 error_report("Error resizing image (%d)", -ret);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003288 break;
3289 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003290out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003291 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003292 if (ret) {
3293 return 1;
3294 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003295 return 0;
3296}
3297
Max Reitz76a3a342014-10-27 11:12:51 +01003298static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003299 int64_t offset, int64_t total_work_size,
3300 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003301{
3302 qemu_progress_print(100.f * offset / total_work_size, 0);
3303}
3304
Max Reitz6f176b42013-09-03 10:09:50 +02003305static int img_amend(int argc, char **argv)
3306{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003307 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003308 int c, ret = 0;
3309 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003310 QemuOptsList *create_opts = NULL;
3311 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003312 const char *fmt = NULL, *filename, *cache;
3313 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003314 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003315 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003316 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003317 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003318 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003319
Max Reitzbd39e6e2014-07-22 22:58:43 +02003320 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003321 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003322 static const struct option long_options[] = {
3323 {"help", no_argument, 0, 'h'},
3324 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003325 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003326 {0, 0, 0, 0}
3327 };
3328 c = getopt_long(argc, argv, "ho:f:t:pq",
3329 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003330 if (c == -1) {
3331 break;
3332 }
3333
3334 switch (c) {
3335 case 'h':
3336 case '?':
3337 help();
3338 break;
3339 case 'o':
Kevin Wolf626f84f2014-02-21 16:24:06 +01003340 if (!is_valid_option_list(optarg)) {
3341 error_report("Invalid option list: %s", optarg);
3342 ret = -1;
Max Reitze814dff2015-08-20 16:00:38 -07003343 goto out_no_progress;
Kevin Wolf626f84f2014-02-21 16:24:06 +01003344 }
3345 if (!options) {
3346 options = g_strdup(optarg);
3347 } else {
3348 char *old_options = options;
3349 options = g_strdup_printf("%s,%s", options, optarg);
3350 g_free(old_options);
3351 }
Max Reitz6f176b42013-09-03 10:09:50 +02003352 break;
3353 case 'f':
3354 fmt = optarg;
3355 break;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003356 case 't':
3357 cache = optarg;
3358 break;
Max Reitz76a3a342014-10-27 11:12:51 +01003359 case 'p':
3360 progress = true;
3361 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003362 case 'q':
3363 quiet = true;
3364 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003365 case OPTION_OBJECT:
3366 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3367 optarg, true);
3368 if (!opts) {
3369 ret = -1;
3370 goto out_no_progress;
3371 }
3372 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003373 case OPTION_IMAGE_OPTS:
3374 image_opts = true;
3375 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003376 }
3377 }
3378
Max Reitz6f176b42013-09-03 10:09:50 +02003379 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003380 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003381 }
3382
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003383 if (qemu_opts_foreach(&qemu_object_opts,
3384 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003385 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003386 ret = -1;
3387 goto out_no_progress;
3388 }
3389
Max Reitz76a3a342014-10-27 11:12:51 +01003390 if (quiet) {
3391 progress = false;
3392 }
3393 qemu_progress_init(progress, 1.0);
3394
Kevin Wolfa283cb62014-02-21 16:24:07 +01003395 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3396 if (fmt && has_help_option(options)) {
3397 /* If a format is explicitly specified (and possibly no filename is
3398 * given), print option help here */
3399 ret = print_block_option_help(filename, fmt);
3400 goto out;
3401 }
3402
3403 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003404 error_report("Expecting one image file name");
3405 ret = -1;
3406 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003407 }
Max Reitz6f176b42013-09-03 10:09:50 +02003408
Kevin Wolfce099542016-03-15 13:01:04 +01003409 flags = BDRV_O_RDWR;
3410 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003411 if (ret < 0) {
3412 error_report("Invalid cache option: %s", cache);
3413 goto out;
3414 }
3415
Kevin Wolfce099542016-03-15 13:01:04 +01003416 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003417 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003418 ret = -1;
3419 goto out;
3420 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003421 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003422
3423 fmt = bs->drv->format_name;
3424
Kevin Wolf626f84f2014-02-21 16:24:06 +01003425 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003426 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003427 ret = print_block_option_help(filename, fmt);
3428 goto out;
3429 }
3430
Max Reitzb2439d22014-12-02 18:32:47 +01003431 if (!bs->drv->create_opts) {
3432 error_report("Format driver '%s' does not support any options to amend",
3433 fmt);
3434 ret = -1;
3435 goto out;
3436 }
3437
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003438 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003439 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003440 if (options) {
3441 qemu_opts_do_parse(opts, options, NULL, &err);
3442 if (err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01003443 error_report_err(err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003444 ret = -1;
3445 goto out;
3446 }
Max Reitz6f176b42013-09-03 10:09:50 +02003447 }
3448
Max Reitz76a3a342014-10-27 11:12:51 +01003449 /* In case the driver does not call amend_status_cb() */
3450 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003451 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003452 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003453 if (ret < 0) {
3454 error_report("Error while amending options: %s", strerror(-ret));
3455 goto out;
3456 }
3457
3458out:
Max Reitz76a3a342014-10-27 11:12:51 +01003459 qemu_progress_end();
3460
Max Reitze814dff2015-08-20 16:00:38 -07003461out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003462 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003463 qemu_opts_del(opts);
3464 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003465 g_free(options);
3466
Max Reitz6f176b42013-09-03 10:09:50 +02003467 if (ret) {
3468 return 1;
3469 }
3470 return 0;
3471}
3472
Kevin Wolfb6133b82014-08-05 14:17:13 +02003473typedef struct BenchData {
3474 BlockBackend *blk;
3475 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003476 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003477 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003478 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003479 int nrreq;
3480 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003481 int flush_interval;
3482 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003483 uint8_t *buf;
3484 QEMUIOVector *qiov;
3485
3486 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003487 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003488 uint64_t offset;
3489} BenchData;
3490
Kevin Wolf55d539c2016-06-03 13:59:41 +02003491static void bench_undrained_flush_cb(void *opaque, int ret)
3492{
3493 if (ret < 0) {
3494 error_report("Failed flush request: %s\n", strerror(-ret));
3495 exit(EXIT_FAILURE);
3496 }
3497}
3498
Kevin Wolfb6133b82014-08-05 14:17:13 +02003499static void bench_cb(void *opaque, int ret)
3500{
3501 BenchData *b = opaque;
3502 BlockAIOCB *acb;
3503
3504 if (ret < 0) {
3505 error_report("Failed request: %s\n", strerror(-ret));
3506 exit(EXIT_FAILURE);
3507 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003508
3509 if (b->in_flush) {
3510 /* Just finished a flush with drained queue: Start next requests */
3511 assert(b->in_flight == 0);
3512 b->in_flush = false;
3513 } else if (b->in_flight > 0) {
3514 int remaining = b->n - b->in_flight;
3515
Kevin Wolfb6133b82014-08-05 14:17:13 +02003516 b->n--;
3517 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003518
3519 /* Time for flush? Drain queue if requested, then flush */
3520 if (b->flush_interval && remaining % b->flush_interval == 0) {
3521 if (!b->in_flight || !b->drain_on_flush) {
3522 BlockCompletionFunc *cb;
3523
3524 if (b->drain_on_flush) {
3525 b->in_flush = true;
3526 cb = bench_cb;
3527 } else {
3528 cb = bench_undrained_flush_cb;
3529 }
3530
3531 acb = blk_aio_flush(b->blk, cb, b);
3532 if (!acb) {
3533 error_report("Failed to issue flush request");
3534 exit(EXIT_FAILURE);
3535 }
3536 }
3537 if (b->drain_on_flush) {
3538 return;
3539 }
3540 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003541 }
3542
3543 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003544 if (b->write) {
3545 acb = blk_aio_pwritev(b->blk, b->offset, b->qiov, 0,
3546 bench_cb, b);
3547 } else {
3548 acb = blk_aio_preadv(b->blk, b->offset, b->qiov, 0,
3549 bench_cb, b);
3550 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003551 if (!acb) {
3552 error_report("Failed to issue request");
3553 exit(EXIT_FAILURE);
3554 }
3555 b->in_flight++;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003556 b->offset += b->step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003557 b->offset %= b->image_size;
3558 }
3559}
3560
3561static int img_bench(int argc, char **argv)
3562{
3563 int c, ret = 0;
3564 const char *fmt = NULL, *filename;
3565 bool quiet = false;
3566 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003567 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003568 int count = 75000;
3569 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003570 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003571 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003572 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003573 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003574 int flush_interval = 0;
3575 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003576 int64_t image_size;
3577 BlockBackend *blk = NULL;
3578 BenchData data = {};
3579 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003580 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003581 struct timeval t1, t2;
3582 int i;
3583
3584 for (;;) {
3585 static const struct option long_options[] = {
3586 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003587 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003588 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003589 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003590 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003591 {0, 0, 0, 0}
3592 };
Kevin Wolf83de9be2015-07-13 13:13:17 +02003593 c = getopt_long(argc, argv, "hc:d:f:no:qs:S:t:w", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003594 if (c == -1) {
3595 break;
3596 }
3597
3598 switch (c) {
3599 case 'h':
3600 case '?':
3601 help();
3602 break;
3603 case 'c':
3604 {
3605 char *end;
3606 errno = 0;
3607 count = strtoul(optarg, &end, 0);
3608 if (errno || *end || count > INT_MAX) {
3609 error_report("Invalid request count specified");
3610 return 1;
3611 }
3612 break;
3613 }
3614 case 'd':
3615 {
3616 char *end;
3617 errno = 0;
3618 depth = strtoul(optarg, &end, 0);
3619 if (errno || *end || depth > INT_MAX) {
3620 error_report("Invalid queue depth specified");
3621 return 1;
3622 }
3623 break;
3624 }
3625 case 'f':
3626 fmt = optarg;
3627 break;
3628 case 'n':
3629 flags |= BDRV_O_NATIVE_AIO;
3630 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003631 case 'o':
3632 {
3633 char *end;
3634 errno = 0;
3635 offset = qemu_strtosz_suffix(optarg, &end,
3636 QEMU_STRTOSZ_DEFSUFFIX_B);
3637 if (offset < 0|| *end) {
3638 error_report("Invalid offset specified");
3639 return 1;
3640 }
3641 break;
3642 }
3643 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003644 case 'q':
3645 quiet = true;
3646 break;
3647 case 's':
3648 {
3649 int64_t sval;
3650 char *end;
3651
3652 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3653 if (sval < 0 || sval > INT_MAX || *end) {
3654 error_report("Invalid buffer size specified");
3655 return 1;
3656 }
3657
3658 bufsize = sval;
3659 break;
3660 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003661 case 'S':
3662 {
3663 int64_t sval;
3664 char *end;
3665
3666 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3667 if (sval < 0 || sval > INT_MAX || *end) {
3668 error_report("Invalid step size specified");
3669 return 1;
3670 }
3671
3672 step = sval;
3673 break;
3674 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003675 case 't':
3676 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3677 if (ret < 0) {
3678 error_report("Invalid cache mode");
3679 ret = -1;
3680 goto out;
3681 }
3682 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003683 case 'w':
3684 flags |= BDRV_O_RDWR;
3685 is_write = true;
3686 break;
3687 case OPTION_PATTERN:
3688 {
3689 char *end;
3690 errno = 0;
3691 pattern = strtoul(optarg, &end, 0);
3692 if (errno || *end || pattern > 0xff) {
3693 error_report("Invalid pattern byte specified");
3694 return 1;
3695 }
3696 break;
3697 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003698 case OPTION_FLUSH_INTERVAL:
3699 {
3700 char *end;
3701 errno = 0;
3702 flush_interval = strtoul(optarg, &end, 0);
3703 if (errno || *end || flush_interval > INT_MAX) {
3704 error_report("Invalid flush interval specified");
3705 return 1;
3706 }
3707 break;
3708 }
3709 case OPTION_NO_DRAIN:
3710 drain_on_flush = false;
3711 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003712 case OPTION_IMAGE_OPTS:
3713 image_opts = true;
3714 break;
3715 }
3716 }
3717
3718 if (optind != argc - 1) {
3719 error_exit("Expecting one image file name");
3720 }
3721 filename = argv[argc - 1];
3722
Kevin Wolf55d539c2016-06-03 13:59:41 +02003723 if (!is_write && flush_interval) {
3724 error_report("--flush-interval is only available in write tests");
3725 ret = -1;
3726 goto out;
3727 }
3728 if (flush_interval && flush_interval < depth) {
3729 error_report("Flush interval can't be smaller than depth");
3730 ret = -1;
3731 goto out;
3732 }
3733
Kevin Wolfb6133b82014-08-05 14:17:13 +02003734 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
3735 if (!blk) {
3736 ret = -1;
3737 goto out;
3738 }
3739
3740 image_size = blk_getlength(blk);
3741 if (image_size < 0) {
3742 ret = image_size;
3743 goto out;
3744 }
3745
3746 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02003747 .blk = blk,
3748 .image_size = image_size,
3749 .bufsize = bufsize,
3750 .step = step ?: bufsize,
3751 .nrreq = depth,
3752 .n = count,
3753 .offset = offset,
3754 .write = is_write,
3755 .flush_interval = flush_interval,
3756 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02003757 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02003758 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02003759 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02003760 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02003761 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02003762 if (flush_interval) {
3763 printf("Sending flush every %d requests\n", flush_interval);
3764 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003765
3766 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003767 memset(data.buf, pattern, data.nrreq * data.bufsize);
3768
Kevin Wolfb6133b82014-08-05 14:17:13 +02003769 data.qiov = g_new(QEMUIOVector, data.nrreq);
3770 for (i = 0; i < data.nrreq; i++) {
3771 qemu_iovec_init(&data.qiov[i], 1);
3772 qemu_iovec_add(&data.qiov[i],
3773 data.buf + i * data.bufsize, data.bufsize);
3774 }
3775
3776 gettimeofday(&t1, NULL);
3777 bench_cb(&data, 0);
3778
3779 while (data.n > 0) {
3780 main_loop_wait(false);
3781 }
3782 gettimeofday(&t2, NULL);
3783
3784 printf("Run completed in %3.3f seconds.\n",
3785 (t2.tv_sec - t1.tv_sec)
3786 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
3787
3788out:
3789 qemu_vfree(data.buf);
3790 blk_unref(blk);
3791
3792 if (ret) {
3793 return 1;
3794 }
3795 return 0;
3796}
3797
3798
Anthony Liguoric227f092009-10-01 16:12:16 -05003799static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01003800#define DEF(option, callback, arg_string) \
3801 { option, callback },
3802#include "qemu-img-cmds.h"
3803#undef DEF
3804#undef GEN_DOCS
3805 { NULL, NULL, },
3806};
3807
bellardea2384d2004-08-01 21:59:26 +00003808int main(int argc, char **argv)
3809{
Anthony Liguoric227f092009-10-01 16:12:16 -05003810 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01003811 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003812 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003813 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04003814 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04003815 static const struct option long_options[] = {
3816 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03003817 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003818 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04003819 {0, 0, 0, 0}
3820 };
bellardea2384d2004-08-01 21:59:26 +00003821
MORITA Kazutaka526eda12013-07-23 17:30:11 +09003822#ifdef CONFIG_POSIX
3823 signal(SIGPIPE, SIG_IGN);
3824#endif
3825
Kevin Wolf53f76e52010-12-16 15:10:32 +01003826 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08003827 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01003828
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003829 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01003830 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03003831 exit(EXIT_FAILURE);
3832 }
3833
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03003834 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01003835
Daniel P. Berrange064097d2016-02-10 18:41:01 +00003836 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00003837 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08003838 if (argc < 2) {
3839 error_exit("Not enough arguments");
3840 }
Stuart Brady153859b2009-06-07 00:42:17 +01003841
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003842 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003843 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003844 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003845
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003846 while ((c = getopt_long(argc, argv, "+hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03003847 switch (c) {
3848 case 'h':
3849 help();
3850 return 0;
3851 case 'V':
3852 printf(QEMU_IMG_VERSION);
3853 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003854 case 'T':
3855 g_free(trace_file);
3856 trace_file = trace_opt_parse(optarg);
3857 break;
Stuart Brady153859b2009-06-07 00:42:17 +01003858 }
bellardea2384d2004-08-01 21:59:26 +00003859 }
Stuart Brady153859b2009-06-07 00:42:17 +01003860
Denis V. Lunev10985132016-06-17 17:44:13 +03003861 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04003862
Denis V. Lunev10985132016-06-17 17:44:13 +03003863 /* reset getopt_long scanning */
3864 argc -= optind;
3865 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04003866 return 0;
3867 }
Denis V. Lunev10985132016-06-17 17:44:13 +03003868 argv += optind;
Denis V. Lunevcfef6a42016-07-04 16:16:48 +03003869 optind = 0;
Denis V. Lunev10985132016-06-17 17:44:13 +03003870
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03003871 if (!trace_init_backends()) {
3872 exit(1);
3873 }
3874 trace_init_file(trace_file);
3875 qemu_set_log(LOG_TRACE);
3876
Denis V. Lunev10985132016-06-17 17:44:13 +03003877 /* find the command */
3878 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
3879 if (!strcmp(cmdname, cmd->name)) {
3880 return cmd->handler(argc, argv);
3881 }
3882 }
Jeff Cody7db16892014-04-25 17:02:32 -04003883
Stuart Brady153859b2009-06-07 00:42:17 +01003884 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08003885 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00003886}