dm-flakey.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. /*
  2. * Copyright (C) 2003 Sistina Software (UK) Limited.
  3. * Copyright (C) 2004, 2010-2011 Red Hat, Inc. All rights reserved.
  4. *
  5. * This file is released under the GPL.
  6. */
  7. #include <linux/device-mapper.h>
  8. #include <linux/module.h>
  9. #include <linux/init.h>
  10. #include <linux/blkdev.h>
  11. #include <linux/bio.h>
  12. #include <linux/slab.h>
  13. #define DM_MSG_PREFIX "flakey"
  14. #define all_corrupt_bio_flags_match(bio, fc) \
  15. (((bio)->bi_opf & (fc)->corrupt_bio_flags) == (fc)->corrupt_bio_flags)
  16. /*
  17. * Flakey: Used for testing only, simulates intermittent,
  18. * catastrophic device failure.
  19. */
  20. struct flakey_c {
  21. struct dm_dev *dev;
  22. unsigned long start_time;
  23. sector_t start;
  24. unsigned up_interval;
  25. unsigned down_interval;
  26. unsigned long flags;
  27. unsigned corrupt_bio_byte;
  28. unsigned corrupt_bio_rw;
  29. unsigned corrupt_bio_value;
  30. unsigned corrupt_bio_flags;
  31. };
  32. enum feature_flag_bits {
  33. DROP_WRITES,
  34. ERROR_WRITES
  35. };
  36. struct per_bio_data {
  37. bool bio_submitted;
  38. };
  39. static int parse_features(struct dm_arg_set *as, struct flakey_c *fc,
  40. struct dm_target *ti)
  41. {
  42. int r;
  43. unsigned argc;
  44. const char *arg_name;
  45. static const struct dm_arg _args[] = {
  46. {0, 6, "Invalid number of feature args"},
  47. {1, UINT_MAX, "Invalid corrupt bio byte"},
  48. {0, 255, "Invalid corrupt value to write into bio byte (0-255)"},
  49. {0, UINT_MAX, "Invalid corrupt bio flags mask"},
  50. };
  51. /* No feature arguments supplied. */
  52. if (!as->argc)
  53. return 0;
  54. r = dm_read_arg_group(_args, as, &argc, &ti->error);
  55. if (r)
  56. return r;
  57. while (argc) {
  58. arg_name = dm_shift_arg(as);
  59. argc--;
  60. if (!arg_name) {
  61. ti->error = "Insufficient feature arguments";
  62. return -EINVAL;
  63. }
  64. /*
  65. * drop_writes
  66. */
  67. if (!strcasecmp(arg_name, "drop_writes")) {
  68. if (test_and_set_bit(DROP_WRITES, &fc->flags)) {
  69. ti->error = "Feature drop_writes duplicated";
  70. return -EINVAL;
  71. } else if (test_bit(ERROR_WRITES, &fc->flags)) {
  72. ti->error = "Feature drop_writes conflicts with feature error_writes";
  73. return -EINVAL;
  74. }
  75. continue;
  76. }
  77. /*
  78. * error_writes
  79. */
  80. if (!strcasecmp(arg_name, "error_writes")) {
  81. if (test_and_set_bit(ERROR_WRITES, &fc->flags)) {
  82. ti->error = "Feature error_writes duplicated";
  83. return -EINVAL;
  84. } else if (test_bit(DROP_WRITES, &fc->flags)) {
  85. ti->error = "Feature error_writes conflicts with feature drop_writes";
  86. return -EINVAL;
  87. }
  88. continue;
  89. }
  90. /*
  91. * corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>
  92. */
  93. if (!strcasecmp(arg_name, "corrupt_bio_byte")) {
  94. if (!argc) {
  95. ti->error = "Feature corrupt_bio_byte requires parameters";
  96. return -EINVAL;
  97. }
  98. r = dm_read_arg(_args + 1, as, &fc->corrupt_bio_byte, &ti->error);
  99. if (r)
  100. return r;
  101. argc--;
  102. /*
  103. * Direction r or w?
  104. */
  105. arg_name = dm_shift_arg(as);
  106. if (!strcasecmp(arg_name, "w"))
  107. fc->corrupt_bio_rw = WRITE;
  108. else if (!strcasecmp(arg_name, "r"))
  109. fc->corrupt_bio_rw = READ;
  110. else {
  111. ti->error = "Invalid corrupt bio direction (r or w)";
  112. return -EINVAL;
  113. }
  114. argc--;
  115. /*
  116. * Value of byte (0-255) to write in place of correct one.
  117. */
  118. r = dm_read_arg(_args + 2, as, &fc->corrupt_bio_value, &ti->error);
  119. if (r)
  120. return r;
  121. argc--;
  122. /*
  123. * Only corrupt bios with these flags set.
  124. */
  125. r = dm_read_arg(_args + 3, as, &fc->corrupt_bio_flags, &ti->error);
  126. if (r)
  127. return r;
  128. argc--;
  129. continue;
  130. }
  131. ti->error = "Unrecognised flakey feature requested";
  132. return -EINVAL;
  133. }
  134. if (test_bit(DROP_WRITES, &fc->flags) && (fc->corrupt_bio_rw == WRITE)) {
  135. ti->error = "drop_writes is incompatible with corrupt_bio_byte with the WRITE flag set";
  136. return -EINVAL;
  137. } else if (test_bit(ERROR_WRITES, &fc->flags) && (fc->corrupt_bio_rw == WRITE)) {
  138. ti->error = "error_writes is incompatible with corrupt_bio_byte with the WRITE flag set";
  139. return -EINVAL;
  140. }
  141. return 0;
  142. }
  143. /*
  144. * Construct a flakey mapping:
  145. * <dev_path> <offset> <up interval> <down interval> [<#feature args> [<arg>]*]
  146. *
  147. * Feature args:
  148. * [drop_writes]
  149. * [corrupt_bio_byte <Nth_byte> <direction> <value> <bio_flags>]
  150. *
  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.
  154. */
  155. static int flakey_ctr(struct dm_target *ti, unsigned int argc, char **argv)
  156. {
  157. static const struct dm_arg _args[] = {
  158. {0, UINT_MAX, "Invalid up interval"},
  159. {0, UINT_MAX, "Invalid down interval"},
  160. };
  161. int r;
  162. struct flakey_c *fc;
  163. unsigned long long tmpll;
  164. struct dm_arg_set as;
  165. const char *devname;
  166. char dummy;
  167. as.argc = argc;
  168. as.argv = argv;
  169. if (argc < 4) {
  170. ti->error = "Invalid argument count";
  171. return -EINVAL;
  172. }
  173. fc = kzalloc(sizeof(*fc), GFP_KERNEL);
  174. if (!fc) {
  175. ti->error = "Cannot allocate context";
  176. return -ENOMEM;
  177. }
  178. fc->start_time = jiffies;
  179. devname = dm_shift_arg(&as);
  180. r = -EINVAL;
  181. if (sscanf(dm_shift_arg(&as), "%llu%c", &tmpll, &dummy) != 1 || tmpll != (sector_t)tmpll) {
  182. ti->error = "Invalid device sector";
  183. goto bad;
  184. }
  185. fc->start = tmpll;
  186. r = dm_read_arg(_args, &as, &fc->up_interval, &ti->error);
  187. if (r)
  188. goto bad;
  189. r = dm_read_arg(_args, &as, &fc->down_interval, &ti->error);
  190. if (r)
  191. goto bad;
  192. if (!(fc->up_interval + fc->down_interval)) {
  193. ti->error = "Total (up + down) interval is zero";
  194. r = -EINVAL;
  195. goto bad;
  196. }
  197. if (fc->up_interval + fc->down_interval < fc->up_interval) {
  198. ti->error = "Interval overflow";
  199. r = -EINVAL;
  200. goto bad;
  201. }
  202. r = parse_features(&as, fc, ti);
  203. if (r)
  204. goto bad;
  205. r = dm_get_device(ti, devname, dm_table_get_mode(ti->table), &fc->dev);
  206. if (r) {
  207. ti->error = "Device lookup failed";
  208. goto bad;
  209. }
  210. ti->num_flush_bios = 1;
  211. ti->num_discard_bios = 1;
  212. ti->per_io_data_size = sizeof(struct per_bio_data);
  213. ti->private = fc;
  214. return 0;
  215. bad:
  216. kfree(fc);
  217. return r;
  218. }
  219. static void flakey_dtr(struct dm_target *ti)
  220. {
  221. struct flakey_c *fc = ti->private;
  222. dm_put_device(ti, fc->dev);
  223. kfree(fc);
  224. }
  225. static sector_t flakey_map_sector(struct dm_target *ti, sector_t bi_sector)
  226. {
  227. struct flakey_c *fc = ti->private;
  228. return fc->start + dm_target_offset(ti, bi_sector);
  229. }
  230. static void flakey_map_bio(struct dm_target *ti, struct bio *bio)
  231. {
  232. struct flakey_c *fc = ti->private;
  233. bio_set_dev(bio, fc->dev->bdev);
  234. if (bio_sectors(bio) || bio_op(bio) == REQ_OP_ZONE_RESET)
  235. bio->bi_iter.bi_sector =
  236. flakey_map_sector(ti, bio->bi_iter.bi_sector);
  237. }
  238. static void corrupt_bio_data(struct bio *bio, struct flakey_c *fc)
  239. {
  240. unsigned int corrupt_bio_byte = fc->corrupt_bio_byte - 1;
  241. struct bvec_iter iter;
  242. struct bio_vec bvec;
  243. if (!bio_has_data(bio))
  244. return;
  245. /*
  246. * Overwrite the Nth byte of the bio's data, on whichever page
  247. * it falls.
  248. */
  249. bio_for_each_segment(bvec, bio, iter) {
  250. if (bio_iter_len(bio, iter) > corrupt_bio_byte) {
  251. char *segment = (page_address(bio_iter_page(bio, iter))
  252. + bio_iter_offset(bio, iter));
  253. segment[corrupt_bio_byte] = fc->corrupt_bio_value;
  254. DMDEBUG("Corrupting data bio=%p by writing %u to byte %u "
  255. "(rw=%c bi_opf=%u bi_sector=%llu size=%u)\n",
  256. bio, fc->corrupt_bio_value, fc->corrupt_bio_byte,
  257. (bio_data_dir(bio) == WRITE) ? 'w' : 'r', bio->bi_opf,
  258. (unsigned long long)bio->bi_iter.bi_sector, bio->bi_iter.bi_size);
  259. break;
  260. }
  261. corrupt_bio_byte -= bio_iter_len(bio, iter);
  262. }
  263. }
  264. static int flakey_map(struct dm_target *ti, struct bio *bio)
  265. {
  266. struct flakey_c *fc = ti->private;
  267. unsigned elapsed;
  268. struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
  269. pb->bio_submitted = false;
  270. /* Do not fail reset zone */
  271. if (bio_op(bio) == REQ_OP_ZONE_RESET)
  272. goto map_bio;
  273. /* Are we alive ? */
  274. elapsed = (jiffies - fc->start_time) / HZ;
  275. if (elapsed % (fc->up_interval + fc->down_interval) >= fc->up_interval) {
  276. /*
  277. * Flag this bio as submitted while down.
  278. */
  279. pb->bio_submitted = true;
  280. /*
  281. * Error reads if neither corrupt_bio_byte or drop_writes or error_writes are set.
  282. * Otherwise, flakey_end_io() will decide if the reads should be modified.
  283. */
  284. if (bio_data_dir(bio) == READ) {
  285. if (!fc->corrupt_bio_byte && !test_bit(DROP_WRITES, &fc->flags) &&
  286. !test_bit(ERROR_WRITES, &fc->flags))
  287. return DM_MAPIO_KILL;
  288. goto map_bio;
  289. }
  290. /*
  291. * Drop or error writes?
  292. */
  293. if (test_bit(DROP_WRITES, &fc->flags)) {
  294. bio_endio(bio);
  295. return DM_MAPIO_SUBMITTED;
  296. }
  297. else if (test_bit(ERROR_WRITES, &fc->flags)) {
  298. bio_io_error(bio);
  299. return DM_MAPIO_SUBMITTED;
  300. }
  301. /*
  302. * Corrupt matching writes.
  303. */
  304. if (fc->corrupt_bio_byte && (fc->corrupt_bio_rw == WRITE)) {
  305. if (all_corrupt_bio_flags_match(bio, fc))
  306. corrupt_bio_data(bio, fc);
  307. goto map_bio;
  308. }
  309. /*
  310. * By default, error all I/O.
  311. */
  312. return DM_MAPIO_KILL;
  313. }
  314. map_bio:
  315. flakey_map_bio(ti, bio);
  316. return DM_MAPIO_REMAPPED;
  317. }
  318. static int flakey_end_io(struct dm_target *ti, struct bio *bio,
  319. blk_status_t *error)
  320. {
  321. struct flakey_c *fc = ti->private;
  322. struct per_bio_data *pb = dm_per_bio_data(bio, sizeof(struct per_bio_data));
  323. if (bio_op(bio) == REQ_OP_ZONE_RESET)
  324. return DM_ENDIO_DONE;
  325. if (!*error && pb->bio_submitted && (bio_data_dir(bio) == READ)) {
  326. if (fc->corrupt_bio_byte && (fc->corrupt_bio_rw == READ) &&
  327. all_corrupt_bio_flags_match(bio, fc)) {
  328. /*
  329. * Corrupt successful matching READs while in down state.
  330. */
  331. corrupt_bio_data(bio, fc);
  332. } else if (!test_bit(DROP_WRITES, &fc->flags) &&
  333. !test_bit(ERROR_WRITES, &fc->flags)) {
  334. /*
  335. * Error read during the down_interval if drop_writes
  336. * and error_writes were not configured.
  337. */
  338. *error = BLK_STS_IOERR;
  339. }
  340. }
  341. return DM_ENDIO_DONE;
  342. }
  343. static void flakey_status(struct dm_target *ti, status_type_t type,
  344. unsigned status_flags, char *result, unsigned maxlen)
  345. {
  346. unsigned sz = 0;
  347. struct flakey_c *fc = ti->private;
  348. unsigned drop_writes, error_writes;
  349. switch (type) {
  350. case STATUSTYPE_INFO:
  351. result[0] = '\0';
  352. break;
  353. case STATUSTYPE_TABLE:
  354. DMEMIT("%s %llu %u %u ", fc->dev->name,
  355. (unsigned long long)fc->start, fc->up_interval,
  356. fc->down_interval);
  357. drop_writes = test_bit(DROP_WRITES, &fc->flags);
  358. error_writes = test_bit(ERROR_WRITES, &fc->flags);
  359. DMEMIT("%u ", drop_writes + error_writes + (fc->corrupt_bio_byte > 0) * 5);
  360. if (drop_writes)
  361. DMEMIT("drop_writes ");
  362. else if (error_writes)
  363. DMEMIT("error_writes ");
  364. if (fc->corrupt_bio_byte)
  365. DMEMIT("corrupt_bio_byte %u %c %u %u ",
  366. fc->corrupt_bio_byte,
  367. (fc->corrupt_bio_rw == WRITE) ? 'w' : 'r',
  368. fc->corrupt_bio_value, fc->corrupt_bio_flags);
  369. break;
  370. }
  371. }
  372. static int flakey_prepare_ioctl(struct dm_target *ti, struct block_device **bdev)
  373. {
  374. struct flakey_c *fc = ti->private;
  375. *bdev = fc->dev->bdev;
  376. /*
  377. * Only pass ioctls through if the device sizes match exactly.
  378. */
  379. if (fc->start ||
  380. ti->len != i_size_read((*bdev)->bd_inode) >> SECTOR_SHIFT)
  381. return 1;
  382. return 0;
  383. }
  384. #ifdef CONFIG_BLK_DEV_ZONED
  385. static int flakey_report_zones(struct dm_target *ti, sector_t sector,
  386. struct blk_zone *zones, unsigned int *nr_zones)
  387. {
  388. struct flakey_c *fc = ti->private;
  389. int ret;
  390. /* Do report and remap it */
  391. ret = blkdev_report_zones(fc->dev->bdev, flakey_map_sector(ti, sector),
  392. zones, nr_zones);
  393. if (ret != 0)
  394. return ret;
  395. if (*nr_zones)
  396. dm_remap_zone_report(ti, fc->start, zones, nr_zones);
  397. return 0;
  398. }
  399. #endif
  400. static int flakey_iterate_devices(struct dm_target *ti, iterate_devices_callout_fn fn, void *data)
  401. {
  402. struct flakey_c *fc = ti->private;
  403. return fn(ti, fc->dev, fc->start, ti->len, data);
  404. }
  405. static struct target_type flakey_target = {
  406. .name = "flakey",
  407. .version = {1, 5, 0},
  408. #ifdef CONFIG_BLK_DEV_ZONED
  409. .features = DM_TARGET_ZONED_HM,
  410. .report_zones = flakey_report_zones,
  411. #endif
  412. .module = THIS_MODULE,
  413. .ctr = flakey_ctr,
  414. .dtr = flakey_dtr,
  415. .map = flakey_map,
  416. .end_io = flakey_end_io,
  417. .status = flakey_status,
  418. .prepare_ioctl = flakey_prepare_ioctl,
  419. .iterate_devices = flakey_iterate_devices,
  420. };
  421. static int __init dm_flakey_init(void)
  422. {
  423. int r = dm_register_target(&flakey_target);
  424. if (r < 0)
  425. DMERR("register failed %d", r);
  426. return r;
  427. }
  428. static void __exit dm_flakey_exit(void)
  429. {
  430. dm_unregister_target(&flakey_target);
  431. }
  432. /* Module hooks */
  433. module_init(dm_flakey_init);
  434. module_exit(dm_flakey_exit);
  435. MODULE_DESCRIPTION(DM_NAME " flakey target");
  436. MODULE_AUTHOR("Joe Thornber <dm-devel@redhat.com>");
  437. MODULE_LICENSE("GPL");