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