2 * Block protocol for I/O error injection
4 * Copyright (C) 2016-2017 Red Hat, Inc.
5 * Copyright (c) 2010 Kevin Wolf <kwolf@redhat.com>
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
28 #include "qemu/cutils.h"
29 #include "qemu/config-file.h"
30 #include "block/block_int.h"
31 #include "qemu/module.h"
32 #include "qapi/qmp/qbool.h"
33 #include "qapi/qmp/qdict.h"
34 #include "qapi/qmp/qstring.h"
35 #include "sysemu/qtest.h"
37 typedef struct BDRVBlkdebugState
{
41 uint64_t max_transfer
;
42 uint64_t opt_write_zero
;
43 uint64_t max_write_zero
;
47 /* For blkdebug_refresh_filename() */
50 QLIST_HEAD(, BlkdebugRule
) rules
[BLKDBG__MAX
];
51 QSIMPLEQ_HEAD(, BlkdebugRule
) active_rules
;
52 QLIST_HEAD(, BlkdebugSuspendedReq
) suspended_reqs
;
55 typedef struct BlkdebugAIOCB
{
60 typedef struct BlkdebugSuspendedReq
{
63 QLIST_ENTRY(BlkdebugSuspendedReq
) next
;
64 } BlkdebugSuspendedReq
;
72 typedef struct BlkdebugRule
{
90 QLIST_ENTRY(BlkdebugRule
) next
;
91 QSIMPLEQ_ENTRY(BlkdebugRule
) active_next
;
94 static QemuOptsList inject_error_opts
= {
95 .name
= "inject-error",
96 .head
= QTAILQ_HEAD_INITIALIZER(inject_error_opts
.head
),
100 .type
= QEMU_OPT_STRING
,
104 .type
= QEMU_OPT_NUMBER
,
108 .type
= QEMU_OPT_NUMBER
,
112 .type
= QEMU_OPT_NUMBER
,
116 .type
= QEMU_OPT_BOOL
,
119 .name
= "immediately",
120 .type
= QEMU_OPT_BOOL
,
122 { /* end of list */ }
126 static QemuOptsList set_state_opts
= {
128 .head
= QTAILQ_HEAD_INITIALIZER(set_state_opts
.head
),
132 .type
= QEMU_OPT_STRING
,
136 .type
= QEMU_OPT_NUMBER
,
140 .type
= QEMU_OPT_NUMBER
,
142 { /* end of list */ }
146 static QemuOptsList
*config_groups
[] = {
152 static int get_event_by_name(const char *name
, BlkdebugEvent
*event
)
156 for (i
= 0; i
< BLKDBG__MAX
; i
++) {
157 if (!strcmp(BlkdebugEvent_lookup
[i
], name
)) {
166 struct add_rule_data
{
167 BDRVBlkdebugState
*s
;
171 static int add_rule(void *opaque
, QemuOpts
*opts
, Error
**errp
)
173 struct add_rule_data
*d
= opaque
;
174 BDRVBlkdebugState
*s
= d
->s
;
175 const char* event_name
;
177 struct BlkdebugRule
*rule
;
180 /* Find the right event for the rule */
181 event_name
= qemu_opt_get(opts
, "event");
183 error_setg(errp
, "Missing event name for rule");
185 } else if (get_event_by_name(event_name
, &event
) < 0) {
186 error_setg(errp
, "Invalid event name \"%s\"", event_name
);
190 /* Set attributes common for all actions */
191 rule
= g_malloc0(sizeof(*rule
));
192 *rule
= (struct BlkdebugRule
) {
195 .state
= qemu_opt_get_number(opts
, "state", 0),
198 /* Parse action-specific options */
200 case ACTION_INJECT_ERROR
:
201 rule
->options
.inject
.error
= qemu_opt_get_number(opts
, "errno", EIO
);
202 rule
->options
.inject
.once
= qemu_opt_get_bool(opts
, "once", 0);
203 rule
->options
.inject
.immediately
=
204 qemu_opt_get_bool(opts
, "immediately", 0);
205 sector
= qemu_opt_get_number(opts
, "sector", -1);
206 rule
->options
.inject
.offset
=
207 sector
== -1 ? -1 : sector
* BDRV_SECTOR_SIZE
;
210 case ACTION_SET_STATE
:
211 rule
->options
.set_state
.new_state
=
212 qemu_opt_get_number(opts
, "new_state", 0);
216 rule
->options
.suspend
.tag
=
217 g_strdup(qemu_opt_get(opts
, "tag"));
222 QLIST_INSERT_HEAD(&s
->rules
[event
], rule
, next
);
227 static void remove_rule(BlkdebugRule
*rule
)
229 switch (rule
->action
) {
230 case ACTION_INJECT_ERROR
:
231 case ACTION_SET_STATE
:
234 g_free(rule
->options
.suspend
.tag
);
238 QLIST_REMOVE(rule
, next
);
242 static int read_config(BDRVBlkdebugState
*s
, const char *filename
,
243 QDict
*options
, Error
**errp
)
247 struct add_rule_data d
;
248 Error
*local_err
= NULL
;
251 f
= fopen(filename
, "r");
253 error_setg_errno(errp
, errno
, "Could not read blkdebug config file");
257 ret
= qemu_config_parse(f
, config_groups
, filename
);
259 error_setg(errp
, "Could not parse blkdebug config file");
265 qemu_config_parse_qdict(options
, config_groups
, &local_err
);
267 error_propagate(errp
, local_err
);
273 d
.action
= ACTION_INJECT_ERROR
;
274 qemu_opts_foreach(&inject_error_opts
, add_rule
, &d
, &local_err
);
276 error_propagate(errp
, local_err
);
281 d
.action
= ACTION_SET_STATE
;
282 qemu_opts_foreach(&set_state_opts
, add_rule
, &d
, &local_err
);
284 error_propagate(errp
, local_err
);
291 qemu_opts_reset(&inject_error_opts
);
292 qemu_opts_reset(&set_state_opts
);
299 /* Valid blkdebug filenames look like blkdebug:path/to/config:path/to/image */
300 static void blkdebug_parse_filename(const char *filename
, QDict
*options
,
305 /* Parse the blkdebug: prefix */
306 if (!strstart(filename
, "blkdebug:", &filename
)) {
307 /* There was no prefix; therefore, all options have to be already
308 present in the QDict (except for the filename) */
309 qdict_put_str(options
, "x-image", filename
);
313 /* Parse config file path */
314 c
= strchr(filename
, ':');
316 error_setg(errp
, "blkdebug requires both config file and image path");
321 QString
*config_path
;
322 config_path
= qstring_from_substr(filename
, 0, c
- filename
- 1);
323 qdict_put(options
, "config", config_path
);
326 /* TODO Allow multi-level nesting and set file.filename here */
328 qdict_put_str(options
, "x-image", filename
);
331 static QemuOptsList runtime_opts
= {
333 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
337 .type
= QEMU_OPT_STRING
,
338 .help
= "Path to the configuration file",
342 .type
= QEMU_OPT_STRING
,
343 .help
= "[internal use only, will be removed]",
347 .type
= QEMU_OPT_SIZE
,
348 .help
= "Required alignment in bytes",
351 .name
= "max-transfer",
352 .type
= QEMU_OPT_SIZE
,
353 .help
= "Maximum transfer size in bytes",
356 .name
= "opt-write-zero",
357 .type
= QEMU_OPT_SIZE
,
358 .help
= "Optimum write zero alignment in bytes",
361 .name
= "max-write-zero",
362 .type
= QEMU_OPT_SIZE
,
363 .help
= "Maximum write zero size in bytes",
366 .name
= "opt-discard",
367 .type
= QEMU_OPT_SIZE
,
368 .help
= "Optimum discard alignment in bytes",
371 .name
= "max-discard",
372 .type
= QEMU_OPT_SIZE
,
373 .help
= "Maximum discard size in bytes",
375 { /* end of list */ }
379 static int blkdebug_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
382 BDRVBlkdebugState
*s
= bs
->opaque
;
384 Error
*local_err
= NULL
;
388 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
389 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
391 error_propagate(errp
, local_err
);
396 /* Read rules from config file or command line options */
397 s
->config_file
= g_strdup(qemu_opt_get(opts
, "config"));
398 ret
= read_config(s
, s
->config_file
, options
, errp
);
403 /* Set initial state */
406 /* Open the image file */
407 bs
->file
= bdrv_open_child(qemu_opt_get(opts
, "x-image"), options
, "image",
408 bs
, &child_file
, false, &local_err
);
411 error_propagate(errp
, local_err
);
415 bs
->supported_write_flags
= BDRV_REQ_FUA
&
416 bs
->file
->bs
->supported_write_flags
;
417 bs
->supported_zero_flags
= (BDRV_REQ_FUA
| BDRV_REQ_MAY_UNMAP
) &
418 bs
->file
->bs
->supported_zero_flags
;
421 /* Set alignment overrides */
422 s
->align
= qemu_opt_get_size(opts
, "align", 0);
423 if (s
->align
&& (s
->align
>= INT_MAX
|| !is_power_of_2(s
->align
))) {
424 error_setg(errp
, "Cannot meet constraints with align %" PRIu64
,
428 align
= MAX(s
->align
, bs
->file
->bs
->bl
.request_alignment
);
430 s
->max_transfer
= qemu_opt_get_size(opts
, "max-transfer", 0);
431 if (s
->max_transfer
&&
432 (s
->max_transfer
>= INT_MAX
||
433 !QEMU_IS_ALIGNED(s
->max_transfer
, align
))) {
434 error_setg(errp
, "Cannot meet constraints with max-transfer %" PRIu64
,
439 s
->opt_write_zero
= qemu_opt_get_size(opts
, "opt-write-zero", 0);
440 if (s
->opt_write_zero
&&
441 (s
->opt_write_zero
>= INT_MAX
||
442 !QEMU_IS_ALIGNED(s
->opt_write_zero
, align
))) {
443 error_setg(errp
, "Cannot meet constraints with opt-write-zero %" PRIu64
,
448 s
->max_write_zero
= qemu_opt_get_size(opts
, "max-write-zero", 0);
449 if (s
->max_write_zero
&&
450 (s
->max_write_zero
>= INT_MAX
||
451 !QEMU_IS_ALIGNED(s
->max_write_zero
,
452 MAX(s
->opt_write_zero
, align
)))) {
453 error_setg(errp
, "Cannot meet constraints with max-write-zero %" PRIu64
,
458 s
->opt_discard
= qemu_opt_get_size(opts
, "opt-discard", 0);
459 if (s
->opt_discard
&&
460 (s
->opt_discard
>= INT_MAX
||
461 !QEMU_IS_ALIGNED(s
->opt_discard
, align
))) {
462 error_setg(errp
, "Cannot meet constraints with opt-discard %" PRIu64
,
467 s
->max_discard
= qemu_opt_get_size(opts
, "max-discard", 0);
468 if (s
->max_discard
&&
469 (s
->max_discard
>= INT_MAX
||
470 !QEMU_IS_ALIGNED(s
->max_discard
,
471 MAX(s
->opt_discard
, align
)))) {
472 error_setg(errp
, "Cannot meet constraints with max-discard %" PRIu64
,
480 g_free(s
->config_file
);
486 static int rule_check(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
)
488 BDRVBlkdebugState
*s
= bs
->opaque
;
489 BlkdebugRule
*rule
= NULL
;
493 QSIMPLEQ_FOREACH(rule
, &s
->active_rules
, active_next
) {
494 uint64_t inject_offset
= rule
->options
.inject
.offset
;
496 if (inject_offset
== -1 ||
497 (bytes
&& inject_offset
>= offset
&&
498 inject_offset
< offset
+ bytes
))
504 if (!rule
|| !rule
->options
.inject
.error
) {
508 immediately
= rule
->options
.inject
.immediately
;
509 error
= rule
->options
.inject
.error
;
511 if (rule
->options
.inject
.once
) {
512 QSIMPLEQ_REMOVE(&s
->active_rules
, rule
, BlkdebugRule
, active_next
);
517 aio_co_schedule(qemu_get_current_aio_context(), qemu_coroutine_self());
518 qemu_coroutine_yield();
524 static int coroutine_fn
525 blkdebug_co_preadv(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
526 QEMUIOVector
*qiov
, int flags
)
530 /* Sanity check block layer guarantees */
531 assert(QEMU_IS_ALIGNED(offset
, bs
->bl
.request_alignment
));
532 assert(QEMU_IS_ALIGNED(bytes
, bs
->bl
.request_alignment
));
533 if (bs
->bl
.max_transfer
) {
534 assert(bytes
<= bs
->bl
.max_transfer
);
537 err
= rule_check(bs
, offset
, bytes
);
542 return bdrv_co_preadv(bs
->file
, offset
, bytes
, qiov
, flags
);
545 static int coroutine_fn
546 blkdebug_co_pwritev(BlockDriverState
*bs
, uint64_t offset
, uint64_t bytes
,
547 QEMUIOVector
*qiov
, int flags
)
551 /* Sanity check block layer guarantees */
552 assert(QEMU_IS_ALIGNED(offset
, bs
->bl
.request_alignment
));
553 assert(QEMU_IS_ALIGNED(bytes
, bs
->bl
.request_alignment
));
554 if (bs
->bl
.max_transfer
) {
555 assert(bytes
<= bs
->bl
.max_transfer
);
558 err
= rule_check(bs
, offset
, bytes
);
563 return bdrv_co_pwritev(bs
->file
, offset
, bytes
, qiov
, flags
);
566 static int blkdebug_co_flush(BlockDriverState
*bs
)
568 int err
= rule_check(bs
, 0, 0);
574 return bdrv_co_flush(bs
->file
->bs
);
577 static int coroutine_fn
blkdebug_co_pwrite_zeroes(BlockDriverState
*bs
,
578 int64_t offset
, int count
,
579 BdrvRequestFlags flags
)
581 uint32_t align
= MAX(bs
->bl
.request_alignment
,
582 bs
->bl
.pwrite_zeroes_alignment
);
585 /* Only pass through requests that are larger than requested
586 * preferred alignment (so that we test the fallback to writes on
587 * unaligned portions), and check that the block layer never hands
588 * us anything unaligned that crosses an alignment boundary. */
590 assert(QEMU_IS_ALIGNED(offset
, align
) ||
591 QEMU_IS_ALIGNED(offset
+ count
, align
) ||
592 DIV_ROUND_UP(offset
, align
) ==
593 DIV_ROUND_UP(offset
+ count
, align
));
596 assert(QEMU_IS_ALIGNED(offset
, align
));
597 assert(QEMU_IS_ALIGNED(count
, align
));
598 if (bs
->bl
.max_pwrite_zeroes
) {
599 assert(count
<= bs
->bl
.max_pwrite_zeroes
);
602 err
= rule_check(bs
, offset
, count
);
607 return bdrv_co_pwrite_zeroes(bs
->file
, offset
, count
, flags
);
610 static int coroutine_fn
blkdebug_co_pdiscard(BlockDriverState
*bs
,
611 int64_t offset
, int count
)
613 uint32_t align
= bs
->bl
.pdiscard_alignment
;
616 /* Only pass through requests that are larger than requested
617 * minimum alignment, and ensure that unaligned requests do not
618 * cross optimum discard boundaries. */
619 if (count
< bs
->bl
.request_alignment
) {
620 assert(QEMU_IS_ALIGNED(offset
, align
) ||
621 QEMU_IS_ALIGNED(offset
+ count
, align
) ||
622 DIV_ROUND_UP(offset
, align
) ==
623 DIV_ROUND_UP(offset
+ count
, align
));
626 assert(QEMU_IS_ALIGNED(offset
, bs
->bl
.request_alignment
));
627 assert(QEMU_IS_ALIGNED(count
, bs
->bl
.request_alignment
));
628 if (align
&& count
>= align
) {
629 assert(QEMU_IS_ALIGNED(offset
, align
));
630 assert(QEMU_IS_ALIGNED(count
, align
));
632 if (bs
->bl
.max_pdiscard
) {
633 assert(count
<= bs
->bl
.max_pdiscard
);
636 err
= rule_check(bs
, offset
, count
);
641 return bdrv_co_pdiscard(bs
->file
->bs
, offset
, count
);
644 static void blkdebug_close(BlockDriverState
*bs
)
646 BDRVBlkdebugState
*s
= bs
->opaque
;
647 BlkdebugRule
*rule
, *next
;
650 for (i
= 0; i
< BLKDBG__MAX
; i
++) {
651 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
656 g_free(s
->config_file
);
659 static void suspend_request(BlockDriverState
*bs
, BlkdebugRule
*rule
)
661 BDRVBlkdebugState
*s
= bs
->opaque
;
662 BlkdebugSuspendedReq r
;
664 r
= (BlkdebugSuspendedReq
) {
665 .co
= qemu_coroutine_self(),
666 .tag
= g_strdup(rule
->options
.suspend
.tag
),
670 QLIST_INSERT_HEAD(&s
->suspended_reqs
, &r
, next
);
672 if (!qtest_enabled()) {
673 printf("blkdebug: Suspended request '%s'\n", r
.tag
);
675 qemu_coroutine_yield();
676 if (!qtest_enabled()) {
677 printf("blkdebug: Resuming request '%s'\n", r
.tag
);
680 QLIST_REMOVE(&r
, next
);
684 static bool process_rule(BlockDriverState
*bs
, struct BlkdebugRule
*rule
,
687 BDRVBlkdebugState
*s
= bs
->opaque
;
689 /* Only process rules for the current state */
690 if (rule
->state
&& rule
->state
!= s
->state
) {
694 /* Take the action */
695 switch (rule
->action
) {
696 case ACTION_INJECT_ERROR
:
698 QSIMPLEQ_INIT(&s
->active_rules
);
701 QSIMPLEQ_INSERT_HEAD(&s
->active_rules
, rule
, active_next
);
704 case ACTION_SET_STATE
:
705 s
->new_state
= rule
->options
.set_state
.new_state
;
709 suspend_request(bs
, rule
);
715 static void blkdebug_debug_event(BlockDriverState
*bs
, BlkdebugEvent event
)
717 BDRVBlkdebugState
*s
= bs
->opaque
;
718 struct BlkdebugRule
*rule
, *next
;
721 assert((int)event
>= 0 && event
< BLKDBG__MAX
);
724 s
->new_state
= s
->state
;
725 QLIST_FOREACH_SAFE(rule
, &s
->rules
[event
], next
, next
) {
726 injected
= process_rule(bs
, rule
, injected
);
728 s
->state
= s
->new_state
;
731 static int blkdebug_debug_breakpoint(BlockDriverState
*bs
, const char *event
,
734 BDRVBlkdebugState
*s
= bs
->opaque
;
735 struct BlkdebugRule
*rule
;
736 BlkdebugEvent blkdebug_event
;
738 if (get_event_by_name(event
, &blkdebug_event
) < 0) {
743 rule
= g_malloc(sizeof(*rule
));
744 *rule
= (struct BlkdebugRule
) {
745 .event
= blkdebug_event
,
746 .action
= ACTION_SUSPEND
,
748 .options
.suspend
.tag
= g_strdup(tag
),
751 QLIST_INSERT_HEAD(&s
->rules
[blkdebug_event
], rule
, next
);
756 static int blkdebug_debug_resume(BlockDriverState
*bs
, const char *tag
)
758 BDRVBlkdebugState
*s
= bs
->opaque
;
759 BlkdebugSuspendedReq
*r
, *next
;
761 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, next
) {
762 if (!strcmp(r
->tag
, tag
)) {
763 qemu_coroutine_enter(r
->co
);
770 static int blkdebug_debug_remove_breakpoint(BlockDriverState
*bs
,
773 BDRVBlkdebugState
*s
= bs
->opaque
;
774 BlkdebugSuspendedReq
*r
, *r_next
;
775 BlkdebugRule
*rule
, *next
;
776 int i
, ret
= -ENOENT
;
778 for (i
= 0; i
< BLKDBG__MAX
; i
++) {
779 QLIST_FOREACH_SAFE(rule
, &s
->rules
[i
], next
, next
) {
780 if (rule
->action
== ACTION_SUSPEND
&&
781 !strcmp(rule
->options
.suspend
.tag
, tag
)) {
787 QLIST_FOREACH_SAFE(r
, &s
->suspended_reqs
, next
, r_next
) {
788 if (!strcmp(r
->tag
, tag
)) {
789 qemu_coroutine_enter(r
->co
);
796 static bool blkdebug_debug_is_suspended(BlockDriverState
*bs
, const char *tag
)
798 BDRVBlkdebugState
*s
= bs
->opaque
;
799 BlkdebugSuspendedReq
*r
;
801 QLIST_FOREACH(r
, &s
->suspended_reqs
, next
) {
802 if (!strcmp(r
->tag
, tag
)) {
809 static int64_t blkdebug_getlength(BlockDriverState
*bs
)
811 return bdrv_getlength(bs
->file
->bs
);
814 static int blkdebug_truncate(BlockDriverState
*bs
, int64_t offset
, Error
**errp
)
816 return bdrv_truncate(bs
->file
, offset
, errp
);
819 static void blkdebug_refresh_filename(BlockDriverState
*bs
, QDict
*options
)
821 BDRVBlkdebugState
*s
= bs
->opaque
;
824 bool force_json
= false;
826 for (e
= qdict_first(options
); e
; e
= qdict_next(options
, e
)) {
827 if (strcmp(qdict_entry_key(e
), "config") &&
828 strcmp(qdict_entry_key(e
), "x-image"))
835 if (force_json
&& !bs
->file
->bs
->full_open_options
) {
836 /* The config file cannot be recreated, so creating a plain filename
841 if (!force_json
&& bs
->file
->bs
->exact_filename
[0]) {
842 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
843 "blkdebug:%s:%s", s
->config_file
?: "",
844 bs
->file
->bs
->exact_filename
);
848 qdict_put_str(opts
, "driver", "blkdebug");
850 QINCREF(bs
->file
->bs
->full_open_options
);
851 qdict_put(opts
, "image", bs
->file
->bs
->full_open_options
);
853 for (e
= qdict_first(options
); e
; e
= qdict_next(options
, e
)) {
854 if (strcmp(qdict_entry_key(e
), "x-image")) {
855 qobject_incref(qdict_entry_value(e
));
856 qdict_put_obj(opts
, qdict_entry_key(e
), qdict_entry_value(e
));
860 bs
->full_open_options
= opts
;
863 static void blkdebug_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
865 BDRVBlkdebugState
*s
= bs
->opaque
;
868 bs
->bl
.request_alignment
= s
->align
;
870 if (s
->max_transfer
) {
871 bs
->bl
.max_transfer
= s
->max_transfer
;
873 if (s
->opt_write_zero
) {
874 bs
->bl
.pwrite_zeroes_alignment
= s
->opt_write_zero
;
876 if (s
->max_write_zero
) {
877 bs
->bl
.max_pwrite_zeroes
= s
->max_write_zero
;
879 if (s
->opt_discard
) {
880 bs
->bl
.pdiscard_alignment
= s
->opt_discard
;
882 if (s
->max_discard
) {
883 bs
->bl
.max_pdiscard
= s
->max_discard
;
887 static int blkdebug_reopen_prepare(BDRVReopenState
*reopen_state
,
888 BlockReopenQueue
*queue
, Error
**errp
)
893 static BlockDriver bdrv_blkdebug
= {
894 .format_name
= "blkdebug",
895 .protocol_name
= "blkdebug",
896 .instance_size
= sizeof(BDRVBlkdebugState
),
898 .bdrv_parse_filename
= blkdebug_parse_filename
,
899 .bdrv_file_open
= blkdebug_open
,
900 .bdrv_close
= blkdebug_close
,
901 .bdrv_reopen_prepare
= blkdebug_reopen_prepare
,
902 .bdrv_child_perm
= bdrv_filter_default_perms
,
904 .bdrv_getlength
= blkdebug_getlength
,
905 .bdrv_truncate
= blkdebug_truncate
,
906 .bdrv_refresh_filename
= blkdebug_refresh_filename
,
907 .bdrv_refresh_limits
= blkdebug_refresh_limits
,
909 .bdrv_co_preadv
= blkdebug_co_preadv
,
910 .bdrv_co_pwritev
= blkdebug_co_pwritev
,
911 .bdrv_co_flush_to_disk
= blkdebug_co_flush
,
912 .bdrv_co_pwrite_zeroes
= blkdebug_co_pwrite_zeroes
,
913 .bdrv_co_pdiscard
= blkdebug_co_pdiscard
,
915 .bdrv_debug_event
= blkdebug_debug_event
,
916 .bdrv_debug_breakpoint
= blkdebug_debug_breakpoint
,
917 .bdrv_debug_remove_breakpoint
918 = blkdebug_debug_remove_breakpoint
,
919 .bdrv_debug_resume
= blkdebug_debug_resume
,
920 .bdrv_debug_is_suspended
= blkdebug_debug_is_suspended
,
923 static void bdrv_blkdebug_init(void)
925 bdrv_register(&bdrv_blkdebug
);
928 block_init(bdrv_blkdebug_init
);