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 | */ |
Markus Armbruster | 452fcdb | 2018-02-01 12:18:39 +0100 | [diff] [blame] | 10 | |
Peter Maydell | 80c71a2 | 2016-01-18 18:01:42 +0000 | [diff] [blame] | 11 | #include "qemu/osdep.h" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 12 | #include <getopt.h> |
Stefan Weil | c32d766 | 2009-08-31 22:16:16 +0200 | [diff] [blame] | 13 | #include <libgen.h> |
Daniel P. Berrange | 0e448a0 | 2018-02-12 18:48:49 +0000 | [diff] [blame] | 14 | #ifndef _WIN32 |
| 15 | #include <termios.h> |
| 16 | #endif |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 17 | |
Markus Armbruster | a8d2532 | 2019-05-23 16:35:08 +0200 | [diff] [blame] | 18 | #include "qemu-common.h" |
Markus Armbruster | da34e65 | 2016-03-14 09:01:28 +0100 | [diff] [blame] | 19 | #include "qapi/error.h" |
Kevin Wolf | 3d21994 | 2013-06-05 14:19:39 +0200 | [diff] [blame] | 20 | #include "qemu-io.h" |
Markus Armbruster | d49b683 | 2015-03-17 18:29:20 +0100 | [diff] [blame] | 21 | #include "qemu/error-report.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 22 | #include "qemu/main-loop.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame] | 23 | #include "qemu/module.h" |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 24 | #include "qemu/option.h" |
| 25 | #include "qemu/config-file.h" |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 26 | #include "qemu/readline.h" |
Denis V. Lunev | e9a8085 | 2016-06-17 17:44:11 +0300 | [diff] [blame] | 27 | #include "qemu/log.h" |
Daniel P. Berrangé | 98c5d2e | 2020-08-25 11:38:48 +0100 | [diff] [blame] | 28 | #include "qemu/sockets.h" |
Markus Armbruster | d49b683 | 2015-03-17 18:29:20 +0100 | [diff] [blame] | 29 | #include "qapi/qmp/qstring.h" |
Markus Armbruster | 452fcdb | 2018-02-01 12:18:39 +0100 | [diff] [blame] | 30 | #include "qapi/qmp/qdict.h" |
Daniel P. Berrange | 9ba371b | 2016-02-17 10:10:16 +0000 | [diff] [blame] | 31 | #include "qom/object_interfaces.h" |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 32 | #include "sysemu/block-backend.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 33 | #include "block/block_int.h" |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 34 | #include "trace/control.h" |
Daniel P. Berrange | c229708 | 2016-04-06 12:12:06 +0100 | [diff] [blame] | 35 | #include "crypto/init.h" |
Eric Blake | 4face32 | 2017-08-03 11:33:51 -0500 | [diff] [blame] | 36 | #include "qemu-version.h" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 37 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 38 | #define CMD_NOFILE_OK 0x01 |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 39 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 40 | static BlockBackend *qemuio_blk; |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 41 | static bool quit_qemu_io; |
Kevin Wolf | 191c289 | 2010-09-16 13:18:08 +0200 | [diff] [blame] | 42 | |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 43 | /* qemu-io commands passed using -c */ |
| 44 | static int ncmdline; |
| 45 | static char **cmdline; |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 46 | static bool imageOpts; |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 47 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 48 | static ReadLineState *readline_state; |
| 49 | |
Daniel P. Berrange | 0e448a0 | 2018-02-12 18:48:49 +0000 | [diff] [blame] | 50 | static int ttyEOF; |
| 51 | |
| 52 | static int get_eof_char(void) |
| 53 | { |
| 54 | #ifdef _WIN32 |
| 55 | return 0x4; /* Ctrl-D */ |
| 56 | #else |
| 57 | struct termios tty; |
| 58 | if (tcgetattr(STDIN_FILENO, &tty) != 0) { |
| 59 | if (errno == ENOTTY) { |
| 60 | return 0x0; /* just expect read() == 0 */ |
| 61 | } else { |
| 62 | return 0x4; /* Ctrl-D */ |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | return tty.c_cc[VEOF]; |
| 67 | #endif |
| 68 | } |
| 69 | |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 70 | static int close_f(BlockBackend *blk, int argc, char **argv) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 71 | { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 72 | blk_unref(qemuio_blk); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 73 | qemuio_blk = NULL; |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 74 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static const cmdinfo_t close_cmd = { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 78 | .name = "close", |
| 79 | .altname = "c", |
| 80 | .cfunc = close_f, |
| 81 | .oneline = "close the current open file", |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 84 | static int openfile(char *name, int flags, bool writethrough, bool force_share, |
| 85 | QDict *opts) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 86 | { |
Max Reitz | 34b5d2c | 2013-09-05 14:45:29 +0200 | [diff] [blame] | 87 | Error *local_err = NULL; |
| 88 | |
Max Reitz | 1b58b43 | 2015-02-05 13:58:20 -0500 | [diff] [blame] | 89 | if (qemuio_blk) { |
Markus Armbruster | b988468 | 2015-12-18 16:35:18 +0100 | [diff] [blame] | 90 | error_report("file open already, try 'help close'"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 91 | qobject_unref(opts); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 92 | return 1; |
| 93 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 94 | |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 95 | if (force_share) { |
| 96 | if (!opts) { |
| 97 | opts = qdict_new(); |
| 98 | } |
| 99 | if (qdict_haskey(opts, BDRV_OPT_FORCE_SHARE) |
Max Reitz | 2a01c01 | 2018-05-02 22:20:49 +0200 | [diff] [blame] | 100 | && strcmp(qdict_get_str(opts, BDRV_OPT_FORCE_SHARE), "on")) { |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 101 | error_report("-U conflicts with image options"); |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 102 | qobject_unref(opts); |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 103 | return 1; |
| 104 | } |
Max Reitz | 2a01c01 | 2018-05-02 22:20:49 +0200 | [diff] [blame] | 105 | qdict_put_str(opts, BDRV_OPT_FORCE_SHARE, "on"); |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 106 | } |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 107 | qemuio_blk = blk_new_open(name, NULL, opts, flags, &local_err); |
Max Reitz | 1b58b43 | 2015-02-05 13:58:20 -0500 | [diff] [blame] | 108 | if (!qemuio_blk) { |
Markus Armbruster | b988468 | 2015-12-18 16:35:18 +0100 | [diff] [blame] | 109 | error_reportf_err(local_err, "can't open%s%s: ", |
| 110 | name ? " device " : "", name ?: ""); |
Markus Armbruster | dbb651c | 2014-09-08 18:50:58 +0200 | [diff] [blame] | 111 | return 1; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 112 | } |
Christoph Hellwig | 1db6947 | 2009-07-15 23:11:21 +0200 | [diff] [blame] | 113 | |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 114 | blk_set_enable_write_cache(qemuio_blk, !writethrough); |
Daniel P. Berrange | 8caf021 | 2015-05-12 17:09:21 +0100 | [diff] [blame] | 115 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 116 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 119 | static void open_help(void) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 120 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 121 | printf( |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 122 | "\n" |
| 123 | " opens a new file in the requested mode\n" |
| 124 | "\n" |
| 125 | " Example:\n" |
Eric Blake | e4e12bb | 2016-05-07 21:16:40 -0600 | [diff] [blame] | 126 | " 'open -n -o driver=raw /tmp/data' - opens raw data file read-write, uncached\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 127 | "\n" |
| 128 | " 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] | 129 | " -r, -- open file read-only\n" |
| 130 | " -s, -- use snapshot file\n" |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 131 | " -C, -- use copy-on-read\n" |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 132 | " -n, -- disable host cache, short for -t none\n" |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 133 | " -U, -- force shared permissions\n" |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 134 | " -k, -- use kernel AIO implementation (Linux only, prefer use of -i)\n" |
| 135 | " -i, -- use AIO mode (threads, native or io_uring)\n" |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 136 | " -t, -- use the given cache mode for the image\n" |
| 137 | " -d, -- use the given discard mode for the image\n" |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 138 | " -o, -- options to be given to the block driver" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 139 | "\n"); |
| 140 | } |
| 141 | |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 142 | static int open_f(BlockBackend *blk, int argc, char **argv); |
Blue Swirl | 22a2bdc | 2009-11-21 09:06:46 +0000 | [diff] [blame] | 143 | |
| 144 | static const cmdinfo_t open_cmd = { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 145 | .name = "open", |
| 146 | .altname = "o", |
| 147 | .cfunc = open_f, |
| 148 | .argmin = 1, |
| 149 | .argmax = -1, |
| 150 | .flags = CMD_NOFILE_OK, |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 151 | .args = "[-rsCnkU] [-t cache] [-d discard] [-o options] [path]", |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 152 | .oneline = "open the file specified by path", |
| 153 | .help = open_help, |
Blue Swirl | 22a2bdc | 2009-11-21 09:06:46 +0000 | [diff] [blame] | 154 | }; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 155 | |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 156 | static QemuOptsList empty_opts = { |
| 157 | .name = "drive", |
Markus Armbruster | 443422f | 2014-05-28 11:16:58 +0200 | [diff] [blame] | 158 | .merge_lists = true, |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 159 | .head = QTAILQ_HEAD_INITIALIZER(empty_opts.head), |
| 160 | .desc = { |
| 161 | /* no elements => accept any params */ |
| 162 | { /* end of list */ } |
| 163 | }, |
| 164 | }; |
| 165 | |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 166 | static int open_f(BlockBackend *blk, int argc, char **argv) |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 167 | { |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 168 | int flags = BDRV_O_UNMAP; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 169 | int readonly = 0; |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 170 | bool writethrough = true; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 171 | int c; |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 172 | int ret; |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 173 | QemuOpts *qopts; |
Markus Armbruster | 443422f | 2014-05-28 11:16:58 +0200 | [diff] [blame] | 174 | QDict *opts; |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 175 | bool force_share = false; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 176 | |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 177 | while ((c = getopt(argc, argv, "snCro:ki:t:d:U")) != -1) { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 178 | switch (c) { |
| 179 | case 's': |
| 180 | flags |= BDRV_O_SNAPSHOT; |
| 181 | break; |
| 182 | case 'n': |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 183 | flags |= BDRV_O_NOCACHE; |
| 184 | writethrough = false; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 185 | break; |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 186 | case 'C': |
| 187 | flags |= BDRV_O_COPY_ON_READ; |
| 188 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 189 | case 'r': |
| 190 | readonly = 1; |
| 191 | break; |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 192 | case 'k': |
| 193 | flags |= BDRV_O_NATIVE_AIO; |
| 194 | break; |
| 195 | case 't': |
| 196 | if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) { |
| 197 | error_report("Invalid cache option: %s", optarg); |
| 198 | qemu_opts_reset(&empty_opts); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 199 | return -EINVAL; |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 200 | } |
| 201 | break; |
| 202 | case 'd': |
| 203 | if (bdrv_parse_discard_flags(optarg, &flags) < 0) { |
| 204 | error_report("Invalid discard option: %s", optarg); |
| 205 | qemu_opts_reset(&empty_opts); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 206 | return -EINVAL; |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 207 | } |
| 208 | break; |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 209 | case 'i': |
| 210 | if (bdrv_parse_aio(optarg, &flags) < 0) { |
| 211 | error_report("Invalid aio option: %s", optarg); |
| 212 | qemu_opts_reset(&empty_opts); |
| 213 | return -EINVAL; |
| 214 | } |
| 215 | break; |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 216 | case 'o': |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 217 | if (imageOpts) { |
| 218 | printf("--image-opts and 'open -o' are mutually exclusive\n"); |
Eric Blake | b8d970f | 2016-05-07 21:16:41 -0600 | [diff] [blame] | 219 | qemu_opts_reset(&empty_opts); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 220 | return -EINVAL; |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 221 | } |
Markus Armbruster | 70b9433 | 2015-02-13 12:50:26 +0100 | [diff] [blame] | 222 | if (!qemu_opts_parse_noisily(&empty_opts, optarg, false)) { |
Markus Armbruster | 443422f | 2014-05-28 11:16:58 +0200 | [diff] [blame] | 223 | qemu_opts_reset(&empty_opts); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 224 | return -EINVAL; |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 225 | } |
Max Reitz | b543c5c | 2013-10-11 14:02:10 +0200 | [diff] [blame] | 226 | break; |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 227 | case 'U': |
| 228 | force_share = true; |
| 229 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 230 | default: |
Markus Armbruster | 443422f | 2014-05-28 11:16:58 +0200 | [diff] [blame] | 231 | qemu_opts_reset(&empty_opts); |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 232 | qemuio_command_usage(&open_cmd); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 233 | return -EINVAL; |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 234 | } |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 235 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 236 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 237 | if (!readonly) { |
| 238 | flags |= BDRV_O_RDWR; |
| 239 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 240 | |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 241 | if (imageOpts && (optind == argc - 1)) { |
| 242 | if (!qemu_opts_parse_noisily(&empty_opts, argv[optind], false)) { |
| 243 | qemu_opts_reset(&empty_opts); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 244 | return -EINVAL; |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 245 | } |
| 246 | optind++; |
| 247 | } |
| 248 | |
Markus Armbruster | 443422f | 2014-05-28 11:16:58 +0200 | [diff] [blame] | 249 | qopts = qemu_opts_find(&empty_opts, NULL); |
| 250 | opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL; |
| 251 | qemu_opts_reset(&empty_opts); |
| 252 | |
Max Reitz | fd0fee3 | 2013-12-20 19:28:20 +0100 | [diff] [blame] | 253 | if (optind == argc - 1) { |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 254 | ret = openfile(argv[optind], flags, writethrough, force_share, opts); |
Max Reitz | fd0fee3 | 2013-12-20 19:28:20 +0100 | [diff] [blame] | 255 | } else if (optind == argc) { |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 256 | ret = openfile(NULL, flags, writethrough, force_share, opts); |
Max Reitz | fd0fee3 | 2013-12-20 19:28:20 +0100 | [diff] [blame] | 257 | } else { |
Marc-André Lureau | cb3e7f0 | 2018-04-19 17:01:43 +0200 | [diff] [blame] | 258 | qobject_unref(opts); |
Eric Blake | 64ebf55 | 2017-06-05 15:38:42 -0500 | [diff] [blame] | 259 | qemuio_command_usage(&open_cmd); |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 260 | return -EINVAL; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 261 | } |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 262 | |
| 263 | if (ret) { |
| 264 | return -EINVAL; |
| 265 | } |
| 266 | |
| 267 | return 0; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 270 | static int quit_f(BlockBackend *blk, int argc, char **argv) |
Kevin Wolf | e681be7 | 2013-06-05 14:19:34 +0200 | [diff] [blame] | 271 | { |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 272 | quit_qemu_io = true; |
Max Reitz | b32d7a3 | 2018-05-09 21:42:59 +0200 | [diff] [blame] | 273 | return 0; |
Kevin Wolf | e681be7 | 2013-06-05 14:19:34 +0200 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | static const cmdinfo_t quit_cmd = { |
| 277 | .name = "quit", |
| 278 | .altname = "q", |
| 279 | .cfunc = quit_f, |
| 280 | .argmin = -1, |
| 281 | .argmax = -1, |
| 282 | .flags = CMD_FLAG_GLOBAL, |
| 283 | .oneline = "exit the program", |
| 284 | }; |
| 285 | |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 286 | static void usage(const char *name) |
| 287 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 288 | printf( |
Eric Blake | e4e12bb | 2016-05-07 21:16:40 -0600 | [diff] [blame] | 289 | "Usage: %s [OPTIONS]... [-c STRING]... [file]\n" |
Stefan Weil | 84844a2 | 2009-06-22 15:08:47 +0200 | [diff] [blame] | 290 | "QEMU Disk exerciser\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 291 | "\n" |
Daniel P. Berrange | 9ba371b | 2016-02-17 10:10:16 +0000 | [diff] [blame] | 292 | " --object OBJECTDEF define an object such as 'secret' for\n" |
| 293 | " passwords and/or encryption keys\n" |
Eric Blake | e4e12bb | 2016-05-07 21:16:40 -0600 | [diff] [blame] | 294 | " --image-opts treat file as option string\n" |
Maria Kustova | d208cc3 | 2014-03-18 09:59:19 +0400 | [diff] [blame] | 295 | " -c, --cmd STRING execute command with its arguments\n" |
| 296 | " from the given string\n" |
Kevin Wolf | be6273d | 2014-11-20 16:27:06 +0100 | [diff] [blame] | 297 | " -f, --format FMT specifies the block driver to use\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 298 | " -r, --read-only export read-only\n" |
| 299 | " -s, --snapshot use snapshot file\n" |
Eric Blake | e4e12bb | 2016-05-07 21:16:40 -0600 | [diff] [blame] | 300 | " -n, --nocache disable host cache, short for -t none\n" |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 301 | " -C, --copy-on-read enable copy-on-read\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 302 | " -m, --misalign misalign allocations for O_DIRECT\n" |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 303 | " -k, --native-aio use kernel AIO implementation\n" |
| 304 | " (Linux only, prefer use of -i)\n" |
| 305 | " -i, --aio=MODE use AIO mode (threads, native or io_uring)\n" |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 306 | " -t, --cache=MODE use the given cache mode for the image\n" |
Eric Blake | e4e12bb | 2016-05-07 21:16:40 -0600 | [diff] [blame] | 307 | " -d, --discard=MODE use the given discard mode for the image\n" |
Denis V. Lunev | e9a8085 | 2016-06-17 17:44:11 +0300 | [diff] [blame] | 308 | " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n" |
| 309 | " specify tracing options\n" |
| 310 | " see qemu-img(1) man page for full description\n" |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 311 | " -U, --force-share force shared permissions\n" |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 312 | " -h, --help display this help and exit\n" |
| 313 | " -V, --version output version information and exit\n" |
Maria Kustova | d208cc3 | 2014-03-18 09:59:19 +0400 | [diff] [blame] | 314 | "\n" |
Eric Blake | f5048cb | 2017-08-03 11:33:53 -0500 | [diff] [blame] | 315 | "See '%s -c help' for information on available commands.\n" |
| 316 | "\n" |
| 317 | QEMU_HELP_BOTTOM "\n", |
Maria Kustova | d208cc3 | 2014-03-18 09:59:19 +0400 | [diff] [blame] | 318 | name, name); |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 321 | static char *get_prompt(void) |
| 322 | { |
| 323 | static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ]; |
| 324 | |
| 325 | if (!prompt[0]) { |
Christophe Fergeau | 99e98d7 | 2019-01-31 17:46:13 +0100 | [diff] [blame] | 326 | snprintf(prompt, sizeof(prompt), "%s> ", error_get_progname()); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | return prompt; |
| 330 | } |
| 331 | |
Stefan Weil | d5d1507 | 2014-01-25 18:18:23 +0100 | [diff] [blame] | 332 | static void GCC_FMT_ATTR(2, 3) readline_printf_func(void *opaque, |
| 333 | const char *fmt, ...) |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 334 | { |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 335 | va_list ap; |
| 336 | va_start(ap, fmt); |
| 337 | vprintf(fmt, ap); |
| 338 | va_end(ap); |
| 339 | } |
| 340 | |
| 341 | static void readline_flush_func(void *opaque) |
| 342 | { |
| 343 | fflush(stdout); |
| 344 | } |
| 345 | |
| 346 | static void readline_func(void *opaque, const char *str, void *readline_opaque) |
| 347 | { |
| 348 | char **line = readline_opaque; |
| 349 | *line = g_strdup(str); |
| 350 | } |
| 351 | |
Stefan Hajnoczi | 4694020 | 2013-11-14 11:54:18 +0100 | [diff] [blame] | 352 | static void completion_match(const char *cmd, void *opaque) |
| 353 | { |
| 354 | readline_add_completion(readline_state, cmd); |
| 355 | } |
| 356 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 357 | static void readline_completion_func(void *opaque, const char *str) |
| 358 | { |
Stefan Hajnoczi | 4694020 | 2013-11-14 11:54:18 +0100 | [diff] [blame] | 359 | readline_set_completion_index(readline_state, strlen(str)); |
| 360 | qemuio_complete_command(str, completion_match, NULL); |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static char *fetchline_readline(void) |
| 364 | { |
| 365 | char *line = NULL; |
| 366 | |
| 367 | readline_start(readline_state, get_prompt(), 0, readline_func, &line); |
| 368 | while (!line) { |
| 369 | int ch = getchar(); |
Daniel P. Berrange | 0e448a0 | 2018-02-12 18:48:49 +0000 | [diff] [blame] | 370 | if (ttyEOF != 0x0 && ch == ttyEOF) { |
| 371 | printf("\n"); |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 372 | break; |
| 373 | } |
| 374 | readline_handle_byte(readline_state, ch); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 375 | } |
| 376 | return line; |
| 377 | } |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 378 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 379 | #define MAXREADLINESZ 1024 |
| 380 | static char *fetchline_fgets(void) |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 381 | { |
| 382 | char *p, *line = g_malloc(MAXREADLINESZ); |
| 383 | |
| 384 | if (!fgets(line, MAXREADLINESZ, stdin)) { |
| 385 | g_free(line); |
| 386 | return NULL; |
| 387 | } |
| 388 | |
| 389 | p = line + strlen(line); |
| 390 | if (p != line && p[-1] == '\n') { |
| 391 | p[-1] = '\0'; |
| 392 | } |
| 393 | |
| 394 | return line; |
| 395 | } |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 396 | |
| 397 | static char *fetchline(void) |
| 398 | { |
| 399 | if (readline_state) { |
| 400 | return fetchline_readline(); |
| 401 | } else { |
| 402 | return fetchline_fgets(); |
| 403 | } |
| 404 | } |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 405 | |
| 406 | static void prep_fetchline(void *opaque) |
| 407 | { |
| 408 | int *fetchable = opaque; |
| 409 | |
| 410 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); |
| 411 | *fetchable= 1; |
| 412 | } |
| 413 | |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 414 | static int command_loop(void) |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 415 | { |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 416 | int i, fetchable = 0, prompted = 0; |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 417 | int ret, last_error = 0; |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 418 | char *input; |
| 419 | |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 420 | for (i = 0; !quit_qemu_io && i < ncmdline; i++) { |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 421 | ret = qemuio_command(qemuio_blk, cmdline[i]); |
| 422 | if (ret < 0) { |
| 423 | last_error = ret; |
| 424 | } |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 425 | } |
| 426 | if (cmdline) { |
| 427 | g_free(cmdline); |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 428 | return last_error; |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 429 | } |
| 430 | |
Max Reitz | b444d0e | 2018-05-09 21:42:58 +0200 | [diff] [blame] | 431 | while (!quit_qemu_io) { |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 432 | if (!prompted) { |
| 433 | printf("%s", get_prompt()); |
| 434 | fflush(stdout); |
| 435 | qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable); |
| 436 | prompted = 1; |
| 437 | } |
| 438 | |
| 439 | main_loop_wait(false); |
| 440 | |
| 441 | if (!fetchable) { |
| 442 | continue; |
| 443 | } |
| 444 | |
| 445 | input = fetchline(); |
| 446 | if (input == NULL) { |
| 447 | break; |
| 448 | } |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 449 | ret = qemuio_command(qemuio_blk, input); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 450 | g_free(input); |
| 451 | |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 452 | if (ret < 0) { |
| 453 | last_error = ret; |
| 454 | } |
| 455 | |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 456 | prompted = 0; |
| 457 | fetchable = 0; |
| 458 | } |
| 459 | qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL); |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 460 | |
| 461 | return last_error; |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | static void add_user_command(char *optarg) |
| 465 | { |
Markus Armbruster | 5839e53 | 2014-08-19 10:31:08 +0200 | [diff] [blame] | 466 | cmdline = g_renew(char *, cmdline, ++ncmdline); |
Kevin Wolf | d1174f1 | 2013-06-05 14:19:37 +0200 | [diff] [blame] | 467 | cmdline[ncmdline-1] = optarg; |
| 468 | } |
| 469 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 470 | static void reenable_tty_echo(void) |
| 471 | { |
| 472 | qemu_set_tty_echo(STDIN_FILENO, true); |
| 473 | } |
| 474 | |
Daniel P. Berrange | 9ba371b | 2016-02-17 10:10:16 +0000 | [diff] [blame] | 475 | enum { |
| 476 | OPTION_OBJECT = 256, |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 477 | OPTION_IMAGE_OPTS = 257, |
Daniel P. Berrange | 9ba371b | 2016-02-17 10:10:16 +0000 | [diff] [blame] | 478 | }; |
| 479 | |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 480 | static QemuOptsList file_opts = { |
| 481 | .name = "file", |
| 482 | .implied_opt_name = "file", |
| 483 | .head = QTAILQ_HEAD_INITIALIZER(file_opts.head), |
| 484 | .desc = { |
| 485 | /* no elements => accept any params */ |
| 486 | { /* end of list */ } |
| 487 | }, |
| 488 | }; |
| 489 | |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 490 | int main(int argc, char **argv) |
| 491 | { |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 492 | int readonly = 0; |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 493 | const char *sopt = "hVc:d:f:rsnCmki:t:T:U"; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 494 | const struct option lopt[] = { |
Daniel P. Berrange | a513416 | 2016-02-17 10:10:23 +0000 | [diff] [blame] | 495 | { "help", no_argument, NULL, 'h' }, |
| 496 | { "version", no_argument, NULL, 'V' }, |
Daniel P. Berrange | a513416 | 2016-02-17 10:10:23 +0000 | [diff] [blame] | 497 | { "cmd", required_argument, NULL, 'c' }, |
| 498 | { "format", required_argument, NULL, 'f' }, |
| 499 | { "read-only", no_argument, NULL, 'r' }, |
| 500 | { "snapshot", no_argument, NULL, 's' }, |
| 501 | { "nocache", no_argument, NULL, 'n' }, |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 502 | { "copy-on-read", no_argument, NULL, 'C' }, |
Daniel P. Berrange | a513416 | 2016-02-17 10:10:23 +0000 | [diff] [blame] | 503 | { "misalign", no_argument, NULL, 'm' }, |
| 504 | { "native-aio", no_argument, NULL, 'k' }, |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 505 | { "aio", required_argument, NULL, 'i' }, |
Daniel P. Berrange | a513416 | 2016-02-17 10:10:23 +0000 | [diff] [blame] | 506 | { "discard", required_argument, NULL, 'd' }, |
| 507 | { "cache", required_argument, NULL, 't' }, |
| 508 | { "trace", required_argument, NULL, 'T' }, |
| 509 | { "object", required_argument, NULL, OPTION_OBJECT }, |
| 510 | { "image-opts", no_argument, NULL, OPTION_IMAGE_OPTS }, |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 511 | { "force-share", no_argument, 0, 'U'}, |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 512 | { NULL, 0, NULL, 0 } |
| 513 | }; |
| 514 | int c; |
| 515 | int opt_index = 0; |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 516 | int flags = BDRV_O_UNMAP; |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 517 | int ret; |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 518 | bool writethrough = true; |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 519 | Error *local_error = NULL; |
Max Reitz | 1b58b43 | 2015-02-05 13:58:20 -0500 | [diff] [blame] | 520 | QDict *opts = NULL; |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 521 | const char *format = NULL; |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 522 | bool force_share = false; |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 523 | |
MORITA Kazutaka | 526eda1 | 2013-07-23 17:30:11 +0900 | [diff] [blame] | 524 | #ifdef CONFIG_POSIX |
| 525 | signal(SIGPIPE, SIG_IGN); |
| 526 | #endif |
| 527 | |
Daniel P. Berrangé | 98c5d2e | 2020-08-25 11:38:48 +0100 | [diff] [blame] | 528 | socket_init(); |
Christophe Fergeau | f5852ef | 2019-01-31 17:46:14 +0100 | [diff] [blame] | 529 | error_init(argv[0]); |
Daniel P. Berrange | fe4db84 | 2016-10-04 14:35:52 +0100 | [diff] [blame] | 530 | module_call_init(MODULE_INIT_TRACE); |
Fam Zheng | 10f5bff | 2014-02-10 14:48:51 +0800 | [diff] [blame] | 531 | qemu_init_exec_dir(argv[0]); |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 532 | |
Eduardo Habkost | e8f2d27 | 2016-05-12 11:10:04 -0300 | [diff] [blame] | 533 | qcrypto_init(&error_fatal); |
Daniel P. Berrange | c229708 | 2016-04-06 12:12:06 +0100 | [diff] [blame] | 534 | |
Daniel P. Berrange | 064097d | 2016-02-10 18:41:01 +0000 | [diff] [blame] | 535 | module_call_init(MODULE_INIT_QOM); |
Denis V. Lunev | e9a8085 | 2016-06-17 17:44:11 +0300 | [diff] [blame] | 536 | qemu_add_opts(&qemu_trace_opts); |
Kevin Wolf | be6273d | 2014-11-20 16:27:06 +0100 | [diff] [blame] | 537 | bdrv_init(); |
| 538 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 539 | while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) { |
| 540 | switch (c) { |
| 541 | case 's': |
| 542 | flags |= BDRV_O_SNAPSHOT; |
| 543 | break; |
| 544 | case 'n': |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 545 | flags |= BDRV_O_NOCACHE; |
| 546 | writethrough = false; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 547 | break; |
Eric Blake | 0f40444 | 2017-10-05 14:02:43 -0500 | [diff] [blame] | 548 | case 'C': |
| 549 | flags |= BDRV_O_COPY_ON_READ; |
| 550 | break; |
Paolo Bonzini | 9e8f183 | 2013-02-08 14:06:11 +0100 | [diff] [blame] | 551 | case 'd': |
| 552 | if (bdrv_parse_discard_flags(optarg, &flags) < 0) { |
| 553 | error_report("Invalid discard option: %s", optarg); |
| 554 | exit(1); |
| 555 | } |
| 556 | break; |
Kevin Wolf | be6273d | 2014-11-20 16:27:06 +0100 | [diff] [blame] | 557 | case 'f': |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 558 | format = optarg; |
Kevin Wolf | be6273d | 2014-11-20 16:27:06 +0100 | [diff] [blame] | 559 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 560 | case 'c': |
| 561 | add_user_command(optarg); |
| 562 | break; |
| 563 | case 'r': |
| 564 | readonly = 1; |
| 565 | break; |
| 566 | case 'm': |
Stefan Weil | f988388 | 2014-03-05 22:23:00 +0100 | [diff] [blame] | 567 | qemuio_misalign = true; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 568 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 569 | case 'k': |
| 570 | flags |= BDRV_O_NATIVE_AIO; |
| 571 | break; |
Aarushi Mehta | 1c5a2ae | 2020-01-20 14:18:54 +0000 | [diff] [blame] | 572 | case 'i': |
| 573 | if (bdrv_parse_aio(optarg, &flags) < 0) { |
| 574 | error_report("Invalid aio option: %s", optarg); |
| 575 | exit(1); |
| 576 | } |
| 577 | break; |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 578 | case 't': |
Kevin Wolf | e151fc1 | 2016-03-15 12:52:30 +0100 | [diff] [blame] | 579 | if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) { |
Kevin Wolf | 592fa07 | 2012-04-18 12:07:39 +0200 | [diff] [blame] | 580 | error_report("Invalid cache option: %s", optarg); |
| 581 | exit(1); |
| 582 | } |
| 583 | break; |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 584 | case 'T': |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 585 | trace_opt_parse(optarg); |
Stefan Hajnoczi | d7bb72c | 2012-03-12 16:36:07 +0000 | [diff] [blame] | 586 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 587 | case 'V': |
Thomas Huth | 7e563bf | 2018-02-15 12:06:47 +0100 | [diff] [blame] | 588 | printf("%s version " QEMU_FULL_VERSION "\n" |
Christophe Fergeau | 99e98d7 | 2019-01-31 17:46:13 +0100 | [diff] [blame] | 589 | QEMU_COPYRIGHT "\n", error_get_progname()); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 590 | exit(0); |
| 591 | case 'h': |
Christophe Fergeau | 99e98d7 | 2019-01-31 17:46:13 +0100 | [diff] [blame] | 592 | usage(error_get_progname()); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 593 | exit(0); |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 594 | case 'U': |
| 595 | force_share = true; |
| 596 | break; |
Kevin Wolf | b3e79bc | 2021-02-17 12:56:45 +0100 | [diff] [blame] | 597 | case OPTION_OBJECT: |
| 598 | user_creatable_process_cmdline(optarg); |
| 599 | break; |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 600 | case OPTION_IMAGE_OPTS: |
| 601 | imageOpts = true; |
| 602 | break; |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 603 | default: |
Christophe Fergeau | 99e98d7 | 2019-01-31 17:46:13 +0100 | [diff] [blame] | 604 | usage(error_get_progname()); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 605 | exit(1); |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 606 | } |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 607 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 608 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 609 | if ((argc - optind) > 1) { |
Christophe Fergeau | 99e98d7 | 2019-01-31 17:46:13 +0100 | [diff] [blame] | 610 | usage(error_get_progname()); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 611 | exit(1); |
| 612 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 613 | |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 614 | if (format && imageOpts) { |
| 615 | error_report("--image-opts and -f are mutually exclusive"); |
| 616 | exit(1); |
| 617 | } |
| 618 | |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 619 | if (qemu_init_main_loop(&local_error)) { |
Markus Armbruster | 565f65d | 2015-02-12 13:55:05 +0100 | [diff] [blame] | 620 | error_report_err(local_error); |
Chrysostomos Nanakos | 2f78e49 | 2014-09-18 14:30:49 +0300 | [diff] [blame] | 621 | exit(1); |
| 622 | } |
Zhi Yong Wu | a57d114 | 2012-02-19 22:24:59 +0800 | [diff] [blame] | 623 | |
Denis V. Lunev | e9a8085 | 2016-06-17 17:44:11 +0300 | [diff] [blame] | 624 | if (!trace_init_backends()) { |
| 625 | exit(1); |
| 626 | } |
Paolo Bonzini | 92eecff | 2020-11-02 06:58:41 -0500 | [diff] [blame] | 627 | trace_init_file(); |
Denis V. Lunev | e9a8085 | 2016-06-17 17:44:11 +0300 | [diff] [blame] | 628 | qemu_set_log(LOG_TRACE); |
| 629 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 630 | /* initialize commands */ |
Kevin Wolf | c2cdf5c | 2013-06-05 14:19:36 +0200 | [diff] [blame] | 631 | qemuio_add_command(&quit_cmd); |
| 632 | qemuio_add_command(&open_cmd); |
| 633 | qemuio_add_command(&close_cmd); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 634 | |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 635 | if (isatty(STDIN_FILENO)) { |
Daniel P. Berrange | 0e448a0 | 2018-02-12 18:48:49 +0000 | [diff] [blame] | 636 | ttyEOF = get_eof_char(); |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 637 | readline_state = readline_init(readline_printf_func, |
| 638 | readline_flush_func, |
| 639 | NULL, |
| 640 | readline_completion_func); |
| 641 | qemu_set_tty_echo(STDIN_FILENO, false); |
| 642 | atexit(reenable_tty_echo); |
| 643 | } |
| 644 | |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 645 | /* open the device */ |
| 646 | if (!readonly) { |
| 647 | flags |= BDRV_O_RDWR; |
| 648 | } |
| 649 | |
| 650 | if ((argc - optind) == 1) { |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 651 | if (imageOpts) { |
| 652 | QemuOpts *qopts = NULL; |
| 653 | qopts = qemu_opts_parse_noisily(&file_opts, argv[optind], false); |
| 654 | if (!qopts) { |
| 655 | exit(1); |
| 656 | } |
| 657 | opts = qemu_opts_to_qdict(qopts, NULL); |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 658 | if (openfile(NULL, flags, writethrough, force_share, opts)) { |
Nir Soffer | b7aa131 | 2017-02-01 02:31:18 +0200 | [diff] [blame] | 659 | exit(1); |
| 660 | } |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 661 | } else { |
| 662 | if (format) { |
| 663 | opts = qdict_new(); |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 664 | qdict_put_str(opts, "driver", format); |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 665 | } |
Fam Zheng | 459571f | 2017-05-03 00:35:41 +0800 | [diff] [blame] | 666 | if (openfile(argv[optind], flags, writethrough, |
| 667 | force_share, opts)) { |
Nir Soffer | b7aa131 | 2017-02-01 02:31:18 +0200 | [diff] [blame] | 668 | exit(1); |
| 669 | } |
Daniel P. Berrange | 499afa2 | 2016-02-17 10:10:18 +0000 | [diff] [blame] | 670 | } |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 671 | } |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 672 | ret = command_loop(); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 673 | |
| 674 | /* |
Stefan Hajnoczi | 922453b | 2011-11-30 12:23:43 +0000 | [diff] [blame] | 675 | * Make sure all outstanding requests complete before the program exits. |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 676 | */ |
Stefan Hajnoczi | 922453b | 2011-11-30 12:23:43 +0000 | [diff] [blame] | 677 | bdrv_drain_all(); |
Devin Nakamura | 43642b3 | 2011-07-11 11:22:16 -0400 | [diff] [blame] | 678 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 679 | blk_unref(qemuio_blk); |
Stefan Hajnoczi | 0cf17e1 | 2013-11-14 11:54:17 +0100 | [diff] [blame] | 680 | g_free(readline_state); |
Max Reitz | 6b3aa84 | 2018-05-09 21:43:00 +0200 | [diff] [blame] | 681 | |
| 682 | if (ret < 0) { |
| 683 | return 1; |
| 684 | } else { |
| 685 | return 0; |
| 686 | } |
aliguori | e3aff4f | 2009-04-05 19:14:04 +0000 | [diff] [blame] | 687 | } |