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