blob: d6007b2a6dc1ad61ab7c300f5f05962c3cda2a30 [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"
Eric Blakec2a3d7d2017-07-21 08:50:47 -050025#include <getopt.h>
26
Fam Zheng67a1de02016-06-01 17:44:21 +080027#include "qemu-version.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010028#include "qapi/error.h"
BenoƮt Canetc054b3f2012-09-05 13:09:02 +020029#include "qapi-visit.h"
Daniel P. Berrangeb3db2112016-09-30 15:45:27 +010030#include "qapi/qobject-output-visitor.h"
Markus Armbrustercc7a8ea2015-03-17 17:22:46 +010031#include "qapi/qmp/qerror.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010032#include "qapi/qmp/qjson.h"
Fam Zheng335e9932017-05-03 00:35:39 +080033#include "qapi/qmp/qbool.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020034#include "qemu/cutils.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000035#include "qemu/config-file.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010036#include "qemu/option.h"
37#include "qemu/error-report.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030038#include "qemu/log.h"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000039#include "qom/object_interfaces.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010040#include "sysemu/sysemu.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020041#include "sysemu/block-backend.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010042#include "block/block_int.h"
Max Reitzd4a32382014-10-24 15:57:37 +020043#include "block/blockjob.h"
Wenchao Xiaf364ec62013-05-25 11:09:44 +080044#include "block/qapi.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010045#include "crypto/init.h"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +030046#include "trace/control.h"
bellarde8445332006-06-14 15:32:10 +000047
Don Slutz61979a62015-01-09 10:17:35 -050048#define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \
Thomas Huth0781dd62016-10-05 11:54:44 +020049 "\n" QEMU_COPYRIGHT "\n"
Jeff Cody5f6979c2014-04-28 14:37:18 -040050
Anthony Liguoric227f092009-10-01 16:12:16 -050051typedef struct img_cmd_t {
Stuart Brady153859b2009-06-07 00:42:17 +010052 const char *name;
53 int (*handler)(int argc, char **argv);
Anthony Liguoric227f092009-10-01 16:12:16 -050054} img_cmd_t;
Stuart Brady153859b2009-06-07 00:42:17 +010055
Federico Simoncelli8599ea42013-01-28 06:59:47 -050056enum {
57 OPTION_OUTPUT = 256,
58 OPTION_BACKING_CHAIN = 257,
Daniel P. Berrange3babeb12016-02-17 10:10:17 +000059 OPTION_OBJECT = 258,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +000060 OPTION_IMAGE_OPTS = 259,
Kevin Wolfb6495fa2015-07-10 18:09:18 +020061 OPTION_PATTERN = 260,
Kevin Wolf55d539c2016-06-03 13:59:41 +020062 OPTION_FLUSH_INTERVAL = 261,
63 OPTION_NO_DRAIN = 262,
Daniel P. Berrange305b4c62017-05-15 17:47:11 +010064 OPTION_TARGET_IMAGE_OPTS = 263,
Stefan Hajnoczifd03c2b2017-07-05 13:57:36 +010065 OPTION_SIZE = 264,
Max Reitzdc5f6902017-06-13 22:20:55 +020066 OPTION_PREALLOCATION = 265,
Pavel Butsykin4ffca892017-09-18 15:42:27 +030067 OPTION_SHRINK = 266,
Federico Simoncelli8599ea42013-01-28 06:59:47 -050068};
69
70typedef enum OutputFormat {
71 OFORMAT_JSON,
72 OFORMAT_HUMAN,
73} OutputFormat;
74
Kevin Wolfe6996142016-03-15 13:03:11 +010075/* Default to cache=writeback as data integrity is not important for qemu-img */
Federico Simoncelli661a0f72011-06-20 12:48:19 -040076#define BDRV_DEFAULT_CACHE "writeback"
aurel32137519c2008-11-30 19:12:49 +000077
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +010078static void format_print(void *opaque, const char *name)
bellardea2384d2004-08-01 21:59:26 +000079{
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +010080 printf(" %s", name);
bellardea2384d2004-08-01 21:59:26 +000081}
82
Fam Zhengac1307a2014-04-22 13:36:11 +080083static void QEMU_NORETURN GCC_FMT_ATTR(1, 2) error_exit(const char *fmt, ...)
84{
85 va_list ap;
86
87 error_printf("qemu-img: ");
88
89 va_start(ap, fmt);
90 error_vprintf(fmt, ap);
91 va_end(ap);
92
93 error_printf("\nTry 'qemu-img --help' for more information\n");
94 exit(EXIT_FAILURE);
95}
96
Stefan Hajnoczic9192972017-03-17 18:45:41 +080097static void QEMU_NORETURN missing_argument(const char *option)
98{
99 error_exit("missing argument for option '%s'", option);
100}
101
102static void QEMU_NORETURN unrecognized_option(const char *option)
103{
104 error_exit("unrecognized option '%s'", option);
105}
106
blueswir1d2c639d2009-01-24 18:19:25 +0000107/* Please keep in synch with qemu-img.texi */
Fam Zhengac1307a2014-04-22 13:36:11 +0800108static void QEMU_NORETURN help(void)
bellardea2384d2004-08-01 21:59:26 +0000109{
Paolo Bonzinie00291c2010-02-04 16:49:56 +0100110 const char *help_msg =
Jeff Cody5f6979c2014-04-28 14:37:18 -0400111 QEMU_IMG_VERSION
Denis V. Lunev10985132016-06-17 17:44:13 +0300112 "usage: qemu-img [standard options] command [command options]\n"
malc3f020d72010-02-08 12:04:56 +0300113 "QEMU disk image utility\n"
114 "\n"
Denis V. Lunev10985132016-06-17 17:44:13 +0300115 " '-h', '--help' display this help and exit\n"
116 " '-V', '--version' output version information and exit\n"
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +0300117 " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
118 " specify tracing options\n"
Denis V. Lunev10985132016-06-17 17:44:13 +0300119 "\n"
malc3f020d72010-02-08 12:04:56 +0300120 "Command syntax:\n"
Stuart Brady153859b2009-06-07 00:42:17 +0100121#define DEF(option, callback, arg_string) \
122 " " arg_string "\n"
123#include "qemu-img-cmds.h"
124#undef DEF
125#undef GEN_DOCS
malc3f020d72010-02-08 12:04:56 +0300126 "\n"
127 "Command parameters:\n"
128 " 'filename' is a disk image filename\n"
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000129 " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n"
130 " manual page for a description of the object properties. The most common\n"
131 " object type is a 'secret', which is used to supply passwords and/or\n"
132 " encryption keys.\n"
malc3f020d72010-02-08 12:04:56 +0300133 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400134 " 'cache' is the cache mode used to write the output disk image, the valid\n"
Liu Yuan80ccf932012-04-20 17:10:56 +0800135 " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n"
136 " 'directsync' and 'unsafe' (default for convert)\n"
Stefan Hajnoczibb87fdf2014-09-02 11:01:02 +0100137 " 'src_cache' is the cache mode used to read input disk images, the valid\n"
138 " options are the same as for the 'cache' option\n"
malc3f020d72010-02-08 12:04:56 +0300139 " 'size' is the disk image size in bytes. Optional suffixes\n"
Kevin Wolf5e009842013-06-05 14:19:27 +0200140 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n"
141 " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n"
142 " supported. 'b' is ignored.\n"
malc3f020d72010-02-08 12:04:56 +0300143 " 'output_filename' is the destination disk image filename\n"
144 " 'output_fmt' is the destination format\n"
145 " 'options' is a comma separated list of format specific options in a\n"
146 " name=value format. Use -o ? for an overview of the options supported by the\n"
147 " used format\n"
Wenchao Xiaef806542013-12-04 17:10:57 +0800148 " 'snapshot_param' is param used for internal snapshot, format\n"
149 " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
150 " '[ID_OR_NAME]'\n"
151 " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n"
152 " instead\n"
malc3f020d72010-02-08 12:04:56 +0300153 " '-c' indicates that target image must be compressed (qcow format only)\n"
John Snow6e6e55f2017-07-17 20:34:22 -0400154 " '-u' allows unsafe backing chains. For rebasing, it is assumed that old and\n"
155 " new backing file match exactly. The image doesn't need a working\n"
156 " backing file before rebasing in this case (useful for renaming the\n"
157 " backing file). For image creation, allow creating without attempting\n"
158 " to open the backing file.\n"
malc3f020d72010-02-08 12:04:56 +0300159 " '-h' with or without a command shows this help and lists the supported formats\n"
Jes Sorensen6b837bc2011-03-30 14:16:25 +0200160 " '-p' show progress of command (only certain commands)\n"
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100161 " '-q' use Quiet mode - do not print any output (except errors)\n"
Peter Lieven11b66992013-10-24 12:07:05 +0200162 " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n"
163 " contain only zeros for qemu-img to create a sparse image during\n"
164 " conversion. If the number of bytes is 0, the source will not be scanned for\n"
165 " unallocated or zero sectors, and the destination image will always be\n"
166 " fully allocated\n"
BenoƮt Canetc054b3f2012-09-05 13:09:02 +0200167 " '--output' takes the format in which the output must be done (human or json)\n"
Alexandre Derumierb2e10492013-09-02 19:07:24 +0100168 " '-n' skips the target volume creation (useful if the volume is created\n"
169 " prior to running qemu-img)\n"
malc3f020d72010-02-08 12:04:56 +0300170 "\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200171 "Parameters to check subcommand:\n"
172 " '-r' tries to repair any inconsistencies that are found during the check.\n"
173 " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n"
174 " kinds of errors, with a higher risk of choosing the wrong fix or\n"
Stefan Weil0546b8c2012-08-10 22:03:25 +0200175 " hiding corruption that has already occurred.\n"
Kevin Wolf4534ff52012-05-11 16:07:02 +0200176 "\n"
Peter Lieven2d9187b2017-02-28 13:40:07 +0100177 "Parameters to convert subcommand:\n"
178 " '-m' specifies how many coroutines work in parallel during the convert\n"
179 " process (defaults to 8)\n"
180 " '-W' allow to write to the target out of order rather than sequential\n"
181 "\n"
malc3f020d72010-02-08 12:04:56 +0300182 "Parameters to snapshot subcommand:\n"
183 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
184 " '-a' applies a snapshot (revert disk to saved state)\n"
185 " '-c' creates a snapshot\n"
186 " '-d' deletes a snapshot\n"
Miroslav Rezaninad14ed182013-02-13 09:09:41 +0100187 " '-l' lists all snapshots in the given image\n"
188 "\n"
189 "Parameters to compare subcommand:\n"
190 " '-f' first image format\n"
191 " '-F' second image format\n"
Reda Sallahi86ce1f62016-08-10 04:43:12 +0200192 " '-s' run in Strict mode - fail on different image size or sector allocation\n"
193 "\n"
194 "Parameters to dd subcommand:\n"
195 " 'bs=BYTES' read and write up to BYTES bytes at a time "
196 "(default: 512)\n"
197 " 'count=N' copy only N input blocks\n"
198 " 'if=FILE' read from FILE\n"
Reda Sallahif7c15532016-08-10 16:16:09 +0200199 " 'of=FILE' write to FILE\n"
200 " 'skip=N' skip N bs-sized blocks at the start of input\n";
Paolo Bonzinie00291c2010-02-04 16:49:56 +0100201
202 printf("%s\nSupported formats:", help_msg);
Stefan Hajnoczi00c6d402014-08-27 12:08:56 +0100203 bdrv_iterate_format(format_print, NULL);
Eric Blakef5048cb2017-08-03 11:33:53 -0500204 printf("\n\n" QEMU_HELP_BOTTOM "\n");
Fam Zhengac1307a2014-04-22 13:36:11 +0800205 exit(EXIT_SUCCESS);
bellardea2384d2004-08-01 21:59:26 +0000206}
207
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000208static QemuOptsList qemu_object_opts = {
209 .name = "object",
210 .implied_opt_name = "qom-type",
211 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
212 .desc = {
213 { }
214 },
215};
216
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000217static QemuOptsList qemu_source_opts = {
218 .name = "source",
219 .implied_opt_name = "file",
220 .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head),
221 .desc = {
222 { }
223 },
224};
225
Stefan Weil7c30f652013-06-16 17:01:05 +0200226static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...)
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100227{
228 int ret = 0;
229 if (!quiet) {
230 va_list args;
231 va_start(args, fmt);
232 ret = vprintf(fmt, args);
233 va_end(args);
234 }
235 return ret;
236}
237
bellardea2384d2004-08-01 21:59:26 +0000238
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100239static int print_block_option_help(const char *filename, const char *fmt)
240{
241 BlockDriver *drv, *proto_drv;
Chunyan Liu83d05212014-06-05 17:20:51 +0800242 QemuOptsList *create_opts = NULL;
Max Reitzb65a5e12015-02-05 13:58:12 -0500243 Error *local_err = NULL;
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100244
245 /* Find driver and parse its options */
246 drv = bdrv_find_format(fmt);
247 if (!drv) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100248 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100249 return 1;
250 }
251
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800252 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100253 if (filename) {
Max Reitzb65a5e12015-02-05 13:58:12 -0500254 proto_drv = bdrv_find_protocol(filename, true, &local_err);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100255 if (!proto_drv) {
Markus Armbruster2867ce42015-03-12 16:08:02 +0100256 error_report_err(local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +0800257 qemu_opts_free(create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100258 return 1;
259 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800260 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfa283cb62014-02-21 16:24:07 +0100261 }
262
Chunyan Liu83d05212014-06-05 17:20:51 +0800263 qemu_opts_print_help(create_opts);
264 qemu_opts_free(create_opts);
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100265 return 0;
266}
267
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000268
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,
Fam Zheng335e9932017-05-03 00:35:39 +0800271 bool quiet, bool force_share)
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);
Fam Zheng335e9932017-05-03 00:35:39 +0800277 if (force_share) {
278 if (qdict_haskey(options, BDRV_OPT_FORCE_SHARE)
279 && !qdict_get_bool(options, BDRV_OPT_FORCE_SHARE)) {
280 error_report("--force-share/-U conflicts with image options");
Fam Zhengadb998c2017-05-15 22:10:14 +0800281 QDECREF(options);
Fam Zheng335e9932017-05-03 00:35:39 +0800282 return NULL;
283 }
Eric Blake579cf1d2017-05-15 14:54:39 -0500284 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Fam Zheng335e9932017-05-03 00:35:39 +0800285 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100286 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000287 if (!blk) {
Daniel P. Berrange143605a2016-04-06 10:16:18 +0100288 error_reportf_err(local_err, "Could not open '%s': ", optstr);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000289 return NULL;
290 }
Kevin Wolfce099542016-03-15 13:01:04 +0100291 blk_set_enable_write_cache(blk, !writethrough);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000292
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000293 return blk;
294}
295
Max Reitzefaa7c42016-03-16 19:54:38 +0100296static BlockBackend *img_open_file(const char *filename,
Daniel P. Berrange29cf9332017-05-15 17:47:12 +0100297 QDict *options,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000298 const char *fmt, int flags,
Fam Zheng335e9932017-05-03 00:35:39 +0800299 bool writethrough, bool quiet,
300 bool force_share)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000301{
302 BlockBackend *blk;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200303 Error *local_err = NULL;
Kevin Wolfad717132010-12-16 15:37:41 +0100304
Daniel P. Berrange29cf9332017-05-15 17:47:12 +0100305 if (!options) {
306 options = qdict_new();
307 }
bellard75c23802004-08-27 21:28:58 +0000308 if (fmt) {
Eric Blake46f5ac22017-04-27 16:58:17 -0500309 qdict_put_str(options, "driver", fmt);
bellard75c23802004-08-27 21:28:58 +0000310 }
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100311
Fam Zheng335e9932017-05-03 00:35:39 +0800312 if (force_share) {
Eric Blake579cf1d2017-05-15 14:54:39 -0500313 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Fam Zheng335e9932017-05-03 00:35:39 +0800314 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100315 blk = blk_new_open(filename, NULL, options, flags, &local_err);
Max Reitz5bd31322015-02-05 13:58:16 -0500316 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100317 error_reportf_err(local_err, "Could not open '%s': ", filename);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000318 return NULL;
bellard75c23802004-08-27 21:28:58 +0000319 }
Kevin Wolfce099542016-03-15 13:01:04 +0100320 blk_set_enable_write_cache(blk, !writethrough);
Kevin Wolfb9eaf9e2011-02-09 11:25:53 +0100321
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200322 return blk;
bellard75c23802004-08-27 21:28:58 +0000323}
324
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000325
Daniel P. Berrange29cf9332017-05-15 17:47:12 +0100326static int img_add_key_secrets(void *opaque,
327 const char *name, const char *value,
328 Error **errp)
329{
330 QDict *options = opaque;
331
332 if (g_str_has_suffix(name, "key-secret")) {
Eric Blake187f47e2017-06-24 12:10:07 -0600333 qdict_put_str(options, name, value);
Daniel P. Berrange29cf9332017-05-15 17:47:12 +0100334 }
335
336 return 0;
337}
338
339static BlockBackend *img_open_new_file(const char *filename,
340 QemuOpts *create_opts,
341 const char *fmt, int flags,
342 bool writethrough, bool quiet,
343 bool force_share)
344{
345 QDict *options = NULL;
346
347 options = qdict_new();
348 qemu_opt_foreach(create_opts, img_add_key_secrets, options, &error_abort);
349
350 return img_open_file(filename, options, fmt, flags, writethrough, quiet,
351 force_share);
352}
353
354
Max Reitzefaa7c42016-03-16 19:54:38 +0100355static BlockBackend *img_open(bool image_opts,
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000356 const char *filename,
Kevin Wolfce099542016-03-15 13:01:04 +0100357 const char *fmt, int flags, bool writethrough,
Fam Zheng335e9932017-05-03 00:35:39 +0800358 bool quiet, bool force_share)
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000359{
360 BlockBackend *blk;
361 if (image_opts) {
362 QemuOpts *opts;
363 if (fmt) {
364 error_report("--image-opts and --format are mutually exclusive");
365 return NULL;
366 }
367 opts = qemu_opts_parse_noisily(qemu_find_opts("source"),
368 filename, true);
369 if (!opts) {
370 return NULL;
371 }
Fam Zheng335e9932017-05-03 00:35:39 +0800372 blk = img_open_opts(filename, opts, flags, writethrough, quiet,
373 force_share);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000374 } else {
Daniel P. Berrange29cf9332017-05-15 17:47:12 +0100375 blk = img_open_file(filename, NULL, fmt, flags, writethrough, quiet,
Fam Zheng335e9932017-05-03 00:35:39 +0800376 force_share);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000377 }
378 return blk;
379}
380
381
Chunyan Liu83d05212014-06-05 17:20:51 +0800382static int add_old_style_options(const char *fmt, QemuOpts *opts,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100383 const char *base_filename,
384 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200385{
Markus Armbruster6750e792015-02-12 17:43:08 +0100386 Error *err = NULL;
387
Kevin Wolfefa84d42009-05-18 16:42:12 +0200388 if (base_filename) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100389 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100390 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100391 error_report("Backing file not supported for file format '%s'",
392 fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100393 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900394 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200395 }
396 }
397 if (base_fmt) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +0100398 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +0100399 if (err) {
Jes Sorensen15654a62010-12-16 14:31:53 +0100400 error_report("Backing file format not supported for file "
401 "format '%s'", fmt);
Markus Armbruster6750e792015-02-12 17:43:08 +0100402 error_free(err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900403 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200404 }
405 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900406 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200407}
408
Markus Armbruster606caa02017-02-21 21:14:04 +0100409static int64_t cvtnum(const char *s)
410{
Markus Armbrusterf17fd4f2017-02-21 21:14:06 +0100411 int err;
Markus Armbrusterf46bfdb2017-02-21 21:14:07 +0100412 uint64_t value;
Markus Armbruster606caa02017-02-21 21:14:04 +0100413
Markus Armbrusterf17fd4f2017-02-21 21:14:06 +0100414 err = qemu_strtosz(s, NULL, &value);
415 if (err < 0) {
416 return err;
417 }
Markus Armbrusterf46bfdb2017-02-21 21:14:07 +0100418 if (value > INT64_MAX) {
419 return -ERANGE;
420 }
Markus Armbrusterf17fd4f2017-02-21 21:14:06 +0100421 return value;
Markus Armbruster606caa02017-02-21 21:14:04 +0100422}
423
bellardea2384d2004-08-01 21:59:26 +0000424static int img_create(int argc, char **argv)
425{
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200426 int c;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100427 uint64_t img_size = -1;
bellardea2384d2004-08-01 21:59:26 +0000428 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000429 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000430 const char *filename;
431 const char *base_filename = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200432 char *options = NULL;
Luiz Capitulino9b375252012-11-30 10:52:05 -0200433 Error *local_err = NULL;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100434 bool quiet = false;
John Snow6e6e55f2017-07-17 20:34:22 -0400435 int flags = 0;
ths3b46e622007-09-17 08:09:54 +0000436
bellardea2384d2004-08-01 21:59:26 +0000437 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000438 static const struct option long_options[] = {
439 {"help", no_argument, 0, 'h'},
440 {"object", required_argument, 0, OPTION_OBJECT},
441 {0, 0, 0, 0}
442 };
John Snow6e6e55f2017-07-17 20:34:22 -0400443 c = getopt_long(argc, argv, ":F:b:f:ho:qu",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000444 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100445 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000446 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100447 }
bellardea2384d2004-08-01 21:59:26 +0000448 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800449 case ':':
450 missing_argument(argv[optind - 1]);
451 break;
Jes Sorensenef873942010-12-06 15:25:40 +0100452 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800453 unrecognized_option(argv[optind - 1]);
454 break;
bellardea2384d2004-08-01 21:59:26 +0000455 case 'h':
456 help();
457 break;
aliguori9230eaf2009-03-28 17:55:19 +0000458 case 'F':
459 base_fmt = optarg;
460 break;
bellardea2384d2004-08-01 21:59:26 +0000461 case 'b':
462 base_filename = optarg;
463 break;
464 case 'f':
465 fmt = optarg;
466 break;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200467 case 'o':
Kevin Wolf77386bf2014-02-21 16:24:04 +0100468 if (!is_valid_option_list(optarg)) {
469 error_report("Invalid option list: %s", optarg);
470 goto fail;
471 }
472 if (!options) {
473 options = g_strdup(optarg);
474 } else {
475 char *old_options = options;
476 options = g_strdup_printf("%s,%s", options, optarg);
477 g_free(old_options);
478 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200479 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100480 case 'q':
481 quiet = true;
482 break;
John Snow6e6e55f2017-07-17 20:34:22 -0400483 case 'u':
484 flags |= BDRV_O_NO_BACKING;
485 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000486 case OPTION_OBJECT: {
487 QemuOpts *opts;
488 opts = qemu_opts_parse_noisily(&qemu_object_opts,
489 optarg, true);
490 if (!opts) {
491 goto fail;
492 }
493 } break;
bellardea2384d2004-08-01 21:59:26 +0000494 }
495 }
aliguori9230eaf2009-03-28 17:55:19 +0000496
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900497 /* Get the filename */
Kevin Wolfa283cb62014-02-21 16:24:07 +0100498 filename = (optind < argc) ? argv[optind] : NULL;
499 if (options && has_help_option(options)) {
500 g_free(options);
501 return print_block_option_help(filename, fmt);
502 }
503
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100504 if (optind >= argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800505 error_exit("Expecting image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100506 }
Kevin Wolfa283cb62014-02-21 16:24:07 +0100507 optind++;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900508
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000509 if (qemu_opts_foreach(&qemu_object_opts,
510 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200511 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000512 goto fail;
513 }
514
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100515 /* Get image size, if specified */
516 if (optind < argc) {
Jes Sorensen70b4f4b2011-01-05 11:41:02 +0100517 int64_t sval;
Markus Armbruster606caa02017-02-21 21:14:04 +0100518
519 sval = cvtnum(argv[optind++]);
520 if (sval < 0) {
liguang79443392012-12-17 09:49:23 +0800521 if (sval == -ERANGE) {
522 error_report("Image size must be less than 8 EiB!");
523 } else {
524 error_report("Invalid image size specified! You may use k, M, "
Kevin Wolf5e009842013-06-05 14:19:27 +0200525 "G, T, P or E suffixes for ");
526 error_report("kilobytes, megabytes, gigabytes, terabytes, "
527 "petabytes and exabytes.");
liguang79443392012-12-17 09:49:23 +0800528 }
Kevin Wolf77386bf2014-02-21 16:24:04 +0100529 goto fail;
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100530 }
531 img_size = (uint64_t)sval;
532 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200533 if (optind != argc) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800534 error_exit("Unexpected argument: %s", argv[optind]);
Kevin Wolffc11eb22013-08-05 10:53:04 +0200535 }
Jes Sorensen1da7cfb2010-12-09 14:17:25 +0100536
Luiz Capitulino9b375252012-11-30 10:52:05 -0200537 bdrv_img_create(filename, fmt, base_filename, base_fmt,
John Snow6e6e55f2017-07-17 20:34:22 -0400538 options, img_size, flags, quiet, &local_err);
Markus Armbruster84d18f02014-01-30 15:07:28 +0100539 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100540 error_reportf_err(local_err, "%s: ", filename);
Kevin Wolf77386bf2014-02-21 16:24:04 +0100541 goto fail;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900542 }
Luiz Capitulinoa9300912012-11-30 10:52:06 -0200543
Kevin Wolf77386bf2014-02-21 16:24:04 +0100544 g_free(options);
bellardea2384d2004-08-01 21:59:26 +0000545 return 0;
Kevin Wolf77386bf2014-02-21 16:24:04 +0100546
547fail:
548 g_free(options);
549 return 1;
bellardea2384d2004-08-01 21:59:26 +0000550}
551
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100552static void dump_json_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500553{
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500554 QString *str;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500555 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +0100556 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -0600557
558 visit_type_ImageCheck(v, NULL, &check, &error_abort);
559 visit_complete(v, &obj);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500560 str = qobject_to_json_pretty(obj);
561 assert(str != NULL);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100562 qprintf(quiet, "%s\n", qstring_get_str(str));
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500563 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -0600564 visit_free(v);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500565 QDECREF(str);
566}
567
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100568static void dump_human_image_check(ImageCheck *check, bool quiet)
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500569{
570 if (!(check->corruptions || check->leaks || check->check_errors)) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100571 qprintf(quiet, "No errors were found on the image.\n");
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500572 } else {
573 if (check->corruptions) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100574 qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n"
575 "Data may be corrupted, or further writes to the image "
576 "may corrupt it.\n",
577 check->corruptions);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500578 }
579
580 if (check->leaks) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100581 qprintf(quiet,
582 "\n%" PRId64 " leaked clusters were found on the image.\n"
583 "This means waste of disk space, but no harm to data.\n",
584 check->leaks);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500585 }
586
587 if (check->check_errors) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100588 qprintf(quiet,
589 "\n%" PRId64
590 " internal errors have occurred during the check.\n",
591 check->check_errors);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500592 }
593 }
594
595 if (check->total_clusters != 0 && check->allocated_clusters != 0) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100596 qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, "
597 "%0.2f%% fragmented, %0.2f%% compressed clusters\n",
598 check->allocated_clusters, check->total_clusters,
599 check->allocated_clusters * 100.0 / check->total_clusters,
600 check->fragmented_clusters * 100.0 / check->allocated_clusters,
601 check->compressed_clusters * 100.0 /
602 check->allocated_clusters);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500603 }
604
605 if (check->image_end_offset) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100606 qprintf(quiet,
607 "Image end offset: %" PRId64 "\n", check->image_end_offset);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500608 }
609}
610
611static int collect_image_check(BlockDriverState *bs,
612 ImageCheck *check,
613 const char *filename,
614 const char *fmt,
615 int fix)
616{
617 int ret;
618 BdrvCheckResult result;
619
620 ret = bdrv_check(bs, &result, fix);
621 if (ret < 0) {
622 return ret;
623 }
624
625 check->filename = g_strdup(filename);
626 check->format = g_strdup(bdrv_get_format_name(bs));
627 check->check_errors = result.check_errors;
628 check->corruptions = result.corruptions;
629 check->has_corruptions = result.corruptions != 0;
630 check->leaks = result.leaks;
631 check->has_leaks = result.leaks != 0;
632 check->corruptions_fixed = result.corruptions_fixed;
633 check->has_corruptions_fixed = result.corruptions != 0;
634 check->leaks_fixed = result.leaks_fixed;
635 check->has_leaks_fixed = result.leaks != 0;
636 check->image_end_offset = result.image_end_offset;
637 check->has_image_end_offset = result.image_end_offset != 0;
638 check->total_clusters = result.bfi.total_clusters;
639 check->has_total_clusters = result.bfi.total_clusters != 0;
640 check->allocated_clusters = result.bfi.allocated_clusters;
641 check->has_allocated_clusters = result.bfi.allocated_clusters != 0;
642 check->fragmented_clusters = result.bfi.fragmented_clusters;
643 check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0;
Stefan Hajnoczie6439d72013-02-07 17:15:04 +0100644 check->compressed_clusters = result.bfi.compressed_clusters;
645 check->has_compressed_clusters = result.bfi.compressed_clusters != 0;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500646
647 return 0;
648}
649
Kevin Wolfe076f332010-06-29 11:43:13 +0200650/*
651 * Checks an image for consistency. Exit codes:
652 *
Max Reitzd6635c42014-06-02 22:15:21 +0200653 * 0 - Check completed, image is good
654 * 1 - Check not completed because of internal errors
655 * 2 - Check completed, image is corrupted
656 * 3 - Check completed, image has leaked clusters, but is good otherwise
657 * 63 - Checks are not supported by the image format
Kevin Wolfe076f332010-06-29 11:43:13 +0200658 */
aliguori15859692009-04-21 23:11:53 +0000659static int img_check(int argc, char **argv)
660{
661 int c, ret;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500662 OutputFormat output_format = OFORMAT_HUMAN;
Max Reitz40055952014-07-22 22:58:42 +0200663 const char *filename, *fmt, *output, *cache;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200664 BlockBackend *blk;
aliguori15859692009-04-21 23:11:53 +0000665 BlockDriverState *bs;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200666 int fix = 0;
Kevin Wolfce099542016-03-15 13:01:04 +0100667 int flags = BDRV_O_CHECK;
668 bool writethrough;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200669 ImageCheck *check;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100670 bool quiet = false;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000671 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +0800672 bool force_share = false;
aliguori15859692009-04-21 23:11:53 +0000673
674 fmt = NULL;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500675 output = NULL;
Max Reitz40055952014-07-22 22:58:42 +0200676 cache = BDRV_DEFAULT_CACHE;
Kevin Wolfce099542016-03-15 13:01:04 +0100677
aliguori15859692009-04-21 23:11:53 +0000678 for(;;) {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500679 int option_index = 0;
680 static const struct option long_options[] = {
681 {"help", no_argument, 0, 'h'},
682 {"format", required_argument, 0, 'f'},
Prasad Joshi4fd6a982014-03-25 00:08:54 +0530683 {"repair", required_argument, 0, 'r'},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500684 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000685 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000686 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +0800687 {"force-share", no_argument, 0, 'U'},
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500688 {0, 0, 0, 0}
689 };
Fam Zheng335e9932017-05-03 00:35:39 +0800690 c = getopt_long(argc, argv, ":hf:r:T:qU",
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500691 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100692 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000693 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100694 }
aliguori15859692009-04-21 23:11:53 +0000695 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800696 case ':':
697 missing_argument(argv[optind - 1]);
698 break;
Jes Sorensenef873942010-12-06 15:25:40 +0100699 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800700 unrecognized_option(argv[optind - 1]);
701 break;
aliguori15859692009-04-21 23:11:53 +0000702 case 'h':
703 help();
704 break;
705 case 'f':
706 fmt = optarg;
707 break;
Kevin Wolf4534ff52012-05-11 16:07:02 +0200708 case 'r':
709 flags |= BDRV_O_RDWR;
710
711 if (!strcmp(optarg, "leaks")) {
712 fix = BDRV_FIX_LEAKS;
713 } else if (!strcmp(optarg, "all")) {
714 fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS;
715 } else {
Fam Zhengac1307a2014-04-22 13:36:11 +0800716 error_exit("Unknown option value for -r "
717 "(expecting 'leaks' or 'all'): %s", optarg);
Kevin Wolf4534ff52012-05-11 16:07:02 +0200718 }
719 break;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500720 case OPTION_OUTPUT:
721 output = optarg;
722 break;
Max Reitz40055952014-07-22 22:58:42 +0200723 case 'T':
724 cache = optarg;
725 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100726 case 'q':
727 quiet = true;
728 break;
Fam Zheng335e9932017-05-03 00:35:39 +0800729 case 'U':
730 force_share = true;
731 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000732 case OPTION_OBJECT: {
733 QemuOpts *opts;
734 opts = qemu_opts_parse_noisily(&qemu_object_opts,
735 optarg, true);
736 if (!opts) {
737 return 1;
738 }
739 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000740 case OPTION_IMAGE_OPTS:
741 image_opts = true;
742 break;
aliguori15859692009-04-21 23:11:53 +0000743 }
744 }
Kevin Wolffc11eb22013-08-05 10:53:04 +0200745 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800746 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100747 }
aliguori15859692009-04-21 23:11:53 +0000748 filename = argv[optind++];
749
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500750 if (output && !strcmp(output, "json")) {
751 output_format = OFORMAT_JSON;
752 } else if (output && !strcmp(output, "human")) {
753 output_format = OFORMAT_HUMAN;
754 } else if (output) {
755 error_report("--output must be used with human or json as argument.");
756 return 1;
757 }
758
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000759 if (qemu_opts_foreach(&qemu_object_opts,
760 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200761 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000762 return 1;
763 }
764
Kevin Wolfce099542016-03-15 13:01:04 +0100765 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +0200766 if (ret < 0) {
767 error_report("Invalid source cache option: %s", cache);
768 return 1;
769 }
770
Fam Zheng335e9932017-05-03 00:35:39 +0800771 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
772 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200773 if (!blk) {
774 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900775 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200776 bs = blk_bs(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500777
778 check = g_new0(ImageCheck, 1);
779 ret = collect_image_check(bs, check, filename, fmt, fix);
Kevin Wolfe076f332010-06-29 11:43:13 +0200780
781 if (ret == -ENOTSUP) {
Max Reitz55d492d2014-05-31 21:33:30 +0200782 error_report("This image format does not support checks");
Peter Lievenfefddf92013-10-24 08:53:34 +0200783 ret = 63;
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500784 goto fail;
Kevin Wolfe076f332010-06-29 11:43:13 +0200785 }
786
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500787 if (check->corruptions_fixed || check->leaks_fixed) {
788 int corruptions_fixed, leaks_fixed;
789
790 leaks_fixed = check->leaks_fixed;
791 corruptions_fixed = check->corruptions_fixed;
792
793 if (output_format == OFORMAT_HUMAN) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100794 qprintf(quiet,
795 "The following inconsistencies were found and repaired:\n\n"
796 " %" PRId64 " leaked clusters\n"
797 " %" PRId64 " corruptions\n\n"
798 "Double checking the fixed image now...\n",
799 check->leaks_fixed,
800 check->corruptions_fixed);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500801 }
802
803 ret = collect_image_check(bs, check, filename, fmt, 0);
804
805 check->leaks_fixed = leaks_fixed;
806 check->corruptions_fixed = corruptions_fixed;
Kevin Wolfccf34712012-05-11 18:16:54 +0200807 }
808
Max Reitz832390a2014-10-23 15:29:12 +0200809 if (!ret) {
810 switch (output_format) {
811 case OFORMAT_HUMAN:
812 dump_human_image_check(check, quiet);
813 break;
814 case OFORMAT_JSON:
815 dump_json_image_check(check, quiet);
816 break;
817 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500818 }
819
820 if (ret || check->check_errors) {
Max Reitz832390a2014-10-23 15:29:12 +0200821 if (ret) {
822 error_report("Check failed: %s", strerror(-ret));
823 } else {
824 error_report("Check failed");
825 }
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500826 ret = 1;
827 goto fail;
828 }
829
830 if (check->corruptions) {
831 ret = 2;
832 } else if (check->leaks) {
833 ret = 3;
Kevin Wolfe076f332010-06-29 11:43:13 +0200834 } else {
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500835 ret = 0;
aliguori15859692009-04-21 23:11:53 +0000836 }
837
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500838fail:
839 qapi_free_ImageCheck(check);
Markus Armbruster26f54e92014-10-07 13:59:04 +0200840 blk_unref(blk);
Federico Simoncelli8599ea42013-01-28 06:59:47 -0500841 return ret;
aliguori15859692009-04-21 23:11:53 +0000842}
843
Max Reitzd4a32382014-10-24 15:57:37 +0200844typedef struct CommonBlockJobCBInfo {
845 BlockDriverState *bs;
846 Error **errp;
847} CommonBlockJobCBInfo;
848
849static void common_block_job_cb(void *opaque, int ret)
850{
851 CommonBlockJobCBInfo *cbi = opaque;
852
853 if (ret < 0) {
854 error_setg_errno(cbi->errp, -ret, "Block job failed");
855 }
Max Reitzd4a32382014-10-24 15:57:37 +0200856}
857
858static void run_block_job(BlockJob *job, Error **errp)
859{
Kevin Wolfb75536c2016-04-18 17:30:17 +0200860 AioContext *aio_context = blk_get_aio_context(job->blk);
sochin.jiang4172a002017-06-15 14:47:33 +0800861 int ret = 0;
Max Reitzd4a32382014-10-24 15:57:37 +0200862
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200863 aio_context_acquire(aio_context);
sochin.jiang4172a002017-06-15 14:47:33 +0800864 block_job_ref(job);
Max Reitzd4a32382014-10-24 15:57:37 +0200865 do {
866 aio_poll(aio_context, true);
John Snow62547b82015-11-02 18:28:20 -0500867 qemu_progress_print(job->len ?
868 ((float)job->offset / job->len * 100.f) : 0.0f, 0);
sochin.jiang4172a002017-06-15 14:47:33 +0800869 } while (!job->ready && !job->completed);
Max Reitzd4a32382014-10-24 15:57:37 +0200870
sochin.jiang4172a002017-06-15 14:47:33 +0800871 if (!job->completed) {
872 ret = block_job_complete_sync(job, errp);
873 } else {
874 ret = job->ret;
875 }
876 block_job_unref(job);
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200877 aio_context_release(aio_context);
Max Reitz687fa1d2014-10-24 15:57:39 +0200878
sochin.jiang4172a002017-06-15 14:47:33 +0800879 /* publish completion progress only when success */
880 if (!ret) {
881 qemu_progress_print(100.f, 0);
882 }
Max Reitzd4a32382014-10-24 15:57:37 +0200883}
884
bellardea2384d2004-08-01 21:59:26 +0000885static int img_commit(int argc, char **argv)
886{
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400887 int c, ret, flags;
Max Reitz1b22bff2014-10-24 15:57:40 +0200888 const char *filename, *fmt, *cache, *base;
Markus Armbruster26f54e92014-10-07 13:59:04 +0200889 BlockBackend *blk;
Max Reitzd4a32382014-10-24 15:57:37 +0200890 BlockDriverState *bs, *base_bs;
Kevin Wolf4ef85a92017-01-25 19:16:34 +0100891 BlockJob *job;
Max Reitz687fa1d2014-10-24 15:57:39 +0200892 bool progress = false, quiet = false, drop = false;
Kevin Wolfce099542016-03-15 13:01:04 +0100893 bool writethrough;
Max Reitzd4a32382014-10-24 15:57:37 +0200894 Error *local_err = NULL;
895 CommonBlockJobCBInfo cbi;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000896 bool image_opts = false;
Paolo Bonzini9e944cb2016-10-27 12:49:04 +0200897 AioContext *aio_context;
bellardea2384d2004-08-01 21:59:26 +0000898
899 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400900 cache = BDRV_DEFAULT_CACHE;
Max Reitz1b22bff2014-10-24 15:57:40 +0200901 base = NULL;
bellardea2384d2004-08-01 21:59:26 +0000902 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000903 static const struct option long_options[] = {
904 {"help", no_argument, 0, 'h'},
905 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000906 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000907 {0, 0, 0, 0}
908 };
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800909 c = getopt_long(argc, argv, ":f:ht:b:dpq",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000910 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100911 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000912 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100913 }
bellardea2384d2004-08-01 21:59:26 +0000914 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800915 case ':':
916 missing_argument(argv[optind - 1]);
917 break;
Jes Sorensenef873942010-12-06 15:25:40 +0100918 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +0800919 unrecognized_option(argv[optind - 1]);
920 break;
bellardea2384d2004-08-01 21:59:26 +0000921 case 'h':
922 help();
923 break;
924 case 'f':
925 fmt = optarg;
926 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400927 case 't':
928 cache = optarg;
929 break;
Max Reitz1b22bff2014-10-24 15:57:40 +0200930 case 'b':
931 base = optarg;
932 /* -b implies -d */
933 drop = true;
934 break;
Max Reitz9a86fe42014-10-24 15:57:38 +0200935 case 'd':
936 drop = true;
937 break;
Max Reitz687fa1d2014-10-24 15:57:39 +0200938 case 'p':
939 progress = true;
940 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +0100941 case 'q':
942 quiet = true;
943 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000944 case OPTION_OBJECT: {
945 QemuOpts *opts;
946 opts = qemu_opts_parse_noisily(&qemu_object_opts,
947 optarg, true);
948 if (!opts) {
949 return 1;
950 }
951 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +0000952 case OPTION_IMAGE_OPTS:
953 image_opts = true;
954 break;
bellardea2384d2004-08-01 21:59:26 +0000955 }
956 }
Max Reitz687fa1d2014-10-24 15:57:39 +0200957
958 /* Progress is not shown in Quiet mode */
959 if (quiet) {
960 progress = false;
961 }
962
Kevin Wolffc11eb22013-08-05 10:53:04 +0200963 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +0800964 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100965 }
bellardea2384d2004-08-01 21:59:26 +0000966 filename = argv[optind++];
967
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000968 if (qemu_opts_foreach(&qemu_object_opts,
969 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200970 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +0000971 return 1;
972 }
973
Max Reitz9a86fe42014-10-24 15:57:38 +0200974 flags = BDRV_O_RDWR | BDRV_O_UNMAP;
Kevin Wolfce099542016-03-15 13:01:04 +0100975 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400976 if (ret < 0) {
977 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczia3981eb2014-08-26 19:17:54 +0100978 return 1;
Federico Simoncelli661a0f72011-06-20 12:48:19 -0400979 }
980
Fam Zheng335e9932017-05-03 00:35:39 +0800981 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
982 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200983 if (!blk) {
984 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900985 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +0200986 bs = blk_bs(blk);
987
Max Reitz687fa1d2014-10-24 15:57:39 +0200988 qemu_progress_init(progress, 1.f);
989 qemu_progress_print(0.f, 100);
990
Max Reitz1b22bff2014-10-24 15:57:40 +0200991 if (base) {
992 base_bs = bdrv_find_backing_image(bs, base);
993 if (!base_bs) {
Max Reitz6b33f3a2016-12-01 03:05:08 +0100994 error_setg(&local_err,
995 "Did not find '%s' in the backing chain of '%s'",
996 base, filename);
Max Reitz1b22bff2014-10-24 15:57:40 +0200997 goto done;
998 }
999 } else {
1000 /* This is different from QMP, which by default uses the deepest file in
1001 * the backing chain (i.e., the very base); however, the traditional
1002 * behavior of qemu-img commit is using the immediate backing file. */
Kevin Wolf760e0062015-06-17 14:55:21 +02001003 base_bs = backing_bs(bs);
Max Reitz1b22bff2014-10-24 15:57:40 +02001004 if (!base_bs) {
1005 error_setg(&local_err, "Image does not have a backing file");
1006 goto done;
1007 }
bellardea2384d2004-08-01 21:59:26 +00001008 }
1009
Max Reitzd4a32382014-10-24 15:57:37 +02001010 cbi = (CommonBlockJobCBInfo){
1011 .errp = &local_err,
1012 .bs = bs,
1013 };
1014
Paolo Bonzini9e944cb2016-10-27 12:49:04 +02001015 aio_context = bdrv_get_aio_context(bs);
1016 aio_context_acquire(aio_context);
John Snow47970df2016-10-27 12:06:57 -04001017 commit_active_start("commit", bs, base_bs, BLOCK_JOB_DEFAULT, 0,
Kevin Wolf0db832f2017-02-20 18:10:05 +01001018 BLOCKDEV_ON_ERROR_REPORT, NULL, common_block_job_cb,
Fam Zheng78bbd912017-04-21 20:27:04 +08001019 &cbi, false, &local_err);
Paolo Bonzini9e944cb2016-10-27 12:49:04 +02001020 aio_context_release(aio_context);
Max Reitzd4a32382014-10-24 15:57:37 +02001021 if (local_err) {
1022 goto done;
1023 }
1024
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02001025 /* When the block job completes, the BlockBackend reference will point to
1026 * the old backing file. In order to avoid that the top image is already
1027 * deleted, so we can still empty it afterwards, increment the reference
1028 * counter here preemptively. */
Max Reitz9a86fe42014-10-24 15:57:38 +02001029 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02001030 bdrv_ref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +02001031 }
1032
Kevin Wolf4ef85a92017-01-25 19:16:34 +01001033 job = block_job_get("commit");
1034 run_block_job(job, &local_err);
Max Reitz9a86fe42014-10-24 15:57:38 +02001035 if (local_err) {
1036 goto unref_backing;
1037 }
1038
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02001039 if (!drop && bs->drv->bdrv_make_empty) {
1040 ret = bs->drv->bdrv_make_empty(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +02001041 if (ret) {
1042 error_setg_errno(&local_err, -ret, "Could not empty %s",
1043 filename);
1044 goto unref_backing;
1045 }
1046 }
1047
1048unref_backing:
1049 if (!drop) {
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02001050 bdrv_unref(bs);
Max Reitz9a86fe42014-10-24 15:57:38 +02001051 }
Max Reitzd4a32382014-10-24 15:57:37 +02001052
1053done:
Max Reitz687fa1d2014-10-24 15:57:39 +02001054 qemu_progress_end();
1055
Markus Armbruster26f54e92014-10-07 13:59:04 +02001056 blk_unref(blk);
Max Reitzd4a32382014-10-24 15:57:37 +02001057
1058 if (local_err) {
Markus Armbruster6936f292015-02-10 15:14:02 +01001059 error_report_err(local_err);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001060 return 1;
1061 }
Max Reitzd4a32382014-10-24 15:57:37 +02001062
1063 qprintf(quiet, "Image committed.\n");
bellardea2384d2004-08-01 21:59:26 +00001064 return 0;
1065}
1066
Dmitry Konishchevf6a00aa2011-05-18 15:03:59 +04001067/*
thsf58c7b32008-06-05 21:53:49 +00001068 * Returns true iff the first sector pointed to by 'buf' contains at least
1069 * a non-NUL byte.
1070 *
1071 * 'pnum' is set to the number of sectors (including and immediately following
1072 * the first one) that are known to be in the same allocated/unallocated state.
1073 */
bellardea2384d2004-08-01 21:59:26 +00001074static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
1075{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001076 bool is_zero;
1077 int i;
bellardea2384d2004-08-01 21:59:26 +00001078
1079 if (n <= 0) {
1080 *pnum = 0;
1081 return 0;
1082 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001083 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +00001084 for(i = 1; i < n; i++) {
1085 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001086 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +00001087 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001088 }
bellardea2384d2004-08-01 21:59:26 +00001089 }
1090 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001091 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +00001092}
1093
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001094/*
Kevin Wolfa22f1232011-08-26 15:27:13 +02001095 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1096 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1097 * breaking up write requests for only small sparse areas.
1098 */
1099static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1100 int min)
1101{
1102 int ret;
1103 int num_checked, num_used;
1104
1105 if (n < min) {
1106 min = n;
1107 }
1108
1109 ret = is_allocated_sectors(buf, n, pnum);
1110 if (!ret) {
1111 return ret;
1112 }
1113
1114 num_used = *pnum;
1115 buf += BDRV_SECTOR_SIZE * *pnum;
1116 n -= *pnum;
1117 num_checked = num_used;
1118
1119 while (n > 0) {
1120 ret = is_allocated_sectors(buf, n, pnum);
1121
1122 buf += BDRV_SECTOR_SIZE * *pnum;
1123 n -= *pnum;
1124 num_checked += *pnum;
1125 if (ret) {
1126 num_used = num_checked;
1127 } else if (*pnum >= min) {
1128 break;
1129 }
1130 }
1131
1132 *pnum = num_used;
1133 return 1;
1134}
1135
1136/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001137 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1138 * buffers matches, non-zero otherwise.
1139 *
1140 * pnum is set to the number of sectors (including and immediately following
1141 * the first one) that are known to have the same comparison result
1142 */
1143static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1144 int *pnum)
1145{
Radim KrčmĆ”Å™8c1ac472015-02-20 17:06:15 +01001146 bool res;
1147 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001148
1149 if (n <= 0) {
1150 *pnum = 0;
1151 return 0;
1152 }
1153
1154 res = !!memcmp(buf1, buf2, 512);
1155 for(i = 1; i < n; i++) {
1156 buf1 += 512;
1157 buf2 += 512;
1158
1159 if (!!memcmp(buf1, buf2, 512) != res) {
1160 break;
1161 }
1162 }
1163
1164 *pnum = i;
1165 return res;
1166}
1167
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001168#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001169
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001170static int64_t sectors_to_bytes(int64_t sectors)
1171{
1172 return sectors << BDRV_SECTOR_BITS;
1173}
1174
1175static int64_t sectors_to_process(int64_t total, int64_t from)
1176{
1177 return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
1178}
1179
1180/*
1181 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1182 *
1183 * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero
1184 * data and negative value on error.
1185 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001186 * @param blk: BlockBackend for the image
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001187 * @param sect_num: Number of first sector to check
1188 * @param sect_count: Number of sectors to check
1189 * @param filename: Name of disk file we are checking (logging purpose)
1190 * @param buffer: Allocated buffer for storing read data
1191 * @param quiet: Flag for quiet mode
1192 */
Max Reitzf1d3cd72015-02-05 13:58:18 -05001193static int check_empty_sectors(BlockBackend *blk, int64_t sect_num,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001194 int sect_count, const char *filename,
1195 uint8_t *buffer, bool quiet)
1196{
1197 int pnum, ret = 0;
Eric Blake91669202016-05-06 10:26:43 -06001198 ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer,
1199 sect_count << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001200 if (ret < 0) {
1201 error_report("Error while reading offset %" PRId64 " of %s: %s",
1202 sectors_to_bytes(sect_num), filename, strerror(-ret));
1203 return ret;
1204 }
1205 ret = is_allocated_sectors(buffer, sect_count, &pnum);
1206 if (ret || pnum != sect_count) {
1207 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1208 sectors_to_bytes(ret ? sect_num : sect_num + pnum));
1209 return 1;
1210 }
1211
1212 return 0;
1213}
1214
1215/*
1216 * Compares two images. Exit codes:
1217 *
1218 * 0 - Images are identical
1219 * 1 - Images differ
1220 * >1 - Error occurred
1221 */
1222static int img_compare(int argc, char **argv)
1223{
Max Reitz40055952014-07-22 22:58:42 +02001224 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001225 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001226 BlockDriverState *bs1, *bs2;
1227 int64_t total_sectors1, total_sectors2;
1228 uint8_t *buf1 = NULL, *buf2 = NULL;
1229 int pnum1, pnum2;
1230 int allocated1, allocated2;
1231 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1232 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001233 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001234 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001235 int64_t total_sectors;
1236 int64_t sector_num = 0;
1237 int64_t nb_sectors;
1238 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001239 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001240 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08001241 bool force_share = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001242
Max Reitz40055952014-07-22 22:58:42 +02001243 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001244 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001245 static const struct option long_options[] = {
1246 {"help", no_argument, 0, 'h'},
1247 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001248 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08001249 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001250 {0, 0, 0, 0}
1251 };
Fam Zheng335e9932017-05-03 00:35:39 +08001252 c = getopt_long(argc, argv, ":hf:F:T:pqsU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001253 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001254 if (c == -1) {
1255 break;
1256 }
1257 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001258 case ':':
1259 missing_argument(argv[optind - 1]);
1260 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001261 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001262 unrecognized_option(argv[optind - 1]);
1263 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001264 case 'h':
1265 help();
1266 break;
1267 case 'f':
1268 fmt1 = optarg;
1269 break;
1270 case 'F':
1271 fmt2 = optarg;
1272 break;
Max Reitz40055952014-07-22 22:58:42 +02001273 case 'T':
1274 cache = optarg;
1275 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001276 case 'p':
1277 progress = true;
1278 break;
1279 case 'q':
1280 quiet = true;
1281 break;
1282 case 's':
1283 strict = true;
1284 break;
Fam Zheng335e9932017-05-03 00:35:39 +08001285 case 'U':
1286 force_share = true;
1287 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001288 case OPTION_OBJECT: {
1289 QemuOpts *opts;
1290 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1291 optarg, true);
1292 if (!opts) {
1293 ret = 2;
1294 goto out4;
1295 }
1296 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001297 case OPTION_IMAGE_OPTS:
1298 image_opts = true;
1299 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001300 }
1301 }
1302
1303 /* Progress is not shown in Quiet mode */
1304 if (quiet) {
1305 progress = false;
1306 }
1307
1308
Kevin Wolffc11eb22013-08-05 10:53:04 +02001309 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001310 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001311 }
1312 filename1 = argv[optind++];
1313 filename2 = argv[optind++];
1314
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001315 if (qemu_opts_foreach(&qemu_object_opts,
1316 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001317 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001318 ret = 2;
1319 goto out4;
1320 }
1321
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001322 /* Initialize before goto out */
1323 qemu_progress_init(progress, 2.0);
1324
Kevin Wolfce099542016-03-15 13:01:04 +01001325 flags = 0;
1326 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001327 if (ret < 0) {
1328 error_report("Invalid source cache option: %s", cache);
1329 ret = 2;
1330 goto out3;
1331 }
1332
Fam Zheng335e9932017-05-03 00:35:39 +08001333 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet,
1334 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001335 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001336 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001337 goto out3;
1338 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001339
Fam Zheng335e9932017-05-03 00:35:39 +08001340 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet,
1341 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001342 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001343 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001344 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001345 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001346 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001347 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001348
Max Reitzf1d3cd72015-02-05 13:58:18 -05001349 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1350 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1351 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001352 if (total_sectors1 < 0) {
1353 error_report("Can't get size of %s: %s",
1354 filename1, strerror(-total_sectors1));
1355 ret = 4;
1356 goto out;
1357 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001358 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001359 if (total_sectors2 < 0) {
1360 error_report("Can't get size of %s: %s",
1361 filename2, strerror(-total_sectors2));
1362 ret = 4;
1363 goto out;
1364 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001365 total_sectors = MIN(total_sectors1, total_sectors2);
1366 progress_base = MAX(total_sectors1, total_sectors2);
1367
1368 qemu_progress_print(0, 100);
1369
1370 if (strict && total_sectors1 != total_sectors2) {
1371 ret = 1;
1372 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1373 goto out;
1374 }
1375
1376 for (;;) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001377 int64_t status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001378 BlockDriverState *file;
1379
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001380 nb_sectors = sectors_to_process(total_sectors, sector_num);
1381 if (nb_sectors <= 0) {
1382 break;
1383 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001384 status1 = bdrv_get_block_status_above(bs1, NULL, sector_num,
1385 total_sectors1 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001386 &pnum1, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001387 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001388 ret = 3;
1389 error_report("Sector allocation test failed for %s", filename1);
1390 goto out;
1391 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001392 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001393
Fam Zheng25ad8e62016-01-13 16:37:41 +08001394 status2 = bdrv_get_block_status_above(bs2, NULL, sector_num,
1395 total_sectors2 - sector_num,
Fam Zheng67a0fd22016-01-26 11:58:48 +08001396 &pnum2, &file);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001397 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001398 ret = 3;
1399 error_report("Sector allocation test failed for %s", filename2);
1400 goto out;
1401 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001402 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
1403 if (pnum1) {
1404 nb_sectors = MIN(nb_sectors, pnum1);
1405 }
1406 if (pnum2) {
1407 nb_sectors = MIN(nb_sectors, pnum2);
1408 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001409
Fam Zheng25ad8e62016-01-13 16:37:41 +08001410 if (strict) {
1411 if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) !=
1412 (status2 & ~BDRV_BLOCK_OFFSET_MASK)) {
1413 ret = 1;
1414 qprintf(quiet, "Strict mode: Offset %" PRId64
1415 " block status mismatch!\n",
1416 sectors_to_bytes(sector_num));
1417 goto out;
1418 }
1419 }
1420 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
1421 nb_sectors = MIN(pnum1, pnum2);
1422 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001423 if (allocated1) {
Eric Blake91669202016-05-06 10:26:43 -06001424 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1425 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001426 if (ret < 0) {
1427 error_report("Error while reading offset %" PRId64 " of %s:"
1428 " %s", sectors_to_bytes(sector_num), filename1,
1429 strerror(-ret));
1430 ret = 4;
1431 goto out;
1432 }
Eric Blake91669202016-05-06 10:26:43 -06001433 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1434 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001435 if (ret < 0) {
1436 error_report("Error while reading offset %" PRId64
1437 " of %s: %s", sectors_to_bytes(sector_num),
1438 filename2, strerror(-ret));
1439 ret = 4;
1440 goto out;
1441 }
1442 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1443 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001444 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1445 sectors_to_bytes(
1446 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001447 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001448 goto out;
1449 }
1450 }
1451 } else {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001452
1453 if (allocated1) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001454 ret = check_empty_sectors(blk1, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001455 filename1, buf1, quiet);
1456 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001457 ret = check_empty_sectors(blk2, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001458 filename2, buf1, quiet);
1459 }
1460 if (ret) {
1461 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001462 error_report("Error while reading offset %" PRId64 ": %s",
1463 sectors_to_bytes(sector_num), strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001464 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001465 }
1466 goto out;
1467 }
1468 }
1469 sector_num += nb_sectors;
1470 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1471 }
1472
1473 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001474 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001475 int64_t total_sectors_over;
1476 const char *filename_over;
1477
1478 qprintf(quiet, "Warning: Image size mismatch!\n");
1479 if (total_sectors1 > total_sectors2) {
1480 total_sectors_over = total_sectors1;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001481 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001482 filename_over = filename1;
1483 } else {
1484 total_sectors_over = total_sectors2;
Max Reitzf1d3cd72015-02-05 13:58:18 -05001485 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001486 filename_over = filename2;
1487 }
1488
1489 for (;;) {
Eric Blake51b0a482017-07-07 07:44:59 -05001490 int64_t count;
1491
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001492 nb_sectors = sectors_to_process(total_sectors_over, sector_num);
1493 if (nb_sectors <= 0) {
1494 break;
1495 }
Eric Blake51b0a482017-07-07 07:44:59 -05001496 ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL,
1497 sector_num * BDRV_SECTOR_SIZE,
1498 nb_sectors * BDRV_SECTOR_SIZE,
1499 &count);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001500 if (ret < 0) {
1501 ret = 3;
1502 error_report("Sector allocation test failed for %s",
1503 filename_over);
1504 goto out;
1505
1506 }
Eric Blake51b0a482017-07-07 07:44:59 -05001507 /* TODO relax this once bdrv_is_allocated_above does not enforce
1508 * sector alignment */
1509 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
1510 nb_sectors = count >> BDRV_SECTOR_BITS;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001511 if (ret) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001512 ret = check_empty_sectors(blk_over, sector_num, nb_sectors,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001513 filename_over, buf1, quiet);
1514 if (ret) {
1515 if (ret < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001516 error_report("Error while reading offset %" PRId64
1517 " of %s: %s", sectors_to_bytes(sector_num),
1518 filename_over, strerror(-ret));
Fam Zheng36452f12013-11-13 20:26:49 +08001519 ret = 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001520 }
1521 goto out;
1522 }
1523 }
1524 sector_num += nb_sectors;
1525 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1526 }
1527 }
1528
1529 qprintf(quiet, "Images are identical.\n");
1530 ret = 0;
1531
1532out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001533 qemu_vfree(buf1);
1534 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001535 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001536out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001537 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001538out3:
1539 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001540out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001541 return ret;
1542}
1543
Kevin Wolf690c7302015-03-19 13:33:32 +01001544enum ImgConvertBlockStatus {
1545 BLK_DATA,
1546 BLK_ZERO,
1547 BLK_BACKING_FILE,
1548};
1549
Peter Lieven2d9187b2017-02-28 13:40:07 +01001550#define MAX_COROUTINES 16
1551
Kevin Wolf690c7302015-03-19 13:33:32 +01001552typedef struct ImgConvertState {
1553 BlockBackend **src;
1554 int64_t *src_sectors;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001555 int src_num;
Kevin Wolf690c7302015-03-19 13:33:32 +01001556 int64_t total_sectors;
1557 int64_t allocated_sectors;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001558 int64_t allocated_done;
1559 int64_t sector_num;
1560 int64_t wr_offs;
Kevin Wolf690c7302015-03-19 13:33:32 +01001561 enum ImgConvertBlockStatus status;
1562 int64_t sector_next_status;
1563 BlockBackend *target;
1564 bool has_zero_init;
1565 bool compressed;
1566 bool target_has_backing;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001567 bool wr_in_order;
Kevin Wolf690c7302015-03-19 13:33:32 +01001568 int min_sparse;
1569 size_t cluster_sectors;
1570 size_t buf_sectors;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001571 long num_coroutines;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001572 int running_coroutines;
1573 Coroutine *co[MAX_COROUTINES];
1574 int64_t wait_sector_num[MAX_COROUTINES];
1575 CoMutex lock;
1576 int ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001577} ImgConvertState;
1578
Peter Lieven2d9187b2017-02-28 13:40:07 +01001579static void convert_select_part(ImgConvertState *s, int64_t sector_num,
1580 int *src_cur, int64_t *src_cur_offset)
Kevin Wolf690c7302015-03-19 13:33:32 +01001581{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001582 *src_cur = 0;
1583 *src_cur_offset = 0;
1584 while (sector_num - *src_cur_offset >= s->src_sectors[*src_cur]) {
1585 *src_cur_offset += s->src_sectors[*src_cur];
1586 (*src_cur)++;
1587 assert(*src_cur < s->src_num);
Kevin Wolf690c7302015-03-19 13:33:32 +01001588 }
1589}
1590
1591static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1592{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001593 int64_t ret, src_cur_offset;
1594 int n, src_cur;
Kevin Wolf690c7302015-03-19 13:33:32 +01001595
Peter Lieven2d9187b2017-02-28 13:40:07 +01001596 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
Kevin Wolf690c7302015-03-19 13:33:32 +01001597
1598 assert(s->total_sectors > sector_num);
1599 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1600
1601 if (s->sector_next_status <= sector_num) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08001602 BlockDriverState *file;
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001603 if (s->target_has_backing) {
1604 ret = bdrv_get_block_status(blk_bs(s->src[src_cur]),
1605 sector_num - src_cur_offset,
1606 n, &n, &file);
1607 } else {
1608 ret = bdrv_get_block_status_above(blk_bs(s->src[src_cur]), NULL,
1609 sector_num - src_cur_offset,
1610 n, &n, &file);
1611 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001612 if (ret < 0) {
1613 return ret;
1614 }
1615
1616 if (ret & BDRV_BLOCK_ZERO) {
1617 s->status = BLK_ZERO;
1618 } else if (ret & BDRV_BLOCK_DATA) {
1619 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001620 } else {
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001621 s->status = s->target_has_backing ? BLK_BACKING_FILE : BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001622 }
1623
1624 s->sector_next_status = sector_num + n;
1625 }
1626
1627 n = MIN(n, s->sector_next_status - sector_num);
1628 if (s->status == BLK_DATA) {
1629 n = MIN(n, s->buf_sectors);
1630 }
1631
1632 /* We need to write complete clusters for compressed images, so if an
1633 * unallocated area is shorter than that, we must consider the whole
1634 * cluster allocated. */
1635 if (s->compressed) {
1636 if (n < s->cluster_sectors) {
1637 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1638 s->status = BLK_DATA;
1639 } else {
1640 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1641 }
1642 }
1643
1644 return n;
1645}
1646
Peter Lieven2d9187b2017-02-28 13:40:07 +01001647static int coroutine_fn convert_co_read(ImgConvertState *s, int64_t sector_num,
1648 int nb_sectors, uint8_t *buf)
Kevin Wolf690c7302015-03-19 13:33:32 +01001649{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001650 int n, ret;
1651 QEMUIOVector qiov;
1652 struct iovec iov;
Kevin Wolf690c7302015-03-19 13:33:32 +01001653
Kevin Wolf690c7302015-03-19 13:33:32 +01001654 assert(nb_sectors <= s->buf_sectors);
1655 while (nb_sectors > 0) {
1656 BlockBackend *blk;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001657 int src_cur;
1658 int64_t bs_sectors, src_cur_offset;
Kevin Wolf690c7302015-03-19 13:33:32 +01001659
1660 /* In the case of compression with multiple source files, we can get a
1661 * nb_sectors that spreads into the next part. So we must be able to
1662 * read across multiple BDSes for one convert_read() call. */
Peter Lieven2d9187b2017-02-28 13:40:07 +01001663 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1664 blk = s->src[src_cur];
1665 bs_sectors = s->src_sectors[src_cur];
Kevin Wolf690c7302015-03-19 13:33:32 +01001666
Peter Lieven2d9187b2017-02-28 13:40:07 +01001667 n = MIN(nb_sectors, bs_sectors - (sector_num - src_cur_offset));
1668 iov.iov_base = buf;
1669 iov.iov_len = n << BDRV_SECTOR_BITS;
1670 qemu_iovec_init_external(&qiov, &iov, 1);
1671
1672 ret = blk_co_preadv(
1673 blk, (sector_num - src_cur_offset) << BDRV_SECTOR_BITS,
1674 n << BDRV_SECTOR_BITS, &qiov, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001675 if (ret < 0) {
1676 return ret;
1677 }
1678
1679 sector_num += n;
1680 nb_sectors -= n;
1681 buf += n * BDRV_SECTOR_SIZE;
1682 }
1683
1684 return 0;
1685}
1686
Peter Lieven2d9187b2017-02-28 13:40:07 +01001687
1688static int coroutine_fn convert_co_write(ImgConvertState *s, int64_t sector_num,
1689 int nb_sectors, uint8_t *buf,
1690 enum ImgConvertBlockStatus status)
Kevin Wolf690c7302015-03-19 13:33:32 +01001691{
1692 int ret;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001693 QEMUIOVector qiov;
1694 struct iovec iov;
Kevin Wolf690c7302015-03-19 13:33:32 +01001695
1696 while (nb_sectors > 0) {
1697 int n = nb_sectors;
Lidong Chendb933fb2017-04-27 10:58:27 +08001698 BdrvRequestFlags flags = s->compressed ? BDRV_REQ_WRITE_COMPRESSED : 0;
1699
Peter Lieven2d9187b2017-02-28 13:40:07 +01001700 switch (status) {
Kevin Wolf690c7302015-03-19 13:33:32 +01001701 case BLK_BACKING_FILE:
1702 /* If we have a backing file, leave clusters unallocated that are
1703 * unallocated in the source image, so that the backing file is
1704 * visible at the respective offset. */
1705 assert(s->target_has_backing);
1706 break;
1707
1708 case BLK_DATA:
Lidong Chendb933fb2017-04-27 10:58:27 +08001709 /* If we're told to keep the target fully allocated (-S 0) or there
1710 * is real non-zero data, we must write it. Otherwise we can treat
1711 * it as zero sectors.
1712 * Compressed clusters need to be written as a whole, so in that
1713 * case we can only save the write if the buffer is completely
1714 * zeroed. */
Kevin Wolf690c7302015-03-19 13:33:32 +01001715 if (!s->min_sparse ||
Lidong Chendb933fb2017-04-27 10:58:27 +08001716 (!s->compressed &&
1717 is_allocated_sectors_min(buf, n, &n, s->min_sparse)) ||
1718 (s->compressed &&
1719 !buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)))
Kevin Wolf690c7302015-03-19 13:33:32 +01001720 {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001721 iov.iov_base = buf;
1722 iov.iov_len = n << BDRV_SECTOR_BITS;
1723 qemu_iovec_init_external(&qiov, &iov, 1);
1724
1725 ret = blk_co_pwritev(s->target, sector_num << BDRV_SECTOR_BITS,
Lidong Chendb933fb2017-04-27 10:58:27 +08001726 n << BDRV_SECTOR_BITS, &qiov, flags);
Kevin Wolf690c7302015-03-19 13:33:32 +01001727 if (ret < 0) {
1728 return ret;
1729 }
1730 break;
1731 }
1732 /* fall-through */
1733
1734 case BLK_ZERO:
1735 if (s->has_zero_init) {
Lidong Chendb933fb2017-04-27 10:58:27 +08001736 assert(!s->target_has_backing);
Kevin Wolf690c7302015-03-19 13:33:32 +01001737 break;
1738 }
Peter Lieven2d9187b2017-02-28 13:40:07 +01001739 ret = blk_co_pwrite_zeroes(s->target,
1740 sector_num << BDRV_SECTOR_BITS,
1741 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001742 if (ret < 0) {
1743 return ret;
1744 }
1745 break;
1746 }
1747
1748 sector_num += n;
1749 nb_sectors -= n;
1750 buf += n * BDRV_SECTOR_SIZE;
1751 }
1752
1753 return 0;
1754}
1755
Peter Lieven2d9187b2017-02-28 13:40:07 +01001756static void coroutine_fn convert_co_do_copy(void *opaque)
1757{
1758 ImgConvertState *s = opaque;
1759 uint8_t *buf = NULL;
1760 int ret, i;
1761 int index = -1;
1762
1763 for (i = 0; i < s->num_coroutines; i++) {
1764 if (s->co[i] == qemu_coroutine_self()) {
1765 index = i;
1766 break;
1767 }
1768 }
1769 assert(index >= 0);
1770
1771 s->running_coroutines++;
1772 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1773
1774 while (1) {
1775 int n;
1776 int64_t sector_num;
1777 enum ImgConvertBlockStatus status;
1778
1779 qemu_co_mutex_lock(&s->lock);
1780 if (s->ret != -EINPROGRESS || s->sector_num >= s->total_sectors) {
1781 qemu_co_mutex_unlock(&s->lock);
Anton Nefedovb91127e2017-04-26 11:33:15 +03001782 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001783 }
1784 n = convert_iteration_sectors(s, s->sector_num);
1785 if (n < 0) {
1786 qemu_co_mutex_unlock(&s->lock);
1787 s->ret = n;
Anton Nefedovb91127e2017-04-26 11:33:15 +03001788 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001789 }
1790 /* save current sector and allocation status to local variables */
1791 sector_num = s->sector_num;
1792 status = s->status;
1793 if (!s->min_sparse && s->status == BLK_ZERO) {
1794 n = MIN(n, s->buf_sectors);
1795 }
1796 /* increment global sector counter so that other coroutines can
1797 * already continue reading beyond this request */
1798 s->sector_num += n;
1799 qemu_co_mutex_unlock(&s->lock);
1800
1801 if (status == BLK_DATA || (!s->min_sparse && status == BLK_ZERO)) {
1802 s->allocated_done += n;
1803 qemu_progress_print(100.0 * s->allocated_done /
1804 s->allocated_sectors, 0);
1805 }
1806
1807 if (status == BLK_DATA) {
1808 ret = convert_co_read(s, sector_num, n, buf);
1809 if (ret < 0) {
1810 error_report("error while reading sector %" PRId64
1811 ": %s", sector_num, strerror(-ret));
1812 s->ret = ret;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001813 }
1814 } else if (!s->min_sparse && status == BLK_ZERO) {
1815 status = BLK_DATA;
1816 memset(buf, 0x00, n * BDRV_SECTOR_SIZE);
1817 }
1818
1819 if (s->wr_in_order) {
1820 /* keep writes in order */
Anton Nefedovb91127e2017-04-26 11:33:15 +03001821 while (s->wr_offs != sector_num && s->ret == -EINPROGRESS) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001822 s->wait_sector_num[index] = sector_num;
1823 qemu_coroutine_yield();
1824 }
1825 s->wait_sector_num[index] = -1;
1826 }
1827
Anton Nefedovb91127e2017-04-26 11:33:15 +03001828 if (s->ret == -EINPROGRESS) {
1829 ret = convert_co_write(s, sector_num, n, buf, status);
1830 if (ret < 0) {
1831 error_report("error while writing sector %" PRId64
1832 ": %s", sector_num, strerror(-ret));
1833 s->ret = ret;
1834 }
Peter Lieven2d9187b2017-02-28 13:40:07 +01001835 }
1836
1837 if (s->wr_in_order) {
1838 /* reenter the coroutine that might have waited
1839 * for this write to complete */
1840 s->wr_offs = sector_num + n;
1841 for (i = 0; i < s->num_coroutines; i++) {
1842 if (s->co[i] && s->wait_sector_num[i] == s->wr_offs) {
1843 /*
1844 * A -> B -> A cannot occur because A has
1845 * s->wait_sector_num[i] == -1 during A -> B. Therefore
1846 * B will never enter A during this time window.
1847 */
1848 qemu_coroutine_enter(s->co[i]);
1849 break;
1850 }
1851 }
1852 }
1853 }
1854
Peter Lieven2d9187b2017-02-28 13:40:07 +01001855 qemu_vfree(buf);
1856 s->co[index] = NULL;
1857 s->running_coroutines--;
1858 if (!s->running_coroutines && s->ret == -EINPROGRESS) {
1859 /* the convert job finished successfully */
1860 s->ret = 0;
1861 }
1862}
1863
Kevin Wolf690c7302015-03-19 13:33:32 +01001864static int convert_do_copy(ImgConvertState *s)
1865{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001866 int ret, i, n;
1867 int64_t sector_num = 0;
Kevin Wolf690c7302015-03-19 13:33:32 +01001868
1869 /* Check whether we have zero initialisation or can get it efficiently */
1870 s->has_zero_init = s->min_sparse && !s->target_has_backing
1871 ? bdrv_has_zero_init(blk_bs(s->target))
1872 : false;
1873
1874 if (!s->has_zero_init && !s->target_has_backing &&
1875 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1876 {
Kevin Wolf720ff282016-06-16 15:13:15 +02001877 ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP);
Kevin Wolf690c7302015-03-19 13:33:32 +01001878 if (ret == 0) {
1879 s->has_zero_init = true;
1880 }
1881 }
1882
1883 /* Allocate buffer for copied data. For compressed images, only one cluster
1884 * can be copied at a time. */
1885 if (s->compressed) {
1886 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1887 error_report("invalid cluster size");
Peter Lieven2d9187b2017-02-28 13:40:07 +01001888 return -EINVAL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001889 }
1890 s->buf_sectors = s->cluster_sectors;
1891 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001892
Kevin Wolf690c7302015-03-19 13:33:32 +01001893 while (sector_num < s->total_sectors) {
1894 n = convert_iteration_sectors(s, sector_num);
1895 if (n < 0) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001896 return n;
Kevin Wolf690c7302015-03-19 13:33:32 +01001897 }
Max Reitzaad15de2016-03-24 23:33:57 +01001898 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1899 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001900 s->allocated_sectors += n;
1901 }
1902 sector_num += n;
1903 }
1904
1905 /* Do the copy */
Kevin Wolf690c7302015-03-19 13:33:32 +01001906 s->sector_next_status = 0;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001907 s->ret = -EINPROGRESS;
Kevin Wolf690c7302015-03-19 13:33:32 +01001908
Peter Lieven2d9187b2017-02-28 13:40:07 +01001909 qemu_co_mutex_init(&s->lock);
1910 for (i = 0; i < s->num_coroutines; i++) {
1911 s->co[i] = qemu_coroutine_create(convert_co_do_copy, s);
1912 s->wait_sector_num[i] = -1;
1913 qemu_coroutine_enter(s->co[i]);
Kevin Wolf690c7302015-03-19 13:33:32 +01001914 }
1915
Anton Nefedovb91127e2017-04-26 11:33:15 +03001916 while (s->running_coroutines) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001917 main_loop_wait(false);
1918 }
1919
1920 if (s->compressed && !s->ret) {
Kevin Wolf690c7302015-03-19 13:33:32 +01001921 /* signal EOF to align */
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001922 ret = blk_pwrite_compressed(s->target, 0, NULL, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001923 if (ret < 0) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001924 return ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001925 }
1926 }
1927
Peter Lieven2d9187b2017-02-28 13:40:07 +01001928 return s->ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001929}
1930
bellardea2384d2004-08-01 21:59:26 +00001931static int img_convert(int argc, char **argv)
1932{
Peter Lieven9fd77f92017-04-21 11:11:55 +02001933 int c, bs_i, flags, src_flags = 0;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001934 const char *fmt = NULL, *out_fmt = NULL, *cache = "unsafe",
Peter Lieven9fd77f92017-04-21 11:11:55 +02001935 *src_cache = BDRV_DEFAULT_CACHE, *out_baseimg = NULL,
1936 *out_filename, *out_baseimg_param, *snapshot_name = NULL;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001937 BlockDriver *drv = NULL, *proto_drv = NULL;
bellardfaea38e2006-08-05 21:31:00 +00001938 BlockDriverInfo bdi;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001939 BlockDriverState *out_bs;
1940 QemuOpts *opts = NULL, *sn_opts = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08001941 QemuOptsList *create_opts = NULL;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001942 char *options = NULL;
Max Reitzcc84d902013-09-06 17:14:26 +02001943 Error *local_err = NULL;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001944 bool writethrough, src_writethrough, quiet = false, image_opts = false,
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001945 skip_create = false, progress = false, tgt_image_opts = false;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001946 int64_t ret = -EINVAL;
Fam Zheng335e9932017-05-03 00:35:39 +08001947 bool force_share = false;
bellardea2384d2004-08-01 21:59:26 +00001948
Peter Lieven9fd77f92017-04-21 11:11:55 +02001949 ImgConvertState s = (ImgConvertState) {
1950 /* Need at least 4k of zeros for sparse detection */
1951 .min_sparse = 8,
1952 .buf_sectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE,
1953 .wr_in_order = true,
1954 .num_coroutines = 8,
1955 };
1956
bellardea2384d2004-08-01 21:59:26 +00001957 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001958 static const struct option long_options[] = {
1959 {"help", no_argument, 0, 'h'},
1960 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001961 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08001962 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001963 {"target-image-opts", no_argument, 0, OPTION_TARGET_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001964 {0, 0, 0, 0}
1965 };
Daniel P. Berrange6b4df542017-07-04 13:30:09 +01001966 c = getopt_long(argc, argv, ":hf:O:B:co:s:l:S:pt:T:qnm:WU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001967 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001968 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001969 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001970 }
bellardea2384d2004-08-01 21:59:26 +00001971 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001972 case ':':
1973 missing_argument(argv[optind - 1]);
1974 break;
Jes Sorensenef873942010-12-06 15:25:40 +01001975 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001976 unrecognized_option(argv[optind - 1]);
1977 break;
bellardea2384d2004-08-01 21:59:26 +00001978 case 'h':
1979 help();
1980 break;
1981 case 'f':
1982 fmt = optarg;
1983 break;
1984 case 'O':
1985 out_fmt = optarg;
1986 break;
thsf58c7b32008-06-05 21:53:49 +00001987 case 'B':
1988 out_baseimg = optarg;
1989 break;
bellardea2384d2004-08-01 21:59:26 +00001990 case 'c':
Peter Lieven9fd77f92017-04-21 11:11:55 +02001991 s.compressed = true;
bellardea2384d2004-08-01 21:59:26 +00001992 break;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001993 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01001994 if (!is_valid_option_list(optarg)) {
1995 error_report("Invalid option list: %s", optarg);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01001996 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01001997 }
1998 if (!options) {
1999 options = g_strdup(optarg);
2000 } else {
2001 char *old_options = options;
2002 options = g_strdup_printf("%s,%s", options, optarg);
2003 g_free(old_options);
2004 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002005 break;
edison51ef6722010-09-21 19:58:41 -07002006 case 's':
2007 snapshot_name = optarg;
2008 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08002009 case 'l':
2010 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01002011 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
2012 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08002013 if (!sn_opts) {
2014 error_report("Failed in parsing snapshot param '%s'",
2015 optarg);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002016 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08002017 }
2018 } else {
2019 snapshot_name = optarg;
2020 }
2021 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002022 case 'S':
2023 {
2024 int64_t sval;
Markus Armbruster606caa02017-02-21 21:14:04 +01002025
2026 sval = cvtnum(optarg);
2027 if (sval < 0) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02002028 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002029 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002030 }
2031
Peter Lieven9fd77f92017-04-21 11:11:55 +02002032 s.min_sparse = sval / BDRV_SECTOR_SIZE;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002033 break;
2034 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002035 case 'p':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002036 progress = true;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002037 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002038 case 't':
2039 cache = optarg;
2040 break;
Max Reitz40055952014-07-22 22:58:42 +02002041 case 'T':
2042 src_cache = optarg;
2043 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002044 case 'q':
2045 quiet = true;
2046 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002047 case 'n':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002048 skip_create = true;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002049 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01002050 case 'm':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002051 if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) ||
2052 s.num_coroutines < 1 || s.num_coroutines > MAX_COROUTINES) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01002053 error_report("Invalid number of coroutines. Allowed number of"
2054 " coroutines is between 1 and %d", MAX_COROUTINES);
Peter Lieven2d9187b2017-02-28 13:40:07 +01002055 goto fail_getopt;
2056 }
2057 break;
2058 case 'W':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002059 s.wr_in_order = false;
Peter Lieven2d9187b2017-02-28 13:40:07 +01002060 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002061 case 'U':
2062 force_share = true;
2063 break;
Max Reitz3258b912017-04-26 15:46:47 +02002064 case OPTION_OBJECT: {
2065 QemuOpts *object_opts;
2066 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
2067 optarg, true);
2068 if (!object_opts) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002069 goto fail_getopt;
2070 }
2071 break;
Max Reitz3258b912017-04-26 15:46:47 +02002072 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002073 case OPTION_IMAGE_OPTS:
2074 image_opts = true;
2075 break;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002076 case OPTION_TARGET_IMAGE_OPTS:
2077 tgt_image_opts = true;
2078 break;
bellardea2384d2004-08-01 21:59:26 +00002079 }
2080 }
ths3b46e622007-09-17 08:09:54 +00002081
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002082 if (!out_fmt && !tgt_image_opts) {
2083 out_fmt = "raw";
2084 }
2085
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002086 if (qemu_opts_foreach(&qemu_object_opts,
2087 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002088 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002089 goto fail_getopt;
2090 }
2091
Peter Lieven9fd77f92017-04-21 11:11:55 +02002092 if (!s.wr_in_order && s.compressed) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01002093 error_report("Out of order write and compress are mutually exclusive");
Peter Lieven9fd77f92017-04-21 11:11:55 +02002094 goto fail_getopt;
2095 }
2096
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002097 if (tgt_image_opts && !skip_create) {
2098 error_report("--target-image-opts requires use of -n flag");
2099 goto fail_getopt;
2100 }
2101
Peter Lieven9fd77f92017-04-21 11:11:55 +02002102 s.src_num = argc - optind - 1;
2103 out_filename = s.src_num >= 1 ? argv[argc - 1] : NULL;
2104
2105 if (options && has_help_option(options)) {
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002106 if (out_fmt) {
2107 ret = print_block_option_help(out_filename, out_fmt);
2108 goto fail_getopt;
2109 } else {
2110 error_report("Option help requires a format be specified");
2111 goto fail_getopt;
2112 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002113 }
2114
2115 if (s.src_num < 1) {
2116 error_report("Must specify image file name");
2117 goto fail_getopt;
2118 }
2119
2120
Peter Lieven9fd77f92017-04-21 11:11:55 +02002121 /* ret is still -EINVAL until here */
2122 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
2123 if (ret < 0) {
2124 error_report("Invalid source cache option: %s", src_cache);
Peter Lieven2d9187b2017-02-28 13:40:07 +01002125 goto fail_getopt;
2126 }
2127
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002128 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002129 if (quiet) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002130 progress = false;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002131 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002132 qemu_progress_init(progress, 1.0);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002133 qemu_progress_print(0, 100);
2134
Peter Lieven9fd77f92017-04-21 11:11:55 +02002135 s.src = g_new0(BlockBackend *, s.src_num);
2136 s.src_sectors = g_new(int64_t, s.src_num);
balrog926c2d22007-10-31 01:11:44 +00002137
Peter Lieven9fd77f92017-04-21 11:11:55 +02002138 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2139 s.src[bs_i] = img_open(image_opts, argv[optind + bs_i],
Fam Zheng335e9932017-05-03 00:35:39 +08002140 fmt, src_flags, src_writethrough, quiet,
2141 force_share);
Peter Lieven9fd77f92017-04-21 11:11:55 +02002142 if (!s.src[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002143 ret = -1;
2144 goto out;
2145 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002146 s.src_sectors[bs_i] = blk_nb_sectors(s.src[bs_i]);
2147 if (s.src_sectors[bs_i] < 0) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002148 error_report("Could not get size of %s: %s",
Peter Lieven9fd77f92017-04-21 11:11:55 +02002149 argv[optind + bs_i], strerror(-s.src_sectors[bs_i]));
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002150 ret = -1;
2151 goto out;
2152 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002153 s.total_sectors += s.src_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00002154 }
bellardea2384d2004-08-01 21:59:26 +00002155
Wenchao Xiaef806542013-12-04 17:10:57 +08002156 if (sn_opts) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002157 bdrv_snapshot_load_tmp(blk_bs(s.src[0]),
Peter Maydell10d6eda2017-02-10 16:28:24 +00002158 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
2159 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
2160 &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08002161 } else if (snapshot_name != NULL) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002162 if (s.src_num > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02002163 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07002164 ret = -1;
2165 goto out;
2166 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08002167
Peter Lieven9fd77f92017-04-21 11:11:55 +02002168 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s.src[0]), snapshot_name,
2169 &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08002170 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01002171 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002172 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08002173 ret = -1;
2174 goto out;
edison51ef6722010-09-21 19:58:41 -07002175 }
2176
Max Reitz2e024cd2015-02-11 09:58:46 -05002177 if (!skip_create) {
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002178 /* Find driver and parse its options */
2179 drv = bdrv_find_format(out_fmt);
2180 if (!drv) {
2181 error_report("Unknown file format '%s'", out_fmt);
2182 ret = -1;
2183 goto out;
2184 }
2185
2186 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
2187 if (!proto_drv) {
2188 error_report_err(local_err);
2189 ret = -1;
2190 goto out;
2191 }
2192
Max Reitz2e024cd2015-02-11 09:58:46 -05002193 if (!drv->create_opts) {
2194 error_report("Format driver '%s' does not support image creation",
2195 drv->format_name);
2196 ret = -1;
2197 goto out;
2198 }
Max Reitzf75613c2014-12-02 18:32:46 +01002199
Max Reitz2e024cd2015-02-11 09:58:46 -05002200 if (!proto_drv->create_opts) {
2201 error_report("Protocol driver '%s' does not support image creation",
2202 proto_drv->format_name);
2203 ret = -1;
2204 goto out;
2205 }
Max Reitzf75613c2014-12-02 18:32:46 +01002206
Max Reitz2e024cd2015-02-11 09:58:46 -05002207 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2208 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002209
Max Reitz2e024cd2015-02-11 09:58:46 -05002210 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002211 if (options) {
2212 qemu_opts_do_parse(opts, options, NULL, &local_err);
2213 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002214 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002215 ret = -1;
2216 goto out;
2217 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002218 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002219
Peter Lieven9fd77f92017-04-21 11:11:55 +02002220 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, s.total_sectors * 512,
Markus Armbruster39101f22015-02-12 16:46:36 +01002221 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002222 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2223 if (ret < 0) {
2224 goto out;
2225 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002226 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002227
Kevin Wolfa18953f2010-10-14 15:46:04 +02002228 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002229 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002230 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002231 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002232 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002233 s.target_has_backing = (bool) out_baseimg;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002234
Max Reitz48758a82017-04-26 15:46:48 +02002235 if (s.src_num > 1 && out_baseimg) {
2236 error_report("Having a backing file for the target makes no sense when "
2237 "concatenating multiple input images");
2238 ret = -1;
2239 goto out;
2240 }
2241
Kevin Wolfefa84d42009-05-18 16:42:12 +02002242 /* Check if compression is supported */
Peter Lieven9fd77f92017-04-21 11:11:55 +02002243 if (s.compressed) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002244 bool encryption =
2245 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
Daniel P. Berrange0cb8d472017-06-23 17:24:06 +01002246 const char *encryptfmt =
2247 qemu_opt_get(opts, BLOCK_OPT_ENCRYPT_FORMAT);
Chunyan Liu83d05212014-06-05 17:20:51 +08002248 const char *preallocation =
2249 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002250
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002251 if (drv && !drv->bdrv_co_pwritev_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002252 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002253 ret = -1;
2254 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002255 }
2256
Daniel P. Berrange0cb8d472017-06-23 17:24:06 +01002257 if (encryption || encryptfmt) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002258 error_report("Compression and encryption not supported at "
2259 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002260 ret = -1;
2261 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002262 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002263
Chunyan Liu83d05212014-06-05 17:20:51 +08002264 if (preallocation
2265 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002266 {
2267 error_report("Compression and preallocation not supported at "
2268 "the same time");
2269 ret = -1;
2270 goto out;
2271 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002272 }
2273
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002274 if (!skip_create) {
2275 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002276 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002277 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002278 error_reportf_err(local_err, "%s: error while converting %s: ",
2279 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002280 goto out;
bellardea2384d2004-08-01 21:59:26 +00002281 }
2282 }
ths3b46e622007-09-17 08:09:54 +00002283
Peter Lieven9fd77f92017-04-21 11:11:55 +02002284 flags = s.min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002285 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002286 if (ret < 0) {
2287 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002288 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002289 }
2290
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002291 if (skip_create) {
2292 s.target = img_open(tgt_image_opts, out_filename, out_fmt,
2293 flags, writethrough, quiet, false);
2294 } else {
2295 /* TODO ultimately we should allow --target-image-opts
2296 * to be used even when -n is not given.
2297 * That has to wait for bdrv_create to be improved
2298 * to allow filenames in option syntax
2299 */
Daniel P. Berrange29cf9332017-05-15 17:47:12 +01002300 s.target = img_open_new_file(out_filename, opts, out_fmt,
2301 flags, writethrough, quiet, false);
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002302 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002303 if (!s.target) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002304 ret = -1;
2305 goto out;
2306 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002307 out_bs = blk_bs(s.target);
bellardea2384d2004-08-01 21:59:26 +00002308
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002309 if (s.compressed && !out_bs->drv->bdrv_co_pwritev_compressed) {
2310 error_report("Compression not supported for this file format");
2311 ret = -1;
2312 goto out;
2313 }
2314
Eric Blake5def6b82016-06-23 16:37:19 -06002315 /* increase bufsectors from the default 4096 (2M) if opt_transfer
Peter Lievenf2521c92013-11-27 11:07:06 +01002316 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2317 * as maximum. */
Peter Lieven9fd77f92017-04-21 11:11:55 +02002318 s.buf_sectors = MIN(32768,
2319 MAX(s.buf_sectors,
2320 MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
2321 out_bs->bl.pdiscard_alignment >>
2322 BDRV_SECTOR_BITS)));
Peter Lievenf2521c92013-11-27 11:07:06 +01002323
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002324 if (skip_create) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002325 int64_t output_sectors = blk_nb_sectors(s.target);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002326 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002327 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002328 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002329 ret = -1;
2330 goto out;
Peter Lieven9fd77f92017-04-21 11:11:55 +02002331 } else if (output_sectors < s.total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002332 error_report("output file is smaller than input file");
2333 ret = -1;
2334 goto out;
2335 }
2336 }
2337
Peter Lieven24f833c2013-11-27 11:07:07 +01002338 ret = bdrv_get_info(out_bs, &bdi);
2339 if (ret < 0) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002340 if (s.compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002341 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002342 goto out;
2343 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002344 } else {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002345 s.compressed = s.compressed || bdi.needs_compressed_writes;
2346 s.cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
Peter Lieven24f833c2013-11-27 11:07:07 +01002347 }
2348
Peter Lieven9fd77f92017-04-21 11:11:55 +02002349 ret = convert_do_copy(&s);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002350out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002351 if (!ret) {
2352 qemu_progress_print(100, 0);
2353 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002354 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002355 qemu_opts_del(opts);
2356 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002357 qemu_opts_del(sn_opts);
Peter Lieven9fd77f92017-04-21 11:11:55 +02002358 blk_unref(s.target);
2359 if (s.src) {
2360 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2361 blk_unref(s.src[bs_i]);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002362 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002363 g_free(s.src);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002364 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002365 g_free(s.src_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002366fail_getopt:
2367 g_free(options);
2368
Peter Lieven9fd77f92017-04-21 11:11:55 +02002369 return !!ret;
bellardea2384d2004-08-01 21:59:26 +00002370}
2371
bellard57d1a2b2004-08-03 21:15:11 +00002372
bellardfaea38e2006-08-05 21:31:00 +00002373static void dump_snapshots(BlockDriverState *bs)
2374{
2375 QEMUSnapshotInfo *sn_tab, *sn;
2376 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002377
2378 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2379 if (nb_sns <= 0)
2380 return;
2381 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002382 bdrv_snapshot_dump(fprintf, stdout, NULL);
2383 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002384 for(i = 0; i < nb_sns; i++) {
2385 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002386 bdrv_snapshot_dump(fprintf, stdout, sn);
2387 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002388 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002389 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002390}
2391
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002392static void dump_json_image_info_list(ImageInfoList *list)
2393{
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002394 QString *str;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002395 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002396 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002397
2398 visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2399 visit_complete(v, &obj);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002400 str = qobject_to_json_pretty(obj);
2401 assert(str != NULL);
2402 printf("%s\n", qstring_get_str(str));
2403 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002404 visit_free(v);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002405 QDECREF(str);
2406}
2407
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002408static void dump_json_image_info(ImageInfo *info)
2409{
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002410 QString *str;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002411 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002412 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002413
2414 visit_type_ImageInfo(v, NULL, &info, &error_abort);
2415 visit_complete(v, &obj);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002416 str = qobject_to_json_pretty(obj);
2417 assert(str != NULL);
2418 printf("%s\n", qstring_get_str(str));
2419 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002420 visit_free(v);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002421 QDECREF(str);
2422}
2423
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002424static void dump_human_image_info_list(ImageInfoList *list)
2425{
2426 ImageInfoList *elem;
2427 bool delim = false;
2428
2429 for (elem = list; elem; elem = elem->next) {
2430 if (delim) {
2431 printf("\n");
2432 }
2433 delim = true;
2434
Wenchao Xia5b917042013-05-25 11:09:45 +08002435 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002436 }
2437}
2438
2439static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2440{
2441 return strcmp(a, b) == 0;
2442}
2443
2444/**
2445 * Open an image file chain and return an ImageInfoList
2446 *
2447 * @filename: topmost image filename
2448 * @fmt: topmost image format (may be NULL to autodetect)
2449 * @chain: true - enumerate entire backing file chain
2450 * false - only topmost image file
2451 *
2452 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2453 * image file. If there was an error a message will have been printed to
2454 * stderr.
2455 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002456static ImageInfoList *collect_image_info_list(bool image_opts,
2457 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002458 const char *fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08002459 bool chain, bool force_share)
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002460{
2461 ImageInfoList *head = NULL;
2462 ImageInfoList **last = &head;
2463 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002464 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002465
2466 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2467
2468 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002469 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002470 BlockDriverState *bs;
2471 ImageInfo *info;
2472 ImageInfoList *elem;
2473
2474 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2475 error_report("Backing file '%s' creates an infinite loop.",
2476 filename);
2477 goto err;
2478 }
2479 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2480
Max Reitzefaa7c42016-03-16 19:54:38 +01002481 blk = img_open(image_opts, filename, fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08002482 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false,
2483 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002484 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002485 goto err;
2486 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002487 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002488
Wenchao Xia43526ec2013-06-06 12:27:58 +08002489 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002490 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002491 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002492 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002493 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002494 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002495
2496 elem = g_new0(ImageInfoList, 1);
2497 elem->value = info;
2498 *last = elem;
2499 last = &elem->next;
2500
Markus Armbruster26f54e92014-10-07 13:59:04 +02002501 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002502
2503 filename = fmt = NULL;
2504 if (chain) {
2505 if (info->has_full_backing_filename) {
2506 filename = info->full_backing_filename;
2507 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002508 error_report("Could not determine absolute backing filename,"
2509 " but backing filename '%s' present",
2510 info->backing_filename);
2511 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002512 }
2513 if (info->has_backing_filename_format) {
2514 fmt = info->backing_filename_format;
2515 }
2516 }
2517 }
2518 g_hash_table_destroy(filenames);
2519 return head;
2520
2521err:
2522 qapi_free_ImageInfoList(head);
2523 g_hash_table_destroy(filenames);
2524 return NULL;
2525}
2526
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002527static int img_info(int argc, char **argv)
2528{
2529 int c;
2530 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002531 bool chain = false;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002532 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002533 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002534 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002535 bool force_share = false;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002536
bellardea2384d2004-08-01 21:59:26 +00002537 fmt = NULL;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002538 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002539 for(;;) {
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002540 int option_index = 0;
2541 static const struct option long_options[] = {
2542 {"help", no_argument, 0, 'h'},
2543 {"format", required_argument, 0, 'f'},
2544 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002545 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002546 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002547 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002548 {"force-share", no_argument, 0, 'U'},
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002549 {0, 0, 0, 0}
2550 };
Fam Zheng335e9932017-05-03 00:35:39 +08002551 c = getopt_long(argc, argv, ":f:hU",
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002552 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002553 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002554 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002555 }
bellardea2384d2004-08-01 21:59:26 +00002556 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002557 case ':':
2558 missing_argument(argv[optind - 1]);
2559 break;
Jes Sorensenef873942010-12-06 15:25:40 +01002560 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002561 unrecognized_option(argv[optind - 1]);
2562 break;
bellardea2384d2004-08-01 21:59:26 +00002563 case 'h':
2564 help();
2565 break;
2566 case 'f':
2567 fmt = optarg;
2568 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002569 case 'U':
2570 force_share = true;
2571 break;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002572 case OPTION_OUTPUT:
2573 output = optarg;
2574 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002575 case OPTION_BACKING_CHAIN:
2576 chain = true;
2577 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002578 case OPTION_OBJECT: {
2579 QemuOpts *opts;
2580 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2581 optarg, true);
2582 if (!opts) {
2583 return 1;
2584 }
2585 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002586 case OPTION_IMAGE_OPTS:
2587 image_opts = true;
2588 break;
bellardea2384d2004-08-01 21:59:26 +00002589 }
2590 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002591 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002592 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002593 }
bellardea2384d2004-08-01 21:59:26 +00002594 filename = argv[optind++];
2595
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002596 if (output && !strcmp(output, "json")) {
2597 output_format = OFORMAT_JSON;
2598 } else if (output && !strcmp(output, "human")) {
2599 output_format = OFORMAT_HUMAN;
2600 } else if (output) {
2601 error_report("--output must be used with human or json as argument.");
2602 return 1;
2603 }
2604
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002605 if (qemu_opts_foreach(&qemu_object_opts,
2606 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002607 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002608 return 1;
2609 }
2610
Fam Zheng335e9932017-05-03 00:35:39 +08002611 list = collect_image_info_list(image_opts, filename, fmt, chain,
2612 force_share);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002613 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002614 return 1;
2615 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002616
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002617 switch (output_format) {
2618 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002619 dump_human_image_info_list(list);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002620 break;
2621 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002622 if (chain) {
2623 dump_json_image_info_list(list);
2624 } else {
2625 dump_json_image_info(list->value);
2626 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002627 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002628 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002629
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002630 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002631 return 0;
2632}
2633
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002634static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2635 MapEntry *next)
2636{
2637 switch (output_format) {
2638 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002639 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002640 error_report("File contains external, encrypted or compressed clusters.");
2641 exit(1);
2642 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002643 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002644 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002645 e->start, e->length,
2646 e->has_offset ? e->offset : 0,
2647 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002648 }
2649 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2650 * Modify the flags here to allow more coalescing.
2651 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002652 if (next && (!next->data || next->zero)) {
2653 next->data = false;
2654 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002655 }
2656 break;
2657 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002658 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2659 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002660 (e->start == 0 ? "[" : ",\n"),
2661 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002662 e->zero ? "true" : "false",
2663 e->data ? "true" : "false");
2664 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002665 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002666 }
2667 putchar('}');
2668
2669 if (!next) {
2670 printf("]\n");
2671 }
2672 break;
2673 }
2674}
2675
2676static int get_block_status(BlockDriverState *bs, int64_t sector_num,
2677 int nb_sectors, MapEntry *e)
2678{
2679 int64_t ret;
2680 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002681 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002682 bool has_offset;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002683
2684 /* As an optimization, we could cache the current range of unallocated
2685 * clusters in each file of the chain, and avoid querying the same
2686 * range repeatedly.
2687 */
2688
2689 depth = 0;
2690 for (;;) {
Fam Zheng67a0fd22016-01-26 11:58:48 +08002691 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors,
2692 &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002693 if (ret < 0) {
2694 return ret;
2695 }
2696 assert(nb_sectors);
2697 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2698 break;
2699 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002700 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002701 if (bs == NULL) {
2702 ret = 0;
2703 break;
2704 }
2705
2706 depth++;
2707 }
2708
John Snow28756452016-02-05 13:12:33 -05002709 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2710
2711 *e = (MapEntry) {
2712 .start = sector_num * BDRV_SECTOR_SIZE,
2713 .length = nb_sectors * BDRV_SECTOR_SIZE,
2714 .data = !!(ret & BDRV_BLOCK_DATA),
2715 .zero = !!(ret & BDRV_BLOCK_ZERO),
2716 .offset = ret & BDRV_BLOCK_OFFSET_MASK,
2717 .has_offset = has_offset,
2718 .depth = depth,
2719 .has_filename = file && has_offset,
2720 .filename = file && has_offset ? file->filename : NULL,
2721 };
2722
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002723 return 0;
2724}
2725
Fam Zheng16b0d552016-01-26 11:59:02 +08002726static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2727{
2728 if (curr->length == 0) {
2729 return false;
2730 }
2731 if (curr->zero != next->zero ||
2732 curr->data != next->data ||
2733 curr->depth != next->depth ||
2734 curr->has_filename != next->has_filename ||
2735 curr->has_offset != next->has_offset) {
2736 return false;
2737 }
2738 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2739 return false;
2740 }
2741 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2742 return false;
2743 }
2744 return true;
2745}
2746
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002747static int img_map(int argc, char **argv)
2748{
2749 int c;
2750 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002751 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002752 BlockDriverState *bs;
2753 const char *filename, *fmt, *output;
2754 int64_t length;
2755 MapEntry curr = { .length = 0 }, next;
2756 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002757 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002758 bool force_share = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002759
2760 fmt = NULL;
2761 output = NULL;
2762 for (;;) {
2763 int option_index = 0;
2764 static const struct option long_options[] = {
2765 {"help", no_argument, 0, 'h'},
2766 {"format", required_argument, 0, 'f'},
2767 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002768 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002769 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002770 {"force-share", no_argument, 0, 'U'},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002771 {0, 0, 0, 0}
2772 };
Fam Zheng335e9932017-05-03 00:35:39 +08002773 c = getopt_long(argc, argv, ":f:hU",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002774 long_options, &option_index);
2775 if (c == -1) {
2776 break;
2777 }
2778 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002779 case ':':
2780 missing_argument(argv[optind - 1]);
2781 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002782 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002783 unrecognized_option(argv[optind - 1]);
2784 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002785 case 'h':
2786 help();
2787 break;
2788 case 'f':
2789 fmt = optarg;
2790 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002791 case 'U':
2792 force_share = true;
2793 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002794 case OPTION_OUTPUT:
2795 output = optarg;
2796 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002797 case OPTION_OBJECT: {
2798 QemuOpts *opts;
2799 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2800 optarg, true);
2801 if (!opts) {
2802 return 1;
2803 }
2804 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002805 case OPTION_IMAGE_OPTS:
2806 image_opts = true;
2807 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002808 }
2809 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002810 if (optind != argc - 1) {
2811 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002812 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002813 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002814
2815 if (output && !strcmp(output, "json")) {
2816 output_format = OFORMAT_JSON;
2817 } else if (output && !strcmp(output, "human")) {
2818 output_format = OFORMAT_HUMAN;
2819 } else if (output) {
2820 error_report("--output must be used with human or json as argument.");
2821 return 1;
2822 }
2823
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002824 if (qemu_opts_foreach(&qemu_object_opts,
2825 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002826 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002827 return 1;
2828 }
2829
Fam Zheng335e9932017-05-03 00:35:39 +08002830 blk = img_open(image_opts, filename, fmt, 0, false, false, force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002831 if (!blk) {
2832 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002833 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002834 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002835
2836 if (output_format == OFORMAT_HUMAN) {
2837 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2838 }
2839
Max Reitzf1d3cd72015-02-05 13:58:18 -05002840 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002841 while (curr.start + curr.length < length) {
2842 int64_t nsectors_left;
2843 int64_t sector_num;
2844 int n;
2845
2846 sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS;
2847
2848 /* Probe up to 1 GiB at a time. */
2849 nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num;
2850 n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left);
2851 ret = get_block_status(bs, sector_num, n, &next);
2852
2853 if (ret < 0) {
2854 error_report("Could not read file metadata: %s", strerror(-ret));
2855 goto out;
2856 }
2857
Fam Zheng16b0d552016-01-26 11:59:02 +08002858 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002859 curr.length += next.length;
2860 continue;
2861 }
2862
2863 if (curr.length > 0) {
2864 dump_map_entry(output_format, &curr, &next);
2865 }
2866 curr = next;
2867 }
2868
2869 dump_map_entry(output_format, &curr, NULL);
2870
2871out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002872 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002873 return ret < 0;
2874}
2875
aliguorif7b4a942009-01-07 17:40:15 +00002876#define SNAPSHOT_LIST 1
2877#define SNAPSHOT_CREATE 2
2878#define SNAPSHOT_APPLY 3
2879#define SNAPSHOT_DELETE 4
2880
Stuart Brady153859b2009-06-07 00:42:17 +01002881static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002882{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002883 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002884 BlockDriverState *bs;
2885 QEMUSnapshotInfo sn;
2886 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002887 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002888 int action = 0;
2889 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002890 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002891 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002892 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002893 bool force_share = false;
aliguorif7b4a942009-01-07 17:40:15 +00002894
Kevin Wolfce099542016-03-15 13:01:04 +01002895 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002896 /* Parse commandline parameters */
2897 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002898 static const struct option long_options[] = {
2899 {"help", no_argument, 0, 'h'},
2900 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002901 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002902 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002903 {0, 0, 0, 0}
2904 };
Fam Zheng335e9932017-05-03 00:35:39 +08002905 c = getopt_long(argc, argv, ":la:c:d:hqU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002906 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002907 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002908 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002909 }
aliguorif7b4a942009-01-07 17:40:15 +00002910 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002911 case ':':
2912 missing_argument(argv[optind - 1]);
2913 break;
Jes Sorensenef873942010-12-06 15:25:40 +01002914 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002915 unrecognized_option(argv[optind - 1]);
2916 break;
aliguorif7b4a942009-01-07 17:40:15 +00002917 case 'h':
2918 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002919 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002920 case 'l':
2921 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002922 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002923 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002924 }
2925 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002926 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002927 break;
2928 case 'a':
2929 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002930 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002931 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002932 }
2933 action = SNAPSHOT_APPLY;
2934 snapshot_name = optarg;
2935 break;
2936 case 'c':
2937 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002938 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002939 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002940 }
2941 action = SNAPSHOT_CREATE;
2942 snapshot_name = optarg;
2943 break;
2944 case 'd':
2945 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002946 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002947 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002948 }
2949 action = SNAPSHOT_DELETE;
2950 snapshot_name = optarg;
2951 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002952 case 'q':
2953 quiet = true;
2954 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002955 case 'U':
2956 force_share = true;
2957 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002958 case OPTION_OBJECT: {
2959 QemuOpts *opts;
2960 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2961 optarg, true);
2962 if (!opts) {
2963 return 1;
2964 }
2965 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002966 case OPTION_IMAGE_OPTS:
2967 image_opts = true;
2968 break;
aliguorif7b4a942009-01-07 17:40:15 +00002969 }
2970 }
2971
Kevin Wolffc11eb22013-08-05 10:53:04 +02002972 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002973 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002974 }
aliguorif7b4a942009-01-07 17:40:15 +00002975 filename = argv[optind++];
2976
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002977 if (qemu_opts_foreach(&qemu_object_opts,
2978 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002979 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002980 return 1;
2981 }
2982
aliguorif7b4a942009-01-07 17:40:15 +00002983 /* Open the image */
Fam Zheng335e9932017-05-03 00:35:39 +08002984 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet,
2985 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002986 if (!blk) {
2987 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002988 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002989 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002990
2991 /* Perform the requested action */
2992 switch(action) {
2993 case SNAPSHOT_LIST:
2994 dump_snapshots(bs);
2995 break;
2996
2997 case SNAPSHOT_CREATE:
2998 memset(&sn, 0, sizeof(sn));
2999 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
3000
3001 qemu_gettimeofday(&tv);
3002 sn.date_sec = tv.tv_sec;
3003 sn.date_nsec = tv.tv_usec * 1000;
3004
3005 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003006 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003007 error_report("Could not create snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00003008 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003009 }
aliguorif7b4a942009-01-07 17:40:15 +00003010 break;
3011
3012 case SNAPSHOT_APPLY:
3013 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003014 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003015 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00003016 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003017 }
aliguorif7b4a942009-01-07 17:40:15 +00003018 break;
3019
3020 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08003021 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003022 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003023 error_reportf_err(err, "Could not delete snapshot '%s': ",
3024 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08003025 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003026 }
aliguorif7b4a942009-01-07 17:40:15 +00003027 break;
3028 }
3029
3030 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02003031 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003032 if (ret) {
3033 return 1;
3034 }
Stuart Brady153859b2009-06-07 00:42:17 +01003035 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00003036}
3037
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003038static int img_rebase(int argc, char **argv)
3039{
Markus Armbruster26f54e92014-10-07 13:59:04 +02003040 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01003041 uint8_t *buf_old = NULL;
3042 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05003043 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003044 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02003045 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
3046 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01003047 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003048 int unsafe = 0;
Fam Zheng335e9932017-05-03 00:35:39 +08003049 bool force_share = false;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003050 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003051 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003052 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003053 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003054
3055 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01003056 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003057 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02003058 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003059 out_baseimg = NULL;
3060 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003061 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003062 static const struct option long_options[] = {
3063 {"help", no_argument, 0, 'h'},
3064 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003065 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08003066 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003067 {0, 0, 0, 0}
3068 };
Fam Zheng335e9932017-05-03 00:35:39 +08003069 c = getopt_long(argc, argv, ":hf:F:b:upt:T:qU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003070 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003071 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003072 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003073 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003074 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003075 case ':':
3076 missing_argument(argv[optind - 1]);
3077 break;
Jes Sorensenef873942010-12-06 15:25:40 +01003078 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003079 unrecognized_option(argv[optind - 1]);
3080 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003081 case 'h':
3082 help();
3083 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01003084 case 'f':
3085 fmt = optarg;
3086 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003087 case 'F':
3088 out_basefmt = optarg;
3089 break;
3090 case 'b':
3091 out_baseimg = optarg;
3092 break;
3093 case 'u':
3094 unsafe = 1;
3095 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003096 case 'p':
3097 progress = 1;
3098 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003099 case 't':
3100 cache = optarg;
3101 break;
Max Reitz40055952014-07-22 22:58:42 +02003102 case 'T':
3103 src_cache = optarg;
3104 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003105 case 'q':
3106 quiet = true;
3107 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003108 case OPTION_OBJECT: {
3109 QemuOpts *opts;
3110 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3111 optarg, true);
3112 if (!opts) {
3113 return 1;
3114 }
3115 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003116 case OPTION_IMAGE_OPTS:
3117 image_opts = true;
3118 break;
Fam Zheng335e9932017-05-03 00:35:39 +08003119 case 'U':
3120 force_share = true;
3121 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003122 }
3123 }
3124
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003125 if (quiet) {
3126 progress = 0;
3127 }
3128
Fam Zhengac1307a2014-04-22 13:36:11 +08003129 if (optind != argc - 1) {
3130 error_exit("Expecting one image file name");
3131 }
3132 if (!unsafe && !out_baseimg) {
3133 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003134 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003135 filename = argv[optind++];
3136
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003137 if (qemu_opts_foreach(&qemu_object_opts,
3138 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003139 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003140 return 1;
3141 }
3142
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003143 qemu_progress_init(progress, 2.0);
3144 qemu_progress_print(0, 100);
3145
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003146 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01003147 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003148 if (ret < 0) {
3149 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003150 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003151 }
3152
Kevin Wolfce099542016-03-15 13:01:04 +01003153 src_flags = 0;
3154 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02003155 if (ret < 0) {
3156 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003157 goto out;
Max Reitz40055952014-07-22 22:58:42 +02003158 }
3159
Kevin Wolfce099542016-03-15 13:01:04 +01003160 /* The source files are opened read-only, don't care about WCE */
3161 assert((src_flags & BDRV_O_RDWR) == 0);
3162 (void) src_writethrough;
3163
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003164 /*
3165 * Open the images.
3166 *
3167 * Ignore the old backing file for unsafe rebase in case we want to correct
3168 * the reference to a renamed or moved backing file.
3169 */
Fam Zheng335e9932017-05-03 00:35:39 +08003170 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3171 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003172 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003173 ret = -1;
3174 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003175 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003176 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003177
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003178 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05003179 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003180 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003181 ret = -1;
3182 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003183 }
3184 }
3185
3186 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003187 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003188 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05003189 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003190
Max Reitz644483d2015-02-05 13:58:17 -05003191 if (bs->backing_format[0] != '\0') {
3192 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -05003193 qdict_put_str(options, "driver", bs->backing_format);
Max Reitz644483d2015-02-05 13:58:17 -05003194 }
3195
Fam Zheng335e9932017-05-03 00:35:39 +08003196 if (force_share) {
3197 if (!options) {
3198 options = qdict_new();
3199 }
Eric Blake579cf1d2017-05-15 14:54:39 -05003200 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Fam Zheng335e9932017-05-03 00:35:39 +08003201 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003202 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01003203 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05003204 options, src_flags, &local_err);
3205 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003206 error_reportf_err(local_err,
3207 "Could not open old backing file '%s': ",
3208 backing_name);
Xu Tiane84a0dd2016-10-09 17:17:27 +08003209 ret = -1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003210 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003211 }
Max Reitz644483d2015-02-05 13:58:17 -05003212
Alex Bligha6166732012-10-16 13:46:18 +01003213 if (out_baseimg[0]) {
Fam Zheng335e9932017-05-03 00:35:39 +08003214 options = qdict_new();
Max Reitz644483d2015-02-05 13:58:17 -05003215 if (out_basefmt) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003216 qdict_put_str(options, "driver", out_basefmt);
Fam Zheng335e9932017-05-03 00:35:39 +08003217 }
3218 if (force_share) {
3219 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Max Reitz644483d2015-02-05 13:58:17 -05003220 }
3221
Max Reitzefaa7c42016-03-16 19:54:38 +01003222 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05003223 options, src_flags, &local_err);
3224 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003225 error_reportf_err(local_err,
3226 "Could not open new backing file '%s': ",
3227 out_baseimg);
Xu Tiane84a0dd2016-10-09 17:17:27 +08003228 ret = -1;
Alex Bligha6166732012-10-16 13:46:18 +01003229 goto out;
3230 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003231 }
3232 }
3233
3234 /*
3235 * Check each unallocated cluster in the COW file. If it is unallocated,
3236 * accesses go to the backing file. We must therefore compare this cluster
3237 * in the old and new backing file, and if they differ we need to copy it
3238 * from the old backing file into the COW file.
3239 *
3240 * If qemu-img crashes during this step, no harm is done. The content of
3241 * the image is the same as the original one at any time.
3242 */
3243 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003244 int64_t num_sectors;
3245 int64_t old_backing_num_sectors;
3246 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003247 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02003248 int n;
Eric Blaked6a644b2017-07-07 07:44:57 -05003249 int64_t count;
Kevin Wolf1f710492012-10-12 14:29:18 +02003250 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08003251
Max Reitzf1d3cd72015-02-05 13:58:18 -05003252 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
3253 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003254
Max Reitzf1d3cd72015-02-05 13:58:18 -05003255 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003256 if (num_sectors < 0) {
3257 error_report("Could not get size of '%s': %s",
3258 filename, strerror(-num_sectors));
3259 ret = -1;
3260 goto out;
3261 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003262 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003263 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003264 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003265
3266 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3267 error_report("Could not get size of '%s': %s",
3268 backing_name, strerror(-old_backing_num_sectors));
3269 ret = -1;
3270 goto out;
3271 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003272 if (blk_new_backing) {
3273 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003274 if (new_backing_num_sectors < 0) {
3275 error_report("Could not get size of '%s': %s",
3276 out_baseimg, strerror(-new_backing_num_sectors));
3277 ret = -1;
3278 goto out;
3279 }
Alex Bligha6166732012-10-16 13:46:18 +01003280 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003281
Kevin Wolf1f710492012-10-12 14:29:18 +02003282 if (num_sectors != 0) {
3283 local_progress = (float)100 /
3284 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3285 }
3286
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003287 for (sector = 0; sector < num_sectors; sector += n) {
3288
3289 /* How many sectors can we handle with the next read? */
3290 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3291 n = (IO_BUF_SIZE / 512);
3292 } else {
3293 n = num_sectors - sector;
3294 }
3295
3296 /* If the cluster is allocated, we don't need to take action */
Eric Blaked6a644b2017-07-07 07:44:57 -05003297 ret = bdrv_is_allocated(bs, sector << BDRV_SECTOR_BITS,
3298 n << BDRV_SECTOR_BITS, &count);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003299 if (ret < 0) {
3300 error_report("error while reading image metadata: %s",
3301 strerror(-ret));
3302 goto out;
3303 }
Eric Blaked6a644b2017-07-07 07:44:57 -05003304 /* TODO relax this once bdrv_is_allocated does not enforce
3305 * sector alignment */
3306 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
3307 n = count >> BDRV_SECTOR_BITS;
Kevin Wolfcc60e322010-04-29 14:47:48 +02003308 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003309 continue;
3310 }
3311
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003312 /*
3313 * Read old and new backing file and take into consideration that
3314 * backing files may be smaller than the COW image.
3315 */
3316 if (sector >= old_backing_num_sectors) {
3317 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3318 } else {
3319 if (sector + n > old_backing_num_sectors) {
3320 n = old_backing_num_sectors - sector;
3321 }
3322
Eric Blake91669202016-05-06 10:26:43 -06003323 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3324 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003325 if (ret < 0) {
3326 error_report("error while reading from old backing file");
3327 goto out;
3328 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003329 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003330
Max Reitzf1d3cd72015-02-05 13:58:18 -05003331 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003332 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3333 } else {
3334 if (sector + n > new_backing_num_sectors) {
3335 n = new_backing_num_sectors - sector;
3336 }
3337
Eric Blake91669202016-05-06 10:26:43 -06003338 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3339 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003340 if (ret < 0) {
3341 error_report("error while reading from new backing file");
3342 goto out;
3343 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003344 }
3345
3346 /* If they differ, we need to write to the COW file */
3347 uint64_t written = 0;
3348
3349 while (written < n) {
3350 int pnum;
3351
3352 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003353 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003354 {
Eric Blake91669202016-05-06 10:26:43 -06003355 ret = blk_pwrite(blk,
3356 (sector + written) << BDRV_SECTOR_BITS,
3357 buf_old + written * 512,
3358 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003359 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003360 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003361 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003362 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003363 }
3364 }
3365
3366 written += pnum;
3367 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003368 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003369 }
3370 }
3371
3372 /*
3373 * Change the backing file. All clusters that are different from the old
3374 * backing file are overwritten in the COW file now, so the visible content
3375 * doesn't change when we switch the backing file.
3376 */
Alex Bligha6166732012-10-16 13:46:18 +01003377 if (out_baseimg && *out_baseimg) {
3378 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3379 } else {
3380 ret = bdrv_change_backing_file(bs, NULL, NULL);
3381 }
3382
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003383 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003384 error_report("Could not change the backing file to '%s': No "
3385 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003386 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003387 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003388 out_baseimg, strerror(-ret));
3389 }
3390
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003391 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003392 /*
3393 * TODO At this point it is possible to check if any clusters that are
3394 * allocated in the COW file are the same in the backing file. If so, they
3395 * could be dropped from the COW file. Don't do this before switching the
3396 * backing file, in case of a crash this would lead to corruption.
3397 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003398out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003399 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003400 /* Cleanup */
3401 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003402 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003403 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003404 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003405 qemu_vfree(buf_old);
3406 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003407
Markus Armbruster26f54e92014-10-07 13:59:04 +02003408 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003409 if (ret) {
3410 return 1;
3411 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003412 return 0;
3413}
3414
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003415static int img_resize(int argc, char **argv)
3416{
Markus Armbruster6750e792015-02-12 17:43:08 +01003417 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003418 int c, ret, relative;
3419 const char *filename, *fmt, *size;
Max Reitzdc5f6902017-06-13 22:20:55 +02003420 int64_t n, total_size, current_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003421 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003422 BlockBackend *blk = NULL;
Max Reitzdc5f6902017-06-13 22:20:55 +02003423 PreallocMode prealloc = PREALLOC_MODE_OFF;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003424 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003425
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003426 static QemuOptsList resize_options = {
3427 .name = "resize_options",
3428 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3429 .desc = {
3430 {
3431 .name = BLOCK_OPT_SIZE,
3432 .type = QEMU_OPT_SIZE,
3433 .help = "Virtual disk size"
3434 }, {
3435 /* end of list */
3436 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003437 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003438 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003439 bool image_opts = false;
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003440 bool shrink = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003441
Kevin Wolfe80fec72011-04-29 10:58:12 +02003442 /* Remove size from argv manually so that negative numbers are not treated
3443 * as options by getopt. */
3444 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003445 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003446 return 1;
3447 }
3448
3449 size = argv[--argc];
3450
3451 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003452 fmt = NULL;
3453 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003454 static const struct option long_options[] = {
3455 {"help", no_argument, 0, 'h'},
3456 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003457 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Max Reitzdc5f6902017-06-13 22:20:55 +02003458 {"preallocation", required_argument, 0, OPTION_PREALLOCATION},
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003459 {"shrink", no_argument, 0, OPTION_SHRINK},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003460 {0, 0, 0, 0}
3461 };
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003462 c = getopt_long(argc, argv, ":f:hq",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003463 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003464 if (c == -1) {
3465 break;
3466 }
3467 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003468 case ':':
3469 missing_argument(argv[optind - 1]);
3470 break;
Jes Sorensenef873942010-12-06 15:25:40 +01003471 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003472 unrecognized_option(argv[optind - 1]);
3473 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003474 case 'h':
3475 help();
3476 break;
3477 case 'f':
3478 fmt = optarg;
3479 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003480 case 'q':
3481 quiet = true;
3482 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003483 case OPTION_OBJECT: {
3484 QemuOpts *opts;
3485 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3486 optarg, true);
3487 if (!opts) {
3488 return 1;
3489 }
3490 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003491 case OPTION_IMAGE_OPTS:
3492 image_opts = true;
3493 break;
Max Reitzdc5f6902017-06-13 22:20:55 +02003494 case OPTION_PREALLOCATION:
Marc-AndrƩ Lureauf7abe0e2017-08-24 10:46:10 +02003495 prealloc = qapi_enum_parse(&PreallocMode_lookup, optarg,
Markus Armbruster06c60b62017-08-24 10:45:57 +02003496 PREALLOC_MODE__MAX, NULL);
Max Reitzdc5f6902017-06-13 22:20:55 +02003497 if (prealloc == PREALLOC_MODE__MAX) {
3498 error_report("Invalid preallocation mode '%s'", optarg);
3499 return 1;
3500 }
3501 break;
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003502 case OPTION_SHRINK:
3503 shrink = true;
3504 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003505 }
3506 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003507 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003508 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003509 }
3510 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003511
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003512 if (qemu_opts_foreach(&qemu_object_opts,
3513 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003514 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003515 return 1;
3516 }
3517
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003518 /* Choose grow, shrink, or absolute resize mode */
3519 switch (size[0]) {
3520 case '+':
3521 relative = 1;
3522 size++;
3523 break;
3524 case '-':
3525 relative = -1;
3526 size++;
3527 break;
3528 default:
3529 relative = 0;
3530 break;
3531 }
3532
3533 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003534 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003535 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003536 if (err) {
3537 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003538 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003539 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003540 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003541 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003542 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3543 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003544
Max Reitzefaa7c42016-03-16 19:54:38 +01003545 blk = img_open(image_opts, filename, fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08003546 BDRV_O_RDWR | BDRV_O_RESIZE, false, quiet,
3547 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003548 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003549 ret = -1;
3550 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003551 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003552
Max Reitzdc5f6902017-06-13 22:20:55 +02003553 current_size = blk_getlength(blk);
3554 if (current_size < 0) {
3555 error_report("Failed to inquire current image length: %s",
3556 strerror(-current_size));
3557 ret = -1;
3558 goto out;
3559 }
3560
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003561 if (relative) {
Max Reitzdc5f6902017-06-13 22:20:55 +02003562 total_size = current_size + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003563 } else {
3564 total_size = n;
3565 }
3566 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003567 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003568 ret = -1;
3569 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003570 }
3571
Max Reitzdc5f6902017-06-13 22:20:55 +02003572 if (total_size <= current_size && prealloc != PREALLOC_MODE_OFF) {
3573 error_report("Preallocation can only be used for growing images");
3574 ret = -1;
3575 goto out;
3576 }
3577
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003578 if (total_size < current_size && !shrink) {
3579 warn_report("Shrinking an image will delete all data beyond the "
3580 "shrunken image's end. Before performing such an "
3581 "operation, make sure there is no important data there.");
3582
3583 if (g_strcmp0(bdrv_get_format_name(blk_bs(blk)), "raw") != 0) {
3584 error_report(
3585 "Use the --shrink option to perform a shrink operation.");
3586 ret = -1;
3587 goto out;
3588 } else {
3589 warn_report("Using the --shrink option will suppress this message. "
3590 "Note that future versions of qemu-img may refuse to "
3591 "shrink images without this option.");
3592 }
3593 }
3594
Max Reitzdc5f6902017-06-13 22:20:55 +02003595 ret = blk_truncate(blk, total_size, prealloc, &err);
Max Reitzed3d2ec2017-03-28 22:51:27 +02003596 if (!ret) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003597 qprintf(quiet, "Image resized.\n");
Max Reitzed3d2ec2017-03-28 22:51:27 +02003598 } else {
3599 error_report_err(err);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003600 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003601out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003602 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003603 if (ret) {
3604 return 1;
3605 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003606 return 0;
3607}
3608
Max Reitz76a3a342014-10-27 11:12:51 +01003609static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003610 int64_t offset, int64_t total_work_size,
3611 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003612{
3613 qemu_progress_print(100.f * offset / total_work_size, 0);
3614}
3615
Max Reitz6f176b42013-09-03 10:09:50 +02003616static int img_amend(int argc, char **argv)
3617{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003618 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003619 int c, ret = 0;
3620 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003621 QemuOptsList *create_opts = NULL;
3622 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003623 const char *fmt = NULL, *filename, *cache;
3624 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003625 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003626 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003627 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003628 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003629 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003630
Max Reitzbd39e6e2014-07-22 22:58:43 +02003631 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003632 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003633 static const struct option long_options[] = {
3634 {"help", no_argument, 0, 'h'},
3635 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003636 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003637 {0, 0, 0, 0}
3638 };
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003639 c = getopt_long(argc, argv, ":ho:f:t:pq",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003640 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003641 if (c == -1) {
3642 break;
3643 }
3644
3645 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003646 case ':':
3647 missing_argument(argv[optind - 1]);
3648 break;
Stefan Hajnoczif7077622017-03-17 18:45:40 +08003649 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003650 unrecognized_option(argv[optind - 1]);
3651 break;
3652 case 'h':
Stefan Hajnoczif7077622017-03-17 18:45:40 +08003653 help();
3654 break;
3655 case 'o':
3656 if (!is_valid_option_list(optarg)) {
3657 error_report("Invalid option list: %s", optarg);
3658 ret = -1;
3659 goto out_no_progress;
3660 }
3661 if (!options) {
3662 options = g_strdup(optarg);
3663 } else {
3664 char *old_options = options;
3665 options = g_strdup_printf("%s,%s", options, optarg);
3666 g_free(old_options);
3667 }
3668 break;
3669 case 'f':
3670 fmt = optarg;
3671 break;
3672 case 't':
3673 cache = optarg;
3674 break;
3675 case 'p':
3676 progress = true;
3677 break;
3678 case 'q':
3679 quiet = true;
3680 break;
3681 case OPTION_OBJECT:
3682 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3683 optarg, true);
3684 if (!opts) {
3685 ret = -1;
3686 goto out_no_progress;
3687 }
3688 break;
3689 case OPTION_IMAGE_OPTS:
3690 image_opts = true;
3691 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003692 }
3693 }
3694
Max Reitz6f176b42013-09-03 10:09:50 +02003695 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003696 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003697 }
3698
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003699 if (qemu_opts_foreach(&qemu_object_opts,
3700 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003701 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003702 ret = -1;
3703 goto out_no_progress;
3704 }
3705
Max Reitz76a3a342014-10-27 11:12:51 +01003706 if (quiet) {
3707 progress = false;
3708 }
3709 qemu_progress_init(progress, 1.0);
3710
Kevin Wolfa283cb62014-02-21 16:24:07 +01003711 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3712 if (fmt && has_help_option(options)) {
3713 /* If a format is explicitly specified (and possibly no filename is
3714 * given), print option help here */
3715 ret = print_block_option_help(filename, fmt);
3716 goto out;
3717 }
3718
3719 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003720 error_report("Expecting one image file name");
3721 ret = -1;
3722 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003723 }
Max Reitz6f176b42013-09-03 10:09:50 +02003724
Kevin Wolfce099542016-03-15 13:01:04 +01003725 flags = BDRV_O_RDWR;
3726 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003727 if (ret < 0) {
3728 error_report("Invalid cache option: %s", cache);
3729 goto out;
3730 }
3731
Fam Zheng335e9932017-05-03 00:35:39 +08003732 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3733 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003734 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003735 ret = -1;
3736 goto out;
3737 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003738 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003739
3740 fmt = bs->drv->format_name;
3741
Kevin Wolf626f84f2014-02-21 16:24:06 +01003742 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003743 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003744 ret = print_block_option_help(filename, fmt);
3745 goto out;
3746 }
3747
Max Reitzb2439d22014-12-02 18:32:47 +01003748 if (!bs->drv->create_opts) {
3749 error_report("Format driver '%s' does not support any options to amend",
3750 fmt);
3751 ret = -1;
3752 goto out;
3753 }
3754
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003755 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003756 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Paolo Bonziniece90862017-01-04 15:56:24 +01003757 qemu_opts_do_parse(opts, options, NULL, &err);
3758 if (err) {
3759 error_report_err(err);
3760 ret = -1;
3761 goto out;
Max Reitz6f176b42013-09-03 10:09:50 +02003762 }
3763
Max Reitz76a3a342014-10-27 11:12:51 +01003764 /* In case the driver does not call amend_status_cb() */
3765 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003766 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003767 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003768 if (ret < 0) {
3769 error_report("Error while amending options: %s", strerror(-ret));
3770 goto out;
3771 }
3772
3773out:
Max Reitz76a3a342014-10-27 11:12:51 +01003774 qemu_progress_end();
3775
Max Reitze814dff2015-08-20 16:00:38 -07003776out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003777 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003778 qemu_opts_del(opts);
3779 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003780 g_free(options);
3781
Max Reitz6f176b42013-09-03 10:09:50 +02003782 if (ret) {
3783 return 1;
3784 }
3785 return 0;
3786}
3787
Kevin Wolfb6133b82014-08-05 14:17:13 +02003788typedef struct BenchData {
3789 BlockBackend *blk;
3790 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003791 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003792 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003793 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003794 int nrreq;
3795 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003796 int flush_interval;
3797 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003798 uint8_t *buf;
3799 QEMUIOVector *qiov;
3800
3801 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003802 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003803 uint64_t offset;
3804} BenchData;
3805
Kevin Wolf55d539c2016-06-03 13:59:41 +02003806static void bench_undrained_flush_cb(void *opaque, int ret)
3807{
3808 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003809 error_report("Failed flush request: %s", strerror(-ret));
Kevin Wolf55d539c2016-06-03 13:59:41 +02003810 exit(EXIT_FAILURE);
3811 }
3812}
3813
Kevin Wolfb6133b82014-08-05 14:17:13 +02003814static void bench_cb(void *opaque, int ret)
3815{
3816 BenchData *b = opaque;
3817 BlockAIOCB *acb;
3818
3819 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003820 error_report("Failed request: %s", strerror(-ret));
Kevin Wolfb6133b82014-08-05 14:17:13 +02003821 exit(EXIT_FAILURE);
3822 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003823
3824 if (b->in_flush) {
3825 /* Just finished a flush with drained queue: Start next requests */
3826 assert(b->in_flight == 0);
3827 b->in_flush = false;
3828 } else if (b->in_flight > 0) {
3829 int remaining = b->n - b->in_flight;
3830
Kevin Wolfb6133b82014-08-05 14:17:13 +02003831 b->n--;
3832 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003833
3834 /* Time for flush? Drain queue if requested, then flush */
3835 if (b->flush_interval && remaining % b->flush_interval == 0) {
3836 if (!b->in_flight || !b->drain_on_flush) {
3837 BlockCompletionFunc *cb;
3838
3839 if (b->drain_on_flush) {
3840 b->in_flush = true;
3841 cb = bench_cb;
3842 } else {
3843 cb = bench_undrained_flush_cb;
3844 }
3845
3846 acb = blk_aio_flush(b->blk, cb, b);
3847 if (!acb) {
3848 error_report("Failed to issue flush request");
3849 exit(EXIT_FAILURE);
3850 }
3851 }
3852 if (b->drain_on_flush) {
3853 return;
3854 }
3855 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003856 }
3857
3858 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003859 int64_t offset = b->offset;
3860 /* blk_aio_* might look for completed I/Os and kick bench_cb
3861 * again, so make sure this operation is counted by in_flight
3862 * and b->offset is ready for the next submission.
3863 */
3864 b->in_flight++;
3865 b->offset += b->step;
3866 b->offset %= b->image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003867 if (b->write) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003868 acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003869 } else {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003870 acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003871 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003872 if (!acb) {
3873 error_report("Failed to issue request");
3874 exit(EXIT_FAILURE);
3875 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003876 }
3877}
3878
3879static int img_bench(int argc, char **argv)
3880{
3881 int c, ret = 0;
3882 const char *fmt = NULL, *filename;
3883 bool quiet = false;
3884 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003885 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003886 int count = 75000;
3887 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003888 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003889 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003890 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003891 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003892 int flush_interval = 0;
3893 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003894 int64_t image_size;
3895 BlockBackend *blk = NULL;
3896 BenchData data = {};
3897 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003898 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003899 struct timeval t1, t2;
3900 int i;
Fam Zheng335e9932017-05-03 00:35:39 +08003901 bool force_share = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003902
3903 for (;;) {
3904 static const struct option long_options[] = {
3905 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003906 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003907 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003908 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003909 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Fam Zheng335e9932017-05-03 00:35:39 +08003910 {"force-share", no_argument, 0, 'U'},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003911 {0, 0, 0, 0}
3912 };
Fam Zheng335e9932017-05-03 00:35:39 +08003913 c = getopt_long(argc, argv, ":hc:d:f:no:qs:S:t:wU", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003914 if (c == -1) {
3915 break;
3916 }
3917
3918 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003919 case ':':
3920 missing_argument(argv[optind - 1]);
3921 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003922 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003923 unrecognized_option(argv[optind - 1]);
3924 break;
3925 case 'h':
Kevin Wolfb6133b82014-08-05 14:17:13 +02003926 help();
3927 break;
3928 case 'c':
3929 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003930 unsigned long res;
3931
3932 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003933 error_report("Invalid request count specified");
3934 return 1;
3935 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003936 count = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003937 break;
3938 }
3939 case 'd':
3940 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003941 unsigned long res;
3942
3943 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003944 error_report("Invalid queue depth specified");
3945 return 1;
3946 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003947 depth = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003948 break;
3949 }
3950 case 'f':
3951 fmt = optarg;
3952 break;
3953 case 'n':
3954 flags |= BDRV_O_NATIVE_AIO;
3955 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003956 case 'o':
3957 {
Markus Armbruster606caa02017-02-21 21:14:04 +01003958 offset = cvtnum(optarg);
3959 if (offset < 0) {
Kevin Wolfd3199a32015-07-10 18:09:18 +02003960 error_report("Invalid offset specified");
3961 return 1;
3962 }
3963 break;
3964 }
3965 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003966 case 'q':
3967 quiet = true;
3968 break;
3969 case 's':
3970 {
3971 int64_t sval;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003972
Markus Armbruster606caa02017-02-21 21:14:04 +01003973 sval = cvtnum(optarg);
3974 if (sval < 0 || sval > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003975 error_report("Invalid buffer size specified");
3976 return 1;
3977 }
3978
3979 bufsize = sval;
3980 break;
3981 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003982 case 'S':
3983 {
3984 int64_t sval;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003985
Markus Armbruster606caa02017-02-21 21:14:04 +01003986 sval = cvtnum(optarg);
3987 if (sval < 0 || sval > INT_MAX) {
Kevin Wolf83de9be2015-07-13 13:13:17 +02003988 error_report("Invalid step size specified");
3989 return 1;
3990 }
3991
3992 step = sval;
3993 break;
3994 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003995 case 't':
3996 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
3997 if (ret < 0) {
3998 error_report("Invalid cache mode");
3999 ret = -1;
4000 goto out;
4001 }
4002 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004003 case 'w':
4004 flags |= BDRV_O_RDWR;
4005 is_write = true;
4006 break;
Fam Zheng335e9932017-05-03 00:35:39 +08004007 case 'U':
4008 force_share = true;
4009 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004010 case OPTION_PATTERN:
4011 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00004012 unsigned long res;
4013
4014 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004015 error_report("Invalid pattern byte specified");
4016 return 1;
4017 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00004018 pattern = res;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004019 break;
4020 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02004021 case OPTION_FLUSH_INTERVAL:
4022 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00004023 unsigned long res;
4024
4025 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02004026 error_report("Invalid flush interval specified");
4027 return 1;
4028 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00004029 flush_interval = res;
Kevin Wolf55d539c2016-06-03 13:59:41 +02004030 break;
4031 }
4032 case OPTION_NO_DRAIN:
4033 drain_on_flush = false;
4034 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02004035 case OPTION_IMAGE_OPTS:
4036 image_opts = true;
4037 break;
4038 }
4039 }
4040
4041 if (optind != argc - 1) {
4042 error_exit("Expecting one image file name");
4043 }
4044 filename = argv[argc - 1];
4045
Kevin Wolf55d539c2016-06-03 13:59:41 +02004046 if (!is_write && flush_interval) {
4047 error_report("--flush-interval is only available in write tests");
4048 ret = -1;
4049 goto out;
4050 }
4051 if (flush_interval && flush_interval < depth) {
4052 error_report("Flush interval can't be smaller than depth");
4053 ret = -1;
4054 goto out;
4055 }
4056
Fam Zheng335e9932017-05-03 00:35:39 +08004057 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
4058 force_share);
Kevin Wolfb6133b82014-08-05 14:17:13 +02004059 if (!blk) {
4060 ret = -1;
4061 goto out;
4062 }
4063
4064 image_size = blk_getlength(blk);
4065 if (image_size < 0) {
4066 ret = image_size;
4067 goto out;
4068 }
4069
4070 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02004071 .blk = blk,
4072 .image_size = image_size,
4073 .bufsize = bufsize,
4074 .step = step ?: bufsize,
4075 .nrreq = depth,
4076 .n = count,
4077 .offset = offset,
4078 .write = is_write,
4079 .flush_interval = flush_interval,
4080 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02004081 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02004082 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02004083 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02004084 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02004085 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02004086 if (flush_interval) {
4087 printf("Sending flush every %d requests\n", flush_interval);
4088 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02004089
4090 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004091 memset(data.buf, pattern, data.nrreq * data.bufsize);
4092
Kevin Wolfb6133b82014-08-05 14:17:13 +02004093 data.qiov = g_new(QEMUIOVector, data.nrreq);
4094 for (i = 0; i < data.nrreq; i++) {
4095 qemu_iovec_init(&data.qiov[i], 1);
4096 qemu_iovec_add(&data.qiov[i],
4097 data.buf + i * data.bufsize, data.bufsize);
4098 }
4099
4100 gettimeofday(&t1, NULL);
4101 bench_cb(&data, 0);
4102
4103 while (data.n > 0) {
4104 main_loop_wait(false);
4105 }
4106 gettimeofday(&t2, NULL);
4107
4108 printf("Run completed in %3.3f seconds.\n",
4109 (t2.tv_sec - t1.tv_sec)
4110 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
4111
4112out:
4113 qemu_vfree(data.buf);
4114 blk_unref(blk);
4115
4116 if (ret) {
4117 return 1;
4118 }
4119 return 0;
4120}
4121
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004122#define C_BS 01
4123#define C_COUNT 02
4124#define C_IF 04
4125#define C_OF 010
Reda Sallahif7c15532016-08-10 16:16:09 +02004126#define C_SKIP 020
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004127
4128struct DdInfo {
4129 unsigned int flags;
4130 int64_t count;
4131};
4132
4133struct DdIo {
4134 int bsz; /* Block size */
4135 char *filename;
4136 uint8_t *buf;
Reda Sallahif7c15532016-08-10 16:16:09 +02004137 int64_t offset;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004138};
4139
4140struct DdOpts {
4141 const char *name;
4142 int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
4143 unsigned int flag;
4144};
4145
4146static int img_dd_bs(const char *arg,
4147 struct DdIo *in, struct DdIo *out,
4148 struct DdInfo *dd)
4149{
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004150 int64_t res;
4151
Markus Armbruster606caa02017-02-21 21:14:04 +01004152 res = cvtnum(arg);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004153
Markus Armbruster606caa02017-02-21 21:14:04 +01004154 if (res <= 0 || res > INT_MAX) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004155 error_report("invalid number: '%s'", arg);
4156 return 1;
4157 }
4158 in->bsz = out->bsz = res;
4159
4160 return 0;
4161}
4162
4163static int img_dd_count(const char *arg,
4164 struct DdIo *in, struct DdIo *out,
4165 struct DdInfo *dd)
4166{
Markus Armbruster606caa02017-02-21 21:14:04 +01004167 dd->count = cvtnum(arg);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004168
Markus Armbruster606caa02017-02-21 21:14:04 +01004169 if (dd->count < 0) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004170 error_report("invalid number: '%s'", arg);
4171 return 1;
4172 }
4173
4174 return 0;
4175}
4176
4177static int img_dd_if(const char *arg,
4178 struct DdIo *in, struct DdIo *out,
4179 struct DdInfo *dd)
4180{
4181 in->filename = g_strdup(arg);
4182
4183 return 0;
4184}
4185
4186static int img_dd_of(const char *arg,
4187 struct DdIo *in, struct DdIo *out,
4188 struct DdInfo *dd)
4189{
4190 out->filename = g_strdup(arg);
4191
4192 return 0;
4193}
4194
Reda Sallahif7c15532016-08-10 16:16:09 +02004195static int img_dd_skip(const char *arg,
4196 struct DdIo *in, struct DdIo *out,
4197 struct DdInfo *dd)
4198{
Markus Armbruster606caa02017-02-21 21:14:04 +01004199 in->offset = cvtnum(arg);
Reda Sallahif7c15532016-08-10 16:16:09 +02004200
Markus Armbruster606caa02017-02-21 21:14:04 +01004201 if (in->offset < 0) {
Reda Sallahif7c15532016-08-10 16:16:09 +02004202 error_report("invalid number: '%s'", arg);
4203 return 1;
4204 }
4205
4206 return 0;
4207}
4208
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004209static int img_dd(int argc, char **argv)
4210{
4211 int ret = 0;
4212 char *arg = NULL;
4213 char *tmp;
4214 BlockDriver *drv = NULL, *proto_drv = NULL;
4215 BlockBackend *blk1 = NULL, *blk2 = NULL;
4216 QemuOpts *opts = NULL;
4217 QemuOptsList *create_opts = NULL;
4218 Error *local_err = NULL;
4219 bool image_opts = false;
4220 int c, i;
4221 const char *out_fmt = "raw";
4222 const char *fmt = NULL;
4223 int64_t size = 0;
4224 int64_t block_count = 0, out_pos, in_pos;
Fam Zheng335e9932017-05-03 00:35:39 +08004225 bool force_share = false;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004226 struct DdInfo dd = {
4227 .flags = 0,
4228 .count = 0,
4229 };
4230 struct DdIo in = {
4231 .bsz = 512, /* Block size is by default 512 bytes */
4232 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02004233 .buf = NULL,
4234 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004235 };
4236 struct DdIo out = {
4237 .bsz = 512,
4238 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02004239 .buf = NULL,
4240 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004241 };
4242
4243 const struct DdOpts options[] = {
4244 { "bs", img_dd_bs, C_BS },
4245 { "count", img_dd_count, C_COUNT },
4246 { "if", img_dd_if, C_IF },
4247 { "of", img_dd_of, C_OF },
Reda Sallahif7c15532016-08-10 16:16:09 +02004248 { "skip", img_dd_skip, C_SKIP },
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004249 { NULL, NULL, 0 }
4250 };
4251 const struct option long_options[] = {
4252 { "help", no_argument, 0, 'h'},
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004253 { "object", required_argument, 0, OPTION_OBJECT},
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004254 { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08004255 { "force-share", no_argument, 0, 'U'},
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004256 { 0, 0, 0, 0 }
4257 };
4258
Fam Zheng335e9932017-05-03 00:35:39 +08004259 while ((c = getopt_long(argc, argv, ":hf:O:U", long_options, NULL))) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004260 if (c == EOF) {
4261 break;
4262 }
4263 switch (c) {
4264 case 'O':
4265 out_fmt = optarg;
4266 break;
4267 case 'f':
4268 fmt = optarg;
4269 break;
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004270 case ':':
4271 missing_argument(argv[optind - 1]);
4272 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004273 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004274 unrecognized_option(argv[optind - 1]);
4275 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004276 case 'h':
4277 help();
4278 break;
Fam Zheng335e9932017-05-03 00:35:39 +08004279 case 'U':
4280 force_share = true;
4281 break;
Stefan Hajnoczi2a245702017-06-19 16:00:02 +01004282 case OPTION_OBJECT:
4283 if (!qemu_opts_parse_noisily(&qemu_object_opts, optarg, true)) {
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004284 ret = -1;
4285 goto out;
4286 }
Stefan Hajnoczi2a245702017-06-19 16:00:02 +01004287 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004288 case OPTION_IMAGE_OPTS:
4289 image_opts = true;
4290 break;
4291 }
4292 }
4293
4294 for (i = optind; i < argc; i++) {
4295 int j;
4296 arg = g_strdup(argv[i]);
4297
4298 tmp = strchr(arg, '=');
4299 if (tmp == NULL) {
4300 error_report("unrecognized operand %s", arg);
4301 ret = -1;
4302 goto out;
4303 }
4304
4305 *tmp++ = '\0';
4306
4307 for (j = 0; options[j].name != NULL; j++) {
4308 if (!strcmp(arg, options[j].name)) {
4309 break;
4310 }
4311 }
4312 if (options[j].name == NULL) {
4313 error_report("unrecognized operand %s", arg);
4314 ret = -1;
4315 goto out;
4316 }
4317
4318 if (options[j].f(tmp, &in, &out, &dd) != 0) {
4319 ret = -1;
4320 goto out;
4321 }
4322 dd.flags |= options[j].flag;
4323 g_free(arg);
4324 arg = NULL;
4325 }
4326
4327 if (!(dd.flags & C_IF && dd.flags & C_OF)) {
4328 error_report("Must specify both input and output files");
4329 ret = -1;
4330 goto out;
4331 }
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004332
4333 if (qemu_opts_foreach(&qemu_object_opts,
4334 user_creatable_add_opts_foreach,
4335 NULL, NULL)) {
4336 ret = -1;
4337 goto out;
4338 }
4339
Fam Zheng335e9932017-05-03 00:35:39 +08004340 blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
4341 force_share);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004342
4343 if (!blk1) {
4344 ret = -1;
4345 goto out;
4346 }
4347
4348 drv = bdrv_find_format(out_fmt);
4349 if (!drv) {
4350 error_report("Unknown file format");
4351 ret = -1;
4352 goto out;
4353 }
4354 proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
4355
4356 if (!proto_drv) {
4357 error_report_err(local_err);
4358 ret = -1;
4359 goto out;
4360 }
4361 if (!drv->create_opts) {
4362 error_report("Format driver '%s' does not support image creation",
4363 drv->format_name);
4364 ret = -1;
4365 goto out;
4366 }
4367 if (!proto_drv->create_opts) {
4368 error_report("Protocol driver '%s' does not support image creation",
4369 proto_drv->format_name);
4370 ret = -1;
4371 goto out;
4372 }
4373 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4374 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4375
4376 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4377
4378 size = blk_getlength(blk1);
4379 if (size < 0) {
4380 error_report("Failed to get size for '%s'", in.filename);
4381 ret = -1;
4382 goto out;
4383 }
4384
4385 if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
4386 dd.count * in.bsz < size) {
4387 size = dd.count * in.bsz;
4388 }
4389
Reda Sallahif7c15532016-08-10 16:16:09 +02004390 /* Overflow means the specified offset is beyond input image's size */
4391 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4392 size < in.bsz * in.offset)) {
4393 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
4394 } else {
4395 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
4396 size - in.bsz * in.offset, &error_abort);
4397 }
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004398
4399 ret = bdrv_create(drv, out.filename, opts, &local_err);
4400 if (ret < 0) {
4401 error_reportf_err(local_err,
4402 "%s: error while creating output image: ",
4403 out.filename);
4404 ret = -1;
4405 goto out;
4406 }
4407
Daniel P. Berrangeea204dd2017-05-15 17:47:10 +01004408 /* TODO, we can't honour --image-opts for the target,
4409 * since it needs to be given in a format compatible
4410 * with the bdrv_create() call above which does not
4411 * support image-opts style.
4412 */
Daniel P. Berrange29cf9332017-05-15 17:47:12 +01004413 blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
Daniel P. Berrangeea204dd2017-05-15 17:47:10 +01004414 false, false, false);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004415
4416 if (!blk2) {
4417 ret = -1;
4418 goto out;
4419 }
4420
Reda Sallahif7c15532016-08-10 16:16:09 +02004421 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4422 size < in.offset * in.bsz)) {
4423 /* We give a warning if the skip option is bigger than the input
4424 * size and create an empty output disk image (i.e. like dd(1)).
4425 */
4426 error_report("%s: cannot skip to specified offset", in.filename);
4427 in_pos = size;
4428 } else {
4429 in_pos = in.offset * in.bsz;
4430 }
4431
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004432 in.buf = g_new(uint8_t, in.bsz);
4433
Reda Sallahif7c15532016-08-10 16:16:09 +02004434 for (out_pos = 0; in_pos < size; block_count++) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004435 int in_ret, out_ret;
4436
4437 if (in_pos + in.bsz > size) {
4438 in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
4439 } else {
4440 in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
4441 }
4442 if (in_ret < 0) {
4443 error_report("error while reading from input image file: %s",
4444 strerror(-in_ret));
4445 ret = -1;
4446 goto out;
4447 }
4448 in_pos += in_ret;
4449
4450 out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
4451
4452 if (out_ret < 0) {
4453 error_report("error while writing to output image file: %s",
4454 strerror(-out_ret));
4455 ret = -1;
4456 goto out;
4457 }
4458 out_pos += out_ret;
4459 }
4460
4461out:
4462 g_free(arg);
4463 qemu_opts_del(opts);
4464 qemu_opts_free(create_opts);
4465 blk_unref(blk1);
4466 blk_unref(blk2);
4467 g_free(in.filename);
4468 g_free(out.filename);
4469 g_free(in.buf);
4470 g_free(out.buf);
4471
4472 if (ret) {
4473 return 1;
4474 }
4475 return 0;
4476}
4477
Stefan Hajnoczifd03c2b2017-07-05 13:57:36 +01004478static void dump_json_block_measure_info(BlockMeasureInfo *info)
4479{
4480 QString *str;
4481 QObject *obj;
4482 Visitor *v = qobject_output_visitor_new(&obj);
4483
4484 visit_type_BlockMeasureInfo(v, NULL, &info, &error_abort);
4485 visit_complete(v, &obj);
4486 str = qobject_to_json_pretty(obj);
4487 assert(str != NULL);
4488 printf("%s\n", qstring_get_str(str));
4489 qobject_decref(obj);
4490 visit_free(v);
4491 QDECREF(str);
4492}
4493
4494static int img_measure(int argc, char **argv)
4495{
4496 static const struct option long_options[] = {
4497 {"help", no_argument, 0, 'h'},
4498 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4499 {"object", required_argument, 0, OPTION_OBJECT},
4500 {"output", required_argument, 0, OPTION_OUTPUT},
4501 {"size", required_argument, 0, OPTION_SIZE},
4502 {"force-share", no_argument, 0, 'U'},
4503 {0, 0, 0, 0}
4504 };
4505 OutputFormat output_format = OFORMAT_HUMAN;
4506 BlockBackend *in_blk = NULL;
4507 BlockDriver *drv;
4508 const char *filename = NULL;
4509 const char *fmt = NULL;
4510 const char *out_fmt = "raw";
4511 char *options = NULL;
4512 char *snapshot_name = NULL;
4513 bool force_share = false;
4514 QemuOpts *opts = NULL;
4515 QemuOpts *object_opts = NULL;
4516 QemuOpts *sn_opts = NULL;
4517 QemuOptsList *create_opts = NULL;
4518 bool image_opts = false;
4519 uint64_t img_size = UINT64_MAX;
4520 BlockMeasureInfo *info = NULL;
4521 Error *local_err = NULL;
4522 int ret = 1;
4523 int c;
4524
4525 while ((c = getopt_long(argc, argv, "hf:O:o:l:U",
4526 long_options, NULL)) != -1) {
4527 switch (c) {
4528 case '?':
4529 case 'h':
4530 help();
4531 break;
4532 case 'f':
4533 fmt = optarg;
4534 break;
4535 case 'O':
4536 out_fmt = optarg;
4537 break;
4538 case 'o':
4539 if (!is_valid_option_list(optarg)) {
4540 error_report("Invalid option list: %s", optarg);
4541 goto out;
4542 }
4543 if (!options) {
4544 options = g_strdup(optarg);
4545 } else {
4546 char *old_options = options;
4547 options = g_strdup_printf("%s,%s", options, optarg);
4548 g_free(old_options);
4549 }
4550 break;
4551 case 'l':
4552 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
4553 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
4554 optarg, false);
4555 if (!sn_opts) {
4556 error_report("Failed in parsing snapshot param '%s'",
4557 optarg);
4558 goto out;
4559 }
4560 } else {
4561 snapshot_name = optarg;
4562 }
4563 break;
4564 case 'U':
4565 force_share = true;
4566 break;
4567 case OPTION_OBJECT:
4568 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
4569 optarg, true);
4570 if (!object_opts) {
4571 goto out;
4572 }
4573 break;
4574 case OPTION_IMAGE_OPTS:
4575 image_opts = true;
4576 break;
4577 case OPTION_OUTPUT:
4578 if (!strcmp(optarg, "json")) {
4579 output_format = OFORMAT_JSON;
4580 } else if (!strcmp(optarg, "human")) {
4581 output_format = OFORMAT_HUMAN;
4582 } else {
4583 error_report("--output must be used with human or json "
4584 "as argument.");
4585 goto out;
4586 }
4587 break;
4588 case OPTION_SIZE:
4589 {
4590 int64_t sval;
4591
4592 sval = cvtnum(optarg);
4593 if (sval < 0) {
4594 if (sval == -ERANGE) {
4595 error_report("Image size must be less than 8 EiB!");
4596 } else {
4597 error_report("Invalid image size specified! You may use "
4598 "k, M, G, T, P or E suffixes for ");
4599 error_report("kilobytes, megabytes, gigabytes, terabytes, "
4600 "petabytes and exabytes.");
4601 }
4602 goto out;
4603 }
4604 img_size = (uint64_t)sval;
4605 }
4606 break;
4607 }
4608 }
4609
4610 if (qemu_opts_foreach(&qemu_object_opts,
4611 user_creatable_add_opts_foreach,
4612 NULL, NULL)) {
4613 goto out;
4614 }
4615
4616 if (argc - optind > 1) {
4617 error_report("At most one filename argument is allowed.");
4618 goto out;
4619 } else if (argc - optind == 1) {
4620 filename = argv[optind];
4621 }
4622
4623 if (!filename &&
4624 (object_opts || image_opts || fmt || snapshot_name || sn_opts)) {
4625 error_report("--object, --image-opts, -f, and -l "
4626 "require a filename argument.");
4627 goto out;
4628 }
4629 if (filename && img_size != UINT64_MAX) {
4630 error_report("--size N cannot be used together with a filename.");
4631 goto out;
4632 }
4633 if (!filename && img_size == UINT64_MAX) {
4634 error_report("Either --size N or one filename must be specified.");
4635 goto out;
4636 }
4637
4638 if (filename) {
4639 in_blk = img_open(image_opts, filename, fmt, 0,
4640 false, false, force_share);
4641 if (!in_blk) {
4642 goto out;
4643 }
4644
4645 if (sn_opts) {
4646 bdrv_snapshot_load_tmp(blk_bs(in_blk),
4647 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
4648 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
4649 &local_err);
4650 } else if (snapshot_name != NULL) {
4651 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk),
4652 snapshot_name, &local_err);
4653 }
4654 if (local_err) {
4655 error_reportf_err(local_err, "Failed to load snapshot: ");
4656 goto out;
4657 }
4658 }
4659
4660 drv = bdrv_find_format(out_fmt);
4661 if (!drv) {
4662 error_report("Unknown file format '%s'", out_fmt);
4663 goto out;
4664 }
4665 if (!drv->create_opts) {
4666 error_report("Format driver '%s' does not support image creation",
4667 drv->format_name);
4668 goto out;
4669 }
4670
4671 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4672 create_opts = qemu_opts_append(create_opts, bdrv_file.create_opts);
4673 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4674 if (options) {
4675 qemu_opts_do_parse(opts, options, NULL, &local_err);
4676 if (local_err) {
4677 error_report_err(local_err);
4678 error_report("Invalid options for file format '%s'", out_fmt);
4679 goto out;
4680 }
4681 }
4682 if (img_size != UINT64_MAX) {
4683 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4684 }
4685
4686 info = bdrv_measure(drv, opts, in_blk ? blk_bs(in_blk) : NULL, &local_err);
4687 if (local_err) {
4688 error_report_err(local_err);
4689 goto out;
4690 }
4691
4692 if (output_format == OFORMAT_HUMAN) {
4693 printf("required size: %" PRIu64 "\n", info->required);
4694 printf("fully allocated size: %" PRIu64 "\n", info->fully_allocated);
4695 } else {
4696 dump_json_block_measure_info(info);
4697 }
4698
4699 ret = 0;
4700
4701out:
4702 qapi_free_BlockMeasureInfo(info);
4703 qemu_opts_del(object_opts);
4704 qemu_opts_del(opts);
4705 qemu_opts_del(sn_opts);
4706 qemu_opts_free(create_opts);
4707 g_free(options);
4708 blk_unref(in_blk);
4709 return ret;
4710}
Kevin Wolfb6133b82014-08-05 14:17:13 +02004711
Anthony Liguoric227f092009-10-01 16:12:16 -05004712static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01004713#define DEF(option, callback, arg_string) \
4714 { option, callback },
4715#include "qemu-img-cmds.h"
4716#undef DEF
4717#undef GEN_DOCS
4718 { NULL, NULL, },
4719};
4720
bellardea2384d2004-08-01 21:59:26 +00004721int main(int argc, char **argv)
4722{
Anthony Liguoric227f092009-10-01 16:12:16 -05004723 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01004724 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004725 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004726 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04004727 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04004728 static const struct option long_options[] = {
4729 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03004730 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004731 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04004732 {0, 0, 0, 0}
4733 };
bellardea2384d2004-08-01 21:59:26 +00004734
MORITA Kazutaka526eda12013-07-23 17:30:11 +09004735#ifdef CONFIG_POSIX
4736 signal(SIGPIPE, SIG_IGN);
4737#endif
4738
Daniel P. Berrangefe4db842016-10-04 14:35:52 +01004739 module_call_init(MODULE_INIT_TRACE);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004740 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08004741 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004742
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004743 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01004744 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004745 exit(EXIT_FAILURE);
4746 }
4747
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03004748 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01004749
Daniel P. Berrange064097d2016-02-10 18:41:01 +00004750 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00004751 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08004752 if (argc < 2) {
4753 error_exit("Not enough arguments");
4754 }
Stuart Brady153859b2009-06-07 00:42:17 +01004755
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004756 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00004757 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004758 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004759
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004760 while ((c = getopt_long(argc, argv, "+:hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03004761 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004762 case ':':
4763 missing_argument(argv[optind - 1]);
4764 return 0;
Stefan Hajnoczi4581c162017-03-17 18:45:39 +08004765 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004766 unrecognized_option(argv[optind - 1]);
4767 return 0;
4768 case 'h':
Denis V. Lunev10985132016-06-17 17:44:13 +03004769 help();
4770 return 0;
4771 case 'V':
4772 printf(QEMU_IMG_VERSION);
4773 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004774 case 'T':
4775 g_free(trace_file);
4776 trace_file = trace_opt_parse(optarg);
4777 break;
Stuart Brady153859b2009-06-07 00:42:17 +01004778 }
bellardea2384d2004-08-01 21:59:26 +00004779 }
Stuart Brady153859b2009-06-07 00:42:17 +01004780
Denis V. Lunev10985132016-06-17 17:44:13 +03004781 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04004782
Denis V. Lunev10985132016-06-17 17:44:13 +03004783 /* reset getopt_long scanning */
4784 argc -= optind;
4785 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04004786 return 0;
4787 }
Denis V. Lunev10985132016-06-17 17:44:13 +03004788 argv += optind;
Denis V. Lunevcfef6a42016-07-04 16:16:48 +03004789 optind = 0;
Denis V. Lunev10985132016-06-17 17:44:13 +03004790
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004791 if (!trace_init_backends()) {
4792 exit(1);
4793 }
4794 trace_init_file(trace_file);
4795 qemu_set_log(LOG_TRACE);
4796
Denis V. Lunev10985132016-06-17 17:44:13 +03004797 /* find the command */
4798 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
4799 if (!strcmp(cmdname, cmd->name)) {
4800 return cmd->handler(argc, argv);
4801 }
4802 }
Jeff Cody7db16892014-04-25 17:02:32 -04004803
Stuart Brady153859b2009-06-07 00:42:17 +01004804 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08004805 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00004806}