blob: 66d595be3d31aa3b4635d56bf703ac1833bba4f0 [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/*
Eric Blakedebb38a2017-10-11 22:47:11 -05001068 * Returns -1 if 'buf' contains only zeroes, otherwise the byte index
1069 * of the first sector boundary within buf where the sector contains a
1070 * non-zero byte. This function is robust to a buffer that is not
1071 * sector-aligned.
1072 */
1073static int64_t find_nonzero(const uint8_t *buf, int64_t n)
1074{
1075 int64_t i;
1076 int64_t end = QEMU_ALIGN_DOWN(n, BDRV_SECTOR_SIZE);
1077
1078 for (i = 0; i < end; i += BDRV_SECTOR_SIZE) {
1079 if (!buffer_is_zero(buf + i, BDRV_SECTOR_SIZE)) {
1080 return i;
1081 }
1082 }
1083 if (i < n && !buffer_is_zero(buf + i, n - end)) {
1084 return i;
1085 }
1086 return -1;
1087}
1088
1089/*
thsf58c7b32008-06-05 21:53:49 +00001090 * Returns true iff the first sector pointed to by 'buf' contains at least
1091 * a non-NUL byte.
1092 *
1093 * 'pnum' is set to the number of sectors (including and immediately following
1094 * the first one) that are known to be in the same allocated/unallocated state.
1095 */
bellardea2384d2004-08-01 21:59:26 +00001096static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
1097{
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001098 bool is_zero;
1099 int i;
bellardea2384d2004-08-01 21:59:26 +00001100
1101 if (n <= 0) {
1102 *pnum = 0;
1103 return 0;
1104 }
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001105 is_zero = buffer_is_zero(buf, 512);
bellardea2384d2004-08-01 21:59:26 +00001106 for(i = 1; i < n; i++) {
1107 buf += 512;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001108 if (is_zero != buffer_is_zero(buf, 512)) {
bellardea2384d2004-08-01 21:59:26 +00001109 break;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001110 }
bellardea2384d2004-08-01 21:59:26 +00001111 }
1112 *pnum = i;
Stefan Hajnoczi1a6d39f2012-02-07 13:27:24 +00001113 return !is_zero;
bellardea2384d2004-08-01 21:59:26 +00001114}
1115
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001116/*
Kevin Wolfa22f1232011-08-26 15:27:13 +02001117 * Like is_allocated_sectors, but if the buffer starts with a used sector,
1118 * up to 'min' consecutive sectors containing zeros are ignored. This avoids
1119 * breaking up write requests for only small sparse areas.
1120 */
1121static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum,
1122 int min)
1123{
1124 int ret;
1125 int num_checked, num_used;
1126
1127 if (n < min) {
1128 min = n;
1129 }
1130
1131 ret = is_allocated_sectors(buf, n, pnum);
1132 if (!ret) {
1133 return ret;
1134 }
1135
1136 num_used = *pnum;
1137 buf += BDRV_SECTOR_SIZE * *pnum;
1138 n -= *pnum;
1139 num_checked = num_used;
1140
1141 while (n > 0) {
1142 ret = is_allocated_sectors(buf, n, pnum);
1143
1144 buf += BDRV_SECTOR_SIZE * *pnum;
1145 n -= *pnum;
1146 num_checked += *pnum;
1147 if (ret) {
1148 num_used = num_checked;
1149 } else if (*pnum >= min) {
1150 break;
1151 }
1152 }
1153
1154 *pnum = num_used;
1155 return 1;
1156}
1157
1158/*
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001159 * Compares two buffers sector by sector. Returns 0 if the first sector of both
1160 * buffers matches, non-zero otherwise.
1161 *
1162 * pnum is set to the number of sectors (including and immediately following
1163 * the first one) that are known to have the same comparison result
1164 */
1165static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
1166 int *pnum)
1167{
Radim KrčmÔř8c1ac472015-02-20 17:06:15 +01001168 bool res;
1169 int i;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001170
1171 if (n <= 0) {
1172 *pnum = 0;
1173 return 0;
1174 }
1175
1176 res = !!memcmp(buf1, buf2, 512);
1177 for(i = 1; i < n; i++) {
1178 buf1 += 512;
1179 buf2 += 512;
1180
1181 if (!!memcmp(buf1, buf2, 512) != res) {
1182 break;
1183 }
1184 }
1185
1186 *pnum = i;
1187 return res;
1188}
1189
Kevin Wolf80ee15a2009-09-15 12:30:43 +02001190#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +00001191
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001192static int64_t sectors_to_bytes(int64_t sectors)
1193{
1194 return sectors << BDRV_SECTOR_BITS;
1195}
1196
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001197/*
1198 * Check if passed sectors are empty (not allocated or contain only 0 bytes)
1199 *
Eric Blake0608e402017-10-11 22:47:12 -05001200 * Intended for use by 'qemu-img compare': Returns 0 in case sectors are
1201 * filled with 0, 1 if sectors contain non-zero data (this is a comparison
1202 * failure), and 4 on error (the exit status for read errors), after emitting
1203 * an error message.
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001204 *
Max Reitzf1d3cd72015-02-05 13:58:18 -05001205 * @param blk: BlockBackend for the image
Eric Blakec41508e2017-10-11 22:47:13 -05001206 * @param offset: Starting offset to check
1207 * @param bytes: Number of bytes to check
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001208 * @param filename: Name of disk file we are checking (logging purpose)
1209 * @param buffer: Allocated buffer for storing read data
1210 * @param quiet: Flag for quiet mode
1211 */
Eric Blakec41508e2017-10-11 22:47:13 -05001212static int check_empty_sectors(BlockBackend *blk, int64_t offset,
1213 int64_t bytes, const char *filename,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001214 uint8_t *buffer, bool quiet)
1215{
Eric Blakedebb38a2017-10-11 22:47:11 -05001216 int ret = 0;
1217 int64_t idx;
1218
Eric Blakec41508e2017-10-11 22:47:13 -05001219 ret = blk_pread(blk, offset, buffer, bytes);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001220 if (ret < 0) {
1221 error_report("Error while reading offset %" PRId64 " of %s: %s",
Eric Blakec41508e2017-10-11 22:47:13 -05001222 offset, filename, strerror(-ret));
Eric Blake0608e402017-10-11 22:47:12 -05001223 return 4;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001224 }
Eric Blakec41508e2017-10-11 22:47:13 -05001225 idx = find_nonzero(buffer, bytes);
Eric Blakedebb38a2017-10-11 22:47:11 -05001226 if (idx >= 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001227 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
Eric Blakec41508e2017-10-11 22:47:13 -05001228 offset + idx);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001229 return 1;
1230 }
1231
1232 return 0;
1233}
1234
1235/*
1236 * Compares two images. Exit codes:
1237 *
1238 * 0 - Images are identical
1239 * 1 - Images differ
1240 * >1 - Error occurred
1241 */
1242static int img_compare(int argc, char **argv)
1243{
Max Reitz40055952014-07-22 22:58:42 +02001244 const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001245 BlockBackend *blk1, *blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001246 BlockDriverState *bs1, *bs2;
1247 int64_t total_sectors1, total_sectors2;
1248 uint8_t *buf1 = NULL, *buf2 = NULL;
Eric Blake31826642017-10-11 22:47:08 -05001249 int64_t pnum1, pnum2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001250 int allocated1, allocated2;
1251 int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */
1252 bool progress = false, quiet = false, strict = false;
Max Reitz40055952014-07-22 22:58:42 +02001253 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01001254 bool writethrough;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001255 int64_t total_sectors;
1256 int64_t sector_num = 0;
1257 int64_t nb_sectors;
1258 int c, pnum;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001259 uint64_t progress_base;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001260 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08001261 bool force_share = false;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001262
Max Reitz40055952014-07-22 22:58:42 +02001263 cache = BDRV_DEFAULT_CACHE;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001264 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001265 static const struct option long_options[] = {
1266 {"help", no_argument, 0, 'h'},
1267 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001268 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08001269 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001270 {0, 0, 0, 0}
1271 };
Fam Zheng335e9932017-05-03 00:35:39 +08001272 c = getopt_long(argc, argv, ":hf:F:T:pqsU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001273 long_options, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001274 if (c == -1) {
1275 break;
1276 }
1277 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001278 case ':':
1279 missing_argument(argv[optind - 1]);
1280 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001281 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001282 unrecognized_option(argv[optind - 1]);
1283 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001284 case 'h':
1285 help();
1286 break;
1287 case 'f':
1288 fmt1 = optarg;
1289 break;
1290 case 'F':
1291 fmt2 = optarg;
1292 break;
Max Reitz40055952014-07-22 22:58:42 +02001293 case 'T':
1294 cache = optarg;
1295 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001296 case 'p':
1297 progress = true;
1298 break;
1299 case 'q':
1300 quiet = true;
1301 break;
1302 case 's':
1303 strict = true;
1304 break;
Fam Zheng335e9932017-05-03 00:35:39 +08001305 case 'U':
1306 force_share = true;
1307 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001308 case OPTION_OBJECT: {
1309 QemuOpts *opts;
1310 opts = qemu_opts_parse_noisily(&qemu_object_opts,
1311 optarg, true);
1312 if (!opts) {
1313 ret = 2;
1314 goto out4;
1315 }
1316 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001317 case OPTION_IMAGE_OPTS:
1318 image_opts = true;
1319 break;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001320 }
1321 }
1322
1323 /* Progress is not shown in Quiet mode */
1324 if (quiet) {
1325 progress = false;
1326 }
1327
1328
Kevin Wolffc11eb22013-08-05 10:53:04 +02001329 if (optind != argc - 2) {
Fam Zhengac1307a2014-04-22 13:36:11 +08001330 error_exit("Expecting two image file names");
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001331 }
1332 filename1 = argv[optind++];
1333 filename2 = argv[optind++];
1334
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001335 if (qemu_opts_foreach(&qemu_object_opts,
1336 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02001337 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001338 ret = 2;
1339 goto out4;
1340 }
1341
Stefan Hajnoczicbda0162014-08-26 19:17:55 +01001342 /* Initialize before goto out */
1343 qemu_progress_init(progress, 2.0);
1344
Kevin Wolfce099542016-03-15 13:01:04 +01001345 flags = 0;
1346 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitz40055952014-07-22 22:58:42 +02001347 if (ret < 0) {
1348 error_report("Invalid source cache option: %s", cache);
1349 ret = 2;
1350 goto out3;
1351 }
1352
Fam Zheng335e9932017-05-03 00:35:39 +08001353 blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet,
1354 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001355 if (!blk1) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001356 ret = 2;
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001357 goto out3;
1358 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001359
Fam Zheng335e9932017-05-03 00:35:39 +08001360 blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet,
1361 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001362 if (!blk2) {
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001363 ret = 2;
Markus Armbruster26f54e92014-10-07 13:59:04 +02001364 goto out2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001365 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001366 bs1 = blk_bs(blk1);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02001367 bs2 = blk_bs(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001368
Max Reitzf1d3cd72015-02-05 13:58:18 -05001369 buf1 = blk_blockalign(blk1, IO_BUF_SIZE);
1370 buf2 = blk_blockalign(blk2, IO_BUF_SIZE);
1371 total_sectors1 = blk_nb_sectors(blk1);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001372 if (total_sectors1 < 0) {
1373 error_report("Can't get size of %s: %s",
1374 filename1, strerror(-total_sectors1));
1375 ret = 4;
1376 goto out;
1377 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05001378 total_sectors2 = blk_nb_sectors(blk2);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02001379 if (total_sectors2 < 0) {
1380 error_report("Can't get size of %s: %s",
1381 filename2, strerror(-total_sectors2));
1382 ret = 4;
1383 goto out;
1384 }
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001385 total_sectors = MIN(total_sectors1, total_sectors2);
1386 progress_base = MAX(total_sectors1, total_sectors2);
1387
1388 qemu_progress_print(0, 100);
1389
1390 if (strict && total_sectors1 != total_sectors2) {
1391 ret = 1;
1392 qprintf(quiet, "Strict mode: Image size mismatch!\n");
1393 goto out;
1394 }
1395
Eric Blake7daddc62017-10-11 22:47:09 -05001396 while (sector_num < total_sectors) {
Eric Blake31826642017-10-11 22:47:08 -05001397 int status1, status2;
Fam Zheng67a0fd22016-01-26 11:58:48 +08001398
Eric Blake31826642017-10-11 22:47:08 -05001399 status1 = bdrv_block_status_above(bs1, NULL,
1400 sector_num * BDRV_SECTOR_SIZE,
1401 (total_sectors1 - sector_num) *
1402 BDRV_SECTOR_SIZE,
1403 &pnum1, NULL, NULL);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001404 if (status1 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001405 ret = 3;
1406 error_report("Sector allocation test failed for %s", filename1);
1407 goto out;
1408 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001409 allocated1 = status1 & BDRV_BLOCK_ALLOCATED;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001410
Eric Blake31826642017-10-11 22:47:08 -05001411 status2 = bdrv_block_status_above(bs2, NULL,
1412 sector_num * BDRV_SECTOR_SIZE,
1413 (total_sectors2 - sector_num) *
1414 BDRV_SECTOR_SIZE,
1415 &pnum2, NULL, NULL);
Fam Zheng25ad8e62016-01-13 16:37:41 +08001416 if (status2 < 0) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001417 ret = 3;
1418 error_report("Sector allocation test failed for %s", filename2);
1419 goto out;
1420 }
Fam Zheng25ad8e62016-01-13 16:37:41 +08001421 allocated2 = status2 & BDRV_BLOCK_ALLOCATED;
Eric Blake31826642017-10-11 22:47:08 -05001422 /* TODO: Relax this once comparison is byte-based, and we no longer
1423 * have to worry about sector alignment */
1424 assert(QEMU_IS_ALIGNED(pnum1 | pnum2, BDRV_SECTOR_SIZE));
Eric Blake7daddc62017-10-11 22:47:09 -05001425
1426 assert(pnum1 && pnum2);
1427 nb_sectors = MIN(pnum1, pnum2) >> BDRV_SECTOR_BITS;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001428
Fam Zheng25ad8e62016-01-13 16:37:41 +08001429 if (strict) {
Eric Blake31826642017-10-11 22:47:08 -05001430 if (status1 != status2) {
Fam Zheng25ad8e62016-01-13 16:37:41 +08001431 ret = 1;
1432 qprintf(quiet, "Strict mode: Offset %" PRId64
1433 " block status mismatch!\n",
1434 sectors_to_bytes(sector_num));
1435 goto out;
1436 }
1437 }
1438 if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) {
Eric Blake7daddc62017-10-11 22:47:09 -05001439 /* nothing to do */
Fam Zheng25ad8e62016-01-13 16:37:41 +08001440 } else if (allocated1 == allocated2) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001441 if (allocated1) {
Eric Blake7daddc62017-10-11 22:47:09 -05001442 nb_sectors = MIN(nb_sectors, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
Eric Blake91669202016-05-06 10:26:43 -06001443 ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1,
1444 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001445 if (ret < 0) {
1446 error_report("Error while reading offset %" PRId64 " of %s:"
1447 " %s", sectors_to_bytes(sector_num), filename1,
1448 strerror(-ret));
1449 ret = 4;
1450 goto out;
1451 }
Eric Blake91669202016-05-06 10:26:43 -06001452 ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2,
1453 nb_sectors << BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001454 if (ret < 0) {
1455 error_report("Error while reading offset %" PRId64
1456 " of %s: %s", sectors_to_bytes(sector_num),
1457 filename2, strerror(-ret));
1458 ret = 4;
1459 goto out;
1460 }
1461 ret = compare_sectors(buf1, buf2, nb_sectors, &pnum);
1462 if (ret || pnum != nb_sectors) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001463 qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n",
1464 sectors_to_bytes(
1465 ret ? sector_num : sector_num + pnum));
Fam Zheng36452f12013-11-13 20:26:49 +08001466 ret = 1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001467 goto out;
1468 }
1469 }
1470 } else {
Eric Blake7daddc62017-10-11 22:47:09 -05001471 nb_sectors = MIN(nb_sectors, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001472 if (allocated1) {
Eric Blakec41508e2017-10-11 22:47:13 -05001473 ret = check_empty_sectors(blk1, sector_num * BDRV_SECTOR_SIZE,
1474 nb_sectors * BDRV_SECTOR_SIZE,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001475 filename1, buf1, quiet);
1476 } else {
Eric Blakec41508e2017-10-11 22:47:13 -05001477 ret = check_empty_sectors(blk2, sector_num * BDRV_SECTOR_SIZE,
1478 nb_sectors * BDRV_SECTOR_SIZE,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001479 filename2, buf1, quiet);
1480 }
1481 if (ret) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001482 goto out;
1483 }
1484 }
1485 sector_num += nb_sectors;
1486 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1487 }
1488
1489 if (total_sectors1 != total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001490 BlockBackend *blk_over;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001491 const char *filename_over;
1492
1493 qprintf(quiet, "Warning: Image size mismatch!\n");
1494 if (total_sectors1 > total_sectors2) {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001495 blk_over = blk1;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001496 filename_over = filename1;
1497 } else {
Max Reitzf1d3cd72015-02-05 13:58:18 -05001498 blk_over = blk2;
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001499 filename_over = filename2;
1500 }
1501
Eric Blake7daddc62017-10-11 22:47:09 -05001502 while (sector_num < progress_base) {
Eric Blake51b0a482017-07-07 07:44:59 -05001503 int64_t count;
1504
Eric Blake391cb1a2017-10-11 22:47:10 -05001505 ret = bdrv_block_status_above(blk_bs(blk_over), NULL,
Eric Blake51b0a482017-07-07 07:44:59 -05001506 sector_num * BDRV_SECTOR_SIZE,
Eric Blake7daddc62017-10-11 22:47:09 -05001507 (progress_base - sector_num) *
1508 BDRV_SECTOR_SIZE,
Eric Blake391cb1a2017-10-11 22:47:10 -05001509 &count, NULL, NULL);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001510 if (ret < 0) {
1511 ret = 3;
1512 error_report("Sector allocation test failed for %s",
1513 filename_over);
1514 goto out;
1515
1516 }
Eric Blake391cb1a2017-10-11 22:47:10 -05001517 /* TODO relax this once bdrv_block_status_above does not enforce
Eric Blake51b0a482017-07-07 07:44:59 -05001518 * sector alignment */
1519 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
1520 nb_sectors = count >> BDRV_SECTOR_BITS;
Eric Blake391cb1a2017-10-11 22:47:10 -05001521 if (ret & BDRV_BLOCK_ALLOCATED && !(ret & BDRV_BLOCK_ZERO)) {
Eric Blake7daddc62017-10-11 22:47:09 -05001522 nb_sectors = MIN(nb_sectors, IO_BUF_SIZE >> BDRV_SECTOR_BITS);
Eric Blakec41508e2017-10-11 22:47:13 -05001523 ret = check_empty_sectors(blk_over,
1524 sector_num * BDRV_SECTOR_SIZE,
1525 nb_sectors * BDRV_SECTOR_SIZE,
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001526 filename_over, buf1, quiet);
1527 if (ret) {
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001528 goto out;
1529 }
1530 }
1531 sector_num += nb_sectors;
1532 qemu_progress_print(((float) nb_sectors / progress_base)*100, 100);
1533 }
1534 }
1535
1536 qprintf(quiet, "Images are identical.\n");
1537 ret = 0;
1538
1539out:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001540 qemu_vfree(buf1);
1541 qemu_vfree(buf2);
Markus Armbruster26f54e92014-10-07 13:59:04 +02001542 blk_unref(blk2);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001543out2:
Markus Armbruster26f54e92014-10-07 13:59:04 +02001544 blk_unref(blk1);
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001545out3:
1546 qemu_progress_end();
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001547out4:
Miroslav Rezaninad14ed182013-02-13 09:09:41 +01001548 return ret;
1549}
1550
Kevin Wolf690c7302015-03-19 13:33:32 +01001551enum ImgConvertBlockStatus {
1552 BLK_DATA,
1553 BLK_ZERO,
1554 BLK_BACKING_FILE,
1555};
1556
Peter Lieven2d9187b2017-02-28 13:40:07 +01001557#define MAX_COROUTINES 16
1558
Kevin Wolf690c7302015-03-19 13:33:32 +01001559typedef struct ImgConvertState {
1560 BlockBackend **src;
1561 int64_t *src_sectors;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001562 int src_num;
Kevin Wolf690c7302015-03-19 13:33:32 +01001563 int64_t total_sectors;
1564 int64_t allocated_sectors;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001565 int64_t allocated_done;
1566 int64_t sector_num;
1567 int64_t wr_offs;
Kevin Wolf690c7302015-03-19 13:33:32 +01001568 enum ImgConvertBlockStatus status;
1569 int64_t sector_next_status;
1570 BlockBackend *target;
1571 bool has_zero_init;
1572 bool compressed;
1573 bool target_has_backing;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001574 bool wr_in_order;
Kevin Wolf690c7302015-03-19 13:33:32 +01001575 int min_sparse;
1576 size_t cluster_sectors;
1577 size_t buf_sectors;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001578 long num_coroutines;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001579 int running_coroutines;
1580 Coroutine *co[MAX_COROUTINES];
1581 int64_t wait_sector_num[MAX_COROUTINES];
1582 CoMutex lock;
1583 int ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001584} ImgConvertState;
1585
Peter Lieven2d9187b2017-02-28 13:40:07 +01001586static void convert_select_part(ImgConvertState *s, int64_t sector_num,
1587 int *src_cur, int64_t *src_cur_offset)
Kevin Wolf690c7302015-03-19 13:33:32 +01001588{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001589 *src_cur = 0;
1590 *src_cur_offset = 0;
1591 while (sector_num - *src_cur_offset >= s->src_sectors[*src_cur]) {
1592 *src_cur_offset += s->src_sectors[*src_cur];
1593 (*src_cur)++;
1594 assert(*src_cur < s->src_num);
Kevin Wolf690c7302015-03-19 13:33:32 +01001595 }
1596}
1597
1598static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
1599{
Eric Blake31826642017-10-11 22:47:08 -05001600 int64_t src_cur_offset;
1601 int ret, n, src_cur;
Kevin Wolf690c7302015-03-19 13:33:32 +01001602
Peter Lieven2d9187b2017-02-28 13:40:07 +01001603 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
Kevin Wolf690c7302015-03-19 13:33:32 +01001604
1605 assert(s->total_sectors > sector_num);
1606 n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS);
1607
1608 if (s->sector_next_status <= sector_num) {
Eric Blake31826642017-10-11 22:47:08 -05001609 int64_t count = n * BDRV_SECTOR_SIZE;
1610
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001611 if (s->target_has_backing) {
Eric Blake237d78f2017-10-11 22:47:03 -05001612
1613 ret = bdrv_block_status(blk_bs(s->src[src_cur]),
1614 (sector_num - src_cur_offset) *
1615 BDRV_SECTOR_SIZE,
1616 count, &count, NULL, NULL);
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001617 } else {
Eric Blake31826642017-10-11 22:47:08 -05001618 ret = bdrv_block_status_above(blk_bs(s->src[src_cur]), NULL,
1619 (sector_num - src_cur_offset) *
1620 BDRV_SECTOR_SIZE,
1621 count, &count, NULL, NULL);
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001622 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001623 if (ret < 0) {
1624 return ret;
1625 }
Eric Blake31826642017-10-11 22:47:08 -05001626 n = DIV_ROUND_UP(count, BDRV_SECTOR_SIZE);
Kevin Wolf690c7302015-03-19 13:33:32 +01001627
1628 if (ret & BDRV_BLOCK_ZERO) {
1629 s->status = BLK_ZERO;
1630 } else if (ret & BDRV_BLOCK_DATA) {
1631 s->status = BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001632 } else {
Vladimir Sementsov-Ogievskiy9f1b92a2017-04-07 14:34:04 +03001633 s->status = s->target_has_backing ? BLK_BACKING_FILE : BLK_DATA;
Kevin Wolf690c7302015-03-19 13:33:32 +01001634 }
1635
1636 s->sector_next_status = sector_num + n;
1637 }
1638
1639 n = MIN(n, s->sector_next_status - sector_num);
1640 if (s->status == BLK_DATA) {
1641 n = MIN(n, s->buf_sectors);
1642 }
1643
1644 /* We need to write complete clusters for compressed images, so if an
1645 * unallocated area is shorter than that, we must consider the whole
1646 * cluster allocated. */
1647 if (s->compressed) {
1648 if (n < s->cluster_sectors) {
1649 n = MIN(s->cluster_sectors, s->total_sectors - sector_num);
1650 s->status = BLK_DATA;
1651 } else {
1652 n = QEMU_ALIGN_DOWN(n, s->cluster_sectors);
1653 }
1654 }
1655
1656 return n;
1657}
1658
Peter Lieven2d9187b2017-02-28 13:40:07 +01001659static int coroutine_fn convert_co_read(ImgConvertState *s, int64_t sector_num,
1660 int nb_sectors, uint8_t *buf)
Kevin Wolf690c7302015-03-19 13:33:32 +01001661{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001662 int n, ret;
1663 QEMUIOVector qiov;
1664 struct iovec iov;
Kevin Wolf690c7302015-03-19 13:33:32 +01001665
Kevin Wolf690c7302015-03-19 13:33:32 +01001666 assert(nb_sectors <= s->buf_sectors);
1667 while (nb_sectors > 0) {
1668 BlockBackend *blk;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001669 int src_cur;
1670 int64_t bs_sectors, src_cur_offset;
Kevin Wolf690c7302015-03-19 13:33:32 +01001671
1672 /* In the case of compression with multiple source files, we can get a
1673 * nb_sectors that spreads into the next part. So we must be able to
1674 * read across multiple BDSes for one convert_read() call. */
Peter Lieven2d9187b2017-02-28 13:40:07 +01001675 convert_select_part(s, sector_num, &src_cur, &src_cur_offset);
1676 blk = s->src[src_cur];
1677 bs_sectors = s->src_sectors[src_cur];
Kevin Wolf690c7302015-03-19 13:33:32 +01001678
Peter Lieven2d9187b2017-02-28 13:40:07 +01001679 n = MIN(nb_sectors, bs_sectors - (sector_num - src_cur_offset));
1680 iov.iov_base = buf;
1681 iov.iov_len = n << BDRV_SECTOR_BITS;
1682 qemu_iovec_init_external(&qiov, &iov, 1);
1683
1684 ret = blk_co_preadv(
1685 blk, (sector_num - src_cur_offset) << BDRV_SECTOR_BITS,
1686 n << BDRV_SECTOR_BITS, &qiov, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001687 if (ret < 0) {
1688 return ret;
1689 }
1690
1691 sector_num += n;
1692 nb_sectors -= n;
1693 buf += n * BDRV_SECTOR_SIZE;
1694 }
1695
1696 return 0;
1697}
1698
Peter Lieven2d9187b2017-02-28 13:40:07 +01001699
1700static int coroutine_fn convert_co_write(ImgConvertState *s, int64_t sector_num,
1701 int nb_sectors, uint8_t *buf,
1702 enum ImgConvertBlockStatus status)
Kevin Wolf690c7302015-03-19 13:33:32 +01001703{
1704 int ret;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001705 QEMUIOVector qiov;
1706 struct iovec iov;
Kevin Wolf690c7302015-03-19 13:33:32 +01001707
1708 while (nb_sectors > 0) {
1709 int n = nb_sectors;
Lidong Chendb933fb2017-04-27 10:58:27 +08001710 BdrvRequestFlags flags = s->compressed ? BDRV_REQ_WRITE_COMPRESSED : 0;
1711
Peter Lieven2d9187b2017-02-28 13:40:07 +01001712 switch (status) {
Kevin Wolf690c7302015-03-19 13:33:32 +01001713 case BLK_BACKING_FILE:
1714 /* If we have a backing file, leave clusters unallocated that are
1715 * unallocated in the source image, so that the backing file is
1716 * visible at the respective offset. */
1717 assert(s->target_has_backing);
1718 break;
1719
1720 case BLK_DATA:
Lidong Chendb933fb2017-04-27 10:58:27 +08001721 /* If we're told to keep the target fully allocated (-S 0) or there
1722 * is real non-zero data, we must write it. Otherwise we can treat
1723 * it as zero sectors.
1724 * Compressed clusters need to be written as a whole, so in that
1725 * case we can only save the write if the buffer is completely
1726 * zeroed. */
Kevin Wolf690c7302015-03-19 13:33:32 +01001727 if (!s->min_sparse ||
Lidong Chendb933fb2017-04-27 10:58:27 +08001728 (!s->compressed &&
1729 is_allocated_sectors_min(buf, n, &n, s->min_sparse)) ||
1730 (s->compressed &&
1731 !buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)))
Kevin Wolf690c7302015-03-19 13:33:32 +01001732 {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001733 iov.iov_base = buf;
1734 iov.iov_len = n << BDRV_SECTOR_BITS;
1735 qemu_iovec_init_external(&qiov, &iov, 1);
1736
1737 ret = blk_co_pwritev(s->target, sector_num << BDRV_SECTOR_BITS,
Lidong Chendb933fb2017-04-27 10:58:27 +08001738 n << BDRV_SECTOR_BITS, &qiov, flags);
Kevin Wolf690c7302015-03-19 13:33:32 +01001739 if (ret < 0) {
1740 return ret;
1741 }
1742 break;
1743 }
1744 /* fall-through */
1745
1746 case BLK_ZERO:
1747 if (s->has_zero_init) {
Lidong Chendb933fb2017-04-27 10:58:27 +08001748 assert(!s->target_has_backing);
Kevin Wolf690c7302015-03-19 13:33:32 +01001749 break;
1750 }
Peter Lieven2d9187b2017-02-28 13:40:07 +01001751 ret = blk_co_pwrite_zeroes(s->target,
1752 sector_num << BDRV_SECTOR_BITS,
1753 n << BDRV_SECTOR_BITS, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001754 if (ret < 0) {
1755 return ret;
1756 }
1757 break;
1758 }
1759
1760 sector_num += n;
1761 nb_sectors -= n;
1762 buf += n * BDRV_SECTOR_SIZE;
1763 }
1764
1765 return 0;
1766}
1767
Peter Lieven2d9187b2017-02-28 13:40:07 +01001768static void coroutine_fn convert_co_do_copy(void *opaque)
1769{
1770 ImgConvertState *s = opaque;
1771 uint8_t *buf = NULL;
1772 int ret, i;
1773 int index = -1;
1774
1775 for (i = 0; i < s->num_coroutines; i++) {
1776 if (s->co[i] == qemu_coroutine_self()) {
1777 index = i;
1778 break;
1779 }
1780 }
1781 assert(index >= 0);
1782
1783 s->running_coroutines++;
1784 buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE);
1785
1786 while (1) {
1787 int n;
1788 int64_t sector_num;
1789 enum ImgConvertBlockStatus status;
1790
1791 qemu_co_mutex_lock(&s->lock);
1792 if (s->ret != -EINPROGRESS || s->sector_num >= s->total_sectors) {
1793 qemu_co_mutex_unlock(&s->lock);
Anton Nefedovb91127e2017-04-26 11:33:15 +03001794 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001795 }
1796 n = convert_iteration_sectors(s, s->sector_num);
1797 if (n < 0) {
1798 qemu_co_mutex_unlock(&s->lock);
1799 s->ret = n;
Anton Nefedovb91127e2017-04-26 11:33:15 +03001800 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001801 }
1802 /* save current sector and allocation status to local variables */
1803 sector_num = s->sector_num;
1804 status = s->status;
1805 if (!s->min_sparse && s->status == BLK_ZERO) {
1806 n = MIN(n, s->buf_sectors);
1807 }
1808 /* increment global sector counter so that other coroutines can
1809 * already continue reading beyond this request */
1810 s->sector_num += n;
1811 qemu_co_mutex_unlock(&s->lock);
1812
1813 if (status == BLK_DATA || (!s->min_sparse && status == BLK_ZERO)) {
1814 s->allocated_done += n;
1815 qemu_progress_print(100.0 * s->allocated_done /
1816 s->allocated_sectors, 0);
1817 }
1818
1819 if (status == BLK_DATA) {
1820 ret = convert_co_read(s, sector_num, n, buf);
1821 if (ret < 0) {
1822 error_report("error while reading sector %" PRId64
1823 ": %s", sector_num, strerror(-ret));
1824 s->ret = ret;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001825 }
1826 } else if (!s->min_sparse && status == BLK_ZERO) {
1827 status = BLK_DATA;
1828 memset(buf, 0x00, n * BDRV_SECTOR_SIZE);
1829 }
1830
1831 if (s->wr_in_order) {
1832 /* keep writes in order */
Anton Nefedovb91127e2017-04-26 11:33:15 +03001833 while (s->wr_offs != sector_num && s->ret == -EINPROGRESS) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001834 s->wait_sector_num[index] = sector_num;
1835 qemu_coroutine_yield();
1836 }
1837 s->wait_sector_num[index] = -1;
1838 }
1839
Anton Nefedovb91127e2017-04-26 11:33:15 +03001840 if (s->ret == -EINPROGRESS) {
1841 ret = convert_co_write(s, sector_num, n, buf, status);
1842 if (ret < 0) {
1843 error_report("error while writing sector %" PRId64
1844 ": %s", sector_num, strerror(-ret));
1845 s->ret = ret;
1846 }
Peter Lieven2d9187b2017-02-28 13:40:07 +01001847 }
1848
1849 if (s->wr_in_order) {
1850 /* reenter the coroutine that might have waited
1851 * for this write to complete */
1852 s->wr_offs = sector_num + n;
1853 for (i = 0; i < s->num_coroutines; i++) {
1854 if (s->co[i] && s->wait_sector_num[i] == s->wr_offs) {
1855 /*
1856 * A -> B -> A cannot occur because A has
1857 * s->wait_sector_num[i] == -1 during A -> B. Therefore
1858 * B will never enter A during this time window.
1859 */
1860 qemu_coroutine_enter(s->co[i]);
1861 break;
1862 }
1863 }
1864 }
1865 }
1866
Peter Lieven2d9187b2017-02-28 13:40:07 +01001867 qemu_vfree(buf);
1868 s->co[index] = NULL;
1869 s->running_coroutines--;
1870 if (!s->running_coroutines && s->ret == -EINPROGRESS) {
1871 /* the convert job finished successfully */
1872 s->ret = 0;
1873 }
1874}
1875
Kevin Wolf690c7302015-03-19 13:33:32 +01001876static int convert_do_copy(ImgConvertState *s)
1877{
Peter Lieven2d9187b2017-02-28 13:40:07 +01001878 int ret, i, n;
1879 int64_t sector_num = 0;
Kevin Wolf690c7302015-03-19 13:33:32 +01001880
1881 /* Check whether we have zero initialisation or can get it efficiently */
1882 s->has_zero_init = s->min_sparse && !s->target_has_backing
1883 ? bdrv_has_zero_init(blk_bs(s->target))
1884 : false;
1885
1886 if (!s->has_zero_init && !s->target_has_backing &&
1887 bdrv_can_write_zeroes_with_unmap(blk_bs(s->target)))
1888 {
Kevin Wolf720ff282016-06-16 15:13:15 +02001889 ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP);
Kevin Wolf690c7302015-03-19 13:33:32 +01001890 if (ret == 0) {
1891 s->has_zero_init = true;
1892 }
1893 }
1894
1895 /* Allocate buffer for copied data. For compressed images, only one cluster
1896 * can be copied at a time. */
1897 if (s->compressed) {
1898 if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) {
1899 error_report("invalid cluster size");
Peter Lieven2d9187b2017-02-28 13:40:07 +01001900 return -EINVAL;
Kevin Wolf690c7302015-03-19 13:33:32 +01001901 }
1902 s->buf_sectors = s->cluster_sectors;
1903 }
Kevin Wolf690c7302015-03-19 13:33:32 +01001904
Kevin Wolf690c7302015-03-19 13:33:32 +01001905 while (sector_num < s->total_sectors) {
1906 n = convert_iteration_sectors(s, sector_num);
1907 if (n < 0) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001908 return n;
Kevin Wolf690c7302015-03-19 13:33:32 +01001909 }
Max Reitzaad15de2016-03-24 23:33:57 +01001910 if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO))
1911 {
Kevin Wolf690c7302015-03-19 13:33:32 +01001912 s->allocated_sectors += n;
1913 }
1914 sector_num += n;
1915 }
1916
1917 /* Do the copy */
Kevin Wolf690c7302015-03-19 13:33:32 +01001918 s->sector_next_status = 0;
Peter Lieven2d9187b2017-02-28 13:40:07 +01001919 s->ret = -EINPROGRESS;
Kevin Wolf690c7302015-03-19 13:33:32 +01001920
Peter Lieven2d9187b2017-02-28 13:40:07 +01001921 qemu_co_mutex_init(&s->lock);
1922 for (i = 0; i < s->num_coroutines; i++) {
1923 s->co[i] = qemu_coroutine_create(convert_co_do_copy, s);
1924 s->wait_sector_num[i] = -1;
1925 qemu_coroutine_enter(s->co[i]);
Kevin Wolf690c7302015-03-19 13:33:32 +01001926 }
1927
Anton Nefedovb91127e2017-04-26 11:33:15 +03001928 while (s->running_coroutines) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001929 main_loop_wait(false);
1930 }
1931
1932 if (s->compressed && !s->ret) {
Kevin Wolf690c7302015-03-19 13:33:32 +01001933 /* signal EOF to align */
Pavel Butsykinfe5c1352016-07-22 11:17:40 +03001934 ret = blk_pwrite_compressed(s->target, 0, NULL, 0);
Kevin Wolf690c7302015-03-19 13:33:32 +01001935 if (ret < 0) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01001936 return ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001937 }
1938 }
1939
Peter Lieven2d9187b2017-02-28 13:40:07 +01001940 return s->ret;
Kevin Wolf690c7302015-03-19 13:33:32 +01001941}
1942
bellardea2384d2004-08-01 21:59:26 +00001943static int img_convert(int argc, char **argv)
1944{
Peter Lieven9fd77f92017-04-21 11:11:55 +02001945 int c, bs_i, flags, src_flags = 0;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001946 const char *fmt = NULL, *out_fmt = NULL, *cache = "unsafe",
Peter Lieven9fd77f92017-04-21 11:11:55 +02001947 *src_cache = BDRV_DEFAULT_CACHE, *out_baseimg = NULL,
1948 *out_filename, *out_baseimg_param, *snapshot_name = NULL;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001949 BlockDriver *drv = NULL, *proto_drv = NULL;
bellardfaea38e2006-08-05 21:31:00 +00001950 BlockDriverInfo bdi;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001951 BlockDriverState *out_bs;
1952 QemuOpts *opts = NULL, *sn_opts = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08001953 QemuOptsList *create_opts = NULL;
Kevin Wolfefa84d42009-05-18 16:42:12 +02001954 char *options = NULL;
Max Reitzcc84d902013-09-06 17:14:26 +02001955 Error *local_err = NULL;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001956 bool writethrough, src_writethrough, quiet = false, image_opts = false,
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001957 skip_create = false, progress = false, tgt_image_opts = false;
Peter Lieven9fd77f92017-04-21 11:11:55 +02001958 int64_t ret = -EINVAL;
Fam Zheng335e9932017-05-03 00:35:39 +08001959 bool force_share = false;
bellardea2384d2004-08-01 21:59:26 +00001960
Peter Lieven9fd77f92017-04-21 11:11:55 +02001961 ImgConvertState s = (ImgConvertState) {
1962 /* Need at least 4k of zeros for sparse detection */
1963 .min_sparse = 8,
1964 .buf_sectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE,
1965 .wr_in_order = true,
1966 .num_coroutines = 8,
1967 };
1968
bellardea2384d2004-08-01 21:59:26 +00001969 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001970 static const struct option long_options[] = {
1971 {"help", no_argument, 0, 'h'},
1972 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00001973 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08001974 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01001975 {"target-image-opts", no_argument, 0, OPTION_TARGET_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001976 {0, 0, 0, 0}
1977 };
Daniel P. Berrange6b4df542017-07-04 13:30:09 +01001978 c = getopt_long(argc, argv, ":hf:O:B:co:s:l:S:pt:T:qnm:WU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00001979 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001980 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001981 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001982 }
bellardea2384d2004-08-01 21:59:26 +00001983 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001984 case ':':
1985 missing_argument(argv[optind - 1]);
1986 break;
Jes Sorensenef873942010-12-06 15:25:40 +01001987 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08001988 unrecognized_option(argv[optind - 1]);
1989 break;
bellardea2384d2004-08-01 21:59:26 +00001990 case 'h':
1991 help();
1992 break;
1993 case 'f':
1994 fmt = optarg;
1995 break;
1996 case 'O':
1997 out_fmt = optarg;
1998 break;
thsf58c7b32008-06-05 21:53:49 +00001999 case 'B':
2000 out_baseimg = optarg;
2001 break;
bellardea2384d2004-08-01 21:59:26 +00002002 case 'c':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002003 s.compressed = true;
bellardea2384d2004-08-01 21:59:26 +00002004 break;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002005 case 'o':
Kevin Wolf2dc83282014-02-21 16:24:05 +01002006 if (!is_valid_option_list(optarg)) {
2007 error_report("Invalid option list: %s", optarg);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002008 goto fail_getopt;
Kevin Wolf2dc83282014-02-21 16:24:05 +01002009 }
2010 if (!options) {
2011 options = g_strdup(optarg);
2012 } else {
2013 char *old_options = options;
2014 options = g_strdup_printf("%s,%s", options, optarg);
2015 g_free(old_options);
2016 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002017 break;
edison51ef6722010-09-21 19:58:41 -07002018 case 's':
2019 snapshot_name = optarg;
2020 break;
Wenchao Xiaef806542013-12-04 17:10:57 +08002021 case 'l':
2022 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +01002023 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
2024 optarg, false);
Wenchao Xiaef806542013-12-04 17:10:57 +08002025 if (!sn_opts) {
2026 error_report("Failed in parsing snapshot param '%s'",
2027 optarg);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002028 goto fail_getopt;
Wenchao Xiaef806542013-12-04 17:10:57 +08002029 }
2030 } else {
2031 snapshot_name = optarg;
2032 }
2033 break;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002034 case 'S':
2035 {
2036 int64_t sval;
Markus Armbruster606caa02017-02-21 21:14:04 +01002037
2038 sval = cvtnum(optarg);
2039 if (sval < 0) {
Kevin Wolfa22f1232011-08-26 15:27:13 +02002040 error_report("Invalid minimum zero buffer size for sparse output specified");
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002041 goto fail_getopt;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002042 }
2043
Peter Lieven9fd77f92017-04-21 11:11:55 +02002044 s.min_sparse = sval / BDRV_SECTOR_SIZE;
Kevin Wolfa22f1232011-08-26 15:27:13 +02002045 break;
2046 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002047 case 'p':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002048 progress = true;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002049 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002050 case 't':
2051 cache = optarg;
2052 break;
Max Reitz40055952014-07-22 22:58:42 +02002053 case 'T':
2054 src_cache = optarg;
2055 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002056 case 'q':
2057 quiet = true;
2058 break;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002059 case 'n':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002060 skip_create = true;
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002061 break;
Peter Lieven2d9187b2017-02-28 13:40:07 +01002062 case 'm':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002063 if (qemu_strtol(optarg, NULL, 0, &s.num_coroutines) ||
2064 s.num_coroutines < 1 || s.num_coroutines > MAX_COROUTINES) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01002065 error_report("Invalid number of coroutines. Allowed number of"
2066 " coroutines is between 1 and %d", MAX_COROUTINES);
Peter Lieven2d9187b2017-02-28 13:40:07 +01002067 goto fail_getopt;
2068 }
2069 break;
2070 case 'W':
Peter Lieven9fd77f92017-04-21 11:11:55 +02002071 s.wr_in_order = false;
Peter Lieven2d9187b2017-02-28 13:40:07 +01002072 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002073 case 'U':
2074 force_share = true;
2075 break;
Max Reitz3258b912017-04-26 15:46:47 +02002076 case OPTION_OBJECT: {
2077 QemuOpts *object_opts;
2078 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
2079 optarg, true);
2080 if (!object_opts) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002081 goto fail_getopt;
2082 }
2083 break;
Max Reitz3258b912017-04-26 15:46:47 +02002084 }
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002085 case OPTION_IMAGE_OPTS:
2086 image_opts = true;
2087 break;
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002088 case OPTION_TARGET_IMAGE_OPTS:
2089 tgt_image_opts = true;
2090 break;
bellardea2384d2004-08-01 21:59:26 +00002091 }
2092 }
ths3b46e622007-09-17 08:09:54 +00002093
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002094 if (!out_fmt && !tgt_image_opts) {
2095 out_fmt = "raw";
2096 }
2097
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002098 if (qemu_opts_foreach(&qemu_object_opts,
2099 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002100 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002101 goto fail_getopt;
2102 }
2103
Peter Lieven9fd77f92017-04-21 11:11:55 +02002104 if (!s.wr_in_order && s.compressed) {
Peter Lieven2d9187b2017-02-28 13:40:07 +01002105 error_report("Out of order write and compress are mutually exclusive");
Peter Lieven9fd77f92017-04-21 11:11:55 +02002106 goto fail_getopt;
2107 }
2108
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002109 if (tgt_image_opts && !skip_create) {
2110 error_report("--target-image-opts requires use of -n flag");
2111 goto fail_getopt;
2112 }
2113
Peter Lieven9fd77f92017-04-21 11:11:55 +02002114 s.src_num = argc - optind - 1;
2115 out_filename = s.src_num >= 1 ? argv[argc - 1] : NULL;
2116
2117 if (options && has_help_option(options)) {
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002118 if (out_fmt) {
2119 ret = print_block_option_help(out_filename, out_fmt);
2120 goto fail_getopt;
2121 } else {
2122 error_report("Option help requires a format be specified");
2123 goto fail_getopt;
2124 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002125 }
2126
2127 if (s.src_num < 1) {
2128 error_report("Must specify image file name");
2129 goto fail_getopt;
2130 }
2131
2132
Peter Lieven9fd77f92017-04-21 11:11:55 +02002133 /* ret is still -EINVAL until here */
2134 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
2135 if (ret < 0) {
2136 error_report("Invalid source cache option: %s", src_cache);
Peter Lieven2d9187b2017-02-28 13:40:07 +01002137 goto fail_getopt;
2138 }
2139
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002140 /* Initialize before goto out */
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002141 if (quiet) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002142 progress = false;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002143 }
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002144 qemu_progress_init(progress, 1.0);
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002145 qemu_progress_print(0, 100);
2146
Peter Lieven9fd77f92017-04-21 11:11:55 +02002147 s.src = g_new0(BlockBackend *, s.src_num);
2148 s.src_sectors = g_new(int64_t, s.src_num);
balrog926c2d22007-10-31 01:11:44 +00002149
Peter Lieven9fd77f92017-04-21 11:11:55 +02002150 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2151 s.src[bs_i] = img_open(image_opts, argv[optind + bs_i],
Fam Zheng335e9932017-05-03 00:35:39 +08002152 fmt, src_flags, src_writethrough, quiet,
2153 force_share);
Peter Lieven9fd77f92017-04-21 11:11:55 +02002154 if (!s.src[bs_i]) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002155 ret = -1;
2156 goto out;
2157 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002158 s.src_sectors[bs_i] = blk_nb_sectors(s.src[bs_i]);
2159 if (s.src_sectors[bs_i] < 0) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002160 error_report("Could not get size of %s: %s",
Peter Lieven9fd77f92017-04-21 11:11:55 +02002161 argv[optind + bs_i], strerror(-s.src_sectors[bs_i]));
Markus Armbruster52bf1e72014-06-26 13:23:25 +02002162 ret = -1;
2163 goto out;
2164 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002165 s.total_sectors += s.src_sectors[bs_i];
balrog926c2d22007-10-31 01:11:44 +00002166 }
bellardea2384d2004-08-01 21:59:26 +00002167
Wenchao Xiaef806542013-12-04 17:10:57 +08002168 if (sn_opts) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002169 bdrv_snapshot_load_tmp(blk_bs(s.src[0]),
Peter Maydell10d6eda2017-02-10 16:28:24 +00002170 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
2171 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
2172 &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08002173 } else if (snapshot_name != NULL) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002174 if (s.src_num > 1) {
Markus Armbruster6daf1942011-06-22 14:03:54 +02002175 error_report("No support for concatenating multiple snapshot");
edison51ef6722010-09-21 19:58:41 -07002176 ret = -1;
2177 goto out;
2178 }
Wenchao Xia7b4c4782013-12-04 17:10:54 +08002179
Peter Lieven9fd77f92017-04-21 11:11:55 +02002180 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(s.src[0]), snapshot_name,
2181 &local_err);
Wenchao Xiaef806542013-12-04 17:10:57 +08002182 }
Markus Armbruster84d18f02014-01-30 15:07:28 +01002183 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002184 error_reportf_err(local_err, "Failed to load snapshot: ");
Wenchao Xiaef806542013-12-04 17:10:57 +08002185 ret = -1;
2186 goto out;
edison51ef6722010-09-21 19:58:41 -07002187 }
2188
Max Reitz2e024cd2015-02-11 09:58:46 -05002189 if (!skip_create) {
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002190 /* Find driver and parse its options */
2191 drv = bdrv_find_format(out_fmt);
2192 if (!drv) {
2193 error_report("Unknown file format '%s'", out_fmt);
2194 ret = -1;
2195 goto out;
2196 }
2197
2198 proto_drv = bdrv_find_protocol(out_filename, true, &local_err);
2199 if (!proto_drv) {
2200 error_report_err(local_err);
2201 ret = -1;
2202 goto out;
2203 }
2204
Max Reitz2e024cd2015-02-11 09:58:46 -05002205 if (!drv->create_opts) {
2206 error_report("Format driver '%s' does not support image creation",
2207 drv->format_name);
2208 ret = -1;
2209 goto out;
2210 }
Max Reitzf75613c2014-12-02 18:32:46 +01002211
Max Reitz2e024cd2015-02-11 09:58:46 -05002212 if (!proto_drv->create_opts) {
2213 error_report("Protocol driver '%s' does not support image creation",
2214 proto_drv->format_name);
2215 ret = -1;
2216 goto out;
2217 }
Max Reitzf75613c2014-12-02 18:32:46 +01002218
Max Reitz2e024cd2015-02-11 09:58:46 -05002219 create_opts = qemu_opts_append(create_opts, drv->create_opts);
2220 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Kevin Wolfdb08adf2009-06-04 15:39:38 +02002221
Max Reitz2e024cd2015-02-11 09:58:46 -05002222 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002223 if (options) {
2224 qemu_opts_do_parse(opts, options, NULL, &local_err);
2225 if (local_err) {
Markus Armbruster97a2ca72015-03-14 10:23:15 +01002226 error_report_err(local_err);
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01002227 ret = -1;
2228 goto out;
2229 }
Max Reitz2e024cd2015-02-11 09:58:46 -05002230 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002231
Peter Lieven9fd77f92017-04-21 11:11:55 +02002232 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, s.total_sectors * 512,
Markus Armbruster39101f22015-02-12 16:46:36 +01002233 &error_abort);
Max Reitz2e024cd2015-02-11 09:58:46 -05002234 ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL);
2235 if (ret < 0) {
2236 goto out;
2237 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002238 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002239
Kevin Wolfa18953f2010-10-14 15:46:04 +02002240 /* Get backing file name if -o backing_file was used */
Chunyan Liu83d05212014-06-05 17:20:51 +08002241 out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
Kevin Wolfa18953f2010-10-14 15:46:04 +02002242 if (out_baseimg_param) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002243 out_baseimg = out_baseimg_param;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002244 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002245 s.target_has_backing = (bool) out_baseimg;
Kevin Wolfa18953f2010-10-14 15:46:04 +02002246
Max Reitz48758a82017-04-26 15:46:48 +02002247 if (s.src_num > 1 && out_baseimg) {
2248 error_report("Having a backing file for the target makes no sense when "
2249 "concatenating multiple input images");
2250 ret = -1;
2251 goto out;
2252 }
2253
Kevin Wolfefa84d42009-05-18 16:42:12 +02002254 /* Check if compression is supported */
Peter Lieven9fd77f92017-04-21 11:11:55 +02002255 if (s.compressed) {
Chunyan Liu83d05212014-06-05 17:20:51 +08002256 bool encryption =
2257 qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false);
Daniel P. Berrange0cb8d472017-06-23 17:24:06 +01002258 const char *encryptfmt =
2259 qemu_opt_get(opts, BLOCK_OPT_ENCRYPT_FORMAT);
Chunyan Liu83d05212014-06-05 17:20:51 +08002260 const char *preallocation =
2261 qemu_opt_get(opts, BLOCK_OPT_PREALLOC);
Kevin Wolfefa84d42009-05-18 16:42:12 +02002262
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002263 if (drv && !drv->bdrv_co_pwritev_compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002264 error_report("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002265 ret = -1;
2266 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002267 }
2268
Daniel P. Berrange0cb8d472017-06-23 17:24:06 +01002269 if (encryption || encryptfmt) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002270 error_report("Compression and encryption not supported at "
2271 "the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002272 ret = -1;
2273 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +02002274 }
Kevin Wolf41521fa2011-10-18 16:19:42 +02002275
Chunyan Liu83d05212014-06-05 17:20:51 +08002276 if (preallocation
2277 && strcmp(preallocation, "off"))
Kevin Wolf41521fa2011-10-18 16:19:42 +02002278 {
2279 error_report("Compression and preallocation not supported at "
2280 "the same time");
2281 ret = -1;
2282 goto out;
2283 }
Kevin Wolfefa84d42009-05-18 16:42:12 +02002284 }
2285
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002286 if (!skip_create) {
2287 /* Create the new image */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002288 ret = bdrv_create(drv, out_filename, opts, &local_err);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002289 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01002290 error_reportf_err(local_err, "%s: error while converting %s: ",
2291 out_filename, out_fmt);
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002292 goto out;
bellardea2384d2004-08-01 21:59:26 +00002293 }
2294 }
ths3b46e622007-09-17 08:09:54 +00002295
Peter Lieven9fd77f92017-04-21 11:11:55 +02002296 flags = s.min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR;
Kevin Wolfce099542016-03-15 13:01:04 +01002297 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002298 if (ret < 0) {
2299 error_report("Invalid cache option: %s", cache);
Markus Armbrusterbb9cd2e2014-05-28 11:17:07 +02002300 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04002301 }
2302
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002303 if (skip_create) {
2304 s.target = img_open(tgt_image_opts, out_filename, out_fmt,
2305 flags, writethrough, quiet, false);
2306 } else {
2307 /* TODO ultimately we should allow --target-image-opts
2308 * to be used even when -n is not given.
2309 * That has to wait for bdrv_create to be improved
2310 * to allow filenames in option syntax
2311 */
Daniel P. Berrange29cf9332017-05-15 17:47:12 +01002312 s.target = img_open_new_file(out_filename, opts, out_fmt,
2313 flags, writethrough, quiet, false);
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002314 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002315 if (!s.target) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002316 ret = -1;
2317 goto out;
2318 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002319 out_bs = blk_bs(s.target);
bellardea2384d2004-08-01 21:59:26 +00002320
Daniel P. Berrange305b4c62017-05-15 17:47:11 +01002321 if (s.compressed && !out_bs->drv->bdrv_co_pwritev_compressed) {
2322 error_report("Compression not supported for this file format");
2323 ret = -1;
2324 goto out;
2325 }
2326
Eric Blake5def6b82016-06-23 16:37:19 -06002327 /* increase bufsectors from the default 4096 (2M) if opt_transfer
Peter Lievenf2521c92013-11-27 11:07:06 +01002328 * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB)
2329 * as maximum. */
Peter Lieven9fd77f92017-04-21 11:11:55 +02002330 s.buf_sectors = MIN(32768,
2331 MAX(s.buf_sectors,
2332 MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS,
2333 out_bs->bl.pdiscard_alignment >>
2334 BDRV_SECTOR_BITS)));
Peter Lievenf2521c92013-11-27 11:07:06 +01002335
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002336 if (skip_create) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002337 int64_t output_sectors = blk_nb_sectors(s.target);
Markus Armbruster43716fa2014-06-26 13:23:21 +02002338 if (output_sectors < 0) {
Gongleieec5eb42015-02-25 12:22:27 +08002339 error_report("unable to get output image length: %s",
Markus Armbruster43716fa2014-06-26 13:23:21 +02002340 strerror(-output_sectors));
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002341 ret = -1;
2342 goto out;
Peter Lieven9fd77f92017-04-21 11:11:55 +02002343 } else if (output_sectors < s.total_sectors) {
Alexandre Derumierb2e10492013-09-02 19:07:24 +01002344 error_report("output file is smaller than input file");
2345 ret = -1;
2346 goto out;
2347 }
2348 }
2349
Peter Lieven24f833c2013-11-27 11:07:07 +01002350 ret = bdrv_get_info(out_bs, &bdi);
2351 if (ret < 0) {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002352 if (s.compressed) {
Jes Sorensen15654a62010-12-16 14:31:53 +01002353 error_report("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002354 goto out;
2355 }
Peter Lieven24f833c2013-11-27 11:07:07 +01002356 } else {
Peter Lieven9fd77f92017-04-21 11:11:55 +02002357 s.compressed = s.compressed || bdi.needs_compressed_writes;
2358 s.cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE;
Peter Lieven24f833c2013-11-27 11:07:07 +01002359 }
2360
Peter Lieven9fd77f92017-04-21 11:11:55 +02002361 ret = convert_do_copy(&s);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002362out:
Peter Lieven13c28af2013-11-27 11:07:01 +01002363 if (!ret) {
2364 qemu_progress_print(100, 0);
2365 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02002366 qemu_progress_end();
Chunyan Liu83d05212014-06-05 17:20:51 +08002367 qemu_opts_del(opts);
2368 qemu_opts_free(create_opts);
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02002369 qemu_opts_del(sn_opts);
Peter Lieven9fd77f92017-04-21 11:11:55 +02002370 blk_unref(s.target);
2371 if (s.src) {
2372 for (bs_i = 0; bs_i < s.src_num; bs_i++) {
2373 blk_unref(s.src[bs_i]);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002374 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002375 g_free(s.src);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002376 }
Peter Lieven9fd77f92017-04-21 11:11:55 +02002377 g_free(s.src_sectors);
Kevin Wolf64bb01a2014-03-03 14:54:07 +01002378fail_getopt:
2379 g_free(options);
2380
Peter Lieven9fd77f92017-04-21 11:11:55 +02002381 return !!ret;
bellardea2384d2004-08-01 21:59:26 +00002382}
2383
bellard57d1a2b2004-08-03 21:15:11 +00002384
bellardfaea38e2006-08-05 21:31:00 +00002385static void dump_snapshots(BlockDriverState *bs)
2386{
2387 QEMUSnapshotInfo *sn_tab, *sn;
2388 int nb_sns, i;
bellardfaea38e2006-08-05 21:31:00 +00002389
2390 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
2391 if (nb_sns <= 0)
2392 return;
2393 printf("Snapshot list:\n");
Wenchao Xia5b917042013-05-25 11:09:45 +08002394 bdrv_snapshot_dump(fprintf, stdout, NULL);
2395 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002396 for(i = 0; i < nb_sns; i++) {
2397 sn = &sn_tab[i];
Wenchao Xia5b917042013-05-25 11:09:45 +08002398 bdrv_snapshot_dump(fprintf, stdout, sn);
2399 printf("\n");
bellardfaea38e2006-08-05 21:31:00 +00002400 }
Anthony Liguori7267c092011-08-20 22:09:37 -05002401 g_free(sn_tab);
bellardfaea38e2006-08-05 21:31:00 +00002402}
2403
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002404static void dump_json_image_info_list(ImageInfoList *list)
2405{
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002406 QString *str;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002407 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002408 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002409
2410 visit_type_ImageInfoList(v, NULL, &list, &error_abort);
2411 visit_complete(v, &obj);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002412 str = qobject_to_json_pretty(obj);
2413 assert(str != NULL);
2414 printf("%s\n", qstring_get_str(str));
2415 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002416 visit_free(v);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002417 QDECREF(str);
2418}
2419
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002420static void dump_json_image_info(ImageInfo *info)
2421{
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002422 QString *str;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002423 QObject *obj;
Daniel P. Berrange7d5e1992016-09-30 15:45:28 +01002424 Visitor *v = qobject_output_visitor_new(&obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002425
2426 visit_type_ImageInfo(v, NULL, &info, &error_abort);
2427 visit_complete(v, &obj);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002428 str = qobject_to_json_pretty(obj);
2429 assert(str != NULL);
2430 printf("%s\n", qstring_get_str(str));
2431 qobject_decref(obj);
Eric Blake3b098d52016-06-09 10:48:43 -06002432 visit_free(v);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002433 QDECREF(str);
2434}
2435
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002436static void dump_human_image_info_list(ImageInfoList *list)
2437{
2438 ImageInfoList *elem;
2439 bool delim = false;
2440
2441 for (elem = list; elem; elem = elem->next) {
2442 if (delim) {
2443 printf("\n");
2444 }
2445 delim = true;
2446
Wenchao Xia5b917042013-05-25 11:09:45 +08002447 bdrv_image_info_dump(fprintf, stdout, elem->value);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002448 }
2449}
2450
2451static gboolean str_equal_func(gconstpointer a, gconstpointer b)
2452{
2453 return strcmp(a, b) == 0;
2454}
2455
2456/**
2457 * Open an image file chain and return an ImageInfoList
2458 *
2459 * @filename: topmost image filename
2460 * @fmt: topmost image format (may be NULL to autodetect)
2461 * @chain: true - enumerate entire backing file chain
2462 * false - only topmost image file
2463 *
2464 * Returns a list of ImageInfo objects or NULL if there was an error opening an
2465 * image file. If there was an error a message will have been printed to
2466 * stderr.
2467 */
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002468static ImageInfoList *collect_image_info_list(bool image_opts,
2469 const char *filename,
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002470 const char *fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08002471 bool chain, bool force_share)
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002472{
2473 ImageInfoList *head = NULL;
2474 ImageInfoList **last = &head;
2475 GHashTable *filenames;
Wenchao Xia43526ec2013-06-06 12:27:58 +08002476 Error *err = NULL;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002477
2478 filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL);
2479
2480 while (filename) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02002481 BlockBackend *blk;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002482 BlockDriverState *bs;
2483 ImageInfo *info;
2484 ImageInfoList *elem;
2485
2486 if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) {
2487 error_report("Backing file '%s' creates an infinite loop.",
2488 filename);
2489 goto err;
2490 }
2491 g_hash_table_insert(filenames, (gpointer)filename, NULL);
2492
Max Reitzefaa7c42016-03-16 19:54:38 +01002493 blk = img_open(image_opts, filename, fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08002494 BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false,
2495 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002496 if (!blk) {
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002497 goto err;
2498 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002499 bs = blk_bs(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002500
Wenchao Xia43526ec2013-06-06 12:27:58 +08002501 bdrv_query_image_info(bs, &info, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01002502 if (err) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01002503 error_report_err(err);
Markus Armbruster26f54e92014-10-07 13:59:04 +02002504 blk_unref(blk);
Wenchao Xia43526ec2013-06-06 12:27:58 +08002505 goto err;
Wenchao Xiafb0ed452013-06-06 12:27:57 +08002506 }
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002507
2508 elem = g_new0(ImageInfoList, 1);
2509 elem->value = info;
2510 *last = elem;
2511 last = &elem->next;
2512
Markus Armbruster26f54e92014-10-07 13:59:04 +02002513 blk_unref(blk);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002514
2515 filename = fmt = NULL;
2516 if (chain) {
2517 if (info->has_full_backing_filename) {
2518 filename = info->full_backing_filename;
2519 } else if (info->has_backing_filename) {
John Snow92d617a2015-12-14 14:55:15 -05002520 error_report("Could not determine absolute backing filename,"
2521 " but backing filename '%s' present",
2522 info->backing_filename);
2523 goto err;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002524 }
2525 if (info->has_backing_filename_format) {
2526 fmt = info->backing_filename_format;
2527 }
2528 }
2529 }
2530 g_hash_table_destroy(filenames);
2531 return head;
2532
2533err:
2534 qapi_free_ImageInfoList(head);
2535 g_hash_table_destroy(filenames);
2536 return NULL;
2537}
2538
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002539static int img_info(int argc, char **argv)
2540{
2541 int c;
2542 OutputFormat output_format = OFORMAT_HUMAN;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002543 bool chain = false;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002544 const char *filename, *fmt, *output;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002545 ImageInfoList *list;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002546 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002547 bool force_share = false;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002548
bellardea2384d2004-08-01 21:59:26 +00002549 fmt = NULL;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002550 output = NULL;
bellardea2384d2004-08-01 21:59:26 +00002551 for(;;) {
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002552 int option_index = 0;
2553 static const struct option long_options[] = {
2554 {"help", no_argument, 0, 'h'},
2555 {"format", required_argument, 0, 'f'},
2556 {"output", required_argument, 0, OPTION_OUTPUT},
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002557 {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002558 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002559 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002560 {"force-share", no_argument, 0, 'U'},
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002561 {0, 0, 0, 0}
2562 };
Fam Zheng335e9932017-05-03 00:35:39 +08002563 c = getopt_long(argc, argv, ":f:hU",
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002564 long_options, &option_index);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002565 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00002566 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002567 }
bellardea2384d2004-08-01 21:59:26 +00002568 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002569 case ':':
2570 missing_argument(argv[optind - 1]);
2571 break;
Jes Sorensenef873942010-12-06 15:25:40 +01002572 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002573 unrecognized_option(argv[optind - 1]);
2574 break;
bellardea2384d2004-08-01 21:59:26 +00002575 case 'h':
2576 help();
2577 break;
2578 case 'f':
2579 fmt = optarg;
2580 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002581 case 'U':
2582 force_share = true;
2583 break;
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002584 case OPTION_OUTPUT:
2585 output = optarg;
2586 break;
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002587 case OPTION_BACKING_CHAIN:
2588 chain = true;
2589 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002590 case OPTION_OBJECT: {
2591 QemuOpts *opts;
2592 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2593 optarg, true);
2594 if (!opts) {
2595 return 1;
2596 }
2597 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002598 case OPTION_IMAGE_OPTS:
2599 image_opts = true;
2600 break;
bellardea2384d2004-08-01 21:59:26 +00002601 }
2602 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02002603 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002604 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002605 }
bellardea2384d2004-08-01 21:59:26 +00002606 filename = argv[optind++];
2607
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002608 if (output && !strcmp(output, "json")) {
2609 output_format = OFORMAT_JSON;
2610 } else if (output && !strcmp(output, "human")) {
2611 output_format = OFORMAT_HUMAN;
2612 } else if (output) {
2613 error_report("--output must be used with human or json as argument.");
2614 return 1;
2615 }
2616
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002617 if (qemu_opts_foreach(&qemu_object_opts,
2618 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002619 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002620 return 1;
2621 }
2622
Fam Zheng335e9932017-05-03 00:35:39 +08002623 list = collect_image_info_list(image_opts, filename, fmt, chain,
2624 force_share);
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002625 if (!list) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002626 return 1;
2627 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002628
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002629 switch (output_format) {
2630 case OFORMAT_HUMAN:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002631 dump_human_image_info_list(list);
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002632 break;
2633 case OFORMAT_JSON:
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002634 if (chain) {
2635 dump_json_image_info_list(list);
2636 } else {
2637 dump_json_image_info(list->value);
2638 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002639 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002640 }
BenoƮt Canetc054b3f2012-09-05 13:09:02 +02002641
Stefan Hajnoczi9699bf02012-10-17 14:02:31 +02002642 qapi_free_ImageInfoList(list);
bellardea2384d2004-08-01 21:59:26 +00002643 return 0;
2644}
2645
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002646static void dump_map_entry(OutputFormat output_format, MapEntry *e,
2647 MapEntry *next)
2648{
2649 switch (output_format) {
2650 case OFORMAT_HUMAN:
Fam Zheng16b0d552016-01-26 11:59:02 +08002651 if (e->data && !e->has_offset) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002652 error_report("File contains external, encrypted or compressed clusters.");
2653 exit(1);
2654 }
Fam Zheng16b0d552016-01-26 11:59:02 +08002655 if (e->data && !e->zero) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002656 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
Fam Zheng16b0d552016-01-26 11:59:02 +08002657 e->start, e->length,
2658 e->has_offset ? e->offset : 0,
2659 e->has_filename ? e->filename : "");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002660 }
2661 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
2662 * Modify the flags here to allow more coalescing.
2663 */
Fam Zheng16b0d552016-01-26 11:59:02 +08002664 if (next && (!next->data || next->zero)) {
2665 next->data = false;
2666 next->zero = true;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002667 }
2668 break;
2669 case OFORMAT_JSON:
Fam Zheng16b0d552016-01-26 11:59:02 +08002670 printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64","
2671 " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002672 (e->start == 0 ? "[" : ",\n"),
2673 e->start, e->length, e->depth,
Fam Zheng16b0d552016-01-26 11:59:02 +08002674 e->zero ? "true" : "false",
2675 e->data ? "true" : "false");
2676 if (e->has_offset) {
Paolo Bonzinic745bfb2013-09-11 18:47:52 +02002677 printf(", \"offset\": %"PRId64"", e->offset);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002678 }
2679 putchar('}');
2680
2681 if (!next) {
2682 printf("]\n");
2683 }
2684 break;
2685 }
2686}
2687
Eric Blake5e344dd2017-10-11 22:47:02 -05002688static int get_block_status(BlockDriverState *bs, int64_t offset,
2689 int64_t bytes, MapEntry *e)
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002690{
Eric Blake237d78f2017-10-11 22:47:03 -05002691 int ret;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002692 int depth;
Fam Zheng67a0fd22016-01-26 11:58:48 +08002693 BlockDriverState *file;
John Snow28756452016-02-05 13:12:33 -05002694 bool has_offset;
Eric Blake237d78f2017-10-11 22:47:03 -05002695 int64_t map;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002696
2697 /* As an optimization, we could cache the current range of unallocated
2698 * clusters in each file of the chain, and avoid querying the same
2699 * range repeatedly.
2700 */
2701
2702 depth = 0;
2703 for (;;) {
Eric Blake237d78f2017-10-11 22:47:03 -05002704 ret = bdrv_block_status(bs, offset, bytes, &bytes, &map, &file);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002705 if (ret < 0) {
2706 return ret;
2707 }
Eric Blake237d78f2017-10-11 22:47:03 -05002708 assert(bytes);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002709 if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) {
2710 break;
2711 }
Kevin Wolf760e0062015-06-17 14:55:21 +02002712 bs = backing_bs(bs);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002713 if (bs == NULL) {
2714 ret = 0;
2715 break;
2716 }
2717
2718 depth++;
2719 }
2720
John Snow28756452016-02-05 13:12:33 -05002721 has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID);
2722
2723 *e = (MapEntry) {
Eric Blake5e344dd2017-10-11 22:47:02 -05002724 .start = offset,
Eric Blake237d78f2017-10-11 22:47:03 -05002725 .length = bytes,
John Snow28756452016-02-05 13:12:33 -05002726 .data = !!(ret & BDRV_BLOCK_DATA),
2727 .zero = !!(ret & BDRV_BLOCK_ZERO),
Eric Blake237d78f2017-10-11 22:47:03 -05002728 .offset = map,
John Snow28756452016-02-05 13:12:33 -05002729 .has_offset = has_offset,
2730 .depth = depth,
2731 .has_filename = file && has_offset,
2732 .filename = file && has_offset ? file->filename : NULL,
2733 };
2734
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002735 return 0;
2736}
2737
Fam Zheng16b0d552016-01-26 11:59:02 +08002738static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next)
2739{
2740 if (curr->length == 0) {
2741 return false;
2742 }
2743 if (curr->zero != next->zero ||
2744 curr->data != next->data ||
2745 curr->depth != next->depth ||
2746 curr->has_filename != next->has_filename ||
2747 curr->has_offset != next->has_offset) {
2748 return false;
2749 }
2750 if (curr->has_filename && strcmp(curr->filename, next->filename)) {
2751 return false;
2752 }
2753 if (curr->has_offset && curr->offset + curr->length != next->offset) {
2754 return false;
2755 }
2756 return true;
2757}
2758
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002759static int img_map(int argc, char **argv)
2760{
2761 int c;
2762 OutputFormat output_format = OFORMAT_HUMAN;
Markus Armbruster26f54e92014-10-07 13:59:04 +02002763 BlockBackend *blk;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002764 BlockDriverState *bs;
2765 const char *filename, *fmt, *output;
2766 int64_t length;
2767 MapEntry curr = { .length = 0 }, next;
2768 int ret = 0;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002769 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002770 bool force_share = false;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002771
2772 fmt = NULL;
2773 output = NULL;
2774 for (;;) {
2775 int option_index = 0;
2776 static const struct option long_options[] = {
2777 {"help", no_argument, 0, 'h'},
2778 {"format", required_argument, 0, 'f'},
2779 {"output", required_argument, 0, OPTION_OUTPUT},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002780 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002781 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002782 {"force-share", no_argument, 0, 'U'},
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002783 {0, 0, 0, 0}
2784 };
Fam Zheng335e9932017-05-03 00:35:39 +08002785 c = getopt_long(argc, argv, ":f:hU",
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002786 long_options, &option_index);
2787 if (c == -1) {
2788 break;
2789 }
2790 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002791 case ':':
2792 missing_argument(argv[optind - 1]);
2793 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002794 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002795 unrecognized_option(argv[optind - 1]);
2796 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002797 case 'h':
2798 help();
2799 break;
2800 case 'f':
2801 fmt = optarg;
2802 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002803 case 'U':
2804 force_share = true;
2805 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002806 case OPTION_OUTPUT:
2807 output = optarg;
2808 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002809 case OPTION_OBJECT: {
2810 QemuOpts *opts;
2811 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2812 optarg, true);
2813 if (!opts) {
2814 return 1;
2815 }
2816 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002817 case OPTION_IMAGE_OPTS:
2818 image_opts = true;
2819 break;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002820 }
2821 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002822 if (optind != argc - 1) {
2823 error_exit("Expecting one image file name");
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002824 }
Fam Zhengac1307a2014-04-22 13:36:11 +08002825 filename = argv[optind];
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002826
2827 if (output && !strcmp(output, "json")) {
2828 output_format = OFORMAT_JSON;
2829 } else if (output && !strcmp(output, "human")) {
2830 output_format = OFORMAT_HUMAN;
2831 } else if (output) {
2832 error_report("--output must be used with human or json as argument.");
2833 return 1;
2834 }
2835
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002836 if (qemu_opts_foreach(&qemu_object_opts,
2837 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002838 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002839 return 1;
2840 }
2841
Fam Zheng335e9932017-05-03 00:35:39 +08002842 blk = img_open(image_opts, filename, fmt, 0, false, false, force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002843 if (!blk) {
2844 return 1;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002845 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002846 bs = blk_bs(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002847
2848 if (output_format == OFORMAT_HUMAN) {
2849 printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File");
2850 }
2851
Max Reitzf1d3cd72015-02-05 13:58:18 -05002852 length = blk_getlength(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002853 while (curr.start + curr.length < length) {
Eric Blake5e344dd2017-10-11 22:47:02 -05002854 int64_t offset = curr.start + curr.length;
2855 int64_t n;
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002856
2857 /* Probe up to 1 GiB at a time. */
Eric Blake5e344dd2017-10-11 22:47:02 -05002858 n = QEMU_ALIGN_DOWN(MIN(1 << 30, length - offset), BDRV_SECTOR_SIZE);
2859 ret = get_block_status(bs, offset, n, &next);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002860
2861 if (ret < 0) {
2862 error_report("Could not read file metadata: %s", strerror(-ret));
2863 goto out;
2864 }
2865
Fam Zheng16b0d552016-01-26 11:59:02 +08002866 if (entry_mergeable(&curr, &next)) {
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002867 curr.length += next.length;
2868 continue;
2869 }
2870
2871 if (curr.length > 0) {
2872 dump_map_entry(output_format, &curr, &next);
2873 }
2874 curr = next;
2875 }
2876
2877 dump_map_entry(output_format, &curr, NULL);
2878
2879out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02002880 blk_unref(blk);
Paolo Bonzini4c93a13b2013-09-04 19:00:33 +02002881 return ret < 0;
2882}
2883
aliguorif7b4a942009-01-07 17:40:15 +00002884#define SNAPSHOT_LIST 1
2885#define SNAPSHOT_CREATE 2
2886#define SNAPSHOT_APPLY 3
2887#define SNAPSHOT_DELETE 4
2888
Stuart Brady153859b2009-06-07 00:42:17 +01002889static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00002890{
Markus Armbruster26f54e92014-10-07 13:59:04 +02002891 BlockBackend *blk;
aliguorif7b4a942009-01-07 17:40:15 +00002892 BlockDriverState *bs;
2893 QEMUSnapshotInfo sn;
2894 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002895 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00002896 int action = 0;
2897 qemu_timeval tv;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002898 bool quiet = false;
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08002899 Error *err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002900 bool image_opts = false;
Fam Zheng335e9932017-05-03 00:35:39 +08002901 bool force_share = false;
aliguorif7b4a942009-01-07 17:40:15 +00002902
Kevin Wolfce099542016-03-15 13:01:04 +01002903 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00002904 /* Parse commandline parameters */
2905 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002906 static const struct option long_options[] = {
2907 {"help", no_argument, 0, 'h'},
2908 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002909 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08002910 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002911 {0, 0, 0, 0}
2912 };
Fam Zheng335e9932017-05-03 00:35:39 +08002913 c = getopt_long(argc, argv, ":la:c:d:hqU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002914 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002915 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00002916 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002917 }
aliguorif7b4a942009-01-07 17:40:15 +00002918 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002919 case ':':
2920 missing_argument(argv[optind - 1]);
2921 break;
Jes Sorensenef873942010-12-06 15:25:40 +01002922 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08002923 unrecognized_option(argv[optind - 1]);
2924 break;
aliguorif7b4a942009-01-07 17:40:15 +00002925 case 'h':
2926 help();
Stuart Brady153859b2009-06-07 00:42:17 +01002927 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002928 case 'l':
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_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02002934 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00002935 break;
2936 case 'a':
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_APPLY;
2942 snapshot_name = optarg;
2943 break;
2944 case 'c':
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_CREATE;
2950 snapshot_name = optarg;
2951 break;
2952 case 'd':
2953 if (action) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002954 error_exit("Cannot mix '-l', '-a', '-c', '-d'");
Stuart Brady153859b2009-06-07 00:42:17 +01002955 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00002956 }
2957 action = SNAPSHOT_DELETE;
2958 snapshot_name = optarg;
2959 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01002960 case 'q':
2961 quiet = true;
2962 break;
Fam Zheng335e9932017-05-03 00:35:39 +08002963 case 'U':
2964 force_share = true;
2965 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002966 case OPTION_OBJECT: {
2967 QemuOpts *opts;
2968 opts = qemu_opts_parse_noisily(&qemu_object_opts,
2969 optarg, true);
2970 if (!opts) {
2971 return 1;
2972 }
2973 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00002974 case OPTION_IMAGE_OPTS:
2975 image_opts = true;
2976 break;
aliguorif7b4a942009-01-07 17:40:15 +00002977 }
2978 }
2979
Kevin Wolffc11eb22013-08-05 10:53:04 +02002980 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08002981 error_exit("Expecting one image file name");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01002982 }
aliguorif7b4a942009-01-07 17:40:15 +00002983 filename = argv[optind++];
2984
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002985 if (qemu_opts_foreach(&qemu_object_opts,
2986 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02002987 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00002988 return 1;
2989 }
2990
aliguorif7b4a942009-01-07 17:40:15 +00002991 /* Open the image */
Fam Zheng335e9932017-05-03 00:35:39 +08002992 blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet,
2993 force_share);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002994 if (!blk) {
2995 return 1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09002996 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02002997 bs = blk_bs(blk);
aliguorif7b4a942009-01-07 17:40:15 +00002998
2999 /* Perform the requested action */
3000 switch(action) {
3001 case SNAPSHOT_LIST:
3002 dump_snapshots(bs);
3003 break;
3004
3005 case SNAPSHOT_CREATE:
3006 memset(&sn, 0, sizeof(sn));
3007 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
3008
3009 qemu_gettimeofday(&tv);
3010 sn.date_sec = tv.tv_sec;
3011 sn.date_nsec = tv.tv_usec * 1000;
3012
3013 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003014 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003015 error_report("Could not create 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_APPLY:
3021 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003022 if (ret) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003023 error_report("Could not apply snapshot '%s': %d (%s)",
aliguorif7b4a942009-01-07 17:40:15 +00003024 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003025 }
aliguorif7b4a942009-01-07 17:40:15 +00003026 break;
3027
3028 case SNAPSHOT_DELETE:
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08003029 bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err);
Markus Armbruster84d18f02014-01-30 15:07:28 +01003030 if (err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003031 error_reportf_err(err, "Could not delete snapshot '%s': ",
3032 snapshot_name);
Wenchao Xiaa89d89d2013-09-11 14:04:33 +08003033 ret = 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003034 }
aliguorif7b4a942009-01-07 17:40:15 +00003035 break;
3036 }
3037
3038 /* Cleanup */
Markus Armbruster26f54e92014-10-07 13:59:04 +02003039 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003040 if (ret) {
3041 return 1;
3042 }
Stuart Brady153859b2009-06-07 00:42:17 +01003043 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00003044}
3045
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003046static int img_rebase(int argc, char **argv)
3047{
Markus Armbruster26f54e92014-10-07 13:59:04 +02003048 BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL;
Paolo Bonzini396374c2016-02-25 23:53:54 +01003049 uint8_t *buf_old = NULL;
3050 uint8_t *buf_new = NULL;
Max Reitzf1d3cd72015-02-05 13:58:18 -05003051 BlockDriverState *bs = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003052 char *filename;
Max Reitz40055952014-07-22 22:58:42 +02003053 const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg;
3054 int c, flags, src_flags, ret;
Kevin Wolfce099542016-03-15 13:01:04 +01003055 bool writethrough, src_writethrough;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003056 int unsafe = 0;
Fam Zheng335e9932017-05-03 00:35:39 +08003057 bool force_share = false;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003058 int progress = 0;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003059 bool quiet = false;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003060 Error *local_err = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003061 bool image_opts = false;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003062
3063 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01003064 fmt = NULL;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003065 cache = BDRV_DEFAULT_CACHE;
Max Reitz40055952014-07-22 22:58:42 +02003066 src_cache = BDRV_DEFAULT_CACHE;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003067 out_baseimg = NULL;
3068 out_basefmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003069 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003070 static const struct option long_options[] = {
3071 {"help", no_argument, 0, 'h'},
3072 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003073 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08003074 {"force-share", no_argument, 0, 'U'},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003075 {0, 0, 0, 0}
3076 };
Fam Zheng335e9932017-05-03 00:35:39 +08003077 c = getopt_long(argc, argv, ":hf:F:b:upt:T:qU",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003078 long_options, NULL);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003079 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003080 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003081 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003082 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003083 case ':':
3084 missing_argument(argv[optind - 1]);
3085 break;
Jes Sorensenef873942010-12-06 15:25:40 +01003086 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003087 unrecognized_option(argv[optind - 1]);
3088 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003089 case 'h':
3090 help();
3091 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01003092 case 'f':
3093 fmt = optarg;
3094 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003095 case 'F':
3096 out_basefmt = optarg;
3097 break;
3098 case 'b':
3099 out_baseimg = optarg;
3100 break;
3101 case 'u':
3102 unsafe = 1;
3103 break;
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003104 case 'p':
3105 progress = 1;
3106 break;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003107 case 't':
3108 cache = optarg;
3109 break;
Max Reitz40055952014-07-22 22:58:42 +02003110 case 'T':
3111 src_cache = optarg;
3112 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003113 case 'q':
3114 quiet = true;
3115 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003116 case OPTION_OBJECT: {
3117 QemuOpts *opts;
3118 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3119 optarg, true);
3120 if (!opts) {
3121 return 1;
3122 }
3123 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003124 case OPTION_IMAGE_OPTS:
3125 image_opts = true;
3126 break;
Fam Zheng335e9932017-05-03 00:35:39 +08003127 case 'U':
3128 force_share = true;
3129 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003130 }
3131 }
3132
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003133 if (quiet) {
3134 progress = 0;
3135 }
3136
Fam Zhengac1307a2014-04-22 13:36:11 +08003137 if (optind != argc - 1) {
3138 error_exit("Expecting one image file name");
3139 }
3140 if (!unsafe && !out_baseimg) {
3141 error_exit("Must specify backing file (-b) or use unsafe mode (-u)");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01003142 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003143 filename = argv[optind++];
3144
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003145 if (qemu_opts_foreach(&qemu_object_opts,
3146 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003147 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003148 return 1;
3149 }
3150
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003151 qemu_progress_init(progress, 2.0);
3152 qemu_progress_print(0, 100);
3153
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003154 flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Kevin Wolfce099542016-03-15 13:01:04 +01003155 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003156 if (ret < 0) {
3157 error_report("Invalid cache option: %s", cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003158 goto out;
Federico Simoncelli661a0f72011-06-20 12:48:19 -04003159 }
3160
Kevin Wolfce099542016-03-15 13:01:04 +01003161 src_flags = 0;
3162 ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough);
Max Reitz40055952014-07-22 22:58:42 +02003163 if (ret < 0) {
3164 error_report("Invalid source cache option: %s", src_cache);
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003165 goto out;
Max Reitz40055952014-07-22 22:58:42 +02003166 }
3167
Kevin Wolfce099542016-03-15 13:01:04 +01003168 /* The source files are opened read-only, don't care about WCE */
3169 assert((src_flags & BDRV_O_RDWR) == 0);
3170 (void) src_writethrough;
3171
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003172 /*
3173 * Open the images.
3174 *
3175 * Ignore the old backing file for unsafe rebase in case we want to correct
3176 * the reference to a renamed or moved backing file.
3177 */
Fam Zheng335e9932017-05-03 00:35:39 +08003178 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3179 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003180 if (!blk) {
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003181 ret = -1;
3182 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003183 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003184 bs = blk_bs(blk);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003185
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003186 if (out_basefmt != NULL) {
Max Reitz644483d2015-02-05 13:58:17 -05003187 if (bdrv_find_format(out_basefmt) == NULL) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003188 error_report("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003189 ret = -1;
3190 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003191 }
3192 }
3193
3194 /* For safe rebasing we need to compare old and new backing file */
Stefan Hajnoczi40ed35a2014-08-26 19:17:56 +01003195 if (!unsafe) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003196 char backing_name[PATH_MAX];
Max Reitz644483d2015-02-05 13:58:17 -05003197 QDict *options = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003198
Max Reitz644483d2015-02-05 13:58:17 -05003199 if (bs->backing_format[0] != '\0') {
3200 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -05003201 qdict_put_str(options, "driver", bs->backing_format);
Max Reitz644483d2015-02-05 13:58:17 -05003202 }
3203
Fam Zheng335e9932017-05-03 00:35:39 +08003204 if (force_share) {
3205 if (!options) {
3206 options = qdict_new();
3207 }
Eric Blake579cf1d2017-05-15 14:54:39 -05003208 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Fam Zheng335e9932017-05-03 00:35:39 +08003209 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003210 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
Max Reitzefaa7c42016-03-16 19:54:38 +01003211 blk_old_backing = blk_new_open(backing_name, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05003212 options, src_flags, &local_err);
3213 if (!blk_old_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003214 error_reportf_err(local_err,
3215 "Could not open old backing file '%s': ",
3216 backing_name);
Xu Tiane84a0dd2016-10-09 17:17:27 +08003217 ret = -1;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003218 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003219 }
Max Reitz644483d2015-02-05 13:58:17 -05003220
Alex Bligha6166732012-10-16 13:46:18 +01003221 if (out_baseimg[0]) {
Fam Zheng335e9932017-05-03 00:35:39 +08003222 options = qdict_new();
Max Reitz644483d2015-02-05 13:58:17 -05003223 if (out_basefmt) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003224 qdict_put_str(options, "driver", out_basefmt);
Fam Zheng335e9932017-05-03 00:35:39 +08003225 }
3226 if (force_share) {
3227 qdict_put_bool(options, BDRV_OPT_FORCE_SHARE, true);
Max Reitz644483d2015-02-05 13:58:17 -05003228 }
3229
Max Reitzefaa7c42016-03-16 19:54:38 +01003230 blk_new_backing = blk_new_open(out_baseimg, NULL,
Max Reitz644483d2015-02-05 13:58:17 -05003231 options, src_flags, &local_err);
3232 if (!blk_new_backing) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01003233 error_reportf_err(local_err,
3234 "Could not open new backing file '%s': ",
3235 out_baseimg);
Xu Tiane84a0dd2016-10-09 17:17:27 +08003236 ret = -1;
Alex Bligha6166732012-10-16 13:46:18 +01003237 goto out;
3238 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003239 }
3240 }
3241
3242 /*
3243 * Check each unallocated cluster in the COW file. If it is unallocated,
3244 * accesses go to the backing file. We must therefore compare this cluster
3245 * in the old and new backing file, and if they differ we need to copy it
3246 * from the old backing file into the COW file.
3247 *
3248 * If qemu-img crashes during this step, no harm is done. The content of
3249 * the image is the same as the original one at any time.
3250 */
3251 if (!unsafe) {
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003252 int64_t num_sectors;
3253 int64_t old_backing_num_sectors;
3254 int64_t new_backing_num_sectors = 0;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003255 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02003256 int n;
Eric Blaked6a644b2017-07-07 07:44:57 -05003257 int64_t count;
Kevin Wolf1f710492012-10-12 14:29:18 +02003258 float local_progress = 0;
TeLeMand6771bf2010-02-08 16:20:00 +08003259
Max Reitzf1d3cd72015-02-05 13:58:18 -05003260 buf_old = blk_blockalign(blk, IO_BUF_SIZE);
3261 buf_new = blk_blockalign(blk, IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003262
Max Reitzf1d3cd72015-02-05 13:58:18 -05003263 num_sectors = blk_nb_sectors(blk);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003264 if (num_sectors < 0) {
3265 error_report("Could not get size of '%s': %s",
3266 filename, strerror(-num_sectors));
3267 ret = -1;
3268 goto out;
3269 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003270 old_backing_num_sectors = blk_nb_sectors(blk_old_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003271 if (old_backing_num_sectors < 0) {
Jeff Cody9a29e182015-01-22 08:03:30 -05003272 char backing_name[PATH_MAX];
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003273
3274 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
3275 error_report("Could not get size of '%s': %s",
3276 backing_name, strerror(-old_backing_num_sectors));
3277 ret = -1;
3278 goto out;
3279 }
Max Reitzf1d3cd72015-02-05 13:58:18 -05003280 if (blk_new_backing) {
3281 new_backing_num_sectors = blk_nb_sectors(blk_new_backing);
Markus Armbruster52bf1e72014-06-26 13:23:25 +02003282 if (new_backing_num_sectors < 0) {
3283 error_report("Could not get size of '%s': %s",
3284 out_baseimg, strerror(-new_backing_num_sectors));
3285 ret = -1;
3286 goto out;
3287 }
Alex Bligha6166732012-10-16 13:46:18 +01003288 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003289
Kevin Wolf1f710492012-10-12 14:29:18 +02003290 if (num_sectors != 0) {
3291 local_progress = (float)100 /
3292 (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512));
3293 }
3294
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003295 for (sector = 0; sector < num_sectors; sector += n) {
3296
3297 /* How many sectors can we handle with the next read? */
3298 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
3299 n = (IO_BUF_SIZE / 512);
3300 } else {
3301 n = num_sectors - sector;
3302 }
3303
3304 /* If the cluster is allocated, we don't need to take action */
Eric Blaked6a644b2017-07-07 07:44:57 -05003305 ret = bdrv_is_allocated(bs, sector << BDRV_SECTOR_BITS,
3306 n << BDRV_SECTOR_BITS, &count);
Paolo Bonzinid6636402013-09-04 19:00:25 +02003307 if (ret < 0) {
3308 error_report("error while reading image metadata: %s",
3309 strerror(-ret));
3310 goto out;
3311 }
Eric Blaked6a644b2017-07-07 07:44:57 -05003312 /* TODO relax this once bdrv_is_allocated does not enforce
3313 * sector alignment */
3314 assert(QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE));
3315 n = count >> BDRV_SECTOR_BITS;
Kevin Wolfcc60e322010-04-29 14:47:48 +02003316 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003317 continue;
3318 }
3319
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003320 /*
3321 * Read old and new backing file and take into consideration that
3322 * backing files may be smaller than the COW image.
3323 */
3324 if (sector >= old_backing_num_sectors) {
3325 memset(buf_old, 0, n * BDRV_SECTOR_SIZE);
3326 } else {
3327 if (sector + n > old_backing_num_sectors) {
3328 n = old_backing_num_sectors - sector;
3329 }
3330
Eric Blake91669202016-05-06 10:26:43 -06003331 ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS,
3332 buf_old, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003333 if (ret < 0) {
3334 error_report("error while reading from old backing file");
3335 goto out;
3336 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003337 }
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003338
Max Reitzf1d3cd72015-02-05 13:58:18 -05003339 if (sector >= new_backing_num_sectors || !blk_new_backing) {
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003340 memset(buf_new, 0, n * BDRV_SECTOR_SIZE);
3341 } else {
3342 if (sector + n > new_backing_num_sectors) {
3343 n = new_backing_num_sectors - sector;
3344 }
3345
Eric Blake91669202016-05-06 10:26:43 -06003346 ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS,
3347 buf_new, n << BDRV_SECTOR_BITS);
Kevin Wolf87a1b3e2011-12-07 12:42:10 +01003348 if (ret < 0) {
3349 error_report("error while reading from new backing file");
3350 goto out;
3351 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003352 }
3353
3354 /* If they differ, we need to write to the COW file */
3355 uint64_t written = 0;
3356
3357 while (written < n) {
3358 int pnum;
3359
3360 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01003361 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003362 {
Eric Blake91669202016-05-06 10:26:43 -06003363 ret = blk_pwrite(blk,
3364 (sector + written) << BDRV_SECTOR_BITS,
3365 buf_old + written * 512,
3366 pnum << BDRV_SECTOR_BITS, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003367 if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003368 error_report("Error while writing to COW image: %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003369 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003370 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003371 }
3372 }
3373
3374 written += pnum;
3375 }
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003376 qemu_progress_print(local_progress, 100);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003377 }
3378 }
3379
3380 /*
3381 * Change the backing file. All clusters that are different from the old
3382 * backing file are overwritten in the COW file now, so the visible content
3383 * doesn't change when we switch the backing file.
3384 */
Alex Bligha6166732012-10-16 13:46:18 +01003385 if (out_baseimg && *out_baseimg) {
3386 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
3387 } else {
3388 ret = bdrv_change_backing_file(bs, NULL, NULL);
3389 }
3390
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003391 if (ret == -ENOSPC) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003392 error_report("Could not change the backing file to '%s': No "
3393 "space left in the file header", out_baseimg);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003394 } else if (ret < 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003395 error_report("Could not change the backing file to '%s': %s",
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003396 out_baseimg, strerror(-ret));
3397 }
3398
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003399 qemu_progress_print(100, 0);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003400 /*
3401 * TODO At this point it is possible to check if any clusters that are
3402 * allocated in the COW file are the same in the backing file. If so, they
3403 * could be dropped from the COW file. Don't do this before switching the
3404 * backing file, in case of a crash this would lead to corruption.
3405 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003406out:
Jes Sorensen6b837bc2011-03-30 14:16:25 +02003407 qemu_progress_end();
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003408 /* Cleanup */
3409 if (!unsafe) {
Markus Armbruster26f54e92014-10-07 13:59:04 +02003410 blk_unref(blk_old_backing);
Markus Armbruster26f54e92014-10-07 13:59:04 +02003411 blk_unref(blk_new_backing);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003412 }
Paolo Bonzini396374c2016-02-25 23:53:54 +01003413 qemu_vfree(buf_old);
3414 qemu_vfree(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003415
Markus Armbruster26f54e92014-10-07 13:59:04 +02003416 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003417 if (ret) {
3418 return 1;
3419 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01003420 return 0;
3421}
3422
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003423static int img_resize(int argc, char **argv)
3424{
Markus Armbruster6750e792015-02-12 17:43:08 +01003425 Error *err = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003426 int c, ret, relative;
3427 const char *filename, *fmt, *size;
Max Reitzdc5f6902017-06-13 22:20:55 +02003428 int64_t n, total_size, current_size;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003429 bool quiet = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003430 BlockBackend *blk = NULL;
Max Reitzdc5f6902017-06-13 22:20:55 +02003431 PreallocMode prealloc = PREALLOC_MODE_OFF;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003432 QemuOpts *param;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003433
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003434 static QemuOptsList resize_options = {
3435 .name = "resize_options",
3436 .head = QTAILQ_HEAD_INITIALIZER(resize_options.head),
3437 .desc = {
3438 {
3439 .name = BLOCK_OPT_SIZE,
3440 .type = QEMU_OPT_SIZE,
3441 .help = "Virtual disk size"
3442 }, {
3443 /* end of list */
3444 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003445 },
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003446 };
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003447 bool image_opts = false;
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003448 bool shrink = false;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003449
Kevin Wolfe80fec72011-04-29 10:58:12 +02003450 /* Remove size from argv manually so that negative numbers are not treated
3451 * as options by getopt. */
3452 if (argc < 3) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003453 error_exit("Not enough arguments");
Kevin Wolfe80fec72011-04-29 10:58:12 +02003454 return 1;
3455 }
3456
3457 size = argv[--argc];
3458
3459 /* Parse getopt arguments */
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003460 fmt = NULL;
3461 for(;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003462 static const struct option long_options[] = {
3463 {"help", no_argument, 0, 'h'},
3464 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003465 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Max Reitzdc5f6902017-06-13 22:20:55 +02003466 {"preallocation", required_argument, 0, OPTION_PREALLOCATION},
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003467 {"shrink", no_argument, 0, OPTION_SHRINK},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003468 {0, 0, 0, 0}
3469 };
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003470 c = getopt_long(argc, argv, ":f:hq",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003471 long_options, NULL);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003472 if (c == -1) {
3473 break;
3474 }
3475 switch(c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003476 case ':':
3477 missing_argument(argv[optind - 1]);
3478 break;
Jes Sorensenef873942010-12-06 15:25:40 +01003479 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003480 unrecognized_option(argv[optind - 1]);
3481 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003482 case 'h':
3483 help();
3484 break;
3485 case 'f':
3486 fmt = optarg;
3487 break;
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003488 case 'q':
3489 quiet = true;
3490 break;
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003491 case OPTION_OBJECT: {
3492 QemuOpts *opts;
3493 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3494 optarg, true);
3495 if (!opts) {
3496 return 1;
3497 }
3498 } break;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003499 case OPTION_IMAGE_OPTS:
3500 image_opts = true;
3501 break;
Max Reitzdc5f6902017-06-13 22:20:55 +02003502 case OPTION_PREALLOCATION:
Marc-AndrƩ Lureauf7abe0e2017-08-24 10:46:10 +02003503 prealloc = qapi_enum_parse(&PreallocMode_lookup, optarg,
Markus Armbruster06c60b62017-08-24 10:45:57 +02003504 PREALLOC_MODE__MAX, NULL);
Max Reitzdc5f6902017-06-13 22:20:55 +02003505 if (prealloc == PREALLOC_MODE__MAX) {
3506 error_report("Invalid preallocation mode '%s'", optarg);
3507 return 1;
3508 }
3509 break;
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003510 case OPTION_SHRINK:
3511 shrink = true;
3512 break;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003513 }
3514 }
Kevin Wolffc11eb22013-08-05 10:53:04 +02003515 if (optind != argc - 1) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003516 error_exit("Expecting one image file name");
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003517 }
3518 filename = argv[optind++];
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003519
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003520 if (qemu_opts_foreach(&qemu_object_opts,
3521 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003522 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003523 return 1;
3524 }
3525
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003526 /* Choose grow, shrink, or absolute resize mode */
3527 switch (size[0]) {
3528 case '+':
3529 relative = 1;
3530 size++;
3531 break;
3532 case '-':
3533 relative = -1;
3534 size++;
3535 break;
3536 default:
3537 relative = 0;
3538 break;
3539 }
3540
3541 /* Parse size */
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -08003542 param = qemu_opts_create(&resize_options, NULL, 0, &error_abort);
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01003543 qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err);
Markus Armbruster6750e792015-02-12 17:43:08 +01003544 if (err) {
3545 error_report_err(err);
Jes Sorensen2a819982010-12-06 17:08:31 +01003546 ret = -1;
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003547 qemu_opts_del(param);
Jes Sorensen2a819982010-12-06 17:08:31 +01003548 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003549 }
Dong Xu Wang20caf0f2012-08-06 10:18:42 +08003550 n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0);
3551 qemu_opts_del(param);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003552
Max Reitzefaa7c42016-03-16 19:54:38 +01003553 blk = img_open(image_opts, filename, fmt,
Fam Zheng335e9932017-05-03 00:35:39 +08003554 BDRV_O_RDWR | BDRV_O_RESIZE, false, quiet,
3555 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003556 if (!blk) {
Jes Sorensen2a819982010-12-06 17:08:31 +01003557 ret = -1;
3558 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003559 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003560
Max Reitzdc5f6902017-06-13 22:20:55 +02003561 current_size = blk_getlength(blk);
3562 if (current_size < 0) {
3563 error_report("Failed to inquire current image length: %s",
3564 strerror(-current_size));
3565 ret = -1;
3566 goto out;
3567 }
3568
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003569 if (relative) {
Max Reitzdc5f6902017-06-13 22:20:55 +02003570 total_size = current_size + n * relative;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003571 } else {
3572 total_size = n;
3573 }
3574 if (total_size <= 0) {
Jes Sorensen15654a62010-12-16 14:31:53 +01003575 error_report("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003576 ret = -1;
3577 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003578 }
3579
Max Reitzdc5f6902017-06-13 22:20:55 +02003580 if (total_size <= current_size && prealloc != PREALLOC_MODE_OFF) {
3581 error_report("Preallocation can only be used for growing images");
3582 ret = -1;
3583 goto out;
3584 }
3585
Pavel Butsykin4ffca892017-09-18 15:42:27 +03003586 if (total_size < current_size && !shrink) {
3587 warn_report("Shrinking an image will delete all data beyond the "
3588 "shrunken image's end. Before performing such an "
3589 "operation, make sure there is no important data there.");
3590
3591 if (g_strcmp0(bdrv_get_format_name(blk_bs(blk)), "raw") != 0) {
3592 error_report(
3593 "Use the --shrink option to perform a shrink operation.");
3594 ret = -1;
3595 goto out;
3596 } else {
3597 warn_report("Using the --shrink option will suppress this message. "
3598 "Note that future versions of qemu-img may refuse to "
3599 "shrink images without this option.");
3600 }
3601 }
3602
Max Reitzdc5f6902017-06-13 22:20:55 +02003603 ret = blk_truncate(blk, total_size, prealloc, &err);
Max Reitzed3d2ec2017-03-28 22:51:27 +02003604 if (!ret) {
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01003605 qprintf(quiet, "Image resized.\n");
Max Reitzed3d2ec2017-03-28 22:51:27 +02003606 } else {
3607 error_report_err(err);
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003608 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003609out:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003610 blk_unref(blk);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09003611 if (ret) {
3612 return 1;
3613 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01003614 return 0;
3615}
3616
Max Reitz76a3a342014-10-27 11:12:51 +01003617static void amend_status_cb(BlockDriverState *bs,
Max Reitz8b139762015-07-27 17:51:32 +02003618 int64_t offset, int64_t total_work_size,
3619 void *opaque)
Max Reitz76a3a342014-10-27 11:12:51 +01003620{
3621 qemu_progress_print(100.f * offset / total_work_size, 0);
3622}
3623
Max Reitz6f176b42013-09-03 10:09:50 +02003624static int img_amend(int argc, char **argv)
3625{
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01003626 Error *err = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003627 int c, ret = 0;
3628 char *options = NULL;
Chunyan Liu83d05212014-06-05 17:20:51 +08003629 QemuOptsList *create_opts = NULL;
3630 QemuOpts *opts = NULL;
Max Reitzbd39e6e2014-07-22 22:58:43 +02003631 const char *fmt = NULL, *filename, *cache;
3632 int flags;
Kevin Wolfce099542016-03-15 13:01:04 +01003633 bool writethrough;
Max Reitz76a3a342014-10-27 11:12:51 +01003634 bool quiet = false, progress = false;
Markus Armbruster26f54e92014-10-07 13:59:04 +02003635 BlockBackend *blk = NULL;
Max Reitz6f176b42013-09-03 10:09:50 +02003636 BlockDriverState *bs = NULL;
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003637 bool image_opts = false;
Max Reitz6f176b42013-09-03 10:09:50 +02003638
Max Reitzbd39e6e2014-07-22 22:58:43 +02003639 cache = BDRV_DEFAULT_CACHE;
Max Reitz6f176b42013-09-03 10:09:50 +02003640 for (;;) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003641 static const struct option long_options[] = {
3642 {"help", no_argument, 0, 'h'},
3643 {"object", required_argument, 0, OPTION_OBJECT},
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00003644 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003645 {0, 0, 0, 0}
3646 };
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003647 c = getopt_long(argc, argv, ":ho:f:t:pq",
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003648 long_options, NULL);
Max Reitz6f176b42013-09-03 10:09:50 +02003649 if (c == -1) {
3650 break;
3651 }
3652
3653 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003654 case ':':
3655 missing_argument(argv[optind - 1]);
3656 break;
Stefan Hajnoczif7077622017-03-17 18:45:40 +08003657 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003658 unrecognized_option(argv[optind - 1]);
3659 break;
3660 case 'h':
Stefan Hajnoczif7077622017-03-17 18:45:40 +08003661 help();
3662 break;
3663 case 'o':
3664 if (!is_valid_option_list(optarg)) {
3665 error_report("Invalid option list: %s", optarg);
3666 ret = -1;
3667 goto out_no_progress;
3668 }
3669 if (!options) {
3670 options = g_strdup(optarg);
3671 } else {
3672 char *old_options = options;
3673 options = g_strdup_printf("%s,%s", options, optarg);
3674 g_free(old_options);
3675 }
3676 break;
3677 case 'f':
3678 fmt = optarg;
3679 break;
3680 case 't':
3681 cache = optarg;
3682 break;
3683 case 'p':
3684 progress = true;
3685 break;
3686 case 'q':
3687 quiet = true;
3688 break;
3689 case OPTION_OBJECT:
3690 opts = qemu_opts_parse_noisily(&qemu_object_opts,
3691 optarg, true);
3692 if (!opts) {
3693 ret = -1;
3694 goto out_no_progress;
3695 }
3696 break;
3697 case OPTION_IMAGE_OPTS:
3698 image_opts = true;
3699 break;
Max Reitz6f176b42013-09-03 10:09:50 +02003700 }
3701 }
3702
Max Reitz6f176b42013-09-03 10:09:50 +02003703 if (!options) {
Fam Zhengac1307a2014-04-22 13:36:11 +08003704 error_exit("Must specify options (-o)");
Max Reitz6f176b42013-09-03 10:09:50 +02003705 }
3706
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003707 if (qemu_opts_foreach(&qemu_object_opts,
3708 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +02003709 NULL, NULL)) {
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00003710 ret = -1;
3711 goto out_no_progress;
3712 }
3713
Max Reitz76a3a342014-10-27 11:12:51 +01003714 if (quiet) {
3715 progress = false;
3716 }
3717 qemu_progress_init(progress, 1.0);
3718
Kevin Wolfa283cb62014-02-21 16:24:07 +01003719 filename = (optind == argc - 1) ? argv[argc - 1] : NULL;
3720 if (fmt && has_help_option(options)) {
3721 /* If a format is explicitly specified (and possibly no filename is
3722 * given), print option help here */
3723 ret = print_block_option_help(filename, fmt);
3724 goto out;
3725 }
3726
3727 if (optind != argc - 1) {
Max Reitzb2f27e42014-10-27 11:12:52 +01003728 error_report("Expecting one image file name");
3729 ret = -1;
3730 goto out;
Kevin Wolfa283cb62014-02-21 16:24:07 +01003731 }
Max Reitz6f176b42013-09-03 10:09:50 +02003732
Kevin Wolfce099542016-03-15 13:01:04 +01003733 flags = BDRV_O_RDWR;
3734 ret = bdrv_parse_cache_mode(cache, &flags, &writethrough);
Max Reitzbd39e6e2014-07-22 22:58:43 +02003735 if (ret < 0) {
3736 error_report("Invalid cache option: %s", cache);
3737 goto out;
3738 }
3739
Fam Zheng335e9932017-05-03 00:35:39 +08003740 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
3741 false);
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003742 if (!blk) {
Max Reitz6f176b42013-09-03 10:09:50 +02003743 ret = -1;
3744 goto out;
3745 }
Markus Armbruster7e7d56d2014-10-07 13:59:05 +02003746 bs = blk_bs(blk);
Max Reitz6f176b42013-09-03 10:09:50 +02003747
3748 fmt = bs->drv->format_name;
3749
Kevin Wolf626f84f2014-02-21 16:24:06 +01003750 if (has_help_option(options)) {
Kevin Wolfa283cb62014-02-21 16:24:07 +01003751 /* If the format was auto-detected, print option help here */
Max Reitz6f176b42013-09-03 10:09:50 +02003752 ret = print_block_option_help(filename, fmt);
3753 goto out;
3754 }
3755
Max Reitzb2439d22014-12-02 18:32:47 +01003756 if (!bs->drv->create_opts) {
3757 error_report("Format driver '%s' does not support any options to amend",
3758 fmt);
3759 ret = -1;
3760 goto out;
3761 }
3762
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003763 create_opts = qemu_opts_append(create_opts, bs->drv->create_opts);
Chunyan Liu83d05212014-06-05 17:20:51 +08003764 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Paolo Bonziniece90862017-01-04 15:56:24 +01003765 qemu_opts_do_parse(opts, options, NULL, &err);
3766 if (err) {
3767 error_report_err(err);
3768 ret = -1;
3769 goto out;
Max Reitz6f176b42013-09-03 10:09:50 +02003770 }
3771
Max Reitz76a3a342014-10-27 11:12:51 +01003772 /* In case the driver does not call amend_status_cb() */
3773 qemu_progress_print(0.f, 0);
Max Reitz8b139762015-07-27 17:51:32 +02003774 ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL);
Max Reitz76a3a342014-10-27 11:12:51 +01003775 qemu_progress_print(100.f, 0);
Max Reitz6f176b42013-09-03 10:09:50 +02003776 if (ret < 0) {
3777 error_report("Error while amending options: %s", strerror(-ret));
3778 goto out;
3779 }
3780
3781out:
Max Reitz76a3a342014-10-27 11:12:51 +01003782 qemu_progress_end();
3783
Max Reitze814dff2015-08-20 16:00:38 -07003784out_no_progress:
Markus Armbruster26f54e92014-10-07 13:59:04 +02003785 blk_unref(blk);
Chunyan Liu83d05212014-06-05 17:20:51 +08003786 qemu_opts_del(opts);
3787 qemu_opts_free(create_opts);
Kevin Wolf626f84f2014-02-21 16:24:06 +01003788 g_free(options);
3789
Max Reitz6f176b42013-09-03 10:09:50 +02003790 if (ret) {
3791 return 1;
3792 }
3793 return 0;
3794}
3795
Kevin Wolfb6133b82014-08-05 14:17:13 +02003796typedef struct BenchData {
3797 BlockBackend *blk;
3798 uint64_t image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003799 bool write;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003800 int bufsize;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003801 int step;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003802 int nrreq;
3803 int n;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003804 int flush_interval;
3805 bool drain_on_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003806 uint8_t *buf;
3807 QEMUIOVector *qiov;
3808
3809 int in_flight;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003810 bool in_flush;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003811 uint64_t offset;
3812} BenchData;
3813
Kevin Wolf55d539c2016-06-03 13:59:41 +02003814static void bench_undrained_flush_cb(void *opaque, int ret)
3815{
3816 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003817 error_report("Failed flush request: %s", strerror(-ret));
Kevin Wolf55d539c2016-06-03 13:59:41 +02003818 exit(EXIT_FAILURE);
3819 }
3820}
3821
Kevin Wolfb6133b82014-08-05 14:17:13 +02003822static void bench_cb(void *opaque, int ret)
3823{
3824 BenchData *b = opaque;
3825 BlockAIOCB *acb;
3826
3827 if (ret < 0) {
Markus Armbrusterdf3c2862016-08-03 13:37:51 +02003828 error_report("Failed request: %s", strerror(-ret));
Kevin Wolfb6133b82014-08-05 14:17:13 +02003829 exit(EXIT_FAILURE);
3830 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02003831
3832 if (b->in_flush) {
3833 /* Just finished a flush with drained queue: Start next requests */
3834 assert(b->in_flight == 0);
3835 b->in_flush = false;
3836 } else if (b->in_flight > 0) {
3837 int remaining = b->n - b->in_flight;
3838
Kevin Wolfb6133b82014-08-05 14:17:13 +02003839 b->n--;
3840 b->in_flight--;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003841
3842 /* Time for flush? Drain queue if requested, then flush */
3843 if (b->flush_interval && remaining % b->flush_interval == 0) {
3844 if (!b->in_flight || !b->drain_on_flush) {
3845 BlockCompletionFunc *cb;
3846
3847 if (b->drain_on_flush) {
3848 b->in_flush = true;
3849 cb = bench_cb;
3850 } else {
3851 cb = bench_undrained_flush_cb;
3852 }
3853
3854 acb = blk_aio_flush(b->blk, cb, b);
3855 if (!acb) {
3856 error_report("Failed to issue flush request");
3857 exit(EXIT_FAILURE);
3858 }
3859 }
3860 if (b->drain_on_flush) {
3861 return;
3862 }
3863 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003864 }
3865
3866 while (b->n > b->in_flight && b->in_flight < b->nrreq) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003867 int64_t offset = b->offset;
3868 /* blk_aio_* might look for completed I/Os and kick bench_cb
3869 * again, so make sure this operation is counted by in_flight
3870 * and b->offset is ready for the next submission.
3871 */
3872 b->in_flight++;
3873 b->offset += b->step;
3874 b->offset %= b->image_size;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003875 if (b->write) {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003876 acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003877 } else {
Paolo Bonzini4baaa8c2016-12-07 16:08:27 +01003878 acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003879 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003880 if (!acb) {
3881 error_report("Failed to issue request");
3882 exit(EXIT_FAILURE);
3883 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02003884 }
3885}
3886
3887static int img_bench(int argc, char **argv)
3888{
3889 int c, ret = 0;
3890 const char *fmt = NULL, *filename;
3891 bool quiet = false;
3892 bool image_opts = false;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003893 bool is_write = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003894 int count = 75000;
3895 int depth = 64;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003896 int64_t offset = 0;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003897 size_t bufsize = 4096;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003898 int pattern = 0;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003899 size_t step = 0;
Kevin Wolf55d539c2016-06-03 13:59:41 +02003900 int flush_interval = 0;
3901 bool drain_on_flush = true;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003902 int64_t image_size;
3903 BlockBackend *blk = NULL;
3904 BenchData data = {};
3905 int flags = 0;
Kevin Wolf604e8612016-06-14 11:29:32 +02003906 bool writethrough = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003907 struct timeval t1, t2;
3908 int i;
Fam Zheng335e9932017-05-03 00:35:39 +08003909 bool force_share = false;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003910
3911 for (;;) {
3912 static const struct option long_options[] = {
3913 {"help", no_argument, 0, 'h'},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003914 {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003915 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Kevin Wolfb6495fa2015-07-10 18:09:18 +02003916 {"pattern", required_argument, 0, OPTION_PATTERN},
Kevin Wolf55d539c2016-06-03 13:59:41 +02003917 {"no-drain", no_argument, 0, OPTION_NO_DRAIN},
Fam Zheng335e9932017-05-03 00:35:39 +08003918 {"force-share", no_argument, 0, 'U'},
Kevin Wolfb6133b82014-08-05 14:17:13 +02003919 {0, 0, 0, 0}
3920 };
Fam Zheng335e9932017-05-03 00:35:39 +08003921 c = getopt_long(argc, argv, ":hc:d:f:no:qs:S:t:wU", long_options, NULL);
Kevin Wolfb6133b82014-08-05 14:17:13 +02003922 if (c == -1) {
3923 break;
3924 }
3925
3926 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003927 case ':':
3928 missing_argument(argv[optind - 1]);
3929 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003930 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08003931 unrecognized_option(argv[optind - 1]);
3932 break;
3933 case 'h':
Kevin Wolfb6133b82014-08-05 14:17:13 +02003934 help();
3935 break;
3936 case 'c':
3937 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003938 unsigned long res;
3939
3940 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003941 error_report("Invalid request count specified");
3942 return 1;
3943 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003944 count = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003945 break;
3946 }
3947 case 'd':
3948 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00003949 unsigned long res;
3950
3951 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003952 error_report("Invalid queue depth specified");
3953 return 1;
3954 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00003955 depth = res;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003956 break;
3957 }
3958 case 'f':
3959 fmt = optarg;
3960 break;
3961 case 'n':
3962 flags |= BDRV_O_NATIVE_AIO;
3963 break;
Kevin Wolfd3199a32015-07-10 18:09:18 +02003964 case 'o':
3965 {
Markus Armbruster606caa02017-02-21 21:14:04 +01003966 offset = cvtnum(optarg);
3967 if (offset < 0) {
Kevin Wolfd3199a32015-07-10 18:09:18 +02003968 error_report("Invalid offset specified");
3969 return 1;
3970 }
3971 break;
3972 }
3973 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003974 case 'q':
3975 quiet = true;
3976 break;
3977 case 's':
3978 {
3979 int64_t sval;
Kevin Wolfb6133b82014-08-05 14:17:13 +02003980
Markus Armbruster606caa02017-02-21 21:14:04 +01003981 sval = cvtnum(optarg);
3982 if (sval < 0 || sval > INT_MAX) {
Kevin Wolfb6133b82014-08-05 14:17:13 +02003983 error_report("Invalid buffer size specified");
3984 return 1;
3985 }
3986
3987 bufsize = sval;
3988 break;
3989 }
Kevin Wolf83de9be2015-07-13 13:13:17 +02003990 case 'S':
3991 {
3992 int64_t sval;
Kevin Wolf83de9be2015-07-13 13:13:17 +02003993
Markus Armbruster606caa02017-02-21 21:14:04 +01003994 sval = cvtnum(optarg);
3995 if (sval < 0 || sval > INT_MAX) {
Kevin Wolf83de9be2015-07-13 13:13:17 +02003996 error_report("Invalid step size specified");
3997 return 1;
3998 }
3999
4000 step = sval;
4001 break;
4002 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02004003 case 't':
4004 ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough);
4005 if (ret < 0) {
4006 error_report("Invalid cache mode");
4007 ret = -1;
4008 goto out;
4009 }
4010 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004011 case 'w':
4012 flags |= BDRV_O_RDWR;
4013 is_write = true;
4014 break;
Fam Zheng335e9932017-05-03 00:35:39 +08004015 case 'U':
4016 force_share = true;
4017 break;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004018 case OPTION_PATTERN:
4019 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00004020 unsigned long res;
4021
4022 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) {
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004023 error_report("Invalid pattern byte specified");
4024 return 1;
4025 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00004026 pattern = res;
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004027 break;
4028 }
Kevin Wolf55d539c2016-06-03 13:59:41 +02004029 case OPTION_FLUSH_INTERVAL:
4030 {
Peter Maydell8b3c6792017-02-10 16:28:23 +00004031 unsigned long res;
4032
4033 if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02004034 error_report("Invalid flush interval specified");
4035 return 1;
4036 }
Peter Maydell8b3c6792017-02-10 16:28:23 +00004037 flush_interval = res;
Kevin Wolf55d539c2016-06-03 13:59:41 +02004038 break;
4039 }
4040 case OPTION_NO_DRAIN:
4041 drain_on_flush = false;
4042 break;
Kevin Wolfb6133b82014-08-05 14:17:13 +02004043 case OPTION_IMAGE_OPTS:
4044 image_opts = true;
4045 break;
4046 }
4047 }
4048
4049 if (optind != argc - 1) {
4050 error_exit("Expecting one image file name");
4051 }
4052 filename = argv[argc - 1];
4053
Kevin Wolf55d539c2016-06-03 13:59:41 +02004054 if (!is_write && flush_interval) {
4055 error_report("--flush-interval is only available in write tests");
4056 ret = -1;
4057 goto out;
4058 }
4059 if (flush_interval && flush_interval < depth) {
4060 error_report("Flush interval can't be smaller than depth");
4061 ret = -1;
4062 goto out;
4063 }
4064
Fam Zheng335e9932017-05-03 00:35:39 +08004065 blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet,
4066 force_share);
Kevin Wolfb6133b82014-08-05 14:17:13 +02004067 if (!blk) {
4068 ret = -1;
4069 goto out;
4070 }
4071
4072 image_size = blk_getlength(blk);
4073 if (image_size < 0) {
4074 ret = image_size;
4075 goto out;
4076 }
4077
4078 data = (BenchData) {
Kevin Wolf55d539c2016-06-03 13:59:41 +02004079 .blk = blk,
4080 .image_size = image_size,
4081 .bufsize = bufsize,
4082 .step = step ?: bufsize,
4083 .nrreq = depth,
4084 .n = count,
4085 .offset = offset,
4086 .write = is_write,
4087 .flush_interval = flush_interval,
4088 .drain_on_flush = drain_on_flush,
Kevin Wolfb6133b82014-08-05 14:17:13 +02004089 };
Kevin Wolfd3199a32015-07-10 18:09:18 +02004090 printf("Sending %d %s requests, %d bytes each, %d in parallel "
Kevin Wolf83de9be2015-07-13 13:13:17 +02004091 "(starting at offset %" PRId64 ", step size %d)\n",
Kevin Wolfd3199a32015-07-10 18:09:18 +02004092 data.n, data.write ? "write" : "read", data.bufsize, data.nrreq,
Kevin Wolf83de9be2015-07-13 13:13:17 +02004093 data.offset, data.step);
Kevin Wolf55d539c2016-06-03 13:59:41 +02004094 if (flush_interval) {
4095 printf("Sending flush every %d requests\n", flush_interval);
4096 }
Kevin Wolfb6133b82014-08-05 14:17:13 +02004097
4098 data.buf = blk_blockalign(blk, data.nrreq * data.bufsize);
Kevin Wolfb6495fa2015-07-10 18:09:18 +02004099 memset(data.buf, pattern, data.nrreq * data.bufsize);
4100
Kevin Wolfb6133b82014-08-05 14:17:13 +02004101 data.qiov = g_new(QEMUIOVector, data.nrreq);
4102 for (i = 0; i < data.nrreq; i++) {
4103 qemu_iovec_init(&data.qiov[i], 1);
4104 qemu_iovec_add(&data.qiov[i],
4105 data.buf + i * data.bufsize, data.bufsize);
4106 }
4107
4108 gettimeofday(&t1, NULL);
4109 bench_cb(&data, 0);
4110
4111 while (data.n > 0) {
4112 main_loop_wait(false);
4113 }
4114 gettimeofday(&t2, NULL);
4115
4116 printf("Run completed in %3.3f seconds.\n",
4117 (t2.tv_sec - t1.tv_sec)
4118 + ((double)(t2.tv_usec - t1.tv_usec) / 1000000));
4119
4120out:
4121 qemu_vfree(data.buf);
4122 blk_unref(blk);
4123
4124 if (ret) {
4125 return 1;
4126 }
4127 return 0;
4128}
4129
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004130#define C_BS 01
4131#define C_COUNT 02
4132#define C_IF 04
4133#define C_OF 010
Reda Sallahif7c15532016-08-10 16:16:09 +02004134#define C_SKIP 020
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004135
4136struct DdInfo {
4137 unsigned int flags;
4138 int64_t count;
4139};
4140
4141struct DdIo {
4142 int bsz; /* Block size */
4143 char *filename;
4144 uint8_t *buf;
Reda Sallahif7c15532016-08-10 16:16:09 +02004145 int64_t offset;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004146};
4147
4148struct DdOpts {
4149 const char *name;
4150 int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *);
4151 unsigned int flag;
4152};
4153
4154static int img_dd_bs(const char *arg,
4155 struct DdIo *in, struct DdIo *out,
4156 struct DdInfo *dd)
4157{
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004158 int64_t res;
4159
Markus Armbruster606caa02017-02-21 21:14:04 +01004160 res = cvtnum(arg);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004161
Markus Armbruster606caa02017-02-21 21:14:04 +01004162 if (res <= 0 || res > INT_MAX) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004163 error_report("invalid number: '%s'", arg);
4164 return 1;
4165 }
4166 in->bsz = out->bsz = res;
4167
4168 return 0;
4169}
4170
4171static int img_dd_count(const char *arg,
4172 struct DdIo *in, struct DdIo *out,
4173 struct DdInfo *dd)
4174{
Markus Armbruster606caa02017-02-21 21:14:04 +01004175 dd->count = cvtnum(arg);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004176
Markus Armbruster606caa02017-02-21 21:14:04 +01004177 if (dd->count < 0) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004178 error_report("invalid number: '%s'", arg);
4179 return 1;
4180 }
4181
4182 return 0;
4183}
4184
4185static int img_dd_if(const char *arg,
4186 struct DdIo *in, struct DdIo *out,
4187 struct DdInfo *dd)
4188{
4189 in->filename = g_strdup(arg);
4190
4191 return 0;
4192}
4193
4194static int img_dd_of(const char *arg,
4195 struct DdIo *in, struct DdIo *out,
4196 struct DdInfo *dd)
4197{
4198 out->filename = g_strdup(arg);
4199
4200 return 0;
4201}
4202
Reda Sallahif7c15532016-08-10 16:16:09 +02004203static int img_dd_skip(const char *arg,
4204 struct DdIo *in, struct DdIo *out,
4205 struct DdInfo *dd)
4206{
Markus Armbruster606caa02017-02-21 21:14:04 +01004207 in->offset = cvtnum(arg);
Reda Sallahif7c15532016-08-10 16:16:09 +02004208
Markus Armbruster606caa02017-02-21 21:14:04 +01004209 if (in->offset < 0) {
Reda Sallahif7c15532016-08-10 16:16:09 +02004210 error_report("invalid number: '%s'", arg);
4211 return 1;
4212 }
4213
4214 return 0;
4215}
4216
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004217static int img_dd(int argc, char **argv)
4218{
4219 int ret = 0;
4220 char *arg = NULL;
4221 char *tmp;
4222 BlockDriver *drv = NULL, *proto_drv = NULL;
4223 BlockBackend *blk1 = NULL, *blk2 = NULL;
4224 QemuOpts *opts = NULL;
4225 QemuOptsList *create_opts = NULL;
4226 Error *local_err = NULL;
4227 bool image_opts = false;
4228 int c, i;
4229 const char *out_fmt = "raw";
4230 const char *fmt = NULL;
4231 int64_t size = 0;
4232 int64_t block_count = 0, out_pos, in_pos;
Fam Zheng335e9932017-05-03 00:35:39 +08004233 bool force_share = false;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004234 struct DdInfo dd = {
4235 .flags = 0,
4236 .count = 0,
4237 };
4238 struct DdIo in = {
4239 .bsz = 512, /* Block size is by default 512 bytes */
4240 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02004241 .buf = NULL,
4242 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004243 };
4244 struct DdIo out = {
4245 .bsz = 512,
4246 .filename = NULL,
Reda Sallahif7c15532016-08-10 16:16:09 +02004247 .buf = NULL,
4248 .offset = 0
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004249 };
4250
4251 const struct DdOpts options[] = {
4252 { "bs", img_dd_bs, C_BS },
4253 { "count", img_dd_count, C_COUNT },
4254 { "if", img_dd_if, C_IF },
4255 { "of", img_dd_of, C_OF },
Reda Sallahif7c15532016-08-10 16:16:09 +02004256 { "skip", img_dd_skip, C_SKIP },
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004257 { NULL, NULL, 0 }
4258 };
4259 const struct option long_options[] = {
4260 { "help", no_argument, 0, 'h'},
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004261 { "object", required_argument, 0, OPTION_OBJECT},
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004262 { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
Fam Zheng335e9932017-05-03 00:35:39 +08004263 { "force-share", no_argument, 0, 'U'},
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004264 { 0, 0, 0, 0 }
4265 };
4266
Fam Zheng335e9932017-05-03 00:35:39 +08004267 while ((c = getopt_long(argc, argv, ":hf:O:U", long_options, NULL))) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004268 if (c == EOF) {
4269 break;
4270 }
4271 switch (c) {
4272 case 'O':
4273 out_fmt = optarg;
4274 break;
4275 case 'f':
4276 fmt = optarg;
4277 break;
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004278 case ':':
4279 missing_argument(argv[optind - 1]);
4280 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004281 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004282 unrecognized_option(argv[optind - 1]);
4283 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004284 case 'h':
4285 help();
4286 break;
Fam Zheng335e9932017-05-03 00:35:39 +08004287 case 'U':
4288 force_share = true;
4289 break;
Stefan Hajnoczi2a245702017-06-19 16:00:02 +01004290 case OPTION_OBJECT:
4291 if (!qemu_opts_parse_noisily(&qemu_object_opts, optarg, true)) {
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004292 ret = -1;
4293 goto out;
4294 }
Stefan Hajnoczi2a245702017-06-19 16:00:02 +01004295 break;
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004296 case OPTION_IMAGE_OPTS:
4297 image_opts = true;
4298 break;
4299 }
4300 }
4301
4302 for (i = optind; i < argc; i++) {
4303 int j;
4304 arg = g_strdup(argv[i]);
4305
4306 tmp = strchr(arg, '=');
4307 if (tmp == NULL) {
4308 error_report("unrecognized operand %s", arg);
4309 ret = -1;
4310 goto out;
4311 }
4312
4313 *tmp++ = '\0';
4314
4315 for (j = 0; options[j].name != NULL; j++) {
4316 if (!strcmp(arg, options[j].name)) {
4317 break;
4318 }
4319 }
4320 if (options[j].name == NULL) {
4321 error_report("unrecognized operand %s", arg);
4322 ret = -1;
4323 goto out;
4324 }
4325
4326 if (options[j].f(tmp, &in, &out, &dd) != 0) {
4327 ret = -1;
4328 goto out;
4329 }
4330 dd.flags |= options[j].flag;
4331 g_free(arg);
4332 arg = NULL;
4333 }
4334
4335 if (!(dd.flags & C_IF && dd.flags & C_OF)) {
4336 error_report("Must specify both input and output files");
4337 ret = -1;
4338 goto out;
4339 }
Daniel P. Berrange83d4bf92017-05-15 17:47:09 +01004340
4341 if (qemu_opts_foreach(&qemu_object_opts,
4342 user_creatable_add_opts_foreach,
4343 NULL, NULL)) {
4344 ret = -1;
4345 goto out;
4346 }
4347
Fam Zheng335e9932017-05-03 00:35:39 +08004348 blk1 = img_open(image_opts, in.filename, fmt, 0, false, false,
4349 force_share);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004350
4351 if (!blk1) {
4352 ret = -1;
4353 goto out;
4354 }
4355
4356 drv = bdrv_find_format(out_fmt);
4357 if (!drv) {
4358 error_report("Unknown file format");
4359 ret = -1;
4360 goto out;
4361 }
4362 proto_drv = bdrv_find_protocol(out.filename, true, &local_err);
4363
4364 if (!proto_drv) {
4365 error_report_err(local_err);
4366 ret = -1;
4367 goto out;
4368 }
4369 if (!drv->create_opts) {
4370 error_report("Format driver '%s' does not support image creation",
4371 drv->format_name);
4372 ret = -1;
4373 goto out;
4374 }
4375 if (!proto_drv->create_opts) {
4376 error_report("Protocol driver '%s' does not support image creation",
4377 proto_drv->format_name);
4378 ret = -1;
4379 goto out;
4380 }
4381 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4382 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4383
4384 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4385
4386 size = blk_getlength(blk1);
4387 if (size < 0) {
4388 error_report("Failed to get size for '%s'", in.filename);
4389 ret = -1;
4390 goto out;
4391 }
4392
4393 if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz &&
4394 dd.count * in.bsz < size) {
4395 size = dd.count * in.bsz;
4396 }
4397
Reda Sallahif7c15532016-08-10 16:16:09 +02004398 /* Overflow means the specified offset is beyond input image's size */
4399 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4400 size < in.bsz * in.offset)) {
4401 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort);
4402 } else {
4403 qemu_opt_set_number(opts, BLOCK_OPT_SIZE,
4404 size - in.bsz * in.offset, &error_abort);
4405 }
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004406
4407 ret = bdrv_create(drv, out.filename, opts, &local_err);
4408 if (ret < 0) {
4409 error_reportf_err(local_err,
4410 "%s: error while creating output image: ",
4411 out.filename);
4412 ret = -1;
4413 goto out;
4414 }
4415
Daniel P. Berrangeea204dd2017-05-15 17:47:10 +01004416 /* TODO, we can't honour --image-opts for the target,
4417 * since it needs to be given in a format compatible
4418 * with the bdrv_create() call above which does not
4419 * support image-opts style.
4420 */
Daniel P. Berrange29cf9332017-05-15 17:47:12 +01004421 blk2 = img_open_file(out.filename, NULL, out_fmt, BDRV_O_RDWR,
Daniel P. Berrangeea204dd2017-05-15 17:47:10 +01004422 false, false, false);
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004423
4424 if (!blk2) {
4425 ret = -1;
4426 goto out;
4427 }
4428
Reda Sallahif7c15532016-08-10 16:16:09 +02004429 if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz ||
4430 size < in.offset * in.bsz)) {
4431 /* We give a warning if the skip option is bigger than the input
4432 * size and create an empty output disk image (i.e. like dd(1)).
4433 */
4434 error_report("%s: cannot skip to specified offset", in.filename);
4435 in_pos = size;
4436 } else {
4437 in_pos = in.offset * in.bsz;
4438 }
4439
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004440 in.buf = g_new(uint8_t, in.bsz);
4441
Reda Sallahif7c15532016-08-10 16:16:09 +02004442 for (out_pos = 0; in_pos < size; block_count++) {
Reda Sallahi86ce1f62016-08-10 04:43:12 +02004443 int in_ret, out_ret;
4444
4445 if (in_pos + in.bsz > size) {
4446 in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos);
4447 } else {
4448 in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz);
4449 }
4450 if (in_ret < 0) {
4451 error_report("error while reading from input image file: %s",
4452 strerror(-in_ret));
4453 ret = -1;
4454 goto out;
4455 }
4456 in_pos += in_ret;
4457
4458 out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0);
4459
4460 if (out_ret < 0) {
4461 error_report("error while writing to output image file: %s",
4462 strerror(-out_ret));
4463 ret = -1;
4464 goto out;
4465 }
4466 out_pos += out_ret;
4467 }
4468
4469out:
4470 g_free(arg);
4471 qemu_opts_del(opts);
4472 qemu_opts_free(create_opts);
4473 blk_unref(blk1);
4474 blk_unref(blk2);
4475 g_free(in.filename);
4476 g_free(out.filename);
4477 g_free(in.buf);
4478 g_free(out.buf);
4479
4480 if (ret) {
4481 return 1;
4482 }
4483 return 0;
4484}
4485
Stefan Hajnoczifd03c2b2017-07-05 13:57:36 +01004486static void dump_json_block_measure_info(BlockMeasureInfo *info)
4487{
4488 QString *str;
4489 QObject *obj;
4490 Visitor *v = qobject_output_visitor_new(&obj);
4491
4492 visit_type_BlockMeasureInfo(v, NULL, &info, &error_abort);
4493 visit_complete(v, &obj);
4494 str = qobject_to_json_pretty(obj);
4495 assert(str != NULL);
4496 printf("%s\n", qstring_get_str(str));
4497 qobject_decref(obj);
4498 visit_free(v);
4499 QDECREF(str);
4500}
4501
4502static int img_measure(int argc, char **argv)
4503{
4504 static const struct option long_options[] = {
4505 {"help", no_argument, 0, 'h'},
4506 {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS},
4507 {"object", required_argument, 0, OPTION_OBJECT},
4508 {"output", required_argument, 0, OPTION_OUTPUT},
4509 {"size", required_argument, 0, OPTION_SIZE},
4510 {"force-share", no_argument, 0, 'U'},
4511 {0, 0, 0, 0}
4512 };
4513 OutputFormat output_format = OFORMAT_HUMAN;
4514 BlockBackend *in_blk = NULL;
4515 BlockDriver *drv;
4516 const char *filename = NULL;
4517 const char *fmt = NULL;
4518 const char *out_fmt = "raw";
4519 char *options = NULL;
4520 char *snapshot_name = NULL;
4521 bool force_share = false;
4522 QemuOpts *opts = NULL;
4523 QemuOpts *object_opts = NULL;
4524 QemuOpts *sn_opts = NULL;
4525 QemuOptsList *create_opts = NULL;
4526 bool image_opts = false;
4527 uint64_t img_size = UINT64_MAX;
4528 BlockMeasureInfo *info = NULL;
4529 Error *local_err = NULL;
4530 int ret = 1;
4531 int c;
4532
4533 while ((c = getopt_long(argc, argv, "hf:O:o:l:U",
4534 long_options, NULL)) != -1) {
4535 switch (c) {
4536 case '?':
4537 case 'h':
4538 help();
4539 break;
4540 case 'f':
4541 fmt = optarg;
4542 break;
4543 case 'O':
4544 out_fmt = optarg;
4545 break;
4546 case 'o':
4547 if (!is_valid_option_list(optarg)) {
4548 error_report("Invalid option list: %s", optarg);
4549 goto out;
4550 }
4551 if (!options) {
4552 options = g_strdup(optarg);
4553 } else {
4554 char *old_options = options;
4555 options = g_strdup_printf("%s,%s", options, optarg);
4556 g_free(old_options);
4557 }
4558 break;
4559 case 'l':
4560 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
4561 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
4562 optarg, false);
4563 if (!sn_opts) {
4564 error_report("Failed in parsing snapshot param '%s'",
4565 optarg);
4566 goto out;
4567 }
4568 } else {
4569 snapshot_name = optarg;
4570 }
4571 break;
4572 case 'U':
4573 force_share = true;
4574 break;
4575 case OPTION_OBJECT:
4576 object_opts = qemu_opts_parse_noisily(&qemu_object_opts,
4577 optarg, true);
4578 if (!object_opts) {
4579 goto out;
4580 }
4581 break;
4582 case OPTION_IMAGE_OPTS:
4583 image_opts = true;
4584 break;
4585 case OPTION_OUTPUT:
4586 if (!strcmp(optarg, "json")) {
4587 output_format = OFORMAT_JSON;
4588 } else if (!strcmp(optarg, "human")) {
4589 output_format = OFORMAT_HUMAN;
4590 } else {
4591 error_report("--output must be used with human or json "
4592 "as argument.");
4593 goto out;
4594 }
4595 break;
4596 case OPTION_SIZE:
4597 {
4598 int64_t sval;
4599
4600 sval = cvtnum(optarg);
4601 if (sval < 0) {
4602 if (sval == -ERANGE) {
4603 error_report("Image size must be less than 8 EiB!");
4604 } else {
4605 error_report("Invalid image size specified! You may use "
4606 "k, M, G, T, P or E suffixes for ");
4607 error_report("kilobytes, megabytes, gigabytes, terabytes, "
4608 "petabytes and exabytes.");
4609 }
4610 goto out;
4611 }
4612 img_size = (uint64_t)sval;
4613 }
4614 break;
4615 }
4616 }
4617
4618 if (qemu_opts_foreach(&qemu_object_opts,
4619 user_creatable_add_opts_foreach,
4620 NULL, NULL)) {
4621 goto out;
4622 }
4623
4624 if (argc - optind > 1) {
4625 error_report("At most one filename argument is allowed.");
4626 goto out;
4627 } else if (argc - optind == 1) {
4628 filename = argv[optind];
4629 }
4630
4631 if (!filename &&
4632 (object_opts || image_opts || fmt || snapshot_name || sn_opts)) {
4633 error_report("--object, --image-opts, -f, and -l "
4634 "require a filename argument.");
4635 goto out;
4636 }
4637 if (filename && img_size != UINT64_MAX) {
4638 error_report("--size N cannot be used together with a filename.");
4639 goto out;
4640 }
4641 if (!filename && img_size == UINT64_MAX) {
4642 error_report("Either --size N or one filename must be specified.");
4643 goto out;
4644 }
4645
4646 if (filename) {
4647 in_blk = img_open(image_opts, filename, fmt, 0,
4648 false, false, force_share);
4649 if (!in_blk) {
4650 goto out;
4651 }
4652
4653 if (sn_opts) {
4654 bdrv_snapshot_load_tmp(blk_bs(in_blk),
4655 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
4656 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
4657 &local_err);
4658 } else if (snapshot_name != NULL) {
4659 bdrv_snapshot_load_tmp_by_id_or_name(blk_bs(in_blk),
4660 snapshot_name, &local_err);
4661 }
4662 if (local_err) {
4663 error_reportf_err(local_err, "Failed to load snapshot: ");
4664 goto out;
4665 }
4666 }
4667
4668 drv = bdrv_find_format(out_fmt);
4669 if (!drv) {
4670 error_report("Unknown file format '%s'", out_fmt);
4671 goto out;
4672 }
4673 if (!drv->create_opts) {
4674 error_report("Format driver '%s' does not support image creation",
4675 drv->format_name);
4676 goto out;
4677 }
4678
4679 create_opts = qemu_opts_append(create_opts, drv->create_opts);
4680 create_opts = qemu_opts_append(create_opts, bdrv_file.create_opts);
4681 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4682 if (options) {
4683 qemu_opts_do_parse(opts, options, NULL, &local_err);
4684 if (local_err) {
4685 error_report_err(local_err);
4686 error_report("Invalid options for file format '%s'", out_fmt);
4687 goto out;
4688 }
4689 }
4690 if (img_size != UINT64_MAX) {
4691 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4692 }
4693
4694 info = bdrv_measure(drv, opts, in_blk ? blk_bs(in_blk) : NULL, &local_err);
4695 if (local_err) {
4696 error_report_err(local_err);
4697 goto out;
4698 }
4699
4700 if (output_format == OFORMAT_HUMAN) {
4701 printf("required size: %" PRIu64 "\n", info->required);
4702 printf("fully allocated size: %" PRIu64 "\n", info->fully_allocated);
4703 } else {
4704 dump_json_block_measure_info(info);
4705 }
4706
4707 ret = 0;
4708
4709out:
4710 qapi_free_BlockMeasureInfo(info);
4711 qemu_opts_del(object_opts);
4712 qemu_opts_del(opts);
4713 qemu_opts_del(sn_opts);
4714 qemu_opts_free(create_opts);
4715 g_free(options);
4716 blk_unref(in_blk);
4717 return ret;
4718}
Kevin Wolfb6133b82014-08-05 14:17:13 +02004719
Anthony Liguoric227f092009-10-01 16:12:16 -05004720static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01004721#define DEF(option, callback, arg_string) \
4722 { option, callback },
4723#include "qemu-img-cmds.h"
4724#undef DEF
4725#undef GEN_DOCS
4726 { NULL, NULL, },
4727};
4728
bellardea2384d2004-08-01 21:59:26 +00004729int main(int argc, char **argv)
4730{
Anthony Liguoric227f092009-10-01 16:12:16 -05004731 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01004732 const char *cmdname;
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004733 Error *local_error = NULL;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004734 char *trace_file = NULL;
Jeff Cody7db16892014-04-25 17:02:32 -04004735 int c;
Jeff Cody7db16892014-04-25 17:02:32 -04004736 static const struct option long_options[] = {
4737 {"help", no_argument, 0, 'h'},
Denis V. Lunev10985132016-06-17 17:44:13 +03004738 {"version", no_argument, 0, 'V'},
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004739 {"trace", required_argument, NULL, 'T'},
Jeff Cody7db16892014-04-25 17:02:32 -04004740 {0, 0, 0, 0}
4741 };
bellardea2384d2004-08-01 21:59:26 +00004742
MORITA Kazutaka526eda12013-07-23 17:30:11 +09004743#ifdef CONFIG_POSIX
4744 signal(SIGPIPE, SIG_IGN);
4745#endif
4746
Daniel P. Berrangefe4db842016-10-04 14:35:52 +01004747 module_call_init(MODULE_INIT_TRACE);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004748 error_set_progname(argv[0]);
Fam Zheng10f5bff2014-02-10 14:48:51 +08004749 qemu_init_exec_dir(argv[0]);
Kevin Wolf53f76e52010-12-16 15:10:32 +01004750
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004751 if (qemu_init_main_loop(&local_error)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01004752 error_report_err(local_error);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03004753 exit(EXIT_FAILURE);
4754 }
4755
Eduardo Habkoste8f2d272016-05-12 11:10:04 -03004756 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +01004757
Daniel P. Berrange064097d2016-02-10 18:41:01 +00004758 module_call_init(MODULE_INIT_QOM);
bellardea2384d2004-08-01 21:59:26 +00004759 bdrv_init();
Fam Zhengac1307a2014-04-22 13:36:11 +08004760 if (argc < 2) {
4761 error_exit("Not enough arguments");
4762 }
Stuart Brady153859b2009-06-07 00:42:17 +01004763
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004764 qemu_add_opts(&qemu_object_opts);
Daniel P. Berrangeeb769f72016-02-17 10:10:20 +00004765 qemu_add_opts(&qemu_source_opts);
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004766 qemu_add_opts(&qemu_trace_opts);
Daniel P. Berrange3babeb12016-02-17 10:10:17 +00004767
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004768 while ((c = getopt_long(argc, argv, "+:hVT:", long_options, NULL)) != -1) {
Denis V. Lunev10985132016-06-17 17:44:13 +03004769 switch (c) {
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004770 case ':':
4771 missing_argument(argv[optind - 1]);
4772 return 0;
Stefan Hajnoczi4581c162017-03-17 18:45:39 +08004773 case '?':
Stefan Hajnoczic9192972017-03-17 18:45:41 +08004774 unrecognized_option(argv[optind - 1]);
4775 return 0;
4776 case 'h':
Denis V. Lunev10985132016-06-17 17:44:13 +03004777 help();
4778 return 0;
4779 case 'V':
4780 printf(QEMU_IMG_VERSION);
4781 return 0;
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004782 case 'T':
4783 g_free(trace_file);
4784 trace_file = trace_opt_parse(optarg);
4785 break;
Stuart Brady153859b2009-06-07 00:42:17 +01004786 }
bellardea2384d2004-08-01 21:59:26 +00004787 }
Stuart Brady153859b2009-06-07 00:42:17 +01004788
Denis V. Lunev10985132016-06-17 17:44:13 +03004789 cmdname = argv[optind];
Jeff Cody7db16892014-04-25 17:02:32 -04004790
Denis V. Lunev10985132016-06-17 17:44:13 +03004791 /* reset getopt_long scanning */
4792 argc -= optind;
4793 if (argc < 1) {
Jeff Cody5f6979c2014-04-28 14:37:18 -04004794 return 0;
4795 }
Denis V. Lunev10985132016-06-17 17:44:13 +03004796 argv += optind;
Denis V. Lunevcfef6a42016-07-04 16:16:48 +03004797 optind = 0;
Denis V. Lunev10985132016-06-17 17:44:13 +03004798
Denis V. Lunev06a1e0c2016-06-17 17:44:14 +03004799 if (!trace_init_backends()) {
4800 exit(1);
4801 }
4802 trace_init_file(trace_file);
4803 qemu_set_log(LOG_TRACE);
4804
Denis V. Lunev10985132016-06-17 17:44:13 +03004805 /* find the command */
4806 for (cmd = img_cmds; cmd->name != NULL; cmd++) {
4807 if (!strcmp(cmdname, cmd->name)) {
4808 return cmd->handler(argc, argv);
4809 }
4810 }
Jeff Cody7db16892014-04-25 17:02:32 -04004811
Stuart Brady153859b2009-06-07 00:42:17 +01004812 /* not found */
Fam Zhengac1307a2014-04-22 13:36:11 +08004813 error_exit("Command not found: %s", cmdname);
bellardea2384d2004-08-01 21:59:26 +00004814}