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"
29 #include "qapi/qmp/qbool.h"
30 #include "qapi/qmp/qdict.h"
31 #include "qapi/qmp/qint.h"
32 #include "qapi/qmp/qstring.h"
34 typedef struct BDRVBlkdebugState
{
38 QLIST_HEAD(, BlkdebugRule
) rules
[BLKDBG_EVENT_MAX
];
39 QSIMPLEQ_HEAD(, BlkdebugRule
) active_rules
;
40 QLIST_HEAD(, BlkdebugSuspendedReq
) suspended_reqs
;
43 typedef struct BlkdebugAIOCB
{
49 typedef struct BlkdebugSuspendedReq
{
52 QLIST_ENTRY(BlkdebugSuspendedReq
) next
;
53 } BlkdebugSuspendedReq
;
55 static const AIOCBInfo blkdebug_aiocb_info
= {
56 .aiocb_size
= sizeof(BlkdebugAIOCB
),
65 typedef struct BlkdebugRule
{
83 QLIST_ENTRY(BlkdebugRule
) next
;
84 QSIMPLEQ_ENTRY(BlkdebugRule
) active_next
;
87 static QemuOptsList inject_error_opts
= {
88 .name
= "inject-error",
89 .head
= QTAILQ_HEAD_INITIALIZER(inject_error_opts
.head
),
93 .type
= QEMU_OPT_STRING
,
97 .type
= QEMU_OPT_NUMBER
,
101 .type
= QEMU_OPT_NUMBER
,
105 .type
= QEMU_OPT_NUMBER
,
109 .type
= QEMU_OPT_BOOL
,
112 .name
= "immediately",
113 .type
= QEMU_OPT_BOOL
,
115 { /* end of list */ }
119 static QemuOptsList set_state_opts
= {
121 .head
= QTAILQ_HEAD_INITIALIZER(set_state_opts
.head
),
125 .type
= QEMU_OPT_STRING
,
129 .type
= QEMU_OPT_NUMBER
,
133 .type
= QEMU_OPT_NUMBER
,
135 { /* end of list */ }
139 static QemuOptsList
*config_groups
[] = {
145 static const char *event_names
[BLKDBG_EVENT_MAX
] = {
146 [BLKDBG_L1_UPDATE
] = "l1_update",
147 [BLKDBG_L1_GROW_ALLOC_TABLE
] = "l1_grow.alloc_table",
148 [BLKDBG_L1_GROW_WRITE_TABLE
] = "l1_grow.write_table",
149 [BLKDBG_L1_GROW_ACTIVATE_TABLE
] = "l1_grow.activate_table",
151 [BLKDBG_L2_LOAD
] = "l2_load",
152 [BLKDBG_L2_UPDATE
] = "l2_update",
153 [BLKDBG_L2_UPDATE_COMPRESSED
] = "l2_update_compressed",
154 [BLKDBG_L2_ALLOC_COW_READ
] = "l2_alloc.cow_read",
155 [BLKDBG_L2_ALLOC_WRITE
] = "l2_alloc.write",
157 [BLKDBG_READ_AIO
] = "read_aio",
158 [BLKDBG_READ_BACKING_AIO
] = "read_backing_aio",
159 [BLKDBG_READ_COMPRESSED
] = "read_compressed",
161 [BLKDBG_WRITE_AIO
] = "write_aio",
162 [BLKDBG_WRITE_COMPRESSED
] = "write_compressed",
164 [BLKDBG_VMSTATE_LOAD
] = "vmstate_load",
165 [BLKDBG_VMSTATE_SAVE
] = "vmstate_save",
167 [BLKDBG_COW_READ
] = "cow_read",
168 [BLKDBG_COW_WRITE
] = "cow_write",
170 [BLKDBG_REFTABLE_LOAD
] = "reftable_load",
171 [BLKDBG_REFTABLE_GROW
] = "reftable_grow",
172 [BLKDBG_REFTABLE_UPDATE
] = "reftable_update",
174 [BLKDBG_REFBLOCK_LOAD
] = "refblock_load",
175 [BLKDBG_REFBLOCK_UPDATE
] = "refblock_update",
176 [BLKDBG_REFBLOCK_UPDATE_PART
] = "refblock_update_part",
177 [BLKDBG_REFBLOCK_ALLOC
] = "refblock_alloc",
178 [BLKDBG_REFBLOCK_ALLOC_HOOKUP
] = "refblock_alloc.hookup",
179 [BLKDBG_REFBLOCK_ALLOC_WRITE
] = "refblock_alloc.write",
180 [BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS
] = "refblock_alloc.write_blocks",
181 [BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE
] = "refblock_alloc.write_table",
182 [BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE
] = "refblock_alloc.switch_table",
184 [BLKDBG_CLUSTER_ALLOC
] = "cluster_alloc",
185 [BLKDBG_CLUSTER_ALLOC_BYTES
] = "cluster_alloc_bytes",
186 [BLKDBG_CLUSTER_FREE
] = "cluster_free",
188 [BLKDBG_FLUSH_TO_OS
] = "flush_to_os",
189 [BLKDBG_FLUSH_TO_DISK
] = "flush_to_disk",
191 [BLKDBG_PWRITEV_RMW_HEAD
] = "pwritev_rmw.head",
192 [BLKDBG_PWRITEV_RMW_AFTER_HEAD
] = "pwritev_rmw.after_head",
193 [BLKDBG_PWRITEV_RMW_TAIL
] = "pwritev_rmw.tail",
194 [BLKDBG_PWRITEV_RMW_AFTER_TAIL
] = "pwritev_rmw.after_tail",
195 [BLKDBG_PWRITEV
] = "pwritev",
196 [BLKDBG_PWRITEV_ZERO
] = "pwritev_zero",
197 [BLKDBG_PWRITEV_DONE
] = "pwritev_done",
199 [BLKDBG_EMPTY_IMAGE_PREPARE
] = "empty_image_prepare",
202 static int get_event_by_name(const char *name
, BlkDebugEvent
*event
)
206 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
207 if (!strcmp(event_names
[i
], name
)) {
216 struct add_rule_data
{
217 BDRVBlkdebugState
*s
;
222 static int add_rule(QemuOpts
*opts
, void *opaque
)
224 struct add_rule_data
*d
= opaque
;
225 BDRVBlkdebugState
*s
= d
->s
;
226 const char* event_name
;
228 struct BlkdebugRule
*rule
;
230 /* Find the right event for the rule */
231 event_name
= qemu_opt_get(opts
, "event");
233 error_setg(d
->errp
, "Missing event name for rule");
235 } else if (get_event_by_name(event_name
, &event
) < 0) {
236 error_setg(d
->errp
, "Invalid event name \"%s\"", event_name
);
240 /* Set attributes common for all actions */
241 rule
= g_malloc0(sizeof(*rule
));
242 *rule
= (struct BlkdebugRule
) {
245 .state
= qemu_opt_get_number(opts
, "state", 0),
248 /* Parse action-specific options */
250 case ACTION_INJECT_ERROR
:
251 rule
->options
.inject
.error
= qemu_opt_get_number(opts
, "errno", EIO
);
252 rule
->options
.inject
.once
= qemu_opt_get_bool(opts
, "once", 0);
253 rule
->options
.inject
.immediately
=
254 qemu_opt_get_bool(opts
, "immediately", 0);
255 rule
->options
.inject
.sector
= qemu_opt_get_number(opts
, "sector", -1);
258 case ACTION_SET_STATE
:
259 rule
->options
.set_state
.new_state
=
260 qemu_opt_get_number(opts
, "new_state", 0);
264 rule
->options
.suspend
.tag
=
265 g_strdup(qemu_opt_get(opts
, "tag"));
270 QLIST_INSERT_HEAD(&s
->rules
[event
], rule
, next
);
275 static void remove_rule(BlkdebugRule
*rule
)
277 switch (rule
->action
) {
278 case ACTION_INJECT_ERROR
:
279 case ACTION_SET_STATE
:
282 g_free(rule
->options
.suspend
.tag
);
286 QLIST_REMOVE(rule
, next
);
290 static int read_config(BDRVBlkdebugState
*s
, const char *filename
,
291 QDict
*options
, Error
**errp
)
295 struct add_rule_data d
;
296 Error
*local_err
= NULL
;
299 f
= fopen(filename
, "r");
301 error_setg_errno(errp
, errno
, "Could not read blkdebug config file");
305 ret
= qemu_config_parse(f
, config_groups
, filename
);
307 error_setg(errp
, "Could not parse blkdebug config file");
313 qemu_config_parse_qdict(options
, config_groups
, &local_err
);
315 error_propagate(errp
, local_err
);
321 d
.action
= ACTION_INJECT_ERROR
;
323 qemu_opts_foreach(&inject_error_opts
, add_rule
, &d
, 1);
325 error_propagate(errp
, local_err
);
330 d
.action
= ACTION_SET_STATE
;
331 qemu_opts_foreach(&set_state_opts
, add_rule
, &d
, 1);
333 error_propagate(errp
, local_err
);
340 qemu_opts_reset(&inject_error_opts
);
341 qemu_opts_reset(&set_state_opts
);
348 /* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
349 static void blkdebug_parse_filename(const char *filename
, QDict
*options
,
354 /* Parse the blkdebug: prefix */
355 if (!strstart(filename
, "blkdebug:", &filename
)) {
356 /* There was no prefix; therefore, all options have to be already
357 present in the QDict (except for the filename) */
358 qdict_put(options
, "x-image", qstring_from_str(filename
));
362 /* Parse config file path */
363 c
= strchr(filename
, ':');
365 error_setg(errp
, "blkdebug requires both config file and image path");
370 QString
*config_path
;
371 config_path
= qstring_from_substr(filename
, 0, c
- filename
- 1);
372 qdict_put(options
, "config", config_path
);
375 /* TODO Allow multi-level nesting and set file.filename here */
377 qdict_put(options
, "x-image", qstring_from_str(filename
));
380 static QemuOptsList runtime_opts
= {
382 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
386 .type
= QEMU_OPT_STRING
,
387 .help
= "Path to the configuration file",
391 .type
= QEMU_OPT_STRING
,
392 .help
= "[internal use only, will be removed]",
396 .type
= QEMU_OPT_SIZE
,
397 .help
= "Required alignment in bytes",
399 { /* end of list */ }
403 static int blkdebug_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
406 BDRVBlkdebugState
*s
= bs
->opaque
;
408 Error
*local_err
= NULL
;
413 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
414 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
416 error_propagate(errp
, local_err
);
421 /* Read rules from config file or command line options */
422 config
= qemu_opt_get(opts
, "config");
423 ret
= read_config(s
, config
, options
, errp
);
428 /* Set initial state */
431 /* Open the backing file */
432 assert(bs
->file
== NULL
);
433 ret
= bdrv_open_image(&bs
->file
, qemu_opt_get(opts
, "x-image"), options
, "image",
434 flags
| BDRV_O_PROTOCOL
, false, &local_err
);
436 error_propagate(errp
, local_err
);
440 /* Set request alignment */
441 align
= qemu_opt_get_size(opts
, "align", bs
->request_alignment
);
442 if (align
> 0 && align
< INT_MAX
&& !(align
& (align
- 1))) {
443 bs
->request_alignment
= align
;
445 error_setg(errp
, "Invalid alignment");
454 bdrv_unref(bs
->file
);
460 static void error_callback_bh(void *opaque
)
462 struct BlkdebugAIOCB
*acb
= opaque
;
463 qemu_bh_delete(acb
->bh
);
464 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
468 static BlockAIOCB
*inject_error(BlockDriverState
*bs
,
469 BlockCompletionFunc
*cb
, void *opaque
, BlkdebugRule
*rule
)
471 BDRVBlkdebugState
*s
= bs
->opaque
;
472 int error
= rule
->options
.inject
.error
;
473 struct BlkdebugAIOCB
*acb
;
475 bool immediately
= rule
->options
.inject
.immediately
;
477 if (rule
->options
.inject
.once
) {
478 QSIMPLEQ_REMOVE(&s
->active_rules
, rule
, BlkdebugRule
, active_next
);
486 acb
= qemu_aio_get(&blkdebug_aiocb_info
, bs
, cb
, opaque
);
489 bh
= aio_bh_new(bdrv_get_aio_context(bs
), error_callback_bh
, acb
);
491 qemu_bh_schedule(bh
);
496 static BlockAIOCB
*blkdebug_aio_readv(BlockDriverState
*bs
,
497 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
498 BlockCompletionFunc
*cb
, void *opaque
)
500 BDRVBlkdebugState
*s
= bs
->opaque
;
501 BlkdebugRule
*rule
= NULL
;
503 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
504 if (rule
->options
.inject
.sector
== -1 ||
505 (rule
->options
.inject
.sector
>= sector_num
&&
506 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
511 if (rule
&& rule
->options
.inject
.error
) {
512 return inject_error(bs
, cb
, opaque
, rule
);
515 return bdrv_aio_readv(bs
->file
, sector_num
, qiov
, nb_sectors
, cb
, opaque
);
518 static BlockAIOCB
*blkdebug_aio_writev(BlockDriverState
*bs
,
519 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
520 BlockCompletionFunc
*cb
, void *opaque
)
522 BDRVBlkdebugState
*s
= bs
->opaque
;
523 BlkdebugRule
*rule
= NULL
;
525 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
526 if (rule
->options
.inject
.sector
== -1 ||
527 (rule
->options
.inject
.sector
>= sector_num
&&
528 rule
->options
.inject
.sector
< sector_num
+ nb_sectors
)) {
533 if (rule
&& rule
->options
.inject
.error
) {
534 return inject_error(bs
, cb
, opaque
, rule
);
537 return bdrv_aio_writev(bs
->file
, sector_num
, qiov
, nb_sectors
, cb
, opaque
);
540 static BlockAIOCB
*blkdebug_aio_flush(BlockDriverState
*bs
,
541 BlockCompletionFunc
*cb
, void *opaque
)
543 BDRVBlkdebugState
*s
= bs
->opaque
;
544 BlkdebugRule
*rule
= NULL
;
546 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
547 if (rule
->options
.inject
.sector
== -1) {
552 if (rule
&& rule
->options
.inject
.error
) {
553 return inject_error(bs
, cb
, opaque
, rule
);
556 return bdrv_aio_flush(bs
->file
, cb
, opaque
);
560 static void blkdebug_close(BlockDriverState
*bs
)
562 BDRVBlkdebugState
*s
= bs
->opaque
;
563 BlkdebugRule
*rule
, *next
;
566 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
567 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
573 static void suspend_request(BlockDriverState
*bs
, BlkdebugRule
*rule
)
575 BDRVBlkdebugState
*s
= bs
->opaque
;
576 BlkdebugSuspendedReq r
;
578 r
= (BlkdebugSuspendedReq
) {
579 .co
= qemu_coroutine_self(),
580 .tag
= g_strdup(rule
->options
.suspend
.tag
),
584 QLIST_INSERT_HEAD(&s
->suspended_reqs
, &r
, next
);
586 printf("blkdebug: Suspended request '%s'\n", r
.tag
);
587 qemu_coroutine_yield();
588 printf("blkdebug: Resuming request '%s'\n", r
.tag
);
590 QLIST_REMOVE(&r
, next
);
594 static bool process_rule(BlockDriverState
*bs
, struct BlkdebugRule
*rule
,
597 BDRVBlkdebugState
*s
= bs
->opaque
;
599 /* Only process rules for the current state */
600 if (rule
->state
&& rule
->state
!= s
->state
) {
604 /* Take the action */
605 switch (rule
->action
) {
606 case ACTION_INJECT_ERROR
:
608 QSIMPLEQ_INIT(&s
->active_rules
);
611 QSIMPLEQ_INSERT_HEAD(&s
->active_rules
, rule
, active_next
);
614 case ACTION_SET_STATE
:
615 s
->new_state
= rule
->options
.set_state
.new_state
;
619 suspend_request(bs
, rule
);
625 static void blkdebug_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
627 BDRVBlkdebugState
*s
= bs
->opaque
;
628 struct BlkdebugRule
*rule
, *next
;
631 assert((int)event
>= 0 && event
< BLKDBG_EVENT_MAX
);
634 s
->new_state
= s
->state
;
635 QLIST_FOREACH_SAFE(rule
, &s
->rules
[event
], next
, next
) {
636 injected
= process_rule(bs
, rule
, injected
);
638 s
->state
= s
->new_state
;
641 static int blkdebug_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
644 BDRVBlkdebugState
*s
= bs
->opaque
;
645 struct BlkdebugRule
*rule
;
646 BlkDebugEvent blkdebug_event
;
648 if (get_event_by_name(event
, &blkdebug_event
) < 0) {
653 rule
= g_malloc(sizeof(*rule
));
654 *rule
= (struct BlkdebugRule
) {
655 .event
= blkdebug_event
,
656 .action
= ACTION_SUSPEND
,
658 .options
.suspend
.tag
= g_strdup(tag
),
661 QLIST_INSERT_HEAD(&s
->rules
[blkdebug_event
], rule
, next
);
666 static int blkdebug_debug_resume(BlockDriverState
*bs
, const char *tag
)
668 BDRVBlkdebugState
*s
= bs
->opaque
;
669 BlkdebugSuspendedReq
*r
, *next
;
671 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, next
) {
672 if (!strcmp(r
->tag
, tag
)) {
673 qemu_coroutine_enter(r
->co
, NULL
);
680 static int blkdebug_debug_remove_breakpoint(BlockDriverState
*bs
,
683 BDRVBlkdebugState
*s
= bs
->opaque
;
684 BlkdebugSuspendedReq
*r
, *r_next
;
685 BlkdebugRule
*rule
, *next
;
686 int i
, ret
= -ENOENT
;
688 for (i
= 0; i
< BLKDBG_EVENT_MAX
; i
++) {
689 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
690 if (rule
->action
== ACTION_SUSPEND
&&
691 !strcmp(rule
->options
.suspend
.tag
, tag
)) {
697 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, r_next
) {
698 if (!strcmp(r
->tag
, tag
)) {
699 qemu_coroutine_enter(r
->co
, NULL
);
706 static bool blkdebug_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
708 BDRVBlkdebugState
*s
= bs
->opaque
;
709 BlkdebugSuspendedReq
*r
;
711 QLIST_FOREACH(r
, &s
->suspended_reqs
, next
) {
712 if (!strcmp(r
->tag
, tag
)) {
719 static int64_t blkdebug_getlength(BlockDriverState
*bs
)
721 return bdrv_getlength(bs
->file
);
724 static void blkdebug_refresh_filename(BlockDriverState
*bs
)
728 bool force_json
= false;
730 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
731 if (strcmp(qdict_entry_key(e
), "config") &&
732 strcmp(qdict_entry_key(e
), "x-image") &&
733 strcmp(qdict_entry_key(e
), "image") &&
734 strncmp(qdict_entry_key(e
), "image.", strlen("image.")))
741 if (force_json
&& !bs
->file
->full_open_options
) {
742 /* The config file cannot be recreated, so creating a plain filename
747 if (!force_json
&& bs
->file
->exact_filename
[0]) {
748 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
750 qdict_get_try_str(bs
->options
, "config") ?: "",
751 bs
->file
->exact_filename
);
755 qdict_put_obj(opts
, "driver", QOBJECT(qstring_from_str("blkdebug")));
757 QINCREF(bs
->file
->full_open_options
);
758 qdict_put_obj(opts
, "image", QOBJECT(bs
->file
->full_open_options
));
760 for (e
= qdict_first(bs
->options
); e
; e
= qdict_next(bs
->options
, e
)) {
761 if (strcmp(qdict_entry_key(e
), "x-image") &&
762 strcmp(qdict_entry_key(e
), "image") &&
763 strncmp(qdict_entry_key(e
), "image.", strlen("image.")))
765 qobject_incref(qdict_entry_value(e
));
766 qdict_put_obj(opts
, qdict_entry_key(e
), qdict_entry_value(e
));
770 bs
->full_open_options
= opts
;
773 static BlockDriver bdrv_blkdebug
= {
774 .format_name
= "blkdebug",
775 .protocol_name
= "blkdebug",
776 .instance_size
= sizeof(BDRVBlkdebugState
),
778 .bdrv_parse_filename
= blkdebug_parse_filename
,
779 .bdrv_file_open
= blkdebug_open
,
780 .bdrv_close
= blkdebug_close
,
781 .bdrv_getlength
= blkdebug_getlength
,
782 .bdrv_refresh_filename
= blkdebug_refresh_filename
,
784 .bdrv_aio_readv
= blkdebug_aio_readv
,
785 .bdrv_aio_writev
= blkdebug_aio_writev
,
786 .bdrv_aio_flush
= blkdebug_aio_flush
,
788 .bdrv_debug_event
= blkdebug_debug_event
,
789 .bdrv_debug_breakpoint
= blkdebug_debug_breakpoint
,
790 .bdrv_debug_remove_breakpoint
791 = blkdebug_debug_remove_breakpoint
,
792 .bdrv_debug_resume
= blkdebug_debug_resume
,
793 .bdrv_debug_is_suspended
= blkdebug_debug_is_suspended
,
796 static void bdrv_blkdebug_init(void)
798 bdrv_register(&bdrv_blkdebug
);
801 block_init(bdrv_blkdebug_init
);