bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1 | /* |
bellard | fb43f4d | 2006-08-07 21:34:46 +0000 | [diff] [blame] | 2 | * QEMU disk image utility |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6 | * 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 Maydell | 80c71a2 | 2016-01-18 18:01:42 +0000 | [diff] [blame] | 24 | #include "qemu/osdep.h" |
Fam Zheng | 67a1de0 | 2016-06-01 17:44:21 +0800 | [diff] [blame] | 25 | #include "qemu-version.h" |
Markus Armbruster | da34e65 | 2016-03-14 09:01:28 +0100 | [diff] [blame] | 26 | #include "qapi/error.h" |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 27 | #include "qapi-visit.h" |
Daniel P. Berrange | b3db211 | 2016-09-30 15:45:27 +0100 | [diff] [blame] | 28 | #include "qapi/qobject-output-visitor.h" |
Markus Armbruster | cc7a8ea | 2015-03-17 17:22:46 +0100 | [diff] [blame] | 29 | #include "qapi/qmp/qerror.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 30 | #include "qapi/qmp/qjson.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 31 | #include "qemu/cutils.h" |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 32 | #include "qemu/config-file.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 33 | #include "qemu/option.h" |
| 34 | #include "qemu/error-report.h" |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 35 | #include "qemu/log.h" |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 36 | #include "qom/object_interfaces.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 37 | #include "sysemu/sysemu.h" |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 38 | #include "sysemu/block-backend.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 39 | #include "block/block_int.h" |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 40 | #include "block/blockjob.h" |
Wenchao Xia | f364ec6 | 2013-05-25 11:09:44 +0800 | [diff] [blame] | 41 | #include "block/qapi.h" |
Daniel P. Berrange | c229708 | 2016-04-06 12:12:06 +0100 | [diff] [blame] | 42 | #include "crypto/init.h" |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 43 | #include "trace/control.h" |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 44 | #include <getopt.h> |
bellard | e844533 | 2006-06-14 15:32:10 +0000 | [diff] [blame] | 45 | |
Don Slutz | 61979a6 | 2015-01-09 10:17:35 -0500 | [diff] [blame] | 46 | #define QEMU_IMG_VERSION "qemu-img version " QEMU_VERSION QEMU_PKGVERSION \ |
Thomas Huth | 0781dd6 | 2016-10-05 11:54:44 +0200 | [diff] [blame] | 47 | "\n" QEMU_COPYRIGHT "\n" |
Jeff Cody | 5f6979c | 2014-04-28 14:37:18 -0400 | [diff] [blame] | 48 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 49 | typedef struct img_cmd_t { |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 50 | const char *name; |
| 51 | int (*handler)(int argc, char **argv); |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 52 | } img_cmd_t; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 53 | |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 54 | enum { |
| 55 | OPTION_OUTPUT = 256, |
| 56 | OPTION_BACKING_CHAIN = 257, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 57 | OPTION_OBJECT = 258, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 58 | OPTION_IMAGE_OPTS = 259, |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 59 | OPTION_PATTERN = 260, |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 60 | OPTION_FLUSH_INTERVAL = 261, |
| 61 | OPTION_NO_DRAIN = 262, |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | typedef enum OutputFormat { |
| 65 | OFORMAT_JSON, |
| 66 | OFORMAT_HUMAN, |
| 67 | } OutputFormat; |
| 68 | |
Kevin Wolf | e699614 | 2016-03-15 13:03:11 +0100 | [diff] [blame] | 69 | /* Default to cache=writeback as data integrity is not important for qemu-img */ |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 70 | #define BDRV_DEFAULT_CACHE "writeback" |
aurel32 | 137519c | 2008-11-30 19:12:49 +0000 | [diff] [blame] | 71 | |
Stefan Hajnoczi | 00c6d40 | 2014-08-27 12:08:56 +0100 | [diff] [blame] | 72 | static void format_print(void *opaque, const char *name) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 73 | { |
Stefan Hajnoczi | 00c6d40 | 2014-08-27 12:08:56 +0100 | [diff] [blame] | 74 | printf(" %s", name); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 75 | } |
| 76 | |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 77 | static void QEMU_NORETURN GCC_FMT_ATTR(1, 2) error_exit(const char *fmt, ...) |
| 78 | { |
| 79 | va_list ap; |
| 80 | |
| 81 | error_printf("qemu-img: "); |
| 82 | |
| 83 | va_start(ap, fmt); |
| 84 | error_vprintf(fmt, ap); |
| 85 | va_end(ap); |
| 86 | |
| 87 | error_printf("\nTry 'qemu-img --help' for more information\n"); |
| 88 | exit(EXIT_FAILURE); |
| 89 | } |
| 90 | |
blueswir1 | d2c639d | 2009-01-24 18:19:25 +0000 | [diff] [blame] | 91 | /* Please keep in synch with qemu-img.texi */ |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 92 | static void QEMU_NORETURN help(void) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 93 | { |
Paolo Bonzini | e00291c | 2010-02-04 16:49:56 +0100 | [diff] [blame] | 94 | const char *help_msg = |
Jeff Cody | 5f6979c | 2014-04-28 14:37:18 -0400 | [diff] [blame] | 95 | QEMU_IMG_VERSION |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 96 | "usage: qemu-img [standard options] command [command options]\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 97 | "QEMU disk image utility\n" |
| 98 | "\n" |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 99 | " '-h', '--help' display this help and exit\n" |
| 100 | " '-V', '--version' output version information and exit\n" |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 101 | " '-T', '--trace' [[enable=]<pattern>][,events=<file>][,file=<file>]\n" |
| 102 | " specify tracing options\n" |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 103 | "\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 104 | "Command syntax:\n" |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 105 | #define DEF(option, callback, arg_string) \ |
| 106 | " " arg_string "\n" |
| 107 | #include "qemu-img-cmds.h" |
| 108 | #undef DEF |
| 109 | #undef GEN_DOCS |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 110 | "\n" |
| 111 | "Command parameters:\n" |
| 112 | " 'filename' is a disk image filename\n" |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 113 | " 'objectdef' is a QEMU user creatable object definition. See the qemu(1)\n" |
| 114 | " manual page for a description of the object properties. The most common\n" |
| 115 | " object type is a 'secret', which is used to supply passwords and/or\n" |
| 116 | " encryption keys.\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 117 | " 'fmt' is the disk image format. It is guessed automatically in most cases\n" |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 118 | " 'cache' is the cache mode used to write the output disk image, the valid\n" |
Liu Yuan | 80ccf93 | 2012-04-20 17:10:56 +0800 | [diff] [blame] | 119 | " options are: 'none', 'writeback' (default, except for convert), 'writethrough',\n" |
| 120 | " 'directsync' and 'unsafe' (default for convert)\n" |
Stefan Hajnoczi | bb87fdf | 2014-09-02 11:01:02 +0100 | [diff] [blame] | 121 | " 'src_cache' is the cache mode used to read input disk images, the valid\n" |
| 122 | " options are the same as for the 'cache' option\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 123 | " 'size' is the disk image size in bytes. Optional suffixes\n" |
Kevin Wolf | 5e00984 | 2013-06-05 14:19:27 +0200 | [diff] [blame] | 124 | " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M),\n" |
| 125 | " 'T' (terabyte, 1024G), 'P' (petabyte, 1024T) and 'E' (exabyte, 1024P) are\n" |
| 126 | " supported. 'b' is ignored.\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 127 | " 'output_filename' is the destination disk image filename\n" |
| 128 | " 'output_fmt' is the destination format\n" |
| 129 | " 'options' is a comma separated list of format specific options in a\n" |
| 130 | " name=value format. Use -o ? for an overview of the options supported by the\n" |
| 131 | " used format\n" |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 132 | " 'snapshot_param' is param used for internal snapshot, format\n" |
| 133 | " is 'snapshot.id=[ID],snapshot.name=[NAME]', or\n" |
| 134 | " '[ID_OR_NAME]'\n" |
| 135 | " 'snapshot_id_or_name' is deprecated, use 'snapshot_param'\n" |
| 136 | " instead\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 137 | " '-c' indicates that target image must be compressed (qcow format only)\n" |
| 138 | " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n" |
| 139 | " match exactly. The image doesn't need a working backing file before\n" |
| 140 | " rebasing in this case (useful for renaming the backing file)\n" |
| 141 | " '-h' with or without a command shows this help and lists the supported formats\n" |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 142 | " '-p' show progress of command (only certain commands)\n" |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 143 | " '-q' use Quiet mode - do not print any output (except errors)\n" |
Peter Lieven | 11b6699 | 2013-10-24 12:07:05 +0200 | [diff] [blame] | 144 | " '-S' indicates the consecutive number of bytes (defaults to 4k) that must\n" |
| 145 | " contain only zeros for qemu-img to create a sparse image during\n" |
| 146 | " conversion. If the number of bytes is 0, the source will not be scanned for\n" |
| 147 | " unallocated or zero sectors, and the destination image will always be\n" |
| 148 | " fully allocated\n" |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 149 | " '--output' takes the format in which the output must be done (human or json)\n" |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 150 | " '-n' skips the target volume creation (useful if the volume is created\n" |
| 151 | " prior to running qemu-img)\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 152 | "\n" |
Kevin Wolf | 4534ff5 | 2012-05-11 16:07:02 +0200 | [diff] [blame] | 153 | "Parameters to check subcommand:\n" |
| 154 | " '-r' tries to repair any inconsistencies that are found during the check.\n" |
| 155 | " '-r leaks' repairs only cluster leaks, whereas '-r all' fixes all\n" |
| 156 | " kinds of errors, with a higher risk of choosing the wrong fix or\n" |
Stefan Weil | 0546b8c | 2012-08-10 22:03:25 +0200 | [diff] [blame] | 157 | " hiding corruption that has already occurred.\n" |
Kevin Wolf | 4534ff5 | 2012-05-11 16:07:02 +0200 | [diff] [blame] | 158 | "\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 159 | "Parameters to snapshot subcommand:\n" |
| 160 | " 'snapshot' is the name of the snapshot to create, apply or delete\n" |
| 161 | " '-a' applies a snapshot (revert disk to saved state)\n" |
| 162 | " '-c' creates a snapshot\n" |
| 163 | " '-d' deletes a snapshot\n" |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 164 | " '-l' lists all snapshots in the given image\n" |
| 165 | "\n" |
| 166 | "Parameters to compare subcommand:\n" |
| 167 | " '-f' first image format\n" |
| 168 | " '-F' second image format\n" |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 169 | " '-s' run in Strict mode - fail on different image size or sector allocation\n" |
| 170 | "\n" |
| 171 | "Parameters to dd subcommand:\n" |
| 172 | " 'bs=BYTES' read and write up to BYTES bytes at a time " |
| 173 | "(default: 512)\n" |
| 174 | " 'count=N' copy only N input blocks\n" |
| 175 | " 'if=FILE' read from FILE\n" |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 176 | " 'of=FILE' write to FILE\n" |
| 177 | " 'skip=N' skip N bs-sized blocks at the start of input\n"; |
Paolo Bonzini | e00291c | 2010-02-04 16:49:56 +0100 | [diff] [blame] | 178 | |
| 179 | printf("%s\nSupported formats:", help_msg); |
Stefan Hajnoczi | 00c6d40 | 2014-08-27 12:08:56 +0100 | [diff] [blame] | 180 | bdrv_iterate_format(format_print, NULL); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 181 | printf("\n"); |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 182 | exit(EXIT_SUCCESS); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 185 | static QemuOptsList qemu_object_opts = { |
| 186 | .name = "object", |
| 187 | .implied_opt_name = "qom-type", |
| 188 | .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head), |
| 189 | .desc = { |
| 190 | { } |
| 191 | }, |
| 192 | }; |
| 193 | |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 194 | static QemuOptsList qemu_source_opts = { |
| 195 | .name = "source", |
| 196 | .implied_opt_name = "file", |
| 197 | .head = QTAILQ_HEAD_INITIALIZER(qemu_source_opts.head), |
| 198 | .desc = { |
| 199 | { } |
| 200 | }, |
| 201 | }; |
| 202 | |
Stefan Weil | 7c30f65 | 2013-06-16 17:01:05 +0200 | [diff] [blame] | 203 | static int GCC_FMT_ATTR(2, 3) qprintf(bool quiet, const char *fmt, ...) |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 204 | { |
| 205 | int ret = 0; |
| 206 | if (!quiet) { |
| 207 | va_list args; |
| 208 | va_start(args, fmt); |
| 209 | ret = vprintf(fmt, args); |
| 210 | va_end(args); |
| 211 | } |
| 212 | return ret; |
| 213 | } |
| 214 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 215 | |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 216 | static int print_block_option_help(const char *filename, const char *fmt) |
| 217 | { |
| 218 | BlockDriver *drv, *proto_drv; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 219 | QemuOptsList *create_opts = NULL; |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 220 | Error *local_err = NULL; |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 221 | |
| 222 | /* Find driver and parse its options */ |
| 223 | drv = bdrv_find_format(fmt); |
| 224 | if (!drv) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 225 | error_report("Unknown file format '%s'", fmt); |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 226 | return 1; |
| 227 | } |
| 228 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 229 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 230 | if (filename) { |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 231 | proto_drv = bdrv_find_protocol(filename, true, &local_err); |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 232 | if (!proto_drv) { |
Markus Armbruster | 2867ce4 | 2015-03-12 16:08:02 +0100 | [diff] [blame] | 233 | error_report_err(local_err); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 234 | qemu_opts_free(create_opts); |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 235 | return 1; |
| 236 | } |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 237 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 238 | } |
| 239 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 240 | qemu_opts_print_help(create_opts); |
| 241 | qemu_opts_free(create_opts); |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 242 | return 0; |
| 243 | } |
| 244 | |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 245 | |
| 246 | static int img_open_password(BlockBackend *blk, const char *filename, |
Daniel P. Berrange | abb06c5 | 2016-03-21 14:11:42 +0000 | [diff] [blame] | 247 | int flags, bool quiet) |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 248 | { |
| 249 | BlockDriverState *bs; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 250 | char password[256]; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 251 | |
| 252 | bs = blk_bs(blk); |
Daniel P. Berrange | 4ef130f | 2016-03-21 14:11:43 +0000 | [diff] [blame] | 253 | if (bdrv_is_encrypted(bs) && bdrv_key_required(bs) && |
| 254 | !(flags & BDRV_O_NO_IO)) { |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 255 | qprintf(quiet, "Disk image '%s' is encrypted.\n", filename); |
| 256 | if (qemu_read_password(password, sizeof(password)) < 0) { |
| 257 | error_report("No password given"); |
| 258 | return -1; |
| 259 | } |
| 260 | if (bdrv_set_key(bs, password) < 0) { |
| 261 | error_report("invalid password"); |
| 262 | return -1; |
| 263 | } |
| 264 | } |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 269 | static BlockBackend *img_open_opts(const char *optstr, |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 270 | QemuOpts *opts, int flags, bool writethrough, |
Daniel P. Berrange | abb06c5 | 2016-03-21 14:11:42 +0000 | [diff] [blame] | 271 | bool quiet) |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 272 | { |
| 273 | QDict *options; |
| 274 | Error *local_err = NULL; |
| 275 | BlockBackend *blk; |
| 276 | options = qemu_opts_to_qdict(opts, NULL); |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 277 | blk = blk_new_open(NULL, NULL, options, flags, &local_err); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 278 | if (!blk) { |
Daniel P. Berrange | 143605a | 2016-04-06 10:16:18 +0100 | [diff] [blame] | 279 | error_reportf_err(local_err, "Could not open '%s': ", optstr); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 280 | return NULL; |
| 281 | } |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 282 | blk_set_enable_write_cache(blk, !writethrough); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 283 | |
Daniel P. Berrange | abb06c5 | 2016-03-21 14:11:42 +0000 | [diff] [blame] | 284 | if (img_open_password(blk, optstr, flags, quiet) < 0) { |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 285 | blk_unref(blk); |
| 286 | return NULL; |
| 287 | } |
| 288 | return blk; |
| 289 | } |
| 290 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 291 | static BlockBackend *img_open_file(const char *filename, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 292 | const char *fmt, int flags, |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 293 | bool writethrough, bool quiet) |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 294 | { |
| 295 | BlockBackend *blk; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 296 | Error *local_err = NULL; |
Max Reitz | 5bd3132 | 2015-02-05 13:58:16 -0500 | [diff] [blame] | 297 | QDict *options = NULL; |
Kevin Wolf | ad71713 | 2010-12-16 15:37:41 +0100 | [diff] [blame] | 298 | |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 299 | if (fmt) { |
Max Reitz | 5bd3132 | 2015-02-05 13:58:16 -0500 | [diff] [blame] | 300 | options = qdict_new(); |
| 301 | qdict_put(options, "driver", qstring_from_str(fmt)); |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 302 | } |
Kevin Wolf | b9eaf9e | 2011-02-09 11:25:53 +0100 | [diff] [blame] | 303 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 304 | blk = blk_new_open(filename, NULL, options, flags, &local_err); |
Max Reitz | 5bd3132 | 2015-02-05 13:58:16 -0500 | [diff] [blame] | 305 | if (!blk) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 306 | error_reportf_err(local_err, "Could not open '%s': ", filename); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 307 | return NULL; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 308 | } |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 309 | blk_set_enable_write_cache(blk, !writethrough); |
Kevin Wolf | b9eaf9e | 2011-02-09 11:25:53 +0100 | [diff] [blame] | 310 | |
Daniel P. Berrange | abb06c5 | 2016-03-21 14:11:42 +0000 | [diff] [blame] | 311 | if (img_open_password(blk, filename, flags, quiet) < 0) { |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 312 | blk_unref(blk); |
| 313 | return NULL; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 314 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 315 | return blk; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 318 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 319 | static BlockBackend *img_open(bool image_opts, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 320 | const char *filename, |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 321 | const char *fmt, int flags, bool writethrough, |
Daniel P. Berrange | abb06c5 | 2016-03-21 14:11:42 +0000 | [diff] [blame] | 322 | bool quiet) |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 323 | { |
| 324 | BlockBackend *blk; |
| 325 | if (image_opts) { |
| 326 | QemuOpts *opts; |
| 327 | if (fmt) { |
| 328 | error_report("--image-opts and --format are mutually exclusive"); |
| 329 | return NULL; |
| 330 | } |
| 331 | opts = qemu_opts_parse_noisily(qemu_find_opts("source"), |
| 332 | filename, true); |
| 333 | if (!opts) { |
| 334 | return NULL; |
| 335 | } |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 336 | blk = img_open_opts(filename, opts, flags, writethrough, quiet); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 337 | } else { |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 338 | blk = img_open_file(filename, fmt, flags, writethrough, quiet); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 339 | } |
| 340 | return blk; |
| 341 | } |
| 342 | |
| 343 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 344 | static int add_old_style_options(const char *fmt, QemuOpts *opts, |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 345 | const char *base_filename, |
| 346 | const char *base_fmt) |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 347 | { |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 348 | Error *err = NULL; |
| 349 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 350 | if (base_filename) { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 351 | qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &err); |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 352 | if (err) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 353 | error_report("Backing file not supported for file format '%s'", |
| 354 | fmt); |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 355 | error_free(err); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 356 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | if (base_fmt) { |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 360 | qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &err); |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 361 | if (err) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 362 | error_report("Backing file format not supported for file " |
| 363 | "format '%s'", fmt); |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 364 | error_free(err); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 365 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 366 | } |
| 367 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 368 | return 0; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 369 | } |
| 370 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 371 | static int64_t cvtnum(const char *s) |
| 372 | { |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 373 | int64_t ret; |
| 374 | |
Markus Armbruster | 4fcdf65 | 2017-02-21 21:14:05 +0100 | [diff] [blame^] | 375 | ret = qemu_strtosz(s, NULL); |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 376 | return ret; |
| 377 | } |
| 378 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 379 | static int img_create(int argc, char **argv) |
| 380 | { |
Luiz Capitulino | a930091 | 2012-11-30 10:52:06 -0200 | [diff] [blame] | 381 | int c; |
Jes Sorensen | 1da7cfb | 2010-12-09 14:17:25 +0100 | [diff] [blame] | 382 | uint64_t img_size = -1; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 383 | const char *fmt = "raw"; |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 384 | const char *base_fmt = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 385 | const char *filename; |
| 386 | const char *base_filename = NULL; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 387 | char *options = NULL; |
Luiz Capitulino | 9b37525 | 2012-11-30 10:52:05 -0200 | [diff] [blame] | 388 | Error *local_err = NULL; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 389 | bool quiet = false; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 390 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 391 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 392 | static const struct option long_options[] = { |
| 393 | {"help", no_argument, 0, 'h'}, |
| 394 | {"object", required_argument, 0, OPTION_OBJECT}, |
| 395 | {0, 0, 0, 0} |
| 396 | }; |
| 397 | c = getopt_long(argc, argv, "F:b:f:he6o:q", |
| 398 | long_options, NULL); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 399 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 400 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 401 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 402 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 403 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 404 | case 'h': |
| 405 | help(); |
| 406 | break; |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 407 | case 'F': |
| 408 | base_fmt = optarg; |
| 409 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 410 | case 'b': |
| 411 | base_filename = optarg; |
| 412 | break; |
| 413 | case 'f': |
| 414 | fmt = optarg; |
| 415 | break; |
| 416 | case 'e': |
Markus Armbruster | 9d42e15 | 2011-06-22 14:03:55 +0200 | [diff] [blame] | 417 | error_report("option -e is deprecated, please use \'-o " |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 418 | "encryption\' instead!"); |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 419 | goto fail; |
ths | d8871c5 | 2007-10-24 16:11:42 +0000 | [diff] [blame] | 420 | case '6': |
Markus Armbruster | 9d42e15 | 2011-06-22 14:03:55 +0200 | [diff] [blame] | 421 | error_report("option -6 is deprecated, please use \'-o " |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 422 | "compat6\' instead!"); |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 423 | goto fail; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 424 | case 'o': |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 425 | if (!is_valid_option_list(optarg)) { |
| 426 | error_report("Invalid option list: %s", optarg); |
| 427 | goto fail; |
| 428 | } |
| 429 | if (!options) { |
| 430 | options = g_strdup(optarg); |
| 431 | } else { |
| 432 | char *old_options = options; |
| 433 | options = g_strdup_printf("%s,%s", options, optarg); |
| 434 | g_free(old_options); |
| 435 | } |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 436 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 437 | case 'q': |
| 438 | quiet = true; |
| 439 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 440 | case OPTION_OBJECT: { |
| 441 | QemuOpts *opts; |
| 442 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 443 | optarg, true); |
| 444 | if (!opts) { |
| 445 | goto fail; |
| 446 | } |
| 447 | } break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 448 | } |
| 449 | } |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 450 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 451 | /* Get the filename */ |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 452 | filename = (optind < argc) ? argv[optind] : NULL; |
| 453 | if (options && has_help_option(options)) { |
| 454 | g_free(options); |
| 455 | return print_block_option_help(filename, fmt); |
| 456 | } |
| 457 | |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 458 | if (optind >= argc) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 459 | error_exit("Expecting image file name"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 460 | } |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 461 | optind++; |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 462 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 463 | if (qemu_opts_foreach(&qemu_object_opts, |
| 464 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 465 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 466 | goto fail; |
| 467 | } |
| 468 | |
Jes Sorensen | 1da7cfb | 2010-12-09 14:17:25 +0100 | [diff] [blame] | 469 | /* Get image size, if specified */ |
| 470 | if (optind < argc) { |
Jes Sorensen | 70b4f4b | 2011-01-05 11:41:02 +0100 | [diff] [blame] | 471 | int64_t sval; |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 472 | |
| 473 | sval = cvtnum(argv[optind++]); |
| 474 | if (sval < 0) { |
liguang | 7944339 | 2012-12-17 09:49:23 +0800 | [diff] [blame] | 475 | if (sval == -ERANGE) { |
| 476 | error_report("Image size must be less than 8 EiB!"); |
| 477 | } else { |
| 478 | error_report("Invalid image size specified! You may use k, M, " |
Kevin Wolf | 5e00984 | 2013-06-05 14:19:27 +0200 | [diff] [blame] | 479 | "G, T, P or E suffixes for "); |
| 480 | error_report("kilobytes, megabytes, gigabytes, terabytes, " |
| 481 | "petabytes and exabytes."); |
liguang | 7944339 | 2012-12-17 09:49:23 +0800 | [diff] [blame] | 482 | } |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 483 | goto fail; |
Jes Sorensen | 1da7cfb | 2010-12-09 14:17:25 +0100 | [diff] [blame] | 484 | } |
| 485 | img_size = (uint64_t)sval; |
| 486 | } |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 487 | if (optind != argc) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 488 | error_exit("Unexpected argument: %s", argv[optind]); |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 489 | } |
Jes Sorensen | 1da7cfb | 2010-12-09 14:17:25 +0100 | [diff] [blame] | 490 | |
Luiz Capitulino | 9b37525 | 2012-11-30 10:52:05 -0200 | [diff] [blame] | 491 | bdrv_img_create(filename, fmt, base_filename, base_fmt, |
Kevin Wolf | 61de4c6 | 2016-03-18 17:46:45 +0100 | [diff] [blame] | 492 | options, img_size, 0, &local_err, quiet); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 493 | if (local_err) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 494 | error_reportf_err(local_err, "%s: ", filename); |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 495 | goto fail; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 496 | } |
Luiz Capitulino | a930091 | 2012-11-30 10:52:06 -0200 | [diff] [blame] | 497 | |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 498 | g_free(options); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 499 | return 0; |
Kevin Wolf | 77386bf | 2014-02-21 16:24:04 +0100 | [diff] [blame] | 500 | |
| 501 | fail: |
| 502 | g_free(options); |
| 503 | return 1; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 504 | } |
| 505 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 506 | static void dump_json_image_check(ImageCheck *check, bool quiet) |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 507 | { |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 508 | QString *str; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 509 | QObject *obj; |
Daniel P. Berrange | 7d5e199 | 2016-09-30 15:45:28 +0100 | [diff] [blame] | 510 | Visitor *v = qobject_output_visitor_new(&obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 511 | |
| 512 | visit_type_ImageCheck(v, NULL, &check, &error_abort); |
| 513 | visit_complete(v, &obj); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 514 | str = qobject_to_json_pretty(obj); |
| 515 | assert(str != NULL); |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 516 | qprintf(quiet, "%s\n", qstring_get_str(str)); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 517 | qobject_decref(obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 518 | visit_free(v); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 519 | QDECREF(str); |
| 520 | } |
| 521 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 522 | static void dump_human_image_check(ImageCheck *check, bool quiet) |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 523 | { |
| 524 | if (!(check->corruptions || check->leaks || check->check_errors)) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 525 | qprintf(quiet, "No errors were found on the image.\n"); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 526 | } else { |
| 527 | if (check->corruptions) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 528 | qprintf(quiet, "\n%" PRId64 " errors were found on the image.\n" |
| 529 | "Data may be corrupted, or further writes to the image " |
| 530 | "may corrupt it.\n", |
| 531 | check->corruptions); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | if (check->leaks) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 535 | qprintf(quiet, |
| 536 | "\n%" PRId64 " leaked clusters were found on the image.\n" |
| 537 | "This means waste of disk space, but no harm to data.\n", |
| 538 | check->leaks); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | if (check->check_errors) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 542 | qprintf(quiet, |
| 543 | "\n%" PRId64 |
| 544 | " internal errors have occurred during the check.\n", |
| 545 | check->check_errors); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 546 | } |
| 547 | } |
| 548 | |
| 549 | if (check->total_clusters != 0 && check->allocated_clusters != 0) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 550 | qprintf(quiet, "%" PRId64 "/%" PRId64 " = %0.2f%% allocated, " |
| 551 | "%0.2f%% fragmented, %0.2f%% compressed clusters\n", |
| 552 | check->allocated_clusters, check->total_clusters, |
| 553 | check->allocated_clusters * 100.0 / check->total_clusters, |
| 554 | check->fragmented_clusters * 100.0 / check->allocated_clusters, |
| 555 | check->compressed_clusters * 100.0 / |
| 556 | check->allocated_clusters); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | if (check->image_end_offset) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 560 | qprintf(quiet, |
| 561 | "Image end offset: %" PRId64 "\n", check->image_end_offset); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 562 | } |
| 563 | } |
| 564 | |
| 565 | static int collect_image_check(BlockDriverState *bs, |
| 566 | ImageCheck *check, |
| 567 | const char *filename, |
| 568 | const char *fmt, |
| 569 | int fix) |
| 570 | { |
| 571 | int ret; |
| 572 | BdrvCheckResult result; |
| 573 | |
| 574 | ret = bdrv_check(bs, &result, fix); |
| 575 | if (ret < 0) { |
| 576 | return ret; |
| 577 | } |
| 578 | |
| 579 | check->filename = g_strdup(filename); |
| 580 | check->format = g_strdup(bdrv_get_format_name(bs)); |
| 581 | check->check_errors = result.check_errors; |
| 582 | check->corruptions = result.corruptions; |
| 583 | check->has_corruptions = result.corruptions != 0; |
| 584 | check->leaks = result.leaks; |
| 585 | check->has_leaks = result.leaks != 0; |
| 586 | check->corruptions_fixed = result.corruptions_fixed; |
| 587 | check->has_corruptions_fixed = result.corruptions != 0; |
| 588 | check->leaks_fixed = result.leaks_fixed; |
| 589 | check->has_leaks_fixed = result.leaks != 0; |
| 590 | check->image_end_offset = result.image_end_offset; |
| 591 | check->has_image_end_offset = result.image_end_offset != 0; |
| 592 | check->total_clusters = result.bfi.total_clusters; |
| 593 | check->has_total_clusters = result.bfi.total_clusters != 0; |
| 594 | check->allocated_clusters = result.bfi.allocated_clusters; |
| 595 | check->has_allocated_clusters = result.bfi.allocated_clusters != 0; |
| 596 | check->fragmented_clusters = result.bfi.fragmented_clusters; |
| 597 | check->has_fragmented_clusters = result.bfi.fragmented_clusters != 0; |
Stefan Hajnoczi | e6439d7 | 2013-02-07 17:15:04 +0100 | [diff] [blame] | 598 | check->compressed_clusters = result.bfi.compressed_clusters; |
| 599 | check->has_compressed_clusters = result.bfi.compressed_clusters != 0; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 600 | |
| 601 | return 0; |
| 602 | } |
| 603 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 604 | /* |
| 605 | * Checks an image for consistency. Exit codes: |
| 606 | * |
Max Reitz | d6635c4 | 2014-06-02 22:15:21 +0200 | [diff] [blame] | 607 | * 0 - Check completed, image is good |
| 608 | * 1 - Check not completed because of internal errors |
| 609 | * 2 - Check completed, image is corrupted |
| 610 | * 3 - Check completed, image has leaked clusters, but is good otherwise |
| 611 | * 63 - Checks are not supported by the image format |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 612 | */ |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 613 | static int img_check(int argc, char **argv) |
| 614 | { |
| 615 | int c, ret; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 616 | OutputFormat output_format = OFORMAT_HUMAN; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 617 | const char *filename, *fmt, *output, *cache; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 618 | BlockBackend *blk; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 619 | BlockDriverState *bs; |
Kevin Wolf | 4534ff5 | 2012-05-11 16:07:02 +0200 | [diff] [blame] | 620 | int fix = 0; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 621 | int flags = BDRV_O_CHECK; |
| 622 | bool writethrough; |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 623 | ImageCheck *check; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 624 | bool quiet = false; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 625 | bool image_opts = false; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 626 | |
| 627 | fmt = NULL; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 628 | output = NULL; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 629 | cache = BDRV_DEFAULT_CACHE; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 630 | |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 631 | for(;;) { |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 632 | int option_index = 0; |
| 633 | static const struct option long_options[] = { |
| 634 | {"help", no_argument, 0, 'h'}, |
| 635 | {"format", required_argument, 0, 'f'}, |
Prasad Joshi | 4fd6a98 | 2014-03-25 00:08:54 +0530 | [diff] [blame] | 636 | {"repair", required_argument, 0, 'r'}, |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 637 | {"output", required_argument, 0, OPTION_OUTPUT}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 638 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 639 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 640 | {0, 0, 0, 0} |
| 641 | }; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 642 | c = getopt_long(argc, argv, "hf:r:T:q", |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 643 | long_options, &option_index); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 644 | if (c == -1) { |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 645 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 646 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 647 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 648 | case '?': |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 649 | case 'h': |
| 650 | help(); |
| 651 | break; |
| 652 | case 'f': |
| 653 | fmt = optarg; |
| 654 | break; |
Kevin Wolf | 4534ff5 | 2012-05-11 16:07:02 +0200 | [diff] [blame] | 655 | case 'r': |
| 656 | flags |= BDRV_O_RDWR; |
| 657 | |
| 658 | if (!strcmp(optarg, "leaks")) { |
| 659 | fix = BDRV_FIX_LEAKS; |
| 660 | } else if (!strcmp(optarg, "all")) { |
| 661 | fix = BDRV_FIX_LEAKS | BDRV_FIX_ERRORS; |
| 662 | } else { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 663 | error_exit("Unknown option value for -r " |
| 664 | "(expecting 'leaks' or 'all'): %s", optarg); |
Kevin Wolf | 4534ff5 | 2012-05-11 16:07:02 +0200 | [diff] [blame] | 665 | } |
| 666 | break; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 667 | case OPTION_OUTPUT: |
| 668 | output = optarg; |
| 669 | break; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 670 | case 'T': |
| 671 | cache = optarg; |
| 672 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 673 | case 'q': |
| 674 | quiet = true; |
| 675 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 676 | case OPTION_OBJECT: { |
| 677 | QemuOpts *opts; |
| 678 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 679 | optarg, true); |
| 680 | if (!opts) { |
| 681 | return 1; |
| 682 | } |
| 683 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 684 | case OPTION_IMAGE_OPTS: |
| 685 | image_opts = true; |
| 686 | break; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 687 | } |
| 688 | } |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 689 | if (optind != argc - 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 690 | error_exit("Expecting one image file name"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 691 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 692 | filename = argv[optind++]; |
| 693 | |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 694 | if (output && !strcmp(output, "json")) { |
| 695 | output_format = OFORMAT_JSON; |
| 696 | } else if (output && !strcmp(output, "human")) { |
| 697 | output_format = OFORMAT_HUMAN; |
| 698 | } else if (output) { |
| 699 | error_report("--output must be used with human or json as argument."); |
| 700 | return 1; |
| 701 | } |
| 702 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 703 | if (qemu_opts_foreach(&qemu_object_opts, |
| 704 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 705 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 706 | return 1; |
| 707 | } |
| 708 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 709 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 710 | if (ret < 0) { |
| 711 | error_report("Invalid source cache option: %s", cache); |
| 712 | return 1; |
| 713 | } |
| 714 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 715 | blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 716 | if (!blk) { |
| 717 | return 1; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 718 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 719 | bs = blk_bs(blk); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 720 | |
| 721 | check = g_new0(ImageCheck, 1); |
| 722 | ret = collect_image_check(bs, check, filename, fmt, fix); |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 723 | |
| 724 | if (ret == -ENOTSUP) { |
Max Reitz | 55d492d | 2014-05-31 21:33:30 +0200 | [diff] [blame] | 725 | error_report("This image format does not support checks"); |
Peter Lieven | fefddf9 | 2013-10-24 08:53:34 +0200 | [diff] [blame] | 726 | ret = 63; |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 727 | goto fail; |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 728 | } |
| 729 | |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 730 | if (check->corruptions_fixed || check->leaks_fixed) { |
| 731 | int corruptions_fixed, leaks_fixed; |
| 732 | |
| 733 | leaks_fixed = check->leaks_fixed; |
| 734 | corruptions_fixed = check->corruptions_fixed; |
| 735 | |
| 736 | if (output_format == OFORMAT_HUMAN) { |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 737 | qprintf(quiet, |
| 738 | "The following inconsistencies were found and repaired:\n\n" |
| 739 | " %" PRId64 " leaked clusters\n" |
| 740 | " %" PRId64 " corruptions\n\n" |
| 741 | "Double checking the fixed image now...\n", |
| 742 | check->leaks_fixed, |
| 743 | check->corruptions_fixed); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | ret = collect_image_check(bs, check, filename, fmt, 0); |
| 747 | |
| 748 | check->leaks_fixed = leaks_fixed; |
| 749 | check->corruptions_fixed = corruptions_fixed; |
Kevin Wolf | ccf3471 | 2012-05-11 18:16:54 +0200 | [diff] [blame] | 750 | } |
| 751 | |
Max Reitz | 832390a | 2014-10-23 15:29:12 +0200 | [diff] [blame] | 752 | if (!ret) { |
| 753 | switch (output_format) { |
| 754 | case OFORMAT_HUMAN: |
| 755 | dump_human_image_check(check, quiet); |
| 756 | break; |
| 757 | case OFORMAT_JSON: |
| 758 | dump_json_image_check(check, quiet); |
| 759 | break; |
| 760 | } |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | if (ret || check->check_errors) { |
Max Reitz | 832390a | 2014-10-23 15:29:12 +0200 | [diff] [blame] | 764 | if (ret) { |
| 765 | error_report("Check failed: %s", strerror(-ret)); |
| 766 | } else { |
| 767 | error_report("Check failed"); |
| 768 | } |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 769 | ret = 1; |
| 770 | goto fail; |
| 771 | } |
| 772 | |
| 773 | if (check->corruptions) { |
| 774 | ret = 2; |
| 775 | } else if (check->leaks) { |
| 776 | ret = 3; |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 777 | } else { |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 778 | ret = 0; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 779 | } |
| 780 | |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 781 | fail: |
| 782 | qapi_free_ImageCheck(check); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 783 | blk_unref(blk); |
Federico Simoncelli | 8599ea4 | 2013-01-28 06:59:47 -0500 | [diff] [blame] | 784 | return ret; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 785 | } |
| 786 | |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 787 | typedef struct CommonBlockJobCBInfo { |
| 788 | BlockDriverState *bs; |
| 789 | Error **errp; |
| 790 | } CommonBlockJobCBInfo; |
| 791 | |
| 792 | static void common_block_job_cb(void *opaque, int ret) |
| 793 | { |
| 794 | CommonBlockJobCBInfo *cbi = opaque; |
| 795 | |
| 796 | if (ret < 0) { |
| 797 | error_setg_errno(cbi->errp, -ret, "Block job failed"); |
| 798 | } |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | static void run_block_job(BlockJob *job, Error **errp) |
| 802 | { |
Kevin Wolf | b75536c | 2016-04-18 17:30:17 +0200 | [diff] [blame] | 803 | AioContext *aio_context = blk_get_aio_context(job->blk); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 804 | |
Paolo Bonzini | 9e944cb | 2016-10-27 12:49:04 +0200 | [diff] [blame] | 805 | aio_context_acquire(aio_context); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 806 | do { |
| 807 | aio_poll(aio_context, true); |
John Snow | 62547b8 | 2015-11-02 18:28:20 -0500 | [diff] [blame] | 808 | qemu_progress_print(job->len ? |
| 809 | ((float)job->offset / job->len * 100.f) : 0.0f, 0); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 810 | } while (!job->ready); |
| 811 | |
| 812 | block_job_complete_sync(job, errp); |
Paolo Bonzini | 9e944cb | 2016-10-27 12:49:04 +0200 | [diff] [blame] | 813 | aio_context_release(aio_context); |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 814 | |
| 815 | /* A block job may finish instantaneously without publishing any progress, |
| 816 | * so just signal completion here */ |
| 817 | qemu_progress_print(100.f, 0); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 818 | } |
| 819 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 820 | static int img_commit(int argc, char **argv) |
| 821 | { |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 822 | int c, ret, flags; |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 823 | const char *filename, *fmt, *cache, *base; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 824 | BlockBackend *blk; |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 825 | BlockDriverState *bs, *base_bs; |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 826 | bool progress = false, quiet = false, drop = false; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 827 | bool writethrough; |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 828 | Error *local_err = NULL; |
| 829 | CommonBlockJobCBInfo cbi; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 830 | bool image_opts = false; |
Paolo Bonzini | 9e944cb | 2016-10-27 12:49:04 +0200 | [diff] [blame] | 831 | AioContext *aio_context; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 832 | |
| 833 | fmt = NULL; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 834 | cache = BDRV_DEFAULT_CACHE; |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 835 | base = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 836 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 837 | static const struct option long_options[] = { |
| 838 | {"help", no_argument, 0, 'h'}, |
| 839 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 840 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 841 | {0, 0, 0, 0} |
| 842 | }; |
| 843 | c = getopt_long(argc, argv, "f:ht:b:dpq", |
| 844 | long_options, NULL); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 845 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 846 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 847 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 848 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 849 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 850 | case 'h': |
| 851 | help(); |
| 852 | break; |
| 853 | case 'f': |
| 854 | fmt = optarg; |
| 855 | break; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 856 | case 't': |
| 857 | cache = optarg; |
| 858 | break; |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 859 | case 'b': |
| 860 | base = optarg; |
| 861 | /* -b implies -d */ |
| 862 | drop = true; |
| 863 | break; |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 864 | case 'd': |
| 865 | drop = true; |
| 866 | break; |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 867 | case 'p': |
| 868 | progress = true; |
| 869 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 870 | case 'q': |
| 871 | quiet = true; |
| 872 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 873 | case OPTION_OBJECT: { |
| 874 | QemuOpts *opts; |
| 875 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 876 | optarg, true); |
| 877 | if (!opts) { |
| 878 | return 1; |
| 879 | } |
| 880 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 881 | case OPTION_IMAGE_OPTS: |
| 882 | image_opts = true; |
| 883 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 884 | } |
| 885 | } |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 886 | |
| 887 | /* Progress is not shown in Quiet mode */ |
| 888 | if (quiet) { |
| 889 | progress = false; |
| 890 | } |
| 891 | |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 892 | if (optind != argc - 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 893 | error_exit("Expecting one image file name"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 894 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 895 | filename = argv[optind++]; |
| 896 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 897 | if (qemu_opts_foreach(&qemu_object_opts, |
| 898 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 899 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 900 | return 1; |
| 901 | } |
| 902 | |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 903 | flags = BDRV_O_RDWR | BDRV_O_UNMAP; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 904 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 905 | if (ret < 0) { |
| 906 | error_report("Invalid cache option: %s", cache); |
Stefan Hajnoczi | a3981eb | 2014-08-26 19:17:54 +0100 | [diff] [blame] | 907 | return 1; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 908 | } |
| 909 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 910 | blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 911 | if (!blk) { |
| 912 | return 1; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 913 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 914 | bs = blk_bs(blk); |
| 915 | |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 916 | qemu_progress_init(progress, 1.f); |
| 917 | qemu_progress_print(0.f, 100); |
| 918 | |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 919 | if (base) { |
| 920 | base_bs = bdrv_find_backing_image(bs, base); |
| 921 | if (!base_bs) { |
Max Reitz | 6b33f3a | 2016-12-01 03:05:08 +0100 | [diff] [blame] | 922 | error_setg(&local_err, |
| 923 | "Did not find '%s' in the backing chain of '%s'", |
| 924 | base, filename); |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 925 | goto done; |
| 926 | } |
| 927 | } else { |
| 928 | /* This is different from QMP, which by default uses the deepest file in |
| 929 | * the backing chain (i.e., the very base); however, the traditional |
| 930 | * behavior of qemu-img commit is using the immediate backing file. */ |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 931 | base_bs = backing_bs(bs); |
Max Reitz | 1b22bff | 2014-10-24 15:57:40 +0200 | [diff] [blame] | 932 | if (!base_bs) { |
| 933 | error_setg(&local_err, "Image does not have a backing file"); |
| 934 | goto done; |
| 935 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 938 | cbi = (CommonBlockJobCBInfo){ |
| 939 | .errp = &local_err, |
| 940 | .bs = bs, |
| 941 | }; |
| 942 | |
Paolo Bonzini | 9e944cb | 2016-10-27 12:49:04 +0200 | [diff] [blame] | 943 | aio_context = bdrv_get_aio_context(bs); |
| 944 | aio_context_acquire(aio_context); |
John Snow | 47970df | 2016-10-27 12:06:57 -0400 | [diff] [blame] | 945 | commit_active_start("commit", bs, base_bs, BLOCK_JOB_DEFAULT, 0, |
| 946 | BLOCKDEV_ON_ERROR_REPORT, common_block_job_cb, &cbi, |
| 947 | &local_err, false); |
Paolo Bonzini | 9e944cb | 2016-10-27 12:49:04 +0200 | [diff] [blame] | 948 | aio_context_release(aio_context); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 949 | if (local_err) { |
| 950 | goto done; |
| 951 | } |
| 952 | |
Kevin Wolf | 3f09bfb | 2015-09-15 11:58:23 +0200 | [diff] [blame] | 953 | /* When the block job completes, the BlockBackend reference will point to |
| 954 | * the old backing file. In order to avoid that the top image is already |
| 955 | * deleted, so we can still empty it afterwards, increment the reference |
| 956 | * counter here preemptively. */ |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 957 | if (!drop) { |
Kevin Wolf | 3f09bfb | 2015-09-15 11:58:23 +0200 | [diff] [blame] | 958 | bdrv_ref(bs); |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 959 | } |
| 960 | |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 961 | run_block_job(bs->job, &local_err); |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 962 | if (local_err) { |
| 963 | goto unref_backing; |
| 964 | } |
| 965 | |
Kevin Wolf | 3f09bfb | 2015-09-15 11:58:23 +0200 | [diff] [blame] | 966 | if (!drop && bs->drv->bdrv_make_empty) { |
| 967 | ret = bs->drv->bdrv_make_empty(bs); |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 968 | if (ret) { |
| 969 | error_setg_errno(&local_err, -ret, "Could not empty %s", |
| 970 | filename); |
| 971 | goto unref_backing; |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | unref_backing: |
| 976 | if (!drop) { |
Kevin Wolf | 3f09bfb | 2015-09-15 11:58:23 +0200 | [diff] [blame] | 977 | bdrv_unref(bs); |
Max Reitz | 9a86fe4 | 2014-10-24 15:57:38 +0200 | [diff] [blame] | 978 | } |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 979 | |
| 980 | done: |
Max Reitz | 687fa1d | 2014-10-24 15:57:39 +0200 | [diff] [blame] | 981 | qemu_progress_end(); |
| 982 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 983 | blk_unref(blk); |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 984 | |
| 985 | if (local_err) { |
Markus Armbruster | 6936f29 | 2015-02-10 15:14:02 +0100 | [diff] [blame] | 986 | error_report_err(local_err); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 987 | return 1; |
| 988 | } |
Max Reitz | d4a3238 | 2014-10-24 15:57:37 +0200 | [diff] [blame] | 989 | |
| 990 | qprintf(quiet, "Image committed.\n"); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 991 | return 0; |
| 992 | } |
| 993 | |
Dmitry Konishchev | f6a00aa | 2011-05-18 15:03:59 +0400 | [diff] [blame] | 994 | /* |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 995 | * Returns true iff the first sector pointed to by 'buf' contains at least |
| 996 | * a non-NUL byte. |
| 997 | * |
| 998 | * 'pnum' is set to the number of sectors (including and immediately following |
| 999 | * the first one) that are known to be in the same allocated/unallocated state. |
| 1000 | */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1001 | static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum) |
| 1002 | { |
Stefan Hajnoczi | 1a6d39f | 2012-02-07 13:27:24 +0000 | [diff] [blame] | 1003 | bool is_zero; |
| 1004 | int i; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1005 | |
| 1006 | if (n <= 0) { |
| 1007 | *pnum = 0; |
| 1008 | return 0; |
| 1009 | } |
Stefan Hajnoczi | 1a6d39f | 2012-02-07 13:27:24 +0000 | [diff] [blame] | 1010 | is_zero = buffer_is_zero(buf, 512); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1011 | for(i = 1; i < n; i++) { |
| 1012 | buf += 512; |
Stefan Hajnoczi | 1a6d39f | 2012-02-07 13:27:24 +0000 | [diff] [blame] | 1013 | if (is_zero != buffer_is_zero(buf, 512)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1014 | break; |
Stefan Hajnoczi | 1a6d39f | 2012-02-07 13:27:24 +0000 | [diff] [blame] | 1015 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1016 | } |
| 1017 | *pnum = i; |
Stefan Hajnoczi | 1a6d39f | 2012-02-07 13:27:24 +0000 | [diff] [blame] | 1018 | return !is_zero; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1019 | } |
| 1020 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1021 | /* |
Kevin Wolf | a22f123 | 2011-08-26 15:27:13 +0200 | [diff] [blame] | 1022 | * Like is_allocated_sectors, but if the buffer starts with a used sector, |
| 1023 | * up to 'min' consecutive sectors containing zeros are ignored. This avoids |
| 1024 | * breaking up write requests for only small sparse areas. |
| 1025 | */ |
| 1026 | static int is_allocated_sectors_min(const uint8_t *buf, int n, int *pnum, |
| 1027 | int min) |
| 1028 | { |
| 1029 | int ret; |
| 1030 | int num_checked, num_used; |
| 1031 | |
| 1032 | if (n < min) { |
| 1033 | min = n; |
| 1034 | } |
| 1035 | |
| 1036 | ret = is_allocated_sectors(buf, n, pnum); |
| 1037 | if (!ret) { |
| 1038 | return ret; |
| 1039 | } |
| 1040 | |
| 1041 | num_used = *pnum; |
| 1042 | buf += BDRV_SECTOR_SIZE * *pnum; |
| 1043 | n -= *pnum; |
| 1044 | num_checked = num_used; |
| 1045 | |
| 1046 | while (n > 0) { |
| 1047 | ret = is_allocated_sectors(buf, n, pnum); |
| 1048 | |
| 1049 | buf += BDRV_SECTOR_SIZE * *pnum; |
| 1050 | n -= *pnum; |
| 1051 | num_checked += *pnum; |
| 1052 | if (ret) { |
| 1053 | num_used = num_checked; |
| 1054 | } else if (*pnum >= min) { |
| 1055 | break; |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | *pnum = num_used; |
| 1060 | return 1; |
| 1061 | } |
| 1062 | |
| 1063 | /* |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1064 | * Compares two buffers sector by sector. Returns 0 if the first sector of both |
| 1065 | * buffers matches, non-zero otherwise. |
| 1066 | * |
| 1067 | * pnum is set to the number of sectors (including and immediately following |
| 1068 | * the first one) that are known to have the same comparison result |
| 1069 | */ |
| 1070 | static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n, |
| 1071 | int *pnum) |
| 1072 | { |
Radim Krčmář | 8c1ac47 | 2015-02-20 17:06:15 +0100 | [diff] [blame] | 1073 | bool res; |
| 1074 | int i; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1075 | |
| 1076 | if (n <= 0) { |
| 1077 | *pnum = 0; |
| 1078 | return 0; |
| 1079 | } |
| 1080 | |
| 1081 | res = !!memcmp(buf1, buf2, 512); |
| 1082 | for(i = 1; i < n; i++) { |
| 1083 | buf1 += 512; |
| 1084 | buf2 += 512; |
| 1085 | |
| 1086 | if (!!memcmp(buf1, buf2, 512) != res) { |
| 1087 | break; |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | *pnum = i; |
| 1092 | return res; |
| 1093 | } |
| 1094 | |
Kevin Wolf | 80ee15a | 2009-09-15 12:30:43 +0200 | [diff] [blame] | 1095 | #define IO_BUF_SIZE (2 * 1024 * 1024) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1096 | |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1097 | static int64_t sectors_to_bytes(int64_t sectors) |
| 1098 | { |
| 1099 | return sectors << BDRV_SECTOR_BITS; |
| 1100 | } |
| 1101 | |
| 1102 | static int64_t sectors_to_process(int64_t total, int64_t from) |
| 1103 | { |
| 1104 | return MIN(total - from, IO_BUF_SIZE >> BDRV_SECTOR_BITS); |
| 1105 | } |
| 1106 | |
| 1107 | /* |
| 1108 | * Check if passed sectors are empty (not allocated or contain only 0 bytes) |
| 1109 | * |
| 1110 | * Returns 0 in case sectors are filled with 0, 1 if sectors contain non-zero |
| 1111 | * data and negative value on error. |
| 1112 | * |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1113 | * @param blk: BlockBackend for the image |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1114 | * @param sect_num: Number of first sector to check |
| 1115 | * @param sect_count: Number of sectors to check |
| 1116 | * @param filename: Name of disk file we are checking (logging purpose) |
| 1117 | * @param buffer: Allocated buffer for storing read data |
| 1118 | * @param quiet: Flag for quiet mode |
| 1119 | */ |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1120 | static int check_empty_sectors(BlockBackend *blk, int64_t sect_num, |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1121 | int sect_count, const char *filename, |
| 1122 | uint8_t *buffer, bool quiet) |
| 1123 | { |
| 1124 | int pnum, ret = 0; |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 1125 | ret = blk_pread(blk, sect_num << BDRV_SECTOR_BITS, buffer, |
| 1126 | sect_count << BDRV_SECTOR_BITS); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1127 | if (ret < 0) { |
| 1128 | error_report("Error while reading offset %" PRId64 " of %s: %s", |
| 1129 | sectors_to_bytes(sect_num), filename, strerror(-ret)); |
| 1130 | return ret; |
| 1131 | } |
| 1132 | ret = is_allocated_sectors(buffer, sect_count, &pnum); |
| 1133 | if (ret || pnum != sect_count) { |
| 1134 | qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n", |
| 1135 | sectors_to_bytes(ret ? sect_num : sect_num + pnum)); |
| 1136 | return 1; |
| 1137 | } |
| 1138 | |
| 1139 | return 0; |
| 1140 | } |
| 1141 | |
| 1142 | /* |
| 1143 | * Compares two images. Exit codes: |
| 1144 | * |
| 1145 | * 0 - Images are identical |
| 1146 | * 1 - Images differ |
| 1147 | * >1 - Error occurred |
| 1148 | */ |
| 1149 | static int img_compare(int argc, char **argv) |
| 1150 | { |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1151 | const char *fmt1 = NULL, *fmt2 = NULL, *cache, *filename1, *filename2; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1152 | BlockBackend *blk1, *blk2; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1153 | BlockDriverState *bs1, *bs2; |
| 1154 | int64_t total_sectors1, total_sectors2; |
| 1155 | uint8_t *buf1 = NULL, *buf2 = NULL; |
| 1156 | int pnum1, pnum2; |
| 1157 | int allocated1, allocated2; |
| 1158 | int ret = 0; /* return value - 0 Ident, 1 Different, >1 Error */ |
| 1159 | bool progress = false, quiet = false, strict = false; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1160 | int flags; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1161 | bool writethrough; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1162 | int64_t total_sectors; |
| 1163 | int64_t sector_num = 0; |
| 1164 | int64_t nb_sectors; |
| 1165 | int c, pnum; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1166 | uint64_t progress_base; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1167 | bool image_opts = false; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1168 | |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1169 | cache = BDRV_DEFAULT_CACHE; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1170 | for (;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1171 | static const struct option long_options[] = { |
| 1172 | {"help", no_argument, 0, 'h'}, |
| 1173 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1174 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1175 | {0, 0, 0, 0} |
| 1176 | }; |
| 1177 | c = getopt_long(argc, argv, "hf:F:T:pqs", |
| 1178 | long_options, NULL); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1179 | if (c == -1) { |
| 1180 | break; |
| 1181 | } |
| 1182 | switch (c) { |
| 1183 | case '?': |
| 1184 | case 'h': |
| 1185 | help(); |
| 1186 | break; |
| 1187 | case 'f': |
| 1188 | fmt1 = optarg; |
| 1189 | break; |
| 1190 | case 'F': |
| 1191 | fmt2 = optarg; |
| 1192 | break; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1193 | case 'T': |
| 1194 | cache = optarg; |
| 1195 | break; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1196 | case 'p': |
| 1197 | progress = true; |
| 1198 | break; |
| 1199 | case 'q': |
| 1200 | quiet = true; |
| 1201 | break; |
| 1202 | case 's': |
| 1203 | strict = true; |
| 1204 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1205 | case OPTION_OBJECT: { |
| 1206 | QemuOpts *opts; |
| 1207 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 1208 | optarg, true); |
| 1209 | if (!opts) { |
| 1210 | ret = 2; |
| 1211 | goto out4; |
| 1212 | } |
| 1213 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1214 | case OPTION_IMAGE_OPTS: |
| 1215 | image_opts = true; |
| 1216 | break; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | /* Progress is not shown in Quiet mode */ |
| 1221 | if (quiet) { |
| 1222 | progress = false; |
| 1223 | } |
| 1224 | |
| 1225 | |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 1226 | if (optind != argc - 2) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 1227 | error_exit("Expecting two image file names"); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1228 | } |
| 1229 | filename1 = argv[optind++]; |
| 1230 | filename2 = argv[optind++]; |
| 1231 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1232 | if (qemu_opts_foreach(&qemu_object_opts, |
| 1233 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 1234 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1235 | ret = 2; |
| 1236 | goto out4; |
| 1237 | } |
| 1238 | |
Stefan Hajnoczi | cbda016 | 2014-08-26 19:17:55 +0100 | [diff] [blame] | 1239 | /* Initialize before goto out */ |
| 1240 | qemu_progress_init(progress, 2.0); |
| 1241 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1242 | flags = 0; |
| 1243 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1244 | if (ret < 0) { |
| 1245 | error_report("Invalid source cache option: %s", cache); |
| 1246 | ret = 2; |
| 1247 | goto out3; |
| 1248 | } |
| 1249 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1250 | blk1 = img_open(image_opts, filename1, fmt1, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1251 | if (!blk1) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1252 | ret = 2; |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1253 | goto out3; |
| 1254 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1255 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1256 | blk2 = img_open(image_opts, filename2, fmt2, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1257 | if (!blk2) { |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1258 | ret = 2; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1259 | goto out2; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1260 | } |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1261 | bs1 = blk_bs(blk1); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1262 | bs2 = blk_bs(blk2); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1263 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1264 | buf1 = blk_blockalign(blk1, IO_BUF_SIZE); |
| 1265 | buf2 = blk_blockalign(blk2, IO_BUF_SIZE); |
| 1266 | total_sectors1 = blk_nb_sectors(blk1); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 1267 | if (total_sectors1 < 0) { |
| 1268 | error_report("Can't get size of %s: %s", |
| 1269 | filename1, strerror(-total_sectors1)); |
| 1270 | ret = 4; |
| 1271 | goto out; |
| 1272 | } |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1273 | total_sectors2 = blk_nb_sectors(blk2); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 1274 | if (total_sectors2 < 0) { |
| 1275 | error_report("Can't get size of %s: %s", |
| 1276 | filename2, strerror(-total_sectors2)); |
| 1277 | ret = 4; |
| 1278 | goto out; |
| 1279 | } |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1280 | total_sectors = MIN(total_sectors1, total_sectors2); |
| 1281 | progress_base = MAX(total_sectors1, total_sectors2); |
| 1282 | |
| 1283 | qemu_progress_print(0, 100); |
| 1284 | |
| 1285 | if (strict && total_sectors1 != total_sectors2) { |
| 1286 | ret = 1; |
| 1287 | qprintf(quiet, "Strict mode: Image size mismatch!\n"); |
| 1288 | goto out; |
| 1289 | } |
| 1290 | |
| 1291 | for (;;) { |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1292 | int64_t status1, status2; |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 1293 | BlockDriverState *file; |
| 1294 | |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1295 | nb_sectors = sectors_to_process(total_sectors, sector_num); |
| 1296 | if (nb_sectors <= 0) { |
| 1297 | break; |
| 1298 | } |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1299 | status1 = bdrv_get_block_status_above(bs1, NULL, sector_num, |
| 1300 | total_sectors1 - sector_num, |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 1301 | &pnum1, &file); |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1302 | if (status1 < 0) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1303 | ret = 3; |
| 1304 | error_report("Sector allocation test failed for %s", filename1); |
| 1305 | goto out; |
| 1306 | } |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1307 | allocated1 = status1 & BDRV_BLOCK_ALLOCATED; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1308 | |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1309 | status2 = bdrv_get_block_status_above(bs2, NULL, sector_num, |
| 1310 | total_sectors2 - sector_num, |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 1311 | &pnum2, &file); |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1312 | if (status2 < 0) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1313 | ret = 3; |
| 1314 | error_report("Sector allocation test failed for %s", filename2); |
| 1315 | goto out; |
| 1316 | } |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1317 | allocated2 = status2 & BDRV_BLOCK_ALLOCATED; |
| 1318 | if (pnum1) { |
| 1319 | nb_sectors = MIN(nb_sectors, pnum1); |
| 1320 | } |
| 1321 | if (pnum2) { |
| 1322 | nb_sectors = MIN(nb_sectors, pnum2); |
| 1323 | } |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1324 | |
Fam Zheng | 25ad8e6 | 2016-01-13 16:37:41 +0800 | [diff] [blame] | 1325 | if (strict) { |
| 1326 | if ((status1 & ~BDRV_BLOCK_OFFSET_MASK) != |
| 1327 | (status2 & ~BDRV_BLOCK_OFFSET_MASK)) { |
| 1328 | ret = 1; |
| 1329 | qprintf(quiet, "Strict mode: Offset %" PRId64 |
| 1330 | " block status mismatch!\n", |
| 1331 | sectors_to_bytes(sector_num)); |
| 1332 | goto out; |
| 1333 | } |
| 1334 | } |
| 1335 | if ((status1 & BDRV_BLOCK_ZERO) && (status2 & BDRV_BLOCK_ZERO)) { |
| 1336 | nb_sectors = MIN(pnum1, pnum2); |
| 1337 | } else if (allocated1 == allocated2) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1338 | if (allocated1) { |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 1339 | ret = blk_pread(blk1, sector_num << BDRV_SECTOR_BITS, buf1, |
| 1340 | nb_sectors << BDRV_SECTOR_BITS); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1341 | if (ret < 0) { |
| 1342 | error_report("Error while reading offset %" PRId64 " of %s:" |
| 1343 | " %s", sectors_to_bytes(sector_num), filename1, |
| 1344 | strerror(-ret)); |
| 1345 | ret = 4; |
| 1346 | goto out; |
| 1347 | } |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 1348 | ret = blk_pread(blk2, sector_num << BDRV_SECTOR_BITS, buf2, |
| 1349 | nb_sectors << BDRV_SECTOR_BITS); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1350 | if (ret < 0) { |
| 1351 | error_report("Error while reading offset %" PRId64 |
| 1352 | " of %s: %s", sectors_to_bytes(sector_num), |
| 1353 | filename2, strerror(-ret)); |
| 1354 | ret = 4; |
| 1355 | goto out; |
| 1356 | } |
| 1357 | ret = compare_sectors(buf1, buf2, nb_sectors, &pnum); |
| 1358 | if (ret || pnum != nb_sectors) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1359 | qprintf(quiet, "Content mismatch at offset %" PRId64 "!\n", |
| 1360 | sectors_to_bytes( |
| 1361 | ret ? sector_num : sector_num + pnum)); |
Fam Zheng | 36452f1 | 2013-11-13 20:26:49 +0800 | [diff] [blame] | 1362 | ret = 1; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1363 | goto out; |
| 1364 | } |
| 1365 | } |
| 1366 | } else { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1367 | |
| 1368 | if (allocated1) { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1369 | ret = check_empty_sectors(blk1, sector_num, nb_sectors, |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1370 | filename1, buf1, quiet); |
| 1371 | } else { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1372 | ret = check_empty_sectors(blk2, sector_num, nb_sectors, |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1373 | filename2, buf1, quiet); |
| 1374 | } |
| 1375 | if (ret) { |
| 1376 | if (ret < 0) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1377 | error_report("Error while reading offset %" PRId64 ": %s", |
| 1378 | sectors_to_bytes(sector_num), strerror(-ret)); |
Fam Zheng | 36452f1 | 2013-11-13 20:26:49 +0800 | [diff] [blame] | 1379 | ret = 4; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1380 | } |
| 1381 | goto out; |
| 1382 | } |
| 1383 | } |
| 1384 | sector_num += nb_sectors; |
| 1385 | qemu_progress_print(((float) nb_sectors / progress_base)*100, 100); |
| 1386 | } |
| 1387 | |
| 1388 | if (total_sectors1 != total_sectors2) { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1389 | BlockBackend *blk_over; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1390 | int64_t total_sectors_over; |
| 1391 | const char *filename_over; |
| 1392 | |
| 1393 | qprintf(quiet, "Warning: Image size mismatch!\n"); |
| 1394 | if (total_sectors1 > total_sectors2) { |
| 1395 | total_sectors_over = total_sectors1; |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1396 | blk_over = blk1; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1397 | filename_over = filename1; |
| 1398 | } else { |
| 1399 | total_sectors_over = total_sectors2; |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1400 | blk_over = blk2; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1401 | filename_over = filename2; |
| 1402 | } |
| 1403 | |
| 1404 | for (;;) { |
| 1405 | nb_sectors = sectors_to_process(total_sectors_over, sector_num); |
| 1406 | if (nb_sectors <= 0) { |
| 1407 | break; |
| 1408 | } |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1409 | ret = bdrv_is_allocated_above(blk_bs(blk_over), NULL, sector_num, |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1410 | nb_sectors, &pnum); |
| 1411 | if (ret < 0) { |
| 1412 | ret = 3; |
| 1413 | error_report("Sector allocation test failed for %s", |
| 1414 | filename_over); |
| 1415 | goto out; |
| 1416 | |
| 1417 | } |
| 1418 | nb_sectors = pnum; |
| 1419 | if (ret) { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1420 | ret = check_empty_sectors(blk_over, sector_num, nb_sectors, |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1421 | filename_over, buf1, quiet); |
| 1422 | if (ret) { |
| 1423 | if (ret < 0) { |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1424 | error_report("Error while reading offset %" PRId64 |
| 1425 | " of %s: %s", sectors_to_bytes(sector_num), |
| 1426 | filename_over, strerror(-ret)); |
Fam Zheng | 36452f1 | 2013-11-13 20:26:49 +0800 | [diff] [blame] | 1427 | ret = 4; |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1428 | } |
| 1429 | goto out; |
| 1430 | } |
| 1431 | } |
| 1432 | sector_num += nb_sectors; |
| 1433 | qemu_progress_print(((float) nb_sectors / progress_base)*100, 100); |
| 1434 | } |
| 1435 | } |
| 1436 | |
| 1437 | qprintf(quiet, "Images are identical.\n"); |
| 1438 | ret = 0; |
| 1439 | |
| 1440 | out: |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1441 | qemu_vfree(buf1); |
| 1442 | qemu_vfree(buf2); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1443 | blk_unref(blk2); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1444 | out2: |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1445 | blk_unref(blk1); |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1446 | out3: |
| 1447 | qemu_progress_end(); |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1448 | out4: |
Miroslav Rezanina | d14ed18 | 2013-02-13 09:09:41 +0100 | [diff] [blame] | 1449 | return ret; |
| 1450 | } |
| 1451 | |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1452 | enum ImgConvertBlockStatus { |
| 1453 | BLK_DATA, |
| 1454 | BLK_ZERO, |
| 1455 | BLK_BACKING_FILE, |
| 1456 | }; |
| 1457 | |
| 1458 | typedef struct ImgConvertState { |
| 1459 | BlockBackend **src; |
| 1460 | int64_t *src_sectors; |
| 1461 | int src_cur, src_num; |
| 1462 | int64_t src_cur_offset; |
| 1463 | int64_t total_sectors; |
| 1464 | int64_t allocated_sectors; |
| 1465 | enum ImgConvertBlockStatus status; |
| 1466 | int64_t sector_next_status; |
| 1467 | BlockBackend *target; |
| 1468 | bool has_zero_init; |
| 1469 | bool compressed; |
| 1470 | bool target_has_backing; |
| 1471 | int min_sparse; |
| 1472 | size_t cluster_sectors; |
| 1473 | size_t buf_sectors; |
| 1474 | } ImgConvertState; |
| 1475 | |
| 1476 | static void convert_select_part(ImgConvertState *s, int64_t sector_num) |
| 1477 | { |
| 1478 | assert(sector_num >= s->src_cur_offset); |
| 1479 | while (sector_num - s->src_cur_offset >= s->src_sectors[s->src_cur]) { |
| 1480 | s->src_cur_offset += s->src_sectors[s->src_cur]; |
| 1481 | s->src_cur++; |
| 1482 | assert(s->src_cur < s->src_num); |
| 1483 | } |
| 1484 | } |
| 1485 | |
| 1486 | static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num) |
| 1487 | { |
| 1488 | int64_t ret; |
| 1489 | int n; |
| 1490 | |
| 1491 | convert_select_part(s, sector_num); |
| 1492 | |
| 1493 | assert(s->total_sectors > sector_num); |
| 1494 | n = MIN(s->total_sectors - sector_num, BDRV_REQUEST_MAX_SECTORS); |
| 1495 | |
| 1496 | if (s->sector_next_status <= sector_num) { |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 1497 | BlockDriverState *file; |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1498 | ret = bdrv_get_block_status(blk_bs(s->src[s->src_cur]), |
| 1499 | sector_num - s->src_cur_offset, |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 1500 | n, &n, &file); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1501 | if (ret < 0) { |
| 1502 | return ret; |
| 1503 | } |
| 1504 | |
| 1505 | if (ret & BDRV_BLOCK_ZERO) { |
| 1506 | s->status = BLK_ZERO; |
| 1507 | } else if (ret & BDRV_BLOCK_DATA) { |
| 1508 | s->status = BLK_DATA; |
| 1509 | } else if (!s->target_has_backing) { |
| 1510 | /* Without a target backing file we must copy over the contents of |
| 1511 | * the backing file as well. */ |
Ren Kimura | 263a6f4 | 2016-04-28 01:04:58 +0900 | [diff] [blame] | 1512 | /* Check block status of the backing file chain to avoid |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1513 | * needlessly reading zeroes and limiting the iteration to the |
| 1514 | * buffer size */ |
Ren Kimura | 263a6f4 | 2016-04-28 01:04:58 +0900 | [diff] [blame] | 1515 | ret = bdrv_get_block_status_above(blk_bs(s->src[s->src_cur]), NULL, |
| 1516 | sector_num - s->src_cur_offset, |
| 1517 | n, &n, &file); |
| 1518 | if (ret < 0) { |
| 1519 | return ret; |
| 1520 | } |
| 1521 | |
| 1522 | if (ret & BDRV_BLOCK_ZERO) { |
| 1523 | s->status = BLK_ZERO; |
| 1524 | } else { |
| 1525 | s->status = BLK_DATA; |
| 1526 | } |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1527 | } else { |
| 1528 | s->status = BLK_BACKING_FILE; |
| 1529 | } |
| 1530 | |
| 1531 | s->sector_next_status = sector_num + n; |
| 1532 | } |
| 1533 | |
| 1534 | n = MIN(n, s->sector_next_status - sector_num); |
| 1535 | if (s->status == BLK_DATA) { |
| 1536 | n = MIN(n, s->buf_sectors); |
| 1537 | } |
| 1538 | |
| 1539 | /* We need to write complete clusters for compressed images, so if an |
| 1540 | * unallocated area is shorter than that, we must consider the whole |
| 1541 | * cluster allocated. */ |
| 1542 | if (s->compressed) { |
| 1543 | if (n < s->cluster_sectors) { |
| 1544 | n = MIN(s->cluster_sectors, s->total_sectors - sector_num); |
| 1545 | s->status = BLK_DATA; |
| 1546 | } else { |
| 1547 | n = QEMU_ALIGN_DOWN(n, s->cluster_sectors); |
| 1548 | } |
| 1549 | } |
| 1550 | |
| 1551 | return n; |
| 1552 | } |
| 1553 | |
| 1554 | static int convert_read(ImgConvertState *s, int64_t sector_num, int nb_sectors, |
| 1555 | uint8_t *buf) |
| 1556 | { |
| 1557 | int n; |
| 1558 | int ret; |
| 1559 | |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1560 | assert(nb_sectors <= s->buf_sectors); |
| 1561 | while (nb_sectors > 0) { |
| 1562 | BlockBackend *blk; |
| 1563 | int64_t bs_sectors; |
| 1564 | |
| 1565 | /* In the case of compression with multiple source files, we can get a |
| 1566 | * nb_sectors that spreads into the next part. So we must be able to |
| 1567 | * read across multiple BDSes for one convert_read() call. */ |
| 1568 | convert_select_part(s, sector_num); |
| 1569 | blk = s->src[s->src_cur]; |
| 1570 | bs_sectors = s->src_sectors[s->src_cur]; |
| 1571 | |
| 1572 | n = MIN(nb_sectors, bs_sectors - (sector_num - s->src_cur_offset)); |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 1573 | ret = blk_pread(blk, |
| 1574 | (sector_num - s->src_cur_offset) << BDRV_SECTOR_BITS, |
| 1575 | buf, n << BDRV_SECTOR_BITS); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1576 | if (ret < 0) { |
| 1577 | return ret; |
| 1578 | } |
| 1579 | |
| 1580 | sector_num += n; |
| 1581 | nb_sectors -= n; |
| 1582 | buf += n * BDRV_SECTOR_SIZE; |
| 1583 | } |
| 1584 | |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | static int convert_write(ImgConvertState *s, int64_t sector_num, int nb_sectors, |
| 1589 | const uint8_t *buf) |
| 1590 | { |
| 1591 | int ret; |
| 1592 | |
| 1593 | while (nb_sectors > 0) { |
| 1594 | int n = nb_sectors; |
| 1595 | |
| 1596 | switch (s->status) { |
| 1597 | case BLK_BACKING_FILE: |
| 1598 | /* If we have a backing file, leave clusters unallocated that are |
| 1599 | * unallocated in the source image, so that the backing file is |
| 1600 | * visible at the respective offset. */ |
| 1601 | assert(s->target_has_backing); |
| 1602 | break; |
| 1603 | |
| 1604 | case BLK_DATA: |
| 1605 | /* We must always write compressed clusters as a whole, so don't |
| 1606 | * try to find zeroed parts in the buffer. We can only save the |
| 1607 | * write if the buffer is completely zeroed and we're allowed to |
| 1608 | * keep the target sparse. */ |
| 1609 | if (s->compressed) { |
| 1610 | if (s->has_zero_init && s->min_sparse && |
| 1611 | buffer_is_zero(buf, n * BDRV_SECTOR_SIZE)) |
| 1612 | { |
| 1613 | assert(!s->target_has_backing); |
| 1614 | break; |
| 1615 | } |
| 1616 | |
Pavel Butsykin | fe5c135 | 2016-07-22 11:17:40 +0300 | [diff] [blame] | 1617 | ret = blk_pwrite_compressed(s->target, |
| 1618 | sector_num << BDRV_SECTOR_BITS, |
| 1619 | buf, n << BDRV_SECTOR_BITS); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1620 | if (ret < 0) { |
| 1621 | return ret; |
| 1622 | } |
| 1623 | break; |
| 1624 | } |
| 1625 | |
| 1626 | /* If there is real non-zero data or we're told to keep the target |
| 1627 | * fully allocated (-S 0), we must write it. Otherwise we can treat |
| 1628 | * it as zero sectors. */ |
| 1629 | if (!s->min_sparse || |
| 1630 | is_allocated_sectors_min(buf, n, &n, s->min_sparse)) |
| 1631 | { |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 1632 | ret = blk_pwrite(s->target, sector_num << BDRV_SECTOR_BITS, |
| 1633 | buf, n << BDRV_SECTOR_BITS, 0); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1634 | if (ret < 0) { |
| 1635 | return ret; |
| 1636 | } |
| 1637 | break; |
| 1638 | } |
| 1639 | /* fall-through */ |
| 1640 | |
| 1641 | case BLK_ZERO: |
| 1642 | if (s->has_zero_init) { |
| 1643 | break; |
| 1644 | } |
Eric Blake | d004bd5 | 2016-05-24 16:25:20 -0600 | [diff] [blame] | 1645 | ret = blk_pwrite_zeroes(s->target, sector_num << BDRV_SECTOR_BITS, |
| 1646 | n << BDRV_SECTOR_BITS, 0); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1647 | if (ret < 0) { |
| 1648 | return ret; |
| 1649 | } |
| 1650 | break; |
| 1651 | } |
| 1652 | |
| 1653 | sector_num += n; |
| 1654 | nb_sectors -= n; |
| 1655 | buf += n * BDRV_SECTOR_SIZE; |
| 1656 | } |
| 1657 | |
| 1658 | return 0; |
| 1659 | } |
| 1660 | |
| 1661 | static int convert_do_copy(ImgConvertState *s) |
| 1662 | { |
| 1663 | uint8_t *buf = NULL; |
| 1664 | int64_t sector_num, allocated_done; |
| 1665 | int ret; |
| 1666 | int n; |
| 1667 | |
| 1668 | /* Check whether we have zero initialisation or can get it efficiently */ |
| 1669 | s->has_zero_init = s->min_sparse && !s->target_has_backing |
| 1670 | ? bdrv_has_zero_init(blk_bs(s->target)) |
| 1671 | : false; |
| 1672 | |
| 1673 | if (!s->has_zero_init && !s->target_has_backing && |
| 1674 | bdrv_can_write_zeroes_with_unmap(blk_bs(s->target))) |
| 1675 | { |
Kevin Wolf | 720ff28 | 2016-06-16 15:13:15 +0200 | [diff] [blame] | 1676 | ret = blk_make_zero(s->target, BDRV_REQ_MAY_UNMAP); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1677 | if (ret == 0) { |
| 1678 | s->has_zero_init = true; |
| 1679 | } |
| 1680 | } |
| 1681 | |
| 1682 | /* Allocate buffer for copied data. For compressed images, only one cluster |
| 1683 | * can be copied at a time. */ |
| 1684 | if (s->compressed) { |
| 1685 | if (s->cluster_sectors <= 0 || s->cluster_sectors > s->buf_sectors) { |
| 1686 | error_report("invalid cluster size"); |
| 1687 | ret = -EINVAL; |
| 1688 | goto fail; |
| 1689 | } |
| 1690 | s->buf_sectors = s->cluster_sectors; |
| 1691 | } |
| 1692 | buf = blk_blockalign(s->target, s->buf_sectors * BDRV_SECTOR_SIZE); |
| 1693 | |
| 1694 | /* Calculate allocated sectors for progress */ |
| 1695 | s->allocated_sectors = 0; |
| 1696 | sector_num = 0; |
| 1697 | while (sector_num < s->total_sectors) { |
| 1698 | n = convert_iteration_sectors(s, sector_num); |
| 1699 | if (n < 0) { |
| 1700 | ret = n; |
| 1701 | goto fail; |
| 1702 | } |
Max Reitz | aad15de | 2016-03-24 23:33:57 +0100 | [diff] [blame] | 1703 | if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO)) |
| 1704 | { |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1705 | s->allocated_sectors += n; |
| 1706 | } |
| 1707 | sector_num += n; |
| 1708 | } |
| 1709 | |
| 1710 | /* Do the copy */ |
| 1711 | s->src_cur = 0; |
| 1712 | s->src_cur_offset = 0; |
| 1713 | s->sector_next_status = 0; |
| 1714 | |
| 1715 | sector_num = 0; |
| 1716 | allocated_done = 0; |
| 1717 | |
| 1718 | while (sector_num < s->total_sectors) { |
| 1719 | n = convert_iteration_sectors(s, sector_num); |
| 1720 | if (n < 0) { |
| 1721 | ret = n; |
| 1722 | goto fail; |
| 1723 | } |
Max Reitz | aad15de | 2016-03-24 23:33:57 +0100 | [diff] [blame] | 1724 | if (s->status == BLK_DATA || (!s->min_sparse && s->status == BLK_ZERO)) |
| 1725 | { |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1726 | allocated_done += n; |
| 1727 | qemu_progress_print(100.0 * allocated_done / s->allocated_sectors, |
| 1728 | 0); |
| 1729 | } |
| 1730 | |
Max Reitz | aad15de | 2016-03-24 23:33:57 +0100 | [diff] [blame] | 1731 | if (s->status == BLK_DATA) { |
| 1732 | ret = convert_read(s, sector_num, n, buf); |
| 1733 | if (ret < 0) { |
| 1734 | error_report("error while reading sector %" PRId64 |
| 1735 | ": %s", sector_num, strerror(-ret)); |
| 1736 | goto fail; |
| 1737 | } |
| 1738 | } else if (!s->min_sparse && s->status == BLK_ZERO) { |
| 1739 | n = MIN(n, s->buf_sectors); |
| 1740 | memset(buf, 0, n * BDRV_SECTOR_SIZE); |
| 1741 | s->status = BLK_DATA; |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | ret = convert_write(s, sector_num, n, buf); |
| 1745 | if (ret < 0) { |
| 1746 | error_report("error while writing sector %" PRId64 |
| 1747 | ": %s", sector_num, strerror(-ret)); |
| 1748 | goto fail; |
| 1749 | } |
| 1750 | |
| 1751 | sector_num += n; |
| 1752 | } |
| 1753 | |
| 1754 | if (s->compressed) { |
| 1755 | /* signal EOF to align */ |
Pavel Butsykin | fe5c135 | 2016-07-22 11:17:40 +0300 | [diff] [blame] | 1756 | ret = blk_pwrite_compressed(s->target, 0, NULL, 0); |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1757 | if (ret < 0) { |
| 1758 | goto fail; |
| 1759 | } |
| 1760 | } |
| 1761 | |
| 1762 | ret = 0; |
| 1763 | fail: |
| 1764 | qemu_vfree(buf); |
| 1765 | return ret; |
| 1766 | } |
| 1767 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1768 | static int img_convert(int argc, char **argv) |
| 1769 | { |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1770 | int c, bs_n, bs_i, compress, cluster_sectors, skip_create; |
Peter Lieven | 13c28af | 2013-11-27 11:07:01 +0100 | [diff] [blame] | 1771 | int64_t ret = 0; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1772 | int progress = 0, flags, src_flags; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1773 | bool writethrough, src_writethrough; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1774 | const char *fmt, *out_fmt, *cache, *src_cache, *out_baseimg, *out_filename; |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 1775 | BlockDriver *drv, *proto_drv; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1776 | BlockBackend **blk = NULL, *out_blk = NULL; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1777 | BlockDriverState **bs = NULL, *out_bs = NULL; |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1778 | int64_t total_sectors; |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 1779 | int64_t *bs_sectors = NULL; |
Peter Lieven | f2521c9 | 2013-11-27 11:07:06 +0100 | [diff] [blame] | 1780 | size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1781 | BlockDriverInfo bdi; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 1782 | QemuOpts *opts = NULL; |
| 1783 | QemuOptsList *create_opts = NULL; |
| 1784 | const char *out_baseimg_param; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 1785 | char *options = NULL; |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 1786 | const char *snapshot_name = NULL; |
Kevin Wolf | a22f123 | 2011-08-26 15:27:13 +0200 | [diff] [blame] | 1787 | int min_sparse = 8; /* Need at least 4k of zeros for sparse detection */ |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 1788 | bool quiet = false; |
Max Reitz | cc84d90 | 2013-09-06 17:14:26 +0200 | [diff] [blame] | 1789 | Error *local_err = NULL; |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1790 | QemuOpts *sn_opts = NULL; |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 1791 | ImgConvertState state; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1792 | bool image_opts = false; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1793 | |
| 1794 | fmt = NULL; |
| 1795 | out_fmt = "raw"; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 1796 | cache = "unsafe"; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1797 | src_cache = BDRV_DEFAULT_CACHE; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1798 | out_baseimg = NULL; |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 1799 | compress = 0; |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 1800 | skip_create = 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1801 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1802 | static const struct option long_options[] = { |
| 1803 | {"help", no_argument, 0, 'h'}, |
| 1804 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1805 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1806 | {0, 0, 0, 0} |
| 1807 | }; |
| 1808 | c = getopt_long(argc, argv, "hf:O:B:ce6o:s:l:S:pt:T:qn", |
| 1809 | long_options, NULL); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1810 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1811 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1812 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1813 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 1814 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1815 | case 'h': |
| 1816 | help(); |
| 1817 | break; |
| 1818 | case 'f': |
| 1819 | fmt = optarg; |
| 1820 | break; |
| 1821 | case 'O': |
| 1822 | out_fmt = optarg; |
| 1823 | break; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1824 | case 'B': |
| 1825 | out_baseimg = optarg; |
| 1826 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1827 | case 'c': |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 1828 | compress = 1; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1829 | break; |
| 1830 | case 'e': |
Markus Armbruster | 9d42e15 | 2011-06-22 14:03:55 +0200 | [diff] [blame] | 1831 | error_report("option -e is deprecated, please use \'-o " |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 1832 | "encryption\' instead!"); |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1833 | ret = -1; |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1834 | goto fail_getopt; |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 1835 | case '6': |
Markus Armbruster | 9d42e15 | 2011-06-22 14:03:55 +0200 | [diff] [blame] | 1836 | error_report("option -6 is deprecated, please use \'-o " |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 1837 | "compat6\' instead!"); |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1838 | ret = -1; |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1839 | goto fail_getopt; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 1840 | case 'o': |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1841 | if (!is_valid_option_list(optarg)) { |
| 1842 | error_report("Invalid option list: %s", optarg); |
| 1843 | ret = -1; |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1844 | goto fail_getopt; |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1845 | } |
| 1846 | if (!options) { |
| 1847 | options = g_strdup(optarg); |
| 1848 | } else { |
| 1849 | char *old_options = options; |
| 1850 | options = g_strdup_printf("%s,%s", options, optarg); |
| 1851 | g_free(old_options); |
| 1852 | } |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 1853 | break; |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 1854 | case 's': |
| 1855 | snapshot_name = optarg; |
| 1856 | break; |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1857 | case 'l': |
| 1858 | if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) { |
Markus Armbruster | 70b9433 | 2015-02-13 12:50:26 +0100 | [diff] [blame] | 1859 | sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts, |
| 1860 | optarg, false); |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1861 | if (!sn_opts) { |
| 1862 | error_report("Failed in parsing snapshot param '%s'", |
| 1863 | optarg); |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1864 | ret = -1; |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1865 | goto fail_getopt; |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1866 | } |
| 1867 | } else { |
| 1868 | snapshot_name = optarg; |
| 1869 | } |
| 1870 | break; |
Kevin Wolf | a22f123 | 2011-08-26 15:27:13 +0200 | [diff] [blame] | 1871 | case 'S': |
| 1872 | { |
| 1873 | int64_t sval; |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 1874 | |
| 1875 | sval = cvtnum(optarg); |
| 1876 | if (sval < 0) { |
Kevin Wolf | a22f123 | 2011-08-26 15:27:13 +0200 | [diff] [blame] | 1877 | error_report("Invalid minimum zero buffer size for sparse output specified"); |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1878 | ret = -1; |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1879 | goto fail_getopt; |
Kevin Wolf | a22f123 | 2011-08-26 15:27:13 +0200 | [diff] [blame] | 1880 | } |
| 1881 | |
| 1882 | min_sparse = sval / BDRV_SECTOR_SIZE; |
| 1883 | break; |
| 1884 | } |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 1885 | case 'p': |
| 1886 | progress = 1; |
| 1887 | break; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 1888 | case 't': |
| 1889 | cache = optarg; |
| 1890 | break; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1891 | case 'T': |
| 1892 | src_cache = optarg; |
| 1893 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 1894 | case 'q': |
| 1895 | quiet = true; |
| 1896 | break; |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 1897 | case 'n': |
| 1898 | skip_create = 1; |
| 1899 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1900 | case OPTION_OBJECT: |
| 1901 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 1902 | optarg, true); |
| 1903 | if (!opts) { |
| 1904 | goto fail_getopt; |
| 1905 | } |
| 1906 | break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 1907 | case OPTION_IMAGE_OPTS: |
| 1908 | image_opts = true; |
| 1909 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1910 | } |
| 1911 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1912 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1913 | if (qemu_opts_foreach(&qemu_object_opts, |
| 1914 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 1915 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 1916 | goto fail_getopt; |
| 1917 | } |
| 1918 | |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1919 | /* Initialize before goto out */ |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 1920 | if (quiet) { |
| 1921 | progress = 0; |
| 1922 | } |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 1923 | qemu_progress_init(progress, 1.0); |
| 1924 | |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 1925 | bs_n = argc - optind - 1; |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 1926 | out_filename = bs_n >= 1 ? argv[argc - 1] : NULL; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1927 | |
Kevin Wolf | 2dc8328 | 2014-02-21 16:24:05 +0100 | [diff] [blame] | 1928 | if (options && has_help_option(options)) { |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 1929 | ret = print_block_option_help(out_filename, out_fmt); |
| 1930 | goto out; |
| 1931 | } |
| 1932 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1933 | if (bs_n < 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 1934 | error_exit("Must specify image file name"); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1935 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1936 | |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1937 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1938 | if (bs_n > 1 && out_baseimg) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 1939 | error_report("-B makes no sense when concatenating multiple input " |
| 1940 | "images"); |
Jes Sorensen | 31ca34b | 2010-12-06 15:25:36 +0100 | [diff] [blame] | 1941 | ret = -1; |
| 1942 | goto out; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1943 | } |
Dong Xu Wang | f8111c2 | 2012-03-15 20:13:31 +0800 | [diff] [blame] | 1944 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1945 | src_flags = 0; |
| 1946 | ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough); |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 1947 | if (ret < 0) { |
| 1948 | error_report("Invalid source cache option: %s", src_cache); |
| 1949 | goto out; |
| 1950 | } |
| 1951 | |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 1952 | qemu_progress_print(0, 100); |
| 1953 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1954 | blk = g_new0(BlockBackend *, bs_n); |
Markus Armbruster | d739f1c | 2014-06-26 13:23:24 +0200 | [diff] [blame] | 1955 | bs = g_new0(BlockDriverState *, bs_n); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 1956 | bs_sectors = g_new(int64_t, bs_n); |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 1957 | |
| 1958 | total_sectors = 0; |
| 1959 | for (bs_i = 0; bs_i < bs_n; bs_i++) { |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 1960 | blk[bs_i] = img_open(image_opts, argv[optind + bs_i], |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 1961 | fmt, src_flags, src_writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1962 | if (!blk[bs_i]) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1963 | ret = -1; |
| 1964 | goto out; |
| 1965 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 1966 | bs[bs_i] = blk_bs(blk[bs_i]); |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 1967 | bs_sectors[bs_i] = blk_nb_sectors(blk[bs_i]); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 1968 | if (bs_sectors[bs_i] < 0) { |
| 1969 | error_report("Could not get size of %s: %s", |
| 1970 | argv[optind + bs_i], strerror(-bs_sectors[bs_i])); |
| 1971 | ret = -1; |
| 1972 | goto out; |
| 1973 | } |
Markus Armbruster | d739f1c | 2014-06-26 13:23:24 +0200 | [diff] [blame] | 1974 | total_sectors += bs_sectors[bs_i]; |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 1975 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1976 | |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1977 | if (sn_opts) { |
Peter Maydell | 10d6eda | 2017-02-10 16:28:24 +0000 | [diff] [blame] | 1978 | bdrv_snapshot_load_tmp(bs[0], |
| 1979 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID), |
| 1980 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME), |
| 1981 | &local_err); |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1982 | } else if (snapshot_name != NULL) { |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 1983 | if (bs_n > 1) { |
Markus Armbruster | 6daf194 | 2011-06-22 14:03:54 +0200 | [diff] [blame] | 1984 | error_report("No support for concatenating multiple snapshot"); |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 1985 | ret = -1; |
| 1986 | goto out; |
| 1987 | } |
Wenchao Xia | 7b4c478 | 2013-12-04 17:10:54 +0800 | [diff] [blame] | 1988 | |
| 1989 | bdrv_snapshot_load_tmp_by_id_or_name(bs[0], snapshot_name, &local_err); |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1990 | } |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 1991 | if (local_err) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 1992 | error_reportf_err(local_err, "Failed to load snapshot: "); |
Wenchao Xia | ef80654 | 2013-12-04 17:10:57 +0800 | [diff] [blame] | 1993 | ret = -1; |
| 1994 | goto out; |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 1995 | } |
| 1996 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 1997 | /* Find driver and parse its options */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1998 | drv = bdrv_find_format(out_fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1999 | if (!drv) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2000 | error_report("Unknown file format '%s'", out_fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2001 | ret = -1; |
| 2002 | goto out; |
| 2003 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 2004 | |
Max Reitz | b65a5e1 | 2015-02-05 13:58:12 -0500 | [diff] [blame] | 2005 | proto_drv = bdrv_find_protocol(out_filename, true, &local_err); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2006 | if (!proto_drv) { |
Markus Armbruster | 2867ce4 | 2015-03-12 16:08:02 +0100 | [diff] [blame] | 2007 | error_report_err(local_err); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2008 | ret = -1; |
| 2009 | goto out; |
| 2010 | } |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 2011 | |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2012 | if (!skip_create) { |
| 2013 | if (!drv->create_opts) { |
| 2014 | error_report("Format driver '%s' does not support image creation", |
| 2015 | drv->format_name); |
| 2016 | ret = -1; |
| 2017 | goto out; |
| 2018 | } |
Max Reitz | f75613c | 2014-12-02 18:32:46 +0100 | [diff] [blame] | 2019 | |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2020 | if (!proto_drv->create_opts) { |
| 2021 | error_report("Protocol driver '%s' does not support image creation", |
| 2022 | proto_drv->format_name); |
| 2023 | ret = -1; |
| 2024 | goto out; |
| 2025 | } |
Max Reitz | f75613c | 2014-12-02 18:32:46 +0100 | [diff] [blame] | 2026 | |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2027 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
| 2028 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
Kevin Wolf | db08adf | 2009-06-04 15:39:38 +0200 | [diff] [blame] | 2029 | |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2030 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Markus Armbruster | dc523cd34 | 2015-02-12 18:37:11 +0100 | [diff] [blame] | 2031 | if (options) { |
| 2032 | qemu_opts_do_parse(opts, options, NULL, &local_err); |
| 2033 | if (local_err) { |
Markus Armbruster | 97a2ca7 | 2015-03-14 10:23:15 +0100 | [diff] [blame] | 2034 | error_report_err(local_err); |
Markus Armbruster | dc523cd34 | 2015-02-12 18:37:11 +0100 | [diff] [blame] | 2035 | ret = -1; |
| 2036 | goto out; |
| 2037 | } |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2038 | } |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2039 | |
Markus Armbruster | 39101f2 | 2015-02-12 16:46:36 +0100 | [diff] [blame] | 2040 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_sectors * 512, |
| 2041 | &error_abort); |
Max Reitz | 2e024cd | 2015-02-11 09:58:46 -0500 | [diff] [blame] | 2042 | ret = add_old_style_options(out_fmt, opts, out_baseimg, NULL); |
| 2043 | if (ret < 0) { |
| 2044 | goto out; |
| 2045 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2046 | } |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2047 | |
Kevin Wolf | a18953f | 2010-10-14 15:46:04 +0200 | [diff] [blame] | 2048 | /* Get backing file name if -o backing_file was used */ |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2049 | out_baseimg_param = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE); |
Kevin Wolf | a18953f | 2010-10-14 15:46:04 +0200 | [diff] [blame] | 2050 | if (out_baseimg_param) { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2051 | out_baseimg = out_baseimg_param; |
Kevin Wolf | a18953f | 2010-10-14 15:46:04 +0200 | [diff] [blame] | 2052 | } |
| 2053 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2054 | /* Check if compression is supported */ |
Jes Sorensen | eec77d9 | 2010-12-07 17:44:34 +0100 | [diff] [blame] | 2055 | if (compress) { |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2056 | bool encryption = |
| 2057 | qemu_opt_get_bool(opts, BLOCK_OPT_ENCRYPT, false); |
| 2058 | const char *preallocation = |
| 2059 | qemu_opt_get(opts, BLOCK_OPT_PREALLOC); |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2060 | |
Pavel Butsykin | 35fadca | 2016-07-22 11:17:48 +0300 | [diff] [blame] | 2061 | if (!drv->bdrv_co_pwritev_compressed) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2062 | error_report("Compression not supported for this file format"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2063 | ret = -1; |
| 2064 | goto out; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2065 | } |
| 2066 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2067 | if (encryption) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2068 | error_report("Compression and encryption not supported at " |
| 2069 | "the same time"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2070 | ret = -1; |
| 2071 | goto out; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2072 | } |
Kevin Wolf | 41521fa | 2011-10-18 16:19:42 +0200 | [diff] [blame] | 2073 | |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2074 | if (preallocation |
| 2075 | && strcmp(preallocation, "off")) |
Kevin Wolf | 41521fa | 2011-10-18 16:19:42 +0200 | [diff] [blame] | 2076 | { |
| 2077 | error_report("Compression and preallocation not supported at " |
| 2078 | "the same time"); |
| 2079 | ret = -1; |
| 2080 | goto out; |
| 2081 | } |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 2082 | } |
| 2083 | |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2084 | if (!skip_create) { |
| 2085 | /* Create the new image */ |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 2086 | ret = bdrv_create(drv, out_filename, opts, &local_err); |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2087 | if (ret < 0) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 2088 | error_reportf_err(local_err, "%s: error while converting %s: ", |
| 2089 | out_filename, out_fmt); |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2090 | goto out; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2091 | } |
| 2092 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2093 | |
Peter Lieven | 5a37b60 | 2013-10-24 12:07:06 +0200 | [diff] [blame] | 2094 | flags = min_sparse ? (BDRV_O_RDWR | BDRV_O_UNMAP) : BDRV_O_RDWR; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2095 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2096 | if (ret < 0) { |
| 2097 | error_report("Invalid cache option: %s", cache); |
Markus Armbruster | bb9cd2e | 2014-05-28 11:17:07 +0200 | [diff] [blame] | 2098 | goto out; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2099 | } |
| 2100 | |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2101 | /* XXX we should allow --image-opts to trigger use of |
| 2102 | * img_open() here, but then we have trouble with |
| 2103 | * the bdrv_create() call which takes different params. |
| 2104 | * Not critical right now, so fix can wait... |
| 2105 | */ |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2106 | out_blk = img_open_file(out_filename, out_fmt, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2107 | if (!out_blk) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2108 | ret = -1; |
| 2109 | goto out; |
| 2110 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2111 | out_bs = blk_bs(out_blk); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2112 | |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 2113 | /* increase bufsectors from the default 4096 (2M) if opt_transfer |
Peter Lieven | f2521c9 | 2013-11-27 11:07:06 +0100 | [diff] [blame] | 2114 | * or discard_alignment of the out_bs is greater. Limit to 32768 (16MB) |
| 2115 | * as maximum. */ |
| 2116 | bufsectors = MIN(32768, |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 2117 | MAX(bufsectors, |
| 2118 | MAX(out_bs->bl.opt_transfer >> BDRV_SECTOR_BITS, |
Eric Blake | b9f7855 | 2016-06-23 16:37:21 -0600 | [diff] [blame] | 2119 | out_bs->bl.pdiscard_alignment >> |
| 2120 | BDRV_SECTOR_BITS))); |
Peter Lieven | f2521c9 | 2013-11-27 11:07:06 +0100 | [diff] [blame] | 2121 | |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2122 | if (skip_create) { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 2123 | int64_t output_sectors = blk_nb_sectors(out_blk); |
Markus Armbruster | 43716fa | 2014-06-26 13:23:21 +0200 | [diff] [blame] | 2124 | if (output_sectors < 0) { |
Gonglei | eec5eb4 | 2015-02-25 12:22:27 +0800 | [diff] [blame] | 2125 | error_report("unable to get output image length: %s", |
Markus Armbruster | 43716fa | 2014-06-26 13:23:21 +0200 | [diff] [blame] | 2126 | strerror(-output_sectors)); |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2127 | ret = -1; |
| 2128 | goto out; |
Markus Armbruster | 43716fa | 2014-06-26 13:23:21 +0200 | [diff] [blame] | 2129 | } else if (output_sectors < total_sectors) { |
Alexandre Derumier | b2e1049 | 2013-09-02 19:07:24 +0100 | [diff] [blame] | 2130 | error_report("output file is smaller than input file"); |
| 2131 | ret = -1; |
| 2132 | goto out; |
| 2133 | } |
| 2134 | } |
| 2135 | |
Peter Lieven | 24f833c | 2013-11-27 11:07:07 +0100 | [diff] [blame] | 2136 | cluster_sectors = 0; |
| 2137 | ret = bdrv_get_info(out_bs, &bdi); |
| 2138 | if (ret < 0) { |
| 2139 | if (compress) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2140 | error_report("could not get block driver info"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2141 | goto out; |
| 2142 | } |
Peter Lieven | 24f833c | 2013-11-27 11:07:07 +0100 | [diff] [blame] | 2143 | } else { |
Fam Zheng | 85f49ca | 2014-05-06 21:08:43 +0800 | [diff] [blame] | 2144 | compress = compress || bdi.needs_compressed_writes; |
Peter Lieven | 24f833c | 2013-11-27 11:07:07 +0100 | [diff] [blame] | 2145 | cluster_sectors = bdi.cluster_size / BDRV_SECTOR_SIZE; |
| 2146 | } |
| 2147 | |
Kevin Wolf | 690c730 | 2015-03-19 13:33:32 +0100 | [diff] [blame] | 2148 | state = (ImgConvertState) { |
| 2149 | .src = blk, |
| 2150 | .src_sectors = bs_sectors, |
| 2151 | .src_num = bs_n, |
| 2152 | .total_sectors = total_sectors, |
| 2153 | .target = out_blk, |
| 2154 | .compressed = compress, |
| 2155 | .target_has_backing = (bool) out_baseimg, |
| 2156 | .min_sparse = min_sparse, |
| 2157 | .cluster_sectors = cluster_sectors, |
| 2158 | .buf_sectors = bufsectors, |
| 2159 | }; |
| 2160 | ret = convert_do_copy(&state); |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 2161 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2162 | out: |
Peter Lieven | 13c28af | 2013-11-27 11:07:01 +0100 | [diff] [blame] | 2163 | if (!ret) { |
| 2164 | qemu_progress_print(100, 0); |
| 2165 | } |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 2166 | qemu_progress_end(); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 2167 | qemu_opts_del(opts); |
| 2168 | qemu_opts_free(create_opts); |
Markus Armbruster | fbf28a4 | 2014-09-29 16:07:55 +0200 | [diff] [blame] | 2169 | qemu_opts_del(sn_opts); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2170 | blk_unref(out_blk); |
Markus Armbruster | 9ba10c9 | 2014-10-07 13:59:08 +0200 | [diff] [blame] | 2171 | g_free(bs); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2172 | if (blk) { |
| 2173 | for (bs_i = 0; bs_i < bs_n; bs_i++) { |
| 2174 | blk_unref(blk[bs_i]); |
| 2175 | } |
| 2176 | g_free(blk); |
| 2177 | } |
Markus Armbruster | d739f1c | 2014-06-26 13:23:24 +0200 | [diff] [blame] | 2178 | g_free(bs_sectors); |
Kevin Wolf | 64bb01a | 2014-03-03 14:54:07 +0100 | [diff] [blame] | 2179 | fail_getopt: |
| 2180 | g_free(options); |
| 2181 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2182 | if (ret) { |
| 2183 | return 1; |
| 2184 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2185 | return 0; |
| 2186 | } |
| 2187 | |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 2188 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2189 | static void dump_snapshots(BlockDriverState *bs) |
| 2190 | { |
| 2191 | QEMUSnapshotInfo *sn_tab, *sn; |
| 2192 | int nb_sns, i; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2193 | |
| 2194 | nb_sns = bdrv_snapshot_list(bs, &sn_tab); |
| 2195 | if (nb_sns <= 0) |
| 2196 | return; |
| 2197 | printf("Snapshot list:\n"); |
Wenchao Xia | 5b91704 | 2013-05-25 11:09:45 +0800 | [diff] [blame] | 2198 | bdrv_snapshot_dump(fprintf, stdout, NULL); |
| 2199 | printf("\n"); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2200 | for(i = 0; i < nb_sns; i++) { |
| 2201 | sn = &sn_tab[i]; |
Wenchao Xia | 5b91704 | 2013-05-25 11:09:45 +0800 | [diff] [blame] | 2202 | bdrv_snapshot_dump(fprintf, stdout, sn); |
| 2203 | printf("\n"); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2204 | } |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 2205 | g_free(sn_tab); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2206 | } |
| 2207 | |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2208 | static void dump_json_image_info_list(ImageInfoList *list) |
| 2209 | { |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2210 | QString *str; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2211 | QObject *obj; |
Daniel P. Berrange | 7d5e199 | 2016-09-30 15:45:28 +0100 | [diff] [blame] | 2212 | Visitor *v = qobject_output_visitor_new(&obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 2213 | |
| 2214 | visit_type_ImageInfoList(v, NULL, &list, &error_abort); |
| 2215 | visit_complete(v, &obj); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2216 | str = qobject_to_json_pretty(obj); |
| 2217 | assert(str != NULL); |
| 2218 | printf("%s\n", qstring_get_str(str)); |
| 2219 | qobject_decref(obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 2220 | visit_free(v); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2221 | QDECREF(str); |
| 2222 | } |
| 2223 | |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2224 | static void dump_json_image_info(ImageInfo *info) |
| 2225 | { |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2226 | QString *str; |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2227 | QObject *obj; |
Daniel P. Berrange | 7d5e199 | 2016-09-30 15:45:28 +0100 | [diff] [blame] | 2228 | Visitor *v = qobject_output_visitor_new(&obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 2229 | |
| 2230 | visit_type_ImageInfo(v, NULL, &info, &error_abort); |
| 2231 | visit_complete(v, &obj); |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2232 | str = qobject_to_json_pretty(obj); |
| 2233 | assert(str != NULL); |
| 2234 | printf("%s\n", qstring_get_str(str)); |
| 2235 | qobject_decref(obj); |
Eric Blake | 3b098d5 | 2016-06-09 10:48:43 -0600 | [diff] [blame] | 2236 | visit_free(v); |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2237 | QDECREF(str); |
| 2238 | } |
| 2239 | |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2240 | static void dump_human_image_info_list(ImageInfoList *list) |
| 2241 | { |
| 2242 | ImageInfoList *elem; |
| 2243 | bool delim = false; |
| 2244 | |
| 2245 | for (elem = list; elem; elem = elem->next) { |
| 2246 | if (delim) { |
| 2247 | printf("\n"); |
| 2248 | } |
| 2249 | delim = true; |
| 2250 | |
Wenchao Xia | 5b91704 | 2013-05-25 11:09:45 +0800 | [diff] [blame] | 2251 | bdrv_image_info_dump(fprintf, stdout, elem->value); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2252 | } |
| 2253 | } |
| 2254 | |
| 2255 | static gboolean str_equal_func(gconstpointer a, gconstpointer b) |
| 2256 | { |
| 2257 | return strcmp(a, b) == 0; |
| 2258 | } |
| 2259 | |
| 2260 | /** |
| 2261 | * Open an image file chain and return an ImageInfoList |
| 2262 | * |
| 2263 | * @filename: topmost image filename |
| 2264 | * @fmt: topmost image format (may be NULL to autodetect) |
| 2265 | * @chain: true - enumerate entire backing file chain |
| 2266 | * false - only topmost image file |
| 2267 | * |
| 2268 | * Returns a list of ImageInfo objects or NULL if there was an error opening an |
| 2269 | * image file. If there was an error a message will have been printed to |
| 2270 | * stderr. |
| 2271 | */ |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2272 | static ImageInfoList *collect_image_info_list(bool image_opts, |
| 2273 | const char *filename, |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2274 | const char *fmt, |
| 2275 | bool chain) |
| 2276 | { |
| 2277 | ImageInfoList *head = NULL; |
| 2278 | ImageInfoList **last = &head; |
| 2279 | GHashTable *filenames; |
Wenchao Xia | 43526ec | 2013-06-06 12:27:58 +0800 | [diff] [blame] | 2280 | Error *err = NULL; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2281 | |
| 2282 | filenames = g_hash_table_new_full(g_str_hash, str_equal_func, NULL, NULL); |
| 2283 | |
| 2284 | while (filename) { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2285 | BlockBackend *blk; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2286 | BlockDriverState *bs; |
| 2287 | ImageInfo *info; |
| 2288 | ImageInfoList *elem; |
| 2289 | |
| 2290 | if (g_hash_table_lookup_extended(filenames, filename, NULL, NULL)) { |
| 2291 | error_report("Backing file '%s' creates an infinite loop.", |
| 2292 | filename); |
| 2293 | goto err; |
| 2294 | } |
| 2295 | g_hash_table_insert(filenames, (gpointer)filename, NULL); |
| 2296 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 2297 | blk = img_open(image_opts, filename, fmt, |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2298 | BDRV_O_NO_BACKING | BDRV_O_NO_IO, false, false); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2299 | if (!blk) { |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2300 | goto err; |
| 2301 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2302 | bs = blk_bs(blk); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2303 | |
Wenchao Xia | 43526ec | 2013-06-06 12:27:58 +0800 | [diff] [blame] | 2304 | bdrv_query_image_info(bs, &info, &err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 2305 | if (err) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 2306 | error_report_err(err); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2307 | blk_unref(blk); |
Wenchao Xia | 43526ec | 2013-06-06 12:27:58 +0800 | [diff] [blame] | 2308 | goto err; |
Wenchao Xia | fb0ed45 | 2013-06-06 12:27:57 +0800 | [diff] [blame] | 2309 | } |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2310 | |
| 2311 | elem = g_new0(ImageInfoList, 1); |
| 2312 | elem->value = info; |
| 2313 | *last = elem; |
| 2314 | last = &elem->next; |
| 2315 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2316 | blk_unref(blk); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2317 | |
| 2318 | filename = fmt = NULL; |
| 2319 | if (chain) { |
| 2320 | if (info->has_full_backing_filename) { |
| 2321 | filename = info->full_backing_filename; |
| 2322 | } else if (info->has_backing_filename) { |
John Snow | 92d617a | 2015-12-14 14:55:15 -0500 | [diff] [blame] | 2323 | error_report("Could not determine absolute backing filename," |
| 2324 | " but backing filename '%s' present", |
| 2325 | info->backing_filename); |
| 2326 | goto err; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2327 | } |
| 2328 | if (info->has_backing_filename_format) { |
| 2329 | fmt = info->backing_filename_format; |
| 2330 | } |
| 2331 | } |
| 2332 | } |
| 2333 | g_hash_table_destroy(filenames); |
| 2334 | return head; |
| 2335 | |
| 2336 | err: |
| 2337 | qapi_free_ImageInfoList(head); |
| 2338 | g_hash_table_destroy(filenames); |
| 2339 | return NULL; |
| 2340 | } |
| 2341 | |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2342 | static int img_info(int argc, char **argv) |
| 2343 | { |
| 2344 | int c; |
| 2345 | OutputFormat output_format = OFORMAT_HUMAN; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2346 | bool chain = false; |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2347 | const char *filename, *fmt, *output; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2348 | ImageInfoList *list; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2349 | bool image_opts = false; |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2350 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2351 | fmt = NULL; |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2352 | output = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2353 | for(;;) { |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2354 | int option_index = 0; |
| 2355 | static const struct option long_options[] = { |
| 2356 | {"help", no_argument, 0, 'h'}, |
| 2357 | {"format", required_argument, 0, 'f'}, |
| 2358 | {"output", required_argument, 0, OPTION_OUTPUT}, |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2359 | {"backing-chain", no_argument, 0, OPTION_BACKING_CHAIN}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2360 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2361 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2362 | {0, 0, 0, 0} |
| 2363 | }; |
| 2364 | c = getopt_long(argc, argv, "f:h", |
| 2365 | long_options, &option_index); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2366 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2367 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2368 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2369 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 2370 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2371 | case 'h': |
| 2372 | help(); |
| 2373 | break; |
| 2374 | case 'f': |
| 2375 | fmt = optarg; |
| 2376 | break; |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2377 | case OPTION_OUTPUT: |
| 2378 | output = optarg; |
| 2379 | break; |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2380 | case OPTION_BACKING_CHAIN: |
| 2381 | chain = true; |
| 2382 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2383 | case OPTION_OBJECT: { |
| 2384 | QemuOpts *opts; |
| 2385 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 2386 | optarg, true); |
| 2387 | if (!opts) { |
| 2388 | return 1; |
| 2389 | } |
| 2390 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2391 | case OPTION_IMAGE_OPTS: |
| 2392 | image_opts = true; |
| 2393 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2394 | } |
| 2395 | } |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 2396 | if (optind != argc - 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2397 | error_exit("Expecting one image file name"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2398 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2399 | filename = argv[optind++]; |
| 2400 | |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2401 | if (output && !strcmp(output, "json")) { |
| 2402 | output_format = OFORMAT_JSON; |
| 2403 | } else if (output && !strcmp(output, "human")) { |
| 2404 | output_format = OFORMAT_HUMAN; |
| 2405 | } else if (output) { |
| 2406 | error_report("--output must be used with human or json as argument."); |
| 2407 | return 1; |
| 2408 | } |
| 2409 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2410 | if (qemu_opts_foreach(&qemu_object_opts, |
| 2411 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 2412 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2413 | return 1; |
| 2414 | } |
| 2415 | |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2416 | list = collect_image_info_list(image_opts, filename, fmt, chain); |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2417 | if (!list) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2418 | return 1; |
| 2419 | } |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2420 | |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2421 | switch (output_format) { |
| 2422 | case OFORMAT_HUMAN: |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2423 | dump_human_image_info_list(list); |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2424 | break; |
| 2425 | case OFORMAT_JSON: |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2426 | if (chain) { |
| 2427 | dump_json_image_info_list(list); |
| 2428 | } else { |
| 2429 | dump_json_image_info(list->value); |
| 2430 | } |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2431 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2432 | } |
Benoît Canet | c054b3f | 2012-09-05 13:09:02 +0200 | [diff] [blame] | 2433 | |
Stefan Hajnoczi | 9699bf0 | 2012-10-17 14:02:31 +0200 | [diff] [blame] | 2434 | qapi_free_ImageInfoList(list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2435 | return 0; |
| 2436 | } |
| 2437 | |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2438 | static void dump_map_entry(OutputFormat output_format, MapEntry *e, |
| 2439 | MapEntry *next) |
| 2440 | { |
| 2441 | switch (output_format) { |
| 2442 | case OFORMAT_HUMAN: |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2443 | if (e->data && !e->has_offset) { |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2444 | error_report("File contains external, encrypted or compressed clusters."); |
| 2445 | exit(1); |
| 2446 | } |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2447 | if (e->data && !e->zero) { |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2448 | printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n", |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2449 | e->start, e->length, |
| 2450 | e->has_offset ? e->offset : 0, |
| 2451 | e->has_filename ? e->filename : ""); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2452 | } |
| 2453 | /* This format ignores the distinction between 0, ZERO and ZERO|DATA. |
| 2454 | * Modify the flags here to allow more coalescing. |
| 2455 | */ |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2456 | if (next && (!next->data || next->zero)) { |
| 2457 | next->data = false; |
| 2458 | next->zero = true; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2459 | } |
| 2460 | break; |
| 2461 | case OFORMAT_JSON: |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2462 | printf("%s{ \"start\": %"PRId64", \"length\": %"PRId64"," |
| 2463 | " \"depth\": %"PRId64", \"zero\": %s, \"data\": %s", |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2464 | (e->start == 0 ? "[" : ",\n"), |
| 2465 | e->start, e->length, e->depth, |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2466 | e->zero ? "true" : "false", |
| 2467 | e->data ? "true" : "false"); |
| 2468 | if (e->has_offset) { |
Paolo Bonzini | c745bfb | 2013-09-11 18:47:52 +0200 | [diff] [blame] | 2469 | printf(", \"offset\": %"PRId64"", e->offset); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2470 | } |
| 2471 | putchar('}'); |
| 2472 | |
| 2473 | if (!next) { |
| 2474 | printf("]\n"); |
| 2475 | } |
| 2476 | break; |
| 2477 | } |
| 2478 | } |
| 2479 | |
| 2480 | static int get_block_status(BlockDriverState *bs, int64_t sector_num, |
| 2481 | int nb_sectors, MapEntry *e) |
| 2482 | { |
| 2483 | int64_t ret; |
| 2484 | int depth; |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 2485 | BlockDriverState *file; |
John Snow | 2875645 | 2016-02-05 13:12:33 -0500 | [diff] [blame] | 2486 | bool has_offset; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2487 | |
| 2488 | /* As an optimization, we could cache the current range of unallocated |
| 2489 | * clusters in each file of the chain, and avoid querying the same |
| 2490 | * range repeatedly. |
| 2491 | */ |
| 2492 | |
| 2493 | depth = 0; |
| 2494 | for (;;) { |
Fam Zheng | 67a0fd2 | 2016-01-26 11:58:48 +0800 | [diff] [blame] | 2495 | ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &nb_sectors, |
| 2496 | &file); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2497 | if (ret < 0) { |
| 2498 | return ret; |
| 2499 | } |
| 2500 | assert(nb_sectors); |
| 2501 | if (ret & (BDRV_BLOCK_ZERO|BDRV_BLOCK_DATA)) { |
| 2502 | break; |
| 2503 | } |
Kevin Wolf | 760e006 | 2015-06-17 14:55:21 +0200 | [diff] [blame] | 2504 | bs = backing_bs(bs); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2505 | if (bs == NULL) { |
| 2506 | ret = 0; |
| 2507 | break; |
| 2508 | } |
| 2509 | |
| 2510 | depth++; |
| 2511 | } |
| 2512 | |
John Snow | 2875645 | 2016-02-05 13:12:33 -0500 | [diff] [blame] | 2513 | has_offset = !!(ret & BDRV_BLOCK_OFFSET_VALID); |
| 2514 | |
| 2515 | *e = (MapEntry) { |
| 2516 | .start = sector_num * BDRV_SECTOR_SIZE, |
| 2517 | .length = nb_sectors * BDRV_SECTOR_SIZE, |
| 2518 | .data = !!(ret & BDRV_BLOCK_DATA), |
| 2519 | .zero = !!(ret & BDRV_BLOCK_ZERO), |
| 2520 | .offset = ret & BDRV_BLOCK_OFFSET_MASK, |
| 2521 | .has_offset = has_offset, |
| 2522 | .depth = depth, |
| 2523 | .has_filename = file && has_offset, |
| 2524 | .filename = file && has_offset ? file->filename : NULL, |
| 2525 | }; |
| 2526 | |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2527 | return 0; |
| 2528 | } |
| 2529 | |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2530 | static inline bool entry_mergeable(const MapEntry *curr, const MapEntry *next) |
| 2531 | { |
| 2532 | if (curr->length == 0) { |
| 2533 | return false; |
| 2534 | } |
| 2535 | if (curr->zero != next->zero || |
| 2536 | curr->data != next->data || |
| 2537 | curr->depth != next->depth || |
| 2538 | curr->has_filename != next->has_filename || |
| 2539 | curr->has_offset != next->has_offset) { |
| 2540 | return false; |
| 2541 | } |
| 2542 | if (curr->has_filename && strcmp(curr->filename, next->filename)) { |
| 2543 | return false; |
| 2544 | } |
| 2545 | if (curr->has_offset && curr->offset + curr->length != next->offset) { |
| 2546 | return false; |
| 2547 | } |
| 2548 | return true; |
| 2549 | } |
| 2550 | |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2551 | static int img_map(int argc, char **argv) |
| 2552 | { |
| 2553 | int c; |
| 2554 | OutputFormat output_format = OFORMAT_HUMAN; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2555 | BlockBackend *blk; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2556 | BlockDriverState *bs; |
| 2557 | const char *filename, *fmt, *output; |
| 2558 | int64_t length; |
| 2559 | MapEntry curr = { .length = 0 }, next; |
| 2560 | int ret = 0; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2561 | bool image_opts = false; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2562 | |
| 2563 | fmt = NULL; |
| 2564 | output = NULL; |
| 2565 | for (;;) { |
| 2566 | int option_index = 0; |
| 2567 | static const struct option long_options[] = { |
| 2568 | {"help", no_argument, 0, 'h'}, |
| 2569 | {"format", required_argument, 0, 'f'}, |
| 2570 | {"output", required_argument, 0, OPTION_OUTPUT}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2571 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2572 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2573 | {0, 0, 0, 0} |
| 2574 | }; |
| 2575 | c = getopt_long(argc, argv, "f:h", |
| 2576 | long_options, &option_index); |
| 2577 | if (c == -1) { |
| 2578 | break; |
| 2579 | } |
| 2580 | switch (c) { |
| 2581 | case '?': |
| 2582 | case 'h': |
| 2583 | help(); |
| 2584 | break; |
| 2585 | case 'f': |
| 2586 | fmt = optarg; |
| 2587 | break; |
| 2588 | case OPTION_OUTPUT: |
| 2589 | output = optarg; |
| 2590 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2591 | case OPTION_OBJECT: { |
| 2592 | QemuOpts *opts; |
| 2593 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 2594 | optarg, true); |
| 2595 | if (!opts) { |
| 2596 | return 1; |
| 2597 | } |
| 2598 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2599 | case OPTION_IMAGE_OPTS: |
| 2600 | image_opts = true; |
| 2601 | break; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2602 | } |
| 2603 | } |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2604 | if (optind != argc - 1) { |
| 2605 | error_exit("Expecting one image file name"); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2606 | } |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2607 | filename = argv[optind]; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2608 | |
| 2609 | if (output && !strcmp(output, "json")) { |
| 2610 | output_format = OFORMAT_JSON; |
| 2611 | } else if (output && !strcmp(output, "human")) { |
| 2612 | output_format = OFORMAT_HUMAN; |
| 2613 | } else if (output) { |
| 2614 | error_report("--output must be used with human or json as argument."); |
| 2615 | return 1; |
| 2616 | } |
| 2617 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2618 | if (qemu_opts_foreach(&qemu_object_opts, |
| 2619 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 2620 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2621 | return 1; |
| 2622 | } |
| 2623 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2624 | blk = img_open(image_opts, filename, fmt, 0, false, false); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2625 | if (!blk) { |
| 2626 | return 1; |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2627 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2628 | bs = blk_bs(blk); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2629 | |
| 2630 | if (output_format == OFORMAT_HUMAN) { |
| 2631 | printf("%-16s%-16s%-16s%s\n", "Offset", "Length", "Mapped to", "File"); |
| 2632 | } |
| 2633 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 2634 | length = blk_getlength(blk); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2635 | while (curr.start + curr.length < length) { |
| 2636 | int64_t nsectors_left; |
| 2637 | int64_t sector_num; |
| 2638 | int n; |
| 2639 | |
| 2640 | sector_num = (curr.start + curr.length) >> BDRV_SECTOR_BITS; |
| 2641 | |
| 2642 | /* Probe up to 1 GiB at a time. */ |
| 2643 | nsectors_left = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE) - sector_num; |
| 2644 | n = MIN(1 << (30 - BDRV_SECTOR_BITS), nsectors_left); |
| 2645 | ret = get_block_status(bs, sector_num, n, &next); |
| 2646 | |
| 2647 | if (ret < 0) { |
| 2648 | error_report("Could not read file metadata: %s", strerror(-ret)); |
| 2649 | goto out; |
| 2650 | } |
| 2651 | |
Fam Zheng | 16b0d55 | 2016-01-26 11:59:02 +0800 | [diff] [blame] | 2652 | if (entry_mergeable(&curr, &next)) { |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2653 | curr.length += next.length; |
| 2654 | continue; |
| 2655 | } |
| 2656 | |
| 2657 | if (curr.length > 0) { |
| 2658 | dump_map_entry(output_format, &curr, &next); |
| 2659 | } |
| 2660 | curr = next; |
| 2661 | } |
| 2662 | |
| 2663 | dump_map_entry(output_format, &curr, NULL); |
| 2664 | |
| 2665 | out: |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2666 | blk_unref(blk); |
Paolo Bonzini | 4c93a13b | 2013-09-04 19:00:33 +0200 | [diff] [blame] | 2667 | return ret < 0; |
| 2668 | } |
| 2669 | |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2670 | #define SNAPSHOT_LIST 1 |
| 2671 | #define SNAPSHOT_CREATE 2 |
| 2672 | #define SNAPSHOT_APPLY 3 |
| 2673 | #define SNAPSHOT_DELETE 4 |
| 2674 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2675 | static int img_snapshot(int argc, char **argv) |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2676 | { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2677 | BlockBackend *blk; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2678 | BlockDriverState *bs; |
| 2679 | QEMUSnapshotInfo sn; |
| 2680 | char *filename, *snapshot_name = NULL; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2681 | int c, ret = 0, bdrv_oflags; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2682 | int action = 0; |
| 2683 | qemu_timeval tv; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2684 | bool quiet = false; |
Wenchao Xia | a89d89d | 2013-09-11 14:04:33 +0800 | [diff] [blame] | 2685 | Error *err = NULL; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2686 | bool image_opts = false; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2687 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2688 | bdrv_oflags = BDRV_O_RDWR; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2689 | /* Parse commandline parameters */ |
| 2690 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2691 | static const struct option long_options[] = { |
| 2692 | {"help", no_argument, 0, 'h'}, |
| 2693 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2694 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2695 | {0, 0, 0, 0} |
| 2696 | }; |
| 2697 | c = getopt_long(argc, argv, "la:c:d:hq", |
| 2698 | long_options, NULL); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2699 | if (c == -1) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2700 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2701 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2702 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 2703 | case '?': |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2704 | case 'h': |
| 2705 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2706 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2707 | case 'l': |
| 2708 | if (action) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2709 | error_exit("Cannot mix '-l', '-a', '-c', '-d'"); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2710 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2711 | } |
| 2712 | action = SNAPSHOT_LIST; |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 2713 | bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */ |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2714 | break; |
| 2715 | case 'a': |
| 2716 | if (action) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2717 | error_exit("Cannot mix '-l', '-a', '-c', '-d'"); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2718 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2719 | } |
| 2720 | action = SNAPSHOT_APPLY; |
| 2721 | snapshot_name = optarg; |
| 2722 | break; |
| 2723 | case 'c': |
| 2724 | if (action) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2725 | error_exit("Cannot mix '-l', '-a', '-c', '-d'"); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2726 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2727 | } |
| 2728 | action = SNAPSHOT_CREATE; |
| 2729 | snapshot_name = optarg; |
| 2730 | break; |
| 2731 | case 'd': |
| 2732 | if (action) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2733 | error_exit("Cannot mix '-l', '-a', '-c', '-d'"); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2734 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2735 | } |
| 2736 | action = SNAPSHOT_DELETE; |
| 2737 | snapshot_name = optarg; |
| 2738 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2739 | case 'q': |
| 2740 | quiet = true; |
| 2741 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2742 | case OPTION_OBJECT: { |
| 2743 | QemuOpts *opts; |
| 2744 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 2745 | optarg, true); |
| 2746 | if (!opts) { |
| 2747 | return 1; |
| 2748 | } |
| 2749 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2750 | case OPTION_IMAGE_OPTS: |
| 2751 | image_opts = true; |
| 2752 | break; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2753 | } |
| 2754 | } |
| 2755 | |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 2756 | if (optind != argc - 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2757 | error_exit("Expecting one image file name"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2758 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2759 | filename = argv[optind++]; |
| 2760 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2761 | if (qemu_opts_foreach(&qemu_object_opts, |
| 2762 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 2763 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2764 | return 1; |
| 2765 | } |
| 2766 | |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2767 | /* Open the image */ |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2768 | blk = img_open(image_opts, filename, NULL, bdrv_oflags, false, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2769 | if (!blk) { |
| 2770 | return 1; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2771 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2772 | bs = blk_bs(blk); |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2773 | |
| 2774 | /* Perform the requested action */ |
| 2775 | switch(action) { |
| 2776 | case SNAPSHOT_LIST: |
| 2777 | dump_snapshots(bs); |
| 2778 | break; |
| 2779 | |
| 2780 | case SNAPSHOT_CREATE: |
| 2781 | memset(&sn, 0, sizeof(sn)); |
| 2782 | pstrcpy(sn.name, sizeof(sn.name), snapshot_name); |
| 2783 | |
| 2784 | qemu_gettimeofday(&tv); |
| 2785 | sn.date_sec = tv.tv_sec; |
| 2786 | sn.date_nsec = tv.tv_usec * 1000; |
| 2787 | |
| 2788 | ret = bdrv_snapshot_create(bs, &sn); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2789 | if (ret) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2790 | error_report("Could not create snapshot '%s': %d (%s)", |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2791 | snapshot_name, ret, strerror(-ret)); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2792 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2793 | break; |
| 2794 | |
| 2795 | case SNAPSHOT_APPLY: |
| 2796 | ret = bdrv_snapshot_goto(bs, snapshot_name); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2797 | if (ret) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2798 | error_report("Could not apply snapshot '%s': %d (%s)", |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2799 | snapshot_name, ret, strerror(-ret)); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2800 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2801 | break; |
| 2802 | |
| 2803 | case SNAPSHOT_DELETE: |
Wenchao Xia | a89d89d | 2013-09-11 14:04:33 +0800 | [diff] [blame] | 2804 | bdrv_snapshot_delete_by_id_or_name(bs, snapshot_name, &err); |
Markus Armbruster | 84d18f0 | 2014-01-30 15:07:28 +0100 | [diff] [blame] | 2805 | if (err) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 2806 | error_reportf_err(err, "Could not delete snapshot '%s': ", |
| 2807 | snapshot_name); |
Wenchao Xia | a89d89d | 2013-09-11 14:04:33 +0800 | [diff] [blame] | 2808 | ret = 1; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2809 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2810 | break; |
| 2811 | } |
| 2812 | |
| 2813 | /* Cleanup */ |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2814 | blk_unref(blk); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2815 | if (ret) { |
| 2816 | return 1; |
| 2817 | } |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 2818 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 2819 | } |
| 2820 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2821 | static int img_rebase(int argc, char **argv) |
| 2822 | { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 2823 | BlockBackend *blk = NULL, *blk_old_backing = NULL, *blk_new_backing = NULL; |
Paolo Bonzini | 396374c | 2016-02-25 23:53:54 +0100 | [diff] [blame] | 2824 | uint8_t *buf_old = NULL; |
| 2825 | uint8_t *buf_new = NULL; |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 2826 | BlockDriverState *bs = NULL; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2827 | char *filename; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 2828 | const char *fmt, *cache, *src_cache, *out_basefmt, *out_baseimg; |
| 2829 | int c, flags, src_flags, ret; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2830 | bool writethrough, src_writethrough; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2831 | int unsafe = 0; |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 2832 | int progress = 0; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2833 | bool quiet = false; |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 2834 | Error *local_err = NULL; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2835 | bool image_opts = false; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2836 | |
| 2837 | /* Parse commandline parameters */ |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 2838 | fmt = NULL; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2839 | cache = BDRV_DEFAULT_CACHE; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 2840 | src_cache = BDRV_DEFAULT_CACHE; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2841 | out_baseimg = NULL; |
| 2842 | out_basefmt = NULL; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2843 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2844 | static const struct option long_options[] = { |
| 2845 | {"help", no_argument, 0, 'h'}, |
| 2846 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2847 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2848 | {0, 0, 0, 0} |
| 2849 | }; |
| 2850 | c = getopt_long(argc, argv, "hf:F:b:upt:T:q", |
| 2851 | long_options, NULL); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2852 | if (c == -1) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2853 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2854 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2855 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 2856 | case '?': |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2857 | case 'h': |
| 2858 | help(); |
| 2859 | return 0; |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 2860 | case 'f': |
| 2861 | fmt = optarg; |
| 2862 | break; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2863 | case 'F': |
| 2864 | out_basefmt = optarg; |
| 2865 | break; |
| 2866 | case 'b': |
| 2867 | out_baseimg = optarg; |
| 2868 | break; |
| 2869 | case 'u': |
| 2870 | unsafe = 1; |
| 2871 | break; |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 2872 | case 'p': |
| 2873 | progress = 1; |
| 2874 | break; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2875 | case 't': |
| 2876 | cache = optarg; |
| 2877 | break; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 2878 | case 'T': |
| 2879 | src_cache = optarg; |
| 2880 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2881 | case 'q': |
| 2882 | quiet = true; |
| 2883 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2884 | case OPTION_OBJECT: { |
| 2885 | QemuOpts *opts; |
| 2886 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 2887 | optarg, true); |
| 2888 | if (!opts) { |
| 2889 | return 1; |
| 2890 | } |
| 2891 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 2892 | case OPTION_IMAGE_OPTS: |
| 2893 | image_opts = true; |
| 2894 | break; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2895 | } |
| 2896 | } |
| 2897 | |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 2898 | if (quiet) { |
| 2899 | progress = 0; |
| 2900 | } |
| 2901 | |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 2902 | if (optind != argc - 1) { |
| 2903 | error_exit("Expecting one image file name"); |
| 2904 | } |
| 2905 | if (!unsafe && !out_baseimg) { |
| 2906 | error_exit("Must specify backing file (-b) or use unsafe mode (-u)"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 2907 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2908 | filename = argv[optind++]; |
| 2909 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2910 | if (qemu_opts_foreach(&qemu_object_opts, |
| 2911 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 2912 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 2913 | return 1; |
| 2914 | } |
| 2915 | |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 2916 | qemu_progress_init(progress, 2.0); |
| 2917 | qemu_progress_print(0, 100); |
| 2918 | |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2919 | flags = BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0); |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2920 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2921 | if (ret < 0) { |
| 2922 | error_report("Invalid cache option: %s", cache); |
Stefan Hajnoczi | 40ed35a | 2014-08-26 19:17:56 +0100 | [diff] [blame] | 2923 | goto out; |
Federico Simoncelli | 661a0f7 | 2011-06-20 12:48:19 -0400 | [diff] [blame] | 2924 | } |
| 2925 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2926 | src_flags = 0; |
| 2927 | ret = bdrv_parse_cache_mode(src_cache, &src_flags, &src_writethrough); |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 2928 | if (ret < 0) { |
| 2929 | error_report("Invalid source cache option: %s", src_cache); |
Stefan Hajnoczi | 40ed35a | 2014-08-26 19:17:56 +0100 | [diff] [blame] | 2930 | goto out; |
Max Reitz | 4005595 | 2014-07-22 22:58:42 +0200 | [diff] [blame] | 2931 | } |
| 2932 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2933 | /* The source files are opened read-only, don't care about WCE */ |
| 2934 | assert((src_flags & BDRV_O_RDWR) == 0); |
| 2935 | (void) src_writethrough; |
| 2936 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2937 | /* |
| 2938 | * Open the images. |
| 2939 | * |
| 2940 | * Ignore the old backing file for unsafe rebase in case we want to correct |
| 2941 | * the reference to a renamed or moved backing file. |
| 2942 | */ |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 2943 | blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2944 | if (!blk) { |
Stefan Hajnoczi | 40ed35a | 2014-08-26 19:17:56 +0100 | [diff] [blame] | 2945 | ret = -1; |
| 2946 | goto out; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2947 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 2948 | bs = blk_bs(blk); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2949 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2950 | if (out_basefmt != NULL) { |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2951 | if (bdrv_find_format(out_basefmt) == NULL) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 2952 | error_report("Invalid format name: '%s'", out_basefmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2953 | ret = -1; |
| 2954 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2955 | } |
| 2956 | } |
| 2957 | |
| 2958 | /* For safe rebasing we need to compare old and new backing file */ |
Stefan Hajnoczi | 40ed35a | 2014-08-26 19:17:56 +0100 | [diff] [blame] | 2959 | if (!unsafe) { |
Jeff Cody | 9a29e18 | 2015-01-22 08:03:30 -0500 | [diff] [blame] | 2960 | char backing_name[PATH_MAX]; |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2961 | QDict *options = NULL; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2962 | |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2963 | if (bs->backing_format[0] != '\0') { |
| 2964 | options = qdict_new(); |
| 2965 | qdict_put(options, "driver", qstring_from_str(bs->backing_format)); |
| 2966 | } |
| 2967 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2968 | bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name)); |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 2969 | blk_old_backing = blk_new_open(backing_name, NULL, |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2970 | options, src_flags, &local_err); |
| 2971 | if (!blk_old_backing) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 2972 | error_reportf_err(local_err, |
| 2973 | "Could not open old backing file '%s': ", |
| 2974 | backing_name); |
Xu Tian | e84a0dd | 2016-10-09 17:17:27 +0800 | [diff] [blame] | 2975 | ret = -1; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 2976 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2977 | } |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2978 | |
Alex Bligh | a616673 | 2012-10-16 13:46:18 +0100 | [diff] [blame] | 2979 | if (out_baseimg[0]) { |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2980 | if (out_basefmt) { |
| 2981 | options = qdict_new(); |
| 2982 | qdict_put(options, "driver", qstring_from_str(out_basefmt)); |
| 2983 | } else { |
| 2984 | options = NULL; |
| 2985 | } |
| 2986 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 2987 | blk_new_backing = blk_new_open(out_baseimg, NULL, |
Max Reitz | 644483d | 2015-02-05 13:58:17 -0500 | [diff] [blame] | 2988 | options, src_flags, &local_err); |
| 2989 | if (!blk_new_backing) { |
Markus Armbruster | c29b77f | 2015-12-18 16:35:14 +0100 | [diff] [blame] | 2990 | error_reportf_err(local_err, |
| 2991 | "Could not open new backing file '%s': ", |
| 2992 | out_baseimg); |
Xu Tian | e84a0dd | 2016-10-09 17:17:27 +0800 | [diff] [blame] | 2993 | ret = -1; |
Alex Bligh | a616673 | 2012-10-16 13:46:18 +0100 | [diff] [blame] | 2994 | goto out; |
| 2995 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 2996 | } |
| 2997 | } |
| 2998 | |
| 2999 | /* |
| 3000 | * Check each unallocated cluster in the COW file. If it is unallocated, |
| 3001 | * accesses go to the backing file. We must therefore compare this cluster |
| 3002 | * in the old and new backing file, and if they differ we need to copy it |
| 3003 | * from the old backing file into the COW file. |
| 3004 | * |
| 3005 | * If qemu-img crashes during this step, no harm is done. The content of |
| 3006 | * the image is the same as the original one at any time. |
| 3007 | */ |
| 3008 | if (!unsafe) { |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 3009 | int64_t num_sectors; |
| 3010 | int64_t old_backing_num_sectors; |
| 3011 | int64_t new_backing_num_sectors = 0; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3012 | uint64_t sector; |
Kevin Wolf | cc60e32 | 2010-04-29 14:47:48 +0200 | [diff] [blame] | 3013 | int n; |
Kevin Wolf | 1f71049 | 2012-10-12 14:29:18 +0200 | [diff] [blame] | 3014 | float local_progress = 0; |
TeLeMan | d6771bf | 2010-02-08 16:20:00 +0800 | [diff] [blame] | 3015 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3016 | buf_old = blk_blockalign(blk, IO_BUF_SIZE); |
| 3017 | buf_new = blk_blockalign(blk, IO_BUF_SIZE); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3018 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3019 | num_sectors = blk_nb_sectors(blk); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 3020 | if (num_sectors < 0) { |
| 3021 | error_report("Could not get size of '%s': %s", |
| 3022 | filename, strerror(-num_sectors)); |
| 3023 | ret = -1; |
| 3024 | goto out; |
| 3025 | } |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3026 | old_backing_num_sectors = blk_nb_sectors(blk_old_backing); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 3027 | if (old_backing_num_sectors < 0) { |
Jeff Cody | 9a29e18 | 2015-01-22 08:03:30 -0500 | [diff] [blame] | 3028 | char backing_name[PATH_MAX]; |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 3029 | |
| 3030 | bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name)); |
| 3031 | error_report("Could not get size of '%s': %s", |
| 3032 | backing_name, strerror(-old_backing_num_sectors)); |
| 3033 | ret = -1; |
| 3034 | goto out; |
| 3035 | } |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3036 | if (blk_new_backing) { |
| 3037 | new_backing_num_sectors = blk_nb_sectors(blk_new_backing); |
Markus Armbruster | 52bf1e7 | 2014-06-26 13:23:25 +0200 | [diff] [blame] | 3038 | if (new_backing_num_sectors < 0) { |
| 3039 | error_report("Could not get size of '%s': %s", |
| 3040 | out_baseimg, strerror(-new_backing_num_sectors)); |
| 3041 | ret = -1; |
| 3042 | goto out; |
| 3043 | } |
Alex Bligh | a616673 | 2012-10-16 13:46:18 +0100 | [diff] [blame] | 3044 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3045 | |
Kevin Wolf | 1f71049 | 2012-10-12 14:29:18 +0200 | [diff] [blame] | 3046 | if (num_sectors != 0) { |
| 3047 | local_progress = (float)100 / |
| 3048 | (num_sectors / MIN(num_sectors, IO_BUF_SIZE / 512)); |
| 3049 | } |
| 3050 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3051 | for (sector = 0; sector < num_sectors; sector += n) { |
| 3052 | |
| 3053 | /* How many sectors can we handle with the next read? */ |
| 3054 | if (sector + (IO_BUF_SIZE / 512) <= num_sectors) { |
| 3055 | n = (IO_BUF_SIZE / 512); |
| 3056 | } else { |
| 3057 | n = num_sectors - sector; |
| 3058 | } |
| 3059 | |
| 3060 | /* If the cluster is allocated, we don't need to take action */ |
Kevin Wolf | cc60e32 | 2010-04-29 14:47:48 +0200 | [diff] [blame] | 3061 | ret = bdrv_is_allocated(bs, sector, n, &n); |
Paolo Bonzini | d663640 | 2013-09-04 19:00:25 +0200 | [diff] [blame] | 3062 | if (ret < 0) { |
| 3063 | error_report("error while reading image metadata: %s", |
| 3064 | strerror(-ret)); |
| 3065 | goto out; |
| 3066 | } |
Kevin Wolf | cc60e32 | 2010-04-29 14:47:48 +0200 | [diff] [blame] | 3067 | if (ret) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3068 | continue; |
| 3069 | } |
| 3070 | |
Kevin Wolf | 87a1b3e | 2011-12-07 12:42:10 +0100 | [diff] [blame] | 3071 | /* |
| 3072 | * Read old and new backing file and take into consideration that |
| 3073 | * backing files may be smaller than the COW image. |
| 3074 | */ |
| 3075 | if (sector >= old_backing_num_sectors) { |
| 3076 | memset(buf_old, 0, n * BDRV_SECTOR_SIZE); |
| 3077 | } else { |
| 3078 | if (sector + n > old_backing_num_sectors) { |
| 3079 | n = old_backing_num_sectors - sector; |
| 3080 | } |
| 3081 | |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 3082 | ret = blk_pread(blk_old_backing, sector << BDRV_SECTOR_BITS, |
| 3083 | buf_old, n << BDRV_SECTOR_BITS); |
Kevin Wolf | 87a1b3e | 2011-12-07 12:42:10 +0100 | [diff] [blame] | 3084 | if (ret < 0) { |
| 3085 | error_report("error while reading from old backing file"); |
| 3086 | goto out; |
| 3087 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3088 | } |
Kevin Wolf | 87a1b3e | 2011-12-07 12:42:10 +0100 | [diff] [blame] | 3089 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3090 | if (sector >= new_backing_num_sectors || !blk_new_backing) { |
Kevin Wolf | 87a1b3e | 2011-12-07 12:42:10 +0100 | [diff] [blame] | 3091 | memset(buf_new, 0, n * BDRV_SECTOR_SIZE); |
| 3092 | } else { |
| 3093 | if (sector + n > new_backing_num_sectors) { |
| 3094 | n = new_backing_num_sectors - sector; |
| 3095 | } |
| 3096 | |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 3097 | ret = blk_pread(blk_new_backing, sector << BDRV_SECTOR_BITS, |
| 3098 | buf_new, n << BDRV_SECTOR_BITS); |
Kevin Wolf | 87a1b3e | 2011-12-07 12:42:10 +0100 | [diff] [blame] | 3099 | if (ret < 0) { |
| 3100 | error_report("error while reading from new backing file"); |
| 3101 | goto out; |
| 3102 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3103 | } |
| 3104 | |
| 3105 | /* If they differ, we need to write to the COW file */ |
| 3106 | uint64_t written = 0; |
| 3107 | |
| 3108 | while (written < n) { |
| 3109 | int pnum; |
| 3110 | |
| 3111 | if (compare_sectors(buf_old + written * 512, |
Kevin Wolf | 60b1bd4 | 2010-02-17 12:32:59 +0100 | [diff] [blame] | 3112 | buf_new + written * 512, n - written, &pnum)) |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3113 | { |
Eric Blake | 9166920 | 2016-05-06 10:26:43 -0600 | [diff] [blame] | 3114 | ret = blk_pwrite(blk, |
| 3115 | (sector + written) << BDRV_SECTOR_BITS, |
| 3116 | buf_old + written * 512, |
| 3117 | pnum << BDRV_SECTOR_BITS, 0); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3118 | if (ret < 0) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 3119 | error_report("Error while writing to COW image: %s", |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3120 | strerror(-ret)); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3121 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3122 | } |
| 3123 | } |
| 3124 | |
| 3125 | written += pnum; |
| 3126 | } |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 3127 | qemu_progress_print(local_progress, 100); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3128 | } |
| 3129 | } |
| 3130 | |
| 3131 | /* |
| 3132 | * Change the backing file. All clusters that are different from the old |
| 3133 | * backing file are overwritten in the COW file now, so the visible content |
| 3134 | * doesn't change when we switch the backing file. |
| 3135 | */ |
Alex Bligh | a616673 | 2012-10-16 13:46:18 +0100 | [diff] [blame] | 3136 | if (out_baseimg && *out_baseimg) { |
| 3137 | ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt); |
| 3138 | } else { |
| 3139 | ret = bdrv_change_backing_file(bs, NULL, NULL); |
| 3140 | } |
| 3141 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3142 | if (ret == -ENOSPC) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 3143 | error_report("Could not change the backing file to '%s': No " |
| 3144 | "space left in the file header", out_baseimg); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3145 | } else if (ret < 0) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 3146 | error_report("Could not change the backing file to '%s': %s", |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3147 | out_baseimg, strerror(-ret)); |
| 3148 | } |
| 3149 | |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 3150 | qemu_progress_print(100, 0); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3151 | /* |
| 3152 | * TODO At this point it is possible to check if any clusters that are |
| 3153 | * allocated in the COW file are the same in the backing file. If so, they |
| 3154 | * could be dropped from the COW file. Don't do this before switching the |
| 3155 | * backing file, in case of a crash this would lead to corruption. |
| 3156 | */ |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3157 | out: |
Jes Sorensen | 6b837bc | 2011-03-30 14:16:25 +0200 | [diff] [blame] | 3158 | qemu_progress_end(); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3159 | /* Cleanup */ |
| 3160 | if (!unsafe) { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3161 | blk_unref(blk_old_backing); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3162 | blk_unref(blk_new_backing); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3163 | } |
Paolo Bonzini | 396374c | 2016-02-25 23:53:54 +0100 | [diff] [blame] | 3164 | qemu_vfree(buf_old); |
| 3165 | qemu_vfree(buf_new); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3166 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3167 | blk_unref(blk); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3168 | if (ret) { |
| 3169 | return 1; |
| 3170 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 3171 | return 0; |
| 3172 | } |
| 3173 | |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3174 | static int img_resize(int argc, char **argv) |
| 3175 | { |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 3176 | Error *err = NULL; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3177 | int c, ret, relative; |
| 3178 | const char *filename, *fmt, *size; |
| 3179 | int64_t n, total_size; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 3180 | bool quiet = false; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3181 | BlockBackend *blk = NULL; |
Dong Xu Wang | 20caf0f | 2012-08-06 10:18:42 +0800 | [diff] [blame] | 3182 | QemuOpts *param; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3183 | |
Dong Xu Wang | 20caf0f | 2012-08-06 10:18:42 +0800 | [diff] [blame] | 3184 | static QemuOptsList resize_options = { |
| 3185 | .name = "resize_options", |
| 3186 | .head = QTAILQ_HEAD_INITIALIZER(resize_options.head), |
| 3187 | .desc = { |
| 3188 | { |
| 3189 | .name = BLOCK_OPT_SIZE, |
| 3190 | .type = QEMU_OPT_SIZE, |
| 3191 | .help = "Virtual disk size" |
| 3192 | }, { |
| 3193 | /* end of list */ |
| 3194 | } |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3195 | }, |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3196 | }; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3197 | bool image_opts = false; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3198 | |
Kevin Wolf | e80fec7 | 2011-04-29 10:58:12 +0200 | [diff] [blame] | 3199 | /* Remove size from argv manually so that negative numbers are not treated |
| 3200 | * as options by getopt. */ |
| 3201 | if (argc < 3) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 3202 | error_exit("Not enough arguments"); |
Kevin Wolf | e80fec7 | 2011-04-29 10:58:12 +0200 | [diff] [blame] | 3203 | return 1; |
| 3204 | } |
| 3205 | |
| 3206 | size = argv[--argc]; |
| 3207 | |
| 3208 | /* Parse getopt arguments */ |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3209 | fmt = NULL; |
| 3210 | for(;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3211 | static const struct option long_options[] = { |
| 3212 | {"help", no_argument, 0, 'h'}, |
| 3213 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3214 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3215 | {0, 0, 0, 0} |
| 3216 | }; |
| 3217 | c = getopt_long(argc, argv, "f:hq", |
| 3218 | long_options, NULL); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3219 | if (c == -1) { |
| 3220 | break; |
| 3221 | } |
| 3222 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame] | 3223 | case '?': |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3224 | case 'h': |
| 3225 | help(); |
| 3226 | break; |
| 3227 | case 'f': |
| 3228 | fmt = optarg; |
| 3229 | break; |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 3230 | case 'q': |
| 3231 | quiet = true; |
| 3232 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3233 | case OPTION_OBJECT: { |
| 3234 | QemuOpts *opts; |
| 3235 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 3236 | optarg, true); |
| 3237 | if (!opts) { |
| 3238 | return 1; |
| 3239 | } |
| 3240 | } break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3241 | case OPTION_IMAGE_OPTS: |
| 3242 | image_opts = true; |
| 3243 | break; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3244 | } |
| 3245 | } |
Kevin Wolf | fc11eb2 | 2013-08-05 10:53:04 +0200 | [diff] [blame] | 3246 | if (optind != argc - 1) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 3247 | error_exit("Expecting one image file name"); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3248 | } |
| 3249 | filename = argv[optind++]; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3250 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3251 | if (qemu_opts_foreach(&qemu_object_opts, |
| 3252 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 3253 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3254 | return 1; |
| 3255 | } |
| 3256 | |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3257 | /* Choose grow, shrink, or absolute resize mode */ |
| 3258 | switch (size[0]) { |
| 3259 | case '+': |
| 3260 | relative = 1; |
| 3261 | size++; |
| 3262 | break; |
| 3263 | case '-': |
| 3264 | relative = -1; |
| 3265 | size++; |
| 3266 | break; |
| 3267 | default: |
| 3268 | relative = 0; |
| 3269 | break; |
| 3270 | } |
| 3271 | |
| 3272 | /* Parse size */ |
Peter Crosthwaite | 87ea75d | 2014-01-01 18:49:17 -0800 | [diff] [blame] | 3273 | param = qemu_opts_create(&resize_options, NULL, 0, &error_abort); |
Markus Armbruster | f43e47d | 2015-02-12 17:52:20 +0100 | [diff] [blame] | 3274 | qemu_opt_set(param, BLOCK_OPT_SIZE, size, &err); |
Markus Armbruster | 6750e79 | 2015-02-12 17:43:08 +0100 | [diff] [blame] | 3275 | if (err) { |
| 3276 | error_report_err(err); |
Jes Sorensen | 2a81998 | 2010-12-06 17:08:31 +0100 | [diff] [blame] | 3277 | ret = -1; |
Dong Xu Wang | 20caf0f | 2012-08-06 10:18:42 +0800 | [diff] [blame] | 3278 | qemu_opts_del(param); |
Jes Sorensen | 2a81998 | 2010-12-06 17:08:31 +0100 | [diff] [blame] | 3279 | goto out; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3280 | } |
Dong Xu Wang | 20caf0f | 2012-08-06 10:18:42 +0800 | [diff] [blame] | 3281 | n = qemu_opt_get_size(param, BLOCK_OPT_SIZE, 0); |
| 3282 | qemu_opts_del(param); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3283 | |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 3284 | blk = img_open(image_opts, filename, fmt, |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 3285 | BDRV_O_RDWR, false, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 3286 | if (!blk) { |
Jes Sorensen | 2a81998 | 2010-12-06 17:08:31 +0100 | [diff] [blame] | 3287 | ret = -1; |
| 3288 | goto out; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3289 | } |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3290 | |
| 3291 | if (relative) { |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3292 | total_size = blk_getlength(blk) + n * relative; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3293 | } else { |
| 3294 | total_size = n; |
| 3295 | } |
| 3296 | if (total_size <= 0) { |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 3297 | error_report("New image size must be positive"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3298 | ret = -1; |
| 3299 | goto out; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3300 | } |
| 3301 | |
Max Reitz | f1d3cd7 | 2015-02-05 13:58:18 -0500 | [diff] [blame] | 3302 | ret = blk_truncate(blk, total_size); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3303 | switch (ret) { |
| 3304 | case 0: |
Miroslav Rezanina | f382d43 | 2013-02-13 09:09:40 +0100 | [diff] [blame] | 3305 | qprintf(quiet, "Image resized.\n"); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3306 | break; |
| 3307 | case -ENOTSUP: |
Kevin Wolf | 259b217 | 2012-03-06 12:44:45 +0100 | [diff] [blame] | 3308 | error_report("This image does not support resize"); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3309 | break; |
| 3310 | case -EACCES: |
Jes Sorensen | 15654a6 | 2010-12-16 14:31:53 +0100 | [diff] [blame] | 3311 | error_report("Image is read-only"); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3312 | break; |
| 3313 | default: |
Max Reitz | bcf2348 | 2016-06-15 17:36:29 +0200 | [diff] [blame] | 3314 | error_report("Error resizing image: %s", strerror(-ret)); |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3315 | break; |
| 3316 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3317 | out: |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3318 | blk_unref(blk); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 3319 | if (ret) { |
| 3320 | return 1; |
| 3321 | } |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 3322 | return 0; |
| 3323 | } |
| 3324 | |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3325 | static void amend_status_cb(BlockDriverState *bs, |
Max Reitz | 8b13976 | 2015-07-27 17:51:32 +0200 | [diff] [blame] | 3326 | int64_t offset, int64_t total_work_size, |
| 3327 | void *opaque) |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3328 | { |
| 3329 | qemu_progress_print(100.f * offset / total_work_size, 0); |
| 3330 | } |
| 3331 | |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3332 | static int img_amend(int argc, char **argv) |
| 3333 | { |
Markus Armbruster | dc523cd34 | 2015-02-12 18:37:11 +0100 | [diff] [blame] | 3334 | Error *err = NULL; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3335 | int c, ret = 0; |
| 3336 | char *options = NULL; |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3337 | QemuOptsList *create_opts = NULL; |
| 3338 | QemuOpts *opts = NULL; |
Max Reitz | bd39e6e | 2014-07-22 22:58:43 +0200 | [diff] [blame] | 3339 | const char *fmt = NULL, *filename, *cache; |
| 3340 | int flags; |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 3341 | bool writethrough; |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3342 | bool quiet = false, progress = false; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3343 | BlockBackend *blk = NULL; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3344 | BlockDriverState *bs = NULL; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3345 | bool image_opts = false; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3346 | |
Max Reitz | bd39e6e | 2014-07-22 22:58:43 +0200 | [diff] [blame] | 3347 | cache = BDRV_DEFAULT_CACHE; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3348 | for (;;) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3349 | static const struct option long_options[] = { |
| 3350 | {"help", no_argument, 0, 'h'}, |
| 3351 | {"object", required_argument, 0, OPTION_OBJECT}, |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3352 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3353 | {0, 0, 0, 0} |
| 3354 | }; |
| 3355 | c = getopt_long(argc, argv, "ho:f:t:pq", |
| 3356 | long_options, NULL); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3357 | if (c == -1) { |
| 3358 | break; |
| 3359 | } |
| 3360 | |
| 3361 | switch (c) { |
| 3362 | case 'h': |
| 3363 | case '?': |
| 3364 | help(); |
| 3365 | break; |
| 3366 | case 'o': |
Kevin Wolf | 626f84f | 2014-02-21 16:24:06 +0100 | [diff] [blame] | 3367 | if (!is_valid_option_list(optarg)) { |
| 3368 | error_report("Invalid option list: %s", optarg); |
| 3369 | ret = -1; |
Max Reitz | e814dff | 2015-08-20 16:00:38 -0700 | [diff] [blame] | 3370 | goto out_no_progress; |
Kevin Wolf | 626f84f | 2014-02-21 16:24:06 +0100 | [diff] [blame] | 3371 | } |
| 3372 | if (!options) { |
| 3373 | options = g_strdup(optarg); |
| 3374 | } else { |
| 3375 | char *old_options = options; |
| 3376 | options = g_strdup_printf("%s,%s", options, optarg); |
| 3377 | g_free(old_options); |
| 3378 | } |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3379 | break; |
| 3380 | case 'f': |
| 3381 | fmt = optarg; |
| 3382 | break; |
Max Reitz | bd39e6e | 2014-07-22 22:58:43 +0200 | [diff] [blame] | 3383 | case 't': |
| 3384 | cache = optarg; |
| 3385 | break; |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3386 | case 'p': |
| 3387 | progress = true; |
| 3388 | break; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3389 | case 'q': |
| 3390 | quiet = true; |
| 3391 | break; |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3392 | case OPTION_OBJECT: |
| 3393 | opts = qemu_opts_parse_noisily(&qemu_object_opts, |
| 3394 | optarg, true); |
| 3395 | if (!opts) { |
| 3396 | ret = -1; |
| 3397 | goto out_no_progress; |
| 3398 | } |
| 3399 | break; |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 3400 | case OPTION_IMAGE_OPTS: |
| 3401 | image_opts = true; |
| 3402 | break; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3403 | } |
| 3404 | } |
| 3405 | |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3406 | if (!options) { |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 3407 | error_exit("Must specify options (-o)"); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3408 | } |
| 3409 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3410 | if (qemu_opts_foreach(&qemu_object_opts, |
| 3411 | user_creatable_add_opts_foreach, |
Markus Armbruster | 51b9b47 | 2016-04-27 16:29:09 +0200 | [diff] [blame] | 3412 | NULL, NULL)) { |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 3413 | ret = -1; |
| 3414 | goto out_no_progress; |
| 3415 | } |
| 3416 | |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3417 | if (quiet) { |
| 3418 | progress = false; |
| 3419 | } |
| 3420 | qemu_progress_init(progress, 1.0); |
| 3421 | |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 3422 | filename = (optind == argc - 1) ? argv[argc - 1] : NULL; |
| 3423 | if (fmt && has_help_option(options)) { |
| 3424 | /* If a format is explicitly specified (and possibly no filename is |
| 3425 | * given), print option help here */ |
| 3426 | ret = print_block_option_help(filename, fmt); |
| 3427 | goto out; |
| 3428 | } |
| 3429 | |
| 3430 | if (optind != argc - 1) { |
Max Reitz | b2f27e4 | 2014-10-27 11:12:52 +0100 | [diff] [blame] | 3431 | error_report("Expecting one image file name"); |
| 3432 | ret = -1; |
| 3433 | goto out; |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 3434 | } |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3435 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 3436 | flags = BDRV_O_RDWR; |
| 3437 | ret = bdrv_parse_cache_mode(cache, &flags, &writethrough); |
Max Reitz | bd39e6e | 2014-07-22 22:58:43 +0200 | [diff] [blame] | 3438 | if (ret < 0) { |
| 3439 | error_report("Invalid cache option: %s", cache); |
| 3440 | goto out; |
| 3441 | } |
| 3442 | |
Kevin Wolf | ce09954 | 2016-03-15 13:01:04 +0100 | [diff] [blame] | 3443 | blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 3444 | if (!blk) { |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3445 | ret = -1; |
| 3446 | goto out; |
| 3447 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 3448 | bs = blk_bs(blk); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3449 | |
| 3450 | fmt = bs->drv->format_name; |
| 3451 | |
Kevin Wolf | 626f84f | 2014-02-21 16:24:06 +0100 | [diff] [blame] | 3452 | if (has_help_option(options)) { |
Kevin Wolf | a283cb6 | 2014-02-21 16:24:07 +0100 | [diff] [blame] | 3453 | /* If the format was auto-detected, print option help here */ |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3454 | ret = print_block_option_help(filename, fmt); |
| 3455 | goto out; |
| 3456 | } |
| 3457 | |
Max Reitz | b2439d2 | 2014-12-02 18:32:47 +0100 | [diff] [blame] | 3458 | if (!bs->drv->create_opts) { |
| 3459 | error_report("Format driver '%s' does not support any options to amend", |
| 3460 | fmt); |
| 3461 | ret = -1; |
| 3462 | goto out; |
| 3463 | } |
| 3464 | |
Chunyan Liu | c282e1f | 2014-06-05 17:21:11 +0800 | [diff] [blame] | 3465 | create_opts = qemu_opts_append(create_opts, bs->drv->create_opts); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3466 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
Paolo Bonzini | ece9086 | 2017-01-04 15:56:24 +0100 | [diff] [blame] | 3467 | qemu_opts_do_parse(opts, options, NULL, &err); |
| 3468 | if (err) { |
| 3469 | error_report_err(err); |
| 3470 | ret = -1; |
| 3471 | goto out; |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3472 | } |
| 3473 | |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3474 | /* In case the driver does not call amend_status_cb() */ |
| 3475 | qemu_progress_print(0.f, 0); |
Max Reitz | 8b13976 | 2015-07-27 17:51:32 +0200 | [diff] [blame] | 3476 | ret = bdrv_amend_options(bs, opts, &amend_status_cb, NULL); |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3477 | qemu_progress_print(100.f, 0); |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3478 | if (ret < 0) { |
| 3479 | error_report("Error while amending options: %s", strerror(-ret)); |
| 3480 | goto out; |
| 3481 | } |
| 3482 | |
| 3483 | out: |
Max Reitz | 76a3a34 | 2014-10-27 11:12:51 +0100 | [diff] [blame] | 3484 | qemu_progress_end(); |
| 3485 | |
Max Reitz | e814dff | 2015-08-20 16:00:38 -0700 | [diff] [blame] | 3486 | out_no_progress: |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 3487 | blk_unref(blk); |
Chunyan Liu | 83d0521 | 2014-06-05 17:20:51 +0800 | [diff] [blame] | 3488 | qemu_opts_del(opts); |
| 3489 | qemu_opts_free(create_opts); |
Kevin Wolf | 626f84f | 2014-02-21 16:24:06 +0100 | [diff] [blame] | 3490 | g_free(options); |
| 3491 | |
Max Reitz | 6f176b4 | 2013-09-03 10:09:50 +0200 | [diff] [blame] | 3492 | if (ret) { |
| 3493 | return 1; |
| 3494 | } |
| 3495 | return 0; |
| 3496 | } |
| 3497 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3498 | typedef struct BenchData { |
| 3499 | BlockBackend *blk; |
| 3500 | uint64_t image_size; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3501 | bool write; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3502 | int bufsize; |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3503 | int step; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3504 | int nrreq; |
| 3505 | int n; |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3506 | int flush_interval; |
| 3507 | bool drain_on_flush; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3508 | uint8_t *buf; |
| 3509 | QEMUIOVector *qiov; |
| 3510 | |
| 3511 | int in_flight; |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3512 | bool in_flush; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3513 | uint64_t offset; |
| 3514 | } BenchData; |
| 3515 | |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3516 | static void bench_undrained_flush_cb(void *opaque, int ret) |
| 3517 | { |
| 3518 | if (ret < 0) { |
Markus Armbruster | df3c286 | 2016-08-03 13:37:51 +0200 | [diff] [blame] | 3519 | error_report("Failed flush request: %s", strerror(-ret)); |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3520 | exit(EXIT_FAILURE); |
| 3521 | } |
| 3522 | } |
| 3523 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3524 | static void bench_cb(void *opaque, int ret) |
| 3525 | { |
| 3526 | BenchData *b = opaque; |
| 3527 | BlockAIOCB *acb; |
| 3528 | |
| 3529 | if (ret < 0) { |
Markus Armbruster | df3c286 | 2016-08-03 13:37:51 +0200 | [diff] [blame] | 3530 | error_report("Failed request: %s", strerror(-ret)); |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3531 | exit(EXIT_FAILURE); |
| 3532 | } |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3533 | |
| 3534 | if (b->in_flush) { |
| 3535 | /* Just finished a flush with drained queue: Start next requests */ |
| 3536 | assert(b->in_flight == 0); |
| 3537 | b->in_flush = false; |
| 3538 | } else if (b->in_flight > 0) { |
| 3539 | int remaining = b->n - b->in_flight; |
| 3540 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3541 | b->n--; |
| 3542 | b->in_flight--; |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3543 | |
| 3544 | /* Time for flush? Drain queue if requested, then flush */ |
| 3545 | if (b->flush_interval && remaining % b->flush_interval == 0) { |
| 3546 | if (!b->in_flight || !b->drain_on_flush) { |
| 3547 | BlockCompletionFunc *cb; |
| 3548 | |
| 3549 | if (b->drain_on_flush) { |
| 3550 | b->in_flush = true; |
| 3551 | cb = bench_cb; |
| 3552 | } else { |
| 3553 | cb = bench_undrained_flush_cb; |
| 3554 | } |
| 3555 | |
| 3556 | acb = blk_aio_flush(b->blk, cb, b); |
| 3557 | if (!acb) { |
| 3558 | error_report("Failed to issue flush request"); |
| 3559 | exit(EXIT_FAILURE); |
| 3560 | } |
| 3561 | } |
| 3562 | if (b->drain_on_flush) { |
| 3563 | return; |
| 3564 | } |
| 3565 | } |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3566 | } |
| 3567 | |
| 3568 | while (b->n > b->in_flight && b->in_flight < b->nrreq) { |
Paolo Bonzini | 4baaa8c | 2016-12-07 16:08:27 +0100 | [diff] [blame] | 3569 | int64_t offset = b->offset; |
| 3570 | /* blk_aio_* might look for completed I/Os and kick bench_cb |
| 3571 | * again, so make sure this operation is counted by in_flight |
| 3572 | * and b->offset is ready for the next submission. |
| 3573 | */ |
| 3574 | b->in_flight++; |
| 3575 | b->offset += b->step; |
| 3576 | b->offset %= b->image_size; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3577 | if (b->write) { |
Paolo Bonzini | 4baaa8c | 2016-12-07 16:08:27 +0100 | [diff] [blame] | 3578 | acb = blk_aio_pwritev(b->blk, offset, b->qiov, 0, bench_cb, b); |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3579 | } else { |
Paolo Bonzini | 4baaa8c | 2016-12-07 16:08:27 +0100 | [diff] [blame] | 3580 | acb = blk_aio_preadv(b->blk, offset, b->qiov, 0, bench_cb, b); |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3581 | } |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3582 | if (!acb) { |
| 3583 | error_report("Failed to issue request"); |
| 3584 | exit(EXIT_FAILURE); |
| 3585 | } |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3586 | } |
| 3587 | } |
| 3588 | |
| 3589 | static int img_bench(int argc, char **argv) |
| 3590 | { |
| 3591 | int c, ret = 0; |
| 3592 | const char *fmt = NULL, *filename; |
| 3593 | bool quiet = false; |
| 3594 | bool image_opts = false; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3595 | bool is_write = false; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3596 | int count = 75000; |
| 3597 | int depth = 64; |
Kevin Wolf | d3199a3 | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3598 | int64_t offset = 0; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3599 | size_t bufsize = 4096; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3600 | int pattern = 0; |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3601 | size_t step = 0; |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3602 | int flush_interval = 0; |
| 3603 | bool drain_on_flush = true; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3604 | int64_t image_size; |
| 3605 | BlockBackend *blk = NULL; |
| 3606 | BenchData data = {}; |
| 3607 | int flags = 0; |
Kevin Wolf | 604e861 | 2016-06-14 11:29:32 +0200 | [diff] [blame] | 3608 | bool writethrough = false; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3609 | struct timeval t1, t2; |
| 3610 | int i; |
| 3611 | |
| 3612 | for (;;) { |
| 3613 | static const struct option long_options[] = { |
| 3614 | {"help", no_argument, 0, 'h'}, |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3615 | {"flush-interval", required_argument, 0, OPTION_FLUSH_INTERVAL}, |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3616 | {"image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3617 | {"pattern", required_argument, 0, OPTION_PATTERN}, |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3618 | {"no-drain", no_argument, 0, OPTION_NO_DRAIN}, |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3619 | {0, 0, 0, 0} |
| 3620 | }; |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3621 | c = getopt_long(argc, argv, "hc:d:f:no:qs:S:t:w", long_options, NULL); |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3622 | if (c == -1) { |
| 3623 | break; |
| 3624 | } |
| 3625 | |
| 3626 | switch (c) { |
| 3627 | case 'h': |
| 3628 | case '?': |
| 3629 | help(); |
| 3630 | break; |
| 3631 | case 'c': |
| 3632 | { |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3633 | unsigned long res; |
| 3634 | |
| 3635 | if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) { |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3636 | error_report("Invalid request count specified"); |
| 3637 | return 1; |
| 3638 | } |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3639 | count = res; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3640 | break; |
| 3641 | } |
| 3642 | case 'd': |
| 3643 | { |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3644 | unsigned long res; |
| 3645 | |
| 3646 | if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) { |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3647 | error_report("Invalid queue depth specified"); |
| 3648 | return 1; |
| 3649 | } |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3650 | depth = res; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3651 | break; |
| 3652 | } |
| 3653 | case 'f': |
| 3654 | fmt = optarg; |
| 3655 | break; |
| 3656 | case 'n': |
| 3657 | flags |= BDRV_O_NATIVE_AIO; |
| 3658 | break; |
Kevin Wolf | d3199a3 | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3659 | case 'o': |
| 3660 | { |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3661 | offset = cvtnum(optarg); |
| 3662 | if (offset < 0) { |
Kevin Wolf | d3199a3 | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3663 | error_report("Invalid offset specified"); |
| 3664 | return 1; |
| 3665 | } |
| 3666 | break; |
| 3667 | } |
| 3668 | break; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3669 | case 'q': |
| 3670 | quiet = true; |
| 3671 | break; |
| 3672 | case 's': |
| 3673 | { |
| 3674 | int64_t sval; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3675 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3676 | sval = cvtnum(optarg); |
| 3677 | if (sval < 0 || sval > INT_MAX) { |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3678 | error_report("Invalid buffer size specified"); |
| 3679 | return 1; |
| 3680 | } |
| 3681 | |
| 3682 | bufsize = sval; |
| 3683 | break; |
| 3684 | } |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3685 | case 'S': |
| 3686 | { |
| 3687 | int64_t sval; |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3688 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3689 | sval = cvtnum(optarg); |
| 3690 | if (sval < 0 || sval > INT_MAX) { |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3691 | error_report("Invalid step size specified"); |
| 3692 | return 1; |
| 3693 | } |
| 3694 | |
| 3695 | step = sval; |
| 3696 | break; |
| 3697 | } |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3698 | case 't': |
| 3699 | ret = bdrv_parse_cache_mode(optarg, &flags, &writethrough); |
| 3700 | if (ret < 0) { |
| 3701 | error_report("Invalid cache mode"); |
| 3702 | ret = -1; |
| 3703 | goto out; |
| 3704 | } |
| 3705 | break; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3706 | case 'w': |
| 3707 | flags |= BDRV_O_RDWR; |
| 3708 | is_write = true; |
| 3709 | break; |
| 3710 | case OPTION_PATTERN: |
| 3711 | { |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3712 | unsigned long res; |
| 3713 | |
| 3714 | if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > 0xff) { |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3715 | error_report("Invalid pattern byte specified"); |
| 3716 | return 1; |
| 3717 | } |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3718 | pattern = res; |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3719 | break; |
| 3720 | } |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3721 | case OPTION_FLUSH_INTERVAL: |
| 3722 | { |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3723 | unsigned long res; |
| 3724 | |
| 3725 | if (qemu_strtoul(optarg, NULL, 0, &res) < 0 || res > INT_MAX) { |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3726 | error_report("Invalid flush interval specified"); |
| 3727 | return 1; |
| 3728 | } |
Peter Maydell | 8b3c679 | 2017-02-10 16:28:23 +0000 | [diff] [blame] | 3729 | flush_interval = res; |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3730 | break; |
| 3731 | } |
| 3732 | case OPTION_NO_DRAIN: |
| 3733 | drain_on_flush = false; |
| 3734 | break; |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3735 | case OPTION_IMAGE_OPTS: |
| 3736 | image_opts = true; |
| 3737 | break; |
| 3738 | } |
| 3739 | } |
| 3740 | |
| 3741 | if (optind != argc - 1) { |
| 3742 | error_exit("Expecting one image file name"); |
| 3743 | } |
| 3744 | filename = argv[argc - 1]; |
| 3745 | |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3746 | if (!is_write && flush_interval) { |
| 3747 | error_report("--flush-interval is only available in write tests"); |
| 3748 | ret = -1; |
| 3749 | goto out; |
| 3750 | } |
| 3751 | if (flush_interval && flush_interval < depth) { |
| 3752 | error_report("Flush interval can't be smaller than depth"); |
| 3753 | ret = -1; |
| 3754 | goto out; |
| 3755 | } |
| 3756 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3757 | blk = img_open(image_opts, filename, fmt, flags, writethrough, quiet); |
| 3758 | if (!blk) { |
| 3759 | ret = -1; |
| 3760 | goto out; |
| 3761 | } |
| 3762 | |
| 3763 | image_size = blk_getlength(blk); |
| 3764 | if (image_size < 0) { |
| 3765 | ret = image_size; |
| 3766 | goto out; |
| 3767 | } |
| 3768 | |
| 3769 | data = (BenchData) { |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3770 | .blk = blk, |
| 3771 | .image_size = image_size, |
| 3772 | .bufsize = bufsize, |
| 3773 | .step = step ?: bufsize, |
| 3774 | .nrreq = depth, |
| 3775 | .n = count, |
| 3776 | .offset = offset, |
| 3777 | .write = is_write, |
| 3778 | .flush_interval = flush_interval, |
| 3779 | .drain_on_flush = drain_on_flush, |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3780 | }; |
Kevin Wolf | d3199a3 | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3781 | printf("Sending %d %s requests, %d bytes each, %d in parallel " |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3782 | "(starting at offset %" PRId64 ", step size %d)\n", |
Kevin Wolf | d3199a3 | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3783 | data.n, data.write ? "write" : "read", data.bufsize, data.nrreq, |
Kevin Wolf | 83de9be | 2015-07-13 13:13:17 +0200 | [diff] [blame] | 3784 | data.offset, data.step); |
Kevin Wolf | 55d539c | 2016-06-03 13:59:41 +0200 | [diff] [blame] | 3785 | if (flush_interval) { |
| 3786 | printf("Sending flush every %d requests\n", flush_interval); |
| 3787 | } |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3788 | |
| 3789 | data.buf = blk_blockalign(blk, data.nrreq * data.bufsize); |
Kevin Wolf | b6495fa | 2015-07-10 18:09:18 +0200 | [diff] [blame] | 3790 | memset(data.buf, pattern, data.nrreq * data.bufsize); |
| 3791 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 3792 | data.qiov = g_new(QEMUIOVector, data.nrreq); |
| 3793 | for (i = 0; i < data.nrreq; i++) { |
| 3794 | qemu_iovec_init(&data.qiov[i], 1); |
| 3795 | qemu_iovec_add(&data.qiov[i], |
| 3796 | data.buf + i * data.bufsize, data.bufsize); |
| 3797 | } |
| 3798 | |
| 3799 | gettimeofday(&t1, NULL); |
| 3800 | bench_cb(&data, 0); |
| 3801 | |
| 3802 | while (data.n > 0) { |
| 3803 | main_loop_wait(false); |
| 3804 | } |
| 3805 | gettimeofday(&t2, NULL); |
| 3806 | |
| 3807 | printf("Run completed in %3.3f seconds.\n", |
| 3808 | (t2.tv_sec - t1.tv_sec) |
| 3809 | + ((double)(t2.tv_usec - t1.tv_usec) / 1000000)); |
| 3810 | |
| 3811 | out: |
| 3812 | qemu_vfree(data.buf); |
| 3813 | blk_unref(blk); |
| 3814 | |
| 3815 | if (ret) { |
| 3816 | return 1; |
| 3817 | } |
| 3818 | return 0; |
| 3819 | } |
| 3820 | |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3821 | #define C_BS 01 |
| 3822 | #define C_COUNT 02 |
| 3823 | #define C_IF 04 |
| 3824 | #define C_OF 010 |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3825 | #define C_SKIP 020 |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3826 | |
| 3827 | struct DdInfo { |
| 3828 | unsigned int flags; |
| 3829 | int64_t count; |
| 3830 | }; |
| 3831 | |
| 3832 | struct DdIo { |
| 3833 | int bsz; /* Block size */ |
| 3834 | char *filename; |
| 3835 | uint8_t *buf; |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3836 | int64_t offset; |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3837 | }; |
| 3838 | |
| 3839 | struct DdOpts { |
| 3840 | const char *name; |
| 3841 | int (*f)(const char *, struct DdIo *, struct DdIo *, struct DdInfo *); |
| 3842 | unsigned int flag; |
| 3843 | }; |
| 3844 | |
| 3845 | static int img_dd_bs(const char *arg, |
| 3846 | struct DdIo *in, struct DdIo *out, |
| 3847 | struct DdInfo *dd) |
| 3848 | { |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3849 | int64_t res; |
| 3850 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3851 | res = cvtnum(arg); |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3852 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3853 | if (res <= 0 || res > INT_MAX) { |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3854 | error_report("invalid number: '%s'", arg); |
| 3855 | return 1; |
| 3856 | } |
| 3857 | in->bsz = out->bsz = res; |
| 3858 | |
| 3859 | return 0; |
| 3860 | } |
| 3861 | |
| 3862 | static int img_dd_count(const char *arg, |
| 3863 | struct DdIo *in, struct DdIo *out, |
| 3864 | struct DdInfo *dd) |
| 3865 | { |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3866 | dd->count = cvtnum(arg); |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3867 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3868 | if (dd->count < 0) { |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3869 | error_report("invalid number: '%s'", arg); |
| 3870 | return 1; |
| 3871 | } |
| 3872 | |
| 3873 | return 0; |
| 3874 | } |
| 3875 | |
| 3876 | static int img_dd_if(const char *arg, |
| 3877 | struct DdIo *in, struct DdIo *out, |
| 3878 | struct DdInfo *dd) |
| 3879 | { |
| 3880 | in->filename = g_strdup(arg); |
| 3881 | |
| 3882 | return 0; |
| 3883 | } |
| 3884 | |
| 3885 | static int img_dd_of(const char *arg, |
| 3886 | struct DdIo *in, struct DdIo *out, |
| 3887 | struct DdInfo *dd) |
| 3888 | { |
| 3889 | out->filename = g_strdup(arg); |
| 3890 | |
| 3891 | return 0; |
| 3892 | } |
| 3893 | |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3894 | static int img_dd_skip(const char *arg, |
| 3895 | struct DdIo *in, struct DdIo *out, |
| 3896 | struct DdInfo *dd) |
| 3897 | { |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3898 | in->offset = cvtnum(arg); |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3899 | |
Markus Armbruster | 606caa0 | 2017-02-21 21:14:04 +0100 | [diff] [blame] | 3900 | if (in->offset < 0) { |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3901 | error_report("invalid number: '%s'", arg); |
| 3902 | return 1; |
| 3903 | } |
| 3904 | |
| 3905 | return 0; |
| 3906 | } |
| 3907 | |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3908 | static int img_dd(int argc, char **argv) |
| 3909 | { |
| 3910 | int ret = 0; |
| 3911 | char *arg = NULL; |
| 3912 | char *tmp; |
| 3913 | BlockDriver *drv = NULL, *proto_drv = NULL; |
| 3914 | BlockBackend *blk1 = NULL, *blk2 = NULL; |
| 3915 | QemuOpts *opts = NULL; |
| 3916 | QemuOptsList *create_opts = NULL; |
| 3917 | Error *local_err = NULL; |
| 3918 | bool image_opts = false; |
| 3919 | int c, i; |
| 3920 | const char *out_fmt = "raw"; |
| 3921 | const char *fmt = NULL; |
| 3922 | int64_t size = 0; |
| 3923 | int64_t block_count = 0, out_pos, in_pos; |
| 3924 | struct DdInfo dd = { |
| 3925 | .flags = 0, |
| 3926 | .count = 0, |
| 3927 | }; |
| 3928 | struct DdIo in = { |
| 3929 | .bsz = 512, /* Block size is by default 512 bytes */ |
| 3930 | .filename = NULL, |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3931 | .buf = NULL, |
| 3932 | .offset = 0 |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3933 | }; |
| 3934 | struct DdIo out = { |
| 3935 | .bsz = 512, |
| 3936 | .filename = NULL, |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3937 | .buf = NULL, |
| 3938 | .offset = 0 |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3939 | }; |
| 3940 | |
| 3941 | const struct DdOpts options[] = { |
| 3942 | { "bs", img_dd_bs, C_BS }, |
| 3943 | { "count", img_dd_count, C_COUNT }, |
| 3944 | { "if", img_dd_if, C_IF }, |
| 3945 | { "of", img_dd_of, C_OF }, |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 3946 | { "skip", img_dd_skip, C_SKIP }, |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 3947 | { NULL, NULL, 0 } |
| 3948 | }; |
| 3949 | const struct option long_options[] = { |
| 3950 | { "help", no_argument, 0, 'h'}, |
| 3951 | { "image-opts", no_argument, 0, OPTION_IMAGE_OPTS}, |
| 3952 | { 0, 0, 0, 0 } |
| 3953 | }; |
| 3954 | |
| 3955 | while ((c = getopt_long(argc, argv, "hf:O:", long_options, NULL))) { |
| 3956 | if (c == EOF) { |
| 3957 | break; |
| 3958 | } |
| 3959 | switch (c) { |
| 3960 | case 'O': |
| 3961 | out_fmt = optarg; |
| 3962 | break; |
| 3963 | case 'f': |
| 3964 | fmt = optarg; |
| 3965 | break; |
| 3966 | case '?': |
| 3967 | error_report("Try 'qemu-img --help' for more information."); |
| 3968 | ret = -1; |
| 3969 | goto out; |
| 3970 | case 'h': |
| 3971 | help(); |
| 3972 | break; |
| 3973 | case OPTION_IMAGE_OPTS: |
| 3974 | image_opts = true; |
| 3975 | break; |
| 3976 | } |
| 3977 | } |
| 3978 | |
| 3979 | for (i = optind; i < argc; i++) { |
| 3980 | int j; |
| 3981 | arg = g_strdup(argv[i]); |
| 3982 | |
| 3983 | tmp = strchr(arg, '='); |
| 3984 | if (tmp == NULL) { |
| 3985 | error_report("unrecognized operand %s", arg); |
| 3986 | ret = -1; |
| 3987 | goto out; |
| 3988 | } |
| 3989 | |
| 3990 | *tmp++ = '\0'; |
| 3991 | |
| 3992 | for (j = 0; options[j].name != NULL; j++) { |
| 3993 | if (!strcmp(arg, options[j].name)) { |
| 3994 | break; |
| 3995 | } |
| 3996 | } |
| 3997 | if (options[j].name == NULL) { |
| 3998 | error_report("unrecognized operand %s", arg); |
| 3999 | ret = -1; |
| 4000 | goto out; |
| 4001 | } |
| 4002 | |
| 4003 | if (options[j].f(tmp, &in, &out, &dd) != 0) { |
| 4004 | ret = -1; |
| 4005 | goto out; |
| 4006 | } |
| 4007 | dd.flags |= options[j].flag; |
| 4008 | g_free(arg); |
| 4009 | arg = NULL; |
| 4010 | } |
| 4011 | |
| 4012 | if (!(dd.flags & C_IF && dd.flags & C_OF)) { |
| 4013 | error_report("Must specify both input and output files"); |
| 4014 | ret = -1; |
| 4015 | goto out; |
| 4016 | } |
| 4017 | blk1 = img_open(image_opts, in.filename, fmt, 0, false, false); |
| 4018 | |
| 4019 | if (!blk1) { |
| 4020 | ret = -1; |
| 4021 | goto out; |
| 4022 | } |
| 4023 | |
| 4024 | drv = bdrv_find_format(out_fmt); |
| 4025 | if (!drv) { |
| 4026 | error_report("Unknown file format"); |
| 4027 | ret = -1; |
| 4028 | goto out; |
| 4029 | } |
| 4030 | proto_drv = bdrv_find_protocol(out.filename, true, &local_err); |
| 4031 | |
| 4032 | if (!proto_drv) { |
| 4033 | error_report_err(local_err); |
| 4034 | ret = -1; |
| 4035 | goto out; |
| 4036 | } |
| 4037 | if (!drv->create_opts) { |
| 4038 | error_report("Format driver '%s' does not support image creation", |
| 4039 | drv->format_name); |
| 4040 | ret = -1; |
| 4041 | goto out; |
| 4042 | } |
| 4043 | if (!proto_drv->create_opts) { |
| 4044 | error_report("Protocol driver '%s' does not support image creation", |
| 4045 | proto_drv->format_name); |
| 4046 | ret = -1; |
| 4047 | goto out; |
| 4048 | } |
| 4049 | create_opts = qemu_opts_append(create_opts, drv->create_opts); |
| 4050 | create_opts = qemu_opts_append(create_opts, proto_drv->create_opts); |
| 4051 | |
| 4052 | opts = qemu_opts_create(create_opts, NULL, 0, &error_abort); |
| 4053 | |
| 4054 | size = blk_getlength(blk1); |
| 4055 | if (size < 0) { |
| 4056 | error_report("Failed to get size for '%s'", in.filename); |
| 4057 | ret = -1; |
| 4058 | goto out; |
| 4059 | } |
| 4060 | |
| 4061 | if (dd.flags & C_COUNT && dd.count <= INT64_MAX / in.bsz && |
| 4062 | dd.count * in.bsz < size) { |
| 4063 | size = dd.count * in.bsz; |
| 4064 | } |
| 4065 | |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 4066 | /* Overflow means the specified offset is beyond input image's size */ |
| 4067 | if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz || |
| 4068 | size < in.bsz * in.offset)) { |
| 4069 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, 0, &error_abort); |
| 4070 | } else { |
| 4071 | qemu_opt_set_number(opts, BLOCK_OPT_SIZE, |
| 4072 | size - in.bsz * in.offset, &error_abort); |
| 4073 | } |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 4074 | |
| 4075 | ret = bdrv_create(drv, out.filename, opts, &local_err); |
| 4076 | if (ret < 0) { |
| 4077 | error_reportf_err(local_err, |
| 4078 | "%s: error while creating output image: ", |
| 4079 | out.filename); |
| 4080 | ret = -1; |
| 4081 | goto out; |
| 4082 | } |
| 4083 | |
| 4084 | blk2 = img_open(image_opts, out.filename, out_fmt, BDRV_O_RDWR, |
| 4085 | false, false); |
| 4086 | |
| 4087 | if (!blk2) { |
| 4088 | ret = -1; |
| 4089 | goto out; |
| 4090 | } |
| 4091 | |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 4092 | if (dd.flags & C_SKIP && (in.offset > INT64_MAX / in.bsz || |
| 4093 | size < in.offset * in.bsz)) { |
| 4094 | /* We give a warning if the skip option is bigger than the input |
| 4095 | * size and create an empty output disk image (i.e. like dd(1)). |
| 4096 | */ |
| 4097 | error_report("%s: cannot skip to specified offset", in.filename); |
| 4098 | in_pos = size; |
| 4099 | } else { |
| 4100 | in_pos = in.offset * in.bsz; |
| 4101 | } |
| 4102 | |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 4103 | in.buf = g_new(uint8_t, in.bsz); |
| 4104 | |
Reda Sallahi | f7c1553 | 2016-08-10 16:16:09 +0200 | [diff] [blame] | 4105 | for (out_pos = 0; in_pos < size; block_count++) { |
Reda Sallahi | 86ce1f6 | 2016-08-10 04:43:12 +0200 | [diff] [blame] | 4106 | int in_ret, out_ret; |
| 4107 | |
| 4108 | if (in_pos + in.bsz > size) { |
| 4109 | in_ret = blk_pread(blk1, in_pos, in.buf, size - in_pos); |
| 4110 | } else { |
| 4111 | in_ret = blk_pread(blk1, in_pos, in.buf, in.bsz); |
| 4112 | } |
| 4113 | if (in_ret < 0) { |
| 4114 | error_report("error while reading from input image file: %s", |
| 4115 | strerror(-in_ret)); |
| 4116 | ret = -1; |
| 4117 | goto out; |
| 4118 | } |
| 4119 | in_pos += in_ret; |
| 4120 | |
| 4121 | out_ret = blk_pwrite(blk2, out_pos, in.buf, in_ret, 0); |
| 4122 | |
| 4123 | if (out_ret < 0) { |
| 4124 | error_report("error while writing to output image file: %s", |
| 4125 | strerror(-out_ret)); |
| 4126 | ret = -1; |
| 4127 | goto out; |
| 4128 | } |
| 4129 | out_pos += out_ret; |
| 4130 | } |
| 4131 | |
| 4132 | out: |
| 4133 | g_free(arg); |
| 4134 | qemu_opts_del(opts); |
| 4135 | qemu_opts_free(create_opts); |
| 4136 | blk_unref(blk1); |
| 4137 | blk_unref(blk2); |
| 4138 | g_free(in.filename); |
| 4139 | g_free(out.filename); |
| 4140 | g_free(in.buf); |
| 4141 | g_free(out.buf); |
| 4142 | |
| 4143 | if (ret) { |
| 4144 | return 1; |
| 4145 | } |
| 4146 | return 0; |
| 4147 | } |
| 4148 | |
Kevin Wolf | b6133b8 | 2014-08-05 14:17:13 +0200 | [diff] [blame] | 4149 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 4150 | static const img_cmd_t img_cmds[] = { |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4151 | #define DEF(option, callback, arg_string) \ |
| 4152 | { option, callback }, |
| 4153 | #include "qemu-img-cmds.h" |
| 4154 | #undef DEF |
| 4155 | #undef GEN_DOCS |
| 4156 | { NULL, NULL, }, |
| 4157 | }; |
| 4158 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 4159 | int main(int argc, char **argv) |
| 4160 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 4161 | const img_cmd_t *cmd; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4162 | const char *cmdname; |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 4163 | Error *local_error = NULL; |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4164 | char *trace_file = NULL; |
Jeff Cody | 7db1689 | 2014-04-25 17:02:32 -0400 | [diff] [blame] | 4165 | int c; |
Jeff Cody | 7db1689 | 2014-04-25 17:02:32 -0400 | [diff] [blame] | 4166 | static const struct option long_options[] = { |
| 4167 | {"help", no_argument, 0, 'h'}, |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4168 | {"version", no_argument, 0, 'V'}, |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4169 | {"trace", required_argument, NULL, 'T'}, |
Jeff Cody | 7db1689 | 2014-04-25 17:02:32 -0400 | [diff] [blame] | 4170 | {0, 0, 0, 0} |
| 4171 | }; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 4172 | |
MORITA Kazutaka | 526eda1 | 2013-07-23 17:30:11 +0900 | [diff] [blame] | 4173 | #ifdef CONFIG_POSIX |
| 4174 | signal(SIGPIPE, SIG_IGN); |
| 4175 | #endif |
| 4176 | |
Daniel P. Berrange | fe4db84 | 2016-10-04 14:35:52 +0100 | [diff] [blame] | 4177 | module_call_init(MODULE_INIT_TRACE); |
Kevin Wolf | 53f76e5 | 2010-12-16 15:10:32 +0100 | [diff] [blame] | 4178 | error_set_progname(argv[0]); |
Fam Zheng | 10f5bff | 2014-02-10 14:48:51 +0800 | [diff] [blame] | 4179 | qemu_init_exec_dir(argv[0]); |
Kevin Wolf | 53f76e5 | 2010-12-16 15:10:32 +0100 | [diff] [blame] | 4180 | |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 4181 | if (qemu_init_main_loop(&local_error)) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 4182 | error_report_err(local_error); |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 4183 | exit(EXIT_FAILURE); |
| 4184 | } |
| 4185 | |
Eduardo Habkost | e8f2d27 | 2016-05-12 11:10:04 -0300 | [diff] [blame] | 4186 | qcrypto_init(&error_fatal); |
Daniel P. Berrange | c229708 | 2016-04-06 12:12:06 +0100 | [diff] [blame] | 4187 | |
Daniel P. Berrange | 064097d | 2016-02-10 18:41:01 +0000 | [diff] [blame] | 4188 | module_call_init(MODULE_INIT_QOM); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 4189 | bdrv_init(); |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 4190 | if (argc < 2) { |
| 4191 | error_exit("Not enough arguments"); |
| 4192 | } |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4193 | |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 4194 | qemu_add_opts(&qemu_object_opts); |
Daniel P. Berrange | eb769f7 | 2016-02-17 10:10:20 +0000 | [diff] [blame] | 4195 | qemu_add_opts(&qemu_source_opts); |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4196 | qemu_add_opts(&qemu_trace_opts); |
Daniel P. Berrange | 3babeb1 | 2016-02-17 10:10:17 +0000 | [diff] [blame] | 4197 | |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4198 | while ((c = getopt_long(argc, argv, "+hVT:", long_options, NULL)) != -1) { |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4199 | switch (c) { |
| 4200 | case 'h': |
| 4201 | help(); |
| 4202 | return 0; |
| 4203 | case 'V': |
| 4204 | printf(QEMU_IMG_VERSION); |
| 4205 | return 0; |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4206 | case 'T': |
| 4207 | g_free(trace_file); |
| 4208 | trace_file = trace_opt_parse(optarg); |
| 4209 | break; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4210 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 4211 | } |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4212 | |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4213 | cmdname = argv[optind]; |
Jeff Cody | 7db1689 | 2014-04-25 17:02:32 -0400 | [diff] [blame] | 4214 | |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4215 | /* reset getopt_long scanning */ |
| 4216 | argc -= optind; |
| 4217 | if (argc < 1) { |
Jeff Cody | 5f6979c | 2014-04-28 14:37:18 -0400 | [diff] [blame] | 4218 | return 0; |
| 4219 | } |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4220 | argv += optind; |
Denis V. Lunev | cfef6a4 | 2016-07-04 16:16:48 +0300 | [diff] [blame] | 4221 | optind = 0; |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4222 | |
Denis V. Lunev | 06a1e0c | 2016-06-17 17:44:14 +0300 | [diff] [blame] | 4223 | if (!trace_init_backends()) { |
| 4224 | exit(1); |
| 4225 | } |
| 4226 | trace_init_file(trace_file); |
| 4227 | qemu_set_log(LOG_TRACE); |
| 4228 | |
Denis V. Lunev | 1098513 | 2016-06-17 17:44:13 +0300 | [diff] [blame] | 4229 | /* find the command */ |
| 4230 | for (cmd = img_cmds; cmd->name != NULL; cmd++) { |
| 4231 | if (!strcmp(cmdname, cmd->name)) { |
| 4232 | return cmd->handler(argc, argv); |
| 4233 | } |
| 4234 | } |
Jeff Cody | 7db1689 | 2014-04-25 17:02:32 -0400 | [diff] [blame] | 4235 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 4236 | /* not found */ |
Fam Zheng | ac1307a | 2014-04-22 13:36:11 +0800 | [diff] [blame] | 4237 | error_exit("Command not found: %s", cmdname); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 4238 | } |