]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-io.c
qemu-nbd: Use blk_new_open() in main()
[mirror_qemu.git] / qemu-io.c
CommitLineData
e3aff4f6
AL
1/*
2 * Command line utility to exercise the QEMU I/O path.
3 *
4 * Copyright (C) 2009 Red Hat, Inc.
5 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
6 *
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 */
c32d766a 10#include <sys/time.h>
e3aff4f6
AL
11#include <sys/types.h>
12#include <stdarg.h>
13#include <stdio.h>
14#include <getopt.h>
c32d766a 15#include <libgen.h>
e3aff4f6 16
3d21994f 17#include "qemu-io.h"
1de7afc9 18#include "qemu/main-loop.h"
b543c5cd
HR
19#include "qemu/option.h"
20#include "qemu/config-file.h"
0cf17e18 21#include "qemu/readline.h"
26f54e9a 22#include "sysemu/block-backend.h"
737e150e 23#include "block/block_int.h"
d7bb72c8 24#include "trace/control.h"
e3aff4f6 25
43642b38 26#define CMD_NOFILE_OK 0x01
e3aff4f6 27
f9883880 28static char *progname;
e3aff4f6 29
26f54e9a 30static BlockBackend *qemuio_blk;
f9883880 31static BlockDriverState *qemuio_bs;
191c2890 32
d1174f13
KW
33/* qemu-io commands passed using -c */
34static int ncmdline;
35static char **cmdline;
36
0cf17e18
SH
37static ReadLineState *readline_state;
38
734c3b85 39static int close_f(BlockDriverState *bs, int argc, char **argv)
e3aff4f6 40{
26f54e9a 41 blk_unref(qemuio_blk);
734c3b85 42 qemuio_bs = NULL;
26f54e9a 43 qemuio_blk = NULL;
43642b38 44 return 0;
e3aff4f6
AL
45}
46
47static const cmdinfo_t close_cmd = {
43642b38
DN
48 .name = "close",
49 .altname = "c",
50 .cfunc = close_f,
51 .oneline = "close the current open file",
e3aff4f6
AL
52};
53
be6273da
KW
54static int openfile(char *name, BlockDriver *drv, int flags, int growable,
55 QDict *opts)
e3aff4f6 56{
34b5d2c6
HR
57 Error *local_err = NULL;
58
734c3b85 59 if (qemuio_bs) {
43642b38 60 fprintf(stderr, "file open already, try 'help close'\n");
29f2601a 61 QDECREF(opts);
43642b38
DN
62 return 1;
63 }
64
7e7d56d9
MA
65 qemuio_blk = blk_new_with_bs("hda", &error_abort);
66 qemuio_bs = blk_bs(qemuio_blk);
dbb651c4 67
43642b38 68 if (growable) {
dbb651c4
MA
69 flags |= BDRV_O_PROTOCOL;
70 }
71
be6273da 72 if (bdrv_open(&qemuio_bs, name, NULL, opts, flags, drv, &local_err) < 0) {
dbb651c4
MA
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);
26f54e9a 77 blk_unref(qemuio_blk);
dbb651c4 78 qemuio_bs = NULL;
26f54e9a 79 qemuio_blk = NULL;
dbb651c4 80 return 1;
43642b38
DN
81 }
82
83 return 0;
e3aff4f6
AL
84}
85
43642b38 86static void open_help(void)
e3aff4f6 87{
43642b38 88 printf(
e3aff4f6
AL
89"\n"
90" opens a new file in the requested mode\n"
91"\n"
92" Example:\n"
93" 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
94"\n"
95" Opens a file for subsequent use by all of the other qemu-io commands.\n"
e3aff4f6
AL
96" -r, -- open file read-only\n"
97" -s, -- use snapshot file\n"
98" -n, -- disable host cache\n"
b543c5cd
HR
99" -g, -- allow file to grow (only applies to protocols)\n"
100" -o, -- options to be given to the block driver"
e3aff4f6
AL
101"\n");
102}
103
734c3b85 104static int open_f(BlockDriverState *bs, int argc, char **argv);
22a2bdcb
BS
105
106static const cmdinfo_t open_cmd = {
43642b38
DN
107 .name = "open",
108 .altname = "o",
109 .cfunc = open_f,
110 .argmin = 1,
111 .argmax = -1,
112 .flags = CMD_NOFILE_OK,
b543c5cd 113 .args = "[-Crsn] [-o options] [path]",
43642b38
DN
114 .oneline = "open the file specified by path",
115 .help = open_help,
22a2bdcb 116};
e3aff4f6 117
b543c5cd
HR
118static QemuOptsList empty_opts = {
119 .name = "drive",
443422fd 120 .merge_lists = true,
b543c5cd
HR
121 .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head),
122 .desc = {
123 /* no elements => accept any params */
124 { /* end of list */ }
125 },
126};
127
734c3b85 128static int open_f(BlockDriverState *bs, int argc, char **argv)
e3aff4f6 129{
43642b38
DN
130 int flags = 0;
131 int readonly = 0;
132 int growable = 0;
133 int c;
b543c5cd 134 QemuOpts *qopts;
443422fd 135 QDict *opts;
43642b38 136
b543c5cd 137 while ((c = getopt(argc, argv, "snrgo:")) != EOF) {
43642b38
DN
138 switch (c) {
139 case 's':
140 flags |= BDRV_O_SNAPSHOT;
141 break;
142 case 'n':
143 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
144 break;
145 case 'r':
146 readonly = 1;
147 break;
148 case 'g':
149 growable = 1;
150 break;
b543c5cd 151 case 'o':
443422fd 152 if (!qemu_opts_parse(&empty_opts, optarg, 0)) {
b543c5cd 153 printf("could not parse option list -- %s\n", optarg);
443422fd 154 qemu_opts_reset(&empty_opts);
b543c5cd
HR
155 return 0;
156 }
b543c5cd 157 break;
43642b38 158 default:
443422fd 159 qemu_opts_reset(&empty_opts);
c2cdf5c5 160 return qemuio_command_usage(&open_cmd);
f5edb014 161 }
43642b38
DN
162 }
163
164 if (!readonly) {
165 flags |= BDRV_O_RDWR;
166 }
e3aff4f6 167
443422fd
MA
168 qopts = qemu_opts_find(&empty_opts, NULL);
169 opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL;
170 qemu_opts_reset(&empty_opts);
171
fd0fee34 172 if (optind == argc - 1) {
be6273da 173 return openfile(argv[optind], NULL, flags, growable, opts);
fd0fee34 174 } else if (optind == argc) {
be6273da 175 return openfile(NULL, NULL, flags, growable, opts);
fd0fee34 176 } else {
29f2601a 177 QDECREF(opts);
c2cdf5c5 178 return qemuio_command_usage(&open_cmd);
43642b38 179 }
e3aff4f6
AL
180}
181
e681be7e
KW
182static int quit_f(BlockDriverState *bs, int argc, char **argv)
183{
184 return 1;
185}
186
187static const cmdinfo_t quit_cmd = {
188 .name = "quit",
189 .altname = "q",
190 .cfunc = quit_f,
191 .argmin = -1,
192 .argmax = -1,
193 .flags = CMD_FLAG_GLOBAL,
194 .oneline = "exit the program",
195};
196
e3aff4f6
AL
197static void usage(const char *name)
198{
43642b38 199 printf(
be6273da 200"Usage: %s [-h] [-V] [-rsnm] [-f FMT] [-c STRING] ... [file]\n"
84844a20 201"QEMU Disk exerciser\n"
e3aff4f6 202"\n"
d208cc35
MK
203" -c, --cmd STRING execute command with its arguments\n"
204" from the given string\n"
be6273da 205" -f, --format FMT specifies the block driver to use\n"
e3aff4f6
AL
206" -r, --read-only export read-only\n"
207" -s, --snapshot use snapshot file\n"
208" -n, --nocache disable host cache\n"
1db6947d 209" -g, --growable allow file to grow (only applies to protocols)\n"
e3aff4f6 210" -m, --misalign misalign allocations for O_DIRECT\n"
5c6c3a6c 211" -k, --native-aio use kernel AIO implementation (on Linux only)\n"
592fa070 212" -t, --cache=MODE use the given cache mode for the image\n"
d7bb72c8 213" -T, --trace FILE enable trace events listed in the given file\n"
e3aff4f6
AL
214" -h, --help display this help and exit\n"
215" -V, --version output version information and exit\n"
d208cc35
MK
216"\n"
217"See '%s -c help' for information on available commands."
e3aff4f6 218"\n",
d208cc35 219 name, name);
e3aff4f6
AL
220}
221
d1174f13
KW
222static char *get_prompt(void)
223{
224 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
225
226 if (!prompt[0]) {
227 snprintf(prompt, sizeof(prompt), "%s> ", progname);
228 }
229
230 return prompt;
231}
232
d5d1507b
SW
233static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque,
234 const char *fmt, ...)
d1174f13 235{
0cf17e18
SH
236 va_list ap;
237 va_start(ap, fmt);
238 vprintf(fmt, ap);
239 va_end(ap);
d1174f13 240}
0cf17e18
SH
241
242static void readline_flush_func(void *opaque)
d1174f13 243{
0cf17e18 244 fflush(stdout);
d1174f13
KW
245}
246
0cf17e18 247static void readline_func(void *opaque, const char *str, void *readline_opaque)
d1174f13 248{
0cf17e18
SH
249 char **line = readline_opaque;
250 *line = g_strdup(str);
251}
252
4694020d
SH
253static void completion_match(const char *cmd, void *opaque)
254{
255 readline_add_completion(readline_state, cmd);
256}
257
0cf17e18
SH
258static void readline_completion_func(void *opaque, const char *str)
259{
4694020d
SH
260 readline_set_completion_index(readline_state, strlen(str));
261 qemuio_complete_command(str, completion_match, NULL);
0cf17e18
SH
262}
263
264static char *fetchline_readline(void)
265{
266 char *line = NULL;
267
268 readline_start(readline_state, get_prompt(), 0, readline_func, &line);
269 while (!line) {
270 int ch = getchar();
271 if (ch == EOF) {
272 break;
d1174f13 273 }
0cf17e18 274 readline_handle_byte(readline_state, ch);
d1174f13
KW
275 }
276 return line;
277}
0cf17e18
SH
278
279#define MAXREADLINESZ 1024
280static char *fetchline_fgets(void)
d1174f13
KW
281{
282 char *p, *line = g_malloc(MAXREADLINESZ);
283
284 if (!fgets(line, MAXREADLINESZ, stdin)) {
285 g_free(line);
286 return NULL;
287 }
288
289 p = line + strlen(line);
290 if (p != line && p[-1] == '\n') {
291 p[-1] = '\0';
292 }
293
294 return line;
295}
0cf17e18
SH
296
297static char *fetchline(void)
298{
299 if (readline_state) {
300 return fetchline_readline();
301 } else {
302 return fetchline_fgets();
303 }
304}
d1174f13
KW
305
306static void prep_fetchline(void *opaque)
307{
308 int *fetchable = opaque;
309
310 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
311 *fetchable= 1;
312}
313
314static void command_loop(void)
315{
316 int i, done = 0, fetchable = 0, prompted = 0;
317 char *input;
318
319 for (i = 0; !done && i < ncmdline; i++) {
3d21994f 320 done = qemuio_command(qemuio_bs, cmdline[i]);
d1174f13
KW
321 }
322 if (cmdline) {
323 g_free(cmdline);
324 return;
325 }
326
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;
333 }
334
335 main_loop_wait(false);
336
337 if (!fetchable) {
338 continue;
339 }
340
341 input = fetchline();
342 if (input == NULL) {
343 break;
344 }
3d21994f 345 done = qemuio_command(qemuio_bs, input);
d1174f13
KW
346 g_free(input);
347
348 prompted = 0;
349 fetchable = 0;
350 }
351 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
352}
353
354static void add_user_command(char *optarg)
355{
5839e53b 356 cmdline = g_renew(char *, cmdline, ++ncmdline);
d1174f13
KW
357 cmdline[ncmdline-1] = optarg;
358}
359
0cf17e18
SH
360static void reenable_tty_echo(void)
361{
362 qemu_set_tty_echo(STDIN_FILENO, true);
363}
364
e3aff4f6
AL
365int main(int argc, char **argv)
366{
43642b38
DN
367 int readonly = 0;
368 int growable = 0;
be6273da 369 const char *sopt = "hVc:d:f:rsnmgkt:T:";
43642b38
DN
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' },
be6273da 375 { "format", 1, NULL, 'f' },
43642b38
DN
376 { "read-only", 0, NULL, 'r' },
377 { "snapshot", 0, NULL, 's' },
378 { "nocache", 0, NULL, 'n' },
379 { "misalign", 0, NULL, 'm' },
380 { "growable", 0, NULL, 'g' },
381 { "native-aio", 0, NULL, 'k' },
9e8f1835 382 { "discard", 1, NULL, 'd' },
592fa070 383 { "cache", 1, NULL, 't' },
d7bb72c8 384 { "trace", 1, NULL, 'T' },
43642b38
DN
385 { NULL, 0, NULL, 0 }
386 };
387 int c;
388 int opt_index = 0;
9e8f1835 389 int flags = BDRV_O_UNMAP;
be6273da 390 BlockDriver *drv = NULL;
2f78e491 391 Error *local_error = NULL;
43642b38 392
526eda14
MK
393#ifdef CONFIG_POSIX
394 signal(SIGPIPE, SIG_IGN);
395#endif
396
43642b38 397 progname = basename(argv[0]);
10f5bff6 398 qemu_init_exec_dir(argv[0]);
43642b38 399
be6273da
KW
400 bdrv_init();
401
43642b38
DN
402 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
403 switch (c) {
404 case 's':
405 flags |= BDRV_O_SNAPSHOT;
406 break;
407 case 'n':
408 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
409 break;
9e8f1835
PB
410 case 'd':
411 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
412 error_report("Invalid discard option: %s", optarg);
413 exit(1);
414 }
415 break;
be6273da
KW
416 case 'f':
417 drv = bdrv_find_format(optarg);
418 if (!drv) {
419 error_report("Invalid format '%s'", optarg);
420 exit(EXIT_FAILURE);
421 }
422 break;
43642b38
DN
423 case 'c':
424 add_user_command(optarg);
425 break;
426 case 'r':
427 readonly = 1;
428 break;
429 case 'm':
f9883880 430 qemuio_misalign = true;
43642b38
DN
431 break;
432 case 'g':
433 growable = 1;
434 break;
435 case 'k':
436 flags |= BDRV_O_NATIVE_AIO;
437 break;
592fa070
KW
438 case 't':
439 if (bdrv_parse_cache_flags(optarg, &flags) < 0) {
440 error_report("Invalid cache option: %s", optarg);
441 exit(1);
442 }
443 break;
d7bb72c8 444 case 'T':
5b808275 445 if (!trace_init_backends(optarg, NULL)) {
d7bb72c8
SH
446 exit(1); /* error message will have been printed */
447 }
448 break;
43642b38 449 case 'V':
02da386a 450 printf("%s version %s\n", progname, QEMU_VERSION);
43642b38
DN
451 exit(0);
452 case 'h':
453 usage(progname);
454 exit(0);
455 default:
456 usage(progname);
457 exit(1);
f5edb014 458 }
43642b38
DN
459 }
460
461 if ((argc - optind) > 1) {
462 usage(progname);
463 exit(1);
464 }
e3aff4f6 465
2f78e491
CN
466 if (qemu_init_main_loop(&local_error)) {
467 error_report("%s", error_get_pretty(local_error));
468 error_free(local_error);
469 exit(1);
470 }
a57d1143 471
43642b38 472 /* initialize commands */
c2cdf5c5
KW
473 qemuio_add_command(&quit_cmd);
474 qemuio_add_command(&open_cmd);
475 qemuio_add_command(&close_cmd);
43642b38 476
0cf17e18
SH
477 if (isatty(STDIN_FILENO)) {
478 readline_state = readline_init(readline_printf_func,
479 readline_flush_func,
480 NULL,
481 readline_completion_func);
482 qemu_set_tty_echo(STDIN_FILENO, false);
483 atexit(reenable_tty_echo);
484 }
485
43642b38
DN
486 /* open the device */
487 if (!readonly) {
488 flags |= BDRV_O_RDWR;
489 }
490
491 if ((argc - optind) == 1) {
be6273da 492 openfile(argv[optind], drv, flags, growable, NULL);
43642b38
DN
493 }
494 command_loop();
e3aff4f6 495
43642b38 496 /*
922453bc 497 * Make sure all outstanding requests complete before the program exits.
43642b38 498 */
922453bc 499 bdrv_drain_all();
95533d5f 500
26f54e9a 501 blk_unref(qemuio_blk);
0cf17e18 502 g_free(readline_state);
43642b38 503 return 0;
e3aff4f6 504}