2 * Block protocol for I/O error injection
4 * Copyright (c) 2010 Kevin Wolf <kwolf@redhat.com>
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu-common.h"
26 #include "qemu/config-file.h"
27 #include "block/block_int.h"
28 #include "qemu/module.h"
30 typedef struct BDRVBlkdebugState
{
34 QLIST_HEAD(, BlkdebugRule
) rules
[BLKDBG_EVENT_MAX
];
35 QSIMPLEQ_HEAD(, BlkdebugRule
) active_rules
;
36 QLIST_HEAD(, BlkdebugSuspendedReq
) suspended_reqs
;
39 typedef struct BlkdebugAIOCB
{
40 BlockDriverAIOCB common
;
45 typedef struct BlkdebugSuspendedReq
{
48 QLIST_ENTRY(BlkdebugSuspendedReq
) next
;
49 } BlkdebugSuspendedReq
;
51 static void blkdebug_aio_cancel(BlockDriverAIOCB
*blockacb
);
53 static const AIOCBInfo blkdebug_aiocb_info
= {
54 .aiocb_size
= sizeof(BlkdebugAIOCB
),
55 .cancel
= blkdebug_aio_cancel
,
64 typedef struct BlkdebugRule
{
82 QLIST_ENTRY(BlkdebugRule
) next
;
83 QSIMPLEQ_ENTRY(BlkdebugRule
) active_next
;
86 static QemuOptsList inject_error_opts
= {
87 .name
= "inject-error",
88 .head
= QTAILQ_HEAD_INITIALIZER(inject_error_opts
.head
),
92 .type
= QEMU_OPT_STRING
,
96 .type
= QEMU_OPT_NUMBER
,
100 .type
= QEMU_OPT_NUMBER
,
104 .type
= QEMU_OPT_NUMBER
,
108 .type
= QEMU_OPT_BOOL
,
111 .name
= "immediately",
112 .type
= QEMU_OPT_BOOL
,
114 { /* end of list */ }
118 static QemuOptsList set_state_opts
= {
120 .head
= QTAILQ_HEAD_INITIALIZER(set_state_opts
.head
),
124 .type
= QEMU_OPT_STRING
,
128 .type
= QEMU_OPT_NUMBER
,
132 .type
= QEMU_OPT_NUMBER
,
134 { /* end of list */ }
138 static QemuOptsList
*config_groups
[] = {
144 static const char *event_names
[BLKDBG_EVENT_MAX
] = {
145 [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",
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",
156 [BLKDBG_READ_AIO
] = "read_aio",
157 [BLKDBG_READ_BACKING_AIO
] = "read_backing_aio",
158 [BLKDBG_READ_COMPRESSED
] = "read_compressed",
160 [BLKDBG_WRITE_AIO
] = "write_aio",
161 [BLKDBG_WRITE_COMPRESSED
] = "write_compressed",
163 [BLKDBG_VMSTATE_LOAD
] = "vmstate_load",
164 [BLKDBG_VMSTATE_SAVE
] = "vmstate_save",
166 [BLKDBG_COW_READ
] = "cow_read",
167 [BLKDBG_COW_WRITE
] = "cow_write",
169 [BLKDBG_REFTABLE_LOAD
] = "reftable_load",
170 [BLKDBG_REFTABLE_GROW
] = "reftable_grow",
172 [BLKDBG_REFBLOCK_LOAD
] = "refblock_load",
173 [BLKDBG_REFBLOCK_UPDATE
] = "refblock_update",
174 [BLKDBG_REFBLOCK_UPDATE_PART
] = "refblock_update_part",
175 [BLKDBG_REFBLOCK_ALLOC
] = "refblock_alloc",
176 [BLKDBG_REFBLOCK_ALLOC_HOOKUP
] = "refblock_alloc.hookup",
177 [BLKDBG_REFBLOCK_ALLOC_WRITE
] = "refblock_alloc.write",
178 [BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS
] = "refblock_alloc.write_blocks",
179 [BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE
] = "refblock_alloc.write_table",
180 [BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE
] = "refblock_alloc.switch_table",
182 [BLKDBG_CLUSTER_ALLOC
] = "cluster_alloc",
183 [BLKDBG_CLUSTER_ALLOC_BYTES
] = "cluster_alloc_bytes",
184 [BLKDBG_CLUSTER_FREE
] = "cluster_free",
186 [BLKDBG_FLUSH_TO_OS
] = "flush_to_os",
187 [BLKDBG_FLUSH_TO_DISK
] = "flush_to_disk",
190 static int get_event_by_name(const char *name
, BlkDebugEvent
*event
)
194 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
195 if (!strcmp(event_names
[i
], name
)) {
204 struct add_rule_data
{
205 BDRVBlkdebugState
*s
;
209 static int add_rule(QemuOpts
*opts
, void *opaque
)
211 struct add_rule_data
*d
= opaque
;
212 BDRVBlkdebugState
*s
= d
->s
;
213 const char* event_name
;
215 struct BlkdebugRule
*rule
;
217 /* Find the right event for the rule */
218 event_name
= qemu_opt_get(opts
, "event");
219 if (!event_name
|| get_event_by_name(event_name
, &event
) < 0) {
223 /* Set attributes common for all actions */
224 rule
= g_malloc0(sizeof(*rule
));
225 *rule
= (struct BlkdebugRule
) {
228 .state
= qemu_opt_get_number(opts
, "state", 0),
231 /* Parse action-specific options */
233 case ACTION_INJECT_ERROR
:
234 rule
->options
.inject
.error
= qemu_opt_get_number(opts
, "errno", EIO
);
235 rule
->options
.inject
.once
= qemu_opt_get_bool(opts
, "once", 0);
236 rule
->options
.inject
.immediately
=
237 qemu_opt_get_bool(opts
, "immediately", 0);
238 rule
->options
.inject
.sector
= qemu_opt_get_number(opts
, "sector", -1);
241 case ACTION_SET_STATE
:
242 rule
->options
.set_state
.new_state
=
243 qemu_opt_get_number(opts
, "new_state", 0);
247 rule
->options
.suspend
.tag
=
248 g_strdup(qemu_opt_get(opts
, "tag"));
253 QLIST_INSERT_HEAD(&s
->rules
[event
], rule
, next
);
258 static void remove_rule(BlkdebugRule
*rule
)
260 switch (rule
->action
) {
261 case ACTION_INJECT_ERROR
:
262 case ACTION_SET_STATE
:
265 g_free(rule
->options
.suspend
.tag
);
269 QLIST_REMOVE(rule
, next
);
273 static int read_config(BDRVBlkdebugState
*s
, const char *filename
)
277 struct add_rule_data d
;
279 f
= fopen(filename
, "r");
284 ret
= qemu_config_parse(f
, config_groups
, filename
);
290 d
.action
= ACTION_INJECT_ERROR
;
291 qemu_opts_foreach(&inject_error_opts
, add_rule
, &d
, 0);
293 d
.action
= ACTION_SET_STATE
;
294 qemu_opts_foreach(&set_state_opts
, add_rule
, &d
, 0);
298 qemu_opts_reset(&inject_error_opts
);
299 qemu_opts_reset(&set_state_opts
);
304 /* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
305 static void blkdebug_parse_filename(const char *filename
, QDict
*options
,
310 /* Parse the blkdebug: prefix */
311 if (!strstart(filename
, "blkdebug:", &filename
)) {
312 error_setg(errp
, "File name string must start with 'blkdebug:'");
316 /* Parse config file path */
317 c
= strchr(filename
, ':');
319 error_setg(errp
, "blkdebug requires both config file and image path");
324 QString
*config_path
;
325 config_path
= qstring_from_substr(filename
, 0, c
- filename
- 1);
326 qdict_put(options
, "config", config_path
);
329 /* TODO Allow multi-level nesting and set file.filename here */
331 qdict_put(options
, "x-image", qstring_from_str(filename
));
334 static QemuOptsList runtime_opts
= {
336 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
340 .type
= QEMU_OPT_STRING
,
341 .help
= "Path to the configuration file",
345 .type
= QEMU_OPT_STRING
,
346 .help
= "[internal use only, will be removed]",
348 { /* end of list */ }
352 static int blkdebug_open(BlockDriverState
*bs
, QDict
*options
, int flags
)
354 BDRVBlkdebugState
*s
= bs
->opaque
;
356 Error
*local_err
= NULL
;
357 const char *filename
, *config
;
360 opts
= qemu_opts_create_nofail(&runtime_opts
);
361 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
362 if (error_is_set(&local_err
)) {
363 qerror_report_err(local_err
);
364 error_free(local_err
);
369 /* Read rules from config file */
370 config
= qemu_opt_get(opts
, "config");
372 ret
= read_config(s
, config
);
378 /* Set initial state */
381 /* Open the backing file */
382 filename
= qemu_opt_get(opts
, "x-image");
383 if (filename
== NULL
) {
388 ret
= bdrv_file_open(&bs
->file
, filename
, NULL
, flags
);
399 static void error_callback_bh(void *opaque
)
401 struct BlkdebugAIOCB
*acb
= opaque
;
402 qemu_bh_delete(acb
->bh
);
403 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
404 qemu_aio_release(acb
);
407 static void blkdebug_aio_cancel(BlockDriverAIOCB
*blockacb
)
409 BlkdebugAIOCB
*acb
= container_of(blockacb
, BlkdebugAIOCB
, common
);
410 qemu_aio_release(acb
);
413 static BlockDriverAIOCB
*inject_error(BlockDriverState
*bs
,
414 BlockDriverCompletionFunc
*cb
, void *opaque
, BlkdebugRule
*rule
)
416 BDRVBlkdebugState
*s
= bs
->opaque
;
417 int error
= rule
->options
.inject
.error
;
418 struct BlkdebugAIOCB
*acb
;
421 if (rule
->options
.inject
.once
) {
422 QSIMPLEQ_INIT(&s
->active_rules
);
425 if (rule
->options
.inject
.immediately
) {
429 acb
= qemu_aio_get(&blkdebug_aiocb_info
, bs
, cb
, opaque
);
432 bh
= qemu_bh_new(error_callback_bh
, acb
);
434 qemu_bh_schedule(bh
);
439 static BlockDriverAIOCB
*blkdebug_aio_readv(BlockDriverState
*bs
,
440 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
441 BlockDriverCompletionFunc
*cb
, void *opaque
)
443 BDRVBlkdebugState
*s
= bs
->opaque
;
444 BlkdebugRule
*rule
= NULL
;
446 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
447 if (rule
->options
.inject
.sector
== -1 ||
448 (rule
->options
.inject
.sector
>= sector_num
&&
449 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
454 if (rule
&& rule
->options
.inject
.error
) {
455 return inject_error(bs
, cb
, opaque
, rule
);
458 return bdrv_aio_readv(bs
->file
, sector_num
, qiov
, nb_sectors
, cb
, opaque
);
461 static BlockDriverAIOCB
*blkdebug_aio_writev(BlockDriverState
*bs
,
462 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
463 BlockDriverCompletionFunc
*cb
, void *opaque
)
465 BDRVBlkdebugState
*s
= bs
->opaque
;
466 BlkdebugRule
*rule
= NULL
;
468 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
469 if (rule
->options
.inject
.sector
== -1 ||
470 (rule
->options
.inject
.sector
>= sector_num
&&
471 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
476 if (rule
&& rule
->options
.inject
.error
) {
477 return inject_error(bs
, cb
, opaque
, rule
);
480 return bdrv_aio_writev(bs
->file
, sector_num
, qiov
, nb_sectors
, cb
, opaque
);
484 static void blkdebug_close(BlockDriverState
*bs
)
486 BDRVBlkdebugState
*s
= bs
->opaque
;
487 BlkdebugRule
*rule
, *next
;
490 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
491 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
497 static void suspend_request(BlockDriverState
*bs
, BlkdebugRule
*rule
)
499 BDRVBlkdebugState
*s
= bs
->opaque
;
500 BlkdebugSuspendedReq r
;
502 r
= (BlkdebugSuspendedReq
) {
503 .co
= qemu_coroutine_self(),
504 .tag
= g_strdup(rule
->options
.suspend
.tag
),
508 QLIST_INSERT_HEAD(&s
->suspended_reqs
, &r
, next
);
510 printf("blkdebug: Suspended request '%s'\n", r
.tag
);
511 qemu_coroutine_yield();
512 printf("blkdebug: Resuming request '%s'\n", r
.tag
);
514 QLIST_REMOVE(&r
, next
);
518 static bool process_rule(BlockDriverState
*bs
, struct BlkdebugRule
*rule
,
521 BDRVBlkdebugState
*s
= bs
->opaque
;
523 /* Only process rules for the current state */
524 if (rule
->state
&& rule
->state
!= s
->state
) {
528 /* Take the action */
529 switch (rule
->action
) {
530 case ACTION_INJECT_ERROR
:
532 QSIMPLEQ_INIT(&s
->active_rules
);
535 QSIMPLEQ_INSERT_HEAD(&s
->active_rules
, rule
, active_next
);
538 case ACTION_SET_STATE
:
539 s
->new_state
= rule
->options
.set_state
.new_state
;
543 suspend_request(bs
, rule
);
549 static void blkdebug_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
551 BDRVBlkdebugState
*s
= bs
->opaque
;
552 struct BlkdebugRule
*rule
, *next
;
555 assert((int)event
>= 0 && event
< BLKDBG_EVENT_MAX
);
558 s
->new_state
= s
->state
;
559 QLIST_FOREACH_SAFE(rule
, &s
->rules
[event
], next
, next
) {
560 injected
= process_rule(bs
, rule
, injected
);
562 s
->state
= s
->new_state
;
565 static int blkdebug_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
568 BDRVBlkdebugState
*s
= bs
->opaque
;
569 struct BlkdebugRule
*rule
;
570 BlkDebugEvent blkdebug_event
;
572 if (get_event_by_name(event
, &blkdebug_event
) < 0) {
577 rule
= g_malloc(sizeof(*rule
));
578 *rule
= (struct BlkdebugRule
) {
579 .event
= blkdebug_event
,
580 .action
= ACTION_SUSPEND
,
582 .options
.suspend
.tag
= g_strdup(tag
),
585 QLIST_INSERT_HEAD(&s
->rules
[blkdebug_event
], rule
, next
);
590 static int blkdebug_debug_resume(BlockDriverState
*bs
, const char *tag
)
592 BDRVBlkdebugState
*s
= bs
->opaque
;
593 BlkdebugSuspendedReq
*r
;
595 QLIST_FOREACH(r
, &s
->suspended_reqs
, next
) {
596 if (!strcmp(r
->tag
, tag
)) {
597 qemu_coroutine_enter(r
->co
, NULL
);
605 static bool blkdebug_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
607 BDRVBlkdebugState
*s
= bs
->opaque
;
608 BlkdebugSuspendedReq
*r
;
610 QLIST_FOREACH(r
, &s
->suspended_reqs
, next
) {
611 if (!strcmp(r
->tag
, tag
)) {
618 static int64_t blkdebug_getlength(BlockDriverState
*bs
)
620 return bdrv_getlength(bs
->file
);
623 static BlockDriver bdrv_blkdebug
= {
624 .format_name
= "blkdebug",
625 .protocol_name
= "blkdebug",
626 .instance_size
= sizeof(BDRVBlkdebugState
),
628 .bdrv_parse_filename
= blkdebug_parse_filename
,
629 .bdrv_file_open
= blkdebug_open
,
630 .bdrv_close
= blkdebug_close
,
631 .bdrv_getlength
= blkdebug_getlength
,
633 .bdrv_aio_readv
= blkdebug_aio_readv
,
634 .bdrv_aio_writev
= blkdebug_aio_writev
,
636 .bdrv_debug_event
= blkdebug_debug_event
,
637 .bdrv_debug_breakpoint
= blkdebug_debug_breakpoint
,
638 .bdrv_debug_resume
= blkdebug_debug_resume
,
639 .bdrv_debug_is_suspended
= blkdebug_debug_is_suspended
,
642 static void bdrv_blkdebug_init(void)
644 bdrv_register(&bdrv_blkdebug
);
647 block_init(bdrv_blkdebug_init
);