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