aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 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 | */ |
Stefan Weil | c32d766 | 2009-08-31 22:16:16 +0200 | [diff] [blame] | 10 | #include <sys/time.h> |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 11 | #include <sys/types.h> |
| 12 | #include <stdarg.h> |
| 13 | #include <stdio.h> |
| 14 | #include <getopt.h> |
Stefan Weil | c32d766 | 2009-08-31 22:16:16 +0200 | [diff] [blame] | 15 | #include <libgen.h> |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 16 | |
Kevin Wolf | 3d21994 | 2013-06-05 14:19:39 +0200 | [diff] [blame] | 17 | #include "qemu-io.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 18 | #include "qemu/main-loop.h" |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 19 | #include "qemu/option.h" |
| 20 | #include "qemu/config-file.h" |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 21 | #include "qemu/readline.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 22 | #include "block/block_int.h" |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 23 | #include "trace/control.h" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 24 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 25 | #define CMD_NOFILE_OK 0x01 |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 26 | |
| 27 | char *progname; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 28 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 29 | BlockDriverState *qemuio_bs; |
Kevin Wolf | 797ac58 | 2013-06-05 14:19:31 +0200 | [diff] [blame] | 30 | extern int qemuio_misalign; |
Kevin Wolf | 191c289 | 2010-09-16 13:18:08 +0200 | [diff] [blame] | 31 | |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 32 | /* qemu-io commands passed using -c */ |
| 33 | static int ncmdline; |
| 34 | static char **cmdline; |
| 35 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 36 | static ReadLineState *readline_state; |
| 37 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 38 | static int close_f(BlockDriverState *bs, int argc, char **argv) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 39 | { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 40 | bdrv_unref(bs); |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 41 | qemuio_bs = NULL; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 42 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | static const cmdinfo_t close_cmd = { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 46 | .name = "close", |
| 47 | .altname = "c", |
| 48 | .cfunc = close_f, |
| 49 | .oneline = "close the current open file", |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 52 | static int openfile(char *name, int flags, int growable, QDict *opts) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 53 | { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 54 | Error *local_err = NULL; |
| 55 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 56 | if (qemuio_bs) { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 57 | fprintf(stderr, "file open already, try 'help close'\n"); |
| 58 | return 1; |
| 59 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 60 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 61 | if (growable) { |
Max Reitz | 72daa72 | 2013-12-20 19:28:08 +0100 | [diff] [blame] | 62 | if (bdrv_file_open(&qemuio_bs, name, NULL, opts, flags, &local_err)) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 63 | fprintf(stderr, "%s: can't open device %s: %s\n", progname, name, |
| 64 | error_get_pretty(local_err)); |
| 65 | error_free(local_err); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 66 | return 1; |
| 67 | } |
| 68 | } else { |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 69 | qemuio_bs = bdrv_new("hda"); |
Christoph Hellwig | 6db9560 | 2010-04-05 16:53:57 +0200 | [diff] [blame] | 70 | |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 71 | if (bdrv_open(qemuio_bs, name, opts, flags, NULL, &local_err) < 0) { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 72 | fprintf(stderr, "%s: can't open device %s: %s\n", progname, name, |
| 73 | error_get_pretty(local_err)); |
| 74 | error_free(local_err); |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 75 | bdrv_unref(qemuio_bs); |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 76 | qemuio_bs = NULL; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 77 | return 1; |
| 78 | } |
| 79 | } |
Christoph Hellwig | 1db6947 | 2009-07-15 23:11:21 +0200 | [diff] [blame] | 80 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 81 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 84 | static void open_help(void) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 85 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 86 | printf( |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 87 | "\n" |
| 88 | " opens a new file in the requested mode\n" |
| 89 | "\n" |
| 90 | " Example:\n" |
| 91 | " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n" |
| 92 | "\n" |
| 93 | " Opens a file for subsequent use by all of the other qemu-io commands.\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 94 | " -r, -- open file read-only\n" |
| 95 | " -s, -- use snapshot file\n" |
| 96 | " -n, -- disable host cache\n" |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 97 | " -g, -- allow file to grow (only applies to protocols)\n" |
| 98 | " -o, -- options to be given to the block driver" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 99 | "\n"); |
| 100 | } |
| 101 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 102 | static int open_f(BlockDriverState *bs, int argc, char **argv); |
Blue Swirl | 22a2bdc | 2009-11-21 09:06:46 +0000 | [diff] [blame] | 103 | |
| 104 | static const cmdinfo_t open_cmd = { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 105 | .name = "open", |
| 106 | .altname = "o", |
| 107 | .cfunc = open_f, |
| 108 | .argmin = 1, |
| 109 | .argmax = -1, |
| 110 | .flags = CMD_NOFILE_OK, |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 111 | .args = "[-Crsn] [-o options] [path]", |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 112 | .oneline = "open the file specified by path", |
| 113 | .help = open_help, |
Blue Swirl | 22a2bdc | 2009-11-21 09:06:46 +0000 | [diff] [blame] | 114 | }; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 115 | |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 116 | static QemuOptsList empty_opts = { |
| 117 | .name = "drive", |
| 118 | .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head), |
| 119 | .desc = { |
| 120 | /* no elements => accept any params */ |
| 121 | { /* end of list */ } |
| 122 | }, |
| 123 | }; |
| 124 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 125 | static int open_f(BlockDriverState *bs, int argc, char **argv) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 126 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 127 | int flags = 0; |
| 128 | int readonly = 0; |
| 129 | int growable = 0; |
| 130 | int c; |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 131 | QemuOpts *qopts; |
| 132 | QDict *opts = NULL; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 133 | |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 134 | while ((c = getopt(argc, argv, "snrgo:")) != EOF) { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 135 | switch (c) { |
| 136 | case 's': |
| 137 | flags |= BDRV_O_SNAPSHOT; |
| 138 | break; |
| 139 | case 'n': |
| 140 | flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; |
| 141 | break; |
| 142 | case 'r': |
| 143 | readonly = 1; |
| 144 | break; |
| 145 | case 'g': |
| 146 | growable = 1; |
| 147 | break; |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 148 | case 'o': |
| 149 | qopts = qemu_opts_parse(&empty_opts, optarg, 0); |
| 150 | if (qopts == NULL) { |
| 151 | printf("could not parse option list -- %s\n", optarg); |
| 152 | return 0; |
| 153 | } |
| 154 | opts = qemu_opts_to_qdict(qopts, opts); |
| 155 | qemu_opts_del(qopts); |
| 156 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 157 | default: |
Kevin Wolf | c2cdf5c | 2013-06-05 14:19:36 +0200 | [diff] [blame] | 158 | return qemuio_command_usage(&open_cmd); |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 159 | } |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 160 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 161 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 162 | if (!readonly) { |
| 163 | flags |= BDRV_O_RDWR; |
| 164 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 165 | |
Max Reitz | fd0fee3 | 2013-12-20 19:28:20 +0100 | [diff] [blame] | 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); |
| 170 | } else { |
Kevin Wolf | c2cdf5c | 2013-06-05 14:19:36 +0200 | [diff] [blame] | 171 | return qemuio_command_usage(&open_cmd); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 172 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Kevin Wolf | e681be7 | 2013-06-05 14:19:34 +0200 | [diff] [blame] | 175 | static int quit_f(BlockDriverState *bs, int argc, char **argv) |
| 176 | { |
| 177 | return 1; |
| 178 | } |
| 179 | |
| 180 | static const cmdinfo_t quit_cmd = { |
| 181 | .name = "quit", |
| 182 | .altname = "q", |
| 183 | .cfunc = quit_f, |
| 184 | .argmin = -1, |
| 185 | .argmax = -1, |
| 186 | .flags = CMD_FLAG_GLOBAL, |
| 187 | .oneline = "exit the program", |
| 188 | }; |
| 189 | |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 190 | static void usage(const char *name) |
| 191 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 192 | printf( |
Christoph Hellwig | 9a2d77a | 2010-01-20 18:13:42 +0100 | [diff] [blame] | 193 | "Usage: %s [-h] [-V] [-rsnm] [-c cmd] ... [file]\n" |
Stefan Weil | 84844a2 | 2009-06-22 15:08:47 +0200 | [diff] [blame] | 194 | "QEMU Disk exerciser\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 195 | "\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 196 | " -c, --cmd command to execute\n" |
| 197 | " -r, --read-only export read-only\n" |
| 198 | " -s, --snapshot use snapshot file\n" |
| 199 | " -n, --nocache disable host cache\n" |
Christoph Hellwig | 1db6947 | 2009-07-15 23:11:21 +0200 | [diff] [blame] | 200 | " -g, --growable allow file to grow (only applies to protocols)\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 201 | " -m, --misalign misalign allocations for O_DIRECT\n" |
Christoph Hellwig | 5c6c3a6 | 2009-08-20 16:58:35 +0200 | [diff] [blame] | 202 | " -k, --native-aio use kernel AIO implementation (on Linux only)\n" |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 203 | " -t, --cache=MODE use the given cache mode for the image\n" |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 204 | " -T, --trace FILE enable trace events listed in the given file\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 205 | " -h, --help display this help and exit\n" |
| 206 | " -V, --version output version information and exit\n" |
| 207 | "\n", |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 208 | name); |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 209 | } |
| 210 | |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 211 | static char *get_prompt(void) |
| 212 | { |
| 213 | static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ]; |
| 214 | |
| 215 | if (!prompt[0]) { |
| 216 | snprintf(prompt, sizeof(prompt), "%s> ", progname); |
| 217 | } |
| 218 | |
| 219 | return prompt; |
| 220 | } |
| 221 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 222 | static void readline_printf_func(void *opaque, const char *fmt, ...) |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 223 | { |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 224 | va_list ap; |
| 225 | va_start(ap, fmt); |
| 226 | vprintf(fmt, ap); |
| 227 | va_end(ap); |
| 228 | } |
| 229 | |
| 230 | static void readline_flush_func(void *opaque) |
| 231 | { |
| 232 | fflush(stdout); |
| 233 | } |
| 234 | |
| 235 | static void readline_func(void *opaque, const char *str, void *readline_opaque) |
| 236 | { |
| 237 | char **line = readline_opaque; |
| 238 | *line = g_strdup(str); |
| 239 | } |
| 240 | |
Stefan Hajnoczi | 4694020 | 2013-11-14 11:54:18 +0100 | [diff] [blame] | 241 | static void completion_match(const char *cmd, void *opaque) |
| 242 | { |
| 243 | readline_add_completion(readline_state, cmd); |
| 244 | } |
| 245 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 246 | static void readline_completion_func(void *opaque, const char *str) |
| 247 | { |
Stefan Hajnoczi | 4694020 | 2013-11-14 11:54:18 +0100 | [diff] [blame] | 248 | readline_set_completion_index(readline_state, strlen(str)); |
| 249 | qemuio_complete_command(str, completion_match, NULL); |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static char *fetchline_readline(void) |
| 253 | { |
| 254 | char *line = NULL; |
| 255 | |
| 256 | readline_start(readline_state, get_prompt(), 0, readline_func, &line); |
| 257 | while (!line) { |
| 258 | int ch = getchar(); |
| 259 | if (ch == EOF) { |
| 260 | break; |
| 261 | } |
| 262 | readline_handle_byte(readline_state, ch); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 263 | } |
| 264 | return line; |
| 265 | } |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 266 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 267 | #define MAXREADLINESZ 1024 |
| 268 | static char *fetchline_fgets(void) |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 269 | { |
| 270 | char *p, *line = g_malloc(MAXREADLINESZ); |
| 271 | |
| 272 | if (!fgets(line, MAXREADLINESZ, stdin)) { |
| 273 | g_free(line); |
| 274 | return NULL; |
| 275 | } |
| 276 | |
| 277 | p = line + strlen(line); |
| 278 | if (p != line && p[-1] == '\n') { |
| 279 | p[-1] = '\0'; |
| 280 | } |
| 281 | |
| 282 | return line; |
| 283 | } |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 284 | |
| 285 | static char *fetchline(void) |
| 286 | { |
| 287 | if (readline_state) { |
| 288 | return fetchline_readline(); |
| 289 | } else { |
| 290 | return fetchline_fgets(); |
| 291 | } |
| 292 | } |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 293 | |
| 294 | static void prep_fetchline(void *opaque) |
| 295 | { |
| 296 | int *fetchable = opaque; |
| 297 | |
| 298 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); |
| 299 | *fetchable= 1; |
| 300 | } |
| 301 | |
| 302 | static void command_loop(void) |
| 303 | { |
| 304 | int i, done = 0, fetchable = 0, prompted = 0; |
| 305 | char *input; |
| 306 | |
| 307 | for (i = 0; !done && i < ncmdline; i++) { |
Kevin Wolf | 3d21994 | 2013-06-05 14:19:39 +0200 | [diff] [blame] | 308 | done = qemuio_command(qemuio_bs, cmdline[i]); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 309 | } |
| 310 | if (cmdline) { |
| 311 | g_free(cmdline); |
| 312 | return; |
| 313 | } |
| 314 | |
| 315 | while (!done) { |
| 316 | if (!prompted) { |
| 317 | printf("%s", get_prompt()); |
| 318 | fflush(stdout); |
| 319 | qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable); |
| 320 | prompted = 1; |
| 321 | } |
| 322 | |
| 323 | main_loop_wait(false); |
| 324 | |
| 325 | if (!fetchable) { |
| 326 | continue; |
| 327 | } |
| 328 | |
| 329 | input = fetchline(); |
| 330 | if (input == NULL) { |
| 331 | break; |
| 332 | } |
Kevin Wolf | 3d21994 | 2013-06-05 14:19:39 +0200 | [diff] [blame] | 333 | done = qemuio_command(qemuio_bs, input); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 334 | g_free(input); |
| 335 | |
| 336 | prompted = 0; |
| 337 | fetchable = 0; |
| 338 | } |
| 339 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); |
| 340 | } |
| 341 | |
| 342 | static void add_user_command(char *optarg) |
| 343 | { |
| 344 | cmdline = g_realloc(cmdline, ++ncmdline * sizeof(char *)); |
| 345 | cmdline[ncmdline-1] = optarg; |
| 346 | } |
| 347 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 348 | static void reenable_tty_echo(void) |
| 349 | { |
| 350 | qemu_set_tty_echo(STDIN_FILENO, true); |
| 351 | } |
| 352 | |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 353 | int main(int argc, char **argv) |
| 354 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 355 | int readonly = 0; |
| 356 | int growable = 0; |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 357 | const char *sopt = "hVc:d:rsnmgkt:T:"; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 358 | const struct option lopt[] = { |
| 359 | { "help", 0, NULL, 'h' }, |
| 360 | { "version", 0, NULL, 'V' }, |
| 361 | { "offset", 1, NULL, 'o' }, |
| 362 | { "cmd", 1, NULL, 'c' }, |
| 363 | { "read-only", 0, NULL, 'r' }, |
| 364 | { "snapshot", 0, NULL, 's' }, |
| 365 | { "nocache", 0, NULL, 'n' }, |
| 366 | { "misalign", 0, NULL, 'm' }, |
| 367 | { "growable", 0, NULL, 'g' }, |
| 368 | { "native-aio", 0, NULL, 'k' }, |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 369 | { "discard", 1, NULL, 'd' }, |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 370 | { "cache", 1, NULL, 't' }, |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 371 | { "trace", 1, NULL, 'T' }, |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 372 | { NULL, 0, NULL, 0 } |
| 373 | }; |
| 374 | int c; |
| 375 | int opt_index = 0; |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 376 | int flags = BDRV_O_UNMAP; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 377 | |
MORITA Kazutaka | 526eda1 | 2013-07-23 17:30:11 +0900 | [diff] [blame] | 378 | #ifdef CONFIG_POSIX |
| 379 | signal(SIGPIPE, SIG_IGN); |
| 380 | #endif |
| 381 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 382 | progname = basename(argv[0]); |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 383 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 384 | while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) { |
| 385 | switch (c) { |
| 386 | case 's': |
| 387 | flags |= BDRV_O_SNAPSHOT; |
| 388 | break; |
| 389 | case 'n': |
| 390 | flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB; |
| 391 | break; |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 392 | case 'd': |
| 393 | if (bdrv_parse_discard_flags(optarg, &flags) < 0) { |
| 394 | error_report("Invalid discard option: %s", optarg); |
| 395 | exit(1); |
| 396 | } |
| 397 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 398 | case 'c': |
| 399 | add_user_command(optarg); |
| 400 | break; |
| 401 | case 'r': |
| 402 | readonly = 1; |
| 403 | break; |
| 404 | case 'm': |
Kevin Wolf | 797ac58 | 2013-06-05 14:19:31 +0200 | [diff] [blame] | 405 | qemuio_misalign = 1; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 406 | break; |
| 407 | case 'g': |
| 408 | growable = 1; |
| 409 | break; |
| 410 | case 'k': |
| 411 | flags |= BDRV_O_NATIVE_AIO; |
| 412 | break; |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 413 | case 't': |
| 414 | if (bdrv_parse_cache_flags(optarg, &flags) < 0) { |
| 415 | error_report("Invalid cache option: %s", optarg); |
| 416 | exit(1); |
| 417 | } |
| 418 | break; |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 419 | case 'T': |
| 420 | if (!trace_backend_init(optarg, NULL)) { |
| 421 | exit(1); /* error message will have been printed */ |
| 422 | } |
| 423 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 424 | case 'V': |
Kevin Wolf | 02da386 | 2013-06-05 14:19:40 +0200 | [diff] [blame] | 425 | printf("%s version %s\n", progname, QEMU_VERSION); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 426 | exit(0); |
| 427 | case 'h': |
| 428 | usage(progname); |
| 429 | exit(0); |
| 430 | default: |
| 431 | usage(progname); |
| 432 | exit(1); |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 433 | } |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 434 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 435 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 436 | if ((argc - optind) > 1) { |
| 437 | usage(progname); |
| 438 | exit(1); |
| 439 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 440 | |
Zhi Yong Wu | a57d114 | 2012-02-19 22:24:59 +0800 | [diff] [blame] | 441 | qemu_init_main_loop(); |
Paolo Bonzini | 2592c59 | 2012-11-03 18:10:17 +0100 | [diff] [blame] | 442 | bdrv_init(); |
Zhi Yong Wu | a57d114 | 2012-02-19 22:24:59 +0800 | [diff] [blame] | 443 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 444 | /* initialize commands */ |
Kevin Wolf | c2cdf5c | 2013-06-05 14:19:36 +0200 | [diff] [blame] | 445 | qemuio_add_command(&quit_cmd); |
| 446 | qemuio_add_command(&open_cmd); |
| 447 | qemuio_add_command(&close_cmd); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 448 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 449 | if (isatty(STDIN_FILENO)) { |
| 450 | readline_state = readline_init(readline_printf_func, |
| 451 | readline_flush_func, |
| 452 | NULL, |
| 453 | readline_completion_func); |
| 454 | qemu_set_tty_echo(STDIN_FILENO, false); |
| 455 | atexit(reenable_tty_echo); |
| 456 | } |
| 457 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 458 | /* open the device */ |
| 459 | if (!readonly) { |
| 460 | flags |= BDRV_O_RDWR; |
| 461 | } |
| 462 | |
| 463 | if ((argc - optind) == 1) { |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 464 | openfile(argv[optind], flags, growable, NULL); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 465 | } |
| 466 | command_loop(); |
| 467 | |
| 468 | /* |
Stefan Hajnoczi | 922453b | 2011-11-30 12:23:43 +0000 | [diff] [blame] | 469 | * Make sure all outstanding requests complete before the program exits. |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 470 | */ |
Stefan Hajnoczi | 922453b | 2011-11-30 12:23:43 +0000 | [diff] [blame] | 471 | bdrv_drain_all(); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 472 | |
Kevin Wolf | 734c3b8 | 2013-06-05 14:19:30 +0200 | [diff] [blame] | 473 | if (qemuio_bs) { |
Fam Zheng | 4f6fd34 | 2013-08-23 09:14:47 +0800 | [diff] [blame] | 474 | bdrv_unref(qemuio_bs); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 475 | } |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 476 | g_free(readline_state); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 477 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 478 | } |