Skip to content

Commit

Permalink
block: Add should_fail_bio() for bpf error injection
Browse files Browse the repository at this point in the history
The classic error injection mechanism, should_fail_request() does not
support use cases where more information is required (from the entire
struct bio, for example).

To that end, this patch introduces should_fail_bio(), which calls
should_fail_request() under the hood but provides a convenient
place for kprobes to hook into if they require the entire struct bio.
This patch also replaces some existing calls to should_fail_request()
with should_fail_bio() with no degradation in performance.

Signed-off-by: Howard McLauchlan <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Howard McLauchlan authored and axboe committed Feb 6, 2018
1 parent 5235553 commit 30abb3a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion block/blk-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <linux/pm_runtime.h>
#include <linux/blk-cgroup.h>
#include <linux/debugfs.h>
#include <linux/bpf.h>

#define CREATE_TRACE_POINTS
#include <trace/events/block.h>
Expand Down Expand Up @@ -2083,6 +2084,14 @@ static inline bool bio_check_ro(struct bio *bio, struct hd_struct *part)
return false;
}

static noinline int should_fail_bio(struct bio *bio)
{
if (should_fail_request(&bio->bi_disk->part0, bio->bi_iter.bi_size))
return -EIO;
return 0;
}
ALLOW_ERROR_INJECTION(should_fail_bio, ERRNO);

/*
* Remap block n of partition p to block n+start(p) of the disk.
*/
Expand Down Expand Up @@ -2174,7 +2183,7 @@ generic_make_request_checks(struct bio *bio)
if ((bio->bi_opf & REQ_NOWAIT) && !queue_is_rq_based(q))
goto not_supported;

if (should_fail_request(&bio->bi_disk->part0, bio->bi_iter.bi_size))
if (should_fail_bio(bio))
goto end_io;

if (!bio->bi_partno) {
Expand Down

0 comments on commit 30abb3a

Please sign in to comment.