]>
Commit | Line | Data |
---|---|---|
e3aff4f6 AL |
1 | /* |
2 | * Command line utility to exercise the QEMU I/O path. | |
3 | * | |
4 | * Copyright (C) 2009 Red Hat, Inc. | |
5 | * Copyright (c) 2003-2005 Silicon Graphics, Inc. | |
6 | * | |
7 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
8 | * See the COPYING file in the top-level directory. | |
9 | */ | |
80c71a24 | 10 | #include "qemu/osdep.h" |
e3aff4f6 | 11 | #include <getopt.h> |
c32d766a | 12 | #include <libgen.h> |
e3aff4f6 | 13 | |
da34e65c | 14 | #include "qapi/error.h" |
3d21994f | 15 | #include "qemu-io.h" |
d49b6836 | 16 | #include "qemu/error-report.h" |
1de7afc9 | 17 | #include "qemu/main-loop.h" |
b543c5cd HR |
18 | #include "qemu/option.h" |
19 | #include "qemu/config-file.h" | |
0cf17e18 | 20 | #include "qemu/readline.h" |
e9a80859 | 21 | #include "qemu/log.h" |
d49b6836 | 22 | #include "qapi/qmp/qstring.h" |
459571f7 | 23 | #include "qapi/qmp/qbool.h" |
9ba371b6 | 24 | #include "qom/object_interfaces.h" |
26f54e9a | 25 | #include "sysemu/block-backend.h" |
737e150e | 26 | #include "block/block_int.h" |
d7bb72c8 | 27 | #include "trace/control.h" |
c2297088 | 28 | #include "crypto/init.h" |
e3aff4f6 | 29 | |
43642b38 | 30 | #define CMD_NOFILE_OK 0x01 |
e3aff4f6 | 31 | |
f9883880 | 32 | static char *progname; |
e3aff4f6 | 33 | |
26f54e9a | 34 | static BlockBackend *qemuio_blk; |
191c2890 | 35 | |
d1174f13 KW |
36 | /* qemu-io commands passed using -c */ |
37 | static int ncmdline; | |
38 | static char **cmdline; | |
499afa25 | 39 | static bool imageOpts; |
d1174f13 | 40 | |
0cf17e18 SH |
41 | static ReadLineState *readline_state; |
42 | ||
4c7b7e9b | 43 | static int close_f(BlockBackend *blk, int argc, char **argv) |
e3aff4f6 | 44 | { |
26f54e9a | 45 | blk_unref(qemuio_blk); |
26f54e9a | 46 | qemuio_blk = NULL; |
43642b38 | 47 | return 0; |
e3aff4f6 AL |
48 | } |
49 | ||
50 | static const cmdinfo_t close_cmd = { | |
43642b38 DN |
51 | .name = "close", |
52 | .altname = "c", | |
53 | .cfunc = close_f, | |
54 | .oneline = "close the current open file", | |
e3aff4f6 AL |
55 | }; |
56 | ||
459571f7 FZ |
57 | static int openfile(char *name, int flags, bool writethrough, bool force_share, |
58 | QDict *opts) | |
e3aff4f6 | 59 | { |
34b5d2c6 | 60 | Error *local_err = NULL; |
8caf0212 | 61 | BlockDriverState *bs; |
34b5d2c6 | 62 | |
1b58b438 | 63 | if (qemuio_blk) { |
b9884681 | 64 | error_report("file open already, try 'help close'"); |
29f2601a | 65 | QDECREF(opts); |
43642b38 DN |
66 | return 1; |
67 | } | |
68 | ||
459571f7 FZ |
69 | if (force_share) { |
70 | if (!opts) { | |
71 | opts = qdict_new(); | |
72 | } | |
73 | if (qdict_haskey(opts, BDRV_OPT_FORCE_SHARE) | |
74 | && !qdict_get_bool(opts, BDRV_OPT_FORCE_SHARE)) { | |
75 | error_report("-U conflicts with image options"); | |
76 | QDECREF(opts); | |
77 | return 1; | |
78 | } | |
579cf1d1 | 79 | qdict_put_bool(opts, BDRV_OPT_FORCE_SHARE, true); |
459571f7 | 80 | } |
efaa7c4e | 81 | qemuio_blk = blk_new_open(name, NULL, opts, flags, &local_err); |
1b58b438 | 82 | if (!qemuio_blk) { |
b9884681 MA |
83 | error_reportf_err(local_err, "can't open%s%s: ", |
84 | name ? " device " : "", name ?: ""); | |
dbb651c4 | 85 | return 1; |
43642b38 DN |
86 | } |
87 | ||
8caf0212 | 88 | bs = blk_bs(qemuio_blk); |
4ef130fc | 89 | if (bdrv_is_encrypted(bs) && bdrv_key_required(bs)) { |
8caf0212 DB |
90 | char password[256]; |
91 | printf("Disk image '%s' is encrypted.\n", name); | |
92 | if (qemu_read_password(password, sizeof(password)) < 0) { | |
93 | error_report("No password given"); | |
94 | goto error; | |
95 | } | |
96 | if (bdrv_set_key(bs, password) < 0) { | |
97 | error_report("invalid password"); | |
98 | goto error; | |
99 | } | |
100 | } | |
101 | ||
e151fc16 | 102 | blk_set_enable_write_cache(qemuio_blk, !writethrough); |
8caf0212 | 103 | |
43642b38 | 104 | return 0; |
8caf0212 DB |
105 | |
106 | error: | |
107 | blk_unref(qemuio_blk); | |
108 | qemuio_blk = NULL; | |
109 | return 1; | |
e3aff4f6 AL |
110 | } |
111 | ||
43642b38 | 112 | static void open_help(void) |
e3aff4f6 | 113 | { |
43642b38 | 114 | printf( |
e3aff4f6 AL |
115 | "\n" |
116 | " opens a new file in the requested mode\n" | |
117 | "\n" | |
118 | " Example:\n" | |
e4e12bb2 | 119 | " 'open -n -o driver=raw /tmp/data' - opens raw data file read-write, uncached\n" |
e3aff4f6 AL |
120 | "\n" |
121 | " Opens a file for subsequent use by all of the other qemu-io commands.\n" | |
e3aff4f6 AL |
122 | " -r, -- open file read-only\n" |
123 | " -s, -- use snapshot file\n" | |
b8d970f1 | 124 | " -n, -- disable host cache, short for -t none\n" |
459571f7 | 125 | " -U, -- force shared permissions\n" |
b8d970f1 EB |
126 | " -k, -- use kernel AIO implementation (on Linux only)\n" |
127 | " -t, -- use the given cache mode for the image\n" | |
128 | " -d, -- use the given discard mode for the image\n" | |
b543c5cd | 129 | " -o, -- options to be given to the block driver" |
e3aff4f6 AL |
130 | "\n"); |
131 | } | |
132 | ||
4c7b7e9b | 133 | static int open_f(BlockBackend *blk, int argc, char **argv); |
22a2bdcb BS |
134 | |
135 | static const cmdinfo_t open_cmd = { | |
43642b38 DN |
136 | .name = "open", |
137 | .altname = "o", | |
138 | .cfunc = open_f, | |
139 | .argmin = 1, | |
140 | .argmax = -1, | |
141 | .flags = CMD_NOFILE_OK, | |
459571f7 | 142 | .args = "[-rsnkU] [-t cache] [-d discard] [-o options] [path]", |
43642b38 DN |
143 | .oneline = "open the file specified by path", |
144 | .help = open_help, | |
22a2bdcb | 145 | }; |
e3aff4f6 | 146 | |
b543c5cd HR |
147 | static QemuOptsList empty_opts = { |
148 | .name = "drive", | |
443422fd | 149 | .merge_lists = true, |
b543c5cd HR |
150 | .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head), |
151 | .desc = { | |
152 | /* no elements => accept any params */ | |
153 | { /* end of list */ } | |
154 | }, | |
155 | }; | |
156 | ||
4c7b7e9b | 157 | static int open_f(BlockBackend *blk, int argc, char **argv) |
e3aff4f6 | 158 | { |
b8d970f1 | 159 | int flags = BDRV_O_UNMAP; |
43642b38 | 160 | int readonly = 0; |
e151fc16 | 161 | bool writethrough = true; |
43642b38 | 162 | int c; |
b543c5cd | 163 | QemuOpts *qopts; |
443422fd | 164 | QDict *opts; |
459571f7 | 165 | bool force_share = false; |
43642b38 | 166 | |
459571f7 | 167 | while ((c = getopt(argc, argv, "snro:kt:d:U")) != -1) { |
43642b38 DN |
168 | switch (c) { |
169 | case 's': | |
170 | flags |= BDRV_O_SNAPSHOT; | |
171 | break; | |
172 | case 'n': | |
e151fc16 KW |
173 | flags |= BDRV_O_NOCACHE; |
174 | writethrough = false; | |
43642b38 DN |
175 | break; |
176 | case 'r': | |
177 | readonly = 1; | |
178 | break; | |
b8d970f1 EB |
179 | case 'k': |
180 | flags |= BDRV_O_NATIVE_AIO; | |
181 | break; | |
182 | case 't': | |
183 | if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) { | |
184 | error_report("Invalid cache option: %s", optarg); | |
185 | qemu_opts_reset(&empty_opts); | |
186 | return 0; | |
187 | } | |
188 | break; | |
189 | case 'd': | |
190 | if (bdrv_parse_discard_flags(optarg, &flags) < 0) { | |
191 | error_report("Invalid discard option: %s", optarg); | |
192 | qemu_opts_reset(&empty_opts); | |
193 | return 0; | |
194 | } | |
195 | break; | |
b543c5cd | 196 | case 'o': |
499afa25 DB |
197 | if (imageOpts) { |
198 | printf("--image-opts and 'open -o' are mutually exclusive\n"); | |
b8d970f1 | 199 | qemu_opts_reset(&empty_opts); |
499afa25 DB |
200 | return 0; |
201 | } | |
70b94331 | 202 | if (!qemu_opts_parse_noisily(&empty_opts, optarg, false)) { |
443422fd | 203 | qemu_opts_reset(&empty_opts); |
b543c5cd HR |
204 | return 0; |
205 | } | |
b543c5cd | 206 | break; |
459571f7 FZ |
207 | case 'U': |
208 | force_share = true; | |
209 | break; | |
43642b38 | 210 | default: |
443422fd | 211 | qemu_opts_reset(&empty_opts); |
c2cdf5c5 | 212 | return qemuio_command_usage(&open_cmd); |
f5edb014 | 213 | } |
43642b38 DN |
214 | } |
215 | ||
216 | if (!readonly) { | |
217 | flags |= BDRV_O_RDWR; | |
218 | } | |
e3aff4f6 | 219 | |
499afa25 DB |
220 | if (imageOpts && (optind == argc - 1)) { |
221 | if (!qemu_opts_parse_noisily(&empty_opts, argv[optind], false)) { | |
222 | qemu_opts_reset(&empty_opts); | |
223 | return 0; | |
224 | } | |
225 | optind++; | |
226 | } | |
227 | ||
443422fd MA |
228 | qopts = qemu_opts_find(&empty_opts, NULL); |
229 | opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL; | |
230 | qemu_opts_reset(&empty_opts); | |
231 | ||
fd0fee34 | 232 | if (optind == argc - 1) { |
64ebf556 | 233 | openfile(argv[optind], flags, writethrough, force_share, opts); |
fd0fee34 | 234 | } else if (optind == argc) { |
64ebf556 | 235 | openfile(NULL, flags, writethrough, force_share, opts); |
fd0fee34 | 236 | } else { |
29f2601a | 237 | QDECREF(opts); |
64ebf556 | 238 | qemuio_command_usage(&open_cmd); |
43642b38 | 239 | } |
64ebf556 | 240 | return 0; |
e3aff4f6 AL |
241 | } |
242 | ||
4c7b7e9b | 243 | static int quit_f(BlockBackend *blk, int argc, char **argv) |
e681be7e KW |
244 | { |
245 | return 1; | |
246 | } | |
247 | ||
248 | static const cmdinfo_t quit_cmd = { | |
249 | .name = "quit", | |
250 | .altname = "q", | |
251 | .cfunc = quit_f, | |
252 | .argmin = -1, | |
253 | .argmax = -1, | |
254 | .flags = CMD_FLAG_GLOBAL, | |
255 | .oneline = "exit the program", | |
256 | }; | |
257 | ||
e3aff4f6 AL |
258 | static void usage(const char *name) |
259 | { | |
43642b38 | 260 | printf( |
e4e12bb2 | 261 | "Usage: %s [OPTIONS]... [-c STRING]... [file]\n" |
84844a20 | 262 | "QEMU Disk exerciser\n" |
e3aff4f6 | 263 | "\n" |
9ba371b6 DB |
264 | " --object OBJECTDEF define an object such as 'secret' for\n" |
265 | " passwords and/or encryption keys\n" | |
e4e12bb2 | 266 | " --image-opts treat file as option string\n" |
d208cc35 MK |
267 | " -c, --cmd STRING execute command with its arguments\n" |
268 | " from the given string\n" | |
be6273da | 269 | " -f, --format FMT specifies the block driver to use\n" |
e3aff4f6 AL |
270 | " -r, --read-only export read-only\n" |
271 | " -s, --snapshot use snapshot file\n" | |
e4e12bb2 | 272 | " -n, --nocache disable host cache, short for -t none\n" |
e3aff4f6 | 273 | " -m, --misalign misalign allocations for O_DIRECT\n" |
5c6c3a6c | 274 | " -k, --native-aio use kernel AIO implementation (on Linux only)\n" |
592fa070 | 275 | " -t, --cache=MODE use the given cache mode for the image\n" |
e4e12bb2 | 276 | " -d, --discard=MODE use the given discard mode for the image\n" |
e9a80859 DL |
277 | " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n" |
278 | " specify tracing options\n" | |
279 | " see qemu-img(1) man page for full description\n" | |
459571f7 | 280 | " -U, --force-share force shared permissions\n" |
e3aff4f6 AL |
281 | " -h, --help display this help and exit\n" |
282 | " -V, --version output version information and exit\n" | |
d208cc35 MK |
283 | "\n" |
284 | "See '%s -c help' for information on available commands." | |
e3aff4f6 | 285 | "\n", |
d208cc35 | 286 | name, name); |
e3aff4f6 AL |
287 | } |
288 | ||
d1174f13 KW |
289 | static char *get_prompt(void) |
290 | { | |
291 | static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ]; | |
292 | ||
293 | if (!prompt[0]) { | |
294 | snprintf(prompt, sizeof(prompt), "%s> ", progname); | |
295 | } | |
296 | ||
297 | return prompt; | |
298 | } | |
299 | ||
d5d1507b SW |
300 | static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque, |
301 | const char *fmt, ...) | |
d1174f13 | 302 | { |
0cf17e18 SH |
303 | va_list ap; |
304 | va_start(ap, fmt); | |
305 | vprintf(fmt, ap); | |
306 | va_end(ap); | |
d1174f13 | 307 | } |
0cf17e18 SH |
308 | |
309 | static void readline_flush_func(void *opaque) | |
d1174f13 | 310 | { |
0cf17e18 | 311 | fflush(stdout); |
d1174f13 KW |
312 | } |
313 | ||
0cf17e18 | 314 | static void readline_func(void *opaque, const char *str, void *readline_opaque) |
d1174f13 | 315 | { |
0cf17e18 SH |
316 | char **line = readline_opaque; |
317 | *line = g_strdup(str); | |
318 | } | |
319 | ||
4694020d SH |
320 | static void completion_match(const char *cmd, void *opaque) |
321 | { | |
322 | readline_add_completion(readline_state, cmd); | |
323 | } | |
324 | ||
0cf17e18 SH |
325 | static void readline_completion_func(void *opaque, const char *str) |
326 | { | |
4694020d SH |
327 | readline_set_completion_index(readline_state, strlen(str)); |
328 | qemuio_complete_command(str, completion_match, NULL); | |
0cf17e18 SH |
329 | } |
330 | ||
331 | static char *fetchline_readline(void) | |
332 | { | |
333 | char *line = NULL; | |
334 | ||
335 | readline_start(readline_state, get_prompt(), 0, readline_func, &line); | |
336 | while (!line) { | |
337 | int ch = getchar(); | |
338 | if (ch == EOF) { | |
339 | break; | |
d1174f13 | 340 | } |
0cf17e18 | 341 | readline_handle_byte(readline_state, ch); |
d1174f13 KW |
342 | } |
343 | return line; | |
344 | } | |
0cf17e18 SH |
345 | |
346 | #define MAXREADLINESZ 1024 | |
347 | static char *fetchline_fgets(void) | |
d1174f13 KW |
348 | { |
349 | char *p, *line = g_malloc(MAXREADLINESZ); | |
350 | ||
351 | if (!fgets(line, MAXREADLINESZ, stdin)) { | |
352 | g_free(line); | |
353 | return NULL; | |
354 | } | |
355 | ||
356 | p = line + strlen(line); | |
357 | if (p != line && p[-1] == '\n') { | |
358 | p[-1] = '\0'; | |
359 | } | |
360 | ||
361 | return line; | |
362 | } | |
0cf17e18 SH |
363 | |
364 | static char *fetchline(void) | |
365 | { | |
366 | if (readline_state) { | |
367 | return fetchline_readline(); | |
368 | } else { | |
369 | return fetchline_fgets(); | |
370 | } | |
371 | } | |
d1174f13 KW |
372 | |
373 | static void prep_fetchline(void *opaque) | |
374 | { | |
375 | int *fetchable = opaque; | |
376 | ||
377 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); | |
378 | *fetchable= 1; | |
379 | } | |
380 | ||
381 | static void command_loop(void) | |
382 | { | |
383 | int i, done = 0, fetchable = 0, prompted = 0; | |
384 | char *input; | |
385 | ||
386 | for (i = 0; !done && i < ncmdline; i++) { | |
4c7b7e9b | 387 | done = qemuio_command(qemuio_blk, cmdline[i]); |
d1174f13 KW |
388 | } |
389 | if (cmdline) { | |
390 | g_free(cmdline); | |
391 | return; | |
392 | } | |
393 | ||
394 | while (!done) { | |
395 | if (!prompted) { | |
396 | printf("%s", get_prompt()); | |
397 | fflush(stdout); | |
398 | qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable); | |
399 | prompted = 1; | |
400 | } | |
401 | ||
402 | main_loop_wait(false); | |
403 | ||
404 | if (!fetchable) { | |
405 | continue; | |
406 | } | |
407 | ||
408 | input = fetchline(); | |
409 | if (input == NULL) { | |
410 | break; | |
411 | } | |
4c7b7e9b | 412 | done = qemuio_command(qemuio_blk, input); |
d1174f13 KW |
413 | g_free(input); |
414 | ||
415 | prompted = 0; | |
416 | fetchable = 0; | |
417 | } | |
418 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); | |
419 | } | |
420 | ||
421 | static void add_user_command(char *optarg) | |
422 | { | |
5839e53b | 423 | cmdline = g_renew(char *, cmdline, ++ncmdline); |
d1174f13 KW |
424 | cmdline[ncmdline-1] = optarg; |
425 | } | |
426 | ||
0cf17e18 SH |
427 | static void reenable_tty_echo(void) |
428 | { | |
429 | qemu_set_tty_echo(STDIN_FILENO, true); | |
430 | } | |
431 | ||
9ba371b6 DB |
432 | enum { |
433 | OPTION_OBJECT = 256, | |
499afa25 | 434 | OPTION_IMAGE_OPTS = 257, |
9ba371b6 DB |
435 | }; |
436 | ||
437 | static QemuOptsList qemu_object_opts = { | |
438 | .name = "object", | |
439 | .implied_opt_name = "qom-type", | |
440 | .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head), | |
441 | .desc = { | |
442 | { } | |
443 | }, | |
444 | }; | |
445 | ||
446 | ||
499afa25 DB |
447 | static QemuOptsList file_opts = { |
448 | .name = "file", | |
449 | .implied_opt_name = "file", | |
450 | .head = QTAILQ_HEAD_INITIALIZER(file_opts.head), | |
451 | .desc = { | |
452 | /* no elements => accept any params */ | |
453 | { /* end of list */ } | |
454 | }, | |
455 | }; | |
456 | ||
e3aff4f6 AL |
457 | int main(int argc, char **argv) |
458 | { | |
43642b38 | 459 | int readonly = 0; |
459571f7 | 460 | const char *sopt = "hVc:d:f:rsnmkt:T:U"; |
43642b38 | 461 | const struct option lopt[] = { |
a513416e DB |
462 | { "help", no_argument, NULL, 'h' }, |
463 | { "version", no_argument, NULL, 'V' }, | |
a513416e DB |
464 | { "cmd", required_argument, NULL, 'c' }, |
465 | { "format", required_argument, NULL, 'f' }, | |
466 | { "read-only", no_argument, NULL, 'r' }, | |
467 | { "snapshot", no_argument, NULL, 's' }, | |
468 | { "nocache", no_argument, NULL, 'n' }, | |
469 | { "misalign", no_argument, NULL, 'm' }, | |
470 | { "native-aio", no_argument, NULL, 'k' }, | |
471 | { "discard", required_argument, NULL, 'd' }, | |
472 | { "cache", required_argument, NULL, 't' }, | |
473 | { "trace", required_argument, NULL, 'T' }, | |
474 | { "object", required_argument, NULL, OPTION_OBJECT }, | |
475 | { "image-opts", no_argument, NULL, OPTION_IMAGE_OPTS }, | |
459571f7 | 476 | { "force-share", no_argument, 0, 'U'}, |
43642b38 DN |
477 | { NULL, 0, NULL, 0 } |
478 | }; | |
479 | int c; | |
480 | int opt_index = 0; | |
9e8f1835 | 481 | int flags = BDRV_O_UNMAP; |
e151fc16 | 482 | bool writethrough = true; |
2f78e491 | 483 | Error *local_error = NULL; |
1b58b438 | 484 | QDict *opts = NULL; |
499afa25 | 485 | const char *format = NULL; |
e9a80859 | 486 | char *trace_file = NULL; |
459571f7 | 487 | bool force_share = false; |
43642b38 | 488 | |
526eda14 MK |
489 | #ifdef CONFIG_POSIX |
490 | signal(SIGPIPE, SIG_IGN); | |
491 | #endif | |
492 | ||
fe4db84d | 493 | module_call_init(MODULE_INIT_TRACE); |
43642b38 | 494 | progname = basename(argv[0]); |
10f5bff6 | 495 | qemu_init_exec_dir(argv[0]); |
43642b38 | 496 | |
e8f2d272 | 497 | qcrypto_init(&error_fatal); |
c2297088 | 498 | |
064097d9 | 499 | module_call_init(MODULE_INIT_QOM); |
9ba371b6 | 500 | qemu_add_opts(&qemu_object_opts); |
e9a80859 | 501 | qemu_add_opts(&qemu_trace_opts); |
be6273da KW |
502 | bdrv_init(); |
503 | ||
43642b38 DN |
504 | while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) { |
505 | switch (c) { | |
506 | case 's': | |
507 | flags |= BDRV_O_SNAPSHOT; | |
508 | break; | |
509 | case 'n': | |
e151fc16 KW |
510 | flags |= BDRV_O_NOCACHE; |
511 | writethrough = false; | |
43642b38 | 512 | break; |
9e8f1835 PB |
513 | case 'd': |
514 | if (bdrv_parse_discard_flags(optarg, &flags) < 0) { | |
515 | error_report("Invalid discard option: %s", optarg); | |
516 | exit(1); | |
517 | } | |
518 | break; | |
be6273da | 519 | case 'f': |
499afa25 | 520 | format = optarg; |
be6273da | 521 | break; |
43642b38 DN |
522 | case 'c': |
523 | add_user_command(optarg); | |
524 | break; | |
525 | case 'r': | |
526 | readonly = 1; | |
527 | break; | |
528 | case 'm': | |
f9883880 | 529 | qemuio_misalign = true; |
43642b38 | 530 | break; |
43642b38 DN |
531 | case 'k': |
532 | flags |= BDRV_O_NATIVE_AIO; | |
533 | break; | |
592fa070 | 534 | case 't': |
e151fc16 | 535 | if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) { |
592fa070 KW |
536 | error_report("Invalid cache option: %s", optarg); |
537 | exit(1); | |
538 | } | |
539 | break; | |
d7bb72c8 | 540 | case 'T': |
e9a80859 DL |
541 | g_free(trace_file); |
542 | trace_file = trace_opt_parse(optarg); | |
d7bb72c8 | 543 | break; |
43642b38 | 544 | case 'V': |
02da386a | 545 | printf("%s version %s\n", progname, QEMU_VERSION); |
43642b38 DN |
546 | exit(0); |
547 | case 'h': | |
548 | usage(progname); | |
549 | exit(0); | |
459571f7 FZ |
550 | case 'U': |
551 | force_share = true; | |
552 | break; | |
9ba371b6 | 553 | case OPTION_OBJECT: { |
499afa25 | 554 | QemuOpts *qopts; |
9ba371b6 DB |
555 | qopts = qemu_opts_parse_noisily(&qemu_object_opts, |
556 | optarg, true); | |
557 | if (!qopts) { | |
558 | exit(1); | |
559 | } | |
560 | } break; | |
499afa25 DB |
561 | case OPTION_IMAGE_OPTS: |
562 | imageOpts = true; | |
563 | break; | |
43642b38 DN |
564 | default: |
565 | usage(progname); | |
566 | exit(1); | |
f5edb014 | 567 | } |
43642b38 DN |
568 | } |
569 | ||
570 | if ((argc - optind) > 1) { | |
571 | usage(progname); | |
572 | exit(1); | |
573 | } | |
e3aff4f6 | 574 | |
499afa25 DB |
575 | if (format && imageOpts) { |
576 | error_report("--image-opts and -f are mutually exclusive"); | |
577 | exit(1); | |
578 | } | |
579 | ||
2f78e491 | 580 | if (qemu_init_main_loop(&local_error)) { |
565f65d2 | 581 | error_report_err(local_error); |
2f78e491 CN |
582 | exit(1); |
583 | } | |
a57d1143 | 584 | |
9ba371b6 DB |
585 | if (qemu_opts_foreach(&qemu_object_opts, |
586 | user_creatable_add_opts_foreach, | |
51b9b478 | 587 | NULL, NULL)) { |
9ba371b6 DB |
588 | exit(1); |
589 | } | |
590 | ||
e9a80859 DL |
591 | if (!trace_init_backends()) { |
592 | exit(1); | |
593 | } | |
594 | trace_init_file(trace_file); | |
595 | qemu_set_log(LOG_TRACE); | |
596 | ||
43642b38 | 597 | /* initialize commands */ |
c2cdf5c5 KW |
598 | qemuio_add_command(&quit_cmd); |
599 | qemuio_add_command(&open_cmd); | |
600 | qemuio_add_command(&close_cmd); | |
43642b38 | 601 | |
0cf17e18 SH |
602 | if (isatty(STDIN_FILENO)) { |
603 | readline_state = readline_init(readline_printf_func, | |
604 | readline_flush_func, | |
605 | NULL, | |
606 | readline_completion_func); | |
607 | qemu_set_tty_echo(STDIN_FILENO, false); | |
608 | atexit(reenable_tty_echo); | |
609 | } | |
610 | ||
43642b38 DN |
611 | /* open the device */ |
612 | if (!readonly) { | |
613 | flags |= BDRV_O_RDWR; | |
614 | } | |
615 | ||
616 | if ((argc - optind) == 1) { | |
499afa25 DB |
617 | if (imageOpts) { |
618 | QemuOpts *qopts = NULL; | |
619 | qopts = qemu_opts_parse_noisily(&file_opts, argv[optind], false); | |
620 | if (!qopts) { | |
621 | exit(1); | |
622 | } | |
623 | opts = qemu_opts_to_qdict(qopts, NULL); | |
459571f7 | 624 | if (openfile(NULL, flags, writethrough, force_share, opts)) { |
b7aa1315 NS |
625 | exit(1); |
626 | } | |
499afa25 DB |
627 | } else { |
628 | if (format) { | |
629 | opts = qdict_new(); | |
46f5ac20 | 630 | qdict_put_str(opts, "driver", format); |
499afa25 | 631 | } |
459571f7 FZ |
632 | if (openfile(argv[optind], flags, writethrough, |
633 | force_share, opts)) { | |
b7aa1315 NS |
634 | exit(1); |
635 | } | |
499afa25 | 636 | } |
43642b38 DN |
637 | } |
638 | command_loop(); | |
e3aff4f6 | 639 | |
43642b38 | 640 | /* |
922453bc | 641 | * Make sure all outstanding requests complete before the program exits. |
43642b38 | 642 | */ |
922453bc | 643 | bdrv_drain_all(); |
95533d5f | 644 | |
26f54e9a | 645 | blk_unref(qemuio_blk); |
0cf17e18 | 646 | g_free(readline_state); |
43642b38 | 647 | return 0; |
e3aff4f6 | 648 | } |