blob: 02c07b913dd8e00f017715bbe2033f58df640af1 [file] [log] [blame]
bellardea2384d2004-08-01 21:59:26 +00001/*
bellardfb43f4d2006-08-07 21:34:46 +00002 * QEMU disk image utility
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardea2384d2004-08-01 21:59:26 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
Peter Maydell80c71a22016-01-18 18:01:42 +000024#include "qemu/osdep.h"
Fam Zheng67a1de02016-06-01 17:44:21 +080025#include "qemu-version.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010026#include "qapi/error.h"
Benoît Canetc054b3f2012-09-05 13:09:02 +020027#include "qapi-visit.h"
28#include "qapi/qmp-output-visitor.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010029#include "qapi/qmp/qerror.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010030#include "qapi/qmp/qjson.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020031#include "qemu/cutils.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000032#include "qemu/config-file.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/option.h"
34#include "qemu/error-report.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030035#include "qemu/log.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000036#include "qom/object_interfaces.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010037#include "sysemu/sysemu.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020038#include "sysemu/block-backend.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010039#include "block/block_int.h"
Max Reitzd4a32382014-10-24 15:57:37 +020040#include "block/blockjob.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080041#include "block/qapi.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030043#include "trace/control.h"
Benoît Canetc054b3f2012-09-05 13:09:02 +020044#include <getopt.h>
bellarde8445332006-06-14 15:32:10 +000045
Don Slutz61979a62015-01-09 10:17:35 -050046#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
Peter Maydelld915b7b2016-08-04 12:14:36 +010047 ", " 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;
Eric Blake3b098d52016-06-09 10:48:43 -0600503 Visitor *v = qmp_output_visitor_new(&obj);
504
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
798 do {
799 aio_poll(aio_context, true);
John Snow62547b82015-11-02 18:28:20 -0500800 qemu_progress_print(job->len ?
801 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200802 } while (!job->ready);
803
804 block_job_complete_sync(job, errp);
Max Reitz687fa1d2014-10-24 15:57:39 +0200805
806 /* A block job may finish instantaneously without publishing any progress,
807 * so just signal completion here */
808 qemu_progress_print(100.f, 0);
Max Reitzd4a32382014-10-24 15:57:37 +0200809}
810
bellardea2384d2004-08-01 21:59:26 +0000811static int img_commit(int argc, char **argv)
812{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400813 int c, ret, flags;
Max Reitz1b22bff2014-10-24 15:57:40 +0200814 const char *filename, *fmt, *cache, *base;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200815 BlockBackend *blk;
Max Reitzd4a32382014-10-24 15:57:37 +0200816 BlockDriverState *bs, *base_bs;
Max Reitz687fa1d2014-10-24 15:57:39 +0200817 bool progress = false, quiet = false, drop = false;
Kevin Wolfce099542016-03-15 13:01:04 +0100818 bool writethrough;
Max Reitzd4a32382014-10-24 15:57:37 +0200819 Error *local_err = NULL;
820 CommonBlockJobCBInfo cbi;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000821 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +0000822
823 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400824 cache = BDRV_DEFAULT_CACHE;
Max Reitz1b22bff2014-10-24 15:57:40 +0200825 base = NULL;
bellardea2384d2004-08-01 21:59:26 +0000826 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000827 static const struct option long_options[] = {
828 {"help", no_argument, 0, 'h'},
829 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000830 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000831 {0, 0, 0, 0}
832 };
833 c = getopt_long(argc, argv, "f:ht:b:dpq",
834 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100835 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000836 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100837 }
bellardea2384d2004-08-01 21:59:26 +0000838 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100839 case '?':
bellardea2384d2004-08-01 21:59:26 +0000840 case 'h':
841 help();
842 break;
843 case 'f':
844 fmt = optarg;
845 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400846 case 't':
847 cache = optarg;
848 break;
Max Reitz1b22bff2014-10-24 15:57:40 +0200849 case 'b':
850 base = optarg;
851 /* -b implies -d */
852 drop = true;
853 break;
Max Reitz9a86fe42014-10-24 15:57:38 +0200854 case 'd':
855 drop = true;
856 break;
Max Reitz687fa1d2014-10-24 15:57:39 +0200857 case 'p':
858 progress = true;
859 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100860 case 'q':
861 quiet = true;
862 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000863 case OPTION_OBJECT: {
864 QemuOpts *opts;
865 opts = qemu_opts_parse_noisily(&qemu_object_opts,
866 optarg, true);
867 if (!opts) {
868 return 1;
869 }
870 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000871 case OPTION_IMAGE_OPTS:
872 image_opts = true;
873 break;
bellardea2384d2004-08-01 21:59:26 +0000874 }
875 }
Max Reitz687fa1d2014-10-24 15:57:39 +0200876
877 /* Progress is not shown in Quiet mode */
878 if (quiet) {
879 progress = false;
880 }
881
Kevin Wolffc11eb22013-08-05 10:53:04 +0200882 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800883 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100884 }
bellardea2384d2004-08-01 21:59:26 +0000885 filename = argv[optind++];
886
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000887 if (qemu_opts_foreach(&qemu_object_opts,
888 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200889 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000890 return 1;
891 }
892
Max Reitz9a86fe42014-10-24 15:57:38 +0200893 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
Kevin Wolfce099542016-03-15 13:01:04 +0100894 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400895 if (ret < 0) {
896 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczia3981eb2014-08-26 19:17:54 +0100897 return 1;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400898 }
899
Kevin Wolfce099542016-03-15 13:01:04 +0100900 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200901 if (!blk) {
902 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900903 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200904 bs = blk_bs(blk);
905
Max Reitz687fa1d2014-10-24 15:57:39 +0200906 qemu_progress_init(progress, 1.f);
907 qemu_progress_print(0.f, 100);
908
Max Reitz1b22bff2014-10-24 15:57:40 +0200909 if (base) {
910 base_bs = bdrv_find_backing_image(bs, base);
911 if (!base_bs) {
Markus Armbrusterc6bd8c72015-03-17 11:54:50 +0100912 error_setg(&local_err, QERR_BASE_NOT_FOUND, base);
Max Reitz1b22bff2014-10-24 15:57:40 +0200913 goto done;
914 }
915 } else {
916 /* This is different from QMP, which by default uses the deepest file in
917 * the backing chain (i.e., the very base); however, the traditional
918 * behavior of qemu-img commit is using the immediate backing file. */
Kevin Wolf760e0062015-06-17 14:55:21 +0200919 base_bs = backing_bs(bs);
Max Reitz1b22bff2014-10-24 15:57:40 +0200920 if (!base_bs) {
921 error_setg(&local_err, "Image does not have a backing file");
922 goto done;
923 }
bellardea2384d2004-08-01 21:59:26 +0000924 }
925
Max Reitzd4a32382014-10-24 15:57:37 +0200926 cbi = (CommonBlockJobCBInfo){
927 .errp = &local_err,
928 .bs = bs,
929 };
930
Alberto Garciaa5d5a3b2016-07-05 17:29:01 +0300931 commit_active_start("commit", bs, base_bs, 0, BLOCKDEV_ON_ERROR_REPORT,
Wen Congyangb49f7ea2016-07-27 15:01:47 +0800932 common_block_job_cb, &cbi, &local_err, false);
Max Reitzd4a32382014-10-24 15:57:37 +0200933 if (local_err) {
934 goto done;
935 }
936
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200937 /* When the block job completes, the BlockBackend reference will point to
938 * the old backing file. In order to avoid that the top image is already
939 * deleted, so we can still empty it afterwards, increment the reference
940 * counter here preemptively. */
Max Reitz9a86fe42014-10-24 15:57:38 +0200941 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200942 bdrv_ref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200943 }
944
Max Reitzd4a32382014-10-24 15:57:37 +0200945 run_block_job(bs->job, &local_err);
Max Reitz9a86fe42014-10-24 15:57:38 +0200946 if (local_err) {
947 goto unref_backing;
948 }
949
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200950 if (!drop && bs->drv->bdrv_make_empty) {
951 ret = bs->drv->bdrv_make_empty(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200952 if (ret) {
953 error_setg_errno(&local_err, -ret, "Could not empty %s",
954 filename);
955 goto unref_backing;
956 }
957 }
958
959unref_backing:
960 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +0200961 bdrv_unref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +0200962 }
Max Reitzd4a32382014-10-24 15:57:37 +0200963
964done:
Max Reitz687fa1d2014-10-24 15:57:39 +0200965 qemu_progress_end();
966
Markus Armbruster26f54e92014-10-07 13:59:04 +0200967 blk_unref(blk);
Max Reitzd4a32382014-10-24 15:57:37 +0200968
969 if (local_err) {
Markus Armbruster6936f292015-02-10 15:14:02 +0100970 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900971 return 1;
972 }
Max Reitzd4a32382014-10-24 15:57:37 +0200973
974 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +0000975 return 0;
976}
977
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +0400978/*
thsf58c7b32008-06-05 21:53:49 +0000979 * Returns true iff the first sector pointed to by 'buf' contains at least
980 * a non-NUL byte.
981 *
982 * 'pnum' is set to the number of sectors (including and immediately following
983 * the first one) that are known to be in the same allocated/unallocated state.
984 */
bellardea2384d2004-08-01 21:59:26 +0000985static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
986{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000987 bool is_zero;
988 int i;
bellardea2384d2004-08-01 21:59:26 +0000989
990 if (n <= 0) {
991 *pnum = 0;
992 return 0;
993 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000994 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +0000995 for(i = 1; i < n; i++) {
996 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000997 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +0000998 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +0000999 }
bellardea2384d2004-08-01 21:59:26 +00001000 }
1001 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001002 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +00001003}
1004
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001005/*
Kevin Wolfa22f1232011-08-26 15:27:13 +02001006 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1007 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1008 * breaking up write requests for only small sparse areas.
1009 */
1010static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1011 int min)
1012{
1013 int ret;
1014 int num_checked, num_used;
1015
1016 if (n < min) {
1017 min = n;
1018 }
1019
1020 ret = is_allocated_sectors(buf, n, pnum);
1021 if (!ret) {
1022 return ret;
1023 }
1024
1025 num_used = *pnum;
1026 buf += BDRV_SECTOR_SIZE * *pnum;
1027 n -= *pnum;
1028 num_checked = num_used;
1029
1030 while (n > 0) {
1031 ret = is_allocated_sectors(buf, n, pnum);
1032
1033 buf += BDRV_SECTOR_SIZE * *pnum;
1034 n -= *pnum;
1035 num_checked += *pnum;
1036 if (ret) {
1037 num_used = num_checked;
1038 } else if (*pnum >= min) {
1039 break;
1040 }
1041 }
1042
1043 *pnum = num_used;
1044 return 1;
1045}
1046
1047/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001048 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1049 * buffers matches, non-zero otherwise.
1050 *
1051 * pnum is set to the number of sectors (including and immediately following
1052 * the first one) that are known to have the same comparison result
1053 */
1054static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1055 int *pnum)
1056{
Radim Krčmář8c1ac472015-02-20 17:06:15 +01001057 bool res;
1058 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001059
1060 if (n <= 0) {
1061 *pnum = 0;
1062 return 0;
1063 }
1064
1065 res = !!memcmp(buf1, buf2, 512);
1066 for(i = 1; i < n; i++) {
1067 buf1 += 512;
1068 buf2 += 512;
1069
1070 if (!!memcmp(buf1, buf2, 512) != res) {
1071 break;
1072 }
1073 }
1074
1075 *pnum = i;
1076 return res;
1077}
1078
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001079#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001080
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001081static int64_t sectors_to_bytes(int64_t sectors)
1082{
1083 return sectors << BDRV_SECTOR_BITS;
1084}
1085
1086static int64_t sectors_to_process(int64_t total, int64_t from)
1087{
1088 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1089}
1090
1091/*
1092 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1093 *
1094 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1095 * data and negative value on error.
1096 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001097 * @param blk: BlockBackend for the image
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001098 * @param sect_num: Number of first sector to check
1099 * @param sect_count: Number of sectors to check
1100 * @param filename: Name of disk file we are checking (logging purpose)
1101 * @param buffer: Allocated buffer for storing read data
1102 * @param quiet: Flag for quiet mode
1103 */
Max Reitzf1d3cd72015-02-05 13:58:18 -05001104static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001105 int sect_count, const char *filename,
1106 uint8_t *buffer, bool quiet)
1107{
1108 int pnum, ret = 0;
Eric Blake91669202016-05-06 10:26:43 -06001109 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1110 sect_count << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001111 if (ret < 0) {
1112 error_report("Error while reading offset %" PRId64 " of %s: %s",
1113 sectors_to_bytes(sect_num), filename, strerror(-ret));
1114 return ret;
1115 }
1116 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1117 if (ret || pnum != sect_count) {
1118 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1119 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1120 return 1;
1121 }
1122
1123 return 0;
1124}
1125
1126/*
1127 * Compares two images. Exit codes:
1128 *
1129 * 0 - Images are identical
1130 * 1 - Images differ
1131 * >1 - Error occurred
1132 */
1133static int img_compare(int argc, char **argv)
1134{
Max Reitz40055952014-07-22 22:58:42 +02001135 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001136 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001137 BlockDriverState *bs1, *bs2;
1138 int64_t total_sectors1, total_sectors2;
1139 uint8_t *buf1 = NULL, *buf2 = NULL;
1140 int pnum1, pnum2;
1141 int allocated1, allocated2;
1142 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1143 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001144 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001145 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001146 int64_t total_sectors;
1147 int64_t sector_num = 0;
1148 int64_t nb_sectors;
1149 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001150 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001151 bool image_opts = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001152
Max Reitz40055952014-07-22 22:58:42 +02001153 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001154 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001155 static const struct option long_options[] = {
1156 {"help", no_argument, 0, 'h'},
1157 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001158 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001159 {0, 0, 0, 0}
1160 };
1161 c = getopt_long(argc, argv, "hf:F:T:pqs",
1162 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001163 if (c == -1) {
1164 break;
1165 }
1166 switch (c) {
1167 case '?':
1168 case 'h':
1169 help();
1170 break;
1171 case 'f':
1172 fmt1 = optarg;
1173 break;
1174 case 'F':
1175 fmt2 = optarg;
1176 break;
Max Reitz40055952014-07-22 22:58:42 +02001177 case 'T':
1178 cache = optarg;
1179 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001180 case 'p':
1181 progress = true;
1182 break;
1183 case 'q':
1184 quiet = true;
1185 break;
1186 case 's':
1187 strict = true;
1188 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001189 case OPTION_OBJECT: {
1190 QemuOpts *opts;
1191 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1192 optarg, true);
1193 if (!opts) {
1194 ret = 2;
1195 goto out4;
1196 }
1197 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001198 case OPTION_IMAGE_OPTS:
1199 image_opts = true;
1200 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001201 }
1202 }
1203
1204 /* Progress is not shown in Quiet mode */
1205 if (quiet) {
1206 progress = false;
1207 }
1208
1209
Kevin Wolffc11eb22013-08-05 10:53:04 +02001210 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001211 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001212 }
1213 filename1 = argv[optind++];
1214 filename2 = argv[optind++];
1215
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001216 if (qemu_opts_foreach(&qemu_object_opts,
1217 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001218 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001219 ret = 2;
1220 goto out4;
1221 }
1222
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001223 /* Initialize before goto out */
1224 qemu_progress_init(progress, 2.0);
1225
Kevin Wolfce099542016-03-15 13:01:04 +01001226 flags = 0;
1227 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001228 if (ret < 0) {
1229 error_report("Invalid source cache option: %s", cache);
1230 ret = 2;
1231 goto out3;
1232 }
1233
Kevin Wolfce099542016-03-15 13:01:04 +01001234 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001235 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001236 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001237 goto out3;
1238 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001239
Kevin Wolfce099542016-03-15 13:01:04 +01001240 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001241 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001242 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001243 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001244 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001245 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001246 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001247
Max Reitzf1d3cd72015-02-05 13:58:18 -05001248 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1249 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1250 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001251 if (total_sectors1 < 0) {
1252 error_report("Can't get size of %s: %s",
1253 filename1, strerror(-total_sectors1));
1254 ret = 4;
1255 goto out;
1256 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001257 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001258 if (total_sectors2 < 0) {
1259 error_report("Can't get size of %s: %s",
1260 filename2, strerror(-total_sectors2));
1261 ret = 4;
1262 goto out;
1263 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001264 total_sectors = MIN(total_sectors1, total_sectors2);
1265 progress_base = MAX(total_sectors1, total_sectors2);
1266
1267 qemu_progress_print(0, 100);
1268
1269 if (strict && total_sectors1 != total_sectors2) {
1270 ret = 1;
1271 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1272 goto out;
1273 }
1274
1275 for (;;) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001276 int64_t status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001277 BlockDriverState *file;
1278
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001279 nb_sectors = sectors_to_process(total_sectors, sector_num);
1280 if (nb_sectors <= 0) {
1281 break;
1282 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001283 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1284 total_sectors1 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001285 &pnum1, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001286 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001287 ret = 3;
1288 error_report("Sector allocation test failed for %s", filename1);
1289 goto out;
1290 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001291 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001292
Fam Zheng25ad8e62016-01-13 16:37:41 +08001293 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1294 total_sectors2 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001295 &pnum2, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001296 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001297 ret = 3;
1298 error_report("Sector allocation test failed for %s", filename2);
1299 goto out;
1300 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001301 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1302 if (pnum1) {
1303 nb_sectors = MIN(nb_sectors, pnum1);
1304 }
1305 if (pnum2) {
1306 nb_sectors = MIN(nb_sectors, pnum2);
1307 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001308
Fam Zheng25ad8e62016-01-13 16:37:41 +08001309 if (strict) {
1310 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1311 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1312 ret = 1;
1313 qprintf(quiet, "Strict mode: Offset %" PRId64
1314 " block status mismatch!\n",
1315 sectors_to_bytes(sector_num));
1316 goto out;
1317 }
1318 }
1319 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1320 nb_sectors = MIN(pnum1, pnum2);
1321 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001322 if (allocated1) {
Eric Blake91669202016-05-06 10:26:43 -06001323 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1324 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001325 if (ret < 0) {
1326 error_report("Error while reading offset %" PRId64 " of %s:"
1327 " %s", sectors_to_bytes(sector_num), filename1,
1328 strerror(-ret));
1329 ret = 4;
1330 goto out;
1331 }
Eric Blake91669202016-05-06 10:26:43 -06001332 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
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
1336 " of %s: %s", sectors_to_bytes(sector_num),
1337 filename2, strerror(-ret));
1338 ret = 4;
1339 goto out;
1340 }
1341 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1342 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001343 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1344 sectors_to_bytes(
1345 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001346 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001347 goto out;
1348 }
1349 }
1350 } else {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001351
1352 if (allocated1) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001353 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001354 filename1, buf1, quiet);
1355 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001356 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001357 filename2, buf1, quiet);
1358 }
1359 if (ret) {
1360 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001361 error_report("Error while reading offset %" PRId64 ": %s",
1362 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001363 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001364 }
1365 goto out;
1366 }
1367 }
1368 sector_num += nb_sectors;
1369 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1370 }
1371
1372 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001373 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001374 int64_t total_sectors_over;
1375 const char *filename_over;
1376
1377 qprintf(quiet, "Warning: Image size mismatch!\n");
1378 if (total_sectors1 > total_sectors2) {
1379 total_sectors_over = total_sectors1;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001380 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001381 filename_over = filename1;
1382 } else {
1383 total_sectors_over = total_sectors2;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001384 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001385 filename_over = filename2;
1386 }
1387
1388 for (;;) {
1389 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1390 if (nb_sectors <= 0) {
1391 break;
1392 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001393 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL, sector_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001394 nb_sectors, &pnum);
1395 if (ret < 0) {
1396 ret = 3;
1397 error_report("Sector allocation test failed for %s",
1398 filename_over);
1399 goto out;
1400
1401 }
1402 nb_sectors = pnum;
1403 if (ret) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001404 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001405 filename_over, buf1, quiet);
1406 if (ret) {
1407 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001408 error_report("Error while reading offset %" PRId64
1409 " of %s: %s", sectors_to_bytes(sector_num),
1410 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001411 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001412 }
1413 goto out;
1414 }
1415 }
1416 sector_num += nb_sectors;
1417 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1418 }
1419 }
1420
1421 qprintf(quiet, "Images are identical.\n");
1422 ret = 0;
1423
1424out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001425 qemu_vfree(buf1);
1426 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001427 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001428out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001429 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001430out3:
1431 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001432out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001433 return ret;
1434}
1435
Kevin Wolf690c7302015-03-19 13:33:32 +01001436enum ImgConvertBlockStatus {
1437 BLK_DATA,
1438 BLK_ZERO,
1439 BLK_BACKING_FILE,
1440};
1441
1442typedef struct ImgConvertState {
1443 BlockBackend **src;
1444 int64_t *src_sectors;
1445 int src_cur, src_num;
1446 int64_t src_cur_offset;
1447 int64_t total_sectors;
1448 int64_t allocated_sectors;
1449 enum ImgConvertBlockStatus status;
1450 int64_t sector_next_status;
1451 BlockBackend *target;
1452 bool has_zero_init;
1453 bool compressed;
1454 bool target_has_backing;
1455 int min_sparse;
1456 size_t cluster_sectors;
1457 size_t buf_sectors;
1458} ImgConvertState;
1459
1460static void convert_select_part(ImgConvertState *s, int64_t sector_num)
1461{
1462 assert(sector_num >= s->src_cur_offset);
1463 while (sector_num - s->src_cur_offset >= s->src_sectors[s->src_cur]) {
1464 s->src_cur_offset += s->src_sectors[s->src_cur];
1465 s->src_cur++;
1466 assert(s->src_cur < s->src_num);
1467 }
1468}
1469
1470static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1471{
1472 int64_t ret;
1473 int n;
1474
1475 convert_select_part(s, sector_num);
1476
1477 assert(s->total_sectors > sector_num);
1478 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1479
1480 if (s->sector_next_status <= sector_num) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08001481 BlockDriverState *file;
Kevin Wolf690c7302015-03-19 13:33:32 +01001482 ret = bdrv_get_block_status(blk_bs(s->src[s->src_cur]),
1483 sector_num - s->src_cur_offset,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001484 n, &n, &file);
Kevin Wolf690c7302015-03-19 13:33:32 +01001485 if (ret < 0) {
1486 return ret;
1487 }
1488
1489 if (ret & BDRV_BLOCK_ZERO) {
1490 s->status = BLK_ZERO;
1491 } else if (ret & BDRV_BLOCK_DATA) {
1492 s->status = BLK_DATA;
1493 } else if (!s->target_has_backing) {
1494 /* Without a target backing file we must copy over the contents of
1495 * the backing file as well. */
Ren Kimura263a6f42016-04-28 01:04:58 +09001496 /* Check block status of the backing file chain to avoid
Kevin Wolf690c7302015-03-19 13:33:32 +01001497 * needlessly reading zeroes and limiting the iteration to the
1498 * buffer size */
Ren Kimura263a6f42016-04-28 01:04:58 +09001499 ret = bdrv_get_block_status_above(blk_bs(s->src[s->src_cur]), NULL,
1500 sector_num - s->src_cur_offset,
1501 n, &n, &file);
1502 if (ret < 0) {
1503 return ret;
1504 }
1505
1506 if (ret & BDRV_BLOCK_ZERO) {
1507 s->status = BLK_ZERO;
1508 } else {
1509 s->status = BLK_DATA;
1510 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001511 } else {
1512 s->status = BLK_BACKING_FILE;
1513 }
1514
1515 s->sector_next_status = sector_num + n;
1516 }
1517
1518 n = MIN(n, s->sector_next_status - sector_num);
1519 if (s->status == BLK_DATA) {
1520 n = MIN(n, s->buf_sectors);
1521 }
1522
1523 /* We need to write complete clusters for compressed images, so if an
1524 * unallocated area is shorter than that, we must consider the whole
1525 * cluster allocated. */
1526 if (s->compressed) {
1527 if (n < s->cluster_sectors) {
1528 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1529 s->status = BLK_DATA;
1530 } else {
1531 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1532 }
1533 }
1534
1535 return n;
1536}
1537
1538static int convert_read(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1539 uint8_t *buf)
1540{
1541 int n;
1542 int ret;
1543
Kevin Wolf690c7302015-03-19 13:33:32 +01001544 assert(nb_sectors <= s->buf_sectors);
1545 while (nb_sectors > 0) {
1546 BlockBackend *blk;
1547 int64_t bs_sectors;
1548
1549 /* In the case of compression with multiple source files, we can get a
1550 * nb_sectors that spreads into the next part. So we must be able to
1551 * read across multiple BDSes for one convert_read() call. */
1552 convert_select_part(s, sector_num);
1553 blk = s->src[s->src_cur];
1554 bs_sectors = s->src_sectors[s->src_cur];
1555
1556 n = MIN(nb_sectors, bs_sectors - (sector_num - s->src_cur_offset));
Eric Blake91669202016-05-06 10:26:43 -06001557 ret = blk_pread(blk,
1558 (sector_num - s->src_cur_offset) << BDRV_SECTOR_BITS,
1559 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001560 if (ret < 0) {
1561 return ret;
1562 }
1563
1564 sector_num += n;
1565 nb_sectors -= n;
1566 buf += n * BDRV_SECTOR_SIZE;
1567 }
1568
1569 return 0;
1570}
1571
1572static int convert_write(ImgConvertState *s, int64_t sector_num, int nb_sectors,
1573 const uint8_t *buf)
1574{
1575 int ret;
1576
1577 while (nb_sectors > 0) {
1578 int n = nb_sectors;
1579
1580 switch (s->status) {
1581 case BLK_BACKING_FILE:
1582 /* If we have a backing file, leave clusters unallocated that are
1583 * unallocated in the source image, so that the backing file is
1584 * visible at the respective offset. */
1585 assert(s->target_has_backing);
1586 break;
1587
1588 case BLK_DATA:
1589 /* We must always write compressed clusters as a whole, so don't
1590 * try to find zeroed parts in the buffer. We can only save the
1591 * write if the buffer is completely zeroed and we're allowed to
1592 * keep the target sparse. */
1593 if (s->compressed) {
1594 if (s->has_zero_init && s->min_sparse &&
1595 buffer_is_zero(buf, n * BDRV_SECTOR_SIZE))
1596 {
1597 assert(!s->target_has_backing);
1598 break;
1599 }
1600
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001601 ret = blk_pwrite_compressed(s->target,
1602 sector_num << BDRV_SECTOR_BITS,
1603 buf, n << BDRV_SECTOR_BITS);
Kevin Wolf690c7302015-03-19 13:33:32 +01001604 if (ret < 0) {
1605 return ret;
1606 }
1607 break;
1608 }
1609
1610 /* If there is real non-zero data or we're told to keep the target
1611 * fully allocated (-S 0), we must write it. Otherwise we can treat
1612 * it as zero sectors. */
1613 if (!s->min_sparse ||
1614 is_allocated_sectors_min(buf, n, &n, s->min_sparse))
1615 {
Eric Blake91669202016-05-06 10:26:43 -06001616 ret = blk_pwrite(s->target, sector_num << BDRV_SECTOR_BITS,
1617 buf, n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001618 if (ret < 0) {
1619 return ret;
1620 }
1621 break;
1622 }
1623 /* fall-through */
1624
1625 case BLK_ZERO:
1626 if (s->has_zero_init) {
1627 break;
1628 }
Eric Blaked004bd52016-05-24 16:25:20 -06001629 ret = blk_pwrite_zeroes(s->target, sector_num << BDRV_SECTOR_BITS,
1630 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001631 if (ret < 0) {
1632 return ret;
1633 }
1634 break;
1635 }
1636
1637 sector_num += n;
1638 nb_sectors -= n;
1639 buf += n * BDRV_SECTOR_SIZE;
1640 }
1641
1642 return 0;
1643}
1644
1645static int convert_do_copy(ImgConvertState *s)
1646{
1647 uint8_t *buf = NULL;
1648 int64_t sector_num, allocated_done;
1649 int ret;
1650 int n;
1651
1652 /* Check whether we have zero initialisation or can get it efficiently */
1653 s->has_zero_init = s->min_sparse && !s->target_has_backing
1654 ? bdrv_has_zero_init(blk_bs(s->target))
1655 : false;
1656
1657 if (!s->has_zero_init && !s->target_has_backing &&
1658 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1659 {
Kevin Wolf720ff282016-06-16 15:13:15 +02001660 ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP);
Kevin Wolf690c7302015-03-19 13:33:32 +01001661 if (ret == 0) {
1662 s->has_zero_init = true;
1663 }
1664 }
1665
1666 /* Allocate buffer for copied data. For compressed images, only one cluster
1667 * can be copied at a time. */
1668 if (s->compressed) {
1669 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1670 error_report("invalid cluster size");
1671 ret = -EINVAL;
1672 goto fail;
1673 }
1674 s->buf_sectors = s->cluster_sectors;
1675 }
1676 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1677
1678 /* Calculate allocated sectors for progress */
1679 s->allocated_sectors = 0;
1680 sector_num = 0;
1681 while (sector_num < s->total_sectors) {
1682 n = convert_iteration_sectors(s, sector_num);
1683 if (n < 0) {
1684 ret = n;
1685 goto fail;
1686 }
Max Reitzaad15de2016-03-24 23:33:57 +01001687 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1688 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001689 s->allocated_sectors += n;
1690 }
1691 sector_num += n;
1692 }
1693
1694 /* Do the copy */
1695 s->src_cur = 0;
1696 s->src_cur_offset = 0;
1697 s->sector_next_status = 0;
1698
1699 sector_num = 0;
1700 allocated_done = 0;
1701
1702 while (sector_num < s->total_sectors) {
1703 n = convert_iteration_sectors(s, sector_num);
1704 if (n < 0) {
1705 ret = n;
1706 goto fail;
1707 }
Max Reitzaad15de2016-03-24 23:33:57 +01001708 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1709 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001710 allocated_done += n;
1711 qemu_progress_print(100.0 * allocated_done / s->allocated_sectors,
1712 0);
1713 }
1714
Max Reitzaad15de2016-03-24 23:33:57 +01001715 if (s->status == BLK_DATA) {
1716 ret = convert_read(s, sector_num, n, buf);
1717 if (ret < 0) {
1718 error_report("error while reading sector %" PRId64
1719 ": %s", sector_num, strerror(-ret));
1720 goto fail;
1721 }
1722 } else if (!s->min_sparse && s->status == BLK_ZERO) {
1723 n = MIN(n, s->buf_sectors);
1724 memset(buf, 0, n * BDRV_SECTOR_SIZE);
1725 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001726 }
1727
1728 ret = convert_write(s, sector_num, n, buf);
1729 if (ret < 0) {
1730 error_report("error while writing sector %" PRId64
1731 ": %s", sector_num, strerror(-ret));
1732 goto fail;
1733 }
1734
1735 sector_num += n;
1736 }
1737
1738 if (s->compressed) {
1739 /* signal EOF to align */
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001740 ret = blk_pwrite_compressed(s->target, 0, NULL, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001741 if (ret < 0) {
1742 goto fail;
1743 }
1744 }
1745
1746 ret = 0;
1747fail:
1748 qemu_vfree(buf);
1749 return ret;
1750}
1751
bellardea2384d2004-08-01 21:59:26 +00001752static int img_convert(int argc, char **argv)
1753{
Kevin Wolf690c7302015-03-19 13:33:32 +01001754 int c, bs_n, bs_i, compress, cluster_sectors, skip_create;
Peter Lieven13c28af2013-11-27 11:07:01 +01001755 int64_t ret = 0;
Max Reitz40055952014-07-22 22:58:42 +02001756 int progress = 0, flags, src_flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001757 bool writethrough, src_writethrough;
Max Reitz40055952014-07-22 22:58:42 +02001758 const char *fmt, *out_fmt, *cache, *src_cache, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001759 BlockDriver *drv, *proto_drv;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001760 BlockBackend **blk = NULL, *out_blk = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001761 BlockDriverState **bs = NULL, *out_bs = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001762 int64_t total_sectors;
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001763 int64_t *bs_sectors = NULL;
Peter Lievenf2521c92013-11-27 11:07:06 +01001764 size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
bellardfaea38e2006-08-05 21:31:00 +00001765 BlockDriverInfo bdi;
Chunyan Liu83d05212014-06-05 17:20:51 +08001766 QemuOpts *opts = NULL;
1767 QemuOptsList *create_opts = NULL;
1768 const char *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001769 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -07001770 const char *snapshot_name = NULL;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001771 int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001772 bool quiet = false;
Max Reitzcc84d902013-09-06 17:14:26 +02001773 Error *local_err = NULL;
Wenchao Xiaef806542013-12-04 17:10:57 +08001774 QemuOpts *sn_opts = NULL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001775 ImgConvertState state;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001776 bool image_opts = false;
bellardea2384d2004-08-01 21:59:26 +00001777
1778 fmt = NULL;
1779 out_fmt = "raw";
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001780 cache = "unsafe";
Max Reitz40055952014-07-22 22:58:42 +02001781 src_cache = BDRV_DEFAULT_CACHE;
thsf58c7b32008-06-05 21:53:49 +00001782 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +01001783 compress = 0;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001784 skip_create = 0;
bellardea2384d2004-08-01 21:59:26 +00001785 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001786 static const struct option long_options[] = {
1787 {"help", no_argument, 0, 'h'},
1788 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001789 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001790 {0, 0, 0, 0}
1791 };
1792 c = getopt_long(argc, argv, "hf:O:B:ce6o:s:l:S:pt:T:qn",
1793 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001794 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001795 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001796 }
bellardea2384d2004-08-01 21:59:26 +00001797 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001798 case '?':
bellardea2384d2004-08-01 21:59:26 +00001799 case 'h':
1800 help();
1801 break;
1802 case 'f':
1803 fmt = optarg;
1804 break;
1805 case 'O':
1806 out_fmt = optarg;
1807 break;
thsf58c7b32008-06-05 21:53:49 +00001808 case 'B':
1809 out_baseimg = optarg;
1810 break;
bellardea2384d2004-08-01 21:59:26 +00001811 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +01001812 compress = 1;
bellardea2384d2004-08-01 21:59:26 +00001813 break;
1814 case 'e':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001815 error_report("option -e is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001816 "encryption\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001817 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001818 goto fail_getopt;
thsec36ba12007-09-16 21:59:02 +00001819 case '6':
Markus Armbruster9d42e152011-06-22 14:03:55 +02001820 error_report("option -6 is deprecated, please use \'-o "
Jes Sorenseneec77d92010-12-07 17:44:34 +01001821 "compat6\' instead!");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001822 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001823 goto fail_getopt;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001824 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001825 if (!is_valid_option_list(optarg)) {
1826 error_report("Invalid option list: %s", optarg);
1827 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001828 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01001829 }
1830 if (!options) {
1831 options = g_strdup(optarg);
1832 } else {
1833 char *old_options = options;
1834 options = g_strdup_printf("%s,%s", options, optarg);
1835 g_free(old_options);
1836 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02001837 break;
edison51ef6722010-09-21 19:58:41 -07001838 case 's':
1839 snapshot_name = optarg;
1840 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08001841 case 'l':
1842 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01001843 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
1844 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08001845 if (!sn_opts) {
1846 error_report("Failed in parsing snapshot param '%s'",
1847 optarg);
Kevin Wolf2dc83282014-02-21 16:24:05 +01001848 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001849 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08001850 }
1851 } else {
1852 snapshot_name = optarg;
1853 }
1854 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001855 case 'S':
1856 {
1857 int64_t sval;
Markus Armbrustere36b3692011-11-22 09:46:05 +01001858 char *end;
Marc-André Lureau4677bb42015-09-16 18:02:56 +02001859 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
Markus Armbrustere36b3692011-11-22 09:46:05 +01001860 if (sval < 0 || *end) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02001861 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf2dc83282014-02-21 16:24:05 +01001862 ret = -1;
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001863 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02001864 }
1865
1866 min_sparse = sval / BDRV_SECTOR_SIZE;
1867 break;
1868 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001869 case 'p':
1870 progress = 1;
1871 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04001872 case 't':
1873 cache = optarg;
1874 break;
Max Reitz40055952014-07-22 22:58:42 +02001875 case 'T':
1876 src_cache = optarg;
1877 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001878 case 'q':
1879 quiet = true;
1880 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01001881 case 'n':
1882 skip_create = 1;
1883 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001884 case OPTION_OBJECT:
1885 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1886 optarg, true);
1887 if (!opts) {
1888 goto fail_getopt;
1889 }
1890 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001891 case OPTION_IMAGE_OPTS:
1892 image_opts = true;
1893 break;
bellardea2384d2004-08-01 21:59:26 +00001894 }
1895 }
ths3b46e622007-09-17 08:09:54 +00001896
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001897 if (qemu_opts_foreach(&qemu_object_opts,
1898 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001899 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001900 goto fail_getopt;
1901 }
1902
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001903 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01001904 if (quiet) {
1905 progress = 0;
1906 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001907 qemu_progress_init(progress, 1.0);
1908
balrog926c2d22007-10-31 01:11:44 +00001909 bs_n = argc - optind - 1;
Kevin Wolfa283cb62014-02-21 16:24:07 +01001910 out_filename = bs_n >= 1 ? argv[argc - 1] : NULL;
thsf58c7b32008-06-05 21:53:49 +00001911
Kevin Wolf2dc83282014-02-21 16:24:05 +01001912 if (options && has_help_option(options)) {
Jes Sorensen4ac8aac2010-12-06 15:25:38 +01001913 ret = print_block_option_help(out_filename, out_fmt);
1914 goto out;
1915 }
1916
bellardea2384d2004-08-01 21:59:26 +00001917 if (bs_n < 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001918 error_exit("Must specify image file name");
ths5fafdf22007-09-16 21:08:06 +00001919 }
bellardea2384d2004-08-01 21:59:26 +00001920
thsf58c7b32008-06-05 21:53:49 +00001921
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001922 if (bs_n > 1 && out_baseimg) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001923 error_report("-B makes no sense when concatenating multiple input "
1924 "images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001925 ret = -1;
1926 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001927 }
Dong Xu Wangf8111c22012-03-15 20:13:31 +08001928
Kevin Wolfce099542016-03-15 13:01:04 +01001929 src_flags = 0;
1930 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001931 if (ret < 0) {
1932 error_report("Invalid source cache option: %s", src_cache);
1933 goto out;
1934 }
1935
Jes Sorensen6b837bc2011-03-30 14:16:25 +02001936 qemu_progress_print(0, 100);
1937
Markus Armbruster26f54e92014-10-07 13:59:04 +02001938 blk = g_new0(BlockBackend *, bs_n);
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001939 bs = g_new0(BlockDriverState *, bs_n);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001940 bs_sectors = g_new(int64_t, bs_n);
balrog926c2d22007-10-31 01:11:44 +00001941
1942 total_sectors = 0;
1943 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Max Reitzefaa7c42016-03-16 19:54:38 +01001944 blk[bs_i] = img_open(image_opts, argv[optind + bs_i],
Kevin Wolfce099542016-03-15 13:01:04 +01001945 fmt, src_flags, src_writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001946 if (!blk[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001947 ret = -1;
1948 goto out;
1949 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001950 bs[bs_i] = blk_bs(blk[bs_i]);
Max Reitzf1d3cd72015-02-05 13:58:18 -05001951 bs_sectors[bs_i] = blk_nb_sectors(blk[bs_i]);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001952 if (bs_sectors[bs_i] < 0) {
1953 error_report("Could not get size of %s: %s",
1954 argv[optind + bs_i], strerror(-bs_sectors[bs_i]));
1955 ret = -1;
1956 goto out;
1957 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02001958 total_sectors += bs_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00001959 }
bellardea2384d2004-08-01 21:59:26 +00001960
Wenchao Xiaef806542013-12-04 17:10:57 +08001961 if (sn_opts) {
1962 ret = bdrv_snapshot_load_tmp(bs[0],
1963 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1964 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1965 &local_err);
1966 } else if (snapshot_name != NULL) {
edison51ef6722010-09-21 19:58:41 -07001967 if (bs_n > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02001968 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07001969 ret = -1;
1970 goto out;
1971 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08001972
1973 bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08001974 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01001975 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001976 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08001977 ret = -1;
1978 goto out;
edison51ef6722010-09-21 19:58:41 -07001979 }
1980
Kevin Wolfefa84d42009-05-18 16:42:12 +02001981 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +00001982 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001983 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +01001984 error_report("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001985 ret = -1;
1986 goto out;
1987 }
balrog926c2d22007-10-31 01:11:44 +00001988
Max Reitzb65a5e12015-02-05 13:58:12 -05001989 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001990 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +01001991 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001992 ret = -1;
1993 goto out;
1994 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +09001995
Max Reitz2e024cd2015-02-11 09:58:46 -05001996 if (!skip_create) {
1997 if (!drv->create_opts) {
1998 error_report("Format driver '%s' does not support image creation",
1999 drv->format_name);
2000 ret = -1;
2001 goto out;
2002 }
Max Reitzf75613c2014-12-02 18:32:46 +01002003
Max Reitz2e024cd2015-02-11 09:58:46 -05002004 if (!proto_drv->create_opts) {
2005 error_report("Protocol driver '%s' does not support image creation",
2006 proto_drv->format_name);
2007 ret = -1;
2008 goto out;
2009 }
Max Reitzf75613c2014-12-02 18:32:46 +01002010
Max Reitz2e024cd2015-02-11 09:58:46 -05002011 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2012 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002013
Max Reitz2e024cd2015-02-11 09:58:46 -05002014 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002015 if (options) {
2016 qemu_opts_do_parse(opts, options, NULL, &local_err);
2017 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002018 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002019 ret = -1;
2020 goto out;
2021 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002022 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002023
Markus Armbruster39101f22015-02-12 16:46:36 +01002024 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_sectors * 512,
2025 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002026 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2027 if (ret < 0) {
2028 goto out;
2029 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002030 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002031
Kevin Wolfa18953f2010-10-14 15:46:04 +02002032 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002033 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002034 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002035 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002036 }
2037
Kevin Wolfefa84d42009-05-18 16:42:12 +02002038 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +01002039 if (compress) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002040 bool encryption =
2041 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
2042 const char *preallocation =
2043 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002044
Pavel Butsykin35fadca2016-07-22 11:17:48 +03002045 if (!drv->bdrv_co_pwritev_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002046 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002047 ret = -1;
2048 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002049 }
2050
Chunyan Liu83d05212014-06-05 17:20:51 +08002051 if (encryption) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002052 error_report("Compression and encryption not supported at "
2053 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002054 ret = -1;
2055 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002056 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002057
Chunyan Liu83d05212014-06-05 17:20:51 +08002058 if (preallocation
2059 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002060 {
2061 error_report("Compression and preallocation not supported at "
2062 "the same time");
2063 ret = -1;
2064 goto out;
2065 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002066 }
2067
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002068 if (!skip_create) {
2069 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002070 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002071 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002072 error_reportf_err(local_err, "%s: error while converting %s: ",
2073 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002074 goto out;
bellardea2384d2004-08-01 21:59:26 +00002075 }
2076 }
ths3b46e622007-09-17 08:09:54 +00002077
Peter Lieven5a37b602013-10-24 12:07:06 +02002078 flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002079 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002080 if (ret < 0) {
2081 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002082 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002083 }
2084
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002085 /* XXX we should allow --image-opts to trigger use of
2086 * img_open() here, but then we have trouble with
2087 * the bdrv_create() call which takes different params.
2088 * Not critical right now, so fix can wait...
2089 */
Kevin Wolfce099542016-03-15 13:01:04 +01002090 out_blk = img_open_file(out_filename, out_fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002091 if (!out_blk) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002092 ret = -1;
2093 goto out;
2094 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002095 out_bs = blk_bs(out_blk);
bellardea2384d2004-08-01 21:59:26 +00002096
Eric Blake5def6b82016-06-23 16:37:19 -06002097 /* increase bufsectors from the default 4096 (2M) if opt_transfer
Peter Lievenf2521c92013-11-27 11:07:06 +01002098 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2099 * as maximum. */
2100 bufsectors = MIN(32768,
Eric Blake5def6b82016-06-23 16:37:19 -06002101 MAX(bufsectors,
2102 MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
Eric Blakeb9f78552016-06-23 16:37:21 -06002103 out_bs->bl.pdiscard_alignment >>
2104 BDRV_SECTOR_BITS)));
Peter Lievenf2521c92013-11-27 11:07:06 +01002105
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002106 if (skip_create) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05002107 int64_t output_sectors = blk_nb_sectors(out_blk);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002108 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002109 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002110 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002111 ret = -1;
2112 goto out;
Markus Armbruster43716fa2014-06-26 13:23:21 +02002113 } else if (output_sectors < total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002114 error_report("output file is smaller than input file");
2115 ret = -1;
2116 goto out;
2117 }
2118 }
2119
Peter Lieven24f833c2013-11-27 11:07:07 +01002120 cluster_sectors = 0;
2121 ret = bdrv_get_info(out_bs, &bdi);
2122 if (ret < 0) {
2123 if (compress) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002124 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002125 goto out;
2126 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002127 } else {
Fam Zheng85f49ca2014-05-06 21:08:43 +08002128 compress = compress || bdi.needs_compressed_writes;
Peter Lieven24f833c2013-11-27 11:07:07 +01002129 cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
2130 }
2131
Kevin Wolf690c7302015-03-19 13:33:32 +01002132 state = (ImgConvertState) {
2133 .src = blk,
2134 .src_sectors = bs_sectors,
2135 .src_num = bs_n,
2136 .total_sectors = total_sectors,
2137 .target = out_blk,
2138 .compressed = compress,
2139 .target_has_backing = (bool) out_baseimg,
2140 .min_sparse = min_sparse,
2141 .cluster_sectors = cluster_sectors,
2142 .buf_sectors = bufsectors,
2143 };
2144 ret = convert_do_copy(&state);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002145
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002146out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002147 if (!ret) {
2148 qemu_progress_print(100, 0);
2149 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002150 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002151 qemu_opts_del(opts);
2152 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002153 qemu_opts_del(sn_opts);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002154 blk_unref(out_blk);
Markus Armbruster9ba10c92014-10-07 13:59:08 +02002155 g_free(bs);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002156 if (blk) {
2157 for (bs_i = 0; bs_i < bs_n; bs_i++) {
2158 blk_unref(blk[bs_i]);
2159 }
2160 g_free(blk);
2161 }
Markus Armbrusterd739f1c2014-06-26 13:23:24 +02002162 g_free(bs_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002163fail_getopt:
2164 g_free(options);
2165
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002166 if (ret) {
2167 return 1;
2168 }
bellardea2384d2004-08-01 21:59:26 +00002169 return 0;
2170}
2171
bellard57d1a2b2004-08-03 21:15:11 +00002172
bellardfaea38e2006-08-05 21:31:00 +00002173static void dump_snapshots(BlockDriverState *bs)
2174{
2175 QEMUSnapshotInfo *sn_tab, *sn;
2176 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002177
2178 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2179 if (nb_sns <= 0)
2180 return;
2181 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002182 bdrv_snapshot_dump(fprintf, stdout, NULL);
2183 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002184 for(i = 0; i < nb_sns; i++) {
2185 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002186 bdrv_snapshot_dump(fprintf, stdout, sn);
2187 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002188 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002189 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002190}
2191
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002192static void dump_json_image_info_list(ImageInfoList *list)
2193{
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002194 QString *str;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002195 QObject *obj;
Eric Blake3b098d52016-06-09 10:48:43 -06002196 Visitor *v = qmp_output_visitor_new(&obj);
2197
2198 visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2199 visit_complete(v, &obj);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002200 str = qobject_to_json_pretty(obj);
2201 assert(str != NULL);
2202 printf("%s\n", qstring_get_str(str));
2203 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002204 visit_free(v);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002205 QDECREF(str);
2206}
2207
Benoît Canetc054b3f2012-09-05 13:09:02 +02002208static void dump_json_image_info(ImageInfo *info)
2209{
Benoît Canetc054b3f2012-09-05 13:09:02 +02002210 QString *str;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002211 QObject *obj;
Eric Blake3b098d52016-06-09 10:48:43 -06002212 Visitor *v = qmp_output_visitor_new(&obj);
2213
2214 visit_type_ImageInfo(v, NULL, &info, &error_abort);
2215 visit_complete(v, &obj);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002216 str = qobject_to_json_pretty(obj);
2217 assert(str != NULL);
2218 printf("%s\n", qstring_get_str(str));
2219 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002220 visit_free(v);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002221 QDECREF(str);
2222}
2223
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002224static void dump_human_image_info_list(ImageInfoList *list)
2225{
2226 ImageInfoList *elem;
2227 bool delim = false;
2228
2229 for (elem = list; elem; elem = elem->next) {
2230 if (delim) {
2231 printf("\n");
2232 }
2233 delim = true;
2234
Wenchao Xia5b917042013-05-25 11:09:45 +08002235 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002236 }
2237}
2238
2239static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2240{
2241 return strcmp(a, b) == 0;
2242}
2243
2244/**
2245 * Open an image file chain and return an ImageInfoList
2246 *
2247 * @filename: topmost image filename
2248 * @fmt: topmost image format (may be NULL to autodetect)
2249 * @chain: true - enumerate entire backing file chain
2250 * false - only topmost image file
2251 *
2252 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2253 * image file. If there was an error a message will have been printed to
2254 * stderr.
2255 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002256static ImageInfoList *collect_image_info_list(bool image_opts,
2257 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002258 const char *fmt,
2259 bool chain)
2260{
2261 ImageInfoList *head = NULL;
2262 ImageInfoList **last = &head;
2263 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002264 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002265
2266 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2267
2268 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002269 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002270 BlockDriverState *bs;
2271 ImageInfo *info;
2272 ImageInfoList *elem;
2273
2274 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2275 error_report("Backing file '%s' creates an infinite loop.",
2276 filename);
2277 goto err;
2278 }
2279 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2280
Max Reitzefaa7c42016-03-16 19:54:38 +01002281 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01002282 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002283 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002284 goto err;
2285 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002286 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002287
Wenchao Xia43526ec2013-06-06 12:27:58 +08002288 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002289 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002290 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002291 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002292 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002293 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002294
2295 elem = g_new0(ImageInfoList, 1);
2296 elem->value = info;
2297 *last = elem;
2298 last = &elem->next;
2299
Markus Armbruster26f54e92014-10-07 13:59:04 +02002300 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002301
2302 filename = fmt = NULL;
2303 if (chain) {
2304 if (info->has_full_backing_filename) {
2305 filename = info->full_backing_filename;
2306 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002307 error_report("Could not determine absolute backing filename,"
2308 " but backing filename '%s' present",
2309 info->backing_filename);
2310 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002311 }
2312 if (info->has_backing_filename_format) {
2313 fmt = info->backing_filename_format;
2314 }
2315 }
2316 }
2317 g_hash_table_destroy(filenames);
2318 return head;
2319
2320err:
2321 qapi_free_ImageInfoList(head);
2322 g_hash_table_destroy(filenames);
2323 return NULL;
2324}
2325
Benoît Canetc054b3f2012-09-05 13:09:02 +02002326static int img_info(int argc, char **argv)
2327{
2328 int c;
2329 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002330 bool chain = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002331 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002332 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002333 bool image_opts = false;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002334
bellardea2384d2004-08-01 21:59:26 +00002335 fmt = NULL;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002336 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002337 for(;;) {
Benoît Canetc054b3f2012-09-05 13:09:02 +02002338 int option_index = 0;
2339 static const struct option long_options[] = {
2340 {"help", no_argument, 0, 'h'},
2341 {"format", required_argument, 0, 'f'},
2342 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002343 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002344 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002345 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Benoît Canetc054b3f2012-09-05 13:09:02 +02002346 {0, 0, 0, 0}
2347 };
2348 c = getopt_long(argc, argv, "f:h",
2349 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002350 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002351 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002352 }
bellardea2384d2004-08-01 21:59:26 +00002353 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002354 case '?':
bellardea2384d2004-08-01 21:59:26 +00002355 case 'h':
2356 help();
2357 break;
2358 case 'f':
2359 fmt = optarg;
2360 break;
Benoît Canetc054b3f2012-09-05 13:09:02 +02002361 case OPTION_OUTPUT:
2362 output = optarg;
2363 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002364 case OPTION_BACKING_CHAIN:
2365 chain = true;
2366 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002367 case OPTION_OBJECT: {
2368 QemuOpts *opts;
2369 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2370 optarg, true);
2371 if (!opts) {
2372 return 1;
2373 }
2374 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002375 case OPTION_IMAGE_OPTS:
2376 image_opts = true;
2377 break;
bellardea2384d2004-08-01 21:59:26 +00002378 }
2379 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002380 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002381 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002382 }
bellardea2384d2004-08-01 21:59:26 +00002383 filename = argv[optind++];
2384
Benoît Canetc054b3f2012-09-05 13:09:02 +02002385 if (output && !strcmp(output, "json")) {
2386 output_format = OFORMAT_JSON;
2387 } else if (output && !strcmp(output, "human")) {
2388 output_format = OFORMAT_HUMAN;
2389 } else if (output) {
2390 error_report("--output must be used with human or json as argument.");
2391 return 1;
2392 }
2393
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002394 if (qemu_opts_foreach(&qemu_object_opts,
2395 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002396 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002397 return 1;
2398 }
2399
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002400 list = collect_image_info_list(image_opts, filename, fmt, chain);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002401 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002402 return 1;
2403 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002404
Benoît Canetc054b3f2012-09-05 13:09:02 +02002405 switch (output_format) {
2406 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002407 dump_human_image_info_list(list);
Benoît Canetc054b3f2012-09-05 13:09:02 +02002408 break;
2409 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002410 if (chain) {
2411 dump_json_image_info_list(list);
2412 } else {
2413 dump_json_image_info(list->value);
2414 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002415 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002416 }
Benoît Canetc054b3f2012-09-05 13:09:02 +02002417
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002418 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002419 return 0;
2420}
2421
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002422static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2423 MapEntry *next)
2424{
2425 switch (output_format) {
2426 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002427 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002428 error_report("File contains external, encrypted or compressed clusters.");
2429 exit(1);
2430 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002431 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002432 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002433 e->start, e->length,
2434 e->has_offset ? e->offset : 0,
2435 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002436 }
2437 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2438 * Modify the flags here to allow more coalescing.
2439 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002440 if (next && (!next->data || next->zero)) {
2441 next->data = false;
2442 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002443 }
2444 break;
2445 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002446 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2447 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002448 (e->start == 0 ? "[" : ",\n"),
2449 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002450 e->zero ? "true" : "false",
2451 e->data ? "true" : "false");
2452 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002453 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002454 }
2455 putchar('}');
2456
2457 if (!next) {
2458 printf("]\n");
2459 }
2460 break;
2461 }
2462}
2463
2464static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2465 int nb_sectors, MapEntry *e)
2466{
2467 int64_t ret;
2468 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002469 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002470 bool has_offset;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002471
2472 /* As an optimization, we could cache the current range of unallocated
2473 * clusters in each file of the chain, and avoid querying the same
2474 * range repeatedly.
2475 */
2476
2477 depth = 0;
2478 for (;;) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08002479 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2480 &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002481 if (ret < 0) {
2482 return ret;
2483 }
2484 assert(nb_sectors);
2485 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2486 break;
2487 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002488 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002489 if (bs == NULL) {
2490 ret = 0;
2491 break;
2492 }
2493
2494 depth++;
2495 }
2496
John Snow28756452016-02-05 13:12:33 -05002497 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2498
2499 *e = (MapEntry) {
2500 .start = sector_num * BDRV_SECTOR_SIZE,
2501 .length = nb_sectors * BDRV_SECTOR_SIZE,
2502 .data = !!(ret & BDRV_BLOCK_DATA),
2503 .zero = !!(ret & BDRV_BLOCK_ZERO),
2504 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2505 .has_offset = has_offset,
2506 .depth = depth,
2507 .has_filename = file && has_offset,
2508 .filename = file && has_offset ? file->filename : NULL,
2509 };
2510
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002511 return 0;
2512}
2513
Fam Zheng16b0d552016-01-26 11:59:02 +08002514static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2515{
2516 if (curr->length == 0) {
2517 return false;
2518 }
2519 if (curr->zero != next->zero ||
2520 curr->data != next->data ||
2521 curr->depth != next->depth ||
2522 curr->has_filename != next->has_filename ||
2523 curr->has_offset != next->has_offset) {
2524 return false;
2525 }
2526 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2527 return false;
2528 }
2529 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2530 return false;
2531 }
2532 return true;
2533}
2534
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002535static int img_map(int argc, char **argv)
2536{
2537 int c;
2538 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002539 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002540 BlockDriverState *bs;
2541 const char *filename, *fmt, *output;
2542 int64_t length;
2543 MapEntry curr = { .length = 0 }, next;
2544 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002545 bool image_opts = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002546
2547 fmt = NULL;
2548 output = NULL;
2549 for (;;) {
2550 int option_index = 0;
2551 static const struct option long_options[] = {
2552 {"help", no_argument, 0, 'h'},
2553 {"format", required_argument, 0, 'f'},
2554 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002555 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002556 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002557 {0, 0, 0, 0}
2558 };
2559 c = getopt_long(argc, argv, "f:h",
2560 long_options, &option_index);
2561 if (c == -1) {
2562 break;
2563 }
2564 switch (c) {
2565 case '?':
2566 case 'h':
2567 help();
2568 break;
2569 case 'f':
2570 fmt = optarg;
2571 break;
2572 case OPTION_OUTPUT:
2573 output = optarg;
2574 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002575 case OPTION_OBJECT: {
2576 QemuOpts *opts;
2577 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2578 optarg, true);
2579 if (!opts) {
2580 return 1;
2581 }
2582 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002583 case OPTION_IMAGE_OPTS:
2584 image_opts = true;
2585 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002586 }
2587 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002588 if (optind != argc - 1) {
2589 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002590 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002591 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002592
2593 if (output && !strcmp(output, "json")) {
2594 output_format = OFORMAT_JSON;
2595 } else if (output && !strcmp(output, "human")) {
2596 output_format = OFORMAT_HUMAN;
2597 } else if (output) {
2598 error_report("--output must be used with human or json as argument.");
2599 return 1;
2600 }
2601
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002602 if (qemu_opts_foreach(&qemu_object_opts,
2603 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002604 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002605 return 1;
2606 }
2607
Kevin Wolfce099542016-03-15 13:01:04 +01002608 blk = img_open(image_opts, filename, fmt, 0, false, false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002609 if (!blk) {
2610 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002611 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002612 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002613
2614 if (output_format == OFORMAT_HUMAN) {
2615 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2616 }
2617
Max Reitzf1d3cd72015-02-05 13:58:18 -05002618 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002619 while (curr.start + curr.length < length) {
2620 int64_t nsectors_left;
2621 int64_t sector_num;
2622 int n;
2623
2624 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2625
2626 /* Probe up to 1 GiB at a time. */
2627 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2628 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2629 ret = get_block_status(bs, sector_num, n, &next);
2630
2631 if (ret < 0) {
2632 error_report("Could not read file metadata: %s", strerror(-ret));
2633 goto out;
2634 }
2635
Fam Zheng16b0d552016-01-26 11:59:02 +08002636 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002637 curr.length += next.length;
2638 continue;
2639 }
2640
2641 if (curr.length > 0) {
2642 dump_map_entry(output_format, &curr, &next);
2643 }
2644 curr = next;
2645 }
2646
2647 dump_map_entry(output_format, &curr, NULL);
2648
2649out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002650 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002651 return ret < 0;
2652}
2653
aliguorif7b4a942009-01-07 17:40:15 +00002654#define SNAPSHOT_LIST 1
2655#define SNAPSHOT_CREATE 2
2656#define SNAPSHOT_APPLY 3
2657#define SNAPSHOT_DELETE 4
2658
Stuart Brady153859b2009-06-07 00:42:17 +01002659static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002660{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002661 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002662 BlockDriverState *bs;
2663 QEMUSnapshotInfo sn;
2664 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002665 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002666 int action = 0;
2667 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002668 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002669 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002670 bool image_opts = false;
aliguorif7b4a942009-01-07 17:40:15 +00002671
Kevin Wolfce099542016-03-15 13:01:04 +01002672 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002673 /* Parse commandline parameters */
2674 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002675 static const struct option long_options[] = {
2676 {"help", no_argument, 0, 'h'},
2677 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002678 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002679 {0, 0, 0, 0}
2680 };
2681 c = getopt_long(argc, argv, "la:c:d:hq",
2682 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002683 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002684 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002685 }
aliguorif7b4a942009-01-07 17:40:15 +00002686 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002687 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00002688 case 'h':
2689 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002690 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002691 case 'l':
2692 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002693 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002694 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002695 }
2696 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002697 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002698 break;
2699 case 'a':
2700 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002701 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002702 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002703 }
2704 action = SNAPSHOT_APPLY;
2705 snapshot_name = optarg;
2706 break;
2707 case 'c':
2708 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002709 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002710 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002711 }
2712 action = SNAPSHOT_CREATE;
2713 snapshot_name = optarg;
2714 break;
2715 case 'd':
2716 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002717 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002718 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002719 }
2720 action = SNAPSHOT_DELETE;
2721 snapshot_name = optarg;
2722 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002723 case 'q':
2724 quiet = true;
2725 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002726 case OPTION_OBJECT: {
2727 QemuOpts *opts;
2728 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2729 optarg, true);
2730 if (!opts) {
2731 return 1;
2732 }
2733 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002734 case OPTION_IMAGE_OPTS:
2735 image_opts = true;
2736 break;
aliguorif7b4a942009-01-07 17:40:15 +00002737 }
2738 }
2739
Kevin Wolffc11eb22013-08-05 10:53:04 +02002740 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002741 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002742 }
aliguorif7b4a942009-01-07 17:40:15 +00002743 filename = argv[optind++];
2744
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002745 if (qemu_opts_foreach(&qemu_object_opts,
2746 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002747 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002748 return 1;
2749 }
2750
aliguorif7b4a942009-01-07 17:40:15 +00002751 /* Open the image */
Kevin Wolfce099542016-03-15 13:01:04 +01002752 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002753 if (!blk) {
2754 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002755 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002756 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002757
2758 /* Perform the requested action */
2759 switch(action) {
2760 case SNAPSHOT_LIST:
2761 dump_snapshots(bs);
2762 break;
2763
2764 case SNAPSHOT_CREATE:
2765 memset(&sn, 0, sizeof(sn));
2766 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
2767
2768 qemu_gettimeofday(&tv);
2769 sn.date_sec = tv.tv_sec;
2770 sn.date_nsec = tv.tv_usec * 1000;
2771
2772 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002773 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002774 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002775 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002776 }
aliguorif7b4a942009-01-07 17:40:15 +00002777 break;
2778
2779 case SNAPSHOT_APPLY:
2780 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002781 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002782 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00002783 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002784 }
aliguorif7b4a942009-01-07 17:40:15 +00002785 break;
2786
2787 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002788 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002789 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002790 error_reportf_err(err, "Could not delete snapshot '%s': ",
2791 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002792 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002793 }
aliguorif7b4a942009-01-07 17:40:15 +00002794 break;
2795 }
2796
2797 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02002798 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002799 if (ret) {
2800 return 1;
2801 }
Stuart Brady153859b2009-06-07 00:42:17 +01002802 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002803}
2804
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002805static int img_rebase(int argc, char **argv)
2806{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002807 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01002808 uint8_t *buf_old = NULL;
2809 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05002810 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002811 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02002812 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
2813 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01002814 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002815 int unsafe = 0;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002816 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002817 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002818 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002819 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002820
2821 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002822 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002823 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02002824 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002825 out_baseimg = NULL;
2826 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002827 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002828 static const struct option long_options[] = {
2829 {"help", no_argument, 0, 'h'},
2830 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002831 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002832 {0, 0, 0, 0}
2833 };
2834 c = getopt_long(argc, argv, "hf:F:b:upt:T:q",
2835 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002836 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002837 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002838 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002839 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01002840 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002841 case 'h':
2842 help();
2843 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01002844 case 'f':
2845 fmt = optarg;
2846 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002847 case 'F':
2848 out_basefmt = optarg;
2849 break;
2850 case 'b':
2851 out_baseimg = optarg;
2852 break;
2853 case 'u':
2854 unsafe = 1;
2855 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002856 case 'p':
2857 progress = 1;
2858 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002859 case 't':
2860 cache = optarg;
2861 break;
Max Reitz40055952014-07-22 22:58:42 +02002862 case 'T':
2863 src_cache = optarg;
2864 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002865 case 'q':
2866 quiet = true;
2867 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002868 case OPTION_OBJECT: {
2869 QemuOpts *opts;
2870 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2871 optarg, true);
2872 if (!opts) {
2873 return 1;
2874 }
2875 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002876 case OPTION_IMAGE_OPTS:
2877 image_opts = true;
2878 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002879 }
2880 }
2881
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002882 if (quiet) {
2883 progress = 0;
2884 }
2885
Fam Zhengac1307a2014-04-22 13:36:11 +08002886 if (optind != argc - 1) {
2887 error_exit("Expecting one image file name");
2888 }
2889 if (!unsafe && !out_baseimg) {
2890 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002891 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002892 filename = argv[optind++];
2893
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002894 if (qemu_opts_foreach(&qemu_object_opts,
2895 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002896 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002897 return 1;
2898 }
2899
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002900 qemu_progress_init(progress, 2.0);
2901 qemu_progress_print(0, 100);
2902
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002903 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01002904 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002905 if (ret < 0) {
2906 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002907 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002908 }
2909
Kevin Wolfce099542016-03-15 13:01:04 +01002910 src_flags = 0;
2911 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02002912 if (ret < 0) {
2913 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002914 goto out;
Max Reitz40055952014-07-22 22:58:42 +02002915 }
2916
Kevin Wolfce099542016-03-15 13:01:04 +01002917 /* The source files are opened read-only, don't care about WCE */
2918 assert((src_flags & BDRV_O_RDWR) == 0);
2919 (void) src_writethrough;
2920
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002921 /*
2922 * Open the images.
2923 *
2924 * Ignore the old backing file for unsafe rebase in case we want to correct
2925 * the reference to a renamed or moved backing file.
2926 */
Kevin Wolfce099542016-03-15 13:01:04 +01002927 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002928 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002929 ret = -1;
2930 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002931 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002932 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002933
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002934 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05002935 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002936 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002937 ret = -1;
2938 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002939 }
2940 }
2941
2942 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01002943 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05002944 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05002945 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002946
Max Reitz644483d2015-02-05 13:58:17 -05002947 if (bs->backing_format[0] != '\0') {
2948 options = qdict_new();
2949 qdict_put(options, "driver", qstring_from_str(bs->backing_format));
2950 }
2951
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002952 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01002953 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002954 options, src_flags, &local_err);
2955 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002956 error_reportf_err(local_err,
2957 "Could not open old backing file '%s': ",
2958 backing_name);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002959 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002960 }
Max Reitz644483d2015-02-05 13:58:17 -05002961
Alex Bligha6166732012-10-16 13:46:18 +01002962 if (out_baseimg[0]) {
Max Reitz644483d2015-02-05 13:58:17 -05002963 if (out_basefmt) {
2964 options = qdict_new();
2965 qdict_put(options, "driver", qstring_from_str(out_basefmt));
2966 } else {
2967 options = NULL;
2968 }
2969
Max Reitzefaa7c42016-03-16 19:54:38 +01002970 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05002971 options, src_flags, &local_err);
2972 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002973 error_reportf_err(local_err,
2974 "Could not open new backing file '%s': ",
2975 out_baseimg);
Alex Bligha6166732012-10-16 13:46:18 +01002976 goto out;
2977 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002978 }
2979 }
2980
2981 /*
2982 * Check each unallocated cluster in the COW file. If it is unallocated,
2983 * accesses go to the backing file. We must therefore compare this cluster
2984 * in the old and new backing file, and if they differ we need to copy it
2985 * from the old backing file into the COW file.
2986 *
2987 * If qemu-img crashes during this step, no harm is done. The content of
2988 * the image is the same as the original one at any time.
2989 */
2990 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002991 int64_t num_sectors;
2992 int64_t old_backing_num_sectors;
2993 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01002994 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02002995 int n;
Kevin Wolf1f710492012-10-12 14:29:18 +02002996 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08002997
Max Reitzf1d3cd72015-02-05 13:58:18 -05002998 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
2999 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003000
Max Reitzf1d3cd72015-02-05 13:58:18 -05003001 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003002 if (num_sectors < 0) {
3003 error_report("Could not get size of '%s': %s",
3004 filename, strerror(-num_sectors));
3005 ret = -1;
3006 goto out;
3007 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003008 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003009 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003010 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003011
3012 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3013 error_report("Could not get size of '%s': %s",
3014 backing_name, strerror(-old_backing_num_sectors));
3015 ret = -1;
3016 goto out;
3017 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003018 if (blk_new_backing) {
3019 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003020 if (new_backing_num_sectors < 0) {
3021 error_report("Could not get size of '%s': %s",
3022 out_baseimg, strerror(-new_backing_num_sectors));
3023 ret = -1;
3024 goto out;
3025 }
Alex Bligha6166732012-10-16 13:46:18 +01003026 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003027
Kevin Wolf1f710492012-10-12 14:29:18 +02003028 if (num_sectors != 0) {
3029 local_progress = (float)100 /
3030 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3031 }
3032
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003033 for (sector = 0; sector < num_sectors; sector += n) {
3034
3035 /* How many sectors can we handle with the next read? */
3036 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3037 n = (IO_BUF_SIZE / 512);
3038 } else {
3039 n = num_sectors - sector;
3040 }
3041
3042 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02003043 ret = bdrv_is_allocated(bs, sector, n, &n);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003044 if (ret < 0) {
3045 error_report("error while reading image metadata: %s",
3046 strerror(-ret));
3047 goto out;
3048 }
Kevin Wolfcc60e322010-04-29 14:47:48 +02003049 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003050 continue;
3051 }
3052
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003053 /*
3054 * Read old and new backing file and take into consideration that
3055 * backing files may be smaller than the COW image.
3056 */
3057 if (sector >= old_backing_num_sectors) {
3058 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3059 } else {
3060 if (sector + n > old_backing_num_sectors) {
3061 n = old_backing_num_sectors - sector;
3062 }
3063
Eric Blake91669202016-05-06 10:26:43 -06003064 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3065 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003066 if (ret < 0) {
3067 error_report("error while reading from old backing file");
3068 goto out;
3069 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003070 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003071
Max Reitzf1d3cd72015-02-05 13:58:18 -05003072 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003073 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3074 } else {
3075 if (sector + n > new_backing_num_sectors) {
3076 n = new_backing_num_sectors - sector;
3077 }
3078
Eric Blake91669202016-05-06 10:26:43 -06003079 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3080 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003081 if (ret < 0) {
3082 error_report("error while reading from new backing file");
3083 goto out;
3084 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003085 }
3086
3087 /* If they differ, we need to write to the COW file */
3088 uint64_t written = 0;
3089
3090 while (written < n) {
3091 int pnum;
3092
3093 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003094 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003095 {
Eric Blake91669202016-05-06 10:26:43 -06003096 ret = blk_pwrite(blk,
3097 (sector + written) << BDRV_SECTOR_BITS,
3098 buf_old + written * 512,
3099 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003100 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003101 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003102 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003103 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003104 }
3105 }
3106
3107 written += pnum;
3108 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003109 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003110 }
3111 }
3112
3113 /*
3114 * Change the backing file. All clusters that are different from the old
3115 * backing file are overwritten in the COW file now, so the visible content
3116 * doesn't change when we switch the backing file.
3117 */
Alex Bligha6166732012-10-16 13:46:18 +01003118 if (out_baseimg && *out_baseimg) {
3119 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3120 } else {
3121 ret = bdrv_change_backing_file(bs, NULL, NULL);
3122 }
3123
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003124 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003125 error_report("Could not change the backing file to '%s': No "
3126 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003127 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003128 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003129 out_baseimg, strerror(-ret));
3130 }
3131
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003132 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003133 /*
3134 * TODO At this point it is possible to check if any clusters that are
3135 * allocated in the COW file are the same in the backing file. If so, they
3136 * could be dropped from the COW file. Don't do this before switching the
3137 * backing file, in case of a crash this would lead to corruption.
3138 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003139out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003140 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003141 /* Cleanup */
3142 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003143 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003144 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003145 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003146 qemu_vfree(buf_old);
3147 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003148
Markus Armbruster26f54e92014-10-07 13:59:04 +02003149 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003150 if (ret) {
3151 return 1;
3152 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003153 return 0;
3154}
3155
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003156static int img_resize(int argc, char **argv)
3157{
Markus Armbruster6750e792015-02-12 17:43:08 +01003158 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003159 int c, ret, relative;
3160 const char *filename, *fmt, *size;
3161 int64_t n, total_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003162 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003163 BlockBackend *blk = NULL;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003164 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003165
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003166 static QemuOptsList resize_options = {
3167 .name = "resize_options",
3168 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3169 .desc = {
3170 {
3171 .name = BLOCK_OPT_SIZE,
3172 .type = QEMU_OPT_SIZE,
3173 .help = "Virtual disk size"
3174 }, {
3175 /* end of list */
3176 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003177 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003178 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003179 bool image_opts = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003180
Kevin Wolfe80fec72011-04-29 10:58:12 +02003181 /* Remove size from argv manually so that negative numbers are not treated
3182 * as options by getopt. */
3183 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003184 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003185 return 1;
3186 }
3187
3188 size = argv[--argc];
3189
3190 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003191 fmt = NULL;
3192 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003193 static const struct option long_options[] = {
3194 {"help", no_argument, 0, 'h'},
3195 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003196 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003197 {0, 0, 0, 0}
3198 };
3199 c = getopt_long(argc, argv, "f:hq",
3200 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003201 if (c == -1) {
3202 break;
3203 }
3204 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01003205 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003206 case 'h':
3207 help();
3208 break;
3209 case 'f':
3210 fmt = optarg;
3211 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003212 case 'q':
3213 quiet = true;
3214 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003215 case OPTION_OBJECT: {
3216 QemuOpts *opts;
3217 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3218 optarg, true);
3219 if (!opts) {
3220 return 1;
3221 }
3222 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003223 case OPTION_IMAGE_OPTS:
3224 image_opts = true;
3225 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003226 }
3227 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003228 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003229 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003230 }
3231 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003232
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003233 if (qemu_opts_foreach(&qemu_object_opts,
3234 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003235 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003236 return 1;
3237 }
3238
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003239 /* Choose grow, shrink, or absolute resize mode */
3240 switch (size[0]) {
3241 case '+':
3242 relative = 1;
3243 size++;
3244 break;
3245 case '-':
3246 relative = -1;
3247 size++;
3248 break;
3249 default:
3250 relative = 0;
3251 break;
3252 }
3253
3254 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003255 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003256 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003257 if (err) {
3258 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003259 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003260 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003261 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003262 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003263 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3264 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003265
Max Reitzefaa7c42016-03-16 19:54:38 +01003266 blk = img_open(image_opts, filename, fmt,
Kevin Wolfce099542016-03-15 13:01:04 +01003267 BDRV_O_RDWR, false, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003268 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003269 ret = -1;
3270 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003271 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003272
3273 if (relative) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05003274 total_size = blk_getlength(blk) + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003275 } else {
3276 total_size = n;
3277 }
3278 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003279 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003280 ret = -1;
3281 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003282 }
3283
Max Reitzf1d3cd72015-02-05 13:58:18 -05003284 ret = blk_truncate(blk, total_size);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003285 switch (ret) {
3286 case 0:
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003287 qprintf(quiet, "Image resized.\n");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003288 break;
3289 case -ENOTSUP:
Kevin Wolf259b2172012-03-06 12:44:45 +01003290 error_report("This image does not support resize");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003291 break;
3292 case -EACCES:
Jes Sorensen15654a62010-12-16 14:31:53 +01003293 error_report("Image is read-only");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003294 break;
3295 default:
Max Reitzbcf23482016-06-15 17:36:29 +02003296 error_report("Error resizing image: %s", strerror(-ret));
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003297 break;
3298 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003299out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003300 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003301 if (ret) {
3302 return 1;
3303 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003304 return 0;
3305}
3306
Max Reitz76a3a342014-10-27 11:12:51 +01003307static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003308 int64_t offset, int64_t total_work_size,
3309 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003310{
3311 qemu_progress_print(100.f * offset / total_work_size, 0);
3312}
3313
Max Reitz6f176b42013-09-03 10:09:50 +02003314static int img_amend(int argc, char **argv)
3315{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003316 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003317 int c, ret = 0;
3318 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003319 QemuOptsList *create_opts = NULL;
3320 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003321 const char *fmt = NULL, *filename, *cache;
3322 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003323 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003324 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003325 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003326 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003327 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003328
Max Reitzbd39e6e2014-07-22 22:58:43 +02003329 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003330 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003331 static const struct option long_options[] = {
3332 {"help", no_argument, 0, 'h'},
3333 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003334 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003335 {0, 0, 0, 0}
3336 };
3337 c = getopt_long(argc, argv, "ho:f:t:pq",
3338 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003339 if (c == -1) {
3340 break;
3341 }
3342
3343 switch (c) {
3344 case 'h':
3345 case '?':
3346 help();
3347 break;
3348 case 'o':
Kevin Wolf626f84f2014-02-21 16:24:06 +01003349 if (!is_valid_option_list(optarg)) {
3350 error_report("Invalid option list: %s", optarg);
3351 ret = -1;
Max Reitze814dff2015-08-20 16:00:38 -07003352 goto out_no_progress;
Kevin Wolf626f84f2014-02-21 16:24:06 +01003353 }
3354 if (!options) {
3355 options = g_strdup(optarg);
3356 } else {
3357 char *old_options = options;
3358 options = g_strdup_printf("%s,%s", options, optarg);
3359 g_free(old_options);
3360 }
Max Reitz6f176b42013-09-03 10:09:50 +02003361 break;
3362 case 'f':
3363 fmt = optarg;
3364 break;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003365 case 't':
3366 cache = optarg;
3367 break;
Max Reitz76a3a342014-10-27 11:12:51 +01003368 case 'p':
3369 progress = true;
3370 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003371 case 'q':
3372 quiet = true;
3373 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003374 case OPTION_OBJECT:
3375 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3376 optarg, true);
3377 if (!opts) {
3378 ret = -1;
3379 goto out_no_progress;
3380 }
3381 break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003382 case OPTION_IMAGE_OPTS:
3383 image_opts = true;
3384 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003385 }
3386 }
3387
Max Reitz6f176b42013-09-03 10:09:50 +02003388 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003389 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003390 }
3391
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003392 if (qemu_opts_foreach(&qemu_object_opts,
3393 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003394 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003395 ret = -1;
3396 goto out_no_progress;
3397 }
3398
Max Reitz76a3a342014-10-27 11:12:51 +01003399 if (quiet) {
3400 progress = false;
3401 }
3402 qemu_progress_init(progress, 1.0);
3403
Kevin Wolfa283cb62014-02-21 16:24:07 +01003404 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3405 if (fmt && has_help_option(options)) {
3406 /* If a format is explicitly specified (and possibly no filename is
3407 * given), print option help here */
3408 ret = print_block_option_help(filename, fmt);
3409 goto out;
3410 }
3411
3412 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003413 error_report("Expecting one image file name");
3414 ret = -1;
3415 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003416 }
Max Reitz6f176b42013-09-03 10:09:50 +02003417
Kevin Wolfce099542016-03-15 13:01:04 +01003418 flags = BDRV_O_RDWR;
3419 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003420 if (ret < 0) {
3421 error_report("Invalid cache option: %s", cache);
3422 goto out;
3423 }
3424
Kevin Wolfce099542016-03-15 13:01:04 +01003425 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003426 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003427 ret = -1;
3428 goto out;
3429 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003430 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003431
3432 fmt = bs->drv->format_name;
3433
Kevin Wolf626f84f2014-02-21 16:24:06 +01003434 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003435 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003436 ret = print_block_option_help(filename, fmt);
3437 goto out;
3438 }
3439
Max Reitzb2439d22014-12-02 18:32:47 +01003440 if (!bs->drv->create_opts) {
3441 error_report("Format driver '%s' does not support any options to amend",
3442 fmt);
3443 ret = -1;
3444 goto out;
3445 }
3446
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003447 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003448 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003449 if (options) {
3450 qemu_opts_do_parse(opts, options, NULL, &err);
3451 if (err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01003452 error_report_err(err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003453 ret = -1;
3454 goto out;
3455 }
Max Reitz6f176b42013-09-03 10:09:50 +02003456 }
3457
Max Reitz76a3a342014-10-27 11:12:51 +01003458 /* In case the driver does not call amend_status_cb() */
3459 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003460 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003461 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003462 if (ret < 0) {
3463 error_report("Error while amending options: %s", strerror(-ret));
3464 goto out;
3465 }
3466
3467out:
Max Reitz76a3a342014-10-27 11:12:51 +01003468 qemu_progress_end();
3469
Max Reitze814dff2015-08-20 16:00:38 -07003470out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003471 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003472 qemu_opts_del(opts);
3473 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003474 g_free(options);
3475
Max Reitz6f176b42013-09-03 10:09:50 +02003476 if (ret) {
3477 return 1;
3478 }
3479 return 0;
3480}
3481
Kevin Wolfb6133b82014-08-05 14:17:13 +02003482typedef struct BenchData {
3483 BlockBackend *blk;
3484 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003485 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003486 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003487 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003488 int nrreq;
3489 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003490 int flush_interval;
3491 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003492 uint8_t *buf;
3493 QEMUIOVector *qiov;
3494
3495 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003496 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003497 uint64_t offset;
3498} BenchData;
3499
Kevin Wolf55d539c2016-06-03 13:59:41 +02003500static void bench_undrained_flush_cb(void *opaque, int ret)
3501{
3502 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003503 error_report("Failed flush request: %s", strerror(-ret));
Kevin Wolf55d539c2016-06-03 13:59:41 +02003504 exit(EXIT_FAILURE);
3505 }
3506}
3507
Kevin Wolfb6133b82014-08-05 14:17:13 +02003508static void bench_cb(void *opaque, int ret)
3509{
3510 BenchData *b = opaque;
3511 BlockAIOCB *acb;
3512
3513 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003514 error_report("Failed request: %s", strerror(-ret));
Kevin Wolfb6133b82014-08-05 14:17:13 +02003515 exit(EXIT_FAILURE);
3516 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003517
3518 if (b->in_flush) {
3519 /* Just finished a flush with drained queue: Start next requests */
3520 assert(b->in_flight == 0);
3521 b->in_flush = false;
3522 } else if (b->in_flight > 0) {
3523 int remaining = b->n - b->in_flight;
3524
Kevin Wolfb6133b82014-08-05 14:17:13 +02003525 b->n--;
3526 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003527
3528 /* Time for flush? Drain queue if requested, then flush */
3529 if (b->flush_interval && remaining % b->flush_interval == 0) {
3530 if (!b->in_flight || !b->drain_on_flush) {
3531 BlockCompletionFunc *cb;
3532
3533 if (b->drain_on_flush) {
3534 b->in_flush = true;
3535 cb = bench_cb;
3536 } else {
3537 cb = bench_undrained_flush_cb;
3538 }
3539
3540 acb = blk_aio_flush(b->blk, cb, b);
3541 if (!acb) {
3542 error_report("Failed to issue flush request");
3543 exit(EXIT_FAILURE);
3544 }
3545 }
3546 if (b->drain_on_flush) {
3547 return;
3548 }
3549 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003550 }
3551
3552 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003553 if (b->write) {
3554 acb = blk_aio_pwritev(b->blk, b->offset, b->qiov, 0,
3555 bench_cb, b);
3556 } else {
3557 acb = blk_aio_preadv(b->blk, b->offset, b->qiov, 0,
3558 bench_cb, b);
3559 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003560 if (!acb) {
3561 error_report("Failed to issue request");
3562 exit(EXIT_FAILURE);
3563 }
3564 b->in_flight++;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003565 b->offset += b->step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003566 b->offset %= b->image_size;
3567 }
3568}
3569
3570static int img_bench(int argc, char **argv)
3571{
3572 int c, ret = 0;
3573 const char *fmt = NULL, *filename;
3574 bool quiet = false;
3575 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003576 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003577 int count = 75000;
3578 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003579 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003580 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003581 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003582 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003583 int flush_interval = 0;
3584 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003585 int64_t image_size;
3586 BlockBackend *blk = NULL;
3587 BenchData data = {};
3588 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003589 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003590 struct timeval t1, t2;
3591 int i;
3592
3593 for (;;) {
3594 static const struct option long_options[] = {
3595 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003596 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003597 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003598 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003599 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003600 {0, 0, 0, 0}
3601 };
Kevin Wolf83de9be2015-07-13 13:13:17 +02003602 c = getopt_long(argc, argv, "hc:d:f:no:qs:S:t:w", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003603 if (c == -1) {
3604 break;
3605 }
3606
3607 switch (c) {
3608 case 'h':
3609 case '?':
3610 help();
3611 break;
3612 case 'c':
3613 {
3614 char *end;
3615 errno = 0;
3616 count = strtoul(optarg, &end, 0);
3617 if (errno || *end || count > INT_MAX) {
3618 error_report("Invalid request count specified");
3619 return 1;
3620 }
3621 break;
3622 }
3623 case 'd':
3624 {
3625 char *end;
3626 errno = 0;
3627 depth = strtoul(optarg, &end, 0);
3628 if (errno || *end || depth > INT_MAX) {
3629 error_report("Invalid queue depth specified");
3630 return 1;
3631 }
3632 break;
3633 }
3634 case 'f':
3635 fmt = optarg;
3636 break;
3637 case 'n':
3638 flags |= BDRV_O_NATIVE_AIO;
3639 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003640 case 'o':
3641 {
3642 char *end;
3643 errno = 0;
3644 offset = qemu_strtosz_suffix(optarg, &end,
3645 QEMU_STRTOSZ_DEFSUFFIX_B);
3646 if (offset < 0|| *end) {
3647 error_report("Invalid offset specified");
3648 return 1;
3649 }
3650 break;
3651 }
3652 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003653 case 'q':
3654 quiet = true;
3655 break;
3656 case 's':
3657 {
3658 int64_t sval;
3659 char *end;
3660
3661 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3662 if (sval < 0 || sval > INT_MAX || *end) {
3663 error_report("Invalid buffer size specified");
3664 return 1;
3665 }
3666
3667 bufsize = sval;
3668 break;
3669 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003670 case 'S':
3671 {
3672 int64_t sval;
3673 char *end;
3674
3675 sval = qemu_strtosz_suffix(optarg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3676 if (sval < 0 || sval > INT_MAX || *end) {
3677 error_report("Invalid step size specified");
3678 return 1;
3679 }
3680
3681 step = sval;
3682 break;
3683 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003684 case 't':
3685 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3686 if (ret < 0) {
3687 error_report("Invalid cache mode");
3688 ret = -1;
3689 goto out;
3690 }
3691 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003692 case 'w':
3693 flags |= BDRV_O_RDWR;
3694 is_write = true;
3695 break;
3696 case OPTION_PATTERN:
3697 {
3698 char *end;
3699 errno = 0;
3700 pattern = strtoul(optarg, &end, 0);
3701 if (errno || *end || pattern > 0xff) {
3702 error_report("Invalid pattern byte specified");
3703 return 1;
3704 }
3705 break;
3706 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003707 case OPTION_FLUSH_INTERVAL:
3708 {
3709 char *end;
3710 errno = 0;
3711 flush_interval = strtoul(optarg, &end, 0);
3712 if (errno || *end || flush_interval > INT_MAX) {
3713 error_report("Invalid flush interval specified");
3714 return 1;
3715 }
3716 break;
3717 }
3718 case OPTION_NO_DRAIN:
3719 drain_on_flush = false;
3720 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003721 case OPTION_IMAGE_OPTS:
3722 image_opts = true;
3723 break;
3724 }
3725 }
3726
3727 if (optind != argc - 1) {
3728 error_exit("Expecting one image file name");
3729 }
3730 filename = argv[argc - 1];
3731
Kevin Wolf55d539c2016-06-03 13:59:41 +02003732 if (!is_write && flush_interval) {
3733 error_report("--flush-interval is only available in write tests");
3734 ret = -1;
3735 goto out;
3736 }
3737 if (flush_interval && flush_interval < depth) {
3738 error_report("Flush interval can't be smaller than depth");
3739 ret = -1;
3740 goto out;
3741 }
3742
Kevin Wolfb6133b82014-08-05 14:17:13 +02003743 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet);
3744 if (!blk) {
3745 ret = -1;
3746 goto out;
3747 }
3748
3749 image_size = blk_getlength(blk);
3750 if (image_size < 0) {
3751 ret = image_size;
3752 goto out;
3753 }
3754
3755 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02003756 .blk = blk,
3757 .image_size = image_size,
3758 .bufsize = bufsize,
3759 .step = step ?: bufsize,
3760 .nrreq = depth,
3761 .n = count,
3762 .offset = offset,
3763 .write = is_write,
3764 .flush_interval = flush_interval,
3765 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02003766 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02003767 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02003768 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02003769 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02003770 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02003771 if (flush_interval) {
3772 printf("Sending flush every %d requests\n", flush_interval);
3773 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003774
3775 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003776 memset(data.buf, pattern, data.nrreq * data.bufsize);
3777
Kevin Wolfb6133b82014-08-05 14:17:13 +02003778 data.qiov = g_new(QEMUIOVector, data.nrreq);
3779 for (i = 0; i < data.nrreq; i++) {
3780 qemu_iovec_init(&data.qiov[i], 1);
3781 qemu_iovec_add(&data.qiov[i],
3782 data.buf + i * data.bufsize, data.bufsize);
3783 }
3784
3785 gettimeofday(&t1, NULL);
3786 bench_cb(&data, 0);
3787
3788 while (data.n > 0) {
3789 main_loop_wait(false);
3790 }
3791 gettimeofday(&t2, NULL);
3792
3793 printf("Run completed in %3.3f seconds.\n",
3794 (t2.tv_sec - t1.tv_sec)
3795 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
3796
3797out:
3798 qemu_vfree(data.buf);
3799 blk_unref(blk);
3800
3801 if (ret) {
3802 return 1;
3803 }
3804 return 0;
3805}
3806
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003807#define C_BS 01
3808#define C_COUNT 02
3809#define C_IF 04
3810#define C_OF 010
Reda Sallahif7c15532016-08-10 16:16:09 +02003811#define C_SKIP 020
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003812
3813struct DdInfo {
3814 unsigned int flags;
3815 int64_t count;
3816};
3817
3818struct DdIo {
3819 int bsz; /* Block size */
3820 char *filename;
3821 uint8_t *buf;
Reda Sallahif7c15532016-08-10 16:16:09 +02003822 int64_t offset;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003823};
3824
3825struct DdOpts {
3826 const char *name;
3827 int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
3828 unsigned int flag;
3829};
3830
3831static int img_dd_bs(const char *arg,
3832 struct DdIo *in, struct DdIo *out,
3833 struct DdInfo *dd)
3834{
3835 char *end;
3836 int64_t res;
3837
3838 res = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3839
3840 if (res <= 0 || res > INT_MAX || *end) {
3841 error_report("invalid number: '%s'", arg);
3842 return 1;
3843 }
3844 in->bsz = out->bsz = res;
3845
3846 return 0;
3847}
3848
3849static int img_dd_count(const char *arg,
3850 struct DdIo *in, struct DdIo *out,
3851 struct DdInfo *dd)
3852{
3853 char *end;
3854
3855 dd->count = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3856
3857 if (dd->count < 0 || *end) {
3858 error_report("invalid number: '%s'", arg);
3859 return 1;
3860 }
3861
3862 return 0;
3863}
3864
3865static int img_dd_if(const char *arg,
3866 struct DdIo *in, struct DdIo *out,
3867 struct DdInfo *dd)
3868{
3869 in->filename = g_strdup(arg);
3870
3871 return 0;
3872}
3873
3874static int img_dd_of(const char *arg,
3875 struct DdIo *in, struct DdIo *out,
3876 struct DdInfo *dd)
3877{
3878 out->filename = g_strdup(arg);
3879
3880 return 0;
3881}
3882
Reda Sallahif7c15532016-08-10 16:16:09 +02003883static int img_dd_skip(const char *arg,
3884 struct DdIo *in, struct DdIo *out,
3885 struct DdInfo *dd)
3886{
3887 char *end;
3888
3889 in->offset = qemu_strtosz_suffix(arg, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
3890
3891 if (in->offset < 0 || *end) {
3892 error_report("invalid number: '%s'", arg);
3893 return 1;
3894 }
3895
3896 return 0;
3897}
3898
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003899static int img_dd(int argc, char **argv)
3900{
3901 int ret = 0;
3902 char *arg = NULL;
3903 char *tmp;
3904 BlockDriver *drv = NULL, *proto_drv = NULL;
3905 BlockBackend *blk1 = NULL, *blk2 = NULL;
3906 QemuOpts *opts = NULL;
3907 QemuOptsList *create_opts = NULL;
3908 Error *local_err = NULL;
3909 bool image_opts = false;
3910 int c, i;
3911 const char *out_fmt = "raw";
3912 const char *fmt = NULL;
3913 int64_t size = 0;
3914 int64_t block_count = 0, out_pos, in_pos;
3915 struct DdInfo dd = {
3916 .flags = 0,
3917 .count = 0,
3918 };
3919 struct DdIo in = {
3920 .bsz = 512, /* Block size is by default 512 bytes */
3921 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02003922 .buf = NULL,
3923 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003924 };
3925 struct DdIo out = {
3926 .bsz = 512,
3927 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02003928 .buf = NULL,
3929 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003930 };
3931
3932 const struct DdOpts options[] = {
3933 { "bs", img_dd_bs, C_BS },
3934 { "count", img_dd_count, C_COUNT },
3935 { "if", img_dd_if, C_IF },
3936 { "of", img_dd_of, C_OF },
Reda Sallahif7c15532016-08-10 16:16:09 +02003937 { "skip", img_dd_skip, C_SKIP },
Reda Sallahi86ce1f62016-08-10 04:43:12 +02003938 { NULL, NULL, 0 }
3939 };
3940 const struct option long_options[] = {
3941 { "help", no_argument, 0, 'h'},
3942 { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
3943 { 0, 0, 0, 0 }
3944 };
3945
3946 while ((c = getopt_long(argc, argv, "hf:O:", long_options, NULL))) {
3947 if (c == EOF) {
3948 break;
3949 }
3950 switch (c) {
3951 case 'O':
3952 out_fmt = optarg;
3953 break;
3954 case 'f':
3955 fmt = optarg;
3956 break;
3957 case '?':
3958 error_report("Try 'qemu-img --help' for more information.");
3959 ret = -1;
3960 goto out;
3961 case 'h':
3962 help();
3963 break;
3964 case OPTION_IMAGE_OPTS:
3965 image_opts = true;
3966 break;
3967 }
3968 }
3969
3970 for (i = optind; i < argc; i++) {
3971 int j;
3972 arg = g_strdup(argv[i]);
3973
3974 tmp = strchr(arg, '=');
3975 if (tmp == NULL) {
3976 error_report("unrecognized operand %s", arg);
3977 ret = -1;
3978 goto out;
3979 }
3980
3981 *tmp++ = '\0';
3982
3983 for (j = 0; options[j].name != NULL; j++) {
3984 if (!strcmp(arg, options[j].name)) {
3985 break;
3986 }
3987 }
3988 if (options[j].name == NULL) {
3989 error_report("unrecognized operand %s", arg);
3990 ret = -1;
3991 goto out;
3992 }
3993
3994 if (options[j].f(tmp, &in, &out, &dd) != 0) {
3995 ret = -1;
3996 goto out;
3997 }
3998 dd.flags |= options[j].flag;
3999 g_free(arg);
4000 arg = NULL;
4001 }
4002
4003 if (!(dd.flags & C_IF && dd.flags & C_OF)) {
4004 error_report("Must specify both input and output files");
4005 ret = -1;
4006 goto out;
4007 }
4008 blk1 = img_open(image_opts, in.filename, fmt, 0, false, false);
4009
4010 if (!blk1) {
4011 ret = -1;
4012 goto out;
4013 }
4014
4015 drv = bdrv_find_format(out_fmt);
4016 if (!drv) {
4017 error_report("Unknown file format");
4018 ret = -1;
4019 goto out;
4020 }
4021 proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
4022
4023 if (!proto_drv) {
4024 error_report_err(local_err);
4025 ret = -1;
4026 goto out;
4027 }
4028 if (!drv->create_opts) {
4029 error_report("Format driver '%s' does not support image creation",
4030 drv->format_name);
4031 ret = -1;
4032 goto out;
4033 }
4034 if (!proto_drv->create_opts) {
4035 error_report("Protocol driver '%s' does not support image creation",
4036 proto_drv->format_name);
4037 ret = -1;
4038 goto out;
4039 }
4040 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4041 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4042
4043 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4044
4045 size = blk_getlength(blk1);
4046 if (size < 0) {
4047 error_report("Failed to get size for '%s'", in.filename);
4048 ret = -1;
4049 goto out;
4050 }
4051
4052 if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
4053 dd.count * in.bsz < size) {
4054 size = dd.count * in.bsz;
4055 }
4056
Reda Sallahif7c15532016-08-10 16:16:09 +02004057 /* Overflow means the specified offset is beyond input image's size */
4058 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4059 size < in.bsz * in.offset)) {
4060 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
4061 } else {
4062 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
4063 size - in.bsz * in.offset, &error_abort);
4064 }
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004065
4066 ret = bdrv_create(drv, out.filename, opts, &local_err);
4067 if (ret < 0) {
4068 error_reportf_err(local_err,
4069 "%s: error while creating output image: ",
4070 out.filename);
4071 ret = -1;
4072 goto out;
4073 }
4074
4075 blk2 = img_open(image_opts, out.filename, out_fmt, BDRV_O_RDWR,
4076 false, false);
4077
4078 if (!blk2) {
4079 ret = -1;
4080 goto out;
4081 }
4082
Reda Sallahif7c15532016-08-10 16:16:09 +02004083 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4084 size < in.offset * in.bsz)) {
4085 /* We give a warning if the skip option is bigger than the input
4086 * size and create an empty output disk image (i.e. like dd(1)).
4087 */
4088 error_report("%s: cannot skip to specified offset", in.filename);
4089 in_pos = size;
4090 } else {
4091 in_pos = in.offset * in.bsz;
4092 }
4093
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004094 in.buf = g_new(uint8_t, in.bsz);
4095
Reda Sallahif7c15532016-08-10 16:16:09 +02004096 for (out_pos = 0; in_pos < size; block_count++) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004097 int in_ret, out_ret;
4098
4099 if (in_pos + in.bsz > size) {
4100 in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
4101 } else {
4102 in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
4103 }
4104 if (in_ret < 0) {
4105 error_report("error while reading from input image file: %s",
4106 strerror(-in_ret));
4107 ret = -1;
4108 goto out;
4109 }
4110 in_pos += in_ret;
4111
4112 out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
4113
4114 if (out_ret < 0) {
4115 error_report("error while writing to output image file: %s",
4116 strerror(-out_ret));
4117 ret = -1;
4118 goto out;
4119 }
4120 out_pos += out_ret;
4121 }
4122
4123out:
4124 g_free(arg);
4125 qemu_opts_del(opts);
4126 qemu_opts_free(create_opts);
4127 blk_unref(blk1);
4128 blk_unref(blk2);
4129 g_free(in.filename);
4130 g_free(out.filename);
4131 g_free(in.buf);
4132 g_free(out.buf);
4133
4134 if (ret) {
4135 return 1;
4136 }
4137 return 0;
4138}
4139
Kevin Wolfb6133b82014-08-05 14:17:13 +02004140
Anthony Liguoric227f092009-10-01 16:12:16 -05004141static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01004142#define DEF(option, callback, arg_string) \
4143 { option, callback },
4144#include "qemu-img-cmds.h"
4145#undef DEF
4146#undef GEN_DOCS
4147 { NULL, NULL, },
4148};
4149
bellardea2384d2004-08-01 21:59:26 +00004150int main(int argc, char **argv)
4151{
Anthony Liguoric227f092009-10-01 16:12:16 -05004152 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01004153 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004154 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004155 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04004156 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04004157 static const struct option long_options[] = {
4158 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03004159 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004160 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04004161 {0, 0, 0, 0}
4162 };
bellardea2384d2004-08-01 21:59:26 +00004163
MORITA Kazutaka526eda12013-07-23 17:30:11 +09004164#ifdef CONFIG_POSIX
4165 signal(SIGPIPE, SIG_IGN);
4166#endif
4167
Daniel P. Berrangefe4db842016-10-04 14:35:52 +01004168 module_call_init(MODULE_INIT_TRACE);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004169 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08004170 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004171
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004172 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01004173 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004174 exit(EXIT_FAILURE);
4175 }
4176
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03004177 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01004178
Daniel P. Berrange064097d2016-02-10 18:41:01 +00004179 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00004180 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08004181 if (argc < 2) {
4182 error_exit("Not enough arguments");
4183 }
Stuart Brady153859b2009-06-07 00:42:17 +01004184
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004185 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00004186 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004187 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004188
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004189 while ((c = getopt_long(argc, argv, "+hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03004190 switch (c) {
4191 case 'h':
4192 help();
4193 return 0;
4194 case 'V':
4195 printf(QEMU_IMG_VERSION);
4196 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004197 case 'T':
4198 g_free(trace_file);
4199 trace_file = trace_opt_parse(optarg);
4200 break;
Stuart Brady153859b2009-06-07 00:42:17 +01004201 }
bellardea2384d2004-08-01 21:59:26 +00004202 }
Stuart Brady153859b2009-06-07 00:42:17 +01004203
Denis V. Lunev10985132016-06-17 17:44:13 +03004204 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04004205
Denis V. Lunev10985132016-06-17 17:44:13 +03004206 /* reset getopt_long scanning */
4207 argc -= optind;
4208 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04004209 return 0;
4210 }
Denis V. Lunev10985132016-06-17 17:44:13 +03004211 argv += optind;
Denis V. Lunevcfef6a42016-07-04 16:16:48 +03004212 optind = 0;
Denis V. Lunev10985132016-06-17 17:44:13 +03004213
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004214 if (!trace_init_backends()) {
4215 exit(1);
4216 }
4217 trace_init_file(trace_file);
4218 qemu_set_log(LOG_TRACE);
4219
Denis V. Lunev10985132016-06-17 17:44:13 +03004220 /* find the command */
4221 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
4222 if (!strcmp(cmdname, cmd->name)) {
4223 return cmd->handler(argc, argv);
4224 }
4225 }
Jeff Cody7db16892014-04-25 17:02:32 -04004226
Stuart Brady153859b2009-06-07 00:42:17 +01004227 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08004228 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00004229}