block: Connect BlockBackend to BlockDriverState
[qemu/cris-port.git] / qemu-io.c
blob8380734b08fb44bf558c80bd64a20a18548294d7
1 /*
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.
9 */
10 #include <sys/time.h>
11 #include <sys/types.h>
12 #include <stdarg.h>
13 #include <stdio.h>
14 #include <getopt.h>
15 #include <libgen.h>
17 #include "qemu-io.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;
31 static BlockDriverState *qemuio_bs;
33 /* qemu-io commands passed using -c */
34 static int ncmdline;
35 static char **cmdline;
37 static ReadLineState *readline_state;
39 static int close_f(BlockDriverState *bs, int argc, char **argv)
41 bdrv_unref(bs);
42 blk_unref(qemuio_blk);
43 qemuio_bs = NULL;
44 qemuio_blk = NULL;
45 return 0;
48 static const cmdinfo_t close_cmd = {
49 .name = "close",
50 .altname = "c",
51 .cfunc = close_f,
52 .oneline = "close the current open file",
55 static int openfile(char *name, int flags, int growable, QDict *opts)
57 Error *local_err = NULL;
59 if (qemuio_bs) {
60 fprintf(stderr, "file open already, try 'help close'\n");
61 QDECREF(opts);
62 return 1;
65 qemuio_blk = blk_new_with_bs("hda", &error_abort);
66 qemuio_bs = blk_bs(qemuio_blk);
68 if (growable) {
69 flags |= BDRV_O_PROTOCOL;
72 if (bdrv_open(&qemuio_bs, name, NULL, opts, flags, NULL, &local_err) < 0) {
73 fprintf(stderr, "%s: can't open%s%s: %s\n", progname,
74 name ? " device " : "", name ?: "",
75 error_get_pretty(local_err));
76 error_free(local_err);
77 bdrv_unref(qemuio_bs);
78 blk_unref(qemuio_blk);
79 qemuio_bs = NULL;
80 qemuio_blk = NULL;
81 return 1;
84 return 0;
87 static void open_help(void)
89 printf(
90 "\n"
91 " opens a new file in the requested mode\n"
92 "\n"
93 " Example:\n"
94 " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
95 "\n"
96 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
97 " -r, -- open file read-only\n"
98 " -s, -- use snapshot file\n"
99 " -n, -- disable host cache\n"
100 " -g, -- allow file to grow (only applies to protocols)\n"
101 " -o, -- options to be given to the block driver"
102 "\n");
105 static int open_f(BlockDriverState *bs, int argc, char **argv);
107 static const cmdinfo_t open_cmd = {
108 .name = "open",
109 .altname = "o",
110 .cfunc = open_f,
111 .argmin = 1,
112 .argmax = -1,
113 .flags = CMD_NOFILE_OK,
114 .args = "[-Crsn] [-o options] [path]",
115 .oneline = "open the file specified by path",
116 .help = open_help,
119 static QemuOptsList empty_opts = {
120 .name = "drive",
121 .merge_lists = true,
122 .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head),
123 .desc = {
124 /* no elements => accept any params */
125 { /* end of list */ }
129 static int open_f(BlockDriverState *bs, int argc, char **argv)
131 int flags = 0;
132 int readonly = 0;
133 int growable = 0;
134 int c;
135 QemuOpts *qopts;
136 QDict *opts;
138 while ((c = getopt(argc, argv, "snrgo:")) != EOF) {
139 switch (c) {
140 case 's':
141 flags |= BDRV_O_SNAPSHOT;
142 break;
143 case 'n':
144 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
145 break;
146 case 'r':
147 readonly = 1;
148 break;
149 case 'g':
150 growable = 1;
151 break;
152 case 'o':
153 if (!qemu_opts_parse(&empty_opts, optarg, 0)) {
154 printf("could not parse option list -- %s\n", optarg);
155 qemu_opts_reset(&empty_opts);
156 return 0;
158 break;
159 default:
160 qemu_opts_reset(&empty_opts);
161 return qemuio_command_usage(&open_cmd);
165 if (!readonly) {
166 flags |= BDRV_O_RDWR;
169 qopts = qemu_opts_find(&empty_opts, NULL);
170 opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL;
171 qemu_opts_reset(&empty_opts);
173 if (optind == argc - 1) {
174 return openfile(argv[optind], flags, growable, opts);
175 } else if (optind == argc) {
176 return openfile(NULL, flags, growable, opts);
177 } else {
178 QDECREF(opts);
179 return qemuio_command_usage(&open_cmd);
183 static int quit_f(BlockDriverState *bs, int argc, char **argv)
185 return 1;
188 static const cmdinfo_t quit_cmd = {
189 .name = "quit",
190 .altname = "q",
191 .cfunc = quit_f,
192 .argmin = -1,
193 .argmax = -1,
194 .flags = CMD_FLAG_GLOBAL,
195 .oneline = "exit the program",
198 static void usage(const char *name)
200 printf(
201 "Usage: %s [-h] [-V] [-rsnm] [-c STRING] ... [file]\n"
202 "QEMU Disk exerciser\n"
203 "\n"
204 " -c, --cmd STRING execute command with its arguments\n"
205 " from the given string\n"
206 " -r, --read-only export read-only\n"
207 " -s, --snapshot use snapshot file\n"
208 " -n, --nocache disable host cache\n"
209 " -g, --growable allow file to grow (only applies to protocols)\n"
210 " -m, --misalign misalign allocations for O_DIRECT\n"
211 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
212 " -t, --cache=MODE use the given cache mode for the image\n"
213 " -T, --trace FILE enable trace events listed in the given file\n"
214 " -h, --help display this help and exit\n"
215 " -V, --version output version information and exit\n"
216 "\n"
217 "See '%s -c help' for information on available commands."
218 "\n",
219 name, name);
222 static char *get_prompt(void)
224 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
226 if (!prompt[0]) {
227 snprintf(prompt, sizeof(prompt), "%s> ", progname);
230 return prompt;
233 static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque,
234 const char *fmt, ...)
236 va_list ap;
237 va_start(ap, fmt);
238 vprintf(fmt, ap);
239 va_end(ap);
242 static void readline_flush_func(void *opaque)
244 fflush(stdout);
247 static void readline_func(void *opaque, const char *str, void *readline_opaque)
249 char **line = readline_opaque;
250 *line = g_strdup(str);
253 static void completion_match(const char *cmd, void *opaque)
255 readline_add_completion(readline_state, cmd);
258 static void readline_completion_func(void *opaque, const char *str)
260 readline_set_completion_index(readline_state, strlen(str));
261 qemuio_complete_command(str, completion_match, NULL);
264 static char *fetchline_readline(void)
266 char *line = NULL;
268 readline_start(readline_state, get_prompt(), 0, readline_func, &line);
269 while (!line) {
270 int ch = getchar();
271 if (ch == EOF) {
272 break;
274 readline_handle_byte(readline_state, ch);
276 return line;
279 #define MAXREADLINESZ 1024
280 static char *fetchline_fgets(void)
282 char *p, *line = g_malloc(MAXREADLINESZ);
284 if (!fgets(line, MAXREADLINESZ, stdin)) {
285 g_free(line);
286 return NULL;
289 p = line + strlen(line);
290 if (p != line && p[-1] == '\n') {
291 p[-1] = '\0';
294 return line;
297 static char *fetchline(void)
299 if (readline_state) {
300 return fetchline_readline();
301 } else {
302 return fetchline_fgets();
306 static void prep_fetchline(void *opaque)
308 int *fetchable = opaque;
310 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
311 *fetchable= 1;
314 static void command_loop(void)
316 int i, done = 0, fetchable = 0, prompted = 0;
317 char *input;
319 for (i = 0; !done && i < ncmdline; i++) {
320 done = qemuio_command(qemuio_bs, cmdline[i]);
322 if (cmdline) {
323 g_free(cmdline);
324 return;
327 while (!done) {
328 if (!prompted) {
329 printf("%s", get_prompt());
330 fflush(stdout);
331 qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable);
332 prompted = 1;
335 main_loop_wait(false);
337 if (!fetchable) {
338 continue;
341 input = fetchline();
342 if (input == NULL) {
343 break;
345 done = qemuio_command(qemuio_bs, input);
346 g_free(input);
348 prompted = 0;
349 fetchable = 0;
351 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
354 static void add_user_command(char *optarg)
356 cmdline = g_renew(char *, cmdline, ++ncmdline);
357 cmdline[ncmdline-1] = optarg;
360 static void reenable_tty_echo(void)
362 qemu_set_tty_echo(STDIN_FILENO, true);
365 int main(int argc, char **argv)
367 int readonly = 0;
368 int growable = 0;
369 const char *sopt = "hVc:d:rsnmgkt:T:";
370 const struct option lopt[] = {
371 { "help", 0, NULL, 'h' },
372 { "version", 0, NULL, 'V' },
373 { "offset", 1, NULL, 'o' },
374 { "cmd", 1, NULL, 'c' },
375 { "read-only", 0, NULL, 'r' },
376 { "snapshot", 0, NULL, 's' },
377 { "nocache", 0, NULL, 'n' },
378 { "misalign", 0, NULL, 'm' },
379 { "growable", 0, NULL, 'g' },
380 { "native-aio", 0, NULL, 'k' },
381 { "discard", 1, NULL, 'd' },
382 { "cache", 1, NULL, 't' },
383 { "trace", 1, NULL, 'T' },
384 { NULL, 0, NULL, 0 }
386 int c;
387 int opt_index = 0;
388 int flags = BDRV_O_UNMAP;
389 Error *local_error = NULL;
391 #ifdef CONFIG_POSIX
392 signal(SIGPIPE, SIG_IGN);
393 #endif
395 progname = basename(argv[0]);
396 qemu_init_exec_dir(argv[0]);
398 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
399 switch (c) {
400 case 's':
401 flags |= BDRV_O_SNAPSHOT;
402 break;
403 case 'n':
404 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
405 break;
406 case 'd':
407 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
408 error_report("Invalid discard option: %s", optarg);
409 exit(1);
411 break;
412 case 'c':
413 add_user_command(optarg);
414 break;
415 case 'r':
416 readonly = 1;
417 break;
418 case 'm':
419 qemuio_misalign = true;
420 break;
421 case 'g':
422 growable = 1;
423 break;
424 case 'k':
425 flags |= BDRV_O_NATIVE_AIO;
426 break;
427 case 't':
428 if (bdrv_parse_cache_flags(optarg, &flags) < 0) {
429 error_report("Invalid cache option: %s", optarg);
430 exit(1);
432 break;
433 case 'T':
434 if (!trace_init_backends(optarg, NULL)) {
435 exit(1); /* error message will have been printed */
437 break;
438 case 'V':
439 printf("%s version %s\n", progname, QEMU_VERSION);
440 exit(0);
441 case 'h':
442 usage(progname);
443 exit(0);
444 default:
445 usage(progname);
446 exit(1);
450 if ((argc - optind) > 1) {
451 usage(progname);
452 exit(1);
455 if (qemu_init_main_loop(&local_error)) {
456 error_report("%s", error_get_pretty(local_error));
457 error_free(local_error);
458 exit(1);
460 bdrv_init();
462 /* initialize commands */
463 qemuio_add_command(&quit_cmd);
464 qemuio_add_command(&open_cmd);
465 qemuio_add_command(&close_cmd);
467 if (isatty(STDIN_FILENO)) {
468 readline_state = readline_init(readline_printf_func,
469 readline_flush_func,
470 NULL,
471 readline_completion_func);
472 qemu_set_tty_echo(STDIN_FILENO, false);
473 atexit(reenable_tty_echo);
476 /* open the device */
477 if (!readonly) {
478 flags |= BDRV_O_RDWR;
481 if ((argc - optind) == 1) {
482 openfile(argv[optind], flags, growable, NULL);
484 command_loop();
487 * Make sure all outstanding requests complete before the program exits.
489 bdrv_drain_all();
491 if (qemuio_bs) {
492 bdrv_unref(qemuio_bs);
494 blk_unref(qemuio_blk);
495 g_free(readline_state);
496 return 0;