]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-io.c
sdhci: add support for v3 capabilities
[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 */
452fcdbc 10
80c71a24 11#include "qemu/osdep.h"
e3aff4f6 12#include <getopt.h>
c32d766a 13#include <libgen.h>
e3aff4f6 14
da34e65c 15#include "qapi/error.h"
3d21994f 16#include "qemu-io.h"
d49b6836 17#include "qemu/error-report.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"
e9a80859 22#include "qemu/log.h"
d49b6836 23#include "qapi/qmp/qstring.h"
452fcdbc 24#include "qapi/qmp/qdict.h"
9ba371b6 25#include "qom/object_interfaces.h"
26f54e9a 26#include "sysemu/block-backend.h"
737e150e 27#include "block/block_int.h"
d7bb72c8 28#include "trace/control.h"
c2297088 29#include "crypto/init.h"
4face32a 30#include "qemu-version.h"
e3aff4f6 31
43642b38 32#define CMD_NOFILE_OK 0x01
e3aff4f6 33
f9883880 34static char *progname;
e3aff4f6 35
26f54e9a 36static BlockBackend *qemuio_blk;
191c2890 37
d1174f13
KW
38/* qemu-io commands passed using -c */
39static int ncmdline;
40static char **cmdline;
499afa25 41static bool imageOpts;
d1174f13 42
0cf17e18
SH
43static ReadLineState *readline_state;
44
4c7b7e9b 45static int close_f(BlockBackend *blk, int argc, char **argv)
e3aff4f6 46{
26f54e9a 47 blk_unref(qemuio_blk);
26f54e9a 48 qemuio_blk = NULL;
43642b38 49 return 0;
e3aff4f6
AL
50}
51
52static const cmdinfo_t close_cmd = {
43642b38
DN
53 .name = "close",
54 .altname = "c",
55 .cfunc = close_f,
56 .oneline = "close the current open file",
e3aff4f6
AL
57};
58
459571f7
FZ
59static int openfile(char *name, int flags, bool writethrough, bool force_share,
60 QDict *opts)
e3aff4f6 61{
34b5d2c6
HR
62 Error *local_err = NULL;
63
1b58b438 64 if (qemuio_blk) {
b9884681 65 error_report("file open already, try 'help close'");
29f2601a 66 QDECREF(opts);
43642b38
DN
67 return 1;
68 }
69
459571f7
FZ
70 if (force_share) {
71 if (!opts) {
72 opts = qdict_new();
73 }
74 if (qdict_haskey(opts, BDRV_OPT_FORCE_SHARE)
75 && !qdict_get_bool(opts, BDRV_OPT_FORCE_SHARE)) {
76 error_report("-U conflicts with image options");
77 QDECREF(opts);
78 return 1;
79 }
579cf1d1 80 qdict_put_bool(opts, BDRV_OPT_FORCE_SHARE, true);
459571f7 81 }
efaa7c4e 82 qemuio_blk = blk_new_open(name, NULL, opts, flags, &local_err);
1b58b438 83 if (!qemuio_blk) {
b9884681
MA
84 error_reportf_err(local_err, "can't open%s%s: ",
85 name ? " device " : "", name ?: "");
dbb651c4 86 return 1;
43642b38
DN
87 }
88
e151fc16 89 blk_set_enable_write_cache(qemuio_blk, !writethrough);
8caf0212 90
43642b38 91 return 0;
e3aff4f6
AL
92}
93
43642b38 94static void open_help(void)
e3aff4f6 95{
43642b38 96 printf(
e3aff4f6
AL
97"\n"
98" opens a new file in the requested mode\n"
99"\n"
100" Example:\n"
e4e12bb2 101" 'open -n -o driver=raw /tmp/data' - opens raw data file read-write, uncached\n"
e3aff4f6
AL
102"\n"
103" Opens a file for subsequent use by all of the other qemu-io commands.\n"
e3aff4f6
AL
104" -r, -- open file read-only\n"
105" -s, -- use snapshot file\n"
0f40444c 106" -C, -- use copy-on-read\n"
b8d970f1 107" -n, -- disable host cache, short for -t none\n"
459571f7 108" -U, -- force shared permissions\n"
b8d970f1
EB
109" -k, -- use kernel AIO implementation (on Linux only)\n"
110" -t, -- use the given cache mode for the image\n"
111" -d, -- use the given discard mode for the image\n"
b543c5cd 112" -o, -- options to be given to the block driver"
e3aff4f6
AL
113"\n");
114}
115
4c7b7e9b 116static int open_f(BlockBackend *blk, int argc, char **argv);
22a2bdcb
BS
117
118static const cmdinfo_t open_cmd = {
43642b38
DN
119 .name = "open",
120 .altname = "o",
121 .cfunc = open_f,
122 .argmin = 1,
123 .argmax = -1,
124 .flags = CMD_NOFILE_OK,
0f40444c 125 .args = "[-rsCnkU] [-t cache] [-d discard] [-o options] [path]",
43642b38
DN
126 .oneline = "open the file specified by path",
127 .help = open_help,
22a2bdcb 128};
e3aff4f6 129
b543c5cd
HR
130static QemuOptsList empty_opts = {
131 .name = "drive",
443422fd 132 .merge_lists = true,
b543c5cd
HR
133 .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head),
134 .desc = {
135 /* no elements => accept any params */
136 { /* end of list */ }
137 },
138};
139
4c7b7e9b 140static int open_f(BlockBackend *blk, int argc, char **argv)
e3aff4f6 141{
b8d970f1 142 int flags = BDRV_O_UNMAP;
43642b38 143 int readonly = 0;
e151fc16 144 bool writethrough = true;
43642b38 145 int c;
b543c5cd 146 QemuOpts *qopts;
443422fd 147 QDict *opts;
459571f7 148 bool force_share = false;
43642b38 149
0f40444c 150 while ((c = getopt(argc, argv, "snCro:kt:d:U")) != -1) {
43642b38
DN
151 switch (c) {
152 case 's':
153 flags |= BDRV_O_SNAPSHOT;
154 break;
155 case 'n':
e151fc16
KW
156 flags |= BDRV_O_NOCACHE;
157 writethrough = false;
43642b38 158 break;
0f40444c
EB
159 case 'C':
160 flags |= BDRV_O_COPY_ON_READ;
161 break;
43642b38
DN
162 case 'r':
163 readonly = 1;
164 break;
b8d970f1
EB
165 case 'k':
166 flags |= BDRV_O_NATIVE_AIO;
167 break;
168 case 't':
169 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) {
170 error_report("Invalid cache option: %s", optarg);
171 qemu_opts_reset(&empty_opts);
172 return 0;
173 }
174 break;
175 case 'd':
176 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
177 error_report("Invalid discard option: %s", optarg);
178 qemu_opts_reset(&empty_opts);
179 return 0;
180 }
181 break;
b543c5cd 182 case 'o':
499afa25
DB
183 if (imageOpts) {
184 printf("--image-opts and 'open -o' are mutually exclusive\n");
b8d970f1 185 qemu_opts_reset(&empty_opts);
499afa25
DB
186 return 0;
187 }
70b94331 188 if (!qemu_opts_parse_noisily(&empty_opts, optarg, false)) {
443422fd 189 qemu_opts_reset(&empty_opts);
b543c5cd
HR
190 return 0;
191 }
b543c5cd 192 break;
459571f7
FZ
193 case 'U':
194 force_share = true;
195 break;
43642b38 196 default:
443422fd 197 qemu_opts_reset(&empty_opts);
c2cdf5c5 198 return qemuio_command_usage(&open_cmd);
f5edb014 199 }
43642b38
DN
200 }
201
202 if (!readonly) {
203 flags |= BDRV_O_RDWR;
204 }
e3aff4f6 205
499afa25
DB
206 if (imageOpts && (optind == argc - 1)) {
207 if (!qemu_opts_parse_noisily(&empty_opts, argv[optind], false)) {
208 qemu_opts_reset(&empty_opts);
209 return 0;
210 }
211 optind++;
212 }
213
443422fd
MA
214 qopts = qemu_opts_find(&empty_opts, NULL);
215 opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL;
216 qemu_opts_reset(&empty_opts);
217
fd0fee34 218 if (optind == argc - 1) {
64ebf556 219 openfile(argv[optind], flags, writethrough, force_share, opts);
fd0fee34 220 } else if (optind == argc) {
64ebf556 221 openfile(NULL, flags, writethrough, force_share, opts);
fd0fee34 222 } else {
29f2601a 223 QDECREF(opts);
64ebf556 224 qemuio_command_usage(&open_cmd);
43642b38 225 }
64ebf556 226 return 0;
e3aff4f6
AL
227}
228
4c7b7e9b 229static int quit_f(BlockBackend *blk, int argc, char **argv)
e681be7e
KW
230{
231 return 1;
232}
233
234static const cmdinfo_t quit_cmd = {
235 .name = "quit",
236 .altname = "q",
237 .cfunc = quit_f,
238 .argmin = -1,
239 .argmax = -1,
240 .flags = CMD_FLAG_GLOBAL,
241 .oneline = "exit the program",
242};
243
e3aff4f6
AL
244static void usage(const char *name)
245{
43642b38 246 printf(
e4e12bb2 247"Usage: %s [OPTIONS]... [-c STRING]... [file]\n"
84844a20 248"QEMU Disk exerciser\n"
e3aff4f6 249"\n"
9ba371b6
DB
250" --object OBJECTDEF define an object such as 'secret' for\n"
251" passwords and/or encryption keys\n"
e4e12bb2 252" --image-opts treat file as option string\n"
d208cc35
MK
253" -c, --cmd STRING execute command with its arguments\n"
254" from the given string\n"
be6273da 255" -f, --format FMT specifies the block driver to use\n"
e3aff4f6
AL
256" -r, --read-only export read-only\n"
257" -s, --snapshot use snapshot file\n"
e4e12bb2 258" -n, --nocache disable host cache, short for -t none\n"
0f40444c 259" -C, --copy-on-read enable copy-on-read\n"
e3aff4f6 260" -m, --misalign misalign allocations for O_DIRECT\n"
5c6c3a6c 261" -k, --native-aio use kernel AIO implementation (on Linux only)\n"
592fa070 262" -t, --cache=MODE use the given cache mode for the image\n"
e4e12bb2 263" -d, --discard=MODE use the given discard mode for the image\n"
e9a80859
DL
264" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
265" specify tracing options\n"
266" see qemu-img(1) man page for full description\n"
459571f7 267" -U, --force-share force shared permissions\n"
e3aff4f6
AL
268" -h, --help display this help and exit\n"
269" -V, --version output version information and exit\n"
d208cc35 270"\n"
f5048cb7
EB
271"See '%s -c help' for information on available commands.\n"
272"\n"
273QEMU_HELP_BOTTOM "\n",
d208cc35 274 name, name);
e3aff4f6
AL
275}
276
d1174f13
KW
277static char *get_prompt(void)
278{
279 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
280
281 if (!prompt[0]) {
282 snprintf(prompt, sizeof(prompt), "%s> ", progname);
283 }
284
285 return prompt;
286}
287
d5d1507b
SW
288static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque,
289 const char *fmt, ...)
d1174f13 290{
0cf17e18
SH
291 va_list ap;
292 va_start(ap, fmt);
293 vprintf(fmt, ap);
294 va_end(ap);
d1174f13 295}
0cf17e18
SH
296
297static void readline_flush_func(void *opaque)
d1174f13 298{
0cf17e18 299 fflush(stdout);
d1174f13
KW
300}
301
0cf17e18 302static void readline_func(void *opaque, const char *str, void *readline_opaque)
d1174f13 303{
0cf17e18
SH
304 char **line = readline_opaque;
305 *line = g_strdup(str);
306}
307
4694020d
SH
308static void completion_match(const char *cmd, void *opaque)
309{
310 readline_add_completion(readline_state, cmd);
311}
312
0cf17e18
SH
313static void readline_completion_func(void *opaque, const char *str)
314{
4694020d
SH
315 readline_set_completion_index(readline_state, strlen(str));
316 qemuio_complete_command(str, completion_match, NULL);
0cf17e18
SH
317}
318
319static char *fetchline_readline(void)
320{
321 char *line = NULL;
322
323 readline_start(readline_state, get_prompt(), 0, readline_func, &line);
324 while (!line) {
325 int ch = getchar();
326 if (ch == EOF) {
327 break;
d1174f13 328 }
0cf17e18 329 readline_handle_byte(readline_state, ch);
d1174f13
KW
330 }
331 return line;
332}
0cf17e18
SH
333
334#define MAXREADLINESZ 1024
335static char *fetchline_fgets(void)
d1174f13
KW
336{
337 char *p, *line = g_malloc(MAXREADLINESZ);
338
339 if (!fgets(line, MAXREADLINESZ, stdin)) {
340 g_free(line);
341 return NULL;
342 }
343
344 p = line + strlen(line);
345 if (p != line && p[-1] == '\n') {
346 p[-1] = '\0';
347 }
348
349 return line;
350}
0cf17e18
SH
351
352static char *fetchline(void)
353{
354 if (readline_state) {
355 return fetchline_readline();
356 } else {
357 return fetchline_fgets();
358 }
359}
d1174f13
KW
360
361static void prep_fetchline(void *opaque)
362{
363 int *fetchable = opaque;
364
365 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
366 *fetchable= 1;
367}
368
369static void command_loop(void)
370{
371 int i, done = 0, fetchable = 0, prompted = 0;
372 char *input;
373
374 for (i = 0; !done && i < ncmdline; i++) {
4c7b7e9b 375 done = qemuio_command(qemuio_blk, cmdline[i]);
d1174f13
KW
376 }
377 if (cmdline) {
378 g_free(cmdline);
379 return;
380 }
381
382 while (!done) {
383 if (!prompted) {
384 printf("%s", get_prompt());
385 fflush(stdout);
386 qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable);
387 prompted = 1;
388 }
389
390 main_loop_wait(false);
391
392 if (!fetchable) {
393 continue;
394 }
395
396 input = fetchline();
397 if (input == NULL) {
398 break;
399 }
4c7b7e9b 400 done = qemuio_command(qemuio_blk, input);
d1174f13
KW
401 g_free(input);
402
403 prompted = 0;
404 fetchable = 0;
405 }
406 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
407}
408
409static void add_user_command(char *optarg)
410{
5839e53b 411 cmdline = g_renew(char *, cmdline, ++ncmdline);
d1174f13
KW
412 cmdline[ncmdline-1] = optarg;
413}
414
0cf17e18
SH
415static void reenable_tty_echo(void)
416{
417 qemu_set_tty_echo(STDIN_FILENO, true);
418}
419
9ba371b6
DB
420enum {
421 OPTION_OBJECT = 256,
499afa25 422 OPTION_IMAGE_OPTS = 257,
9ba371b6
DB
423};
424
425static QemuOptsList qemu_object_opts = {
426 .name = "object",
427 .implied_opt_name = "qom-type",
428 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
429 .desc = {
430 { }
431 },
432};
433
434
499afa25
DB
435static QemuOptsList file_opts = {
436 .name = "file",
437 .implied_opt_name = "file",
438 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
439 .desc = {
440 /* no elements => accept any params */
441 { /* end of list */ }
442 },
443};
444
e3aff4f6
AL
445int main(int argc, char **argv)
446{
43642b38 447 int readonly = 0;
0f40444c 448 const char *sopt = "hVc:d:f:rsnCmkt:T:U";
43642b38 449 const struct option lopt[] = {
a513416e
DB
450 { "help", no_argument, NULL, 'h' },
451 { "version", no_argument, NULL, 'V' },
a513416e
DB
452 { "cmd", required_argument, NULL, 'c' },
453 { "format", required_argument, NULL, 'f' },
454 { "read-only", no_argument, NULL, 'r' },
455 { "snapshot", no_argument, NULL, 's' },
456 { "nocache", no_argument, NULL, 'n' },
0f40444c 457 { "copy-on-read", no_argument, NULL, 'C' },
a513416e
DB
458 { "misalign", no_argument, NULL, 'm' },
459 { "native-aio", no_argument, NULL, 'k' },
460 { "discard", required_argument, NULL, 'd' },
461 { "cache", required_argument, NULL, 't' },
462 { "trace", required_argument, NULL, 'T' },
463 { "object", required_argument, NULL, OPTION_OBJECT },
464 { "image-opts", no_argument, NULL, OPTION_IMAGE_OPTS },
459571f7 465 { "force-share", no_argument, 0, 'U'},
43642b38
DN
466 { NULL, 0, NULL, 0 }
467 };
468 int c;
469 int opt_index = 0;
9e8f1835 470 int flags = BDRV_O_UNMAP;
e151fc16 471 bool writethrough = true;
2f78e491 472 Error *local_error = NULL;
1b58b438 473 QDict *opts = NULL;
499afa25 474 const char *format = NULL;
e9a80859 475 char *trace_file = NULL;
459571f7 476 bool force_share = false;
43642b38 477
526eda14
MK
478#ifdef CONFIG_POSIX
479 signal(SIGPIPE, SIG_IGN);
480#endif
481
fe4db84d 482 module_call_init(MODULE_INIT_TRACE);
43642b38 483 progname = basename(argv[0]);
10f5bff6 484 qemu_init_exec_dir(argv[0]);
43642b38 485
e8f2d272 486 qcrypto_init(&error_fatal);
c2297088 487
064097d9 488 module_call_init(MODULE_INIT_QOM);
9ba371b6 489 qemu_add_opts(&qemu_object_opts);
e9a80859 490 qemu_add_opts(&qemu_trace_opts);
be6273da
KW
491 bdrv_init();
492
43642b38
DN
493 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
494 switch (c) {
495 case 's':
496 flags |= BDRV_O_SNAPSHOT;
497 break;
498 case 'n':
e151fc16
KW
499 flags |= BDRV_O_NOCACHE;
500 writethrough = false;
43642b38 501 break;
0f40444c
EB
502 case 'C':
503 flags |= BDRV_O_COPY_ON_READ;
504 break;
9e8f1835
PB
505 case 'd':
506 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
507 error_report("Invalid discard option: %s", optarg);
508 exit(1);
509 }
510 break;
be6273da 511 case 'f':
499afa25 512 format = optarg;
be6273da 513 break;
43642b38
DN
514 case 'c':
515 add_user_command(optarg);
516 break;
517 case 'r':
518 readonly = 1;
519 break;
520 case 'm':
f9883880 521 qemuio_misalign = true;
43642b38 522 break;
43642b38
DN
523 case 'k':
524 flags |= BDRV_O_NATIVE_AIO;
525 break;
592fa070 526 case 't':
e151fc16 527 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) {
592fa070
KW
528 error_report("Invalid cache option: %s", optarg);
529 exit(1);
530 }
531 break;
d7bb72c8 532 case 'T':
e9a80859
DL
533 g_free(trace_file);
534 trace_file = trace_opt_parse(optarg);
d7bb72c8 535 break;
43642b38 536 case 'V':
4face32a
EB
537 printf("%s version " QEMU_VERSION QEMU_PKGVERSION "\n"
538 QEMU_COPYRIGHT "\n", progname);
43642b38
DN
539 exit(0);
540 case 'h':
541 usage(progname);
542 exit(0);
459571f7
FZ
543 case 'U':
544 force_share = true;
545 break;
9ba371b6 546 case OPTION_OBJECT: {
499afa25 547 QemuOpts *qopts;
9ba371b6
DB
548 qopts = qemu_opts_parse_noisily(&qemu_object_opts,
549 optarg, true);
550 if (!qopts) {
551 exit(1);
552 }
553 } break;
499afa25
DB
554 case OPTION_IMAGE_OPTS:
555 imageOpts = true;
556 break;
43642b38
DN
557 default:
558 usage(progname);
559 exit(1);
f5edb014 560 }
43642b38
DN
561 }
562
563 if ((argc - optind) > 1) {
564 usage(progname);
565 exit(1);
566 }
e3aff4f6 567
499afa25
DB
568 if (format && imageOpts) {
569 error_report("--image-opts and -f are mutually exclusive");
570 exit(1);
571 }
572
2f78e491 573 if (qemu_init_main_loop(&local_error)) {
565f65d2 574 error_report_err(local_error);
2f78e491
CN
575 exit(1);
576 }
a57d1143 577
9ba371b6
DB
578 if (qemu_opts_foreach(&qemu_object_opts,
579 user_creatable_add_opts_foreach,
51b9b478 580 NULL, NULL)) {
9ba371b6
DB
581 exit(1);
582 }
583
e9a80859
DL
584 if (!trace_init_backends()) {
585 exit(1);
586 }
587 trace_init_file(trace_file);
588 qemu_set_log(LOG_TRACE);
589
43642b38 590 /* initialize commands */
c2cdf5c5
KW
591 qemuio_add_command(&quit_cmd);
592 qemuio_add_command(&open_cmd);
593 qemuio_add_command(&close_cmd);
43642b38 594
0cf17e18
SH
595 if (isatty(STDIN_FILENO)) {
596 readline_state = readline_init(readline_printf_func,
597 readline_flush_func,
598 NULL,
599 readline_completion_func);
600 qemu_set_tty_echo(STDIN_FILENO, false);
601 atexit(reenable_tty_echo);
602 }
603
43642b38
DN
604 /* open the device */
605 if (!readonly) {
606 flags |= BDRV_O_RDWR;
607 }
608
609 if ((argc - optind) == 1) {
499afa25
DB
610 if (imageOpts) {
611 QemuOpts *qopts = NULL;
612 qopts = qemu_opts_parse_noisily(&file_opts, argv[optind], false);
613 if (!qopts) {
614 exit(1);
615 }
616 opts = qemu_opts_to_qdict(qopts, NULL);
459571f7 617 if (openfile(NULL, flags, writethrough, force_share, opts)) {
b7aa1315
NS
618 exit(1);
619 }
499afa25
DB
620 } else {
621 if (format) {
622 opts = qdict_new();
46f5ac20 623 qdict_put_str(opts, "driver", format);
499afa25 624 }
459571f7
FZ
625 if (openfile(argv[optind], flags, writethrough,
626 force_share, opts)) {
b7aa1315
NS
627 exit(1);
628 }
499afa25 629 }
43642b38
DN
630 }
631 command_loop();
e3aff4f6 632
43642b38 633 /*
922453bc 634 * Make sure all outstanding requests complete before the program exits.
43642b38 635 */
922453bc 636 bdrv_drain_all();
95533d5f 637
26f54e9a 638 blk_unref(qemuio_blk);
0cf17e18 639 g_free(readline_state);
43642b38 640 return 0;
e3aff4f6 641}