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.
11 #include <sys/types.h>
18 #include "qemu/main-loop.h"
19 #include "qemu/option.h"
20 #include "qemu/config-file.h"
21 #include "qemu/readline.h"
22 #include "sysemu/block-backend.h"
23 #include "block/block_int.h"
24 #include "trace/control.h"
26 #define CMD_NOFILE_OK 0x01
28 static char *progname;
30 static BlockBackend *qemuio_blk;
32 /* qemu-io commands passed using -c */
34 static char **cmdline;
36 static ReadLineState *readline_state;
38 static int close_f(BlockBackend *blk, int argc, char **argv)
40 blk_unref(qemuio_blk);
45 static const cmdinfo_t close_cmd = {
49 .oneline = "close the current open file",
52 static int openfile(char *name, int flags, QDict *opts)
54 Error *local_err = NULL;
58 fprintf(stderr, "file open already, try 'help close'\n");
63 qemuio_blk = blk_new_open("hda", name, NULL, opts, flags, &local_err);
65 fprintf(stderr, "%s: can't open%s%s: %s\n", progname,
66 name ? " device " : "", name ?: "",
67 error_get_pretty(local_err));
68 error_free(local_err);
72 bs = blk_bs(qemuio_blk);
73 if (bdrv_is_encrypted(bs)) {
75 printf("Disk image '%s' is encrypted.\n", name);
76 if (qemu_read_password(password, sizeof(password)) < 0) {
77 error_report("No password given");
80 if (bdrv_set_key(bs, password) < 0) {
81 error_report("invalid password");
90 blk_unref(qemuio_blk);
95 static void open_help(void)
99 " opens a new file in the requested mode\n"
102 " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
104 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
105 " -r, -- open file read-only\n"
106 " -s, -- use snapshot file\n"
107 " -n, -- disable host cache\n"
108 " -o, -- options to be given to the block driver"
112 static int open_f(BlockBackend *blk, int argc, char **argv);
114 static const cmdinfo_t open_cmd = {
120 .flags = CMD_NOFILE_OK,
121 .args = "[-Crsn] [-o options] [path]",
122 .oneline = "open the file specified by path",
126 static QemuOptsList empty_opts = {
129 .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head),
131 /* no elements => accept any params */
132 { /* end of list */ }
136 static int open_f(BlockBackend *blk, int argc, char **argv)
144 while ((c = getopt(argc, argv, "snrgo:")) != -1) {
147 flags |= BDRV_O_SNAPSHOT;
150 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
156 if (!qemu_opts_parse(&empty_opts, optarg, 0)) {
157 printf("could not parse option list -- %s\n", optarg);
158 qemu_opts_reset(&empty_opts);
163 qemu_opts_reset(&empty_opts);
164 return qemuio_command_usage(&open_cmd);
169 flags |= BDRV_O_RDWR;
172 qopts = qemu_opts_find(&empty_opts, NULL);
173 opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL;
174 qemu_opts_reset(&empty_opts);
176 if (optind == argc - 1) {
177 return openfile(argv[optind], flags, opts);
178 } else if (optind == argc) {
179 return openfile(NULL, flags, opts);
182 return qemuio_command_usage(&open_cmd);
186 static int quit_f(BlockBackend *blk, int argc, char **argv)
191 static const cmdinfo_t quit_cmd = {
197 .flags = CMD_FLAG_GLOBAL,
198 .oneline = "exit the program",
201 static void usage(const char *name)
204 "Usage: %s [-h] [-V] [-rsnm] [-f FMT] [-c STRING] ... [file]\n"
205 "QEMU Disk exerciser\n"
207 " -c, --cmd STRING execute command with its arguments\n"
208 " from the given string\n"
209 " -f, --format FMT specifies the block driver to use\n"
210 " -r, --read-only export read-only\n"
211 " -s, --snapshot use snapshot file\n"
212 " -n, --nocache disable host cache\n"
213 " -m, --misalign misalign allocations for O_DIRECT\n"
214 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
215 " -t, --cache=MODE use the given cache mode for the image\n"
216 " -T, --trace FILE enable trace events listed in the given file\n"
217 " -h, --help display this help and exit\n"
218 " -V, --version output version information and exit\n"
220 "See '%s -c help' for information on available commands."
225 static char *get_prompt(void)
227 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
230 snprintf(prompt, sizeof(prompt), "%s> ", progname);
236 static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque,
237 const char *fmt, ...)
245 static void readline_flush_func(void *opaque)
250 static void readline_func(void *opaque, const char *str, void *readline_opaque)
252 char **line = readline_opaque;
253 *line = g_strdup(str);
256 static void completion_match(const char *cmd, void *opaque)
258 readline_add_completion(readline_state, cmd);
261 static void readline_completion_func(void *opaque, const char *str)
263 readline_set_completion_index(readline_state, strlen(str));
264 qemuio_complete_command(str, completion_match, NULL);
267 static char *fetchline_readline(void)
271 readline_start(readline_state, get_prompt(), 0, readline_func, &line);
277 readline_handle_byte(readline_state, ch);
282 #define MAXREADLINESZ 1024
283 static char *fetchline_fgets(void)
285 char *p, *line = g_malloc(MAXREADLINESZ);
287 if (!fgets(line, MAXREADLINESZ, stdin)) {
292 p = line + strlen(line);
293 if (p != line && p[-1] == '\n') {
300 static char *fetchline(void)
302 if (readline_state) {
303 return fetchline_readline();
305 return fetchline_fgets();
309 static void prep_fetchline(void *opaque)
311 int *fetchable = opaque;
313 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
317 static void command_loop(void)
319 int i, done = 0, fetchable = 0, prompted = 0;
322 for (i = 0; !done && i < ncmdline; i++) {
323 done = qemuio_command(qemuio_blk, cmdline[i]);
332 printf("%s", get_prompt());
334 qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable);
338 main_loop_wait(false);
348 done = qemuio_command(qemuio_blk, input);
354 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
357 static void add_user_command(char *optarg)
359 cmdline = g_renew(char *, cmdline, ++ncmdline);
360 cmdline[ncmdline-1] = optarg;
363 static void reenable_tty_echo(void)
365 qemu_set_tty_echo(STDIN_FILENO, true);
368 int main(int argc, char **argv)
371 const char *sopt = "hVc:d:f:rsnmgkt:T:";
372 const struct option lopt[] = {
373 { "help", 0, NULL, 'h' },
374 { "version", 0, NULL, 'V' },
375 { "offset", 1, NULL, 'o' },
376 { "cmd", 1, NULL, 'c' },
377 { "format", 1, NULL, 'f' },
378 { "read-only", 0, NULL, 'r' },
379 { "snapshot", 0, NULL, 's' },
380 { "nocache", 0, NULL, 'n' },
381 { "misalign", 0, NULL, 'm' },
382 { "native-aio", 0, NULL, 'k' },
383 { "discard", 1, NULL, 'd' },
384 { "cache", 1, NULL, 't' },
385 { "trace", 1, NULL, 'T' },
390 int flags = BDRV_O_UNMAP;
391 Error *local_error = NULL;
395 signal(SIGPIPE, SIG_IGN);
398 progname = basename(argv[0]);
399 qemu_init_exec_dir(argv[0]);
403 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
406 flags |= BDRV_O_SNAPSHOT;
409 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
412 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
413 error_report("Invalid discard option: %s", optarg);
421 qdict_put(opts, "driver", qstring_from_str(optarg));
424 add_user_command(optarg);
430 qemuio_misalign = true;
433 flags |= BDRV_O_NATIVE_AIO;
436 if (bdrv_parse_cache_flags(optarg, &flags) < 0) {
437 error_report("Invalid cache option: %s", optarg);
442 if (!trace_init_backends(optarg, NULL)) {
443 exit(1); /* error message will have been printed */
447 printf("%s version %s\n", progname, QEMU_VERSION);
458 if ((argc - optind) > 1) {
463 if (qemu_init_main_loop(&local_error)) {
464 error_report_err(local_error);
468 /* initialize commands */
469 qemuio_add_command(&quit_cmd);
470 qemuio_add_command(&open_cmd);
471 qemuio_add_command(&close_cmd);
473 if (isatty(STDIN_FILENO)) {
474 readline_state = readline_init(readline_printf_func,
477 readline_completion_func);
478 qemu_set_tty_echo(STDIN_FILENO, false);
479 atexit(reenable_tty_echo);
482 /* open the device */
484 flags |= BDRV_O_RDWR;
487 if ((argc - optind) == 1) {
488 openfile(argv[optind], flags, opts);
493 * Make sure all outstanding requests complete before the program exits.
497 blk_unref(qemuio_blk);
498 g_free(readline_state);