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 "block/block_int.h"
23 #include "trace/control.h"
25 #define CMD_NOFILE_OK 0x01
27 static char *progname
;
29 static BlockDriverState
*qemuio_bs
;
31 /* qemu-io commands passed using -c */
33 static char **cmdline
;
35 static ReadLineState
*readline_state
;
37 static int close_f(BlockDriverState
*bs
, int argc
, char **argv
)
44 static const cmdinfo_t close_cmd
= {
48 .oneline
= "close the current open file",
51 static int openfile(char *name
, int flags
, int growable
, QDict
*opts
)
53 Error
*local_err
= NULL
;
56 fprintf(stderr
, "file open already, try 'help close'\n");
61 qemuio_bs
= bdrv_new("hda", &error_abort
);
64 flags
|= BDRV_O_PROTOCOL
;
67 if (bdrv_open(&qemuio_bs
, name
, NULL
, opts
, flags
, NULL
, &local_err
) < 0) {
68 fprintf(stderr
, "%s: can't open%s%s: %s\n", progname
,
69 name
? " device " : "", name
?: "",
70 error_get_pretty(local_err
));
71 error_free(local_err
);
72 bdrv_unref(qemuio_bs
);
80 static void open_help(void)
84 " opens a new file in the requested mode\n"
87 " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
89 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
90 " -r, -- open file read-only\n"
91 " -s, -- use snapshot file\n"
92 " -n, -- disable host cache\n"
93 " -g, -- allow file to grow (only applies to protocols)\n"
94 " -o, -- options to be given to the block driver"
98 static int open_f(BlockDriverState
*bs
, int argc
, char **argv
);
100 static const cmdinfo_t open_cmd
= {
106 .flags
= CMD_NOFILE_OK
,
107 .args
= "[-Crsn] [-o options] [path]",
108 .oneline
= "open the file specified by path",
112 static QemuOptsList empty_opts
= {
115 .head
= QTAILQ_HEAD_INITIALIZER(empty_opts
.head
),
117 /* no elements => accept any params */
118 { /* end of list */ }
122 static int open_f(BlockDriverState
*bs
, int argc
, char **argv
)
131 while ((c
= getopt(argc
, argv
, "snrgo:")) != EOF
) {
134 flags
|= BDRV_O_SNAPSHOT
;
137 flags
|= BDRV_O_NOCACHE
| BDRV_O_CACHE_WB
;
146 if (!qemu_opts_parse(&empty_opts
, optarg
, 0)) {
147 printf("could not parse option list -- %s\n", optarg
);
148 qemu_opts_reset(&empty_opts
);
153 qemu_opts_reset(&empty_opts
);
154 return qemuio_command_usage(&open_cmd
);
159 flags
|= BDRV_O_RDWR
;
162 qopts
= qemu_opts_find(&empty_opts
, NULL
);
163 opts
= qopts
? qemu_opts_to_qdict(qopts
, NULL
) : NULL
;
164 qemu_opts_reset(&empty_opts
);
166 if (optind
== argc
- 1) {
167 return openfile(argv
[optind
], flags
, growable
, opts
);
168 } else if (optind
== argc
) {
169 return openfile(NULL
, flags
, growable
, opts
);
172 return qemuio_command_usage(&open_cmd
);
176 static int quit_f(BlockDriverState
*bs
, int argc
, char **argv
)
182 # include "qemu-io-sim.c"
185 static const cmdinfo_t quit_cmd
= {
191 .flags
= CMD_FLAG_GLOBAL
,
192 .oneline
= "exit the program",
195 static void usage(const char *name
)
198 "Usage: %s [-h] [-V] [-rsnm] [-c STRING] ... [file]\n"
199 "QEMU Disk exerciser\n"
201 " -c, --cmd STRING execute command with its arguments\n"
202 " from the given string\n"
203 " -r, --read-only export read-only\n"
204 " -s, --snapshot use snapshot file\n"
205 " -n, --nocache disable host cache\n"
206 " -g, --growable allow file to grow (only applies to protocols)\n"
207 " -m, --misalign misalign allocations for O_DIRECT\n"
208 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
209 " -t, --cache=MODE use the given cache mode for the image\n"
210 " -T, --trace FILE enable trace events listed in the given file\n"
211 " -h, --help display this help and exit\n"
212 " -V, --version output version information and exit\n"
214 "See '%s -c help' for information on available commands."
219 static char *get_prompt(void)
221 static char prompt
[FILENAME_MAX
+ 2 /*"> "*/ + 1 /*"\0"*/ ];
224 snprintf(prompt
, sizeof(prompt
), "%s> ", progname
);
230 static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque
,
231 const char *fmt
, ...)
239 static void readline_flush_func(void *opaque
)
244 static void readline_func(void *opaque
, const char *str
, void *readline_opaque
)
246 char **line
= readline_opaque
;
247 *line
= g_strdup(str
);
250 static void completion_match(const char *cmd
, void *opaque
)
252 readline_add_completion(readline_state
, cmd
);
255 static void readline_completion_func(void *opaque
, const char *str
)
257 readline_set_completion_index(readline_state
, strlen(str
));
258 qemuio_complete_command(str
, completion_match
, NULL
);
261 static char *fetchline_readline(void)
265 readline_start(readline_state
, get_prompt(), 0, readline_func
, &line
);
271 readline_handle_byte(readline_state
, ch
);
276 #define MAXREADLINESZ 1024
277 static char *fetchline_fgets(void)
279 char *p
, *line
= g_malloc(MAXREADLINESZ
);
281 if (!fgets(line
, MAXREADLINESZ
, stdin
)) {
286 p
= line
+ strlen(line
);
287 if (p
!= line
&& p
[-1] == '\n') {
294 static char *fetchline(void)
296 if (readline_state
) {
297 return fetchline_readline();
299 return fetchline_fgets();
303 static void prep_fetchline(void *opaque
)
305 int *fetchable
= opaque
;
307 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
311 static void command_loop(void)
313 int i
, done
= 0, fetchable
= 0, prompted
= 0;
316 for (i
= 0; !done
&& i
< ncmdline
; i
++) {
317 done
= qemuio_command(qemuio_bs
, cmdline
[i
]);
326 printf("%s", get_prompt());
328 qemu_set_fd_handler(STDIN_FILENO
, prep_fetchline
, NULL
, &fetchable
);
332 main_loop_wait(false);
342 done
= qemuio_command(qemuio_bs
, input
);
348 qemu_set_fd_handler(STDIN_FILENO
, NULL
, NULL
, NULL
);
351 static void add_user_command(char *optarg
)
353 cmdline
= g_renew(char *, cmdline
, ++ncmdline
);
354 cmdline
[ncmdline
-1] = optarg
;
357 static void reenable_tty_echo(void)
359 qemu_set_tty_echo(STDIN_FILENO
, true);
362 int main(int argc
, char **argv
)
366 const char *sopt
= "hVc:d:rsnmgkt:T:";
367 const struct option lopt
[] = {
368 { "help", 0, NULL
, 'h' },
369 { "version", 0, NULL
, 'V' },
370 { "offset", 1, NULL
, 'o' },
371 { "cmd", 1, NULL
, 'c' },
372 { "read-only", 0, NULL
, 'r' },
373 { "snapshot", 0, NULL
, 's' },
374 { "nocache", 0, NULL
, 'n' },
375 { "misalign", 0, NULL
, 'm' },
376 { "growable", 0, NULL
, 'g' },
377 { "native-aio", 0, NULL
, 'k' },
378 { "discard", 1, NULL
, 'd' },
379 { "cache", 1, NULL
, 't' },
380 { "trace", 1, NULL
, 'T' },
385 int flags
= BDRV_O_UNMAP
;
386 Error
*local_error
= NULL
;
389 signal(SIGPIPE
, SIG_IGN
);
392 progname
= basename(argv
[0]);
393 qemu_init_exec_dir(argv
[0]);
395 while ((c
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_index
)) != -1) {
398 flags
|= BDRV_O_SNAPSHOT
;
401 flags
|= BDRV_O_NOCACHE
| BDRV_O_CACHE_WB
;
404 if (bdrv_parse_discard_flags(optarg
, &flags
) < 0) {
405 error_report("Invalid discard option: %s", optarg
);
410 add_user_command(optarg
);
416 qemuio_misalign
= true;
422 flags
|= BDRV_O_NATIVE_AIO
;
425 if (bdrv_parse_cache_flags(optarg
, &flags
) < 0) {
426 error_report("Invalid cache option: %s", optarg
);
431 if (!trace_init_backends(optarg
, NULL
)) {
432 exit(1); /* error message will have been printed */
436 printf("%s version %s\n", progname
, QEMU_VERSION
);
447 if ((argc
- optind
) > 1) {
452 if (qemu_init_main_loop(&local_error
)) {
453 error_report("%s", error_get_pretty(local_error
));
454 error_free(local_error
);
459 /* initialize commands */
460 qemuio_add_command(&quit_cmd
);
461 qemuio_add_command(&open_cmd
);
462 qemuio_add_command(&close_cmd
);
464 if (isatty(STDIN_FILENO
)) {
465 readline_state
= readline_init(readline_printf_func
,
468 readline_completion_func
);
469 qemu_set_tty_echo(STDIN_FILENO
, false);
470 atexit(reenable_tty_echo
);
473 /* open the device */
475 flags
|= BDRV_O_RDWR
;
478 if ((argc
- optind
) == 1) {
479 openfile(argv
[optind
], flags
, growable
, NULL
);
484 * Make sure all outstanding requests complete before the program exits.
489 bdrv_unref(qemuio_bs
);
491 g_free(readline_state
);