blob: 3b3340ab1baff257051a56521461bc648ff4535b [file] [log] [blame]
aliguorie3aff4f2009-04-05 19:14:04 +00001/*
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 */
Stefan Weilc32d7662009-08-31 22:16:16 +020010#include <sys/time.h>
aliguorie3aff4f2009-04-05 19:14:04 +000011#include <sys/types.h>
12#include <stdarg.h>
13#include <stdio.h>
14#include <getopt.h>
Stefan Weilc32d7662009-08-31 22:16:16 +020015#include <libgen.h>
aliguorie3aff4f2009-04-05 19:14:04 +000016
Kevin Wolf3d219942013-06-05 14:19:39 +020017#include "qemu-io.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010018#include "qemu/main-loop.h"
Max Reitzb543c5c2013-10-11 14:02:10 +020019#include "qemu/option.h"
20#include "qemu/config-file.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010021#include "block/block_int.h"
Stefan Hajnoczid7bb72c2012-03-12 16:36:07 +000022#include "trace/control.h"
aliguorie3aff4f2009-04-05 19:14:04 +000023
Devin Nakamura43642b32011-07-11 11:22:16 -040024#define CMD_NOFILE_OK 0x01
aliguorie3aff4f2009-04-05 19:14:04 +000025
26char *progname;
aliguorie3aff4f2009-04-05 19:14:04 +000027
Kevin Wolf734c3b82013-06-05 14:19:30 +020028BlockDriverState *qemuio_bs;
Kevin Wolf797ac582013-06-05 14:19:31 +020029extern int qemuio_misalign;
Kevin Wolf191c2892010-09-16 13:18:08 +020030
Kevin Wolfd1174f12013-06-05 14:19:37 +020031/* qemu-io commands passed using -c */
32static int ncmdline;
33static char **cmdline;
34
Kevin Wolf734c3b82013-06-05 14:19:30 +020035static int close_f(BlockDriverState *bs, int argc, char **argv)
aliguorie3aff4f2009-04-05 19:14:04 +000036{
Fam Zheng4f6fd342013-08-23 09:14:47 +080037 bdrv_unref(bs);
Kevin Wolf734c3b82013-06-05 14:19:30 +020038 qemuio_bs = NULL;
Devin Nakamura43642b32011-07-11 11:22:16 -040039 return 0;
aliguorie3aff4f2009-04-05 19:14:04 +000040}
41
42static const cmdinfo_t close_cmd = {
Devin Nakamura43642b32011-07-11 11:22:16 -040043 .name = "close",
44 .altname = "c",
45 .cfunc = close_f,
46 .oneline = "close the current open file",
aliguorie3aff4f2009-04-05 19:14:04 +000047};
48
Max Reitzb543c5c2013-10-11 14:02:10 +020049static int openfile(char *name, int flags, int growable, QDict *opts)
aliguorie3aff4f2009-04-05 19:14:04 +000050{
Max Reitz34b5d2c2013-09-05 14:45:29 +020051 Error *local_err = NULL;
52
Kevin Wolf734c3b82013-06-05 14:19:30 +020053 if (qemuio_bs) {
Devin Nakamura43642b32011-07-11 11:22:16 -040054 fprintf(stderr, "file open already, try 'help close'\n");
55 return 1;
56 }
aliguorie3aff4f2009-04-05 19:14:04 +000057
Devin Nakamura43642b32011-07-11 11:22:16 -040058 if (growable) {
Max Reitzb543c5c2013-10-11 14:02:10 +020059 if (bdrv_file_open(&qemuio_bs, name, opts, flags, &local_err)) {
Max Reitz34b5d2c2013-09-05 14:45:29 +020060 fprintf(stderr, "%s: can't open device %s: %s\n", progname, name,
61 error_get_pretty(local_err));
62 error_free(local_err);
Devin Nakamura43642b32011-07-11 11:22:16 -040063 return 1;
64 }
65 } else {
Kevin Wolf734c3b82013-06-05 14:19:30 +020066 qemuio_bs = bdrv_new("hda");
Christoph Hellwig6db95602010-04-05 16:53:57 +020067
Max Reitzb543c5c2013-10-11 14:02:10 +020068 if (bdrv_open(qemuio_bs, name, opts, flags, NULL, &local_err) < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +020069 fprintf(stderr, "%s: can't open device %s: %s\n", progname, name,
70 error_get_pretty(local_err));
71 error_free(local_err);
Fam Zheng4f6fd342013-08-23 09:14:47 +080072 bdrv_unref(qemuio_bs);
Kevin Wolf734c3b82013-06-05 14:19:30 +020073 qemuio_bs = NULL;
Devin Nakamura43642b32011-07-11 11:22:16 -040074 return 1;
75 }
76 }
Christoph Hellwig1db69472009-07-15 23:11:21 +020077
Devin Nakamura43642b32011-07-11 11:22:16 -040078 return 0;
aliguorie3aff4f2009-04-05 19:14:04 +000079}
80
Devin Nakamura43642b32011-07-11 11:22:16 -040081static void open_help(void)
aliguorie3aff4f2009-04-05 19:14:04 +000082{
Devin Nakamura43642b32011-07-11 11:22:16 -040083 printf(
aliguorie3aff4f2009-04-05 19:14:04 +000084"\n"
85" opens a new file in the requested mode\n"
86"\n"
87" Example:\n"
88" 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
89"\n"
90" Opens a file for subsequent use by all of the other qemu-io commands.\n"
aliguorie3aff4f2009-04-05 19:14:04 +000091" -r, -- open file read-only\n"
92" -s, -- use snapshot file\n"
93" -n, -- disable host cache\n"
Max Reitzb543c5c2013-10-11 14:02:10 +020094" -g, -- allow file to grow (only applies to protocols)\n"
95" -o, -- options to be given to the block driver"
aliguorie3aff4f2009-04-05 19:14:04 +000096"\n");
97}
98
Kevin Wolf734c3b82013-06-05 14:19:30 +020099static int open_f(BlockDriverState *bs, int argc, char **argv);
Blue Swirl22a2bdc2009-11-21 09:06:46 +0000100
101static const cmdinfo_t open_cmd = {
Devin Nakamura43642b32011-07-11 11:22:16 -0400102 .name = "open",
103 .altname = "o",
104 .cfunc = open_f,
105 .argmin = 1,
106 .argmax = -1,
107 .flags = CMD_NOFILE_OK,
Max Reitzb543c5c2013-10-11 14:02:10 +0200108 .args = "[-Crsn] [-o options] [path]",
Devin Nakamura43642b32011-07-11 11:22:16 -0400109 .oneline = "open the file specified by path",
110 .help = open_help,
Blue Swirl22a2bdc2009-11-21 09:06:46 +0000111};
aliguorie3aff4f2009-04-05 19:14:04 +0000112
Max Reitzb543c5c2013-10-11 14:02:10 +0200113static QemuOptsList empty_opts = {
114 .name = "drive",
115 .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head),
116 .desc = {
117 /* no elements => accept any params */
118 { /* end of list */ }
119 },
120};
121
Kevin Wolf734c3b82013-06-05 14:19:30 +0200122static int open_f(BlockDriverState *bs, int argc, char **argv)
aliguorie3aff4f2009-04-05 19:14:04 +0000123{
Devin Nakamura43642b32011-07-11 11:22:16 -0400124 int flags = 0;
125 int readonly = 0;
126 int growable = 0;
127 int c;
Max Reitzb543c5c2013-10-11 14:02:10 +0200128 QemuOpts *qopts;
129 QDict *opts = NULL;
aliguorie3aff4f2009-04-05 19:14:04 +0000130
Max Reitzb543c5c2013-10-11 14:02:10 +0200131 while ((c = getopt(argc, argv, "snrgo:")) != EOF) {
Devin Nakamura43642b32011-07-11 11:22:16 -0400132 switch (c) {
133 case 's':
134 flags |= BDRV_O_SNAPSHOT;
135 break;
136 case 'n':
137 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
138 break;
139 case 'r':
140 readonly = 1;
141 break;
142 case 'g':
143 growable = 1;
144 break;
Max Reitzb543c5c2013-10-11 14:02:10 +0200145 case 'o':
146 qopts = qemu_opts_parse(&empty_opts, optarg, 0);
147 if (qopts == NULL) {
148 printf("could not parse option list -- %s\n", optarg);
149 return 0;
150 }
151 opts = qemu_opts_to_qdict(qopts, opts);
152 qemu_opts_del(qopts);
153 break;
Devin Nakamura43642b32011-07-11 11:22:16 -0400154 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200155 return qemuio_command_usage(&open_cmd);
Naphtali Spreif5edb012010-01-17 16:48:13 +0200156 }
Devin Nakamura43642b32011-07-11 11:22:16 -0400157 }
aliguorie3aff4f2009-04-05 19:14:04 +0000158
Devin Nakamura43642b32011-07-11 11:22:16 -0400159 if (!readonly) {
160 flags |= BDRV_O_RDWR;
161 }
aliguorie3aff4f2009-04-05 19:14:04 +0000162
Devin Nakamura43642b32011-07-11 11:22:16 -0400163 if (optind != argc - 1) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200164 return qemuio_command_usage(&open_cmd);
Devin Nakamura43642b32011-07-11 11:22:16 -0400165 }
166
Max Reitzb543c5c2013-10-11 14:02:10 +0200167 return openfile(argv[optind], flags, growable, opts);
aliguorie3aff4f2009-04-05 19:14:04 +0000168}
169
Kevin Wolfe681be72013-06-05 14:19:34 +0200170static int quit_f(BlockDriverState *bs, int argc, char **argv)
171{
172 return 1;
173}
174
175static const cmdinfo_t quit_cmd = {
176 .name = "quit",
177 .altname = "q",
178 .cfunc = quit_f,
179 .argmin = -1,
180 .argmax = -1,
181 .flags = CMD_FLAG_GLOBAL,
182 .oneline = "exit the program",
183};
184
aliguorie3aff4f2009-04-05 19:14:04 +0000185static void usage(const char *name)
186{
Devin Nakamura43642b32011-07-11 11:22:16 -0400187 printf(
Christoph Hellwig9a2d77a2010-01-20 18:13:42 +0100188"Usage: %s [-h] [-V] [-rsnm] [-c cmd] ... [file]\n"
Stefan Weil84844a22009-06-22 15:08:47 +0200189"QEMU Disk exerciser\n"
aliguorie3aff4f2009-04-05 19:14:04 +0000190"\n"
aliguorie3aff4f2009-04-05 19:14:04 +0000191" -c, --cmd command to execute\n"
192" -r, --read-only export read-only\n"
193" -s, --snapshot use snapshot file\n"
194" -n, --nocache disable host cache\n"
Christoph Hellwig1db69472009-07-15 23:11:21 +0200195" -g, --growable allow file to grow (only applies to protocols)\n"
aliguorie3aff4f2009-04-05 19:14:04 +0000196" -m, --misalign misalign allocations for O_DIRECT\n"
Christoph Hellwig5c6c3a62009-08-20 16:58:35 +0200197" -k, --native-aio use kernel AIO implementation (on Linux only)\n"
Kevin Wolf592fa072012-04-18 12:07:39 +0200198" -t, --cache=MODE use the given cache mode for the image\n"
Stefan Hajnoczid7bb72c2012-03-12 16:36:07 +0000199" -T, --trace FILE enable trace events listed in the given file\n"
aliguorie3aff4f2009-04-05 19:14:04 +0000200" -h, --help display this help and exit\n"
201" -V, --version output version information and exit\n"
202"\n",
Devin Nakamura43642b32011-07-11 11:22:16 -0400203 name);
aliguorie3aff4f2009-04-05 19:14:04 +0000204}
205
206
Kevin Wolfd1174f12013-06-05 14:19:37 +0200207#if defined(ENABLE_READLINE)
208# include <readline/history.h>
209# include <readline/readline.h>
210#elif defined(ENABLE_EDITLINE)
211# include <histedit.h>
212#endif
213
214static char *get_prompt(void)
215{
216 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
217
218 if (!prompt[0]) {
219 snprintf(prompt, sizeof(prompt), "%s> ", progname);
220 }
221
222 return prompt;
223}
224
225#if defined(ENABLE_READLINE)
226static char *fetchline(void)
227{
228 char *line = readline(get_prompt());
229 if (line && *line) {
230 add_history(line);
231 }
232 return line;
233}
234#elif defined(ENABLE_EDITLINE)
235static char *el_get_prompt(EditLine *e)
236{
237 return get_prompt();
238}
239
240static char *fetchline(void)
241{
242 static EditLine *el;
243 static History *hist;
244 HistEvent hevent;
245 char *line;
246 int count;
247
248 if (!el) {
249 hist = history_init();
250 history(hist, &hevent, H_SETSIZE, 100);
251 el = el_init(progname, stdin, stdout, stderr);
252 el_source(el, NULL);
253 el_set(el, EL_SIGNAL, 1);
254 el_set(el, EL_PROMPT, el_get_prompt);
255 el_set(el, EL_HIST, history, (const char *)hist);
256 }
257 line = strdup(el_gets(el, &count));
258 if (line) {
259 if (count > 0) {
260 line[count-1] = '\0';
261 }
262 if (*line) {
263 history(hist, &hevent, H_ENTER, line);
264 }
265 }
266 return line;
267}
268#else
269# define MAXREADLINESZ 1024
270static char *fetchline(void)
271{
272 char *p, *line = g_malloc(MAXREADLINESZ);
273
274 if (!fgets(line, MAXREADLINESZ, stdin)) {
275 g_free(line);
276 return NULL;
277 }
278
279 p = line + strlen(line);
280 if (p != line && p[-1] == '\n') {
281 p[-1] = '\0';
282 }
283
284 return line;
285}
286#endif
287
288static void prep_fetchline(void *opaque)
289{
290 int *fetchable = opaque;
291
292 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
293 *fetchable= 1;
294}
295
296static void command_loop(void)
297{
298 int i, done = 0, fetchable = 0, prompted = 0;
299 char *input;
300
301 for (i = 0; !done && i < ncmdline; i++) {
Kevin Wolf3d219942013-06-05 14:19:39 +0200302 done = qemuio_command(qemuio_bs, cmdline[i]);
Kevin Wolfd1174f12013-06-05 14:19:37 +0200303 }
304 if (cmdline) {
305 g_free(cmdline);
306 return;
307 }
308
309 while (!done) {
310 if (!prompted) {
311 printf("%s", get_prompt());
312 fflush(stdout);
313 qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable);
314 prompted = 1;
315 }
316
317 main_loop_wait(false);
318
319 if (!fetchable) {
320 continue;
321 }
322
323 input = fetchline();
324 if (input == NULL) {
325 break;
326 }
Kevin Wolf3d219942013-06-05 14:19:39 +0200327 done = qemuio_command(qemuio_bs, input);
Kevin Wolfd1174f12013-06-05 14:19:37 +0200328 g_free(input);
329
330 prompted = 0;
331 fetchable = 0;
332 }
333 qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
334}
335
336static void add_user_command(char *optarg)
337{
338 cmdline = g_realloc(cmdline, ++ncmdline * sizeof(char *));
339 cmdline[ncmdline-1] = optarg;
340}
341
aliguorie3aff4f2009-04-05 19:14:04 +0000342int main(int argc, char **argv)
343{
Devin Nakamura43642b32011-07-11 11:22:16 -0400344 int readonly = 0;
345 int growable = 0;
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100346 const char *sopt = "hVc:d:rsnmgkt:T:";
Devin Nakamura43642b32011-07-11 11:22:16 -0400347 const struct option lopt[] = {
348 { "help", 0, NULL, 'h' },
349 { "version", 0, NULL, 'V' },
350 { "offset", 1, NULL, 'o' },
351 { "cmd", 1, NULL, 'c' },
352 { "read-only", 0, NULL, 'r' },
353 { "snapshot", 0, NULL, 's' },
354 { "nocache", 0, NULL, 'n' },
355 { "misalign", 0, NULL, 'm' },
356 { "growable", 0, NULL, 'g' },
357 { "native-aio", 0, NULL, 'k' },
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100358 { "discard", 1, NULL, 'd' },
Kevin Wolf592fa072012-04-18 12:07:39 +0200359 { "cache", 1, NULL, 't' },
Stefan Hajnoczid7bb72c2012-03-12 16:36:07 +0000360 { "trace", 1, NULL, 'T' },
Devin Nakamura43642b32011-07-11 11:22:16 -0400361 { NULL, 0, NULL, 0 }
362 };
363 int c;
364 int opt_index = 0;
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100365 int flags = BDRV_O_UNMAP;
aliguorie3aff4f2009-04-05 19:14:04 +0000366
MORITA Kazutaka526eda12013-07-23 17:30:11 +0900367#ifdef CONFIG_POSIX
368 signal(SIGPIPE, SIG_IGN);
369#endif
370
Devin Nakamura43642b32011-07-11 11:22:16 -0400371 progname = basename(argv[0]);
aliguorie3aff4f2009-04-05 19:14:04 +0000372
Devin Nakamura43642b32011-07-11 11:22:16 -0400373 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
374 switch (c) {
375 case 's':
376 flags |= BDRV_O_SNAPSHOT;
377 break;
378 case 'n':
379 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
380 break;
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100381 case 'd':
382 if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
383 error_report("Invalid discard option: %s", optarg);
384 exit(1);
385 }
386 break;
Devin Nakamura43642b32011-07-11 11:22:16 -0400387 case 'c':
388 add_user_command(optarg);
389 break;
390 case 'r':
391 readonly = 1;
392 break;
393 case 'm':
Kevin Wolf797ac582013-06-05 14:19:31 +0200394 qemuio_misalign = 1;
Devin Nakamura43642b32011-07-11 11:22:16 -0400395 break;
396 case 'g':
397 growable = 1;
398 break;
399 case 'k':
400 flags |= BDRV_O_NATIVE_AIO;
401 break;
Kevin Wolf592fa072012-04-18 12:07:39 +0200402 case 't':
403 if (bdrv_parse_cache_flags(optarg, &flags) < 0) {
404 error_report("Invalid cache option: %s", optarg);
405 exit(1);
406 }
407 break;
Stefan Hajnoczid7bb72c2012-03-12 16:36:07 +0000408 case 'T':
409 if (!trace_backend_init(optarg, NULL)) {
410 exit(1); /* error message will have been printed */
411 }
412 break;
Devin Nakamura43642b32011-07-11 11:22:16 -0400413 case 'V':
Kevin Wolf02da3862013-06-05 14:19:40 +0200414 printf("%s version %s\n", progname, QEMU_VERSION);
Devin Nakamura43642b32011-07-11 11:22:16 -0400415 exit(0);
416 case 'h':
417 usage(progname);
418 exit(0);
419 default:
420 usage(progname);
421 exit(1);
Naphtali Spreif5edb012010-01-17 16:48:13 +0200422 }
Devin Nakamura43642b32011-07-11 11:22:16 -0400423 }
aliguorie3aff4f2009-04-05 19:14:04 +0000424
Devin Nakamura43642b32011-07-11 11:22:16 -0400425 if ((argc - optind) > 1) {
426 usage(progname);
427 exit(1);
428 }
aliguorie3aff4f2009-04-05 19:14:04 +0000429
Zhi Yong Wua57d1142012-02-19 22:24:59 +0800430 qemu_init_main_loop();
Paolo Bonzini2592c592012-11-03 18:10:17 +0100431 bdrv_init();
Zhi Yong Wua57d1142012-02-19 22:24:59 +0800432
Devin Nakamura43642b32011-07-11 11:22:16 -0400433 /* initialize commands */
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200434 qemuio_add_command(&quit_cmd);
435 qemuio_add_command(&open_cmd);
436 qemuio_add_command(&close_cmd);
Devin Nakamura43642b32011-07-11 11:22:16 -0400437
438 /* open the device */
439 if (!readonly) {
440 flags |= BDRV_O_RDWR;
441 }
442
443 if ((argc - optind) == 1) {
Max Reitzb543c5c2013-10-11 14:02:10 +0200444 openfile(argv[optind], flags, growable, NULL);
Devin Nakamura43642b32011-07-11 11:22:16 -0400445 }
446 command_loop();
447
448 /*
Stefan Hajnoczi922453b2011-11-30 12:23:43 +0000449 * Make sure all outstanding requests complete before the program exits.
Devin Nakamura43642b32011-07-11 11:22:16 -0400450 */
Stefan Hajnoczi922453b2011-11-30 12:23:43 +0000451 bdrv_drain_all();
Devin Nakamura43642b32011-07-11 11:22:16 -0400452
Kevin Wolf734c3b82013-06-05 14:19:30 +0200453 if (qemuio_bs) {
Fam Zheng4f6fd342013-08-23 09:14:47 +0800454 bdrv_unref(qemuio_bs);
Devin Nakamura43642b32011-07-11 11:22:16 -0400455 }
456 return 0;
aliguorie3aff4f2009-04-05 19:14:04 +0000457}