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 module_call_init(MODULE_INIT_TRACE);
471 progname = basename(argv[0]);
472 qemu_init_exec_dir(argv[0]);
474 qcrypto_init(&error_fatal);
476 module_call_init(MODULE_INIT_QOM);
477 qemu_add_opts(&qemu_object_opts);
478 qemu_add_opts(&qemu_trace_opts);
481 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
484 flags |= BDRV_O_SNAPSHOT;
487 flags |= BDRV_O_NOCACHE;
488 writethrough = false;
491 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
492 error_report("Invalid discard option: %s", optarg);
500 add_user_command(optarg);
506 qemuio_misalign = true;
509 flags |= BDRV_O_NATIVE_AIO;
512 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) {
513 error_report("Invalid cache option: %s", optarg);
519 trace_file = trace_opt_parse(optarg);
522 printf("%s version %s\n", progname, QEMU_VERSION);
527 case OPTION_OBJECT: {
529 qopts = qemu_opts_parse_noisily(&qemu_object_opts,
535 case OPTION_IMAGE_OPTS:
544 if ((argc - optind) > 1) {
549 if (format && imageOpts) {
550 error_report("--image-opts and -f are mutually exclusive");
554 if (qemu_init_main_loop(&local_error)) {
555 error_report_err(local_error);
559 if (qemu_opts_foreach(&qemu_object_opts,
560 user_creatable_add_opts_foreach,
565 if (!trace_init_backends()) {
568 trace_init_file(trace_file);
569 qemu_set_log(LOG_TRACE);
571 /* initialize commands */
572 qemuio_add_command(&quit_cmd);
573 qemuio_add_command(&open_cmd);
574 qemuio_add_command(&close_cmd);
576 if (isatty(STDIN_FILENO)) {
577 readline_state = readline_init(readline_printf_func,
580 readline_completion_func);
581 qemu_set_tty_echo(STDIN_FILENO, false);
582 atexit(reenable_tty_echo);
585 /* open the device */
587 flags |= BDRV_O_RDWR;
590 if ((argc - optind) == 1) {
592 QemuOpts *qopts = NULL;
593 qopts = qemu_opts_parse_noisily(&file_opts, argv[optind], false);
597 opts = qemu_opts_to_qdict(qopts, NULL);
598 openfile(NULL, flags, writethrough, opts);
602 qdict_put(opts, "driver", qstring_from_str(format));
604 openfile(argv[optind], flags, writethrough, opts);
610 * Make sure all outstanding requests complete before the program exits.
614 blk_unref(qemuio_blk);
615 g_free(readline_state);