2 * Command line utility to exercise the QEMU I/O path.
4 * Copyright (C) 2009 Red Hat, Inc.
5 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
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.
10 #include "qemu/osdep.h"
14 #include "qapi/error.h"
16 #include "qemu/error-report.h"
17 #include "qemu/main-loop.h"
18 #include "qemu/option.h"
19 #include "qemu/config-file.h"
20 #include "qemu/readline.h"
22 #include "qapi/qmp/qstring.h"
23 #include "qapi/qmp/qbool.h"
24 #include "qom/object_interfaces.h"
25 #include "sysemu/block-backend.h"
26 #include "block/block_int.h"
27 #include "trace/control.h"
28 #include "crypto/init.h"
30 #define CMD_NOFILE_OK 0x01
32 static char *progname
;
34 static BlockBackend
*qemuio_blk
;
36 /* qemu-io commands passed using -c */
38 static char **cmdline
;
39 static bool imageOpts
;
41 static ReadLineState
*readline_state
;
43 static int close_f(BlockBackend
*blk
, int argc
, char **argv
)
45 blk_unref(qemuio_blk
);
50 static const cmdinfo_t close_cmd
= {
54 .oneline
= "close the current open file",
57 static int openfile(char *name
, int flags
, bool writethrough
, bool force_share
,
60 Error
*local_err
= NULL
;
64 error_report("file open already, try 'help close'");
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");
79 qdict_put_bool(opts
, BDRV_OPT_FORCE_SHARE
, true);
81 qemuio_blk
= blk_new_open(name
, NULL
, opts
, flags
, &local_err
);
83 error_reportf_err(local_err
, "can't open%s%s: ",
84 name
? " device " : "", name
?: "");
88 bs
= blk_bs(qemuio_blk
);
89 if (bdrv_is_encrypted(bs
) && bdrv_key_required(bs
)) {
91 printf("Disk image '%s' is encrypted.\n", name
);
92 if (qemu_read_password(password
, sizeof(password
)) < 0) {
93 error_report("No password given");
96 if (bdrv_set_key(bs
, password
) < 0) {
97 error_report("invalid password");
102 blk_set_enable_write_cache(qemuio_blk
, !writethrough
);
107 blk_unref(qemuio_blk
);
112 static void open_help(void)
116 " opens a new file in the requested mode\n"
119 " 'open -n -o driver=raw /tmp/data' - opens raw data file read-write, uncached\n"
121 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
122 " -r, -- open file read-only\n"
123 " -s, -- use snapshot file\n"
124 " -n, -- disable host cache, short for -t none\n"
125 " -U, -- force shared permissions\n"
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"
129 " -o, -- options to be given to the block driver"
133 static int open_f(BlockBackend
*blk
, int argc
, char **argv
);
135 static const cmdinfo_t open_cmd
= {
141 .flags
= CMD_NOFILE_OK
,
142 .args
= "[-rsnkU] [-t cache] [-d discard] [-o options] [path]",
143 .oneline
= "open the file specified by path",
147 static QemuOptsList empty_opts
= {
150 .head
= QTAILQ_HEAD_INITIALIZER(empty_opts
.head
),
152 /* no elements => accept any params */
153 { /* end of list */ }
157 static int open_f(BlockBackend
*blk
, int argc
, char **argv
)
159 int flags
= BDRV_O_UNMAP
;
161 bool writethrough
= true;
165 bool force_share
= false;
167 while ((c
= getopt(argc
, argv
, "snro:kt:d:U")) != -1) {
170 flags
|= BDRV_O_SNAPSHOT
;
173 flags
|= BDRV_O_NOCACHE
;
174 writethrough
= false;
180 flags
|= BDRV_O_NATIVE_AIO
;
183 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) < 0) {
184 error_report("Invalid cache option: %s", optarg
);
185 qemu_opts_reset(&empty_opts
);
190 if (bdrv_parse_discard_flags(optarg
, &flags
) < 0) {
191 error_report("Invalid discard option: %s", optarg
);
192 qemu_opts_reset(&empty_opts
);
198 printf("--image-opts and 'open -o' are mutually exclusive\n");
199 qemu_opts_reset(&empty_opts
);
202 if (!qemu_opts_parse_noisily(&empty_opts
, optarg
, false)) {
203 qemu_opts_reset(&empty_opts
);
211 qemu_opts_reset(&empty_opts
);
212 return qemuio_command_usage(&open_cmd
);
217 flags
|= BDRV_O_RDWR
;
220 if (imageOpts
&& (optind
== argc
- 1)) {
221 if (!qemu_opts_parse_noisily(&empty_opts
, argv
[optind
], false)) {
222 qemu_opts_reset(&empty_opts
);
228 qopts
= qemu_opts_find(&empty_opts
, NULL
);
229 opts
= qopts
? qemu_opts_to_qdict(qopts
, NULL
) : NULL
;
230 qemu_opts_reset(&empty_opts
);
232 if (optind
== argc
- 1) {
233 openfile(argv
[optind
], flags
, writethrough
, force_share
, opts
);
234 } else if (optind
== argc
) {
235 openfile(NULL
, flags
, writethrough
, force_share
, opts
);
238 qemuio_command_usage(&open_cmd
);
243 static int quit_f(BlockBackend
*blk
, int argc
, char **argv
)
248 static const cmdinfo_t quit_cmd
= {
254 .flags
= CMD_FLAG_GLOBAL
,
255 .oneline
= "exit the program",
258 static void usage(const char *name
)
261 "Usage: %s [OPTIONS]... [-c STRING]... [file]\n"
262 "QEMU Disk exerciser\n"
264 " --object OBJECTDEF define an object such as 'secret' for\n"
265 " passwords and/or encryption keys\n"
266 " --image-opts treat file as option string\n"
267 " -c, --cmd STRING execute command with its arguments\n"
268 " from the given string\n"
269 " -f, --format FMT specifies the block driver to use\n"
270 " -r, --read-only export read-only\n"
271 " -s, --snapshot use snapshot file\n"
272 " -n, --nocache disable host cache, short for -t none\n"
273 " -m, --misalign misalign allocations for O_DIRECT\n"
274 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
275 " -t, --cache=MODE use the given cache mode for the image\n"
276 " -d, --discard=MODE use the given discard mode for the image\n"
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"
280 " -U, --force-share force shared permissions\n"
281 " -h, --help display this help and exit\n"
282 " -V, --version output version information and exit\n"
284 "See '%s -c help' for information on available commands."
289 static char *get_prompt(void)
291 static char prompt
[FILENAME_MAX
+ 2 /*"> "*/ + 1 /*"\0"*/ ];
294 snprintf(prompt
, sizeof(prompt
), "%s> ", progname
);
300 static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque
,
301 const char *fmt
, ...)
309 static void readline_flush_func(void *opaque
)
314 static void readline_func(void *opaque
, const char *str
, void *readline_opaque
)
316 char **line
= readline_opaque
;
317 *line
= g_strdup(str
);
320 static void completion_match(const char *cmd
, void *opaque
)
322 readline_add_completion(readline_state
, cmd
);
325 static void readline_completion_func(void *opaque
, const char *str
)
327 readline_set_completion_index(readline_state
, strlen(str
));
328 qemuio_complete_command(str
, completion_match
, NULL
);
331 static char *fetchline_readline(void)
335 readline_start(readline_state
, get_prompt(), 0, readline_func
, &line
);
341 readline_handle_byte(readline_state
, ch
);
346 #define MAXREADLINESZ 1024
347 static char *fetchline_fgets(void)
349 char *p
, *line
= g_malloc(MAXREADLINESZ
);
351 if (!fgets(line
, MAXREADLINESZ
, stdin
)) {
356 p
= line
+ strlen(line
);
357 if (p
!= line
&& p
[-1] == '\n') {
364 static char *fetchline(void)
366 if (readline_state
) {
367 return fetchline_readline();
369 return fetchline_fgets();
373 static void prep_fetchline(void *opaque
)
375 int *fetchable
= opaque
;
377 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
381 static void command_loop(void)
383 int i
, done
= 0, fetchable
= 0, prompted
= 0;
386 for (i
= 0; !done
&& i
< ncmdline
; i
++) {
387 done
= qemuio_command(qemuio_blk
, cmdline
[i
]);
396 printf("%s", get_prompt());
398 qemu_set_fd_handler(STDIN_FILENO
, prep_fetchline
, NULL
, &fetchable
);
402 main_loop_wait(false);
412 done
= qemuio_command(qemuio_blk
, input
);
418 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
421 static void add_user_command(char *optarg
)
423 cmdline
= g_renew(char *, cmdline
, ++ncmdline
);
424 cmdline
[ncmdline
-1] = optarg
;
427 static void reenable_tty_echo(void)
429 qemu_set_tty_echo(STDIN_FILENO
, true);
434 OPTION_IMAGE_OPTS
= 257,
437 static QemuOptsList qemu_object_opts
= {
439 .implied_opt_name
= "qom-type",
440 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
447 static QemuOptsList file_opts
= {
449 .implied_opt_name
= "file",
450 .head
= QTAILQ_HEAD_INITIALIZER(file_opts
.head
),
452 /* no elements => accept any params */
453 { /* end of list */ }
457 int main(int argc
, char **argv
)
460 const char *sopt
= "hVc:d:f:rsnmkt:T:U";
461 const struct option lopt
[] = {
462 { "help", no_argument
, NULL
, 'h' },
463 { "version", no_argument
, NULL
, 'V' },
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
},
476 { "force-share", no_argument
, 0, 'U'},
481 int flags
= BDRV_O_UNMAP
;
482 bool writethrough
= true;
483 Error
*local_error
= NULL
;
485 const char *format
= NULL
;
486 char *trace_file
= NULL
;
487 bool force_share
= false;
490 signal(SIGPIPE
, SIG_IGN
);
493 module_call_init(MODULE_INIT_TRACE
);
494 progname
= basename(argv
[0]);
495 qemu_init_exec_dir(argv
[0]);
497 qcrypto_init(&error_fatal
);
499 module_call_init(MODULE_INIT_QOM
);
500 qemu_add_opts(&qemu_object_opts
);
501 qemu_add_opts(&qemu_trace_opts
);
504 while ((c
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_index
)) != -1) {
507 flags
|= BDRV_O_SNAPSHOT
;
510 flags
|= BDRV_O_NOCACHE
;
511 writethrough
= false;
514 if (bdrv_parse_discard_flags(optarg
, &flags
) < 0) {
515 error_report("Invalid discard option: %s", optarg
);
523 add_user_command(optarg
);
529 qemuio_misalign
= true;
532 flags
|= BDRV_O_NATIVE_AIO
;
535 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) < 0) {
536 error_report("Invalid cache option: %s", optarg
);
542 trace_file
= trace_opt_parse(optarg
);
545 printf("%s version %s\n", progname
, QEMU_VERSION
);
553 case OPTION_OBJECT
: {
555 qopts
= qemu_opts_parse_noisily(&qemu_object_opts
,
561 case OPTION_IMAGE_OPTS
:
570 if ((argc
- optind
) > 1) {
575 if (format
&& imageOpts
) {
576 error_report("--image-opts and -f are mutually exclusive");
580 if (qemu_init_main_loop(&local_error
)) {
581 error_report_err(local_error
);
585 if (qemu_opts_foreach(&qemu_object_opts
,
586 user_creatable_add_opts_foreach
,
591 if (!trace_init_backends()) {
594 trace_init_file(trace_file
);
595 qemu_set_log(LOG_TRACE
);
597 /* initialize commands */
598 qemuio_add_command(&quit_cmd
);
599 qemuio_add_command(&open_cmd
);
600 qemuio_add_command(&close_cmd
);
602 if (isatty(STDIN_FILENO
)) {
603 readline_state
= readline_init(readline_printf_func
,
606 readline_completion_func
);
607 qemu_set_tty_echo(STDIN_FILENO
, false);
608 atexit(reenable_tty_echo
);
611 /* open the device */
613 flags
|= BDRV_O_RDWR
;
616 if ((argc
- optind
) == 1) {
618 QemuOpts
*qopts
= NULL
;
619 qopts
= qemu_opts_parse_noisily(&file_opts
, argv
[optind
], false);
623 opts
= qemu_opts_to_qdict(qopts
, NULL
);
624 if (openfile(NULL
, flags
, writethrough
, force_share
, opts
)) {
630 qdict_put_str(opts
, "driver", format
);
632 if (openfile(argv
[optind
], flags
, writethrough
,
633 force_share
, opts
)) {
641 * Make sure all outstanding requests complete before the program exits.
645 blk_unref(qemuio_blk
);
646 g_free(readline_state
);