Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Block protocol for I/O error injection |
| 3 | * |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 4 | * Copyright (C) 2016-2017 Red Hat, Inc. |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 5 | * Copyright (c) 2010 Kevin Wolf <kwolf@redhat.com> |
| 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | * of this software and associated documentation files (the "Software"), to deal |
| 9 | * in the Software without restriction, including without limitation the rights |
| 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | * copies of the Software, and to permit persons to whom the Software is |
| 12 | * furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included in |
| 15 | * all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 23 | * THE SOFTWARE. |
| 24 | */ |
| 25 | |
Peter Maydell | 80c71a2 | 2016-01-18 18:01:42 +0000 | [diff] [blame] | 26 | #include "qemu/osdep.h" |
Markus Armbruster | da34e65 | 2016-03-14 09:01:28 +0100 | [diff] [blame] | 27 | #include "qapi/error.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 28 | #include "qemu/cutils.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 29 | #include "qemu/config-file.h" |
Markus Armbruster | e2c1c34 | 2022-12-21 14:35:49 +0100 | [diff] [blame] | 30 | #include "block/block-io.h" |
Paolo Bonzini | 737e150 | 2012-12-17 18:19:44 +0100 | [diff] [blame] | 31 | #include "block/block_int.h" |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 32 | #include "block/qdict.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 33 | #include "qemu/module.h" |
Markus Armbruster | 922a01a | 2018-02-01 12:18:46 +0100 | [diff] [blame] | 34 | #include "qemu/option.h" |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 35 | #include "qapi/qapi-visit-block-core.h" |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 36 | #include "qapi/qmp/qdict.h" |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 37 | #include "qapi/qmp/qlist.h" |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 38 | #include "qapi/qmp/qstring.h" |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 39 | #include "qapi/qobject-input-visitor.h" |
Michael S. Tsirkin | 2087352 | 2015-11-30 13:44:44 +0200 | [diff] [blame] | 40 | #include "sysemu/qtest.h" |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 41 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 42 | /* All APIs are thread-safe */ |
| 43 | |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 44 | typedef struct BDRVBlkdebugState { |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 45 | /* IN: initialized in blkdebug_open() and never changed */ |
Eric Blake | 3dc834f | 2017-04-29 14:14:17 -0500 | [diff] [blame] | 46 | uint64_t align; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 47 | uint64_t max_transfer; |
| 48 | uint64_t opt_write_zero; |
| 49 | uint64_t max_write_zero; |
| 50 | uint64_t opt_discard; |
| 51 | uint64_t max_discard; |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 52 | char *config_file; /* For blkdebug_refresh_filename() */ |
| 53 | /* initialized in blkdebug_parse_perms() */ |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 54 | uint64_t take_child_perms; |
| 55 | uint64_t unshare_child_perms; |
| 56 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 57 | /* State. Protected by lock */ |
| 58 | int state; |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 59 | QLIST_HEAD(, BlkdebugRule) rules[BLKDBG__MAX]; |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 60 | QSIMPLEQ_HEAD(, BlkdebugRule) active_rules; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 61 | QLIST_HEAD(, BlkdebugSuspendedReq) suspended_reqs; |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 62 | QemuMutex lock; |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 63 | } BDRVBlkdebugState; |
| 64 | |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 65 | typedef struct BlkdebugAIOCB { |
Markus Armbruster | 7c84b1b | 2014-10-07 13:59:14 +0200 | [diff] [blame] | 66 | BlockAIOCB common; |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 67 | int ret; |
| 68 | } BlkdebugAIOCB; |
| 69 | |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 70 | typedef struct BlkdebugSuspendedReq { |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 71 | /* IN: initialized in suspend_request() */ |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 72 | Coroutine *co; |
| 73 | char *tag; |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 74 | |
| 75 | /* List entry protected BDRVBlkdebugState's lock */ |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 76 | QLIST_ENTRY(BlkdebugSuspendedReq) next; |
| 77 | } BlkdebugSuspendedReq; |
| 78 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 79 | enum { |
| 80 | ACTION_INJECT_ERROR, |
| 81 | ACTION_SET_STATE, |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 82 | ACTION_SUSPEND, |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 83 | ACTION__MAX, |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | typedef struct BlkdebugRule { |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 87 | /* IN: initialized in add_rule() or blkdebug_debug_breakpoint() */ |
Eric Blake | a31939e | 2015-11-18 01:52:54 -0700 | [diff] [blame] | 88 | BlkdebugEvent event; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 89 | int action; |
| 90 | int state; |
| 91 | union { |
| 92 | struct { |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 93 | uint64_t iotype_mask; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 94 | int error; |
| 95 | int immediately; |
| 96 | int once; |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 97 | int64_t offset; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 98 | } inject; |
| 99 | struct { |
| 100 | int new_state; |
| 101 | } set_state; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 102 | struct { |
| 103 | char *tag; |
| 104 | } suspend; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 105 | } options; |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 106 | |
| 107 | /* List entries protected BDRVBlkdebugState's lock */ |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 108 | QLIST_ENTRY(BlkdebugRule) next; |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 109 | QSIMPLEQ_ENTRY(BlkdebugRule) active_next; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 110 | } BlkdebugRule; |
| 111 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 112 | QEMU_BUILD_BUG_MSG(BLKDEBUG_IO_TYPE__MAX > 64, |
| 113 | "BlkdebugIOType mask does not fit into an uint64_t"); |
| 114 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 115 | static QemuOptsList inject_error_opts = { |
| 116 | .name = "inject-error", |
| 117 | .head = QTAILQ_HEAD_INITIALIZER(inject_error_opts.head), |
| 118 | .desc = { |
| 119 | { |
| 120 | .name = "event", |
| 121 | .type = QEMU_OPT_STRING, |
| 122 | }, |
| 123 | { |
| 124 | .name = "state", |
| 125 | .type = QEMU_OPT_NUMBER, |
| 126 | }, |
| 127 | { |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 128 | .name = "iotype", |
| 129 | .type = QEMU_OPT_STRING, |
| 130 | }, |
| 131 | { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 132 | .name = "errno", |
| 133 | .type = QEMU_OPT_NUMBER, |
| 134 | }, |
| 135 | { |
Paolo Bonzini | e4780db | 2012-06-06 08:10:43 +0200 | [diff] [blame] | 136 | .name = "sector", |
| 137 | .type = QEMU_OPT_NUMBER, |
| 138 | }, |
| 139 | { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 140 | .name = "once", |
| 141 | .type = QEMU_OPT_BOOL, |
| 142 | }, |
| 143 | { |
| 144 | .name = "immediately", |
| 145 | .type = QEMU_OPT_BOOL, |
| 146 | }, |
| 147 | { /* end of list */ } |
| 148 | }, |
| 149 | }; |
| 150 | |
| 151 | static QemuOptsList set_state_opts = { |
| 152 | .name = "set-state", |
Kevin Wolf | 327cdad | 2010-06-30 17:40:42 +0200 | [diff] [blame] | 153 | .head = QTAILQ_HEAD_INITIALIZER(set_state_opts.head), |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 154 | .desc = { |
| 155 | { |
| 156 | .name = "event", |
| 157 | .type = QEMU_OPT_STRING, |
| 158 | }, |
| 159 | { |
| 160 | .name = "state", |
| 161 | .type = QEMU_OPT_NUMBER, |
| 162 | }, |
| 163 | { |
| 164 | .name = "new_state", |
| 165 | .type = QEMU_OPT_NUMBER, |
| 166 | }, |
| 167 | { /* end of list */ } |
| 168 | }, |
| 169 | }; |
| 170 | |
| 171 | static QemuOptsList *config_groups[] = { |
| 172 | &inject_error_opts, |
| 173 | &set_state_opts, |
| 174 | NULL |
| 175 | }; |
| 176 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 177 | struct add_rule_data { |
| 178 | BDRVBlkdebugState *s; |
| 179 | int action; |
| 180 | }; |
| 181 | |
Markus Armbruster | 28d0de7 | 2015-03-13 13:35:14 +0100 | [diff] [blame] | 182 | static int add_rule(void *opaque, QemuOpts *opts, Error **errp) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 183 | { |
| 184 | struct add_rule_data *d = opaque; |
| 185 | BDRVBlkdebugState *s = d->s; |
shiliyang | 5f14f31 | 2020-10-30 11:35:12 +0800 | [diff] [blame] | 186 | const char *event_name; |
Marc-André Lureau | f9509d1 | 2017-08-24 10:46:02 +0200 | [diff] [blame] | 187 | int event; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 188 | struct BlkdebugRule *rule; |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 189 | int64_t sector; |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 190 | BlkdebugIOType iotype; |
| 191 | Error *local_error = NULL; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 192 | |
| 193 | /* Find the right event for the rule */ |
| 194 | event_name = qemu_opt_get(opts, "event"); |
Stefan Hajnoczi | d4362d6 | 2014-09-20 09:55:52 +0100 | [diff] [blame] | 195 | if (!event_name) { |
Markus Armbruster | 8809cfc | 2015-03-13 13:38:42 +0100 | [diff] [blame] | 196 | error_setg(errp, "Missing event name for rule"); |
Stefan Hajnoczi | d4362d6 | 2014-09-20 09:55:52 +0100 | [diff] [blame] | 197 | return -1; |
Marc-André Lureau | f9509d1 | 2017-08-24 10:46:02 +0200 | [diff] [blame] | 198 | } |
Marc-André Lureau | f7abe0e | 2017-08-24 10:46:10 +0200 | [diff] [blame] | 199 | event = qapi_enum_parse(&BlkdebugEvent_lookup, event_name, -1, errp); |
Marc-André Lureau | f9509d1 | 2017-08-24 10:46:02 +0200 | [diff] [blame] | 200 | if (event < 0) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 201 | return -1; |
| 202 | } |
| 203 | |
| 204 | /* Set attributes common for all actions */ |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 205 | rule = g_malloc0(sizeof(*rule)); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 206 | *rule = (struct BlkdebugRule) { |
| 207 | .event = event, |
| 208 | .action = d->action, |
| 209 | .state = qemu_opt_get_number(opts, "state", 0), |
| 210 | }; |
| 211 | |
| 212 | /* Parse action-specific options */ |
| 213 | switch (d->action) { |
| 214 | case ACTION_INJECT_ERROR: |
| 215 | rule->options.inject.error = qemu_opt_get_number(opts, "errno", EIO); |
| 216 | rule->options.inject.once = qemu_opt_get_bool(opts, "once", 0); |
| 217 | rule->options.inject.immediately = |
| 218 | qemu_opt_get_bool(opts, "immediately", 0); |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 219 | sector = qemu_opt_get_number(opts, "sector", -1); |
| 220 | rule->options.inject.offset = |
| 221 | sector == -1 ? -1 : sector * BDRV_SECTOR_SIZE; |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 222 | |
| 223 | iotype = qapi_enum_parse(&BlkdebugIOType_lookup, |
| 224 | qemu_opt_get(opts, "iotype"), |
| 225 | BLKDEBUG_IO_TYPE__MAX, &local_error); |
| 226 | if (local_error) { |
| 227 | error_propagate(errp, local_error); |
Elena Afanasova | 5b4c95d | 2020-10-09 12:09:59 -0700 | [diff] [blame] | 228 | g_free(rule); |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 229 | return -1; |
| 230 | } |
| 231 | if (iotype != BLKDEBUG_IO_TYPE__MAX) { |
| 232 | rule->options.inject.iotype_mask = (1ull << iotype); |
| 233 | } else { |
| 234 | /* Apply the default */ |
| 235 | rule->options.inject.iotype_mask = |
| 236 | (1ull << BLKDEBUG_IO_TYPE_READ) |
| 237 | | (1ull << BLKDEBUG_IO_TYPE_WRITE) |
| 238 | | (1ull << BLKDEBUG_IO_TYPE_WRITE_ZEROES) |
| 239 | | (1ull << BLKDEBUG_IO_TYPE_DISCARD) |
| 240 | | (1ull << BLKDEBUG_IO_TYPE_FLUSH); |
| 241 | } |
| 242 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 243 | break; |
| 244 | |
| 245 | case ACTION_SET_STATE: |
| 246 | rule->options.set_state.new_state = |
| 247 | qemu_opt_get_number(opts, "new_state", 0); |
| 248 | break; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 249 | |
| 250 | case ACTION_SUSPEND: |
| 251 | rule->options.suspend.tag = |
| 252 | g_strdup(qemu_opt_get(opts, "tag")); |
| 253 | break; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | /* Add the rule */ |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 257 | qemu_mutex_lock(&s->lock); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 258 | QLIST_INSERT_HEAD(&s->rules[event], rule, next); |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 259 | qemu_mutex_unlock(&s->lock); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 264 | /* Called with lock held or from .bdrv_close */ |
Kevin Wolf | 9e35542 | 2012-12-06 14:32:56 +0100 | [diff] [blame] | 265 | static void remove_rule(BlkdebugRule *rule) |
| 266 | { |
| 267 | switch (rule->action) { |
| 268 | case ACTION_INJECT_ERROR: |
| 269 | case ACTION_SET_STATE: |
| 270 | break; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 271 | case ACTION_SUSPEND: |
| 272 | g_free(rule->options.suspend.tag); |
| 273 | break; |
Kevin Wolf | 9e35542 | 2012-12-06 14:32:56 +0100 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | QLIST_REMOVE(rule, next); |
| 277 | g_free(rule); |
| 278 | } |
| 279 | |
Max Reitz | 89f2b21 | 2013-12-20 19:28:07 +0100 | [diff] [blame] | 280 | static int read_config(BDRVBlkdebugState *s, const char *filename, |
| 281 | QDict *options, Error **errp) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 282 | { |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 283 | FILE *f = NULL; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 284 | int ret; |
| 285 | struct add_rule_data d; |
Max Reitz | 89f2b21 | 2013-12-20 19:28:07 +0100 | [diff] [blame] | 286 | Error *local_err = NULL; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 287 | |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 288 | if (filename) { |
| 289 | f = fopen(filename, "r"); |
| 290 | if (f == NULL) { |
| 291 | error_setg_errno(errp, errno, "Could not read blkdebug config file"); |
| 292 | return -errno; |
| 293 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 294 | |
Paolo Bonzini | f7544ed | 2021-02-26 12:08:16 -0500 | [diff] [blame] | 295 | ret = qemu_config_parse(f, config_groups, filename, errp); |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 296 | if (ret < 0) { |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 297 | goto fail; |
| 298 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 299 | } |
| 300 | |
Markus Armbruster | f766e6d | 2022-11-21 09:50:50 +0100 | [diff] [blame] | 301 | if (!qemu_config_parse_qdict(options, config_groups, errp)) { |
Max Reitz | 89f2b21 | 2013-12-20 19:28:07 +0100 | [diff] [blame] | 302 | ret = -EINVAL; |
| 303 | goto fail; |
| 304 | } |
| 305 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 306 | d.s = s; |
| 307 | d.action = ACTION_INJECT_ERROR; |
Markus Armbruster | 8809cfc | 2015-03-13 13:38:42 +0100 | [diff] [blame] | 308 | qemu_opts_foreach(&inject_error_opts, add_rule, &d, &local_err); |
Stefan Hajnoczi | d4362d6 | 2014-09-20 09:55:52 +0100 | [diff] [blame] | 309 | if (local_err) { |
| 310 | error_propagate(errp, local_err); |
| 311 | ret = -EINVAL; |
| 312 | goto fail; |
| 313 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 314 | |
| 315 | d.action = ACTION_SET_STATE; |
Markus Armbruster | 8809cfc | 2015-03-13 13:38:42 +0100 | [diff] [blame] | 316 | qemu_opts_foreach(&set_state_opts, add_rule, &d, &local_err); |
Stefan Hajnoczi | d4362d6 | 2014-09-20 09:55:52 +0100 | [diff] [blame] | 317 | if (local_err) { |
| 318 | error_propagate(errp, local_err); |
| 319 | ret = -EINVAL; |
| 320 | goto fail; |
| 321 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 322 | |
| 323 | ret = 0; |
| 324 | fail: |
Kevin Wolf | 698f0d5 | 2010-06-30 17:42:23 +0200 | [diff] [blame] | 325 | qemu_opts_reset(&inject_error_opts); |
| 326 | qemu_opts_reset(&set_state_opts); |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 327 | if (f) { |
| 328 | fclose(f); |
| 329 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 330 | return ret; |
| 331 | } |
| 332 | |
| 333 | /* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */ |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 334 | static void blkdebug_parse_filename(const char *filename, QDict *options, |
| 335 | Error **errp) |
| 336 | { |
| 337 | const char *c; |
| 338 | |
| 339 | /* Parse the blkdebug: prefix */ |
| 340 | if (!strstart(filename, "blkdebug:", &filename)) { |
Max Reitz | d4881b9 | 2013-12-20 19:28:02 +0100 | [diff] [blame] | 341 | /* There was no prefix; therefore, all options have to be already |
| 342 | present in the QDict (except for the filename) */ |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 343 | qdict_put_str(options, "x-image", filename); |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 344 | return; |
| 345 | } |
| 346 | |
| 347 | /* Parse config file path */ |
| 348 | c = strchr(filename, ':'); |
| 349 | if (c == NULL) { |
| 350 | error_setg(errp, "blkdebug requires both config file and image path"); |
| 351 | return; |
| 352 | } |
| 353 | |
| 354 | if (c != filename) { |
| 355 | QString *config_path; |
Markus Armbruster | ba891d6 | 2018-07-27 08:22:04 +0200 | [diff] [blame] | 356 | config_path = qstring_from_substr(filename, 0, c - filename); |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 357 | qdict_put(options, "config", config_path); |
| 358 | } |
| 359 | |
| 360 | /* TODO Allow multi-level nesting and set file.filename here */ |
| 361 | filename = c + 1; |
Eric Blake | 46f5ac2 | 2017-04-27 16:58:17 -0500 | [diff] [blame] | 362 | qdict_put_str(options, "x-image", filename); |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 363 | } |
| 364 | |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 365 | static int blkdebug_parse_perm_list(uint64_t *dest, QDict *options, |
| 366 | const char *prefix, Error **errp) |
| 367 | { |
| 368 | int ret = 0; |
| 369 | QDict *subqdict = NULL; |
| 370 | QObject *crumpled_subqdict = NULL; |
| 371 | Visitor *v = NULL; |
| 372 | BlockPermissionList *perm_list = NULL, *element; |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 373 | |
| 374 | *dest = 0; |
| 375 | |
| 376 | qdict_extract_subqdict(options, &subqdict, prefix); |
| 377 | if (!qdict_size(subqdict)) { |
| 378 | goto out; |
| 379 | } |
| 380 | |
| 381 | crumpled_subqdict = qdict_crumple(subqdict, errp); |
| 382 | if (!crumpled_subqdict) { |
| 383 | ret = -EINVAL; |
| 384 | goto out; |
| 385 | } |
| 386 | |
| 387 | v = qobject_input_visitor_new(crumpled_subqdict); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 388 | if (!visit_type_BlockPermissionList(v, NULL, &perm_list, errp)) { |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 389 | ret = -EINVAL; |
| 390 | goto out; |
| 391 | } |
| 392 | |
| 393 | for (element = perm_list; element; element = element->next) { |
| 394 | *dest |= bdrv_qapi_perm_to_blk_perm(element->value); |
| 395 | } |
| 396 | |
| 397 | out: |
| 398 | qapi_free_BlockPermissionList(perm_list); |
| 399 | visit_free(v); |
| 400 | qobject_unref(subqdict); |
| 401 | qobject_unref(crumpled_subqdict); |
| 402 | return ret; |
| 403 | } |
| 404 | |
| 405 | static int blkdebug_parse_perms(BDRVBlkdebugState *s, QDict *options, |
| 406 | Error **errp) |
| 407 | { |
| 408 | int ret; |
| 409 | |
| 410 | ret = blkdebug_parse_perm_list(&s->take_child_perms, options, |
| 411 | "take-child-perms.", errp); |
| 412 | if (ret < 0) { |
| 413 | return ret; |
| 414 | } |
| 415 | |
| 416 | ret = blkdebug_parse_perm_list(&s->unshare_child_perms, options, |
| 417 | "unshare-child-perms.", errp); |
| 418 | if (ret < 0) { |
| 419 | return ret; |
| 420 | } |
| 421 | |
| 422 | return 0; |
| 423 | } |
| 424 | |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 425 | static QemuOptsList runtime_opts = { |
| 426 | .name = "blkdebug", |
| 427 | .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head), |
| 428 | .desc = { |
| 429 | { |
| 430 | .name = "config", |
| 431 | .type = QEMU_OPT_STRING, |
| 432 | .help = "Path to the configuration file", |
| 433 | }, |
| 434 | { |
| 435 | .name = "x-image", |
| 436 | .type = QEMU_OPT_STRING, |
| 437 | .help = "[internal use only, will be removed]", |
| 438 | }, |
Kevin Wolf | b35ee7f | 2014-01-14 13:44:35 +0100 | [diff] [blame] | 439 | { |
| 440 | .name = "align", |
| 441 | .type = QEMU_OPT_SIZE, |
| 442 | .help = "Required alignment in bytes", |
| 443 | }, |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 444 | { |
| 445 | .name = "max-transfer", |
| 446 | .type = QEMU_OPT_SIZE, |
| 447 | .help = "Maximum transfer size in bytes", |
| 448 | }, |
| 449 | { |
| 450 | .name = "opt-write-zero", |
| 451 | .type = QEMU_OPT_SIZE, |
| 452 | .help = "Optimum write zero alignment in bytes", |
| 453 | }, |
| 454 | { |
| 455 | .name = "max-write-zero", |
| 456 | .type = QEMU_OPT_SIZE, |
| 457 | .help = "Maximum write zero size in bytes", |
| 458 | }, |
| 459 | { |
| 460 | .name = "opt-discard", |
| 461 | .type = QEMU_OPT_SIZE, |
| 462 | .help = "Optimum discard alignment in bytes", |
| 463 | }, |
| 464 | { |
| 465 | .name = "max-discard", |
| 466 | .type = QEMU_OPT_SIZE, |
| 467 | .help = "Maximum discard size in bytes", |
| 468 | }, |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 469 | { /* end of list */ } |
| 470 | }, |
| 471 | }; |
| 472 | |
Max Reitz | 015a103 | 2013-09-05 14:22:29 +0200 | [diff] [blame] | 473 | static int blkdebug_open(BlockDriverState *bs, QDict *options, int flags, |
| 474 | Error **errp) |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 475 | { |
| 476 | BDRVBlkdebugState *s = bs->opaque; |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 477 | QemuOpts *opts; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 478 | int ret; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 479 | uint64_t align; |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 480 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 481 | qemu_mutex_init(&s->lock); |
Peter Crosthwaite | 87ea75d | 2014-01-01 18:49:17 -0800 | [diff] [blame] | 482 | opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort); |
Markus Armbruster | af175e8 | 2020-07-07 18:06:03 +0200 | [diff] [blame] | 483 | if (!qemu_opts_absorb_qdict(opts, options, errp)) { |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 484 | ret = -EINVAL; |
Kevin Wolf | eaf944a | 2014-02-08 09:53:22 +0100 | [diff] [blame] | 485 | goto out; |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 486 | } |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 487 | |
Max Reitz | 89f2b21 | 2013-12-20 19:28:07 +0100 | [diff] [blame] | 488 | /* Read rules from config file or command line options */ |
Max Reitz | 036990d | 2016-08-15 15:29:25 +0200 | [diff] [blame] | 489 | s->config_file = g_strdup(qemu_opt_get(opts, "config")); |
| 490 | ret = read_config(s, s->config_file, options, errp); |
Max Reitz | 85a040e | 2013-12-20 19:28:06 +0100 | [diff] [blame] | 491 | if (ret) { |
Kevin Wolf | eaf944a | 2014-02-08 09:53:22 +0100 | [diff] [blame] | 492 | goto out; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 493 | } |
| 494 | |
Kevin Wolf | 8db520c | 2010-06-30 17:43:40 +0200 | [diff] [blame] | 495 | /* Set initial state */ |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 496 | s->state = 1; |
Kevin Wolf | 8db520c | 2010-06-30 17:43:40 +0200 | [diff] [blame] | 497 | |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 498 | /* Parse permissions modifiers before opening the image file */ |
| 499 | ret = blkdebug_parse_perms(s, options, errp); |
| 500 | if (ret < 0) { |
| 501 | goto out; |
| 502 | } |
| 503 | |
Fam Zheng | 6b826af | 2015-10-16 18:46:04 +0800 | [diff] [blame] | 504 | /* Open the image file */ |
Vladimir Sementsov-Ogievskiy | 8393078 | 2022-07-26 23:11:21 +0300 | [diff] [blame] | 505 | ret = bdrv_open_file_child(qemu_opt_get(opts, "x-image"), options, "image", |
| 506 | bs, errp); |
| 507 | if (ret < 0) { |
Kevin Wolf | eaf944a | 2014-02-08 09:53:22 +0100 | [diff] [blame] | 508 | goto out; |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 509 | } |
| 510 | |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 511 | bdrv_graph_rdlock_main_loop(); |
| 512 | |
Max Reitz | 228345b | 2018-04-21 15:29:26 +0200 | [diff] [blame] | 513 | bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED | |
| 514 | (BDRV_REQ_FUA & bs->file->bs->supported_write_flags); |
| 515 | bs->supported_zero_flags = BDRV_REQ_WRITE_UNCHANGED | |
Kevin Wolf | 80f5c33 | 2019-03-22 13:42:39 +0100 | [diff] [blame] | 516 | ((BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK) & |
Max Reitz | 228345b | 2018-04-21 15:29:26 +0200 | [diff] [blame] | 517 | bs->file->bs->supported_zero_flags); |
Eric Blake | 3dc834f | 2017-04-29 14:14:17 -0500 | [diff] [blame] | 518 | ret = -EINVAL; |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 519 | |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 520 | /* Set alignment overrides */ |
Eric Blake | 3dc834f | 2017-04-29 14:14:17 -0500 | [diff] [blame] | 521 | s->align = qemu_opt_get_size(opts, "align", 0); |
| 522 | if (s->align && (s->align >= INT_MAX || !is_power_of_2(s->align))) { |
| 523 | error_setg(errp, "Cannot meet constraints with align %" PRIu64, |
| 524 | s->align); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 525 | goto out_rdlock; |
Kevin Wolf | b35ee7f | 2014-01-14 13:44:35 +0100 | [diff] [blame] | 526 | } |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 527 | align = MAX(s->align, bs->file->bs->bl.request_alignment); |
| 528 | |
| 529 | s->max_transfer = qemu_opt_get_size(opts, "max-transfer", 0); |
| 530 | if (s->max_transfer && |
| 531 | (s->max_transfer >= INT_MAX || |
| 532 | !QEMU_IS_ALIGNED(s->max_transfer, align))) { |
| 533 | error_setg(errp, "Cannot meet constraints with max-transfer %" PRIu64, |
| 534 | s->max_transfer); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 535 | goto out_rdlock; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | s->opt_write_zero = qemu_opt_get_size(opts, "opt-write-zero", 0); |
| 539 | if (s->opt_write_zero && |
| 540 | (s->opt_write_zero >= INT_MAX || |
| 541 | !QEMU_IS_ALIGNED(s->opt_write_zero, align))) { |
| 542 | error_setg(errp, "Cannot meet constraints with opt-write-zero %" PRIu64, |
| 543 | s->opt_write_zero); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 544 | goto out_rdlock; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | s->max_write_zero = qemu_opt_get_size(opts, "max-write-zero", 0); |
| 548 | if (s->max_write_zero && |
| 549 | (s->max_write_zero >= INT_MAX || |
| 550 | !QEMU_IS_ALIGNED(s->max_write_zero, |
| 551 | MAX(s->opt_write_zero, align)))) { |
| 552 | error_setg(errp, "Cannot meet constraints with max-write-zero %" PRIu64, |
| 553 | s->max_write_zero); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 554 | goto out_rdlock; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | s->opt_discard = qemu_opt_get_size(opts, "opt-discard", 0); |
| 558 | if (s->opt_discard && |
| 559 | (s->opt_discard >= INT_MAX || |
| 560 | !QEMU_IS_ALIGNED(s->opt_discard, align))) { |
| 561 | error_setg(errp, "Cannot meet constraints with opt-discard %" PRIu64, |
| 562 | s->opt_discard); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 563 | goto out_rdlock; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | s->max_discard = qemu_opt_get_size(opts, "max-discard", 0); |
| 567 | if (s->max_discard && |
| 568 | (s->max_discard >= INT_MAX || |
| 569 | !QEMU_IS_ALIGNED(s->max_discard, |
| 570 | MAX(s->opt_discard, align)))) { |
| 571 | error_setg(errp, "Cannot meet constraints with max-discard %" PRIu64, |
| 572 | s->max_discard); |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 573 | goto out_rdlock; |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 574 | } |
Kevin Wolf | b35ee7f | 2014-01-14 13:44:35 +0100 | [diff] [blame] | 575 | |
Max Reitz | f8cec15 | 2019-05-07 22:35:05 +0200 | [diff] [blame] | 576 | bdrv_debug_event(bs, BLKDBG_NONE); |
| 577 | |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 578 | ret = 0; |
Kevin Wolf | a4b740d | 2023-10-27 17:53:32 +0200 | [diff] [blame] | 579 | out_rdlock: |
| 580 | bdrv_graph_rdunlock_main_loop(); |
Kevin Wolf | eaf944a | 2014-02-08 09:53:22 +0100 | [diff] [blame] | 581 | out: |
Max Reitz | 036990d | 2016-08-15 15:29:25 +0200 | [diff] [blame] | 582 | if (ret < 0) { |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 583 | qemu_mutex_destroy(&s->lock); |
Max Reitz | 036990d | 2016-08-15 15:29:25 +0200 | [diff] [blame] | 584 | g_free(s->config_file); |
| 585 | } |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 586 | qemu_opts_del(opts); |
| 587 | return ret; |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 588 | } |
| 589 | |
Paolo Bonzini | 2f1fabd | 2023-03-09 09:44:49 +0100 | [diff] [blame] | 590 | static int coroutine_fn rule_check(BlockDriverState *bs, uint64_t offset, |
| 591 | uint64_t bytes, BlkdebugIOType iotype) |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 592 | { |
| 593 | BDRVBlkdebugState *s = bs->opaque; |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 594 | BlkdebugRule *rule = NULL; |
| 595 | int error; |
| 596 | bool immediately; |
| 597 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 598 | qemu_mutex_lock(&s->lock); |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 599 | QSIMPLEQ_FOREACH(rule, &s->active_rules, active_next) { |
| 600 | uint64_t inject_offset = rule->options.inject.offset; |
| 601 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 602 | if ((inject_offset == -1 || |
| 603 | (bytes && inject_offset >= offset && |
| 604 | inject_offset < offset + bytes)) && |
| 605 | (rule->options.inject.iotype_mask & (1ull << iotype))) |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 606 | { |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | if (!rule || !rule->options.inject.error) { |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 612 | qemu_mutex_unlock(&s->lock); |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 613 | return 0; |
| 614 | } |
| 615 | |
| 616 | immediately = rule->options.inject.immediately; |
| 617 | error = rule->options.inject.error; |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 618 | |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 619 | if (rule->options.inject.once) { |
John Snow | a069e2f | 2015-02-06 16:26:17 -0500 | [diff] [blame] | 620 | QSIMPLEQ_REMOVE(&s->active_rules, rule, BlkdebugRule, active_next); |
| 621 | remove_rule(rule); |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 622 | } |
| 623 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 624 | qemu_mutex_unlock(&s->lock); |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 625 | if (!immediately) { |
Paolo Bonzini | e5c67ab | 2017-02-13 14:52:26 +0100 | [diff] [blame] | 626 | aio_co_schedule(qemu_get_current_aio_context(), qemu_coroutine_self()); |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 627 | qemu_coroutine_yield(); |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 628 | } |
| 629 | |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 630 | return -error; |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 631 | } |
| 632 | |
Kevin Wolf | b9b10c3 | 2023-02-03 16:21:50 +0100 | [diff] [blame] | 633 | static int coroutine_fn GRAPH_RDLOCK |
Vladimir Sementsov-Ogievskiy | f7ef38d | 2021-09-03 13:27:59 +0300 | [diff] [blame] | 634 | blkdebug_co_preadv(BlockDriverState *bs, int64_t offset, int64_t bytes, |
| 635 | QEMUIOVector *qiov, BdrvRequestFlags flags) |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 636 | { |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 637 | int err; |
Paolo Bonzini | e4780db | 2012-06-06 08:10:43 +0200 | [diff] [blame] | 638 | |
Eric Blake | e0ef439 | 2017-04-29 14:14:14 -0500 | [diff] [blame] | 639 | /* Sanity check block layer guarantees */ |
| 640 | assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); |
| 641 | assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); |
| 642 | if (bs->bl.max_transfer) { |
| 643 | assert(bytes <= bs->bl.max_transfer); |
| 644 | } |
| 645 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 646 | err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_READ); |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 647 | if (err) { |
| 648 | return err; |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 649 | } |
| 650 | |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 651 | return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags); |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 652 | } |
| 653 | |
Kevin Wolf | b9b10c3 | 2023-02-03 16:21:50 +0100 | [diff] [blame] | 654 | static int coroutine_fn GRAPH_RDLOCK |
Vladimir Sementsov-Ogievskiy | e75abed | 2021-09-03 13:28:00 +0300 | [diff] [blame] | 655 | blkdebug_co_pwritev(BlockDriverState *bs, int64_t offset, int64_t bytes, |
| 656 | QEMUIOVector *qiov, BdrvRequestFlags flags) |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 657 | { |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 658 | int err; |
Paolo Bonzini | e4780db | 2012-06-06 08:10:43 +0200 | [diff] [blame] | 659 | |
Eric Blake | e0ef439 | 2017-04-29 14:14:14 -0500 | [diff] [blame] | 660 | /* Sanity check block layer guarantees */ |
| 661 | assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); |
| 662 | assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); |
| 663 | if (bs->bl.max_transfer) { |
| 664 | assert(bytes <= bs->bl.max_transfer); |
| 665 | } |
| 666 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 667 | err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_WRITE); |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 668 | if (err) { |
| 669 | return err; |
Kevin Wolf | b9f66d9 | 2010-02-19 16:24:35 +0100 | [diff] [blame] | 670 | } |
| 671 | |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 672 | return bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags); |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 673 | } |
| 674 | |
Emanuele Giuseppe Esposito | 8809534 | 2023-02-03 16:21:46 +0100 | [diff] [blame] | 675 | static int GRAPH_RDLOCK coroutine_fn blkdebug_co_flush(BlockDriverState *bs) |
Paolo Bonzini | 9e52c53 | 2014-08-04 17:11:02 -0400 | [diff] [blame] | 676 | { |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 677 | int err = rule_check(bs, 0, 0, BLKDEBUG_IO_TYPE_FLUSH); |
Paolo Bonzini | 9e52c53 | 2014-08-04 17:11:02 -0400 | [diff] [blame] | 678 | |
Eric Blake | d157ed5 | 2017-04-29 14:14:15 -0500 | [diff] [blame] | 679 | if (err) { |
| 680 | return err; |
Paolo Bonzini | 9e52c53 | 2014-08-04 17:11:02 -0400 | [diff] [blame] | 681 | } |
| 682 | |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 683 | return bdrv_co_flush(bs->file->bs); |
Paolo Bonzini | 9e52c53 | 2014-08-04 17:11:02 -0400 | [diff] [blame] | 684 | } |
| 685 | |
Kevin Wolf | abaf8b7 | 2023-02-03 16:21:48 +0100 | [diff] [blame] | 686 | static int coroutine_fn GRAPH_RDLOCK |
| 687 | blkdebug_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int64_t bytes, |
| 688 | BdrvRequestFlags flags) |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 689 | { |
| 690 | uint32_t align = MAX(bs->bl.request_alignment, |
| 691 | bs->bl.pwrite_zeroes_alignment); |
| 692 | int err; |
| 693 | |
| 694 | /* Only pass through requests that are larger than requested |
| 695 | * preferred alignment (so that we test the fallback to writes on |
| 696 | * unaligned portions), and check that the block layer never hands |
| 697 | * us anything unaligned that crosses an alignment boundary. */ |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 698 | if (bytes < align) { |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 699 | assert(QEMU_IS_ALIGNED(offset, align) || |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 700 | QEMU_IS_ALIGNED(offset + bytes, align) || |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 701 | DIV_ROUND_UP(offset, align) == |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 702 | DIV_ROUND_UP(offset + bytes, align)); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 703 | return -ENOTSUP; |
| 704 | } |
| 705 | assert(QEMU_IS_ALIGNED(offset, align)); |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 706 | assert(QEMU_IS_ALIGNED(bytes, align)); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 707 | if (bs->bl.max_pwrite_zeroes) { |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 708 | assert(bytes <= bs->bl.max_pwrite_zeroes); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 709 | } |
| 710 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 711 | err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_WRITE_ZEROES); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 712 | if (err) { |
| 713 | return err; |
| 714 | } |
| 715 | |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 716 | return bdrv_co_pwrite_zeroes(bs->file, offset, bytes, flags); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 717 | } |
| 718 | |
Emanuele Giuseppe Esposito | 9a5a1c6 | 2023-02-03 16:21:47 +0100 | [diff] [blame] | 719 | static int coroutine_fn GRAPH_RDLOCK |
| 720 | blkdebug_co_pdiscard(BlockDriverState *bs, int64_t offset, int64_t bytes) |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 721 | { |
| 722 | uint32_t align = bs->bl.pdiscard_alignment; |
| 723 | int err; |
| 724 | |
| 725 | /* Only pass through requests that are larger than requested |
| 726 | * minimum alignment, and ensure that unaligned requests do not |
| 727 | * cross optimum discard boundaries. */ |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 728 | if (bytes < bs->bl.request_alignment) { |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 729 | assert(QEMU_IS_ALIGNED(offset, align) || |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 730 | QEMU_IS_ALIGNED(offset + bytes, align) || |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 731 | DIV_ROUND_UP(offset, align) == |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 732 | DIV_ROUND_UP(offset + bytes, align)); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 733 | return -ENOTSUP; |
| 734 | } |
| 735 | assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 736 | assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); |
| 737 | if (align && bytes >= align) { |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 738 | assert(QEMU_IS_ALIGNED(offset, align)); |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 739 | assert(QEMU_IS_ALIGNED(bytes, align)); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 740 | } |
| 741 | if (bs->bl.max_pdiscard) { |
Manos Pitsidianakis | f5a5ca7 | 2017-06-09 13:18:08 +0300 | [diff] [blame] | 742 | assert(bytes <= bs->bl.max_pdiscard); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 743 | } |
| 744 | |
Max Reitz | 16789db | 2019-05-07 22:35:04 +0200 | [diff] [blame] | 745 | err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_DISCARD); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 746 | if (err) { |
| 747 | return err; |
| 748 | } |
| 749 | |
Fam Zheng | 0b9fd3f | 2018-07-10 14:31:17 +0800 | [diff] [blame] | 750 | return bdrv_co_pdiscard(bs->file, offset, bytes); |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 751 | } |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 752 | |
Kevin Wolf | 79a5586 | 2023-10-27 17:53:29 +0200 | [diff] [blame] | 753 | static int coroutine_fn GRAPH_RDLOCK |
| 754 | blkdebug_co_block_status(BlockDriverState *bs, bool want_zero, int64_t offset, |
| 755 | int64_t bytes, int64_t *pnum, int64_t *map, |
| 756 | BlockDriverState **file) |
Eric Blake | efa6e2e | 2017-10-11 22:47:17 -0500 | [diff] [blame] | 757 | { |
Max Reitz | 1adb0b5 | 2019-05-07 22:35:06 +0200 | [diff] [blame] | 758 | int err; |
| 759 | |
Eric Blake | 3e4d0e7 | 2018-02-13 14:26:43 -0600 | [diff] [blame] | 760 | assert(QEMU_IS_ALIGNED(offset | bytes, bs->bl.request_alignment)); |
Max Reitz | 1adb0b5 | 2019-05-07 22:35:06 +0200 | [diff] [blame] | 761 | |
| 762 | err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_BLOCK_STATUS); |
| 763 | if (err) { |
| 764 | return err; |
| 765 | } |
| 766 | |
Max Reitz | 549ec0d | 2019-02-13 18:05:23 +0100 | [diff] [blame] | 767 | assert(bs->file && bs->file->bs); |
| 768 | *pnum = bytes; |
| 769 | *map = offset; |
| 770 | *file = bs->file->bs; |
| 771 | return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID; |
Eric Blake | efa6e2e | 2017-10-11 22:47:17 -0500 | [diff] [blame] | 772 | } |
| 773 | |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 774 | static void blkdebug_close(BlockDriverState *bs) |
| 775 | { |
| 776 | BDRVBlkdebugState *s = bs->opaque; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 777 | BlkdebugRule *rule, *next; |
| 778 | int i; |
| 779 | |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 780 | for (i = 0; i < BLKDBG__MAX; i++) { |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 781 | QLIST_FOREACH_SAFE(rule, &s->rules[i], next, next) { |
Kevin Wolf | 9e35542 | 2012-12-06 14:32:56 +0100 | [diff] [blame] | 782 | remove_rule(rule); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 783 | } |
| 784 | } |
Max Reitz | 036990d | 2016-08-15 15:29:25 +0200 | [diff] [blame] | 785 | |
| 786 | g_free(s->config_file); |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 787 | qemu_mutex_destroy(&s->lock); |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 788 | } |
| 789 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 790 | /* Called with lock held. */ |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 791 | static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule) |
| 792 | { |
| 793 | BDRVBlkdebugState *s = bs->opaque; |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 794 | BlkdebugSuspendedReq *r; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 795 | |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 796 | r = g_new(BlkdebugSuspendedReq, 1); |
| 797 | |
| 798 | r->co = qemu_coroutine_self(); |
| 799 | r->tag = g_strdup(rule->options.suspend.tag); |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 800 | |
| 801 | remove_rule(rule); |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 802 | QLIST_INSERT_HEAD(&s->suspended_reqs, r, next); |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 803 | |
Michael S. Tsirkin | 2087352 | 2015-11-30 13:44:44 +0200 | [diff] [blame] | 804 | if (!qtest_enabled()) { |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 805 | printf("blkdebug: Suspended request '%s'\n", r->tag); |
Michael S. Tsirkin | 2087352 | 2015-11-30 13:44:44 +0200 | [diff] [blame] | 806 | } |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 807 | } |
| 808 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 809 | /* Called with lock held. */ |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 810 | static void process_rule(BlockDriverState *bs, struct BlkdebugRule *rule, |
Emanuele Giuseppe Esposito | 4153b55 | 2021-06-14 10:29:30 +0200 | [diff] [blame] | 811 | int *action_count, int *new_state) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 812 | { |
| 813 | BDRVBlkdebugState *s = bs->opaque; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 814 | |
| 815 | /* Only process rules for the current state */ |
Paolo Bonzini | 8f96b5b | 2012-09-28 17:23:00 +0200 | [diff] [blame] | 816 | if (rule->state && rule->state != s->state) { |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 817 | return; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | /* Take the action */ |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 821 | action_count[rule->action]++; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 822 | switch (rule->action) { |
| 823 | case ACTION_INJECT_ERROR: |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 824 | if (action_count[ACTION_INJECT_ERROR] == 1) { |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 825 | QSIMPLEQ_INIT(&s->active_rules); |
Paolo Bonzini | 571cd43 | 2012-06-06 08:10:42 +0200 | [diff] [blame] | 826 | } |
| 827 | QSIMPLEQ_INSERT_HEAD(&s->active_rules, rule, active_next); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 828 | break; |
| 829 | |
| 830 | case ACTION_SET_STATE: |
Emanuele Giuseppe Esposito | 4153b55 | 2021-06-14 10:29:30 +0200 | [diff] [blame] | 831 | *new_state = rule->options.set_state.new_state; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 832 | break; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 833 | |
| 834 | case ACTION_SUSPEND: |
| 835 | suspend_request(bs, rule); |
| 836 | break; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 837 | } |
| 838 | } |
| 839 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 840 | static void coroutine_fn |
| 841 | blkdebug_co_debug_event(BlockDriverState *bs, BlkdebugEvent event) |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 842 | { |
| 843 | BDRVBlkdebugState *s = bs->opaque; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 844 | struct BlkdebugRule *rule, *next; |
Emanuele Giuseppe Esposito | 4153b55 | 2021-06-14 10:29:30 +0200 | [diff] [blame] | 845 | int new_state; |
Emanuele Giuseppe Esposito | 51a4636 | 2021-06-14 10:29:28 +0200 | [diff] [blame] | 846 | int actions_count[ACTION__MAX] = { 0 }; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 847 | |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 848 | assert((int)event >= 0 && event < BLKDBG__MAX); |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 849 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 850 | WITH_QEMU_LOCK_GUARD(&s->lock) { |
| 851 | new_state = s->state; |
| 852 | QLIST_FOREACH_SAFE(rule, &s->rules[event], next, next) { |
| 853 | process_rule(bs, rule, actions_count, &new_state); |
| 854 | } |
| 855 | s->state = new_state; |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 856 | } |
Emanuele Giuseppe Esposito | 2196c34 | 2021-06-14 10:29:29 +0200 | [diff] [blame] | 857 | |
| 858 | while (actions_count[ACTION_SUSPEND] > 0) { |
| 859 | qemu_coroutine_yield(); |
| 860 | actions_count[ACTION_SUSPEND]--; |
| 861 | } |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 862 | } |
| 863 | |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 864 | static int blkdebug_debug_breakpoint(BlockDriverState *bs, const char *event, |
| 865 | const char *tag) |
| 866 | { |
| 867 | BDRVBlkdebugState *s = bs->opaque; |
| 868 | struct BlkdebugRule *rule; |
Marc-André Lureau | f9509d1 | 2017-08-24 10:46:02 +0200 | [diff] [blame] | 869 | int blkdebug_event; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 870 | |
Marc-André Lureau | f7abe0e | 2017-08-24 10:46:10 +0200 | [diff] [blame] | 871 | blkdebug_event = qapi_enum_parse(&BlkdebugEvent_lookup, event, -1, NULL); |
Marc-André Lureau | f9509d1 | 2017-08-24 10:46:02 +0200 | [diff] [blame] | 872 | if (blkdebug_event < 0) { |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 873 | return -ENOENT; |
| 874 | } |
| 875 | |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 876 | rule = g_malloc(sizeof(*rule)); |
| 877 | *rule = (struct BlkdebugRule) { |
| 878 | .event = blkdebug_event, |
| 879 | .action = ACTION_SUSPEND, |
| 880 | .state = 0, |
| 881 | .options.suspend.tag = g_strdup(tag), |
| 882 | }; |
| 883 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 884 | qemu_mutex_lock(&s->lock); |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 885 | QLIST_INSERT_HEAD(&s->rules[blkdebug_event], rule, next); |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 886 | qemu_mutex_unlock(&s->lock); |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 887 | |
| 888 | return 0; |
| 889 | } |
| 890 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 891 | /* Called with lock held. May temporarily release lock. */ |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 892 | static int resume_req_by_tag(BDRVBlkdebugState *s, const char *tag, bool all) |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 893 | { |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 894 | BlkdebugSuspendedReq *r; |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 895 | |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 896 | retry: |
| 897 | /* |
| 898 | * No need for _SAFE, since a different coroutine can remove another node |
| 899 | * (not the current one) in this list, and when the current one is removed |
| 900 | * the iteration starts back from beginning anyways. |
| 901 | */ |
| 902 | QLIST_FOREACH(r, &s->suspended_reqs, next) { |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 903 | if (!strcmp(r->tag, tag)) { |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 904 | Coroutine *co = r->co; |
| 905 | |
| 906 | if (!qtest_enabled()) { |
| 907 | printf("blkdebug: Resuming request '%s'\n", r->tag); |
| 908 | } |
| 909 | |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 910 | QLIST_REMOVE(r, next); |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 911 | g_free(r->tag); |
| 912 | g_free(r); |
| 913 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 914 | qemu_mutex_unlock(&s->lock); |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 915 | qemu_coroutine_enter(co); |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 916 | qemu_mutex_lock(&s->lock); |
Emanuele Giuseppe Esposito | f48ff5a | 2021-06-14 10:29:27 +0200 | [diff] [blame] | 917 | |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 918 | if (all) { |
| 919 | goto retry; |
| 920 | } |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 921 | return 0; |
| 922 | } |
| 923 | } |
| 924 | return -ENOENT; |
| 925 | } |
| 926 | |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 927 | static int blkdebug_debug_resume(BlockDriverState *bs, const char *tag) |
| 928 | { |
| 929 | BDRVBlkdebugState *s = bs->opaque; |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 930 | QEMU_LOCK_GUARD(&s->lock); |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 931 | return resume_req_by_tag(s, tag, false); |
| 932 | } |
| 933 | |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 934 | static int blkdebug_debug_remove_breakpoint(BlockDriverState *bs, |
| 935 | const char *tag) |
| 936 | { |
| 937 | BDRVBlkdebugState *s = bs->opaque; |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 938 | BlkdebugRule *rule, *next; |
| 939 | int i, ret = -ENOENT; |
| 940 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 941 | QEMU_LOCK_GUARD(&s->lock); |
Eric Blake | 7fb1cf1 | 2015-11-18 01:52:57 -0700 | [diff] [blame] | 942 | for (i = 0; i < BLKDBG__MAX; i++) { |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 943 | QLIST_FOREACH_SAFE(rule, &s->rules[i], next, next) { |
| 944 | if (rule->action == ACTION_SUSPEND && |
| 945 | !strcmp(rule->options.suspend.tag, tag)) { |
| 946 | remove_rule(rule); |
| 947 | ret = 0; |
| 948 | } |
| 949 | } |
| 950 | } |
Emanuele Giuseppe Esposito | 69d0690 | 2021-06-14 10:29:26 +0200 | [diff] [blame] | 951 | if (resume_req_by_tag(s, tag, true) == 0) { |
| 952 | ret = 0; |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 953 | } |
| 954 | return ret; |
| 955 | } |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 956 | |
| 957 | static bool blkdebug_debug_is_suspended(BlockDriverState *bs, const char *tag) |
| 958 | { |
| 959 | BDRVBlkdebugState *s = bs->opaque; |
| 960 | BlkdebugSuspendedReq *r; |
| 961 | |
Emanuele Giuseppe Esposito | 36109bf | 2021-06-14 10:29:31 +0200 | [diff] [blame] | 962 | QEMU_LOCK_GUARD(&s->lock); |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 963 | QLIST_FOREACH(r, &s->suspended_reqs, next) { |
| 964 | if (!strcmp(r->tag, tag)) { |
| 965 | return true; |
| 966 | } |
| 967 | } |
| 968 | return false; |
| 969 | } |
| 970 | |
Kevin Wolf | 8ab8140 | 2023-02-03 16:22:02 +0100 | [diff] [blame] | 971 | static int64_t coroutine_fn GRAPH_RDLOCK |
| 972 | blkdebug_co_getlength(BlockDriverState *bs) |
Paolo Bonzini | e130225 | 2012-06-06 08:10:41 +0200 | [diff] [blame] | 973 | { |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 974 | return bdrv_co_getlength(bs->file->bs); |
Paolo Bonzini | e130225 | 2012-06-06 08:10:41 +0200 | [diff] [blame] | 975 | } |
| 976 | |
Kevin Wolf | 79a5586 | 2023-10-27 17:53:29 +0200 | [diff] [blame] | 977 | static void GRAPH_RDLOCK blkdebug_refresh_filename(BlockDriverState *bs) |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 978 | { |
Max Reitz | 036990d | 2016-08-15 15:29:25 +0200 | [diff] [blame] | 979 | BDRVBlkdebugState *s = bs->opaque; |
Max Reitz | 8779441 | 2014-11-11 10:23:44 +0100 | [diff] [blame] | 980 | const QDictEntry *e; |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 981 | int ret; |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 982 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 983 | if (!bs->file->bs->exact_filename[0]) { |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 984 | return; |
| 985 | } |
| 986 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 987 | for (e = qdict_first(bs->full_open_options); e; |
| 988 | e = qdict_next(bs->full_open_options, e)) |
| 989 | { |
| 990 | /* Real child options are under "image", but "x-image" may |
| 991 | * contain a filename */ |
| 992 | if (strcmp(qdict_entry_key(e), "config") && |
| 993 | strcmp(qdict_entry_key(e), "image") && |
| 994 | strcmp(qdict_entry_key(e), "x-image") && |
| 995 | strcmp(qdict_entry_key(e), "driver")) |
| 996 | { |
| 997 | return; |
Max Reitz | de81d72 | 2017-06-13 19:20:05 +0200 | [diff] [blame] | 998 | } |
Max Reitz | 8779441 | 2014-11-11 10:23:44 +0100 | [diff] [blame] | 999 | } |
| 1000 | |
Max Reitz | 998b3a1 | 2019-02-01 20:29:28 +0100 | [diff] [blame] | 1001 | ret = snprintf(bs->exact_filename, sizeof(bs->exact_filename), |
| 1002 | "blkdebug:%s:%s", |
| 1003 | s->config_file ?: "", bs->file->bs->exact_filename); |
| 1004 | if (ret >= sizeof(bs->exact_filename)) { |
| 1005 | /* An overflow makes the filename unusable, so do not report any */ |
| 1006 | bs->exact_filename[0] = 0; |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 1007 | } |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 1008 | } |
| 1009 | |
Eric Blake | 835db3e | 2016-06-23 16:37:13 -0600 | [diff] [blame] | 1010 | static void blkdebug_refresh_limits(BlockDriverState *bs, Error **errp) |
| 1011 | { |
| 1012 | BDRVBlkdebugState *s = bs->opaque; |
| 1013 | |
| 1014 | if (s->align) { |
Eric Blake | a5b8dd2 | 2016-06-23 16:37:24 -0600 | [diff] [blame] | 1015 | bs->bl.request_alignment = s->align; |
Eric Blake | 835db3e | 2016-06-23 16:37:13 -0600 | [diff] [blame] | 1016 | } |
Eric Blake | 430b26a | 2017-04-29 14:14:18 -0500 | [diff] [blame] | 1017 | if (s->max_transfer) { |
| 1018 | bs->bl.max_transfer = s->max_transfer; |
| 1019 | } |
| 1020 | if (s->opt_write_zero) { |
| 1021 | bs->bl.pwrite_zeroes_alignment = s->opt_write_zero; |
| 1022 | } |
| 1023 | if (s->max_write_zero) { |
| 1024 | bs->bl.max_pwrite_zeroes = s->max_write_zero; |
| 1025 | } |
| 1026 | if (s->opt_discard) { |
| 1027 | bs->bl.pdiscard_alignment = s->opt_discard; |
| 1028 | } |
| 1029 | if (s->max_discard) { |
| 1030 | bs->bl.max_pdiscard = s->max_discard; |
| 1031 | } |
Eric Blake | 835db3e | 2016-06-23 16:37:13 -0600 | [diff] [blame] | 1032 | } |
| 1033 | |
Kevin Wolf | c5e8bfb | 2015-10-29 15:22:27 +0100 | [diff] [blame] | 1034 | static int blkdebug_reopen_prepare(BDRVReopenState *reopen_state, |
| 1035 | BlockReopenQueue *queue, Error **errp) |
| 1036 | { |
| 1037 | return 0; |
| 1038 | } |
| 1039 | |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 1040 | static void blkdebug_child_perm(BlockDriverState *bs, BdrvChild *c, |
Max Reitz | bf8e925 | 2020-05-13 13:05:16 +0200 | [diff] [blame] | 1041 | BdrvChildRole role, |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 1042 | BlockReopenQueue *reopen_queue, |
| 1043 | uint64_t perm, uint64_t shared, |
| 1044 | uint64_t *nperm, uint64_t *nshared) |
| 1045 | { |
| 1046 | BDRVBlkdebugState *s = bs->opaque; |
| 1047 | |
Max Reitz | e5d8a40 | 2020-05-13 13:05:44 +0200 | [diff] [blame] | 1048 | bdrv_default_perms(bs, c, role, reopen_queue, |
Max Reitz | 69dca43 | 2020-05-13 13:05:39 +0200 | [diff] [blame] | 1049 | perm, shared, nperm, nshared); |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 1050 | |
| 1051 | *nperm |= s->take_child_perms; |
| 1052 | *nshared &= ~s->unshare_child_perms; |
| 1053 | } |
| 1054 | |
Max Reitz | 2654267 | 2019-02-01 20:29:25 +0100 | [diff] [blame] | 1055 | static const char *const blkdebug_strong_runtime_opts[] = { |
| 1056 | "config", |
| 1057 | "inject-error.", |
| 1058 | "set-state.", |
| 1059 | "align", |
| 1060 | "max-transfer", |
| 1061 | "opt-write-zero", |
| 1062 | "max-write-zero", |
| 1063 | "opt-discard", |
| 1064 | "max-discard", |
| 1065 | |
| 1066 | NULL |
| 1067 | }; |
| 1068 | |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 1069 | static BlockDriver bdrv_blkdebug = { |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 1070 | .format_name = "blkdebug", |
| 1071 | .protocol_name = "blkdebug", |
| 1072 | .instance_size = sizeof(BDRVBlkdebugState), |
Manos Pitsidianakis | d8e12cd | 2017-07-13 18:30:27 +0300 | [diff] [blame] | 1073 | .is_filter = true, |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 1074 | |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 1075 | .bdrv_parse_filename = blkdebug_parse_filename, |
Paolo Bonzini | 44b424d | 2022-11-24 16:22:22 +0100 | [diff] [blame] | 1076 | .bdrv_open = blkdebug_open, |
Kevin Wolf | f468121 | 2013-04-10 13:37:33 +0200 | [diff] [blame] | 1077 | .bdrv_close = blkdebug_close, |
Kevin Wolf | c5e8bfb | 2015-10-29 15:22:27 +0100 | [diff] [blame] | 1078 | .bdrv_reopen_prepare = blkdebug_reopen_prepare, |
Max Reitz | 69c6449 | 2019-11-08 13:34:53 +0100 | [diff] [blame] | 1079 | .bdrv_child_perm = blkdebug_child_perm, |
Kevin Wolf | d7010df | 2016-12-15 12:28:58 +0100 | [diff] [blame] | 1080 | |
Emanuele Giuseppe Esposito | c86422c | 2023-01-13 21:42:04 +0100 | [diff] [blame] | 1081 | .bdrv_co_getlength = blkdebug_co_getlength, |
Max Reitz | 2c31b04 | 2014-07-18 20:24:57 +0200 | [diff] [blame] | 1082 | .bdrv_refresh_filename = blkdebug_refresh_filename, |
Eric Blake | 835db3e | 2016-06-23 16:37:13 -0600 | [diff] [blame] | 1083 | .bdrv_refresh_limits = blkdebug_refresh_limits, |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 1084 | |
Kevin Wolf | 7c3a998 | 2016-11-04 21:13:45 +0100 | [diff] [blame] | 1085 | .bdrv_co_preadv = blkdebug_co_preadv, |
| 1086 | .bdrv_co_pwritev = blkdebug_co_pwritev, |
| 1087 | .bdrv_co_flush_to_disk = blkdebug_co_flush, |
Eric Blake | 63188c2 | 2017-04-29 14:14:16 -0500 | [diff] [blame] | 1088 | .bdrv_co_pwrite_zeroes = blkdebug_co_pwrite_zeroes, |
| 1089 | .bdrv_co_pdiscard = blkdebug_co_pdiscard, |
Eric Blake | 3e4d0e7 | 2018-02-13 14:26:43 -0600 | [diff] [blame] | 1090 | .bdrv_co_block_status = blkdebug_co_block_status, |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 1091 | |
Emanuele Giuseppe Esposito | c834dc0 | 2023-01-13 21:42:11 +0100 | [diff] [blame] | 1092 | .bdrv_co_debug_event = blkdebug_co_debug_event, |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 1093 | .bdrv_debug_breakpoint = blkdebug_debug_breakpoint, |
Fam Zheng | 4cc70e9 | 2013-11-20 10:01:54 +0800 | [diff] [blame] | 1094 | .bdrv_debug_remove_breakpoint |
| 1095 | = blkdebug_debug_remove_breakpoint, |
Kevin Wolf | 3c90c65 | 2012-12-06 14:32:57 +0100 | [diff] [blame] | 1096 | .bdrv_debug_resume = blkdebug_debug_resume, |
| 1097 | .bdrv_debug_is_suspended = blkdebug_debug_is_suspended, |
Max Reitz | 2654267 | 2019-02-01 20:29:25 +0100 | [diff] [blame] | 1098 | |
| 1099 | .strong_runtime_opts = blkdebug_strong_runtime_opts, |
Kevin Wolf | 6a14372 | 2010-02-18 17:48:12 +0100 | [diff] [blame] | 1100 | }; |
| 1101 | |
| 1102 | static void bdrv_blkdebug_init(void) |
| 1103 | { |
| 1104 | bdrv_register(&bdrv_blkdebug); |
| 1105 | } |
| 1106 | |
| 1107 | block_init(bdrv_blkdebug_init); |