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