2 * Copyright (C) 2003 Sistina Software (UK) Limited.
3 * Copyright (C) 2004, 2010-2011 Red Hat, Inc. All rights reserved.
5 * This file is released under the GPL.
8 #include <linux/device-mapper.h>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/blkdev.h>
13 #include <linux/bio.h>
14 #include <linux/slab.h>
16 #define DM_MSG_PREFIX "flakey"
18 #define all_corrupt_bio_flags_match(bio, fc) \
19 (((bio)->bi_opf & (fc)->corrupt_bio_flags) == (fc)->corrupt_bio_flags)
22 * Flakey: Used for testing only, simulates intermittent,
23 * catastrophic device failure.
27 unsigned long start_time;
30 unsigned down_interval;
32 unsigned corrupt_bio_byte;
33 unsigned corrupt_bio_rw;
34 unsigned corrupt_bio_value;
35 unsigned corrupt_bio_flags;
38 enum feature_flag_bits {
46 static int parse_features(struct dm_arg_set *as, struct flakey_c *fc,
53 static struct dm_arg _args[] = {
54 {0, 6, "Invalid number of feature args"},
55 {1, UINT_MAX, "Invalid corrupt bio byte"},
56 {0, 255, "Invalid corrupt value to write into bio byte (0-255)"},
57 {0, UINT_MAX, "Invalid corrupt bio flags mask"},
60 /* No feature arguments supplied. */
64 r = dm_read_arg_group(_args, as, &argc, &ti->error);
69 arg_name = dm_shift_arg(as);
75 if (!strcasecmp(arg_name, "drop_writes")) {
76 if (test_and_set_bit(DROP_WRITES, &fc->flags)) {
77 ti->error = "Feature drop_writes duplicated";
85 * corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>
87 if (!strcasecmp(arg_name, "corrupt_bio_byte")) {
89 ti->error = "Feature corrupt_bio_byte requires parameters";
93 r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error);
101 arg_name = dm_shift_arg(as);
102 if (!strcasecmp(arg_name, "w"))
103 fc->corrupt_bio_rw = WRITE;
104 else if (!strcasecmp(arg_name, "r"))
105 fc->corrupt_bio_rw = READ;
107 ti->error = "Invalid corrupt bio direction (r or w)";
113 * Value of byte (0-255) to write in place of correct one.
115 r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error);
121 * Only corrupt bios with these flags set.
123 r = dm_read_arg(_args + 3, as, &fc->corrupt_bio_flags, &ti->error);
131 ti->error = "Unrecognised flakey feature requested";
135 if (test_bit(DROP_WRITES, &fc->flags) && (fc->corrupt_bio_rw == WRITE)) {
136 ti->error = "drop_writes is incompatible with corrupt_bio_byte with the WRITE flag set";
144 * Construct a flakey mapping:
145 * <dev_path> <offset> <up interval> <down interval> [<#feature args> [<arg>]*]
149 * [corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>]
151 * Nth_byte starts from 1 for the first byte.
152 * Direction is r for READ or w for WRITE.
153 * bio_flags is ignored if 0.
155 static int flakey_ctr(struct dm_target *ti, unsigned int argc, char **argv)
157 static struct dm_arg _args[] = {
158 {0, UINT_MAX, "Invalid up interval"},
159 {0, UINT_MAX, "Invalid down interval"},
164 unsigned long long tmpll;
165 struct dm_arg_set as;
173 ti->error = "Invalid argument count";
177 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
179 ti->error = "Cannot allocate context";
182 fc->start_time = jiffies;
184 devname = dm_shift_arg(&as);
187 if (sscanf(dm_shift_arg(&as), "%llu%c", &tmpll, &dummy) != 1) {
188 ti->error = "Invalid device sector";
193 r = dm_read_arg(_args, &as, &fc->up_interval, &ti->error);
197 r = dm_read_arg(_args, &as, &fc->down_interval, &ti->error);
201 if (!(fc->up_interval + fc->down_interval)) {
202 ti->error = "Total (up + down) interval is zero";
206 if (fc->up_interval + fc->down_interval < fc->up_interval) {
207 ti->error = "Interval overflow";
211 r = parse_features(&as, fc, ti);
215 r = dm_get_device(ti, devname, dm_table_get_mode(ti->table), &fc->dev);
217 ti->error = "Device lookup failed";
221 ti->num_flush_bios = 1;
222 ti->num_discard_bios = 1;
223 ti->per_io_data_size = sizeof(struct per_bio_data);
232 static void flakey_dtr(struct dm_target *ti)
234 struct flakey_c *fc = ti->private;
236 dm_put_device(ti, fc->dev);
240 static sector_t flakey_map_sector(struct dm_target *ti, sector_t bi_sector)
242 struct flakey_c *fc = ti->private;
244 return fc->start + dm_target_offset(ti, bi_sector);
247 static void flakey_map_bio(struct dm_target *ti, struct bio *bio)
249 struct flakey_c *fc = ti->private;
251 bio->bi_bdev = fc->dev->bdev;
252 if (bio_sectors(bio))
253 bio->bi_iter.bi_sector =
254 flakey_map_sector(ti, bio->bi_iter.bi_sector);
257 static void corrupt_bio_data(struct bio *bio, struct flakey_c *fc)
259 unsigned bio_bytes = bio_cur_bytes(bio);
260 char *data = bio_data(bio);
263 * Overwrite the Nth byte of the data returned.
265 if (data && bio_bytes >= fc->corrupt_bio_byte) {
266 data[fc->corrupt_bio_byte - 1] = fc->corrupt_bio_value;
268 DMDEBUG("Corrupting data bio=%p by writing %u to byte %u "
269 "(rw=%c bi_opf=%u bi_sector=%llu cur_bytes=%u)\n",
270 bio, fc->corrupt_bio_value, fc->corrupt_bio_byte,
271 (bio_data_dir(bio) == WRITE) ? 'w' : 'r', bio->bi_opf,
272 (unsigned long long)bio->bi_iter.bi_sector, bio_bytes);
276 static int flakey_map(struct dm_target *ti, struct bio *bio)
278 struct flakey_c *fc = ti->private;
280 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
281 pb->bio_submitted = false;
284 elapsed = (jiffies - fc->start_time) / HZ;
285 if (elapsed % (fc->up_interval + fc->down_interval) >= fc->up_interval) {
287 * Flag this bio as submitted while down.
289 pb->bio_submitted = true;
292 * Map reads as normal only if corrupt_bio_byte set.
294 if (bio_data_dir(bio) == READ) {
295 /* If flags were specified, only corrupt those that match. */
296 if (fc->corrupt_bio_byte && (fc->corrupt_bio_rw == READ) &&
297 all_corrupt_bio_flags_match(bio, fc))
306 if (test_bit(DROP_WRITES, &fc->flags)) {
308 return DM_MAPIO_SUBMITTED;
312 * Corrupt matching writes.
314 if (fc->corrupt_bio_byte && (fc->corrupt_bio_rw == WRITE)) {
315 if (all_corrupt_bio_flags_match(bio, fc))
316 corrupt_bio_data(bio, fc);
321 * By default, error all I/O.
327 flakey_map_bio(ti, bio);
329 return DM_MAPIO_REMAPPED;
332 static int flakey_end_io(struct dm_target *ti, struct bio *bio, int error)
334 struct flakey_c *fc = ti->private;
335 struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
338 * Corrupt successful READs while in down state.
340 if (!error && pb->bio_submitted && (bio_data_dir(bio) == READ)) {
341 if (fc->corrupt_bio_byte)
342 corrupt_bio_data(bio, fc);
350 static void flakey_status(struct dm_target *ti, status_type_t type,
351 unsigned status_flags, char *result, unsigned maxlen)
354 struct flakey_c *fc = ti->private;
355 unsigned drop_writes;
358 case STATUSTYPE_INFO:
362 case STATUSTYPE_TABLE:
363 DMEMIT("%s %llu %u %u ", fc->dev->name,
364 (unsigned long long)fc->start, fc->up_interval,
367 drop_writes = test_bit(DROP_WRITES, &fc->flags);
368 DMEMIT("%u ", drop_writes + (fc->corrupt_bio_byte > 0) * 5);
371 DMEMIT("drop_writes ");
373 if (fc->corrupt_bio_byte)
374 DMEMIT("corrupt_bio_byte %u %c %u %u ",
375 fc->corrupt_bio_byte,
376 (fc->corrupt_bio_rw == WRITE) ? 'w' : 'r',
377 fc->corrupt_bio_value, fc->corrupt_bio_flags);
383 static int flakey_prepare_ioctl(struct dm_target *ti,
384 struct block_device **bdev, fmode_t *mode)
386 struct flakey_c *fc = ti->private;
388 *bdev = fc->dev->bdev;
391 * Only pass ioctls through if the device sizes match exactly.
394 ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
399 static int flakey_iterate_devices(struct dm_target *ti, iterate_devices_callout_fn fn, void *data)
401 struct flakey_c *fc = ti->private;
403 return fn(ti, fc->dev, fc->start, ti->len, data);
406 static struct target_type flakey_target = {
408 .version = {1, 3, 1},
409 .module = THIS_MODULE,
413 .end_io = flakey_end_io,
414 .status = flakey_status,
415 .prepare_ioctl = flakey_prepare_ioctl,
416 .iterate_devices = flakey_iterate_devices,
419 static int __init dm_flakey_init(void)
421 int r = dm_register_target(&flakey_target);
424 DMERR("register failed %d", r);
429 static void __exit dm_flakey_exit(void)
431 dm_unregister_target(&flakey_target);
435 module_init(dm_flakey_init);
436 module_exit(dm_flakey_exit);
438 MODULE_DESCRIPTION(DM_NAME " flakey target");
439 MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
440 MODULE_LICENSE("GPL");