blob: 89f73ca22cfa112e7c215f9ab5c846de80dd5da4 [file] [log] [blame]
Josef Bacik3407ef52011-03-24 13:54:24 +00001/*
2 * Copyright (C) 2003 Sistina Software (UK) Limited.
Mike Snitzera3998792011-08-02 12:32:06 +01003 * Copyright (C) 2004, 2010-2011 Red Hat, Inc. All rights reserved.
Josef Bacik3407ef52011-03-24 13:54:24 +00004 *
5 * This file is released under the GPL.
6 */
7
8#include <linux/device-mapper.h>
9
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>
15
16#define DM_MSG_PREFIX "flakey"
17
Mike Snitzera3998792011-08-02 12:32:06 +010018#define all_corrupt_bio_flags_match(bio, fc) \
19 (((bio)->bi_rw & (fc)->corrupt_bio_flags) == (fc)->corrupt_bio_flags)
20
Josef Bacik3407ef52011-03-24 13:54:24 +000021/*
22 * Flakey: Used for testing only, simulates intermittent,
23 * catastrophic device failure.
24 */
25struct flakey_c {
26 struct dm_dev *dev;
27 unsigned long start_time;
28 sector_t start;
29 unsigned up_interval;
30 unsigned down_interval;
Mike Snitzerb26f5e32011-08-02 12:32:05 +010031 unsigned long flags;
Mike Snitzera3998792011-08-02 12:32:06 +010032 unsigned corrupt_bio_byte;
33 unsigned corrupt_bio_rw;
34 unsigned corrupt_bio_value;
35 unsigned corrupt_bio_flags;
Josef Bacik3407ef52011-03-24 13:54:24 +000036};
37
Mike Snitzerb26f5e32011-08-02 12:32:05 +010038enum feature_flag_bits {
39 DROP_WRITES
40};
41
42static int parse_features(struct dm_arg_set *as, struct flakey_c *fc,
43 struct dm_target *ti)
Mike Snitzerdfd068b2011-08-02 12:32:05 +010044{
45 int r;
46 unsigned argc;
47 const char *arg_name;
48
49 static struct dm_arg _args[] = {
Mike Snitzera3998792011-08-02 12:32:06 +010050 {0, 6, "Invalid number of feature args"},
51 {1, UINT_MAX, "Invalid corrupt bio byte"},
52 {0, 255, "Invalid corrupt value to write into bio byte (0-255)"},
53 {0, UINT_MAX, "Invalid corrupt bio flags mask"},
Mike Snitzerdfd068b2011-08-02 12:32:05 +010054 };
55
56 /* No feature arguments supplied. */
57 if (!as->argc)
58 return 0;
59
60 r = dm_read_arg_group(_args, as, &argc, &ti->error);
61 if (r)
Mike Snitzera3998792011-08-02 12:32:06 +010062 return r;
Mike Snitzerdfd068b2011-08-02 12:32:05 +010063
Mike Snitzera3998792011-08-02 12:32:06 +010064 while (argc) {
Mike Snitzerdfd068b2011-08-02 12:32:05 +010065 arg_name = dm_shift_arg(as);
66 argc--;
67
Mike Snitzerb26f5e32011-08-02 12:32:05 +010068 /*
69 * drop_writes
70 */
71 if (!strcasecmp(arg_name, "drop_writes")) {
72 if (test_and_set_bit(DROP_WRITES, &fc->flags)) {
73 ti->error = "Feature drop_writes duplicated";
74 return -EINVAL;
75 }
76
77 continue;
78 }
79
Mike Snitzera3998792011-08-02 12:32:06 +010080 /*
81 * corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>
82 */
83 if (!strcasecmp(arg_name, "corrupt_bio_byte")) {
84 if (!argc)
85 ti->error = "Feature corrupt_bio_byte requires parameters";
86
87 r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error);
88 if (r)
89 return r;
90 argc--;
91
92 /*
93 * Direction r or w?
94 */
95 arg_name = dm_shift_arg(as);
96 if (!strcasecmp(arg_name, "w"))
97 fc->corrupt_bio_rw = WRITE;
98 else if (!strcasecmp(arg_name, "r"))
99 fc->corrupt_bio_rw = READ;
100 else {
101 ti->error = "Invalid corrupt bio direction (r or w)";
102 return -EINVAL;
103 }
104 argc--;
105
106 /*
107 * Value of byte (0-255) to write in place of correct one.
108 */
109 r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error);
110 if (r)
111 return r;
112 argc--;
113
114 /*
115 * Only corrupt bios with these flags set.
116 */
117 r = dm_read_arg(_args + 3, as, &fc->corrupt_bio_flags, &ti->error);
118 if (r)
119 return r;
120 argc--;
121
122 continue;
123 }
124
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100125 ti->error = "Unrecognised flakey feature requested";
Mike Snitzera3998792011-08-02 12:32:06 +0100126 return -EINVAL;
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100127 }
128
Mike Snitzera3998792011-08-02 12:32:06 +0100129 if (test_bit(DROP_WRITES, &fc->flags) && (fc->corrupt_bio_rw == WRITE)) {
130 ti->error = "drop_writes is incompatible with corrupt_bio_byte with the WRITE flag set";
131 return -EINVAL;
132 }
133
134 return 0;
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100135}
136
Josef Bacik3407ef52011-03-24 13:54:24 +0000137/*
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100138 * Construct a flakey mapping:
139 * <dev_path> <offset> <up interval> <down interval> [<#feature args> [<arg>]*]
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100140 *
141 * Feature args:
142 * [drop_writes]
Mike Snitzera3998792011-08-02 12:32:06 +0100143 * [corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>]
144 *
145 * Nth_byte starts from 1 for the first byte.
146 * Direction is r for READ or w for WRITE.
147 * bio_flags is ignored if 0.
Josef Bacik3407ef52011-03-24 13:54:24 +0000148 */
149static int flakey_ctr(struct dm_target *ti, unsigned int argc, char **argv)
150{
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100151 static struct dm_arg _args[] = {
152 {0, UINT_MAX, "Invalid up interval"},
153 {0, UINT_MAX, "Invalid down interval"},
154 };
Josef Bacik3407ef52011-03-24 13:54:24 +0000155
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100156 int r;
157 struct flakey_c *fc;
158 unsigned long long tmpll;
159 struct dm_arg_set as;
160 const char *devname;
161
162 as.argc = argc;
163 as.argv = argv;
164
165 if (argc < 4) {
166 ti->error = "Invalid argument count";
Josef Bacik3407ef52011-03-24 13:54:24 +0000167 return -EINVAL;
168 }
169
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100170 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
Josef Bacik3407ef52011-03-24 13:54:24 +0000171 if (!fc) {
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100172 ti->error = "Cannot allocate linear context";
Josef Bacik3407ef52011-03-24 13:54:24 +0000173 return -ENOMEM;
174 }
175 fc->start_time = jiffies;
176
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100177 devname = dm_shift_arg(&as);
Josef Bacik3407ef52011-03-24 13:54:24 +0000178
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100179 if (sscanf(dm_shift_arg(&as), "%llu", &tmpll) != 1) {
180 ti->error = "Invalid device sector";
Josef Bacik3407ef52011-03-24 13:54:24 +0000181 goto bad;
182 }
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100183 fc->start = tmpll;
Josef Bacik3407ef52011-03-24 13:54:24 +0000184
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100185 r = dm_read_arg(_args, &as, &fc->up_interval, &ti->error);
186 if (r)
Josef Bacik3407ef52011-03-24 13:54:24 +0000187 goto bad;
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100188
189 r = dm_read_arg(_args, &as, &fc->down_interval, &ti->error);
190 if (r)
191 goto bad;
Josef Bacik3407ef52011-03-24 13:54:24 +0000192
193 if (!(fc->up_interval + fc->down_interval)) {
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100194 ti->error = "Total (up + down) interval is zero";
Josef Bacik3407ef52011-03-24 13:54:24 +0000195 goto bad;
196 }
197
198 if (fc->up_interval + fc->down_interval < fc->up_interval) {
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100199 ti->error = "Interval overflow";
Josef Bacik3407ef52011-03-24 13:54:24 +0000200 goto bad;
201 }
202
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100203 r = parse_features(&as, fc, ti);
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100204 if (r)
205 goto bad;
206
207 if (dm_get_device(ti, devname, dm_table_get_mode(ti->table), &fc->dev)) {
208 ti->error = "Device lookup failed";
Josef Bacik3407ef52011-03-24 13:54:24 +0000209 goto bad;
210 }
211
212 ti->num_flush_requests = 1;
Mike Snitzer30e41712011-08-02 12:32:05 +0100213 ti->num_discard_requests = 1;
Josef Bacik3407ef52011-03-24 13:54:24 +0000214 ti->private = fc;
215 return 0;
216
217bad:
218 kfree(fc);
219 return -EINVAL;
220}
221
222static void flakey_dtr(struct dm_target *ti)
223{
224 struct flakey_c *fc = ti->private;
225
226 dm_put_device(ti, fc->dev);
227 kfree(fc);
228}
229
230static sector_t flakey_map_sector(struct dm_target *ti, sector_t bi_sector)
231{
232 struct flakey_c *fc = ti->private;
233
Mike Snitzer30e41712011-08-02 12:32:05 +0100234 return fc->start + dm_target_offset(ti, bi_sector);
Josef Bacik3407ef52011-03-24 13:54:24 +0000235}
236
237static void flakey_map_bio(struct dm_target *ti, struct bio *bio)
238{
239 struct flakey_c *fc = ti->private;
240
241 bio->bi_bdev = fc->dev->bdev;
242 if (bio_sectors(bio))
243 bio->bi_sector = flakey_map_sector(ti, bio->bi_sector);
244}
245
Mike Snitzera3998792011-08-02 12:32:06 +0100246static void corrupt_bio_data(struct bio *bio, struct flakey_c *fc)
247{
248 unsigned bio_bytes = bio_cur_bytes(bio);
249 char *data = bio_data(bio);
250
251 /*
252 * Overwrite the Nth byte of the data returned.
253 */
254 if (data && bio_bytes >= fc->corrupt_bio_byte) {
255 data[fc->corrupt_bio_byte - 1] = fc->corrupt_bio_value;
256
257 DMDEBUG("Corrupting data bio=%p by writing %u to byte %u "
258 "(rw=%c bi_rw=%lu bi_sector=%llu cur_bytes=%u)\n",
259 bio, fc->corrupt_bio_value, fc->corrupt_bio_byte,
260 (bio_data_dir(bio) == WRITE) ? 'w' : 'r',
261 bio->bi_rw, (unsigned long long)bio->bi_sector, bio_bytes);
262 }
263}
264
Josef Bacik3407ef52011-03-24 13:54:24 +0000265static int flakey_map(struct dm_target *ti, struct bio *bio,
266 union map_info *map_context)
267{
268 struct flakey_c *fc = ti->private;
269 unsigned elapsed;
270
271 /* Are we alive ? */
272 elapsed = (jiffies - fc->start_time) / HZ;
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100273 if (elapsed % (fc->up_interval + fc->down_interval) >= fc->up_interval) {
Mike Snitzera3998792011-08-02 12:32:06 +0100274 /*
275 * Flag this bio as submitted while down.
276 */
277 map_context->ll = 1;
Josef Bacik3407ef52011-03-24 13:54:24 +0000278
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100279 /*
Mike Snitzera3998792011-08-02 12:32:06 +0100280 * Map reads as normal.
281 */
282 if (bio_data_dir(bio) == READ)
283 goto map_bio;
284
285 /*
286 * Drop writes?
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100287 */
288 if (test_bit(DROP_WRITES, &fc->flags)) {
Mike Snitzera3998792011-08-02 12:32:06 +0100289 bio_endio(bio, 0);
290 return DM_MAPIO_SUBMITTED;
291 }
292
293 /*
294 * Corrupt matching writes.
295 */
296 if (fc->corrupt_bio_byte && (fc->corrupt_bio_rw == WRITE)) {
297 if (all_corrupt_bio_flags_match(bio, fc))
298 corrupt_bio_data(bio, fc);
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100299 goto map_bio;
300 }
301
302 /*
Mike Snitzera3998792011-08-02 12:32:06 +0100303 * By default, error all I/O.
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100304 */
305 return -EIO;
306 }
307
308map_bio:
Josef Bacik3407ef52011-03-24 13:54:24 +0000309 flakey_map_bio(ti, bio);
310
311 return DM_MAPIO_REMAPPED;
312}
313
Mike Snitzera3998792011-08-02 12:32:06 +0100314static int flakey_end_io(struct dm_target *ti, struct bio *bio,
315 int error, union map_info *map_context)
316{
317 struct flakey_c *fc = ti->private;
318 unsigned bio_submitted_while_down = map_context->ll;
319
320 /*
321 * Corrupt successful READs while in down state.
322 * If flags were specified, only corrupt those that match.
323 */
324 if (!error && bio_submitted_while_down &&
325 (bio_data_dir(bio) == READ) && (fc->corrupt_bio_rw == READ) &&
326 all_corrupt_bio_flags_match(bio, fc))
327 corrupt_bio_data(bio, fc);
328
329 return error;
330}
331
Josef Bacik3407ef52011-03-24 13:54:24 +0000332static int flakey_status(struct dm_target *ti, status_type_t type,
333 char *result, unsigned int maxlen)
334{
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100335 unsigned sz = 0;
Josef Bacik3407ef52011-03-24 13:54:24 +0000336 struct flakey_c *fc = ti->private;
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100337 unsigned drop_writes;
Josef Bacik3407ef52011-03-24 13:54:24 +0000338
339 switch (type) {
340 case STATUSTYPE_INFO:
341 result[0] = '\0';
342 break;
343
344 case STATUSTYPE_TABLE:
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100345 DMEMIT("%s %llu %u %u ", fc->dev->name,
346 (unsigned long long)fc->start, fc->up_interval,
347 fc->down_interval);
348
349 drop_writes = test_bit(DROP_WRITES, &fc->flags);
Mike Snitzera3998792011-08-02 12:32:06 +0100350 DMEMIT("%u ", drop_writes + (fc->corrupt_bio_byte > 0) * 5);
351
Mike Snitzerb26f5e32011-08-02 12:32:05 +0100352 if (drop_writes)
353 DMEMIT("drop_writes ");
Mike Snitzera3998792011-08-02 12:32:06 +0100354
355 if (fc->corrupt_bio_byte)
356 DMEMIT("corrupt_bio_byte %u %c %u %u ",
357 fc->corrupt_bio_byte,
358 (fc->corrupt_bio_rw == WRITE) ? 'w' : 'r',
359 fc->corrupt_bio_value, fc->corrupt_bio_flags);
360
Josef Bacik3407ef52011-03-24 13:54:24 +0000361 break;
362 }
363 return 0;
364}
365
366static int flakey_ioctl(struct dm_target *ti, unsigned int cmd, unsigned long arg)
367{
368 struct flakey_c *fc = ti->private;
369
370 return __blkdev_driver_ioctl(fc->dev->bdev, fc->dev->mode, cmd, arg);
371}
372
373static int flakey_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
374 struct bio_vec *biovec, int max_size)
375{
376 struct flakey_c *fc = ti->private;
377 struct request_queue *q = bdev_get_queue(fc->dev->bdev);
378
379 if (!q->merge_bvec_fn)
380 return max_size;
381
382 bvm->bi_bdev = fc->dev->bdev;
383 bvm->bi_sector = flakey_map_sector(ti, bvm->bi_sector);
384
385 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
386}
387
388static int flakey_iterate_devices(struct dm_target *ti, iterate_devices_callout_fn fn, void *data)
389{
390 struct flakey_c *fc = ti->private;
391
392 return fn(ti, fc->dev, fc->start, ti->len, data);
393}
394
395static struct target_type flakey_target = {
396 .name = "flakey",
Mike Snitzerdfd068b2011-08-02 12:32:05 +0100397 .version = {1, 2, 0},
Josef Bacik3407ef52011-03-24 13:54:24 +0000398 .module = THIS_MODULE,
399 .ctr = flakey_ctr,
400 .dtr = flakey_dtr,
401 .map = flakey_map,
Mike Snitzera3998792011-08-02 12:32:06 +0100402 .end_io = flakey_end_io,
Josef Bacik3407ef52011-03-24 13:54:24 +0000403 .status = flakey_status,
404 .ioctl = flakey_ioctl,
405 .merge = flakey_merge,
406 .iterate_devices = flakey_iterate_devices,
407};
408
409static int __init dm_flakey_init(void)
410{
411 int r = dm_register_target(&flakey_target);
412
413 if (r < 0)
414 DMERR("register failed %d", r);
415
416 return r;
417}
418
419static void __exit dm_flakey_exit(void)
420{
421 dm_unregister_target(&flakey_target);
422}
423
424/* Module hooks */
425module_init(dm_flakey_init);
426module_exit(dm_flakey_exit);
427
428MODULE_DESCRIPTION(DM_NAME " flakey target");
429MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
430MODULE_LICENSE("GPL");