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 "qom/object_interfaces.h"
24 #include "sysemu/block-backend.h"
25 #include "block/block_int.h"
26 #include "trace/control.h"
27 #include "crypto/init.h"
29 #define CMD_NOFILE_OK 0x01
31 static char *progname
;
33 static BlockBackend
*qemuio_blk
;
35 /* qemu-io commands passed using -c */
37 static char **cmdline
;
38 static bool imageOpts
;
40 static ReadLineState
*readline_state
;
42 static int close_f(BlockBackend
*blk
, int argc
, char **argv
)
44 blk_unref(qemuio_blk
);
49 static const cmdinfo_t close_cmd
= {
53 .oneline
= "close the current open file",
56 static int openfile(char *name
, int flags
, bool writethrough
, QDict
*opts
)
58 Error
*local_err
= NULL
;
62 error_report("file open already, try 'help close'");
67 qemuio_blk
= blk_new_open(name
, NULL
, opts
, flags
, &local_err
);
69 error_reportf_err(local_err
, "can't open%s%s: ",
70 name
? " device " : "", name
?: "");
74 bs
= blk_bs(qemuio_blk
);
75 if (bdrv_is_encrypted(bs
) && bdrv_key_required(bs
)) {
77 printf("Disk image '%s' is encrypted.\n", name
);
78 if (qemu_read_password(password
, sizeof(password
)) < 0) {
79 error_report("No password given");
82 if (bdrv_set_key(bs
, password
) < 0) {
83 error_report("invalid password");
88 blk_set_enable_write_cache(qemuio_blk
, !writethrough
);
93 blk_unref(qemuio_blk
);
98 static void open_help(void)
102 " opens a new file in the requested mode\n"
105 " 'open -n -o driver=raw /tmp/data' - opens raw data file read-write, uncached\n"
107 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
108 " -r, -- open file read-only\n"
109 " -s, -- use snapshot file\n"
110 " -n, -- disable host cache, short for -t none\n"
111 " -k, -- use kernel AIO implementation (on Linux only)\n"
112 " -t, -- use the given cache mode for the image\n"
113 " -d, -- use the given discard mode for the image\n"
114 " -o, -- options to be given to the block driver"
118 static int open_f(BlockBackend
*blk
, int argc
, char **argv
);
120 static const cmdinfo_t open_cmd
= {
126 .flags
= CMD_NOFILE_OK
,
127 .args
= "[-rsnk] [-t cache] [-d discard] [-o options] [path]",
128 .oneline
= "open the file specified by path",
132 static QemuOptsList empty_opts
= {
135 .head
= QTAILQ_HEAD_INITIALIZER(empty_opts
.head
),
137 /* no elements => accept any params */
138 { /* end of list */ }
142 static int open_f(BlockBackend
*blk
, int argc
, char **argv
)
144 int flags
= BDRV_O_UNMAP
;
146 bool writethrough
= true;
151 while ((c
= getopt(argc
, argv
, "snro:kt:d:")) != -1) {
154 flags
|= BDRV_O_SNAPSHOT
;
157 flags
|= BDRV_O_NOCACHE
;
158 writethrough
= false;
164 flags
|= BDRV_O_NATIVE_AIO
;
167 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) < 0) {
168 error_report("Invalid cache option: %s", optarg
);
169 qemu_opts_reset(&empty_opts
);
174 if (bdrv_parse_discard_flags(optarg
, &flags
) < 0) {
175 error_report("Invalid discard option: %s", optarg
);
176 qemu_opts_reset(&empty_opts
);
182 printf("--image-opts and 'open -o' are mutually exclusive\n");
183 qemu_opts_reset(&empty_opts
);
186 if (!qemu_opts_parse_noisily(&empty_opts
, optarg
, false)) {
187 qemu_opts_reset(&empty_opts
);
192 qemu_opts_reset(&empty_opts
);
193 return qemuio_command_usage(&open_cmd
);
198 flags
|= BDRV_O_RDWR
;
201 if (imageOpts
&& (optind
== argc
- 1)) {
202 if (!qemu_opts_parse_noisily(&empty_opts
, argv
[optind
], false)) {
203 qemu_opts_reset(&empty_opts
);
209 qopts
= qemu_opts_find(&empty_opts
, NULL
);
210 opts
= qopts
? qemu_opts_to_qdict(qopts
, NULL
) : NULL
;
211 qemu_opts_reset(&empty_opts
);
213 if (optind
== argc
- 1) {
214 return openfile(argv
[optind
], flags
, writethrough
, opts
);
215 } else if (optind
== argc
) {
216 return openfile(NULL
, flags
, writethrough
, opts
);
219 return qemuio_command_usage(&open_cmd
);
223 static int quit_f(BlockBackend
*blk
, int argc
, char **argv
)
228 static const cmdinfo_t quit_cmd
= {
234 .flags
= CMD_FLAG_GLOBAL
,
235 .oneline
= "exit the program",
238 static void usage(const char *name
)
241 "Usage: %s [OPTIONS]... [-c STRING]... [file]\n"
242 "QEMU Disk exerciser\n"
244 " --object OBJECTDEF define an object such as 'secret' for\n"
245 " passwords and/or encryption keys\n"
246 " --image-opts treat file as option string\n"
247 " -c, --cmd STRING execute command with its arguments\n"
248 " from the given string\n"
249 " -f, --format FMT specifies the block driver to use\n"
250 " -r, --read-only export read-only\n"
251 " -s, --snapshot use snapshot file\n"
252 " -n, --nocache disable host cache, short for -t none\n"
253 " -m, --misalign misalign allocations for O_DIRECT\n"
254 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
255 " -t, --cache=MODE use the given cache mode for the image\n"
256 " -d, --discard=MODE use the given discard mode for the image\n"
257 " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
258 " specify tracing options\n"
259 " see qemu-img(1) man page for full description\n"
260 " -h, --help display this help and exit\n"
261 " -V, --version output version information and exit\n"
263 "See '%s -c help' for information on available commands."
268 static char *get_prompt(void)
270 static char prompt
[FILENAME_MAX
+ 2 /*"> "*/ + 1 /*"\0"*/ ];
273 snprintf(prompt
, sizeof(prompt
), "%s> ", progname
);
279 static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque
,
280 const char *fmt
, ...)
288 static void readline_flush_func(void *opaque
)
293 static void readline_func(void *opaque
, const char *str
, void *readline_opaque
)
295 char **line
= readline_opaque
;
296 *line
= g_strdup(str
);
299 static void completion_match(const char *cmd
, void *opaque
)
301 readline_add_completion(readline_state
, cmd
);
304 static void readline_completion_func(void *opaque
, const char *str
)
306 readline_set_completion_index(readline_state
, strlen(str
));
307 qemuio_complete_command(str
, completion_match
, NULL
);
310 static char *fetchline_readline(void)
314 readline_start(readline_state
, get_prompt(), 0, readline_func
, &line
);
320 readline_handle_byte(readline_state
, ch
);
325 #define MAXREADLINESZ 1024
326 static char *fetchline_fgets(void)
328 char *p
, *line
= g_malloc(MAXREADLINESZ
);
330 if (!fgets(line
, MAXREADLINESZ
, stdin
)) {
335 p
= line
+ strlen(line
);
336 if (p
!= line
&& p
[-1] == '\n') {
343 static char *fetchline(void)
345 if (readline_state
) {
346 return fetchline_readline();
348 return fetchline_fgets();
352 static void prep_fetchline(void *opaque
)
354 int *fetchable
= opaque
;
356 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
360 static void command_loop(void)
362 int i
, done
= 0, fetchable
= 0, prompted
= 0;
365 for (i
= 0; !done
&& i
< ncmdline
; i
++) {
366 done
= qemuio_command(qemuio_blk
, cmdline
[i
]);
375 printf("%s", get_prompt());
377 qemu_set_fd_handler(STDIN_FILENO
, prep_fetchline
, NULL
, &fetchable
);
381 main_loop_wait(false);
391 done
= qemuio_command(qemuio_blk
, input
);
397 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
400 static void add_user_command(char *optarg
)
402 cmdline
= g_renew(char *, cmdline
, ++ncmdline
);
403 cmdline
[ncmdline
-1] = optarg
;
406 static void reenable_tty_echo(void)
408 qemu_set_tty_echo(STDIN_FILENO
, true);
413 OPTION_IMAGE_OPTS
= 257,
416 static QemuOptsList qemu_object_opts
= {
418 .implied_opt_name
= "qom-type",
419 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
426 static QemuOptsList file_opts
= {
428 .implied_opt_name
= "file",
429 .head
= QTAILQ_HEAD_INITIALIZER(file_opts
.head
),
431 /* no elements => accept any params */
432 { /* end of list */ }
436 int main(int argc
, char **argv
)
439 const char *sopt
= "hVc:d:f:rsnmkt:T:";
440 const struct option lopt
[] = {
441 { "help", no_argument
, NULL
, 'h' },
442 { "version", no_argument
, NULL
, 'V' },
443 { "cmd", required_argument
, NULL
, 'c' },
444 { "format", required_argument
, NULL
, 'f' },
445 { "read-only", no_argument
, NULL
, 'r' },
446 { "snapshot", no_argument
, NULL
, 's' },
447 { "nocache", no_argument
, NULL
, 'n' },
448 { "misalign", no_argument
, NULL
, 'm' },
449 { "native-aio", no_argument
, NULL
, 'k' },
450 { "discard", required_argument
, NULL
, 'd' },
451 { "cache", required_argument
, NULL
, 't' },
452 { "trace", required_argument
, NULL
, 'T' },
453 { "object", required_argument
, NULL
, OPTION_OBJECT
},
454 { "image-opts", no_argument
, NULL
, OPTION_IMAGE_OPTS
},
459 int flags
= BDRV_O_UNMAP
;
460 bool writethrough
= true;
461 Error
*local_error
= NULL
;
463 const char *format
= NULL
;
464 char *trace_file
= NULL
;
467 signal(SIGPIPE
, SIG_IGN
);
470 progname
= basename(argv
[0]);
471 qemu_init_exec_dir(argv
[0]);
473 qcrypto_init(&error_fatal
);
475 module_call_init(MODULE_INIT_QOM
);
476 qemu_add_opts(&qemu_object_opts
);
477 qemu_add_opts(&qemu_trace_opts
);
480 while ((c
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_index
)) != -1) {
483 flags
|= BDRV_O_SNAPSHOT
;
486 flags
|= BDRV_O_NOCACHE
;
487 writethrough
= false;
490 if (bdrv_parse_discard_flags(optarg
, &flags
) < 0) {
491 error_report("Invalid discard option: %s", optarg
);
499 add_user_command(optarg
);
505 qemuio_misalign
= true;
508 flags
|= BDRV_O_NATIVE_AIO
;
511 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) < 0) {
512 error_report("Invalid cache option: %s", optarg
);
518 trace_file
= trace_opt_parse(optarg
);
521 printf("%s version %s\n", progname
, QEMU_VERSION
);
526 case OPTION_OBJECT
: {
528 qopts
= qemu_opts_parse_noisily(&qemu_object_opts
,
534 case OPTION_IMAGE_OPTS
:
543 if ((argc
- optind
) > 1) {
548 if (format
&& imageOpts
) {
549 error_report("--image-opts and -f are mutually exclusive");
553 if (qemu_init_main_loop(&local_error
)) {
554 error_report_err(local_error
);
558 if (qemu_opts_foreach(&qemu_object_opts
,
559 user_creatable_add_opts_foreach
,
564 if (!trace_init_backends()) {
567 trace_init_file(trace_file
);
568 qemu_set_log(LOG_TRACE
);
570 /* initialize commands */
571 qemuio_add_command(&quit_cmd
);
572 qemuio_add_command(&open_cmd
);
573 qemuio_add_command(&close_cmd
);
575 if (isatty(STDIN_FILENO
)) {
576 readline_state
= readline_init(readline_printf_func
,
579 readline_completion_func
);
580 qemu_set_tty_echo(STDIN_FILENO
, false);
581 atexit(reenable_tty_echo
);
584 /* open the device */
586 flags
|= BDRV_O_RDWR
;
589 if ((argc
- optind
) == 1) {
591 QemuOpts
*qopts
= NULL
;
592 qopts
= qemu_opts_parse_noisily(&file_opts
, argv
[optind
], false);
596 opts
= qemu_opts_to_qdict(qopts
, NULL
);
597 openfile(NULL
, flags
, writethrough
, opts
);
601 qdict_put(opts
, "driver", qstring_from_str(format
));
603 openfile(argv
[optind
], flags
, writethrough
, opts
);
609 * Make sure all outstanding requests complete before the program exits.
613 blk_unref(qemuio_blk
);
614 g_free(readline_state
);