blob: be948b2fdd8cc261c1013110e8c646e3ee9d5562 [file] [log] [blame]
Kevin Wolf6a143722010-02-18 17:48:12 +01001/*
2 * Block protocol for I/O error injection
3 *
4 * Copyright (c) 2010 Kevin Wolf <kwolf@redhat.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010026#include "qemu/config-file.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010027#include "block/block_int.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010028#include "qemu/module.h"
Kevin Wolf6a143722010-02-18 17:48:12 +010029
30typedef struct BDRVBlkdebugState {
Paolo Bonzini571cd432012-06-06 08:10:42 +020031 int state;
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +020032 int new_state;
Kevin Wolf3c90c652012-12-06 14:32:57 +010033
Paolo Bonzini571cd432012-06-06 08:10:42 +020034 QLIST_HEAD(, BlkdebugRule) rules[BLKDBG_EVENT_MAX];
35 QSIMPLEQ_HEAD(, BlkdebugRule) active_rules;
Kevin Wolf3c90c652012-12-06 14:32:57 +010036 QLIST_HEAD(, BlkdebugSuspendedReq) suspended_reqs;
Kevin Wolf6a143722010-02-18 17:48:12 +010037} BDRVBlkdebugState;
38
Kevin Wolfb9f66d92010-02-19 16:24:35 +010039typedef struct BlkdebugAIOCB {
40 BlockDriverAIOCB common;
41 QEMUBH *bh;
42 int ret;
43} BlkdebugAIOCB;
44
Kevin Wolf3c90c652012-12-06 14:32:57 +010045typedef struct BlkdebugSuspendedReq {
46 Coroutine *co;
47 char *tag;
48 QLIST_ENTRY(BlkdebugSuspendedReq) next;
49} BlkdebugSuspendedReq;
50
Kevin Wolfb9f66d92010-02-19 16:24:35 +010051static void blkdebug_aio_cancel(BlockDriverAIOCB *blockacb);
52
Stefan Hajnoczid7331be2012-10-31 16:34:37 +010053static const AIOCBInfo blkdebug_aiocb_info = {
Kevin Wolfb9f66d92010-02-19 16:24:35 +010054 .aiocb_size = sizeof(BlkdebugAIOCB),
55 .cancel = blkdebug_aio_cancel,
56};
57
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010058enum {
59 ACTION_INJECT_ERROR,
60 ACTION_SET_STATE,
Kevin Wolf3c90c652012-12-06 14:32:57 +010061 ACTION_SUSPEND,
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010062};
63
64typedef struct BlkdebugRule {
65 BlkDebugEvent event;
66 int action;
67 int state;
68 union {
69 struct {
70 int error;
71 int immediately;
72 int once;
Paolo Bonzinie4780db2012-06-06 08:10:43 +020073 int64_t sector;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010074 } inject;
75 struct {
76 int new_state;
77 } set_state;
Kevin Wolf3c90c652012-12-06 14:32:57 +010078 struct {
79 char *tag;
80 } suspend;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010081 } options;
82 QLIST_ENTRY(BlkdebugRule) next;
Paolo Bonzini571cd432012-06-06 08:10:42 +020083 QSIMPLEQ_ENTRY(BlkdebugRule) active_next;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +010084} BlkdebugRule;
85
86static QemuOptsList inject_error_opts = {
87 .name = "inject-error",
88 .head = QTAILQ_HEAD_INITIALIZER(inject_error_opts.head),
89 .desc = {
90 {
91 .name = "event",
92 .type = QEMU_OPT_STRING,
93 },
94 {
95 .name = "state",
96 .type = QEMU_OPT_NUMBER,
97 },
98 {
99 .name = "errno",
100 .type = QEMU_OPT_NUMBER,
101 },
102 {
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200103 .name = "sector",
104 .type = QEMU_OPT_NUMBER,
105 },
106 {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100107 .name = "once",
108 .type = QEMU_OPT_BOOL,
109 },
110 {
111 .name = "immediately",
112 .type = QEMU_OPT_BOOL,
113 },
114 { /* end of list */ }
115 },
116};
117
118static QemuOptsList set_state_opts = {
119 .name = "set-state",
Kevin Wolf327cdad2010-06-30 17:40:42 +0200120 .head = QTAILQ_HEAD_INITIALIZER(set_state_opts.head),
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100121 .desc = {
122 {
123 .name = "event",
124 .type = QEMU_OPT_STRING,
125 },
126 {
127 .name = "state",
128 .type = QEMU_OPT_NUMBER,
129 },
130 {
131 .name = "new_state",
132 .type = QEMU_OPT_NUMBER,
133 },
134 { /* end of list */ }
135 },
136};
137
138static QemuOptsList *config_groups[] = {
139 &inject_error_opts,
140 &set_state_opts,
141 NULL
142};
143
144static const char *event_names[BLKDBG_EVENT_MAX] = {
Kevin Wolf82522782010-03-15 17:38:05 +0100145 [BLKDBG_L1_UPDATE] = "l1_update",
146 [BLKDBG_L1_GROW_ALLOC_TABLE] = "l1_grow.alloc_table",
147 [BLKDBG_L1_GROW_WRITE_TABLE] = "l1_grow.write_table",
148 [BLKDBG_L1_GROW_ACTIVATE_TABLE] = "l1_grow.activate_table",
149
150 [BLKDBG_L2_LOAD] = "l2_load",
151 [BLKDBG_L2_UPDATE] = "l2_update",
152 [BLKDBG_L2_UPDATE_COMPRESSED] = "l2_update_compressed",
153 [BLKDBG_L2_ALLOC_COW_READ] = "l2_alloc.cow_read",
154 [BLKDBG_L2_ALLOC_WRITE] = "l2_alloc.write",
155
Kevin Wolf82522782010-03-15 17:38:05 +0100156 [BLKDBG_READ_AIO] = "read_aio",
Kevin Wolf82522782010-03-15 17:38:05 +0100157 [BLKDBG_READ_BACKING_AIO] = "read_backing_aio",
158 [BLKDBG_READ_COMPRESSED] = "read_compressed",
159
160 [BLKDBG_WRITE_AIO] = "write_aio",
161 [BLKDBG_WRITE_COMPRESSED] = "write_compressed",
162
163 [BLKDBG_VMSTATE_LOAD] = "vmstate_load",
164 [BLKDBG_VMSTATE_SAVE] = "vmstate_save",
165
166 [BLKDBG_COW_READ] = "cow_read",
167 [BLKDBG_COW_WRITE] = "cow_write",
168
169 [BLKDBG_REFTABLE_LOAD] = "reftable_load",
170 [BLKDBG_REFTABLE_GROW] = "reftable_grow",
Max Reitzafa50192013-09-02 09:25:10 +0200171 [BLKDBG_REFTABLE_UPDATE] = "reftable_update",
Kevin Wolf82522782010-03-15 17:38:05 +0100172
173 [BLKDBG_REFBLOCK_LOAD] = "refblock_load",
174 [BLKDBG_REFBLOCK_UPDATE] = "refblock_update",
175 [BLKDBG_REFBLOCK_UPDATE_PART] = "refblock_update_part",
176 [BLKDBG_REFBLOCK_ALLOC] = "refblock_alloc",
177 [BLKDBG_REFBLOCK_ALLOC_HOOKUP] = "refblock_alloc.hookup",
178 [BLKDBG_REFBLOCK_ALLOC_WRITE] = "refblock_alloc.write",
179 [BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS] = "refblock_alloc.write_blocks",
180 [BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE] = "refblock_alloc.write_table",
181 [BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE] = "refblock_alloc.switch_table",
182
183 [BLKDBG_CLUSTER_ALLOC] = "cluster_alloc",
184 [BLKDBG_CLUSTER_ALLOC_BYTES] = "cluster_alloc_bytes",
185 [BLKDBG_CLUSTER_FREE] = "cluster_free",
Kevin Wolfbf736fe2013-06-05 15:17:55 +0200186
187 [BLKDBG_FLUSH_TO_OS] = "flush_to_os",
188 [BLKDBG_FLUSH_TO_DISK] = "flush_to_disk",
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100189};
190
191static int get_event_by_name(const char *name, BlkDebugEvent *event)
192{
193 int i;
194
195 for (i = 0; i < BLKDBG_EVENT_MAX; i++) {
196 if (!strcmp(event_names[i], name)) {
197 *event = i;
198 return 0;
199 }
200 }
201
202 return -1;
203}
204
205struct add_rule_data {
206 BDRVBlkdebugState *s;
207 int action;
208};
209
210static int add_rule(QemuOpts *opts, void *opaque)
211{
212 struct add_rule_data *d = opaque;
213 BDRVBlkdebugState *s = d->s;
214 const char* event_name;
215 BlkDebugEvent event;
216 struct BlkdebugRule *rule;
217
218 /* Find the right event for the rule */
219 event_name = qemu_opt_get(opts, "event");
220 if (!event_name || get_event_by_name(event_name, &event) < 0) {
221 return -1;
222 }
223
224 /* Set attributes common for all actions */
Anthony Liguori7267c092011-08-20 22:09:37 -0500225 rule = g_malloc0(sizeof(*rule));
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100226 *rule = (struct BlkdebugRule) {
227 .event = event,
228 .action = d->action,
229 .state = qemu_opt_get_number(opts, "state", 0),
230 };
231
232 /* Parse action-specific options */
233 switch (d->action) {
234 case ACTION_INJECT_ERROR:
235 rule->options.inject.error = qemu_opt_get_number(opts, "errno", EIO);
236 rule->options.inject.once = qemu_opt_get_bool(opts, "once", 0);
237 rule->options.inject.immediately =
238 qemu_opt_get_bool(opts, "immediately", 0);
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200239 rule->options.inject.sector = qemu_opt_get_number(opts, "sector", -1);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100240 break;
241
242 case ACTION_SET_STATE:
243 rule->options.set_state.new_state =
244 qemu_opt_get_number(opts, "new_state", 0);
245 break;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100246
247 case ACTION_SUSPEND:
248 rule->options.suspend.tag =
249 g_strdup(qemu_opt_get(opts, "tag"));
250 break;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100251 };
252
253 /* Add the rule */
254 QLIST_INSERT_HEAD(&s->rules[event], rule, next);
255
256 return 0;
257}
258
Kevin Wolf9e355422012-12-06 14:32:56 +0100259static void remove_rule(BlkdebugRule *rule)
260{
261 switch (rule->action) {
262 case ACTION_INJECT_ERROR:
263 case ACTION_SET_STATE:
264 break;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100265 case ACTION_SUSPEND:
266 g_free(rule->options.suspend.tag);
267 break;
Kevin Wolf9e355422012-12-06 14:32:56 +0100268 }
269
270 QLIST_REMOVE(rule, next);
271 g_free(rule);
272}
273
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100274static int read_config(BDRVBlkdebugState *s, const char *filename)
275{
276 FILE *f;
277 int ret;
278 struct add_rule_data d;
279
280 f = fopen(filename, "r");
281 if (f == NULL) {
282 return -errno;
283 }
284
285 ret = qemu_config_parse(f, config_groups, filename);
286 if (ret < 0) {
287 goto fail;
288 }
289
290 d.s = s;
291 d.action = ACTION_INJECT_ERROR;
292 qemu_opts_foreach(&inject_error_opts, add_rule, &d, 0);
293
294 d.action = ACTION_SET_STATE;
295 qemu_opts_foreach(&set_state_opts, add_rule, &d, 0);
296
297 ret = 0;
298fail:
Kevin Wolf698f0d52010-06-30 17:42:23 +0200299 qemu_opts_reset(&inject_error_opts);
300 qemu_opts_reset(&set_state_opts);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100301 fclose(f);
302 return ret;
303}
304
305/* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
Kevin Wolff4681212013-04-10 13:37:33 +0200306static void blkdebug_parse_filename(const char *filename, QDict *options,
307 Error **errp)
308{
309 const char *c;
310
311 /* Parse the blkdebug: prefix */
312 if (!strstart(filename, "blkdebug:", &filename)) {
313 error_setg(errp, "File name string must start with 'blkdebug:'");
314 return;
315 }
316
317 /* Parse config file path */
318 c = strchr(filename, ':');
319 if (c == NULL) {
320 error_setg(errp, "blkdebug requires both config file and image path");
321 return;
322 }
323
324 if (c != filename) {
325 QString *config_path;
326 config_path = qstring_from_substr(filename, 0, c - filename - 1);
327 qdict_put(options, "config", config_path);
328 }
329
330 /* TODO Allow multi-level nesting and set file.filename here */
331 filename = c + 1;
332 qdict_put(options, "x-image", qstring_from_str(filename));
333}
334
335static QemuOptsList runtime_opts = {
336 .name = "blkdebug",
337 .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
338 .desc = {
339 {
340 .name = "config",
341 .type = QEMU_OPT_STRING,
342 .help = "Path to the configuration file",
343 },
344 {
345 .name = "x-image",
346 .type = QEMU_OPT_STRING,
347 .help = "[internal use only, will be removed]",
348 },
349 { /* end of list */ }
350 },
351};
352
Max Reitz015a1032013-09-05 14:22:29 +0200353static int blkdebug_open(BlockDriverState *bs, QDict *options, int flags,
354 Error **errp)
Kevin Wolf6a143722010-02-18 17:48:12 +0100355{
356 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolff4681212013-04-10 13:37:33 +0200357 QemuOpts *opts;
358 Error *local_err = NULL;
359 const char *filename, *config;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100360 int ret;
Kevin Wolf6a143722010-02-18 17:48:12 +0100361
Kevin Wolff4681212013-04-10 13:37:33 +0200362 opts = qemu_opts_create_nofail(&runtime_opts);
363 qemu_opts_absorb_qdict(opts, options, &local_err);
364 if (error_is_set(&local_err)) {
365 qerror_report_err(local_err);
366 error_free(local_err);
367 ret = -EINVAL;
368 goto fail;
Kevin Wolf6a143722010-02-18 17:48:12 +0100369 }
Kevin Wolf6a143722010-02-18 17:48:12 +0100370
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100371 /* Read rules from config file */
Kevin Wolff4681212013-04-10 13:37:33 +0200372 config = qemu_opt_get(opts, "config");
373 if (config) {
374 ret = read_config(s, config);
375 if (ret < 0) {
376 goto fail;
377 }
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100378 }
379
Kevin Wolf8db520c2010-06-30 17:43:40 +0200380 /* Set initial state */
Paolo Bonzini571cd432012-06-06 08:10:42 +0200381 s->state = 1;
Kevin Wolf8db520c2010-06-30 17:43:40 +0200382
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100383 /* Open the backing file */
Kevin Wolff4681212013-04-10 13:37:33 +0200384 filename = qemu_opt_get(opts, "x-image");
385 if (filename == NULL) {
386 ret = -EINVAL;
387 goto fail;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100388 }
389
Max Reitz34b5d2c2013-09-05 14:45:29 +0200390 ret = bdrv_file_open(&bs->file, filename, NULL, flags, &local_err);
Kevin Wolff4681212013-04-10 13:37:33 +0200391 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200392 qerror_report_err(local_err);
393 error_free(local_err);
Kevin Wolff4681212013-04-10 13:37:33 +0200394 goto fail;
395 }
396
397 ret = 0;
398fail:
399 qemu_opts_del(opts);
400 return ret;
Kevin Wolf6a143722010-02-18 17:48:12 +0100401}
402
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100403static void error_callback_bh(void *opaque)
404{
405 struct BlkdebugAIOCB *acb = opaque;
406 qemu_bh_delete(acb->bh);
407 acb->common.cb(acb->common.opaque, acb->ret);
408 qemu_aio_release(acb);
409}
410
411static void blkdebug_aio_cancel(BlockDriverAIOCB *blockacb)
412{
Kevin Wolfb666d232010-05-05 11:44:39 +0200413 BlkdebugAIOCB *acb = container_of(blockacb, BlkdebugAIOCB, common);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100414 qemu_aio_release(acb);
415}
416
417static BlockDriverAIOCB *inject_error(BlockDriverState *bs,
Paolo Bonzini571cd432012-06-06 08:10:42 +0200418 BlockDriverCompletionFunc *cb, void *opaque, BlkdebugRule *rule)
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100419{
420 BDRVBlkdebugState *s = bs->opaque;
Paolo Bonzini571cd432012-06-06 08:10:42 +0200421 int error = rule->options.inject.error;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100422 struct BlkdebugAIOCB *acb;
423 QEMUBH *bh;
424
Paolo Bonzini571cd432012-06-06 08:10:42 +0200425 if (rule->options.inject.once) {
426 QSIMPLEQ_INIT(&s->active_rules);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100427 }
428
Paolo Bonzini571cd432012-06-06 08:10:42 +0200429 if (rule->options.inject.immediately) {
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100430 return NULL;
431 }
432
Stefan Hajnoczid7331be2012-10-31 16:34:37 +0100433 acb = qemu_aio_get(&blkdebug_aiocb_info, bs, cb, opaque);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100434 acb->ret = -error;
435
436 bh = qemu_bh_new(error_callback_bh, acb);
437 acb->bh = bh;
438 qemu_bh_schedule(bh);
439
Kevin Wolfb666d232010-05-05 11:44:39 +0200440 return &acb->common;
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100441}
442
Kevin Wolf6a143722010-02-18 17:48:12 +0100443static BlockDriverAIOCB *blkdebug_aio_readv(BlockDriverState *bs,
444 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
445 BlockDriverCompletionFunc *cb, void *opaque)
446{
447 BDRVBlkdebugState *s = bs->opaque;
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200448 BlkdebugRule *rule = NULL;
449
450 QSIMPLEQ_FOREACH(rule, &s->active_rules, active_next) {
451 if (rule->options.inject.sector == -1 ||
452 (rule->options.inject.sector >= sector_num &&
453 rule->options.inject.sector < sector_num + nb_sectors)) {
454 break;
455 }
456 }
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100457
Paolo Bonzini571cd432012-06-06 08:10:42 +0200458 if (rule && rule->options.inject.error) {
459 return inject_error(bs, cb, opaque, rule);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100460 }
461
Paolo Bonzini368e8dd2012-06-06 08:10:40 +0200462 return bdrv_aio_readv(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
Kevin Wolf6a143722010-02-18 17:48:12 +0100463}
464
465static BlockDriverAIOCB *blkdebug_aio_writev(BlockDriverState *bs,
466 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
467 BlockDriverCompletionFunc *cb, void *opaque)
468{
469 BDRVBlkdebugState *s = bs->opaque;
Paolo Bonzinie4780db2012-06-06 08:10:43 +0200470 BlkdebugRule *rule = NULL;
471
472 QSIMPLEQ_FOREACH(rule, &s->active_rules, active_next) {
473 if (rule->options.inject.sector == -1 ||
474 (rule->options.inject.sector >= sector_num &&
475 rule->options.inject.sector < sector_num + nb_sectors)) {
476 break;
477 }
478 }
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100479
Paolo Bonzini571cd432012-06-06 08:10:42 +0200480 if (rule && rule->options.inject.error) {
481 return inject_error(bs, cb, opaque, rule);
Kevin Wolfb9f66d92010-02-19 16:24:35 +0100482 }
483
Paolo Bonzini368e8dd2012-06-06 08:10:40 +0200484 return bdrv_aio_writev(bs->file, sector_num, qiov, nb_sectors, cb, opaque);
Kevin Wolf6a143722010-02-18 17:48:12 +0100485}
486
Kevin Wolf3c90c652012-12-06 14:32:57 +0100487
Kevin Wolf6a143722010-02-18 17:48:12 +0100488static void blkdebug_close(BlockDriverState *bs)
489{
490 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100491 BlkdebugRule *rule, *next;
492 int i;
493
494 for (i = 0; i < BLKDBG_EVENT_MAX; i++) {
495 QLIST_FOREACH_SAFE(rule, &s->rules[i], next, next) {
Kevin Wolf9e355422012-12-06 14:32:56 +0100496 remove_rule(rule);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100497 }
498 }
Kevin Wolf6a143722010-02-18 17:48:12 +0100499}
500
Kevin Wolf3c90c652012-12-06 14:32:57 +0100501static void suspend_request(BlockDriverState *bs, BlkdebugRule *rule)
502{
503 BDRVBlkdebugState *s = bs->opaque;
504 BlkdebugSuspendedReq r;
505
506 r = (BlkdebugSuspendedReq) {
507 .co = qemu_coroutine_self(),
508 .tag = g_strdup(rule->options.suspend.tag),
509 };
510
511 remove_rule(rule);
512 QLIST_INSERT_HEAD(&s->suspended_reqs, &r, next);
513
514 printf("blkdebug: Suspended request '%s'\n", r.tag);
515 qemu_coroutine_yield();
516 printf("blkdebug: Resuming request '%s'\n", r.tag);
517
518 QLIST_REMOVE(&r, next);
519 g_free(r.tag);
520}
521
Paolo Bonzini571cd432012-06-06 08:10:42 +0200522static bool process_rule(BlockDriverState *bs, struct BlkdebugRule *rule,
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200523 bool injected)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100524{
525 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100526
527 /* Only process rules for the current state */
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200528 if (rule->state && rule->state != s->state) {
Paolo Bonzini571cd432012-06-06 08:10:42 +0200529 return injected;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100530 }
531
532 /* Take the action */
533 switch (rule->action) {
534 case ACTION_INJECT_ERROR:
Paolo Bonzini571cd432012-06-06 08:10:42 +0200535 if (!injected) {
536 QSIMPLEQ_INIT(&s->active_rules);
537 injected = true;
538 }
539 QSIMPLEQ_INSERT_HEAD(&s->active_rules, rule, active_next);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100540 break;
541
542 case ACTION_SET_STATE:
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200543 s->new_state = rule->options.set_state.new_state;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100544 break;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100545
546 case ACTION_SUSPEND:
547 suspend_request(bs, rule);
548 break;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100549 }
Paolo Bonzini571cd432012-06-06 08:10:42 +0200550 return injected;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100551}
552
553static void blkdebug_debug_event(BlockDriverState *bs, BlkDebugEvent event)
554{
555 BDRVBlkdebugState *s = bs->opaque;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100556 struct BlkdebugRule *rule, *next;
Paolo Bonzini571cd432012-06-06 08:10:42 +0200557 bool injected;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100558
Blue Swirl95ee3912010-09-18 05:53:15 +0000559 assert((int)event >= 0 && event < BLKDBG_EVENT_MAX);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100560
Paolo Bonzini571cd432012-06-06 08:10:42 +0200561 injected = false;
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200562 s->new_state = s->state;
Kevin Wolf3c90c652012-12-06 14:32:57 +0100563 QLIST_FOREACH_SAFE(rule, &s->rules[event], next, next) {
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200564 injected = process_rule(bs, rule, injected);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100565 }
Paolo Bonzini8f96b5b2012-09-28 17:23:00 +0200566 s->state = s->new_state;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100567}
568
Kevin Wolf3c90c652012-12-06 14:32:57 +0100569static int blkdebug_debug_breakpoint(BlockDriverState *bs, const char *event,
570 const char *tag)
571{
572 BDRVBlkdebugState *s = bs->opaque;
573 struct BlkdebugRule *rule;
574 BlkDebugEvent blkdebug_event;
575
576 if (get_event_by_name(event, &blkdebug_event) < 0) {
577 return -ENOENT;
578 }
579
580
581 rule = g_malloc(sizeof(*rule));
582 *rule = (struct BlkdebugRule) {
583 .event = blkdebug_event,
584 .action = ACTION_SUSPEND,
585 .state = 0,
586 .options.suspend.tag = g_strdup(tag),
587 };
588
589 QLIST_INSERT_HEAD(&s->rules[blkdebug_event], rule, next);
590
591 return 0;
592}
593
594static int blkdebug_debug_resume(BlockDriverState *bs, const char *tag)
595{
596 BDRVBlkdebugState *s = bs->opaque;
597 BlkdebugSuspendedReq *r;
598
599 QLIST_FOREACH(r, &s->suspended_reqs, next) {
600 if (!strcmp(r->tag, tag)) {
601 qemu_coroutine_enter(r->co, NULL);
602 return 0;
603 }
604 }
605 return -ENOENT;
606}
607
608
609static bool blkdebug_debug_is_suspended(BlockDriverState *bs, const char *tag)
610{
611 BDRVBlkdebugState *s = bs->opaque;
612 BlkdebugSuspendedReq *r;
613
614 QLIST_FOREACH(r, &s->suspended_reqs, next) {
615 if (!strcmp(r->tag, tag)) {
616 return true;
617 }
618 }
619 return false;
620}
621
Paolo Bonzinie1302252012-06-06 08:10:41 +0200622static int64_t blkdebug_getlength(BlockDriverState *bs)
623{
624 return bdrv_getlength(bs->file);
625}
626
Kevin Wolf6a143722010-02-18 17:48:12 +0100627static BlockDriver bdrv_blkdebug = {
Kevin Wolff4681212013-04-10 13:37:33 +0200628 .format_name = "blkdebug",
629 .protocol_name = "blkdebug",
630 .instance_size = sizeof(BDRVBlkdebugState),
Kevin Wolf6a143722010-02-18 17:48:12 +0100631
Kevin Wolff4681212013-04-10 13:37:33 +0200632 .bdrv_parse_filename = blkdebug_parse_filename,
633 .bdrv_file_open = blkdebug_open,
634 .bdrv_close = blkdebug_close,
635 .bdrv_getlength = blkdebug_getlength,
Kevin Wolf6a143722010-02-18 17:48:12 +0100636
Kevin Wolff4681212013-04-10 13:37:33 +0200637 .bdrv_aio_readv = blkdebug_aio_readv,
638 .bdrv_aio_writev = blkdebug_aio_writev,
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +0100639
Kevin Wolf3c90c652012-12-06 14:32:57 +0100640 .bdrv_debug_event = blkdebug_debug_event,
641 .bdrv_debug_breakpoint = blkdebug_debug_breakpoint,
642 .bdrv_debug_resume = blkdebug_debug_resume,
643 .bdrv_debug_is_suspended = blkdebug_debug_is_suspended,
Kevin Wolf6a143722010-02-18 17:48:12 +0100644};
645
646static void bdrv_blkdebug_init(void)
647{
648 bdrv_register(&bdrv_blkdebug);
649}
650
651block_init(bdrv_blkdebug_init);