blob: cff22e300557e99e2b2f7fe1806b0caeca58df3c [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"
Daniel P. Berrangeb3db2112016-09-30 15:45:27 +010028#include "qapi/qobject-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 \
Thomas Huth0781dd62016-10-05 11:54:44 +020047 "\n" QEMU_COPYRIGHT "\n"
Jeff Cody5f6979c2014-04-28 14:37:18 -040048
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"
Reda Sallahi86ce1f62016-08-10 04:43:12 +0200169 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
170 "\n"
171 "Parameters to dd subcommand:\n"
172 " 'bs=BYTES' read and write up to BYTES bytes at a time "
173 "(default: 512)\n"
174 " 'count=N' copy only N input blocks\n"
175 " 'if=FILE' read from FILE\n"
Reda Sallahif7c15532016-08-10 16:16:09 +0200176 " 'of=FILE' write to FILE\n"
177 " 'skip=N' skip N bs-sized blocks at the start of input\n";
Paolo Bonzinie00291c2010-02-04 16:49:56 +0100178
179 printf("%s\nSupported formats:", help_msg);
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +0100180 bdrv_iterate_format(format_print, NULL);
bellardea2384d2004-08-01 21:59:26 +0000181 printf("\n");
Fam Zhengac1307a2014-04-22 13:36:11 +0800182 exit(EXIT_SUCCESS);
bellardea2384d2004-08-01 21:59:26 +0000183}
184
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000185static QemuOptsList qemu_object_opts = {
186 .name = "object",
187 .implied_opt_name = "qom-type",
188 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
189 .desc = {
190 { }
191 },
192};
193
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000194static QemuOptsList qemu_source_opts = {
195 .name = "source",
196 .implied_opt_name = "file",
197 .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head),
198 .desc = {
199 { }
200 },
201};
202
Stefan Weil7c30f652013-06-16 17:01:05 +0200203static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100204{
205 int ret = 0;
206 if (!quiet) {
207 va_list args;
208 va_start(args, fmt);
209 ret = vprintf(fmt, args);
210 va_end(args);
211 }
212 return ret;
213}
214
bellardea2384d2004-08-01 21:59:26 +0000215
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100216static int print_block_option_help(const char *filename, const char *fmt)
217{
218 BlockDriver *drv, *proto_drv;
Chunyan Liu83d05212014-06-05 17:20:51 +0800219 QemuOptsList *create_opts = NULL;
Max Reitzb65a5e12015-02-05 13:58:12 -0500220 Error *local_err = NULL;
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100221
222 /* Find driver and parse its options */
223 drv = bdrv_find_format(fmt);
224 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100225 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100226 return 1;
227 }
228
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800229 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100230 if (filename) {
Max Reitzb65a5e12015-02-05 13:58:12 -0500231 proto_drv = bdrv_find_protocol(filename, true, &local_err);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100232 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +0100233 error_report_err(local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +0800234 qemu_opts_free(create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100235 return 1;
236 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800237 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100238 }
239
Chunyan Liu83d05212014-06-05 17:20:51 +0800240 qemu_opts_print_help(create_opts);
241 qemu_opts_free(create_opts);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100242 return 0;
243}
244
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000245
246static int img_open_password(BlockBackend *blk, const char *filename,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000247 int flags, bool quiet)
bellard75c23802004-08-27 21:28:58 +0000248{
249 BlockDriverState *bs;
bellard75c23802004-08-27 21:28:58 +0000250 char password[256];
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000251
252 bs = blk_bs(blk);
Daniel P. Berrange4ef130f2016-03-21 14:11:43 +0000253 if (bdrv_is_encrypted(bs) && bdrv_key_required(bs) &&
254 !(flags & BDRV_O_NO_IO)) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000255 qprintf(quiet, "Disk image '%s' is encrypted.\n", filename);
256 if (qemu_read_password(password, sizeof(password)) < 0) {
257 error_report("No password given");
258 return -1;
259 }
260 if (bdrv_set_key(bs, password) < 0) {
261 error_report("invalid password");
262 return -1;
263 }
264 }
265 return 0;
266}
267
268
Max Reitzefaa7c42016-03-16 19:54:38 +0100269static BlockBackend *img_open_opts(const char *optstr,
Kevin Wolfce099542016-03-15 13:01:04 +0100270 QemuOpts *opts, int flags, bool writethrough,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000271 bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000272{
273 QDict *options;
274 Error *local_err = NULL;
275 BlockBackend *blk;
276 options = qemu_opts_to_qdict(opts, NULL);
Max Reitzefaa7c42016-03-16 19:54:38 +0100277 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000278 if (!blk) {
Daniel P. Berrange143605a2016-04-06 10:16:18 +0100279 error_reportf_err(local_err, "Could not open '%s': ", optstr);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000280 return NULL;
281 }
Kevin Wolfce099542016-03-15 13:01:04 +0100282 blk_set_enable_write_cache(blk, !writethrough);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000283
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000284 if (img_open_password(blk, optstr, flags, quiet) < 0) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000285 blk_unref(blk);
286 return NULL;
287 }
288 return blk;
289}
290
Max Reitzefaa7c42016-03-16 19:54:38 +0100291static BlockBackend *img_open_file(const char *filename,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000292 const char *fmt, int flags,
Kevin Wolfce099542016-03-15 13:01:04 +0100293 bool writethrough, bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000294{
295 BlockBackend *blk;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200296 Error *local_err = NULL;
Max Reitz5bd31322015-02-05 13:58:16 -0500297 QDict *options = NULL;
Kevin Wolfad717132010-12-16 15:37:41 +0100298
bellard75c23802004-08-27 21:28:58 +0000299 if (fmt) {
Max Reitz5bd31322015-02-05 13:58:16 -0500300 options = qdict_new();
301 qdict_put(options, "driver", qstring_from_str(fmt));
bellard75c23802004-08-27 21:28:58 +0000302 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100303
Max Reitzefaa7c42016-03-16 19:54:38 +0100304 blk = blk_new_open(filename, NULL, options, flags, &local_err);
Max Reitz5bd31322015-02-05 13:58:16 -0500305 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100306 error_reportf_err(local_err, "Could not open '%s': ", filename);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000307 return NULL;
bellard75c23802004-08-27 21:28:58 +0000308 }
Kevin Wolfce099542016-03-15 13:01:04 +0100309 blk_set_enable_write_cache(blk, !writethrough);
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100310
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000311 if (img_open_password(blk, filename, flags, quiet) < 0) {
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000312 blk_unref(blk);
313 return NULL;
bellard75c23802004-08-27 21:28:58 +0000314 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200315 return blk;
bellard75c23802004-08-27 21:28:58 +0000316}
317
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000318
Max Reitzefaa7c42016-03-16 19:54:38 +0100319static BlockBackend *img_open(bool image_opts,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000320 const char *filename,
Kevin Wolfce099542016-03-15 13:01:04 +0100321 const char *fmt, int flags, bool writethrough,
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000322 bool quiet)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000323{
324 BlockBackend *blk;
325 if (image_opts) {
326 QemuOpts *opts;
327 if (fmt) {
328 error_report("--image-opts and --format are mutually exclusive");
329 return NULL;
330 }
331 opts = qemu_opts_parse_noisily(qemu_find_opts("source"),
332 filename, true);
333 if (!opts) {
334 return NULL;
335 }
Kevin Wolfce099542016-03-15 13:01:04 +0100336 blk = img_open_opts(filename, opts, flags, writethrough, quiet);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000337 } else {
Kevin Wolfce099542016-03-15 13:01:04 +0100338 blk = img_open_file(filename, fmt, flags, writethrough, quiet);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000339 }
340 return blk;
341}
342
343
Chunyan Liu83d05212014-06-05 17:20:51 +0800344static int add_old_style_options(const char *fmt, QemuOpts *opts,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100345 const char *base_filename,
346 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200347{
Markus Armbruster6750e792015-02-12 17:43:08 +0100348 Error *err = NULL;
349
Kevin Wolfefa84d42009-05-18 16:42:12 +0200350 if (base_filename) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100351 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100352 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100353 error_report("Backing file not supported for file format '%s'",
354 fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100355 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900356 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200357 }
358 }
359 if (base_fmt) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100360 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100361 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100362 error_report("Backing file format not supported for file "
363 "format '%s'", fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100364 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900365 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200366 }
367 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900368 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200369}
370
bellardea2384d2004-08-01 21:59:26 +0000371static int img_create(int argc, char **argv)
372{
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200373 int c;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100374 uint64_t img_size = -1;
bellardea2384d2004-08-01 21:59:26 +0000375 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000376 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000377 const char *filename;
378 const char *base_filename = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200379 char *options = NULL;
Luiz Capitulino9b375252012-11-30 10:52:05 -0200380 Error *local_err = NULL;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100381 bool quiet = false;
ths3b46e622007-09-17 08:09:54 +0000382
bellardea2384d2004-08-01 21:59:26 +0000383 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000384 static const struct option long_options[] = {
385 {"help", no_argument, 0, 'h'},
386 {"object", required_argument, 0, OPTION_OBJECT},
387 {0, 0, 0, 0}
388 };
389 c = getopt_long(argc, argv, "F:b:f:he6o:q",
390 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100391 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000392 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100393 }
bellardea2384d2004-08-01 21:59:26 +0000394 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100395 case '?':
bellardea2384d2004-08-01 21:59:26 +0000396 case 'h':
397 help();
398 break;
aliguori9230eaf2009-03-28 17:55:19 +0000399 case 'F':
400 base_fmt = optarg;
401 break;
bellardea2384d2004-08-01 21:59:26 +0000402 case 'b':
403 base_filename = optarg;
404 break;
405 case 'f':
406 fmt = optarg;
407 break;
408 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200409 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100410 "encryption\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100411 goto fail;
thsd8871c52007-10-24 16:11:42 +0000412 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +0200413 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +0100414 "compat6\' instead!");
Kevin Wolf77386bf2014-02-21 16:24:04 +0100415 goto fail;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200416 case 'o':
Kevin Wolf77386bf2014-02-21 16:24:04 +0100417 if (!is_valid_option_list(optarg)) {
418 error_report("Invalid option list: %s", optarg);
419 goto fail;
420 }
421 if (!options) {
422 options = g_strdup(optarg);
423 } else {
424 char *old_options = options;
425 options = g_strdup_printf("%s,%s", options, optarg);
426 g_free(old_options);
427 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200428 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100429 case 'q':
430 quiet = true;
431 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000432 case OPTION_OBJECT: {
433 QemuOpts *opts;
434 opts = qemu_opts_parse_noisily(&qemu_object_opts,
435 optarg, true);
436 if (!opts) {
437 goto fail;
438 }
439 } break;
bellardea2384d2004-08-01 21:59:26 +0000440 }
441 }
aliguori9230eaf2009-03-28 17:55:19 +0000442
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900443 /* Get the filename */
Kevin Wolfa283cb62014-02-21 16:24:07 +0100444 filename = (optind < argc) ? argv[optind] : NULL;
445 if (options && has_help_option(options)) {
446 g_free(options);
447 return print_block_option_help(filename, fmt);
448 }
449
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100450 if (optind >= argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800451 error_exit("Expecting image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100452 }
Kevin Wolfa283cb62014-02-21 16:24:07 +0100453 optind++;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900454
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000455 if (qemu_opts_foreach(&qemu_object_opts,
456 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200457 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000458 goto fail;
459 }
460
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100461 /* Get image size, if specified */
462 if (optind < argc) {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100463 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +0100464 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +0200465 sval = qemu_strtosz_suffix(argv[optind++], &end,
466 QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +0100467 if (sval < 0 || *end) {
liguang79443392012-12-17 09:49:23 +0800468 if (sval == -ERANGE) {
469 error_report("Image size must be less than 8 EiB!");
470 } else {
471 error_report("Invalid image size specified! You may use k, M, "
Kevin Wolf5e009842013-06-05 14:19:27 +0200472 "G, T, P or E suffixes for ");
473 error_report("kilobytes, megabytes, gigabytes, terabytes, "
474 "petabytes and exabytes.");
liguang79443392012-12-17 09:49:23 +0800475 }
Kevin Wolf77386bf2014-02-21 16:24:04 +0100476 goto fail;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100477 }
478 img_size = (uint64_t)sval;
479 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200480 if (optind != argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800481 error_exit("Unexpected argument: %s", argv[optind]);
Kevin Wolffc11eb22013-08-05 10:53:04 +0200482 }
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100483
Luiz Capitulino9b375252012-11-30 10:52:05 -0200484 bdrv_img_create(filename, fmt, base_filename, base_fmt,
Kevin Wolf61de4c62016-03-18 17:46:45 +0100485 options, img_size, 0, &local_err, quiet);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100486 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100487 error_reportf_err(local_err, "%s: ", filename);
Kevin Wolf77386bf2014-02-21 16:24:04 +0100488 goto fail;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900489 }
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200490
Kevin Wolf77386bf2014-02-21 16:24:04 +0100491 g_free(options);
bellardea2384d2004-08-01 21:59:26 +0000492 return 0;
Kevin Wolf77386bf2014-02-21 16:24:04 +0100493
494fail:
495 g_free(options);
496 return 1;
bellardea2384d2004-08-01 21:59:26 +0000497}
498
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100499static void dump_json_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500500{
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500501 QString *str;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500502 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +0100503 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -0600504
505 visit_type_ImageCheck(v, NULL, &check, &error_abort);
506 visit_complete(v, &obj);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500507 str = qobject_to_json_pretty(obj);
508 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100509 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500510 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -0600511 visit_free(v);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500512 QDECREF(str);
513}
514
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100515static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500516{
517 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100518 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500519 } else {
520 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100521 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
522 "Data may be corrupted, or further writes to the image "
523 "may corrupt it.\n",
524 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500525 }
526
527 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100528 qprintf(quiet,
529 "\n%" PRId64 " leaked clusters were found on the image.\n"
530 "This means waste of disk space, but no harm to data.\n",
531 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500532 }
533
534 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100535 qprintf(quiet,
536 "\n%" PRId64
537 " internal errors have occurred during the check.\n",
538 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500539 }
540 }
541
542 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100543 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
544 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
545 check->allocated_clusters, check->total_clusters,
546 check->allocated_clusters * 100.0 / check->total_clusters,
547 check->fragmented_clusters * 100.0 / check->allocated_clusters,
548 check->compressed_clusters * 100.0 /
549 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500550 }
551
552 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100553 qprintf(quiet,
554 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500555 }
556}
557
558static int collect_image_check(BlockDriverState *bs,
559 ImageCheck *check,
560 const char *filename,
561 const char *fmt,
562 int fix)
563{
564 int ret;
565 BdrvCheckResult result;
566
567 ret = bdrv_check(bs, &result, fix);
568 if (ret < 0) {
569 return ret;
570 }
571
572 check->filename = g_strdup(filename);
573 check->format = g_strdup(bdrv_get_format_name(bs));
574 check->check_errors = result.check_errors;
575 check->corruptions = result.corruptions;
576 check->has_corruptions = result.corruptions != 0;
577 check->leaks = result.leaks;
578 check->has_leaks = result.leaks != 0;
579 check->corruptions_fixed = result.corruptions_fixed;
580 check->has_corruptions_fixed = result.corruptions != 0;
581 check->leaks_fixed = result.leaks_fixed;
582 check->has_leaks_fixed = result.leaks != 0;
583 check->image_end_offset = result.image_end_offset;
584 check->has_image_end_offset = result.image_end_offset != 0;
585 check->total_clusters = result.bfi.total_clusters;
586 check->has_total_clusters = result.bfi.total_clusters != 0;
587 check->allocated_clusters = result.bfi.allocated_clusters;
588 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
589 check->fragmented_clusters = result.bfi.fragmented_clusters;
590 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100591 check->compressed_clusters = result.bfi.compressed_clusters;
592 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500593
594 return 0;
595}
596
Kevin Wolfe076f332010-06-29 11:43:13 +0200597/*
598 * Checks an image for consistency. Exit codes:
599 *
Max Reitzd6635c42014-06-02 22:15:21 +0200600 * 0 - Check completed, image is good
601 * 1 - Check not completed because of internal errors
602 * 2 - Check completed, image is corrupted
603 * 3 - Check completed, image has leaked clusters, but is good otherwise
604 * 63 - Checks are not supported by the image format
Kevin Wolfe076f332010-06-29 11:43:13 +0200605 */
aliguori15859692009-04-21 23:11:53 +0000606static int img_check(int argc, char **argv)
607{
608 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500609 OutputFormat output_format = OFORMAT_HUMAN;
Max Reitz40055952014-07-22 22:58:42 +0200610 const char *filename, *fmt, *output, *cache;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200611 BlockBackend *blk;
aliguori15859692009-04-21 23:11:53 +0000612 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200613 int fix = 0;
Kevin Wolfce099542016-03-15 13:01:04 +0100614 int flags = BDRV_O_CHECK;
615 bool writethrough;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200616 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100617 bool quiet = false;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000618 bool image_opts = false;
aliguori15859692009-04-21 23:11:53 +0000619
620 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500621 output = NULL;
Max Reitz40055952014-07-22 22:58:42 +0200622 cache = BDRV_DEFAULT_CACHE;
Kevin Wolfce099542016-03-15 13:01:04 +0100623
aliguori15859692009-04-21 23:11:53 +0000624 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500625 int option_index = 0;
626 static const struct option long_options[] = {
627 {"help", no_argument, 0, 'h'},
628 {"format", required_argument, 0, 'f'},
Prasad Joshi4fd6a982014-03-25 00:08:54 +0530629 {"repair", required_argument, 0, 'r'},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500630 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000631 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000632 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500633 {0, 0, 0, 0}
634 };
Max Reitz40055952014-07-22 22:58:42 +0200635 c = getopt_long(argc, argv, "hf:r:T:q",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500636 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100637 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000638 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100639 }
aliguori15859692009-04-21 23:11:53 +0000640 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100641 case '?':
aliguori15859692009-04-21 23:11:53 +0000642 case 'h':
643 help();
644 break;
645 case 'f':
646 fmt = optarg;
647 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200648 case 'r':
649 flags |= BDRV_O_RDWR;
650
651 if (!strcmp(optarg, "leaks")) {
652 fix = BDRV_FIX_LEAKS;
653 } else if (!strcmp(optarg, "all")) {
654 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
655 } else {
Fam Zhengac1307a2014-04-22 13:36:11 +0800656 error_exit("Unknown option value for -r "
657 "(expecting 'leaks' or 'all'): %s", optarg);
Kevin Wolf4534ff52012-05-11 16:07:02 +0200658 }
659 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500660 case OPTION_OUTPUT:
661 output = optarg;
662 break;
Max Reitz40055952014-07-22 22:58:42 +0200663 case 'T':
664 cache = optarg;
665 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100666 case 'q':
667 quiet = true;
668 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000669 case OPTION_OBJECT: {
670 QemuOpts *opts;
671 opts = qemu_opts_parse_noisily(&qemu_object_opts,
672 optarg, true);
673 if (!opts) {
674 return 1;
675 }
676 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000677 case OPTION_IMAGE_OPTS:
678 image_opts = true;
679 break;
aliguori15859692009-04-21 23:11:53 +0000680 }
681 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200682 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800683 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100684 }
aliguori15859692009-04-21 23:11:53 +0000685 filename = argv[optind++];
686
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500687 if (output && !strcmp(output, "json")) {
688 output_format = OFORMAT_JSON;
689 } else if (output && !strcmp(output, "human")) {
690 output_format = OFORMAT_HUMAN;
691 } else if (output) {
692 error_report("--output must be used with human or json as argument.");
693 return 1;
694 }
695
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000696 if (qemu_opts_foreach(&qemu_object_opts,
697 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200698 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000699 return 1;
700 }
701
Kevin Wolfce099542016-03-15 13:01:04 +0100702 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +0200703 if (ret < 0) {
704 error_report("Invalid source cache option: %s", cache);
705 return 1;
706 }
707
Kevin Wolfce099542016-03-15 13:01:04 +0100708 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200709 if (!blk) {
710 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900711 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200712 bs = blk_bs(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500713
714 check = g_new0(ImageCheck, 1);
715 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200716
717 if (ret == -ENOTSUP) {
Max Reitz55d492d2014-05-31 21:33:30 +0200718 error_report("This image format does not support checks");
Peter Lievenfefddf92013-10-24 08:53:34 +0200719 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500720 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200721 }
722
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500723 if (check->corruptions_fixed || check->leaks_fixed) {
724 int corruptions_fixed, leaks_fixed;
725
726 leaks_fixed = check->leaks_fixed;
727 corruptions_fixed = check->corruptions_fixed;
728
729 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100730 qprintf(quiet,
731 "The following inconsistencies were found and repaired:\n\n"
732 " %" PRId64 " leaked clusters\n"
733 " %" PRId64 " corruptions\n\n"
734 "Double checking the fixed image now...\n",
735 check->leaks_fixed,
736 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500737 }
738
739 ret = collect_image_check(bs, check, filename, fmt, 0);
740
741 check->leaks_fixed = leaks_fixed;
742 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200743 }
744
Max Reitz832390a2014-10-23 15:29:12 +0200745 if (!ret) {
746 switch (output_format) {
747 case OFORMAT_HUMAN:
748 dump_human_image_check(check, quiet);
749 break;
750 case OFORMAT_JSON:
751 dump_json_image_check(check, quiet);
752 break;
753 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500754 }
755
756 if (ret || check->check_errors) {
Max Reitz832390a2014-10-23 15:29:12 +0200757 if (ret) {
758 error_report("Check failed: %s", strerror(-ret));
759 } else {
760 error_report("Check failed");
761 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500762 ret = 1;
763 goto fail;
764 }
765
766 if (check->corruptions) {
767 ret = 2;
768 } else if (check->leaks) {
769 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200770 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500771 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000772 }
773
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500774fail:
775 qapi_free_ImageCheck(check);
Markus Armbruster26f54e92014-10-07 13:59:04 +0200776 blk_unref(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500777 return ret;
aliguori15859692009-04-21 23:11:53 +0000778}
779
Max Reitzd4a32382014-10-24 15:57:37 +0200780typedef struct CommonBlockJobCBInfo {
781 BlockDriverState *bs;
782 Error **errp;
783} CommonBlockJobCBInfo;
784
785static void common_block_job_cb(void *opaque, int ret)
786{
787 CommonBlockJobCBInfo *cbi = opaque;
788
789 if (ret < 0) {
790 error_setg_errno(cbi->errp, -ret, "Block job failed");
791 }
Max Reitzd4a32382014-10-24 15:57:37 +0200792}
793
794static void run_block_job(BlockJob *job, Error **errp)
795{
Kevin Wolfb75536c2016-04-18 17:30:17 +0200796 AioContext *aio_context = blk_get_aio_context(job->blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200797
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200798 aio_context_acquire(aio_context);
Max Reitzd4a32382014-10-24 15:57:37 +0200799 do {
800 aio_poll(aio_context, true);
John Snow62547b82015-11-02 18:28:20 -0500801 qemu_progress_print(job->len ?
802 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200803 } while (!job->ready);
804
805 block_job_complete_sync(job, errp);
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200806 aio_context_release(aio_context);
Max Reitz687fa1d2014-10-24 15:57:39 +0200807
808 /* A block job may finish instantaneously without publishing any progress,
809 * so just signal completion here */
810 qemu_progress_print(100.f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200811}
812
bellardea2384d2004-08-01 21:59:26 +0000813static int img_commit(int argc, char **argv)
814{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400815 int c, ret, flags;
Max Reitz1b22bff2014-10-24 15:57:40 +0200816 const char *filename, *fmt, *cache, *base;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200817 BlockBackend *blk;
Max Reitzd4a32382014-10-24 15:57:37 +0200818 BlockDriverState *bs, *base_bs;
Max Reitz687fa1d2014-10-24 15:57:39 +0200819 bool progress = false, quiet = false, drop = false;
Kevin Wolfce099542016-03-15 13:01:04 +0100820 bool writethrough;
Max Reitzd4a32382014-10-24 15:57:37 +0200821 Error *local_err = NULL;
822 CommonBlockJobCBInfo cbi;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000823 bool image_opts = false;
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200824 AioContext *aio_context;
bellardea2384d2004-08-01 21:59:26 +0000825
826 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400827 cache = BDRV_DEFAULT_CACHE;
Max Reitz1b22bff2014-10-24 15:57:40 +0200828 base = NULL;
bellardea2384d2004-08-01 21:59:26 +0000829 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000830 static const struct option long_options[] = {
831 {"help", no_argument, 0, 'h'},
832 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000833 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000834 {0, 0, 0, 0}
835 };
836 c = getopt_long(argc, argv, "f:ht:b:dpq",
837 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100838 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000839 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100840 }
bellardea2384d2004-08-01 21:59:26 +0000841 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100842 case '?':
bellardea2384d2004-08-01 21:59:26 +0000843 case 'h':
844 help();
845 break;
846 case 'f':
847 fmt = optarg;
848 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400849 case 't':
850 cache = optarg;
851 break;
Max Reitz1b22bff2014-10-24 15:57:40 +0200852 case 'b':
853 base = optarg;
854 /* -b implies -d */
855 drop = true;
856 break;
Max Reitz9a86fe42014-10-24 15:57:38 +0200857 case 'd':
858 drop = true;
859 break;
Max Reitz687fa1d2014-10-24 15:57:39 +0200860 case 'p':
861 progress = true;
862 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100863 case 'q':
864 quiet = true;
865 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000866 case OPTION_OBJECT: {
867 QemuOpts *opts;
868 opts = qemu_opts_parse_noisily(&qemu_object_opts,
869 optarg, true);
870 if (!opts) {
871 return 1;
872 }
873 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000874 case OPTION_IMAGE_OPTS:
875 image_opts = true;
876 break;
bellardea2384d2004-08-01 21:59:26 +0000877 }
878 }
Max Reitz687fa1d2014-10-24 15:57:39 +0200879
880 /* Progress is not shown in Quiet mode */
881 if (quiet) {
882 progress = false;
883 }
884
Kevin Wolffc11eb22013-08-05 10:53:04 +0200885 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800886 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100887 }
bellardea2384d2004-08-01 21:59:26 +0000888 filename = argv[optind++];
889
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000890 if (qemu_opts_foreach(&qemu_object_opts,
891 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200892 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000893 return 1;
894 }
895
Max Reitz9a86fe42014-10-24 15:57:38 +0200896 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
Kevin Wolfce099542016-03-15 13:01:04 +0100897 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400898 if (ret < 0) {
899 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczia3981eb2014-08-26 19:17:54 +0100900 return 1;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400901 }
902
Kevin Wolfce099542016-03-15 13:01:04 +0100903 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200904 if (!blk) {
905 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900906 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200907 bs = blk_bs(blk);
908
Max Reitz687fa1d2014-10-24 15:57:39 +0200909 qemu_progress_init(progress, 1.f);
910 qemu_progress_print(0.f, 100);
911
Max Reitz1b22bff2014-10-24 15:57:40 +0200912 if (base) {
913 base_bs = bdrv_find_backing_image(bs, base);
914 if (!base_bs) {
Max Reitz6b33f3a2016-12-01 03:05:08 +0100915 error_setg(&local_err,
916 "Did not find '%s' in the backing chain of '%s'",
917 base, filename);
Max Reitz1b22bff2014-10-24 15:57:40 +0200918 goto done;
919 }
920 } else {
921 /* This is different from QMP, which by default uses the deepest file in
922 * the backing chain (i.e., the very base); however, the traditional
923 * behavior of qemu-img commit is using the immediate backing file. */
Kevin Wolf760e0062015-06-17 14:55:21 +0200924 base_bs = backing_bs(bs);
Max Reitz1b22bff2014-10-24 15:57:40 +0200925 if (!base_bs) {
926 error_setg(&local_err, "Image does not have a backing file");
927 goto done;
928 }
bellardea2384d2004-08-01 21:59:26 +0000929 }
930
Max Reitzd4a32382014-10-24 15:57:37 +0200931 cbi = (CommonBlockJobCBInfo){
932 .errp = &local_err,
933 .bs = bs,
934 };
935
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200936 aio_context = bdrv_get_aio_context(bs);
937 aio_context_acquire(aio_context);
John Snow47970df2016-10-27 12:06:57 -0400938 commit_active_start("commit", bs, base_bs, BLOCK_JOB_DEFAULT, 0,
939 BLOCKDEV_ON_ERROR_REPORT, common_block_job_cb, &cbi,
940 &local_err, false);
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200941 aio_context_release(aio_context);
Max Reitzd4a32382014-10-24 15:57:37 +0200942 if (local_err) {
943 goto done;
944 }
945
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200946 /* When the block job completes, the BlockBackend reference will point to
947 * the old backing file. In order to avoid that the top image is already
948 * deleted, so we can still empty it afterwards, increment the reference
949 * counter here preemptively. */
Max Reitz9a86fe42014-10-24 15:57:38 +0200950 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200951 bdrv_ref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200952 }
953
Max Reitzd4a32382014-10-24 15:57:37 +0200954 run_block_job(bs->job, &local_err);
Max Reitz9a86fe42014-10-24 15:57:38 +0200955 if (local_err) {
956 goto unref_backing;
957 }
958
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200959 if (!drop && bs->drv->bdrv_make_empty) {
960 ret = bs->drv->bdrv_make_empty(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200961 if (ret) {
962 error_setg_errno(&local_err, -ret, "Could not empty %s",
963 filename);
964 goto unref_backing;
965 }
966 }
967
968unref_backing:
969 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200970 bdrv_unref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200971 }
Max Reitzd4a32382014-10-24 15:57:37 +0200972
973done:
Max Reitz687fa1d2014-10-24 15:57:39 +0200974 qemu_progress_end();
975
Markus Armbruster26f54e92014-10-07 13:59:04 +0200976 blk_unref(blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200977
978 if (local_err) {
Markus Armbruster6936f292015-02-10 15:14:02 +0100979 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900980 return 1;
981 }
Max Reitzd4a32382014-10-24 15:57:37 +0200982
983 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000984 return 0;
985}
986
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400987/*
thsf58c7b32008-06-05 21:53:49 +0000988 * Returns true iff the first sector pointed to by 'buf' contains at least
989 * a non-NUL byte.
990 *
991 * 'pnum' is set to the number of sectors (including and immediately following
992 * the first one) that are known to be in the same allocated/unallocated state.
993 */
bellardea2384d2004-08-01 21:59:26 +0000994static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
995{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000996 bool is_zero;
997 int i;
bellardea2384d2004-08-01 21:59:26 +0000998
999 if (n <= 0) {
1000 *pnum = 0;
1001 return 0;
1002 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001003 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +00001004 for(i = 1; i < n; i++) {
1005 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001006 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +00001007 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001008 }
bellardea2384d2004-08-01 21:59:26 +00001009 }
1010 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001011 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +00001012}
1013
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001014/*
Kevin Wolfa22f1232011-08-26 15:27:13 +02001015 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1016 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1017 * breaking up write requests for only small sparse areas.
1018 */
1019static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1020 int min)
1021{
1022 int ret;
1023 int num_checked, num_used;
1024
1025 if (n < min) {
1026 min = n;
1027 }
1028
1029 ret = is_allocated_sectors(buf, n, pnum);
1030 if (!ret) {
1031 return ret;
1032 }
1033
1034 num_used = *pnum;
1035 buf += BDRV_SECTOR_SIZE * *pnum;
1036 n -= *pnum;
1037 num_checked = num_used;
1038
1039 while (n > 0) {
1040 ret = is_allocated_sectors(buf, n, pnum);
1041
1042 buf += BDRV_SECTOR_SIZE * *pnum;
1043 n -= *pnum;
1044 num_checked += *pnum;
1045 if (ret) {
1046 num_used = num_checked;
1047 } else if (*pnum >= min) {
1048 break;
1049 }
1050 }
1051
1052 *pnum = num_used;
1053 return 1;
1054}
1055
1056/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001057 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1058 * buffers matches, non-zero otherwise.
1059 *
1060 * pnum is set to the number of sectors (including and immediately following
1061 * the first one) that are known to have the same comparison result
1062 */
1063static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1064 int *pnum)
1065{
Radim Krčmář8c1ac472015-02-20 17:06:15 +01001066 bool res;
1067 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001068
1069 if (n <= 0) {
1070 *pnum = 0;
1071 return 0;
1072 }
1073
1074 res = !!memcmp(buf1, buf2, 512);
1075 for(i = 1; i < n; i++) {
1076 buf1 += 512;
1077 buf2 += 512;
1078
1079 if (!!memcmp(buf1, buf2, 512) != res) {
1080 break;
1081 }
1082 }
1083
1084 *pnum = i;
1085 return res;
1086}
1087
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001088#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001089
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001090static int64_t sectors_to_bytes(int64_t sectors)
1091{
1092 return sectors << BDRV_SECTOR_BITS;
1093}
1094
1095static int64_t sectors_to_process(int64_t total, int64_t from)
1096{
1097 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1098}
1099
1100/*
1101 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1102 *
1103 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1104 * data and negative value on error.
1105 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001106 * @param blk: BlockBackend for the image
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001107 * @param sect_num: Number of first sector to check
1108 * @param sect_count: Number of sectors to check
1109 * @param filename: Name of disk file we are checking (logging purpose)
1110 * @param buffer: Allocated buffer for storing read data
1111 * @param quiet: Flag for quiet mode
1112 */
Max Reitzf1d3cd72015-02-05 13:58:18 -05001113static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001114 int sect_count, const char *filename,
1115 uint8_t *buffer, bool quiet)
1116{
1117 int pnum, ret = 0;
Eric Blake91669202016-05-06 10:26:43 -06001118 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1119 sect_count << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001120 if (ret < 0) {
1121 error_report("Error while reading offset %" PRId64 " of %s: %s",
1122 sectors_to_bytes(sect_num), filename, strerror(-ret));
1123 return ret;
1124 }
1125 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1126 if (ret || pnum != sect_count) {
1127 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1128 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1129 return 1;
1130 }
1131
1132 return 0;
1133}
1134
1135/*
1136 * Compares two images. Exit codes:
1137 *
1138 * 0 - Images are identical
1139 * 1 - Images differ
1140 * >1 - Error occurred
1141 */
1142static int img_compare(int argc, char **argv)
1143{
Max Reitz40055952014-07-22 22:58:42 +02001144 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001145 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001146 BlockDriverState *bs1, *bs2;
1147 int64_t total_sectors1, total_sectors2;
1148 uint8_t *buf1 = NULL, *buf2 = NULL;
1149 int pnum1, pnum2;
1150 int allocated1, allocated2;
1151 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1152 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001153 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001154 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001155 int64_t total_sectors;
1156 int64_t sector_num = 0;
1157 int64_t nb_sectors;
1158 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001159 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001160 bool image_opts = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001161
Max Reitz40055952014-07-22 22:58:42 +02001162 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001163 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001164 static const struct option long_options[] = {
1165 {"help", no_argument, 0, 'h'},
1166 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001167 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001168 {0, 0, 0, 0}
1169 };
1170 c = getopt_long(argc, argv, "hf:F:T:pqs",
1171 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001172 if (c == -1) {
1173 break;
1174 }
1175 switch (c) {
1176 case '?':
1177 case 'h':
1178 help();
1179 break;
1180 case 'f':
1181 fmt1 = optarg;
1182 break;
1183 case 'F':
1184 fmt2 = optarg;
1185 break;
Max Reitz40055952014-07-22 22:58:42 +02001186 case 'T':
1187 cache = optarg;
1188 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001189 case 'p':
1190 progress = true;
1191 break;
1192 case 'q':
1193 quiet = true;
1194 break;
1195 case 's':
1196 strict = true;
1197 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001198 case OPTION_OBJECT: {
1199 QemuOpts *opts;
1200 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1201 optarg, true);
1202 if (!opts) {
1203 ret = 2;
1204 goto out4;
1205 }
1206 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001207 case OPTION_IMAGE_OPTS:
1208 image_opts = true;
1209 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001210 }
1211 }
1212
1213 /* Progress is not shown in Quiet mode */
1214 if (quiet) {
1215 progress = false;
1216 }
1217
1218
Kevin Wolffc11eb22013-08-05 10:53:04 +02001219 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001220 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001221 }
1222 filename1 = argv[optind++];
1223 filename2 = argv[optind++];
1224
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001225 if (qemu_opts_foreach(&qemu_object_opts,
1226 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001227 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001228 ret = 2;
1229 goto out4;
1230 }
1231
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001232 /* Initialize before goto out */
1233 qemu_progress_init(progress, 2.0);
1234
Kevin Wolfce099542016-03-15 13:01:04 +01001235 flags = 0;
1236 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001237 if (ret < 0) {
1238 error_report("Invalid source cache option: %s", cache);
1239 ret = 2;
1240 goto out3;
1241 }
1242
Kevin Wolfce099542016-03-15 13:01:04 +01001243 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001244 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001245 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001246 goto out3;
1247 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001248
Kevin Wolfce099542016-03-15 13:01:04 +01001249 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001250 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001251 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001252 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001253 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001254 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001255 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001256
Max Reitzf1d3cd72015-02-05 13:58:18 -05001257 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1258 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1259 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001260 if (total_sectors1 < 0) {
1261 error_report("Can't get size of %s: %s",
1262 filename1, strerror(-total_sectors1));
1263 ret = 4;
1264 goto out;
1265 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001266 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001267 if (total_sectors2 < 0) {
1268 error_report("Can't get size of %s: %s",
1269 filename2, strerror(-total_sectors2));
1270 ret = 4;
1271 goto out;
1272 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001273 total_sectors = MIN(total_sectors1, total_sectors2);
1274 progress_base = MAX(total_sectors1, total_sectors2);
1275
1276 qemu_progress_print(0, 100);
1277
1278 if (strict && total_sectors1 != total_sectors2) {
1279 ret = 1;
1280 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1281 goto out;
1282 }
1283
1284 for (;;) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001285 int64_t status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001286 BlockDriverState *file;
1287
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001288 nb_sectors = sectors_to_process(total_sectors, sector_num);
1289 if (nb_sectors <= 0) {
1290 break;
1291 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001292 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1293 total_sectors1 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001294 &pnum1, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001295 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001296 ret = 3;
1297 error_report("Sector allocation test failed for %s", filename1);
1298 goto out;
1299 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001300 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001301
Fam Zheng25ad8e62016-01-13 16:37:41 +08001302 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1303 total_sectors2 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001304 &pnum2, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001305 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001306 ret = 3;
1307 error_report("Sector allocation test failed for %s", filename2);
1308 goto out;
1309 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001310 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1311 if (pnum1) {
1312 nb_sectors = MIN(nb_sectors, pnum1);
1313 }
1314 if (pnum2) {
1315 nb_sectors = MIN(nb_sectors, pnum2);
1316 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001317
Fam Zheng25ad8e62016-01-13 16:37:41 +08001318 if (strict) {
1319 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1320 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1321 ret = 1;
1322 qprintf(quiet, "Strict mode: Offset %" PRId64
1323 " block status mismatch!\n",
1324 sectors_to_bytes(sector_num));
1325 goto out;
1326 }
1327 }
1328 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1329 nb_sectors = MIN(pnum1, pnum2);
1330 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001331 if (allocated1) {
Eric Blake91669202016-05-06 10:26:43 -06001332 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1333 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001334 if (ret < 0) {
1335 error_report("Error while reading offset %" PRId64 " of %s:"
1336 " %s", sectors_to_bytes(sector_num), filename1,
1337 strerror(-ret));
1338 ret = 4;
1339 goto out;
1340 }
Eric Blake91669202016-05-06 10:26:43 -06001341 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1342 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001343 if (ret < 0) {
1344 error_report("Error while reading offset %" PRId64
1345 " of %s: %s", sectors_to_bytes(sector_num),
1346 filename2, strerror(-ret));
1347 ret = 4;
1348 goto out;
1349 }
1350 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1351 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001352 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1353 sectors_to_bytes(
1354 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001355 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001356 goto out;
1357 }
1358 }
1359 } else {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001360
1361 if (allocated1) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001362 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001363 filename1, buf1, quiet);
1364 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001365 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001366 filename2, buf1, quiet);
1367 }
1368 if (ret) {
1369 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001370 error_report("Error while reading offset %" PRId64 ": %s",
1371 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001372 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001373 }
1374 goto out;
1375 }
1376 }
1377 sector_num += nb_sectors;
1378 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1379 }
1380
1381 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001382 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001383 int64_t total_sectors_over;
1384 const char *filename_over;
1385
1386 qprintf(quiet, "Warning: Image size mismatch!\n");
1387 if (total_sectors1 > total_sectors2) {
1388 total_sectors_over = total_sectors1;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001389 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001390 filename_over = filename1;
1391 } else {
1392 total_sectors_over = total_sectors2;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001393 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001394 filename_over = filename2;
1395 }
1396
1397 for (;;) {
1398 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1399 if (nb_sectors <= 0) {
1400 break;
1401 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001402 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL, sector_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001403 nb_sectors, &pnum);
1404 if (ret < 0) {
1405 ret = 3;
1406 error_report("Sector allocation test failed for %s",
1407 filename_over);
1408 goto out;
1409
1410 }
1411 nb_sectors = pnum;
1412 if (ret) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001413 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001414 filename_over, buf1, quiet);
1415 if (ret) {
1416 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001417 error_report("Error while reading offset %" PRId64
1418 " of %s: %s", sectors_to_bytes(sector_num),
1419 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001420 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001421 }
1422 goto out;
1423 }
1424 }
1425 sector_num += nb_sectors;
1426 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1427 }
1428 }
1429
1430 qprintf(quiet, "Images are identical.\n");
1431 ret = 0;
1432
1433out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001434 qemu_vfree(buf1);
1435 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001436 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001437out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001438 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001439out3:
1440 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001441out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001442 return ret;
1443}
1444
Kevin Wolf690c7302015-03-19 13:33:32 +01001445enum ImgConvertBlockStatus {
1446 BLK_DATA,
1447 BLK_ZERO,
1448 BLK_BACKING_FILE,
1449};
1450
1451typedef struct ImgConvertState {
1452 BlockBackend **src;
1453 int64_t *src_sectors;
1454 int src_cur, src_num;
1455 int64_t src_cur_offset;
1456 int64_t total_sectors;
1457 int64_t allocated_sectors;
1458 enum ImgConvertBlockStatus status;
1459 int64_t sector_next_status;
1460 BlockBackend *target;
1461 bool has_zero_init;
1462 bool compressed;
1463 bool target_has_backing;
1464 int min_sparse;
1465 size_t cluster_sectors;
1466 size_t buf_sectors;
1467} ImgConvertState;
1468
1469static void convert_select_part(ImgConvertState *s, int64_t sector_num)
1470{
1471 assert(sector_num >= s->src_cur_offset);
1472 while (sector_num - s->src_cur_offset >= s->src_sectors[s->src_cur]) {
1473 s->src_cur_offset += s->src_sectors[s->src_cur];
1474 s->src_cur++;
1475 assert(s->src_cur < s->src_num);
1476 }
1477}
1478
1479static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1480{
1481 int64_t ret;
1482 int n;
1483
1484 convert_select_part(s, sector_num);
1485
1486 assert(s->total_sectors > sector_num);
1487 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1488
1489 if (s->sector_next_status <= sector_num) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08001490 BlockDriverState *file;
Kevin Wolf690c7302015-03-19 13:33:32 +01001491 ret = bdrv_get_block_status(blk_bs(s->src[s->src_cur]),
1492 sector_num - s->src_cur_offset,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001493 n, &n, &file);
Kevin Wolf690c7302015-03-19 13:33:32 +01001494 if (ret < 0) {
1495 return ret;
1496 }
1497
1498 if (ret & BDRV_BLOCK_ZERO) {
1499 s->status = BLK_ZERO;
1500 } else if (ret & BDRV_BLOCK_DATA) {
1501 s->status = BLK_DATA;
1502 } else if (!s->target_has_backing) {
1503 /* Without a target backing file we must copy over the contents of
1504 * the backing file as well. */
Ren Kimura263a6f42016-04-28 01:04:58 +09001505 /* Check block status of the backing file chain to avoid
Kevin Wolf690c7302015-03-19 13:33:32 +01001506 * needlessly reading zeroes and limiting the iteration to the
1507 * buffer size */
Ren Kimura263a6f42016-04-28 01:04:58 +09001508 ret = bdrv_get_block_status_above(blk_bs(s->src[s->src_cur]), NULL,
1509 sector_num - s->src_cur_offset,
1510 n, &n, &file);
1511 if (ret < 0) {
1512 return ret;
1513 }
1514
1515 if (ret & BDRV_BLOCK_ZERO) {
1516 s->status = BLK_ZERO;
1517 } else {
1518 s->status = BLK_DATA;
1519 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001520 } else {
1521 s->status = BLK_BACKING_FILE;
1522 }
1523
1524 s->sector_next_status = sector_num + n;
1525 }
1526
1527 n = MIN(n, s->sector_next_status - sector_num);
1528 if (s->status == BLK_DATA) {
1529 n = MIN(n, s->buf_sectors);
1530 }
1531
1532 /* We need to write complete clusters for compressed images, so if an
1533 * unallocated area is shorter than that, we must consider the whole
1534 * cluster allocated. */
1535 if (s->compressed) {
1536 if (n < s->cluster_sectors) {
1537 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1538 s->status = BLK_DATA;
1539 } else {
1540 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1541 }
1542 }
1543
1544 return n;
1545}
1546
1547static int convert_read(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1548 uint8_t *buf)
1549{
1550 int n;
1551 int ret;
1552
Kevin Wolf690c7302015-03-19 13:33:32 +01001553 assert(nb_sectors <= s->buf_sectors);
1554 while (nb_sectors > 0) {
1555 BlockBackend *blk;
1556 int64_t bs_sectors;
1557
1558 /* In the case of compression with multiple source files, we can get a
1559 * nb_sectors that spreads into the next part. So we must be able to
1560 * read across multiple BDSes for one convert_read() call. */
1561 convert_select_part(s, sector_num);
1562 blk = s->src[s->src_cur];
1563 bs_sectors = s->src_sectors[s->src_cur];
1564
1565 n = MIN(nb_sectors, bs_sectors - (sector_num - s->src_cur_offset));
Eric Blake91669202016-05-06 10:26:43 -06001566 ret = blk_pread(blk,
1567 (sector_num - s->src_cur_offset) << BDRV_SECTOR_BITS,
1568 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001569 if (ret < 0) {
1570 return ret;
1571 }
1572
1573 sector_num += n;
1574 nb_sectors -= n;
1575 buf += n * BDRV_SECTOR_SIZE;
1576 }
1577
1578 return 0;
1579}
1580
1581static int convert_write(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1582 const uint8_t *buf)
1583{
1584 int ret;
1585
1586 while (nb_sectors > 0) {
1587 int n = nb_sectors;
1588
1589 switch (s->status) {
1590 case BLK_BACKING_FILE:
1591 /* If we have a backing file, leave clusters unallocated that are
1592 * unallocated in the source image, so that the backing file is
1593 * visible at the respective offset. */
1594 assert(s->target_has_backing);
1595 break;
1596
1597 case BLK_DATA:
1598 /* We must always write compressed clusters as a whole, so don't
1599 * try to find zeroed parts in the buffer. We can only save the
1600 * write if the buffer is completely zeroed and we're allowed to
1601 * keep the target sparse. */
1602 if (s->compressed) {
1603 if (s->has_zero_init && s->min_sparse &&
1604 buffer_is_zero(buf, n * BDRV_SECTOR_SIZE))
1605 {
1606 assert(!s->target_has_backing);
1607 break;
1608 }
1609
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001610 ret = blk_pwrite_compressed(s->target,
1611 sector_num << BDRV_SECTOR_BITS,
1612 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001613 if (ret < 0) {
1614 return ret;
1615 }
1616 break;
1617 }
1618
1619 /* If there is real non-zero data or we're told to keep the target
1620 * fully allocated (-S 0), we must write it. Otherwise we can treat
1621 * it as zero sectors. */
1622 if (!s->min_sparse ||
1623 is_allocated_sectors_min(buf, n, &n, s->min_sparse))
1624 {
Eric Blake91669202016-05-06 10:26:43 -06001625 ret = blk_pwrite(s->target, sector_num << BDRV_SECTOR_BITS,
1626 buf, n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001627 if (ret < 0) {
1628 return ret;
1629 }
1630 break;
1631 }
1632 /* fall-through */
1633
1634 case BLK_ZERO:
1635 if (s->has_zero_init) {
1636 break;
1637 }
Eric Blaked004bd52016-05-24 16:25:20 -06001638 ret = blk_pwrite_zeroes(s->target, sector_num << BDRV_SECTOR_BITS,
1639 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001640 if (ret < 0) {
1641 return ret;
1642 }
1643 break;
1644 }
1645
1646 sector_num += n;
1647 nb_sectors -= n;
1648 buf += n * BDRV_SECTOR_SIZE;
1649 }
1650
1651 return 0;
1652}
1653
1654static int convert_do_copy(ImgConvertState *s)
1655{
1656 uint8_t *buf = NULL;
1657 int64_t sector_num, allocated_done;
1658 int ret;
1659 int n;
1660
1661 /* Check whether we have zero initialisation or can get it efficiently */
1662 s->has_zero_init = s->min_sparse && !s->target_has_backing
1663 ? bdrv_has_zero_init(blk_bs(s->target))
1664 : false;
1665
1666 if (!s->has_zero_init && !s->target_has_backing &&
1667 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1668 {
Kevin Wolf720ff282016-06-16 15:13:15 +02001669 ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP);
Kevin Wolf690c7302015-03-19 13:33:32 +01001670 if (ret == 0) {
1671 s->has_zero_init = true;
1672 }
1673 }
1674
1675 /* Allocate buffer for copied data. For compressed images, only one cluster
1676 * can be copied at a time. */
1677 if (s->compressed) {
1678 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1679 error_report("invalid cluster size");
1680 ret = -EINVAL;
1681 goto fail;
1682 }
1683 s->buf_sectors = s->cluster_sectors;
1684 }
1685 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1686
1687 /* Calculate allocated sectors for progress */
1688 s->allocated_sectors = 0;
1689 sector_num = 0;
1690 while (sector_num < s->total_sectors) {
1691 n = convert_iteration_sectors(s, sector_num);
1692 if (n < 0) {
1693 ret = n;
1694 goto fail;
1695 }
Max Reitzaad15de2016-03-24 23:33:57 +01001696 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1697 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001698 s->allocated_sectors += n;
1699 }
1700 sector_num += n;
1701 }
1702
1703 /* Do the copy */
1704 s->src_cur = 0;
1705 s->src_cur_offset = 0;
1706 s->sector_next_status = 0;
1707
1708 sector_num = 0;
1709 allocated_done = 0;
1710
1711 while (sector_num < s->total_sectors) {
1712 n = convert_iteration_sectors(s, sector_num);
1713 if (n < 0) {
1714 ret = n;
1715 goto fail;
1716 }
Max Reitzaad15de2016-03-24 23:33:57 +01001717 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1718 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001719 allocated_done += n;
1720 qemu_progress_print(100.0 * allocated_done / s->allocated_sectors,
1721 0);
1722 }
1723
Max Reitzaad15de2016-03-24 23:33:57 +01001724 if (s->status == BLK_DATA) {
1725 ret = convert_read(s, sector_num, n, buf);
1726 if (ret < 0) {
1727 error_report("error while reading sector %" PRId64
1728 ": %s", sector_num, strerror(-ret));
1729 goto fail;
1730 }
1731 } else if (!s->min_sparse && s->status == BLK_ZERO) {
1732 n = MIN(n, s->buf_sectors);
1733 memset(buf, 0, n * BDRV_SECTOR_SIZE);
1734 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001735 }
1736
1737 ret = convert_write(s, sector_num, n, buf);
1738 if (ret < 0) {
1739 error_report("error while writing sector %" PRId64
1740 ": %s", sector_num, strerror(-ret));
1741 goto fail;
1742 }
1743
1744 sector_num += n;
1745 }
1746
1747 if (s->compressed) {
1748 /* signal EOF to align */
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001749 ret = blk_pwrite_compressed(s->target, 0, NULL, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001750 if (ret < 0) {
1751 goto fail;
1752 }
1753 }
1754
1755 ret = 0;
1756fail:
1757 qemu_vfree(buf);
1758 return ret;
1759}
1760
bellardea2384d2004-08-01 21:59:26 +00001761static int img_convert(int argc, char **argv)
1762{
Kevin Wolf690c7302015-03-19 13:33:32 +01001763 int c, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001764 int64_t ret = 0;
Max Reitz40055952014-07-22 22:58:42 +02001765 int progress = 0, flags, src_flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001766 bool writethrough, src_writethrough;
Max Reitz40055952014-07-22 22:58:42 +02001767 const char *fmt, *out_fmt, *cache, *src_cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001768 BlockDriver *drv, *proto_drv;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001769 BlockBackend **blk = NULL, *out_blk = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001770 BlockDriverState **bs = NULL, *out_bs = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001771 int64_t total_sectors;
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001772 int64_t *bs_sectors = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001773 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardfaea38e2006-08-05 21:31:00 +00001774 BlockDriverInfo bdi;
Chunyan Liu83d05212014-06-05 17:20:51 +08001775 QemuOpts *opts = NULL;
1776 QemuOptsList *create_opts = NULL;
1777 const char *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001778 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001779 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001780 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001781 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001782 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001783 QemuOpts *sn_opts = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001784 ImgConvertState state;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001785 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +00001786
1787 fmt = NULL;
1788 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001789 cache = "unsafe";
Max Reitz40055952014-07-22 22:58:42 +02001790 src_cache = BDRV_DEFAULT_CACHE;
thsf58c7b32008-06-05 21:53:49 +00001791 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001792 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001793 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001794 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001795 static const struct option long_options[] = {
1796 {"help", no_argument, 0, 'h'},
1797 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001798 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001799 {0, 0, 0, 0}
1800 };
1801 c = getopt_long(argc, argv, "hf:O:B:ce6o:s:l:S:pt:T:qn",
1802 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001803 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001804 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001805 }
bellardea2384d2004-08-01 21:59:26 +00001806 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001807 case '?':
bellardea2384d2004-08-01 21:59:26 +00001808 case 'h':
1809 help();
1810 break;
1811 case 'f':
1812 fmt = optarg;
1813 break;
1814 case 'O':
1815 out_fmt = optarg;
1816 break;
thsf58c7b32008-06-05 21:53:49 +00001817 case 'B':
1818 out_baseimg = optarg;
1819 break;
bellardea2384d2004-08-01 21:59:26 +00001820 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001821 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001822 break;
1823 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001824 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001825 "encryption\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001826 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001827 goto fail_getopt;
thsec36ba12007-09-16 21:59:02 +00001828 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001829 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001830 "compat6\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001831 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001832 goto fail_getopt;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001833 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001834 if (!is_valid_option_list(optarg)) {
1835 error_report("Invalid option list: %s", optarg);
1836 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001837 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01001838 }
1839 if (!options) {
1840 options = g_strdup(optarg);
1841 } else {
1842 char *old_options = options;
1843 options = g_strdup_printf("%s,%s", options, optarg);
1844 g_free(old_options);
1845 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001846 break;
edison51ef6722010-09-21 19:58:41 -07001847 case 's':
1848 snapshot_name = optarg;
1849 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001850 case 'l':
1851 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01001852 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
1853 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08001854 if (!sn_opts) {
1855 error_report("Failed in parsing snapshot param '%s'",
1856 optarg);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001857 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001858 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08001859 }
1860 } else {
1861 snapshot_name = optarg;
1862 }
1863 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001864 case 'S':
1865 {
1866 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001867 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +02001868 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +01001869 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001870 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001871 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001872 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001873 }
1874
1875 min_sparse = sval / BDRV_SECTOR_SIZE;
1876 break;
1877 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001878 case 'p':
1879 progress = 1;
1880 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001881 case 't':
1882 cache = optarg;
1883 break;
Max Reitz40055952014-07-22 22:58:42 +02001884 case 'T':
1885 src_cache = optarg;
1886 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001887 case 'q':
1888 quiet = true;
1889 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001890 case 'n':
1891 skip_create = 1;
1892 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001893 case OPTION_OBJECT:
1894 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1895 optarg, true);
1896 if (!opts) {
1897 goto fail_getopt;
1898 }
1899 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001900 case OPTION_IMAGE_OPTS:
1901 image_opts = true;
1902 break;
bellardea2384d2004-08-01 21:59:26 +00001903 }
1904 }
ths3b46e622007-09-17 08:09:54 +00001905
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001906 if (qemu_opts_foreach(&qemu_object_opts,
1907 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001908 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001909 goto fail_getopt;
1910 }
1911
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001912 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001913 if (quiet) {
1914 progress = 0;
1915 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001916 qemu_progress_init(progress, 1.0);
1917
balrog926c2d22007-10-31 01:11:44 +00001918 bs_n = argc - optind - 1;
Kevin Wolfa283cb62014-02-21 16:24:07 +01001919 out_filename = bs_n >= 1 ? argv[argc - 1] : NULL;
thsf58c7b32008-06-05 21:53:49 +00001920
Kevin Wolf2dc83282014-02-21 16:24:05 +01001921 if (options && has_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001922 ret = print_block_option_help(out_filename, out_fmt);
1923 goto out;
1924 }
1925
bellardea2384d2004-08-01 21:59:26 +00001926 if (bs_n < 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001927 error_exit("Must specify image file name");
ths5fafdf22007-09-16 21:08:06 +00001928 }
bellardea2384d2004-08-01 21:59:26 +00001929
thsf58c7b32008-06-05 21:53:49 +00001930
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001931 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001932 error_report("-B makes no sense when concatenating multiple input "
1933 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001934 ret = -1;
1935 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001936 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001937
Kevin Wolfce099542016-03-15 13:01:04 +01001938 src_flags = 0;
1939 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001940 if (ret < 0) {
1941 error_report("Invalid source cache option: %s", src_cache);
1942 goto out;
1943 }
1944
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001945 qemu_progress_print(0, 100);
1946
Markus Armbruster26f54e92014-10-07 13:59:04 +02001947 blk = g_new0(BlockBackend *, bs_n);
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001948 bs = g_new0(BlockDriverState *, bs_n);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001949 bs_sectors = g_new(int64_t, bs_n);
balrog926c2d22007-10-31 01:11:44 +00001950
1951 total_sectors = 0;
1952 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Max Reitzefaa7c42016-03-16 19:54:38 +01001953 blk[bs_i] = img_open(image_opts, argv[optind + bs_i],
Kevin Wolfce099542016-03-15 13:01:04 +01001954 fmt, src_flags, src_writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001955 if (!blk[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001956 ret = -1;
1957 goto out;
1958 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001959 bs[bs_i] = blk_bs(blk[bs_i]);
Max Reitzf1d3cd72015-02-05 13:58:18 -05001960 bs_sectors[bs_i] = blk_nb_sectors(blk[bs_i]);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001961 if (bs_sectors[bs_i] < 0) {
1962 error_report("Could not get size of %s: %s",
1963 argv[optind + bs_i], strerror(-bs_sectors[bs_i]));
1964 ret = -1;
1965 goto out;
1966 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001967 total_sectors += bs_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00001968 }
bellardea2384d2004-08-01 21:59:26 +00001969
Wenchao Xiaef806542013-12-04 17:10:57 +08001970 if (sn_opts) {
Peter Maydell10d6eda2017-02-10 16:28:24 +00001971 bdrv_snapshot_load_tmp(bs[0],
1972 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1973 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1974 &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001975 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001976 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001977 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001978 ret = -1;
1979 goto out;
1980 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001981
1982 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001983 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001984 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001985 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08001986 ret = -1;
1987 goto out;
edison51ef6722010-09-21 19:58:41 -07001988 }
1989
Kevin Wolfefa84d42009-05-18 16:42:12 +02001990 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001991 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001992 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001993 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001994 ret = -1;
1995 goto out;
1996 }
balrog926c2d22007-10-31 01:11:44 +00001997
Max Reitzb65a5e12015-02-05 13:58:12 -05001998 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001999 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +01002000 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002001 ret = -1;
2002 goto out;
2003 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09002004
Max Reitz2e024cd2015-02-11 09:58:46 -05002005 if (!skip_create) {
2006 if (!drv->create_opts) {
2007 error_report("Format driver '%s' does not support image creation",
2008 drv->format_name);
2009 ret = -1;
2010 goto out;
2011 }
Max Reitzf75613c2014-12-02 18:32:46 +01002012
Max Reitz2e024cd2015-02-11 09:58:46 -05002013 if (!proto_drv->create_opts) {
2014 error_report("Protocol driver '%s' does not support image creation",
2015 proto_drv->format_name);
2016 ret = -1;
2017 goto out;
2018 }
Max Reitzf75613c2014-12-02 18:32:46 +01002019
Max Reitz2e024cd2015-02-11 09:58:46 -05002020 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2021 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002022
Max Reitz2e024cd2015-02-11 09:58:46 -05002023 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002024 if (options) {
2025 qemu_opts_do_parse(opts, options, NULL, &local_err);
2026 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002027 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002028 ret = -1;
2029 goto out;
2030 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002031 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002032
Markus Armbruster39101f22015-02-12 16:46:36 +01002033 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_sectors * 512,
2034 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002035 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2036 if (ret < 0) {
2037 goto out;
2038 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002039 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002040
Kevin Wolfa18953f2010-10-14 15:46:04 +02002041 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002042 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002043 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002044 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002045 }
2046
Kevin Wolfefa84d42009-05-18 16:42:12 +02002047 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01002048 if (compress) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002049 bool encryption =
2050 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2051 const char *preallocation =
2052 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002053
Pavel Butsykin35fadca2016-07-22 11:17:48 +03002054 if (!drv->bdrv_co_pwritev_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002055 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002056 ret = -1;
2057 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002058 }
2059
Chunyan Liu83d05212014-06-05 17:20:51 +08002060 if (encryption) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002061 error_report("Compression and encryption not supported at "
2062 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002063 ret = -1;
2064 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002065 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002066
Chunyan Liu83d05212014-06-05 17:20:51 +08002067 if (preallocation
2068 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002069 {
2070 error_report("Compression and preallocation not supported at "
2071 "the same time");
2072 ret = -1;
2073 goto out;
2074 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002075 }
2076
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002077 if (!skip_create) {
2078 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002079 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002080 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002081 error_reportf_err(local_err, "%s: error while converting %s: ",
2082 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002083 goto out;
bellardea2384d2004-08-01 21:59:26 +00002084 }
2085 }
ths3b46e622007-09-17 08:09:54 +00002086
Peter Lieven5a37b602013-10-24 12:07:06 +02002087 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002088 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002089 if (ret < 0) {
2090 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002091 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002092 }
2093
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002094 /* XXX we should allow --image-opts to trigger use of
2095 * img_open() here, but then we have trouble with
2096 * the bdrv_create() call which takes different params.
2097 * Not critical right now, so fix can wait...
2098 */
Kevin Wolfce099542016-03-15 13:01:04 +01002099 out_blk = img_open_file(out_filename, out_fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002100 if (!out_blk) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002101 ret = -1;
2102 goto out;
2103 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002104 out_bs = blk_bs(out_blk);
bellardea2384d2004-08-01 21:59:26 +00002105
Eric Blake5def6b82016-06-23 16:37:19 -06002106 /* increase bufsectors from the default 4096 (2M) if opt_transfer
Peter Lievenf2521c92013-11-27 11:07:06 +01002107 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2108 * as maximum. */
2109 bufsectors = MIN(32768,
Eric Blake5def6b82016-06-23 16:37:19 -06002110 MAX(bufsectors,
2111 MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
Eric Blakeb9f78552016-06-23 16:37:21 -06002112 out_bs->bl.pdiscard_alignment >>
2113 BDRV_SECTOR_BITS)));
Peter Lievenf2521c92013-11-27 11:07:06 +01002114
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002115 if (skip_create) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05002116 int64_t output_sectors = blk_nb_sectors(out_blk);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002117 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002118 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002119 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002120 ret = -1;
2121 goto out;
Markus Armbruster43716fa2014-06-26 13:23:21 +02002122 } else if (output_sectors < total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002123 error_report("output file is smaller than input file");
2124 ret = -1;
2125 goto out;
2126 }
2127 }
2128
Peter Lieven24f833c2013-11-27 11:07:07 +01002129 cluster_sectors = 0;
2130 ret = bdrv_get_info(out_bs, &bdi);
2131 if (ret < 0) {
2132 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002133 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002134 goto out;
2135 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002136 } else {
Fam Zheng85f49ca2014-05-06 21:08:43 +08002137 compress = compress || bdi.needs_compressed_writes;
Peter Lieven24f833c2013-11-27 11:07:07 +01002138 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2139 }
2140
Kevin Wolf690c7302015-03-19 13:33:32 +01002141 state = (ImgConvertState) {
2142 .src = blk,
2143 .src_sectors = bs_sectors,
2144 .src_num = bs_n,
2145 .total_sectors = total_sectors,
2146 .target = out_blk,
2147 .compressed = compress,
2148 .target_has_backing = (bool) out_baseimg,
2149 .min_sparse = min_sparse,
2150 .cluster_sectors = cluster_sectors,
2151 .buf_sectors = bufsectors,
2152 };
2153 ret = convert_do_copy(&state);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002154
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002155out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002156 if (!ret) {
2157 qemu_progress_print(100, 0);
2158 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002159 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002160 qemu_opts_del(opts);
2161 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002162 qemu_opts_del(sn_opts);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002163 blk_unref(out_blk);
Markus Armbruster9ba10c92014-10-07 13:59:08 +02002164 g_free(bs);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002165 if (blk) {
2166 for (bs_i = 0; bs_i < bs_n; bs_i++) {
2167 blk_unref(blk[bs_i]);
2168 }
2169 g_free(blk);
2170 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02002171 g_free(bs_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002172fail_getopt:
2173 g_free(options);
2174
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002175 if (ret) {
2176 return 1;
2177 }
bellardea2384d2004-08-01 21:59:26 +00002178 return 0;
2179}
2180
bellard57d1a2b2004-08-03 21:15:11 +00002181
bellardfaea38e2006-08-05 21:31:00 +00002182static void dump_snapshots(BlockDriverState *bs)
2183{
2184 QEMUSnapshotInfo *sn_tab, *sn;
2185 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002186
2187 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2188 if (nb_sns <= 0)
2189 return;
2190 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002191 bdrv_snapshot_dump(fprintf, stdout, NULL);
2192 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002193 for(i = 0; i < nb_sns; i++) {
2194 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002195 bdrv_snapshot_dump(fprintf, stdout, sn);
2196 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002197 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002198 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002199}
2200
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002201static void dump_json_image_info_list(ImageInfoList *list)
2202{
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002203 QString *str;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002204 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002205 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002206
2207 visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2208 visit_complete(v, &obj);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002209 str = qobject_to_json_pretty(obj);
2210 assert(str != NULL);
2211 printf("%s\n", qstring_get_str(str));
2212 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002213 visit_free(v);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002214 QDECREF(str);
2215}
2216
Benoît Canetc054b3f2012-09-05 13:09:02 +02002217static void dump_json_image_info(ImageInfo *info)
2218{
Benoît Canetc054b3f2012-09-05 13:09:02 +02002219 QString *str;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002220 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002221 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002222
2223 visit_type_ImageInfo(v, NULL, &info, &error_abort);
2224 visit_complete(v, &obj);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002225 str = qobject_to_json_pretty(obj);
2226 assert(str != NULL);
2227 printf("%s\n", qstring_get_str(str));
2228 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002229 visit_free(v);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002230 QDECREF(str);
2231}
2232
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002233static void dump_human_image_info_list(ImageInfoList *list)
2234{
2235 ImageInfoList *elem;
2236 bool delim = false;
2237
2238 for (elem = list; elem; elem = elem->next) {
2239 if (delim) {
2240 printf("\n");
2241 }
2242 delim = true;
2243
Wenchao Xia5b917042013-05-25 11:09:45 +08002244 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002245 }
2246}
2247
2248static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2249{
2250 return strcmp(a, b) == 0;
2251}
2252
2253/**
2254 * Open an image file chain and return an ImageInfoList
2255 *
2256 * @filename: topmost image filename
2257 * @fmt: topmost image format (may be NULL to autodetect)
2258 * @chain: true - enumerate entire backing file chain
2259 * false - only topmost image file
2260 *
2261 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2262 * image file. If there was an error a message will have been printed to
2263 * stderr.
2264 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002265static ImageInfoList *collect_image_info_list(bool image_opts,
2266 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002267 const char *fmt,
2268 bool chain)
2269{
2270 ImageInfoList *head = NULL;
2271 ImageInfoList **last = &head;
2272 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002273 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002274
2275 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2276
2277 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002278 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002279 BlockDriverState *bs;
2280 ImageInfo *info;
2281 ImageInfoList *elem;
2282
2283 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2284 error_report("Backing file '%s' creates an infinite loop.",
2285 filename);
2286 goto err;
2287 }
2288 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2289
Max Reitzefaa7c42016-03-16 19:54:38 +01002290 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01002291 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002292 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002293 goto err;
2294 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002295 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002296
Wenchao Xia43526ec2013-06-06 12:27:58 +08002297 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002298 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002299 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002300 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002301 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002302 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002303
2304 elem = g_new0(ImageInfoList, 1);
2305 elem->value = info;
2306 *last = elem;
2307 last = &elem->next;
2308
Markus Armbruster26f54e92014-10-07 13:59:04 +02002309 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002310
2311 filename = fmt = NULL;
2312 if (chain) {
2313 if (info->has_full_backing_filename) {
2314 filename = info->full_backing_filename;
2315 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002316 error_report("Could not determine absolute backing filename,"
2317 " but backing filename '%s' present",
2318 info->backing_filename);
2319 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002320 }
2321 if (info->has_backing_filename_format) {
2322 fmt = info->backing_filename_format;
2323 }
2324 }
2325 }
2326 g_hash_table_destroy(filenames);
2327 return head;
2328
2329err:
2330 qapi_free_ImageInfoList(head);
2331 g_hash_table_destroy(filenames);
2332 return NULL;
2333}
2334
Benoît Canetc054b3f2012-09-05 13:09:02 +02002335static int img_info(int argc, char **argv)
2336{
2337 int c;
2338 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002339 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002340 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002341 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002342 bool image_opts = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002343
bellardea2384d2004-08-01 21:59:26 +00002344 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002345 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002346 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02002347 int option_index = 0;
2348 static const struct option long_options[] = {
2349 {"help", no_argument, 0, 'h'},
2350 {"format", required_argument, 0, 'f'},
2351 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002352 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002353 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002354 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Benoît Canetc054b3f2012-09-05 13:09:02 +02002355 {0, 0, 0, 0}
2356 };
2357 c = getopt_long(argc, argv, "f:h",
2358 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002359 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002360 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002361 }
bellardea2384d2004-08-01 21:59:26 +00002362 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002363 case '?':
bellardea2384d2004-08-01 21:59:26 +00002364 case 'h':
2365 help();
2366 break;
2367 case 'f':
2368 fmt = optarg;
2369 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002370 case OPTION_OUTPUT:
2371 output = optarg;
2372 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002373 case OPTION_BACKING_CHAIN:
2374 chain = true;
2375 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002376 case OPTION_OBJECT: {
2377 QemuOpts *opts;
2378 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2379 optarg, true);
2380 if (!opts) {
2381 return 1;
2382 }
2383 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002384 case OPTION_IMAGE_OPTS:
2385 image_opts = true;
2386 break;
bellardea2384d2004-08-01 21:59:26 +00002387 }
2388 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002389 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002390 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002391 }
bellardea2384d2004-08-01 21:59:26 +00002392 filename = argv[optind++];
2393
Benoît Canetc054b3f2012-09-05 13:09:02 +02002394 if (output && !strcmp(output, "json")) {
2395 output_format = OFORMAT_JSON;
2396 } else if (output && !strcmp(output, "human")) {
2397 output_format = OFORMAT_HUMAN;
2398 } else if (output) {
2399 error_report("--output must be used with human or json as argument.");
2400 return 1;
2401 }
2402
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002403 if (qemu_opts_foreach(&qemu_object_opts,
2404 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002405 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002406 return 1;
2407 }
2408
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002409 list = collect_image_info_list(image_opts, filename, fmt, chain);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002410 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002411 return 1;
2412 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002413
Benoît Canetc054b3f2012-09-05 13:09:02 +02002414 switch (output_format) {
2415 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002416 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002417 break;
2418 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002419 if (chain) {
2420 dump_json_image_info_list(list);
2421 } else {
2422 dump_json_image_info(list->value);
2423 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002424 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002425 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002426
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002427 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002428 return 0;
2429}
2430
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002431static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2432 MapEntry *next)
2433{
2434 switch (output_format) {
2435 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002436 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002437 error_report("File contains external, encrypted or compressed clusters.");
2438 exit(1);
2439 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002440 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002441 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002442 e->start, e->length,
2443 e->has_offset ? e->offset : 0,
2444 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002445 }
2446 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2447 * Modify the flags here to allow more coalescing.
2448 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002449 if (next && (!next->data || next->zero)) {
2450 next->data = false;
2451 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002452 }
2453 break;
2454 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002455 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2456 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002457 (e->start == 0 ? "[" : ",\n"),
2458 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002459 e->zero ? "true" : "false",
2460 e->data ? "true" : "false");
2461 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002462 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002463 }
2464 putchar('}');
2465
2466 if (!next) {
2467 printf("]\n");
2468 }
2469 break;
2470 }
2471}
2472
2473static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2474 int nb_sectors, MapEntry *e)
2475{
2476 int64_t ret;
2477 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002478 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002479 bool has_offset;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002480
2481 /* As an optimization, we could cache the current range of unallocated
2482 * clusters in each file of the chain, and avoid querying the same
2483 * range repeatedly.
2484 */
2485
2486 depth = 0;
2487 for (;;) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08002488 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2489 &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002490 if (ret < 0) {
2491 return ret;
2492 }
2493 assert(nb_sectors);
2494 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2495 break;
2496 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002497 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002498 if (bs == NULL) {
2499 ret = 0;
2500 break;
2501 }
2502
2503 depth++;
2504 }
2505
John Snow28756452016-02-05 13:12:33 -05002506 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2507
2508 *e = (MapEntry) {
2509 .start = sector_num * BDRV_SECTOR_SIZE,
2510 .length = nb_sectors * BDRV_SECTOR_SIZE,
2511 .data = !!(ret & BDRV_BLOCK_DATA),
2512 .zero = !!(ret & BDRV_BLOCK_ZERO),
2513 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2514 .has_offset = has_offset,
2515 .depth = depth,
2516 .has_filename = file && has_offset,
2517 .filename = file && has_offset ? file->filename : NULL,
2518 };
2519
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002520 return 0;
2521}
2522
Fam Zheng16b0d552016-01-26 11:59:02 +08002523static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2524{
2525 if (curr->length == 0) {
2526 return false;
2527 }
2528 if (curr->zero != next->zero ||
2529 curr->data != next->data ||
2530 curr->depth != next->depth ||
2531 curr->has_filename != next->has_filename ||
2532 curr->has_offset != next->has_offset) {
2533 return false;
2534 }
2535 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2536 return false;
2537 }
2538 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2539 return false;
2540 }
2541 return true;
2542}
2543
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002544static int img_map(int argc, char **argv)
2545{
2546 int c;
2547 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002548 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002549 BlockDriverState *bs;
2550 const char *filename, *fmt, *output;
2551 int64_t length;
2552 MapEntry curr = { .length = 0 }, next;
2553 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002554 bool image_opts = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002555
2556 fmt = NULL;
2557 output = NULL;
2558 for (;;) {
2559 int option_index = 0;
2560 static const struct option long_options[] = {
2561 {"help", no_argument, 0, 'h'},
2562 {"format", required_argument, 0, 'f'},
2563 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002564 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002565 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002566 {0, 0, 0, 0}
2567 };
2568 c = getopt_long(argc, argv, "f:h",
2569 long_options, &option_index);
2570 if (c == -1) {
2571 break;
2572 }
2573 switch (c) {
2574 case '?':
2575 case 'h':
2576 help();
2577 break;
2578 case 'f':
2579 fmt = optarg;
2580 break;
2581 case OPTION_OUTPUT:
2582 output = optarg;
2583 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002584 case OPTION_OBJECT: {
2585 QemuOpts *opts;
2586 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2587 optarg, true);
2588 if (!opts) {
2589 return 1;
2590 }
2591 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002592 case OPTION_IMAGE_OPTS:
2593 image_opts = true;
2594 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002595 }
2596 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002597 if (optind != argc - 1) {
2598 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002599 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002600 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002601
2602 if (output && !strcmp(output, "json")) {
2603 output_format = OFORMAT_JSON;
2604 } else if (output && !strcmp(output, "human")) {
2605 output_format = OFORMAT_HUMAN;
2606 } else if (output) {
2607 error_report("--output must be used with human or json as argument.");
2608 return 1;
2609 }
2610
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002611 if (qemu_opts_foreach(&qemu_object_opts,
2612 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002613 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002614 return 1;
2615 }
2616
Kevin Wolfce099542016-03-15 13:01:04 +01002617 blk = img_open(image_opts, filename, fmt, 0, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002618 if (!blk) {
2619 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002620 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002621 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002622
2623 if (output_format == OFORMAT_HUMAN) {
2624 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2625 }
2626
Max Reitzf1d3cd72015-02-05 13:58:18 -05002627 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002628 while (curr.start + curr.length < length) {
2629 int64_t nsectors_left;
2630 int64_t sector_num;
2631 int n;
2632
2633 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2634
2635 /* Probe up to 1 GiB at a time. */
2636 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2637 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2638 ret = get_block_status(bs, sector_num, n, &next);
2639
2640 if (ret < 0) {
2641 error_report("Could not read file metadata: %s", strerror(-ret));
2642 goto out;
2643 }
2644
Fam Zheng16b0d552016-01-26 11:59:02 +08002645 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002646 curr.length += next.length;
2647 continue;
2648 }
2649
2650 if (curr.length > 0) {
2651 dump_map_entry(output_format, &curr, &next);
2652 }
2653 curr = next;
2654 }
2655
2656 dump_map_entry(output_format, &curr, NULL);
2657
2658out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002659 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002660 return ret < 0;
2661}
2662
aliguorif7b4a942009-01-07 17:40:15 +00002663#define SNAPSHOT_LIST 1
2664#define SNAPSHOT_CREATE 2
2665#define SNAPSHOT_APPLY 3
2666#define SNAPSHOT_DELETE 4
2667
Stuart Brady153859b2009-06-07 00:42:17 +01002668static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002669{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002670 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002671 BlockDriverState *bs;
2672 QEMUSnapshotInfo sn;
2673 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002674 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002675 int action = 0;
2676 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002677 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002678 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002679 bool image_opts = false;
aliguorif7b4a942009-01-07 17:40:15 +00002680
Kevin Wolfce099542016-03-15 13:01:04 +01002681 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002682 /* Parse commandline parameters */
2683 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002684 static const struct option long_options[] = {
2685 {"help", no_argument, 0, 'h'},
2686 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002687 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002688 {0, 0, 0, 0}
2689 };
2690 c = getopt_long(argc, argv, "la:c:d:hq",
2691 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002692 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002693 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002694 }
aliguorif7b4a942009-01-07 17:40:15 +00002695 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002696 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002697 case 'h':
2698 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002699 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002700 case 'l':
2701 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002702 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002703 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002704 }
2705 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002706 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002707 break;
2708 case 'a':
2709 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002710 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002711 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002712 }
2713 action = SNAPSHOT_APPLY;
2714 snapshot_name = optarg;
2715 break;
2716 case 'c':
2717 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002718 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002719 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002720 }
2721 action = SNAPSHOT_CREATE;
2722 snapshot_name = optarg;
2723 break;
2724 case 'd':
2725 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002726 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002727 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002728 }
2729 action = SNAPSHOT_DELETE;
2730 snapshot_name = optarg;
2731 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002732 case 'q':
2733 quiet = true;
2734 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002735 case OPTION_OBJECT: {
2736 QemuOpts *opts;
2737 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2738 optarg, true);
2739 if (!opts) {
2740 return 1;
2741 }
2742 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002743 case OPTION_IMAGE_OPTS:
2744 image_opts = true;
2745 break;
aliguorif7b4a942009-01-07 17:40:15 +00002746 }
2747 }
2748
Kevin Wolffc11eb22013-08-05 10:53:04 +02002749 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002750 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002751 }
aliguorif7b4a942009-01-07 17:40:15 +00002752 filename = argv[optind++];
2753
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002754 if (qemu_opts_foreach(&qemu_object_opts,
2755 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002756 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002757 return 1;
2758 }
2759
aliguorif7b4a942009-01-07 17:40:15 +00002760 /* Open the image */
Kevin Wolfce099542016-03-15 13:01:04 +01002761 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002762 if (!blk) {
2763 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002764 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002765 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002766
2767 /* Perform the requested action */
2768 switch(action) {
2769 case SNAPSHOT_LIST:
2770 dump_snapshots(bs);
2771 break;
2772
2773 case SNAPSHOT_CREATE:
2774 memset(&sn, 0, sizeof(sn));
2775 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2776
2777 qemu_gettimeofday(&tv);
2778 sn.date_sec = tv.tv_sec;
2779 sn.date_nsec = tv.tv_usec * 1000;
2780
2781 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002782 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002783 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002784 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002785 }
aliguorif7b4a942009-01-07 17:40:15 +00002786 break;
2787
2788 case SNAPSHOT_APPLY:
2789 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002790 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002791 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002792 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002793 }
aliguorif7b4a942009-01-07 17:40:15 +00002794 break;
2795
2796 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002797 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002798 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002799 error_reportf_err(err, "Could not delete snapshot '%s': ",
2800 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002801 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002802 }
aliguorif7b4a942009-01-07 17:40:15 +00002803 break;
2804 }
2805
2806 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02002807 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002808 if (ret) {
2809 return 1;
2810 }
Stuart Brady153859b2009-06-07 00:42:17 +01002811 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002812}
2813
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002814static int img_rebase(int argc, char **argv)
2815{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002816 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01002817 uint8_t *buf_old = NULL;
2818 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05002819 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002820 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02002821 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
2822 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01002823 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002824 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002825 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002826 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002827 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002828 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002829
2830 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002831 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002832 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02002833 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002834 out_baseimg = NULL;
2835 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002836 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002837 static const struct option long_options[] = {
2838 {"help", no_argument, 0, 'h'},
2839 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002840 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002841 {0, 0, 0, 0}
2842 };
2843 c = getopt_long(argc, argv, "hf:F:b:upt:T:q",
2844 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002845 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002846 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002847 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002848 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002849 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002850 case 'h':
2851 help();
2852 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002853 case 'f':
2854 fmt = optarg;
2855 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002856 case 'F':
2857 out_basefmt = optarg;
2858 break;
2859 case 'b':
2860 out_baseimg = optarg;
2861 break;
2862 case 'u':
2863 unsafe = 1;
2864 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002865 case 'p':
2866 progress = 1;
2867 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002868 case 't':
2869 cache = optarg;
2870 break;
Max Reitz40055952014-07-22 22:58:42 +02002871 case 'T':
2872 src_cache = optarg;
2873 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002874 case 'q':
2875 quiet = true;
2876 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002877 case OPTION_OBJECT: {
2878 QemuOpts *opts;
2879 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2880 optarg, true);
2881 if (!opts) {
2882 return 1;
2883 }
2884 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002885 case OPTION_IMAGE_OPTS:
2886 image_opts = true;
2887 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002888 }
2889 }
2890
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002891 if (quiet) {
2892 progress = 0;
2893 }
2894
Fam Zhengac1307a2014-04-22 13:36:11 +08002895 if (optind != argc - 1) {
2896 error_exit("Expecting one image file name");
2897 }
2898 if (!unsafe && !out_baseimg) {
2899 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002900 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002901 filename = argv[optind++];
2902
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002903 if (qemu_opts_foreach(&qemu_object_opts,
2904 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002905 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002906 return 1;
2907 }
2908
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002909 qemu_progress_init(progress, 2.0);
2910 qemu_progress_print(0, 100);
2911
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002912 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01002913 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002914 if (ret < 0) {
2915 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002916 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002917 }
2918
Kevin Wolfce099542016-03-15 13:01:04 +01002919 src_flags = 0;
2920 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02002921 if (ret < 0) {
2922 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002923 goto out;
Max Reitz40055952014-07-22 22:58:42 +02002924 }
2925
Kevin Wolfce099542016-03-15 13:01:04 +01002926 /* The source files are opened read-only, don't care about WCE */
2927 assert((src_flags & BDRV_O_RDWR) == 0);
2928 (void) src_writethrough;
2929
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002930 /*
2931 * Open the images.
2932 *
2933 * Ignore the old backing file for unsafe rebase in case we want to correct
2934 * the reference to a renamed or moved backing file.
2935 */
Kevin Wolfce099542016-03-15 13:01:04 +01002936 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002937 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002938 ret = -1;
2939 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002940 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002941 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002942
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002943 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05002944 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002945 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002946 ret = -1;
2947 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002948 }
2949 }
2950
2951 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002952 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05002953 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05002954 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002955
Max Reitz644483d2015-02-05 13:58:17 -05002956 if (bs->backing_format[0] != '\0') {
2957 options = qdict_new();
2958 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
2959 }
2960
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002961 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01002962 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002963 options, src_flags, &local_err);
2964 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002965 error_reportf_err(local_err,
2966 "Could not open old backing file '%s': ",
2967 backing_name);
Xu Tiane84a0dd2016-10-09 17:17:27 +08002968 ret = -1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002969 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002970 }
Max Reitz644483d2015-02-05 13:58:17 -05002971
Alex Bligha6166732012-10-16 13:46:18 +01002972 if (out_baseimg[0]) {
Max Reitz644483d2015-02-05 13:58:17 -05002973 if (out_basefmt) {
2974 options = qdict_new();
2975 qdict_put(options, "driver", qstring_from_str(out_basefmt));
2976 } else {
2977 options = NULL;
2978 }
2979
Max Reitzefaa7c42016-03-16 19:54:38 +01002980 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002981 options, src_flags, &local_err);
2982 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002983 error_reportf_err(local_err,
2984 "Could not open new backing file '%s': ",
2985 out_baseimg);
Xu Tiane84a0dd2016-10-09 17:17:27 +08002986 ret = -1;
Alex Bligha6166732012-10-16 13:46:18 +01002987 goto out;
2988 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002989 }
2990 }
2991
2992 /*
2993 * Check each unallocated cluster in the COW file. If it is unallocated,
2994 * accesses go to the backing file. We must therefore compare this cluster
2995 * in the old and new backing file, and if they differ we need to copy it
2996 * from the old backing file into the COW file.
2997 *
2998 * If qemu-img crashes during this step, no harm is done. The content of
2999 * the image is the same as the original one at any time.
3000 */
3001 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003002 int64_t num_sectors;
3003 int64_t old_backing_num_sectors;
3004 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003005 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02003006 int n;
Kevin Wolf1f710492012-10-12 14:29:18 +02003007 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08003008
Max Reitzf1d3cd72015-02-05 13:58:18 -05003009 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
3010 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003011
Max Reitzf1d3cd72015-02-05 13:58:18 -05003012 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003013 if (num_sectors < 0) {
3014 error_report("Could not get size of '%s': %s",
3015 filename, strerror(-num_sectors));
3016 ret = -1;
3017 goto out;
3018 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003019 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003020 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003021 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003022
3023 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3024 error_report("Could not get size of '%s': %s",
3025 backing_name, strerror(-old_backing_num_sectors));
3026 ret = -1;
3027 goto out;
3028 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003029 if (blk_new_backing) {
3030 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003031 if (new_backing_num_sectors < 0) {
3032 error_report("Could not get size of '%s': %s",
3033 out_baseimg, strerror(-new_backing_num_sectors));
3034 ret = -1;
3035 goto out;
3036 }
Alex Bligha6166732012-10-16 13:46:18 +01003037 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003038
Kevin Wolf1f710492012-10-12 14:29:18 +02003039 if (num_sectors != 0) {
3040 local_progress = (float)100 /
3041 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3042 }
3043
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003044 for (sector = 0; sector < num_sectors; sector += n) {
3045
3046 /* How many sectors can we handle with the next read? */
3047 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3048 n = (IO_BUF_SIZE / 512);
3049 } else {
3050 n = num_sectors - sector;
3051 }
3052
3053 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02003054 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003055 if (ret < 0) {
3056 error_report("error while reading image metadata: %s",
3057 strerror(-ret));
3058 goto out;
3059 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02003060 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003061 continue;
3062 }
3063
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003064 /*
3065 * Read old and new backing file and take into consideration that
3066 * backing files may be smaller than the COW image.
3067 */
3068 if (sector >= old_backing_num_sectors) {
3069 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3070 } else {
3071 if (sector + n > old_backing_num_sectors) {
3072 n = old_backing_num_sectors - sector;
3073 }
3074
Eric Blake91669202016-05-06 10:26:43 -06003075 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3076 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003077 if (ret < 0) {
3078 error_report("error while reading from old backing file");
3079 goto out;
3080 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003081 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003082
Max Reitzf1d3cd72015-02-05 13:58:18 -05003083 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003084 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3085 } else {
3086 if (sector + n > new_backing_num_sectors) {
3087 n = new_backing_num_sectors - sector;
3088 }
3089
Eric Blake91669202016-05-06 10:26:43 -06003090 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3091 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003092 if (ret < 0) {
3093 error_report("error while reading from new backing file");
3094 goto out;
3095 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003096 }
3097
3098 /* If they differ, we need to write to the COW file */
3099 uint64_t written = 0;
3100
3101 while (written < n) {
3102 int pnum;
3103
3104 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003105 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003106 {
Eric Blake91669202016-05-06 10:26:43 -06003107 ret = blk_pwrite(blk,
3108 (sector + written) << BDRV_SECTOR_BITS,
3109 buf_old + written * 512,
3110 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003111 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003112 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003113 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003114 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003115 }
3116 }
3117
3118 written += pnum;
3119 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003120 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003121 }
3122 }
3123
3124 /*
3125 * Change the backing file. All clusters that are different from the old
3126 * backing file are overwritten in the COW file now, so the visible content
3127 * doesn't change when we switch the backing file.
3128 */
Alex Bligha6166732012-10-16 13:46:18 +01003129 if (out_baseimg && *out_baseimg) {
3130 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3131 } else {
3132 ret = bdrv_change_backing_file(bs, NULL, NULL);
3133 }
3134
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003135 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003136 error_report("Could not change the backing file to '%s': No "
3137 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003138 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003139 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003140 out_baseimg, strerror(-ret));
3141 }
3142
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003143 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003144 /*
3145 * TODO At this point it is possible to check if any clusters that are
3146 * allocated in the COW file are the same in the backing file. If so, they
3147 * could be dropped from the COW file. Don't do this before switching the
3148 * backing file, in case of a crash this would lead to corruption.
3149 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003150out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003151 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003152 /* Cleanup */
3153 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003154 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003155 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003156 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003157 qemu_vfree(buf_old);
3158 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003159
Markus Armbruster26f54e92014-10-07 13:59:04 +02003160 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003161 if (ret) {
3162 return 1;
3163 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003164 return 0;
3165}
3166
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003167static int img_resize(int argc, char **argv)
3168{
Markus Armbruster6750e792015-02-12 17:43:08 +01003169 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003170 int c, ret, relative;
3171 const char *filename, *fmt, *size;
3172 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003173 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003174 BlockBackend *blk = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003175 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003176
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003177 static QemuOptsList resize_options = {
3178 .name = "resize_options",
3179 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3180 .desc = {
3181 {
3182 .name = BLOCK_OPT_SIZE,
3183 .type = QEMU_OPT_SIZE,
3184 .help = "Virtual disk size"
3185 }, {
3186 /* end of list */
3187 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003188 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003189 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003190 bool image_opts = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003191
Kevin Wolfe80fec72011-04-29 10:58:12 +02003192 /* Remove size from argv manually so that negative numbers are not treated
3193 * as options by getopt. */
3194 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003195 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003196 return 1;
3197 }
3198
3199 size = argv[--argc];
3200
3201 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003202 fmt = NULL;
3203 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003204 static const struct option long_options[] = {
3205 {"help", no_argument, 0, 'h'},
3206 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003207 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003208 {0, 0, 0, 0}
3209 };
3210 c = getopt_long(argc, argv, "f:hq",
3211 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003212 if (c == -1) {
3213 break;
3214 }
3215 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01003216 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003217 case 'h':
3218 help();
3219 break;
3220 case 'f':
3221 fmt = optarg;
3222 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003223 case 'q':
3224 quiet = true;
3225 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003226 case OPTION_OBJECT: {
3227 QemuOpts *opts;
3228 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3229 optarg, true);
3230 if (!opts) {
3231 return 1;
3232 }
3233 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003234 case OPTION_IMAGE_OPTS:
3235 image_opts = true;
3236 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003237 }
3238 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003239 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003240 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003241 }
3242 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003243
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003244 if (qemu_opts_foreach(&qemu_object_opts,
3245 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003246 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003247 return 1;
3248 }
3249
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003250 /* Choose grow, shrink, or absolute resize mode */
3251 switch (size[0]) {
3252 case '+':
3253 relative = 1;
3254 size++;
3255 break;
3256 case '-':
3257 relative = -1;
3258 size++;
3259 break;
3260 default:
3261 relative = 0;
3262 break;
3263 }
3264
3265 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003266 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003267 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003268 if (err) {
3269 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003270 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003271 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003272 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003273 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003274 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3275 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003276
Max Reitzefaa7c42016-03-16 19:54:38 +01003277 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01003278 BDRV_O_RDWR, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003279 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003280 ret = -1;
3281 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003282 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003283
3284 if (relative) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05003285 total_size = blk_getlength(blk) + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003286 } else {
3287 total_size = n;
3288 }
3289 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003290 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003291 ret = -1;
3292 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003293 }
3294
Max Reitzf1d3cd72015-02-05 13:58:18 -05003295 ret = blk_truncate(blk, total_size);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003296 switch (ret) {
3297 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003298 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003299 break;
3300 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01003301 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003302 break;
3303 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01003304 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003305 break;
3306 default:
Max Reitzbcf23482016-06-15 17:36:29 +02003307 error_report("Error resizing image: %s", strerror(-ret));
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003308 break;
3309 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003310out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003311 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003312 if (ret) {
3313 return 1;
3314 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003315 return 0;
3316}
3317
Max Reitz76a3a342014-10-27 11:12:51 +01003318static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003319 int64_t offset, int64_t total_work_size,
3320 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003321{
3322 qemu_progress_print(100.f * offset / total_work_size, 0);
3323}
3324
Max Reitz6f176b42013-09-03 10:09:50 +02003325static int img_amend(int argc, char **argv)
3326{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003327 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003328 int c, ret = 0;
3329 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003330 QemuOptsList *create_opts = NULL;
3331 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003332 const char *fmt = NULL, *filename, *cache;
3333 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003334 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003335 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003336 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003337 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003338 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003339
Max Reitzbd39e6e2014-07-22 22:58:43 +02003340 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003341 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003342 static const struct option long_options[] = {
3343 {"help", no_argument, 0, 'h'},
3344 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003345 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003346 {0, 0, 0, 0}
3347 };
3348 c = getopt_long(argc, argv, "ho:f:t:pq",
3349 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003350 if (c == -1) {
3351 break;
3352 }
3353
3354 switch (c) {
3355 case 'h':
3356 case '?':
3357 help();
3358 break;
3359 case 'o':
Kevin Wolf626f84f2014-02-21 16:24:06 +01003360 if (!is_valid_option_list(optarg)) {
3361 error_report("Invalid option list: %s", optarg);
3362 ret = -1;
Max Reitze814dff2015-08-20 16:00:38 -07003363 goto out_no_progress;
Kevin Wolf626f84f2014-02-21 16:24:06 +01003364 }
3365 if (!options) {
3366 options = g_strdup(optarg);
3367 } else {
3368 char *old_options = options;
3369 options = g_strdup_printf("%s,%s", options, optarg);
3370 g_free(old_options);
3371 }
Max Reitz6f176b42013-09-03 10:09:50 +02003372 break;
3373 case 'f':
3374 fmt = optarg;
3375 break;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003376 case 't':
3377 cache = optarg;
3378 break;
Max Reitz76a3a342014-10-27 11:12:51 +01003379 case 'p':
3380 progress = true;
3381 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003382 case 'q':
3383 quiet = true;
3384 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003385 case OPTION_OBJECT:
3386 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3387 optarg, true);
3388 if (!opts) {
3389 ret = -1;
3390 goto out_no_progress;
3391 }
3392 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003393 case OPTION_IMAGE_OPTS:
3394 image_opts = true;
3395 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003396 }
3397 }
3398
Max Reitz6f176b42013-09-03 10:09:50 +02003399 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003400 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003401 }
3402
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003403 if (qemu_opts_foreach(&qemu_object_opts,
3404 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003405 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003406 ret = -1;
3407 goto out_no_progress;
3408 }
3409
Max Reitz76a3a342014-10-27 11:12:51 +01003410 if (quiet) {
3411 progress = false;
3412 }
3413 qemu_progress_init(progress, 1.0);
3414
Kevin Wolfa283cb62014-02-21 16:24:07 +01003415 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3416 if (fmt && has_help_option(options)) {
3417 /* If a format is explicitly specified (and possibly no filename is
3418 * given), print option help here */
3419 ret = print_block_option_help(filename, fmt);
3420 goto out;
3421 }
3422
3423 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003424 error_report("Expecting one image file name");
3425 ret = -1;
3426 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003427 }
Max Reitz6f176b42013-09-03 10:09:50 +02003428
Kevin Wolfce099542016-03-15 13:01:04 +01003429 flags = BDRV_O_RDWR;
3430 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003431 if (ret < 0) {
3432 error_report("Invalid cache option: %s", cache);
3433 goto out;
3434 }
3435
Kevin Wolfce099542016-03-15 13:01:04 +01003436 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003437 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003438 ret = -1;
3439 goto out;
3440 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003441 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003442
3443 fmt = bs->drv->format_name;
3444
Kevin Wolf626f84f2014-02-21 16:24:06 +01003445 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003446 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003447 ret = print_block_option_help(filename, fmt);
3448 goto out;
3449 }
3450
Max Reitzb2439d22014-12-02 18:32:47 +01003451 if (!bs->drv->create_opts) {
3452 error_report("Format driver '%s' does not support any options to amend",
3453 fmt);
3454 ret = -1;
3455 goto out;
3456 }
3457
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003458 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003459 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Paolo Bonziniece90862017-01-04 15:56:24 +01003460 qemu_opts_do_parse(opts, options, NULL, &err);
3461 if (err) {
3462 error_report_err(err);
3463 ret = -1;
3464 goto out;
Max Reitz6f176b42013-09-03 10:09:50 +02003465 }
3466
Max Reitz76a3a342014-10-27 11:12:51 +01003467 /* In case the driver does not call amend_status_cb() */
3468 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003469 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003470 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003471 if (ret < 0) {
3472 error_report("Error while amending options: %s", strerror(-ret));
3473 goto out;
3474 }
3475
3476out:
Max Reitz76a3a342014-10-27 11:12:51 +01003477 qemu_progress_end();
3478
Max Reitze814dff2015-08-20 16:00:38 -07003479out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003480 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003481 qemu_opts_del(opts);
3482 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003483 g_free(options);
3484
Max Reitz6f176b42013-09-03 10:09:50 +02003485 if (ret) {
3486 return 1;
3487 }
3488 return 0;
3489}
3490
Kevin Wolfb6133b82014-08-05 14:17:13 +02003491typedef struct BenchData {
3492 BlockBackend *blk;
3493 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003494 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003495 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003496 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003497 int nrreq;
3498 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003499 int flush_interval;
3500 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003501 uint8_t *buf;
3502 QEMUIOVector *qiov;
3503
3504 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003505 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003506 uint64_t offset;
3507} BenchData;
3508
Kevin Wolf55d539c2016-06-03 13:59:41 +02003509static void bench_undrained_flush_cb(void *opaque, int ret)
3510{
3511 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003512 error_report("Failed flush request: %s", strerror(-ret));
Kevin Wolf55d539c2016-06-03 13:59:41 +02003513 exit(EXIT_FAILURE);
3514 }
3515}
3516
Kevin Wolfb6133b82014-08-05 14:17:13 +02003517static void bench_cb(void *opaque, int ret)
3518{
3519 BenchData *b = opaque;
3520 BlockAIOCB *acb;
3521
3522 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003523 error_report("Failed request: %s", strerror(-ret));
Kevin Wolfb6133b82014-08-05 14:17:13 +02003524 exit(EXIT_FAILURE);
3525 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003526
3527 if (b->in_flush) {
3528 /* Just finished a flush with drained queue: Start next requests */
3529 assert(b->in_flight == 0);
3530 b->in_flush = false;
3531 } else if (b->in_flight > 0) {
3532 int remaining = b->n - b->in_flight;
3533
Kevin Wolfb6133b82014-08-05 14:17:13 +02003534 b->n--;
3535 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003536
3537 /* Time for flush? Drain queue if requested, then flush */
3538 if (b->flush_interval && remaining % b->flush_interval == 0) {
3539 if (!b->in_flight || !b->drain_on_flush) {
3540 BlockCompletionFunc *cb;
3541
3542 if (b->drain_on_flush) {
3543 b->in_flush = true;
3544 cb = bench_cb;
3545 } else {
3546 cb = bench_undrained_flush_cb;
3547 }
3548
3549 acb = blk_aio_flush(b->blk, cb, b);
3550 if (!acb) {
3551 error_report("Failed to issue flush request");
3552 exit(EXIT_FAILURE);
3553 }
3554 }
3555 if (b->drain_on_flush) {
3556 return;
3557 }
3558 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003559 }
3560
3561 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003562 int64_t offset = b->offset;
3563 /* blk_aio_* might look for completed I/Os and kick bench_cb
3564 * again, so make sure this operation is counted by in_flight
3565 * and b->offset is ready for the next submission.
3566 */
3567 b->in_flight++;
3568 b->offset += b->step;
3569 b->offset %= b->image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003570 if (b->write) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003571 acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003572 } else {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003573 acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003574 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003575 if (!acb) {
3576 error_report("Failed to issue request");
3577 exit(EXIT_FAILURE);
3578 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003579 }
3580}
3581
3582static int img_bench(int argc, char **argv)
3583{
3584 int c, ret = 0;
3585 const char *fmt = NULL, *filename;
3586 bool quiet = false;
3587 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003588 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003589 int count = 75000;
3590 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003591 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003592 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003593 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003594 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003595 int flush_interval = 0;
3596 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003597 int64_t image_size;
3598 BlockBackend *blk = NULL;
3599 BenchData data = {};
3600 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003601 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003602 struct timeval t1, t2;
3603 int i;
3604
3605 for (;;) {
3606 static const struct option long_options[] = {
3607 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003608 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003609 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003610 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003611 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003612 {0, 0, 0, 0}
3613 };
Kevin Wolf83de9be2015-07-13 13:13:17 +02003614 c = getopt_long(argc, argv, "hc:d:f:no:qs:S:t:w", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003615 if (c == -1) {
3616 break;
3617 }
3618
3619 switch (c) {
3620 case 'h':
3621 case '?':
3622 help();
3623 break;
3624 case 'c':
3625 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003626 unsigned long res;
3627
3628 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003629 error_report("Invalid request count specified");
3630 return 1;
3631 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003632 count = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003633 break;
3634 }
3635 case 'd':
3636 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003637 unsigned long res;
3638
3639 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003640 error_report("Invalid queue depth specified");
3641 return 1;
3642 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003643 depth = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003644 break;
3645 }
3646 case 'f':
3647 fmt = optarg;
3648 break;
3649 case 'n':
3650 flags |= BDRV_O_NATIVE_AIO;
3651 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003652 case 'o':
3653 {
3654 char *end;
3655 errno = 0;
3656 offset = qemu_strtosz_suffix(optarg, &end,
3657 QEMU_STRTOSZ_DEFSUFFIX_B);
3658 if (offset < 0|| *end) {
3659 error_report("Invalid offset specified");
3660 return 1;
3661 }
3662 break;
3663 }
3664 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003665 case 'q':
3666 quiet = true;
3667 break;
3668 case 's':
3669 {
3670 int64_t sval;
3671 char *end;
3672
3673 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3674 if (sval < 0 || sval > INT_MAX || *end) {
3675 error_report("Invalid buffer size specified");
3676 return 1;
3677 }
3678
3679 bufsize = sval;
3680 break;
3681 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003682 case 'S':
3683 {
3684 int64_t sval;
3685 char *end;
3686
3687 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3688 if (sval < 0 || sval > INT_MAX || *end) {
3689 error_report("Invalid step size specified");
3690 return 1;
3691 }
3692
3693 step = sval;
3694 break;
3695 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003696 case 't':
3697 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3698 if (ret < 0) {
3699 error_report("Invalid cache mode");
3700 ret = -1;
3701 goto out;
3702 }
3703 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003704 case 'w':
3705 flags |= BDRV_O_RDWR;
3706 is_write = true;
3707 break;
3708 case OPTION_PATTERN:
3709 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003710 unsigned long res;
3711
3712 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003713 error_report("Invalid pattern byte specified");
3714 return 1;
3715 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003716 pattern = res;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003717 break;
3718 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003719 case OPTION_FLUSH_INTERVAL:
3720 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003721 unsigned long res;
3722
3723 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02003724 error_report("Invalid flush interval specified");
3725 return 1;
3726 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003727 flush_interval = res;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003728 break;
3729 }
3730 case OPTION_NO_DRAIN:
3731 drain_on_flush = false;
3732 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003733 case OPTION_IMAGE_OPTS:
3734 image_opts = true;
3735 break;
3736 }
3737 }
3738
3739 if (optind != argc - 1) {
3740 error_exit("Expecting one image file name");
3741 }
3742 filename = argv[argc - 1];
3743
Kevin Wolf55d539c2016-06-03 13:59:41 +02003744 if (!is_write && flush_interval) {
3745 error_report("--flush-interval is only available in write tests");
3746 ret = -1;
3747 goto out;
3748 }
3749 if (flush_interval && flush_interval < depth) {
3750 error_report("Flush interval can't be smaller than depth");
3751 ret = -1;
3752 goto out;
3753 }
3754
Kevin Wolfb6133b82014-08-05 14:17:13 +02003755 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
3756 if (!blk) {
3757 ret = -1;
3758 goto out;
3759 }
3760
3761 image_size = blk_getlength(blk);
3762 if (image_size < 0) {
3763 ret = image_size;
3764 goto out;
3765 }
3766
3767 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02003768 .blk = blk,
3769 .image_size = image_size,
3770 .bufsize = bufsize,
3771 .step = step ?: bufsize,
3772 .nrreq = depth,
3773 .n = count,
3774 .offset = offset,
3775 .write = is_write,
3776 .flush_interval = flush_interval,
3777 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02003778 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02003779 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02003780 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02003781 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02003782 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02003783 if (flush_interval) {
3784 printf("Sending flush every %d requests\n", flush_interval);
3785 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003786
3787 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003788 memset(data.buf, pattern, data.nrreq * data.bufsize);
3789
Kevin Wolfb6133b82014-08-05 14:17:13 +02003790 data.qiov = g_new(QEMUIOVector, data.nrreq);
3791 for (i = 0; i < data.nrreq; i++) {
3792 qemu_iovec_init(&data.qiov[i], 1);
3793 qemu_iovec_add(&data.qiov[i],
3794 data.buf + i * data.bufsize, data.bufsize);
3795 }
3796
3797 gettimeofday(&t1, NULL);
3798 bench_cb(&data, 0);
3799
3800 while (data.n > 0) {
3801 main_loop_wait(false);
3802 }
3803 gettimeofday(&t2, NULL);
3804
3805 printf("Run completed in %3.3f seconds.\n",
3806 (t2.tv_sec - t1.tv_sec)
3807 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
3808
3809out:
3810 qemu_vfree(data.buf);
3811 blk_unref(blk);
3812
3813 if (ret) {
3814 return 1;
3815 }
3816 return 0;
3817}
3818
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003819#define C_BS 01
3820#define C_COUNT 02
3821#define C_IF 04
3822#define C_OF 010
Reda Sallahif7c15532016-08-10 16:16:09 +02003823#define C_SKIP 020
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003824
3825struct DdInfo {
3826 unsigned int flags;
3827 int64_t count;
3828};
3829
3830struct DdIo {
3831 int bsz; /* Block size */
3832 char *filename;
3833 uint8_t *buf;
Reda Sallahif7c15532016-08-10 16:16:09 +02003834 int64_t offset;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003835};
3836
3837struct DdOpts {
3838 const char *name;
3839 int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
3840 unsigned int flag;
3841};
3842
3843static int img_dd_bs(const char *arg,
3844 struct DdIo *in, struct DdIo *out,
3845 struct DdInfo *dd)
3846{
3847 char *end;
3848 int64_t res;
3849
3850 res = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3851
3852 if (res <= 0 || res > INT_MAX || *end) {
3853 error_report("invalid number: '%s'", arg);
3854 return 1;
3855 }
3856 in->bsz = out->bsz = res;
3857
3858 return 0;
3859}
3860
3861static int img_dd_count(const char *arg,
3862 struct DdIo *in, struct DdIo *out,
3863 struct DdInfo *dd)
3864{
3865 char *end;
3866
3867 dd->count = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3868
3869 if (dd->count < 0 || *end) {
3870 error_report("invalid number: '%s'", arg);
3871 return 1;
3872 }
3873
3874 return 0;
3875}
3876
3877static int img_dd_if(const char *arg,
3878 struct DdIo *in, struct DdIo *out,
3879 struct DdInfo *dd)
3880{
3881 in->filename = g_strdup(arg);
3882
3883 return 0;
3884}
3885
3886static int img_dd_of(const char *arg,
3887 struct DdIo *in, struct DdIo *out,
3888 struct DdInfo *dd)
3889{
3890 out->filename = g_strdup(arg);
3891
3892 return 0;
3893}
3894
Reda Sallahif7c15532016-08-10 16:16:09 +02003895static int img_dd_skip(const char *arg,
3896 struct DdIo *in, struct DdIo *out,
3897 struct DdInfo *dd)
3898{
3899 char *end;
3900
3901 in->offset = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3902
3903 if (in->offset < 0 || *end) {
3904 error_report("invalid number: '%s'", arg);
3905 return 1;
3906 }
3907
3908 return 0;
3909}
3910
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003911static int img_dd(int argc, char **argv)
3912{
3913 int ret = 0;
3914 char *arg = NULL;
3915 char *tmp;
3916 BlockDriver *drv = NULL, *proto_drv = NULL;
3917 BlockBackend *blk1 = NULL, *blk2 = NULL;
3918 QemuOpts *opts = NULL;
3919 QemuOptsList *create_opts = NULL;
3920 Error *local_err = NULL;
3921 bool image_opts = false;
3922 int c, i;
3923 const char *out_fmt = "raw";
3924 const char *fmt = NULL;
3925 int64_t size = 0;
3926 int64_t block_count = 0, out_pos, in_pos;
3927 struct DdInfo dd = {
3928 .flags = 0,
3929 .count = 0,
3930 };
3931 struct DdIo in = {
3932 .bsz = 512, /* Block size is by default 512 bytes */
3933 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02003934 .buf = NULL,
3935 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003936 };
3937 struct DdIo out = {
3938 .bsz = 512,
3939 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02003940 .buf = NULL,
3941 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003942 };
3943
3944 const struct DdOpts options[] = {
3945 { "bs", img_dd_bs, C_BS },
3946 { "count", img_dd_count, C_COUNT },
3947 { "if", img_dd_if, C_IF },
3948 { "of", img_dd_of, C_OF },
Reda Sallahif7c15532016-08-10 16:16:09 +02003949 { "skip", img_dd_skip, C_SKIP },
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003950 { NULL, NULL, 0 }
3951 };
3952 const struct option long_options[] = {
3953 { "help", no_argument, 0, 'h'},
3954 { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3955 { 0, 0, 0, 0 }
3956 };
3957
3958 while ((c = getopt_long(argc, argv, "hf:O:", long_options, NULL))) {
3959 if (c == EOF) {
3960 break;
3961 }
3962 switch (c) {
3963 case 'O':
3964 out_fmt = optarg;
3965 break;
3966 case 'f':
3967 fmt = optarg;
3968 break;
3969 case '?':
3970 error_report("Try 'qemu-img --help' for more information.");
3971 ret = -1;
3972 goto out;
3973 case 'h':
3974 help();
3975 break;
3976 case OPTION_IMAGE_OPTS:
3977 image_opts = true;
3978 break;
3979 }
3980 }
3981
3982 for (i = optind; i < argc; i++) {
3983 int j;
3984 arg = g_strdup(argv[i]);
3985
3986 tmp = strchr(arg, '=');
3987 if (tmp == NULL) {
3988 error_report("unrecognized operand %s", arg);
3989 ret = -1;
3990 goto out;
3991 }
3992
3993 *tmp++ = '\0';
3994
3995 for (j = 0; options[j].name != NULL; j++) {
3996 if (!strcmp(arg, options[j].name)) {
3997 break;
3998 }
3999 }
4000 if (options[j].name == NULL) {
4001 error_report("unrecognized operand %s", arg);
4002 ret = -1;
4003 goto out;
4004 }
4005
4006 if (options[j].f(tmp, &in, &out, &dd) != 0) {
4007 ret = -1;
4008 goto out;
4009 }
4010 dd.flags |= options[j].flag;
4011 g_free(arg);
4012 arg = NULL;
4013 }
4014
4015 if (!(dd.flags & C_IF && dd.flags & C_OF)) {
4016 error_report("Must specify both input and output files");
4017 ret = -1;
4018 goto out;
4019 }
4020 blk1 = img_open(image_opts, in.filename, fmt, 0, false, false);
4021
4022 if (!blk1) {
4023 ret = -1;
4024 goto out;
4025 }
4026
4027 drv = bdrv_find_format(out_fmt);
4028 if (!drv) {
4029 error_report("Unknown file format");
4030 ret = -1;
4031 goto out;
4032 }
4033 proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
4034
4035 if (!proto_drv) {
4036 error_report_err(local_err);
4037 ret = -1;
4038 goto out;
4039 }
4040 if (!drv->create_opts) {
4041 error_report("Format driver '%s' does not support image creation",
4042 drv->format_name);
4043 ret = -1;
4044 goto out;
4045 }
4046 if (!proto_drv->create_opts) {
4047 error_report("Protocol driver '%s' does not support image creation",
4048 proto_drv->format_name);
4049 ret = -1;
4050 goto out;
4051 }
4052 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4053 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4054
4055 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4056
4057 size = blk_getlength(blk1);
4058 if (size < 0) {
4059 error_report("Failed to get size for '%s'", in.filename);
4060 ret = -1;
4061 goto out;
4062 }
4063
4064 if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
4065 dd.count * in.bsz < size) {
4066 size = dd.count * in.bsz;
4067 }
4068
Reda Sallahif7c15532016-08-10 16:16:09 +02004069 /* Overflow means the specified offset is beyond input image's size */
4070 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4071 size < in.bsz * in.offset)) {
4072 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
4073 } else {
4074 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
4075 size - in.bsz * in.offset, &error_abort);
4076 }
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004077
4078 ret = bdrv_create(drv, out.filename, opts, &local_err);
4079 if (ret < 0) {
4080 error_reportf_err(local_err,
4081 "%s: error while creating output image: ",
4082 out.filename);
4083 ret = -1;
4084 goto out;
4085 }
4086
4087 blk2 = img_open(image_opts, out.filename, out_fmt, BDRV_O_RDWR,
4088 false, false);
4089
4090 if (!blk2) {
4091 ret = -1;
4092 goto out;
4093 }
4094
Reda Sallahif7c15532016-08-10 16:16:09 +02004095 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4096 size < in.offset * in.bsz)) {
4097 /* We give a warning if the skip option is bigger than the input
4098 * size and create an empty output disk image (i.e. like dd(1)).
4099 */
4100 error_report("%s: cannot skip to specified offset", in.filename);
4101 in_pos = size;
4102 } else {
4103 in_pos = in.offset * in.bsz;
4104 }
4105
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004106 in.buf = g_new(uint8_t, in.bsz);
4107
Reda Sallahif7c15532016-08-10 16:16:09 +02004108 for (out_pos = 0; in_pos < size; block_count++) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004109 int in_ret, out_ret;
4110
4111 if (in_pos + in.bsz > size) {
4112 in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
4113 } else {
4114 in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
4115 }
4116 if (in_ret < 0) {
4117 error_report("error while reading from input image file: %s",
4118 strerror(-in_ret));
4119 ret = -1;
4120 goto out;
4121 }
4122 in_pos += in_ret;
4123
4124 out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
4125
4126 if (out_ret < 0) {
4127 error_report("error while writing to output image file: %s",
4128 strerror(-out_ret));
4129 ret = -1;
4130 goto out;
4131 }
4132 out_pos += out_ret;
4133 }
4134
4135out:
4136 g_free(arg);
4137 qemu_opts_del(opts);
4138 qemu_opts_free(create_opts);
4139 blk_unref(blk1);
4140 blk_unref(blk2);
4141 g_free(in.filename);
4142 g_free(out.filename);
4143 g_free(in.buf);
4144 g_free(out.buf);
4145
4146 if (ret) {
4147 return 1;
4148 }
4149 return 0;
4150}
4151
Kevin Wolfb6133b82014-08-05 14:17:13 +02004152
Anthony Liguoric227f092009-10-01 16:12:16 -05004153static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01004154#define DEF(option, callback, arg_string) \
4155 { option, callback },
4156#include "qemu-img-cmds.h"
4157#undef DEF
4158#undef GEN_DOCS
4159 { NULL, NULL, },
4160};
4161
bellardea2384d2004-08-01 21:59:26 +00004162int main(int argc, char **argv)
4163{
Anthony Liguoric227f092009-10-01 16:12:16 -05004164 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01004165 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004166 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004167 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04004168 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04004169 static const struct option long_options[] = {
4170 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03004171 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004172 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04004173 {0, 0, 0, 0}
4174 };
bellardea2384d2004-08-01 21:59:26 +00004175
MORITA Kazutaka526eda12013-07-23 17:30:11 +09004176#ifdef CONFIG_POSIX
4177 signal(SIGPIPE, SIG_IGN);
4178#endif
4179
Daniel P. Berrangefe4db842016-10-04 14:35:52 +01004180 module_call_init(MODULE_INIT_TRACE);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004181 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08004182 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004183
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004184 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01004185 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004186 exit(EXIT_FAILURE);
4187 }
4188
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03004189 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01004190
Daniel P. Berrange064097d2016-02-10 18:41:01 +00004191 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00004192 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08004193 if (argc < 2) {
4194 error_exit("Not enough arguments");
4195 }
Stuart Brady153859b2009-06-07 00:42:17 +01004196
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004197 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00004198 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004199 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004200
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004201 while ((c = getopt_long(argc, argv, "+hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03004202 switch (c) {
4203 case 'h':
4204 help();
4205 return 0;
4206 case 'V':
4207 printf(QEMU_IMG_VERSION);
4208 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004209 case 'T':
4210 g_free(trace_file);
4211 trace_file = trace_opt_parse(optarg);
4212 break;
Stuart Brady153859b2009-06-07 00:42:17 +01004213 }
bellardea2384d2004-08-01 21:59:26 +00004214 }
Stuart Brady153859b2009-06-07 00:42:17 +01004215
Denis V. Lunev10985132016-06-17 17:44:13 +03004216 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04004217
Denis V. Lunev10985132016-06-17 17:44:13 +03004218 /* reset getopt_long scanning */
4219 argc -= optind;
4220 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04004221 return 0;
4222 }
Denis V. Lunev10985132016-06-17 17:44:13 +03004223 argv += optind;
Denis V. Lunevcfef6a42016-07-04 16:16:48 +03004224 optind = 0;
Denis V. Lunev10985132016-06-17 17:44:13 +03004225
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004226 if (!trace_init_backends()) {
4227 exit(1);
4228 }
4229 trace_init_file(trace_file);
4230 qemu_set_log(LOG_TRACE);
4231
Denis V. Lunev10985132016-06-17 17:44:13 +03004232 /* find the command */
4233 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
4234 if (!strcmp(cmdname, cmd->name)) {
4235 return cmd->handler(argc, argv);
4236 }
4237 }
Jeff Cody7db16892014-04-25 17:02:32 -04004238
Stuart Brady153859b2009-06-07 00:42:17 +01004239 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08004240 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00004241}