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