blob: c95c818c38811d99916a28e492bd832454b4608a [file] [log] [blame]
Kevin Wolf6a143722010-02-18 17:48:12 +01001/*
2 * Block protocol for I/O error injection
3 *
Eric Blake63188c22017-04-29 14:14:16 -05004 * Copyright (C) 2016-2017 Red Hat, Inc.
Kevin Wolf6a143722010-02-18 17:48:12 +01005 * 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 Maydell80c71a22016-01-18 18:01:42 +000026#include "qemu/osdep.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010027#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020028#include "qemu/cutils.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010029#include "qemu/config-file.h"
Markus Armbrustere2c1c342022-12-21 14:35:49 +010030#include "block/block-io.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010031#include "block/block_int.h"
Max Reitz69c64492019-11-08 13:34:53 +010032#include "block/qdict.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/module.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010034#include "qemu/option.h"
Max Reitz69c64492019-11-08 13:34:53 +010035#include "qapi/qapi-visit-block-core.h"
Max Reitz2c31b042014-07-18 20:24:57 +020036#include "qapi/qmp/qdict.h"
Max Reitz69c64492019-11-08 13:34:53 +010037#include "qapi/qmp/qlist.h"
Max Reitz2c31b042014-07-18 20:24:57 +020038#include "qapi/qmp/qstring.h"
Max Reitz69c64492019-11-08 13:34:53 +010039#include "qapi/qobject-input-visitor.h"
Michael S. Tsirkin20873522015-11-30 13:44:44 +020040#include "sysemu/qtest.h"
Kevin Wolf6a143722010-02-18 17:48:12 +010041
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020042/* All APIs are thread-safe */
43
Kevin Wolf6a143722010-02-18 17:48:12 +010044typedef struct BDRVBlkdebugState {
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020045 /* IN: initialized in blkdebug_open() and never changed */
Eric Blake3dc834f2017-04-29 14:14:17 -050046 uint64_t align;
Eric Blake430b26a2017-04-29 14:14:18 -050047 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 Esposito36109bf2021-06-14 10:29:31 +020052 char *config_file; /* For blkdebug_refresh_filename() */
53 /* initialized in blkdebug_parse_perms() */
Max Reitz69c64492019-11-08 13:34:53 +010054 uint64_t take_child_perms;
55 uint64_t unshare_child_perms;
56
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020057 /* State. Protected by lock */
58 int state;
Eric Blake7fb1cf12015-11-18 01:52:57 -070059 QLIST_HEAD(, BlkdebugRule) rules[BLKDBG__MAX];
Paolo Bonzini571cd432012-06-06 08:10:42 +020060 QSIMPLEQ_HEAD(, BlkdebugRule) active_rules;
Kevin Wolf3c90c652012-12-06 14:32:57 +010061 QLIST_HEAD(, BlkdebugSuspendedReq) suspended_reqs;
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020062 QemuMutex lock;
Kevin Wolf6a143722010-02-18 17:48:12 +010063} BDRVBlkdebugState;
64
Kevin Wolfb9f66d92010-02-19 16:24:35 +010065typedef struct BlkdebugAIOCB {
Markus Armbruster7c84b1b2014-10-07 13:59:14 +020066 BlockAIOCB common;
Kevin Wolfb9f66d92010-02-19 16:24:35 +010067 int ret;
68} BlkdebugAIOCB;
69
Kevin Wolf3c90c652012-12-06 14:32:57 +010070typedef struct BlkdebugSuspendedReq {
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020071 /* IN: initialized in suspend_request() */
Kevin Wolf3c90c652012-12-06 14:32:57 +010072 Coroutine *co;
73 char *tag;
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020074
75 /* List entry protected BDRVBlkdebugState's lock */
Kevin Wolf3c90c652012-12-06 14:32:57 +010076 QLIST_ENTRY(BlkdebugSuspendedReq) next;
77} BlkdebugSuspendedReq;
78
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010079enum {
80 ACTION_INJECT_ERROR,
81 ACTION_SET_STATE,
Kevin Wolf3c90c652012-12-06 14:32:57 +010082 ACTION_SUSPEND,
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +020083 ACTION__MAX,
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010084};
85
86typedef struct BlkdebugRule {
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +020087 /* IN: initialized in add_rule() or blkdebug_debug_breakpoint() */
Eric Blakea31939e2015-11-18 01:52:54 -070088 BlkdebugEvent event;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010089 int action;
90 int state;
91 union {
92 struct {
Max Reitz16789db2019-05-07 22:35:04 +020093 uint64_t iotype_mask;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010094 int error;
95 int immediately;
96 int once;
Kevin Wolf7c3a9982016-11-04 21:13:45 +010097 int64_t offset;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010098 } inject;
99 struct {
100 int new_state;
101 } set_state;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100102 struct {
103 char *tag;
104 } suspend;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100105 } options;
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200106
107 /* List entries protected BDRVBlkdebugState's lock */
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100108 QLIST_ENTRY(BlkdebugRule) next;
Paolo Bonzini571cd432012-06-06 08:10:42 +0200109 QSIMPLEQ_ENTRY(BlkdebugRule) active_next;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100110} BlkdebugRule;
111
Max Reitz16789db2019-05-07 22:35:04 +0200112QEMU_BUILD_BUG_MSG(BLKDEBUG_IO_TYPE__MAX > 64,
113 "BlkdebugIOType mask does not fit into an uint64_t");
114
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100115static 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 Reitz16789db2019-05-07 22:35:04 +0200128 .name = "iotype",
129 .type = QEMU_OPT_STRING,
130 },
131 {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100132 .name = "errno",
133 .type = QEMU_OPT_NUMBER,
134 },
135 {
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200136 .name = "sector",
137 .type = QEMU_OPT_NUMBER,
138 },
139 {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100140 .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
151static QemuOptsList set_state_opts = {
152 .name = "set-state",
Kevin Wolf327cdad2010-06-30 17:40:42 +0200153 .head = QTAILQ_HEAD_INITIALIZER(set_state_opts.head),
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100154 .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
171static QemuOptsList *config_groups[] = {
172 &inject_error_opts,
173 &set_state_opts,
174 NULL
175};
176
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100177struct add_rule_data {
178 BDRVBlkdebugState *s;
179 int action;
180};
181
Markus Armbruster28d0de72015-03-13 13:35:14 +0100182static int add_rule(void *opaque, QemuOpts *opts, Error **errp)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100183{
184 struct add_rule_data *d = opaque;
185 BDRVBlkdebugState *s = d->s;
shiliyang5f14f312020-10-30 11:35:12 +0800186 const char *event_name;
Marc-André Lureauf9509d12017-08-24 10:46:02 +0200187 int event;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100188 struct BlkdebugRule *rule;
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100189 int64_t sector;
Max Reitz16789db2019-05-07 22:35:04 +0200190 BlkdebugIOType iotype;
191 Error *local_error = NULL;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100192
193 /* Find the right event for the rule */
194 event_name = qemu_opt_get(opts, "event");
Stefan Hajnoczid4362d62014-09-20 09:55:52 +0100195 if (!event_name) {
Markus Armbruster8809cfc2015-03-13 13:38:42 +0100196 error_setg(errp, "Missing event name for rule");
Stefan Hajnoczid4362d62014-09-20 09:55:52 +0100197 return -1;
Marc-André Lureauf9509d12017-08-24 10:46:02 +0200198 }
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200199 event = qapi_enum_parse(&BlkdebugEvent_lookup, event_name, -1, errp);
Marc-André Lureauf9509d12017-08-24 10:46:02 +0200200 if (event < 0) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100201 return -1;
202 }
203
204 /* Set attributes common for all actions */
Anthony Liguori7267c092011-08-20 22:09:37 -0500205 rule = g_malloc0(sizeof(*rule));
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100206 *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 Wolf7c3a9982016-11-04 21:13:45 +0100219 sector = qemu_opt_get_number(opts, "sector", -1);
220 rule->options.inject.offset =
221 sector == -1 ? -1 : sector * BDRV_SECTOR_SIZE;
Max Reitz16789db2019-05-07 22:35:04 +0200222
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 Afanasova5b4c95d2020-10-09 12:09:59 -0700228 g_free(rule);
Max Reitz16789db2019-05-07 22:35:04 +0200229 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 Wolf8b9b0cc2010-03-15 17:27:00 +0100243 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 Wolf3c90c652012-12-06 14:32:57 +0100249
250 case ACTION_SUSPEND:
251 rule->options.suspend.tag =
252 g_strdup(qemu_opt_get(opts, "tag"));
253 break;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100254 };
255
256 /* Add the rule */
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200257 qemu_mutex_lock(&s->lock);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100258 QLIST_INSERT_HEAD(&s->rules[event], rule, next);
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200259 qemu_mutex_unlock(&s->lock);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100260
261 return 0;
262}
263
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200264/* Called with lock held or from .bdrv_close */
Kevin Wolf9e355422012-12-06 14:32:56 +0100265static void remove_rule(BlkdebugRule *rule)
266{
267 switch (rule->action) {
268 case ACTION_INJECT_ERROR:
269 case ACTION_SET_STATE:
270 break;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100271 case ACTION_SUSPEND:
272 g_free(rule->options.suspend.tag);
273 break;
Kevin Wolf9e355422012-12-06 14:32:56 +0100274 }
275
276 QLIST_REMOVE(rule, next);
277 g_free(rule);
278}
279
Max Reitz89f2b212013-12-20 19:28:07 +0100280static int read_config(BDRVBlkdebugState *s, const char *filename,
281 QDict *options, Error **errp)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100282{
Max Reitz85a040e2013-12-20 19:28:06 +0100283 FILE *f = NULL;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100284 int ret;
285 struct add_rule_data d;
Max Reitz89f2b212013-12-20 19:28:07 +0100286 Error *local_err = NULL;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100287
Max Reitz85a040e2013-12-20 19:28:06 +0100288 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 Wolf8b9b0cc2010-03-15 17:27:00 +0100294
Paolo Bonzinif7544ed2021-02-26 12:08:16 -0500295 ret = qemu_config_parse(f, config_groups, filename, errp);
Max Reitz85a040e2013-12-20 19:28:06 +0100296 if (ret < 0) {
Max Reitz85a040e2013-12-20 19:28:06 +0100297 goto fail;
298 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100299 }
300
Markus Armbrusterf766e6d2022-11-21 09:50:50 +0100301 if (!qemu_config_parse_qdict(options, config_groups, errp)) {
Max Reitz89f2b212013-12-20 19:28:07 +0100302 ret = -EINVAL;
303 goto fail;
304 }
305
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100306 d.s = s;
307 d.action = ACTION_INJECT_ERROR;
Markus Armbruster8809cfc2015-03-13 13:38:42 +0100308 qemu_opts_foreach(&inject_error_opts, add_rule, &d, &local_err);
Stefan Hajnoczid4362d62014-09-20 09:55:52 +0100309 if (local_err) {
310 error_propagate(errp, local_err);
311 ret = -EINVAL;
312 goto fail;
313 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100314
315 d.action = ACTION_SET_STATE;
Markus Armbruster8809cfc2015-03-13 13:38:42 +0100316 qemu_opts_foreach(&set_state_opts, add_rule, &d, &local_err);
Stefan Hajnoczid4362d62014-09-20 09:55:52 +0100317 if (local_err) {
318 error_propagate(errp, local_err);
319 ret = -EINVAL;
320 goto fail;
321 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100322
323 ret = 0;
324fail:
Kevin Wolf698f0d52010-06-30 17:42:23 +0200325 qemu_opts_reset(&inject_error_opts);
326 qemu_opts_reset(&set_state_opts);
Max Reitz85a040e2013-12-20 19:28:06 +0100327 if (f) {
328 fclose(f);
329 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100330 return ret;
331}
332
333/* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
Kevin Wolff4681212013-04-10 13:37:33 +0200334static 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 Reitzd4881b92013-12-20 19:28:02 +0100341 /* There was no prefix; therefore, all options have to be already
342 present in the QDict (except for the filename) */
Eric Blake46f5ac22017-04-27 16:58:17 -0500343 qdict_put_str(options, "x-image", filename);
Kevin Wolff4681212013-04-10 13:37:33 +0200344 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 Armbrusterba891d62018-07-27 08:22:04 +0200356 config_path = qstring_from_substr(filename, 0, c - filename);
Kevin Wolff4681212013-04-10 13:37:33 +0200357 qdict_put(options, "config", config_path);
358 }
359
360 /* TODO Allow multi-level nesting and set file.filename here */
361 filename = c + 1;
Eric Blake46f5ac22017-04-27 16:58:17 -0500362 qdict_put_str(options, "x-image", filename);
Kevin Wolff4681212013-04-10 13:37:33 +0200363}
364
Max Reitz69c64492019-11-08 13:34:53 +0100365static 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 Reitz69c64492019-11-08 13:34:53 +0100373
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 Armbrusteraf175e82020-07-07 18:06:03 +0200388 if (!visit_type_BlockPermissionList(v, NULL, &perm_list, errp)) {
Max Reitz69c64492019-11-08 13:34:53 +0100389 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
397out:
398 qapi_free_BlockPermissionList(perm_list);
399 visit_free(v);
400 qobject_unref(subqdict);
401 qobject_unref(crumpled_subqdict);
402 return ret;
403}
404
405static 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 Wolff4681212013-04-10 13:37:33 +0200425static 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 Wolfb35ee7f2014-01-14 13:44:35 +0100439 {
440 .name = "align",
441 .type = QEMU_OPT_SIZE,
442 .help = "Required alignment in bytes",
443 },
Eric Blake430b26a2017-04-29 14:14:18 -0500444 {
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 Wolff4681212013-04-10 13:37:33 +0200469 { /* end of list */ }
470 },
471};
472
Max Reitz015a1032013-09-05 14:22:29 +0200473static int blkdebug_open(BlockDriverState *bs, QDict *options, int flags,
474 Error **errp)
Kevin Wolf6a143722010-02-18 17:48:12 +0100475{
476 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolff4681212013-04-10 13:37:33 +0200477 QemuOpts *opts;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100478 int ret;
Eric Blake430b26a2017-04-29 14:14:18 -0500479 uint64_t align;
Kevin Wolf6a143722010-02-18 17:48:12 +0100480
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200481 qemu_mutex_init(&s->lock);
Peter Crosthwaite87ea75d2014-01-01 18:49:17 -0800482 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +0200483 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolff4681212013-04-10 13:37:33 +0200484 ret = -EINVAL;
Kevin Wolfeaf944a2014-02-08 09:53:22 +0100485 goto out;
Kevin Wolf6a143722010-02-18 17:48:12 +0100486 }
Kevin Wolf6a143722010-02-18 17:48:12 +0100487
Max Reitz89f2b212013-12-20 19:28:07 +0100488 /* Read rules from config file or command line options */
Max Reitz036990d2016-08-15 15:29:25 +0200489 s->config_file = g_strdup(qemu_opt_get(opts, "config"));
490 ret = read_config(s, s->config_file, options, errp);
Max Reitz85a040e2013-12-20 19:28:06 +0100491 if (ret) {
Kevin Wolfeaf944a2014-02-08 09:53:22 +0100492 goto out;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100493 }
494
Kevin Wolf8db520c2010-06-30 17:43:40 +0200495 /* Set initial state */
Paolo Bonzini571cd432012-06-06 08:10:42 +0200496 s->state = 1;
Kevin Wolf8db520c2010-06-30 17:43:40 +0200497
Max Reitz69c64492019-11-08 13:34:53 +0100498 /* 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 Zheng6b826af2015-10-16 18:46:04 +0800504 /* Open the image file */
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +0300505 ret = bdrv_open_file_child(qemu_opt_get(opts, "x-image"), options, "image",
506 bs, errp);
507 if (ret < 0) {
Kevin Wolfeaf944a2014-02-08 09:53:22 +0100508 goto out;
Kevin Wolff4681212013-04-10 13:37:33 +0200509 }
510
Kevin Wolfa4b740d2023-10-27 17:53:32 +0200511 bdrv_graph_rdlock_main_loop();
512
Max Reitz228345b2018-04-21 15:29:26 +0200513 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 Wolf80f5c332019-03-22 13:42:39 +0100516 ((BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK) &
Max Reitz228345b2018-04-21 15:29:26 +0200517 bs->file->bs->supported_zero_flags);
Eric Blake3dc834f2017-04-29 14:14:17 -0500518 ret = -EINVAL;
Eric Blake63188c22017-04-29 14:14:16 -0500519
Eric Blake430b26a2017-04-29 14:14:18 -0500520 /* Set alignment overrides */
Eric Blake3dc834f2017-04-29 14:14:17 -0500521 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 Wolfa4b740d2023-10-27 17:53:32 +0200525 goto out_rdlock;
Kevin Wolfb35ee7f2014-01-14 13:44:35 +0100526 }
Eric Blake430b26a2017-04-29 14:14:18 -0500527 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 Wolfa4b740d2023-10-27 17:53:32 +0200535 goto out_rdlock;
Eric Blake430b26a2017-04-29 14:14:18 -0500536 }
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 Wolfa4b740d2023-10-27 17:53:32 +0200544 goto out_rdlock;
Eric Blake430b26a2017-04-29 14:14:18 -0500545 }
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 Wolfa4b740d2023-10-27 17:53:32 +0200554 goto out_rdlock;
Eric Blake430b26a2017-04-29 14:14:18 -0500555 }
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 Wolfa4b740d2023-10-27 17:53:32 +0200563 goto out_rdlock;
Eric Blake430b26a2017-04-29 14:14:18 -0500564 }
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 Wolfa4b740d2023-10-27 17:53:32 +0200573 goto out_rdlock;
Eric Blake430b26a2017-04-29 14:14:18 -0500574 }
Kevin Wolfb35ee7f2014-01-14 13:44:35 +0100575
Max Reitzf8cec152019-05-07 22:35:05 +0200576 bdrv_debug_event(bs, BLKDBG_NONE);
577
Kevin Wolff4681212013-04-10 13:37:33 +0200578 ret = 0;
Kevin Wolfa4b740d2023-10-27 17:53:32 +0200579out_rdlock:
580 bdrv_graph_rdunlock_main_loop();
Kevin Wolfeaf944a2014-02-08 09:53:22 +0100581out:
Max Reitz036990d2016-08-15 15:29:25 +0200582 if (ret < 0) {
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200583 qemu_mutex_destroy(&s->lock);
Max Reitz036990d2016-08-15 15:29:25 +0200584 g_free(s->config_file);
585 }
Kevin Wolff4681212013-04-10 13:37:33 +0200586 qemu_opts_del(opts);
587 return ret;
Kevin Wolf6a143722010-02-18 17:48:12 +0100588}
589
Paolo Bonzini2f1fabd2023-03-09 09:44:49 +0100590static int coroutine_fn rule_check(BlockDriverState *bs, uint64_t offset,
591 uint64_t bytes, BlkdebugIOType iotype)
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100592{
593 BDRVBlkdebugState *s = bs->opaque;
Eric Blaked157ed52017-04-29 14:14:15 -0500594 BlkdebugRule *rule = NULL;
595 int error;
596 bool immediately;
597
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200598 qemu_mutex_lock(&s->lock);
Eric Blaked157ed52017-04-29 14:14:15 -0500599 QSIMPLEQ_FOREACH(rule, &s->active_rules, active_next) {
600 uint64_t inject_offset = rule->options.inject.offset;
601
Max Reitz16789db2019-05-07 22:35:04 +0200602 if ((inject_offset == -1 ||
603 (bytes && inject_offset >= offset &&
604 inject_offset < offset + bytes)) &&
605 (rule->options.inject.iotype_mask & (1ull << iotype)))
Eric Blaked157ed52017-04-29 14:14:15 -0500606 {
607 break;
608 }
609 }
610
611 if (!rule || !rule->options.inject.error) {
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200612 qemu_mutex_unlock(&s->lock);
Eric Blaked157ed52017-04-29 14:14:15 -0500613 return 0;
614 }
615
616 immediately = rule->options.inject.immediately;
617 error = rule->options.inject.error;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100618
Paolo Bonzini571cd432012-06-06 08:10:42 +0200619 if (rule->options.inject.once) {
John Snowa069e2f2015-02-06 16:26:17 -0500620 QSIMPLEQ_REMOVE(&s->active_rules, rule, BlkdebugRule, active_next);
621 remove_rule(rule);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100622 }
623
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200624 qemu_mutex_unlock(&s->lock);
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100625 if (!immediately) {
Paolo Bonzinie5c67ab2017-02-13 14:52:26 +0100626 aio_co_schedule(qemu_get_current_aio_context(), qemu_coroutine_self());
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100627 qemu_coroutine_yield();
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100628 }
629
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100630 return -error;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100631}
632
Kevin Wolfb9b10c32023-02-03 16:21:50 +0100633static int coroutine_fn GRAPH_RDLOCK
Vladimir Sementsov-Ogievskiyf7ef38d2021-09-03 13:27:59 +0300634blkdebug_co_preadv(BlockDriverState *bs, int64_t offset, int64_t bytes,
635 QEMUIOVector *qiov, BdrvRequestFlags flags)
Kevin Wolf6a143722010-02-18 17:48:12 +0100636{
Eric Blaked157ed52017-04-29 14:14:15 -0500637 int err;
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200638
Eric Blakee0ef4392017-04-29 14:14:14 -0500639 /* 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 Reitz16789db2019-05-07 22:35:04 +0200646 err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_READ);
Eric Blaked157ed52017-04-29 14:14:15 -0500647 if (err) {
648 return err;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100649 }
650
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100651 return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags);
Kevin Wolf6a143722010-02-18 17:48:12 +0100652}
653
Kevin Wolfb9b10c32023-02-03 16:21:50 +0100654static int coroutine_fn GRAPH_RDLOCK
Vladimir Sementsov-Ogievskiye75abed2021-09-03 13:28:00 +0300655blkdebug_co_pwritev(BlockDriverState *bs, int64_t offset, int64_t bytes,
656 QEMUIOVector *qiov, BdrvRequestFlags flags)
Kevin Wolf6a143722010-02-18 17:48:12 +0100657{
Eric Blaked157ed52017-04-29 14:14:15 -0500658 int err;
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200659
Eric Blakee0ef4392017-04-29 14:14:14 -0500660 /* 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 Reitz16789db2019-05-07 22:35:04 +0200667 err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_WRITE);
Eric Blaked157ed52017-04-29 14:14:15 -0500668 if (err) {
669 return err;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100670 }
671
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100672 return bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags);
Kevin Wolf6a143722010-02-18 17:48:12 +0100673}
674
Emanuele Giuseppe Esposito88095342023-02-03 16:21:46 +0100675static int GRAPH_RDLOCK coroutine_fn blkdebug_co_flush(BlockDriverState *bs)
Paolo Bonzini9e52c532014-08-04 17:11:02 -0400676{
Max Reitz16789db2019-05-07 22:35:04 +0200677 int err = rule_check(bs, 0, 0, BLKDEBUG_IO_TYPE_FLUSH);
Paolo Bonzini9e52c532014-08-04 17:11:02 -0400678
Eric Blaked157ed52017-04-29 14:14:15 -0500679 if (err) {
680 return err;
Paolo Bonzini9e52c532014-08-04 17:11:02 -0400681 }
682
Kevin Wolf7c3a9982016-11-04 21:13:45 +0100683 return bdrv_co_flush(bs->file->bs);
Paolo Bonzini9e52c532014-08-04 17:11:02 -0400684}
685
Kevin Wolfabaf8b72023-02-03 16:21:48 +0100686static int coroutine_fn GRAPH_RDLOCK
687blkdebug_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int64_t bytes,
688 BdrvRequestFlags flags)
Eric Blake63188c22017-04-29 14:14:16 -0500689{
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 Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300698 if (bytes < align) {
Eric Blake63188c22017-04-29 14:14:16 -0500699 assert(QEMU_IS_ALIGNED(offset, align) ||
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300700 QEMU_IS_ALIGNED(offset + bytes, align) ||
Eric Blake63188c22017-04-29 14:14:16 -0500701 DIV_ROUND_UP(offset, align) ==
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300702 DIV_ROUND_UP(offset + bytes, align));
Eric Blake63188c22017-04-29 14:14:16 -0500703 return -ENOTSUP;
704 }
705 assert(QEMU_IS_ALIGNED(offset, align));
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300706 assert(QEMU_IS_ALIGNED(bytes, align));
Eric Blake63188c22017-04-29 14:14:16 -0500707 if (bs->bl.max_pwrite_zeroes) {
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300708 assert(bytes <= bs->bl.max_pwrite_zeroes);
Eric Blake63188c22017-04-29 14:14:16 -0500709 }
710
Max Reitz16789db2019-05-07 22:35:04 +0200711 err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_WRITE_ZEROES);
Eric Blake63188c22017-04-29 14:14:16 -0500712 if (err) {
713 return err;
714 }
715
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300716 return bdrv_co_pwrite_zeroes(bs->file, offset, bytes, flags);
Eric Blake63188c22017-04-29 14:14:16 -0500717}
718
Emanuele Giuseppe Esposito9a5a1c62023-02-03 16:21:47 +0100719static int coroutine_fn GRAPH_RDLOCK
720blkdebug_co_pdiscard(BlockDriverState *bs, int64_t offset, int64_t bytes)
Eric Blake63188c22017-04-29 14:14:16 -0500721{
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 Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300728 if (bytes < bs->bl.request_alignment) {
Eric Blake63188c22017-04-29 14:14:16 -0500729 assert(QEMU_IS_ALIGNED(offset, align) ||
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300730 QEMU_IS_ALIGNED(offset + bytes, align) ||
Eric Blake63188c22017-04-29 14:14:16 -0500731 DIV_ROUND_UP(offset, align) ==
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300732 DIV_ROUND_UP(offset + bytes, align));
Eric Blake63188c22017-04-29 14:14:16 -0500733 return -ENOTSUP;
734 }
735 assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment));
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300736 assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment));
737 if (align && bytes >= align) {
Eric Blake63188c22017-04-29 14:14:16 -0500738 assert(QEMU_IS_ALIGNED(offset, align));
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300739 assert(QEMU_IS_ALIGNED(bytes, align));
Eric Blake63188c22017-04-29 14:14:16 -0500740 }
741 if (bs->bl.max_pdiscard) {
Manos Pitsidianakisf5a5ca72017-06-09 13:18:08 +0300742 assert(bytes <= bs->bl.max_pdiscard);
Eric Blake63188c22017-04-29 14:14:16 -0500743 }
744
Max Reitz16789db2019-05-07 22:35:04 +0200745 err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_DISCARD);
Eric Blake63188c22017-04-29 14:14:16 -0500746 if (err) {
747 return err;
748 }
749
Fam Zheng0b9fd3f2018-07-10 14:31:17 +0800750 return bdrv_co_pdiscard(bs->file, offset, bytes);
Eric Blake63188c22017-04-29 14:14:16 -0500751}
Kevin Wolf3c90c652012-12-06 14:32:57 +0100752
Kevin Wolf79a55862023-10-27 17:53:29 +0200753static int coroutine_fn GRAPH_RDLOCK
754blkdebug_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 Blakeefa6e2e2017-10-11 22:47:17 -0500757{
Max Reitz1adb0b52019-05-07 22:35:06 +0200758 int err;
759
Eric Blake3e4d0e72018-02-13 14:26:43 -0600760 assert(QEMU_IS_ALIGNED(offset | bytes, bs->bl.request_alignment));
Max Reitz1adb0b52019-05-07 22:35:06 +0200761
762 err = rule_check(bs, offset, bytes, BLKDEBUG_IO_TYPE_BLOCK_STATUS);
763 if (err) {
764 return err;
765 }
766
Max Reitz549ec0d2019-02-13 18:05:23 +0100767 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 Blakeefa6e2e2017-10-11 22:47:17 -0500772}
773
Kevin Wolf6a143722010-02-18 17:48:12 +0100774static void blkdebug_close(BlockDriverState *bs)
775{
776 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100777 BlkdebugRule *rule, *next;
778 int i;
779
Eric Blake7fb1cf12015-11-18 01:52:57 -0700780 for (i = 0; i < BLKDBG__MAX; i++) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100781 QLIST_FOREACH_SAFE(rule, &s->rules[i], next, next) {
Kevin Wolf9e355422012-12-06 14:32:56 +0100782 remove_rule(rule);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100783 }
784 }
Max Reitz036990d2016-08-15 15:29:25 +0200785
786 g_free(s->config_file);
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200787 qemu_mutex_destroy(&s->lock);
Kevin Wolf6a143722010-02-18 17:48:12 +0100788}
789
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200790/* Called with lock held. */
Kevin Wolf3c90c652012-12-06 14:32:57 +0100791static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule)
792{
793 BDRVBlkdebugState *s = bs->opaque;
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200794 BlkdebugSuspendedReq *r;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100795
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200796 r = g_new(BlkdebugSuspendedReq, 1);
797
798 r->co = qemu_coroutine_self();
799 r->tag = g_strdup(rule->options.suspend.tag);
Kevin Wolf3c90c652012-12-06 14:32:57 +0100800
801 remove_rule(rule);
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200802 QLIST_INSERT_HEAD(&s->suspended_reqs, r, next);
Kevin Wolf3c90c652012-12-06 14:32:57 +0100803
Michael S. Tsirkin20873522015-11-30 13:44:44 +0200804 if (!qtest_enabled()) {
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200805 printf("blkdebug: Suspended request '%s'\n", r->tag);
Michael S. Tsirkin20873522015-11-30 13:44:44 +0200806 }
Kevin Wolf3c90c652012-12-06 14:32:57 +0100807}
808
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200809/* Called with lock held. */
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +0200810static void process_rule(BlockDriverState *bs, struct BlkdebugRule *rule,
Emanuele Giuseppe Esposito4153b552021-06-14 10:29:30 +0200811 int *action_count, int *new_state)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100812{
813 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100814
815 /* Only process rules for the current state */
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200816 if (rule->state && rule->state != s->state) {
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +0200817 return;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100818 }
819
820 /* Take the action */
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +0200821 action_count[rule->action]++;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100822 switch (rule->action) {
823 case ACTION_INJECT_ERROR:
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +0200824 if (action_count[ACTION_INJECT_ERROR] == 1) {
Paolo Bonzini571cd432012-06-06 08:10:42 +0200825 QSIMPLEQ_INIT(&s->active_rules);
Paolo Bonzini571cd432012-06-06 08:10:42 +0200826 }
827 QSIMPLEQ_INSERT_HEAD(&s->active_rules, rule, active_next);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100828 break;
829
830 case ACTION_SET_STATE:
Emanuele Giuseppe Esposito4153b552021-06-14 10:29:30 +0200831 *new_state = rule->options.set_state.new_state;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100832 break;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100833
834 case ACTION_SUSPEND:
835 suspend_request(bs, rule);
836 break;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100837 }
838}
839
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +0100840static void coroutine_fn
841blkdebug_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100842{
843 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100844 struct BlkdebugRule *rule, *next;
Emanuele Giuseppe Esposito4153b552021-06-14 10:29:30 +0200845 int new_state;
Emanuele Giuseppe Esposito51a46362021-06-14 10:29:28 +0200846 int actions_count[ACTION__MAX] = { 0 };
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100847
Eric Blake7fb1cf12015-11-18 01:52:57 -0700848 assert((int)event >= 0 && event < BLKDBG__MAX);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100849
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200850 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 Wolf8b9b0cc2010-03-15 17:27:00 +0100856 }
Emanuele Giuseppe Esposito2196c342021-06-14 10:29:29 +0200857
858 while (actions_count[ACTION_SUSPEND] > 0) {
859 qemu_coroutine_yield();
860 actions_count[ACTION_SUSPEND]--;
861 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100862}
863
Kevin Wolf3c90c652012-12-06 14:32:57 +0100864static 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é Lureauf9509d12017-08-24 10:46:02 +0200869 int blkdebug_event;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100870
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200871 blkdebug_event = qapi_enum_parse(&BlkdebugEvent_lookup, event, -1, NULL);
Marc-André Lureauf9509d12017-08-24 10:46:02 +0200872 if (blkdebug_event < 0) {
Kevin Wolf3c90c652012-12-06 14:32:57 +0100873 return -ENOENT;
874 }
875
Kevin Wolf3c90c652012-12-06 14:32:57 +0100876 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 Esposito36109bf2021-06-14 10:29:31 +0200884 qemu_mutex_lock(&s->lock);
Kevin Wolf3c90c652012-12-06 14:32:57 +0100885 QLIST_INSERT_HEAD(&s->rules[blkdebug_event], rule, next);
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200886 qemu_mutex_unlock(&s->lock);
Kevin Wolf3c90c652012-12-06 14:32:57 +0100887
888 return 0;
889}
890
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200891/* Called with lock held. May temporarily release lock. */
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200892static int resume_req_by_tag(BDRVBlkdebugState *s, const char *tag, bool all)
Kevin Wolf3c90c652012-12-06 14:32:57 +0100893{
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200894 BlkdebugSuspendedReq *r;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100895
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200896retry:
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 Wolf3c90c652012-12-06 14:32:57 +0100903 if (!strcmp(r->tag, tag)) {
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200904 Coroutine *co = r->co;
905
906 if (!qtest_enabled()) {
907 printf("blkdebug: Resuming request '%s'\n", r->tag);
908 }
909
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200910 QLIST_REMOVE(r, next);
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200911 g_free(r->tag);
912 g_free(r);
913
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200914 qemu_mutex_unlock(&s->lock);
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200915 qemu_coroutine_enter(co);
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200916 qemu_mutex_lock(&s->lock);
Emanuele Giuseppe Espositof48ff5a2021-06-14 10:29:27 +0200917
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200918 if (all) {
919 goto retry;
920 }
Kevin Wolf3c90c652012-12-06 14:32:57 +0100921 return 0;
922 }
923 }
924 return -ENOENT;
925}
926
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200927static int blkdebug_debug_resume(BlockDriverState *bs, const char *tag)
928{
929 BDRVBlkdebugState *s = bs->opaque;
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200930 QEMU_LOCK_GUARD(&s->lock);
Emanuele Giuseppe Esposito69d06902021-06-14 10:29:26 +0200931 return resume_req_by_tag(s, tag, false);
932}
933
Fam Zheng4cc70e92013-11-20 10:01:54 +0800934static int blkdebug_debug_remove_breakpoint(BlockDriverState *bs,
935 const char *tag)
936{
937 BDRVBlkdebugState *s = bs->opaque;
Fam Zheng4cc70e92013-11-20 10:01:54 +0800938 BlkdebugRule *rule, *next;
939 int i, ret = -ENOENT;
940
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200941 QEMU_LOCK_GUARD(&s->lock);
Eric Blake7fb1cf12015-11-18 01:52:57 -0700942 for (i = 0; i < BLKDBG__MAX; i++) {
Fam Zheng4cc70e92013-11-20 10:01:54 +0800943 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 Esposito69d06902021-06-14 10:29:26 +0200951 if (resume_req_by_tag(s, tag, true) == 0) {
952 ret = 0;
Fam Zheng4cc70e92013-11-20 10:01:54 +0800953 }
954 return ret;
955}
Kevin Wolf3c90c652012-12-06 14:32:57 +0100956
957static bool blkdebug_debug_is_suspended(BlockDriverState *bs, const char *tag)
958{
959 BDRVBlkdebugState *s = bs->opaque;
960 BlkdebugSuspendedReq *r;
961
Emanuele Giuseppe Esposito36109bf2021-06-14 10:29:31 +0200962 QEMU_LOCK_GUARD(&s->lock);
Kevin Wolf3c90c652012-12-06 14:32:57 +0100963 QLIST_FOREACH(r, &s->suspended_reqs, next) {
964 if (!strcmp(r->tag, tag)) {
965 return true;
966 }
967 }
968 return false;
969}
970
Kevin Wolf8ab81402023-02-03 16:22:02 +0100971static int64_t coroutine_fn GRAPH_RDLOCK
972blkdebug_co_getlength(BlockDriverState *bs)
Paolo Bonzinie1302252012-06-06 08:10:41 +0200973{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +0100974 return bdrv_co_getlength(bs->file->bs);
Paolo Bonzinie1302252012-06-06 08:10:41 +0200975}
976
Kevin Wolf79a55862023-10-27 17:53:29 +0200977static void GRAPH_RDLOCK blkdebug_refresh_filename(BlockDriverState *bs)
Max Reitz2c31b042014-07-18 20:24:57 +0200978{
Max Reitz036990d2016-08-15 15:29:25 +0200979 BDRVBlkdebugState *s = bs->opaque;
Max Reitz87794412014-11-11 10:23:44 +0100980 const QDictEntry *e;
Max Reitz998b3a12019-02-01 20:29:28 +0100981 int ret;
Max Reitz2c31b042014-07-18 20:24:57 +0200982
Max Reitz998b3a12019-02-01 20:29:28 +0100983 if (!bs->file->bs->exact_filename[0]) {
Max Reitz2c31b042014-07-18 20:24:57 +0200984 return;
985 }
986
Max Reitz998b3a12019-02-01 20:29:28 +0100987 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 Reitzde81d722017-06-13 19:20:05 +0200998 }
Max Reitz87794412014-11-11 10:23:44 +0100999 }
1000
Max Reitz998b3a12019-02-01 20:29:28 +01001001 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 Reitz2c31b042014-07-18 20:24:57 +02001007 }
Max Reitz2c31b042014-07-18 20:24:57 +02001008}
1009
Eric Blake835db3e2016-06-23 16:37:13 -06001010static void blkdebug_refresh_limits(BlockDriverState *bs, Error **errp)
1011{
1012 BDRVBlkdebugState *s = bs->opaque;
1013
1014 if (s->align) {
Eric Blakea5b8dd22016-06-23 16:37:24 -06001015 bs->bl.request_alignment = s->align;
Eric Blake835db3e2016-06-23 16:37:13 -06001016 }
Eric Blake430b26a2017-04-29 14:14:18 -05001017 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 Blake835db3e2016-06-23 16:37:13 -06001032}
1033
Kevin Wolfc5e8bfb2015-10-29 15:22:27 +01001034static int blkdebug_reopen_prepare(BDRVReopenState *reopen_state,
1035 BlockReopenQueue *queue, Error **errp)
1036{
1037 return 0;
1038}
1039
Max Reitz69c64492019-11-08 13:34:53 +01001040static void blkdebug_child_perm(BlockDriverState *bs, BdrvChild *c,
Max Reitzbf8e9252020-05-13 13:05:16 +02001041 BdrvChildRole role,
Max Reitz69c64492019-11-08 13:34:53 +01001042 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 Reitze5d8a402020-05-13 13:05:44 +02001048 bdrv_default_perms(bs, c, role, reopen_queue,
Max Reitz69dca432020-05-13 13:05:39 +02001049 perm, shared, nperm, nshared);
Max Reitz69c64492019-11-08 13:34:53 +01001050
1051 *nperm |= s->take_child_perms;
1052 *nshared &= ~s->unshare_child_perms;
1053}
1054
Max Reitz26542672019-02-01 20:29:25 +01001055static 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 Wolf6a143722010-02-18 17:48:12 +01001069static BlockDriver bdrv_blkdebug = {
Kevin Wolff4681212013-04-10 13:37:33 +02001070 .format_name = "blkdebug",
1071 .protocol_name = "blkdebug",
1072 .instance_size = sizeof(BDRVBlkdebugState),
Manos Pitsidianakisd8e12cd2017-07-13 18:30:27 +03001073 .is_filter = true,
Kevin Wolf6a143722010-02-18 17:48:12 +01001074
Kevin Wolff4681212013-04-10 13:37:33 +02001075 .bdrv_parse_filename = blkdebug_parse_filename,
Paolo Bonzini44b424d2022-11-24 16:22:22 +01001076 .bdrv_open = blkdebug_open,
Kevin Wolff4681212013-04-10 13:37:33 +02001077 .bdrv_close = blkdebug_close,
Kevin Wolfc5e8bfb2015-10-29 15:22:27 +01001078 .bdrv_reopen_prepare = blkdebug_reopen_prepare,
Max Reitz69c64492019-11-08 13:34:53 +01001079 .bdrv_child_perm = blkdebug_child_perm,
Kevin Wolfd7010df2016-12-15 12:28:58 +01001080
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001081 .bdrv_co_getlength = blkdebug_co_getlength,
Max Reitz2c31b042014-07-18 20:24:57 +02001082 .bdrv_refresh_filename = blkdebug_refresh_filename,
Eric Blake835db3e2016-06-23 16:37:13 -06001083 .bdrv_refresh_limits = blkdebug_refresh_limits,
Kevin Wolf6a143722010-02-18 17:48:12 +01001084
Kevin Wolf7c3a9982016-11-04 21:13:45 +01001085 .bdrv_co_preadv = blkdebug_co_preadv,
1086 .bdrv_co_pwritev = blkdebug_co_pwritev,
1087 .bdrv_co_flush_to_disk = blkdebug_co_flush,
Eric Blake63188c22017-04-29 14:14:16 -05001088 .bdrv_co_pwrite_zeroes = blkdebug_co_pwrite_zeroes,
1089 .bdrv_co_pdiscard = blkdebug_co_pdiscard,
Eric Blake3e4d0e72018-02-13 14:26:43 -06001090 .bdrv_co_block_status = blkdebug_co_block_status,
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01001091
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01001092 .bdrv_co_debug_event = blkdebug_co_debug_event,
Kevin Wolf3c90c652012-12-06 14:32:57 +01001093 .bdrv_debug_breakpoint = blkdebug_debug_breakpoint,
Fam Zheng4cc70e92013-11-20 10:01:54 +08001094 .bdrv_debug_remove_breakpoint
1095 = blkdebug_debug_remove_breakpoint,
Kevin Wolf3c90c652012-12-06 14:32:57 +01001096 .bdrv_debug_resume = blkdebug_debug_resume,
1097 .bdrv_debug_is_suspended = blkdebug_debug_is_suspended,
Max Reitz26542672019-02-01 20:29:25 +01001098
1099 .strong_runtime_opts = blkdebug_strong_runtime_opts,
Kevin Wolf6a143722010-02-18 17:48:12 +01001100};
1101
1102static void bdrv_blkdebug_init(void)
1103{
1104 bdrv_register(&bdrv_blkdebug);
1105}
1106
1107block_init(bdrv_blkdebug_init);