fault-inject.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/kernel.h>
  3. #include <linux/init.h>
  4. #include <linux/prandom.h>
  5. #include <linux/debugfs.h>
  6. #include <linux/sched.h>
  7. #include <linux/stat.h>
  8. #include <linux/types.h>
  9. #include <linux/fs.h>
  10. #include <linux/export.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/stacktrace.h>
  13. #include <linux/fault-inject.h>
  14. /*
  15. * The should_fail() functions use prandom instead of the normal Linux RNG
  16. * since they don't need cryptographically secure random numbers.
  17. */
  18. static DEFINE_PER_CPU(struct rnd_state, fault_rnd_state);
  19. static u32 fault_prandom_u32_below_100(void)
  20. {
  21. struct rnd_state *state;
  22. u32 res;
  23. state = &get_cpu_var(fault_rnd_state);
  24. res = prandom_u32_state(state);
  25. put_cpu_var(fault_rnd_state);
  26. return res % 100;
  27. }
  28. /*
  29. * setup_fault_attr() is a helper function for various __setup handlers, so it
  30. * returns 0 on error, because that is what __setup handlers do.
  31. */
  32. int setup_fault_attr(struct fault_attr *attr, char *str)
  33. {
  34. unsigned long probability;
  35. unsigned long interval;
  36. int times;
  37. int space;
  38. /* "<interval>,<probability>,<space>,<times>" */
  39. if (sscanf(str, "%lu,%lu,%d,%d",
  40. &interval, &probability, &space, &times) < 4) {
  41. printk(KERN_WARNING
  42. "FAULT_INJECTION: failed to parse arguments\n");
  43. return 0;
  44. }
  45. prandom_init_once(&fault_rnd_state);
  46. attr->probability = probability;
  47. attr->interval = interval;
  48. atomic_set(&attr->times, times);
  49. atomic_set(&attr->space, space);
  50. return 1;
  51. }
  52. EXPORT_SYMBOL_GPL(setup_fault_attr);
  53. static void fail_dump(struct fault_attr *attr)
  54. {
  55. if (attr->verbose > 0 && __ratelimit(&attr->ratelimit_state)) {
  56. printk(KERN_NOTICE "FAULT_INJECTION: forcing a failure.\n"
  57. "name %pd, interval %lu, probability %lu, "
  58. "space %d, times %d\n", attr->dname,
  59. attr->interval, attr->probability,
  60. atomic_read(&attr->space),
  61. atomic_read(&attr->times));
  62. if (attr->verbose > 1)
  63. dump_stack();
  64. }
  65. }
  66. #define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
  67. static bool fail_task(struct fault_attr *attr, struct task_struct *task)
  68. {
  69. return in_task() && task->make_it_fail;
  70. }
  71. #define MAX_STACK_TRACE_DEPTH 32
  72. #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
  73. static bool fail_stacktrace(struct fault_attr *attr)
  74. {
  75. int depth = attr->stacktrace_depth;
  76. unsigned long entries[MAX_STACK_TRACE_DEPTH];
  77. int n, nr_entries;
  78. bool found = (attr->require_start == 0 && attr->require_end == ULONG_MAX);
  79. if (depth == 0 || (found && !attr->reject_start && !attr->reject_end))
  80. return found;
  81. nr_entries = stack_trace_save(entries, depth, 1);
  82. for (n = 0; n < nr_entries; n++) {
  83. if (attr->reject_start <= entries[n] &&
  84. entries[n] < attr->reject_end)
  85. return false;
  86. if (attr->require_start <= entries[n] &&
  87. entries[n] < attr->require_end)
  88. found = true;
  89. }
  90. return found;
  91. }
  92. #else
  93. static inline bool fail_stacktrace(struct fault_attr *attr)
  94. {
  95. return true;
  96. }
  97. #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
  98. /*
  99. * This code is stolen from failmalloc-1.0
  100. * http://www.nongnu.org/failmalloc/
  101. */
  102. bool should_fail_ex(struct fault_attr *attr, ssize_t size, int flags)
  103. {
  104. bool stack_checked = false;
  105. if (in_task()) {
  106. unsigned int fail_nth = READ_ONCE(current->fail_nth);
  107. if (fail_nth) {
  108. if (!fail_stacktrace(attr))
  109. return false;
  110. stack_checked = true;
  111. fail_nth--;
  112. WRITE_ONCE(current->fail_nth, fail_nth);
  113. if (!fail_nth)
  114. goto fail;
  115. return false;
  116. }
  117. }
  118. /* No need to check any other properties if the probability is 0 */
  119. if (attr->probability == 0)
  120. return false;
  121. if (attr->task_filter && !fail_task(attr, current))
  122. return false;
  123. if (atomic_read(&attr->times) == 0)
  124. return false;
  125. if (!stack_checked && !fail_stacktrace(attr))
  126. return false;
  127. if (atomic_read(&attr->space) > size) {
  128. atomic_sub(size, &attr->space);
  129. return false;
  130. }
  131. if (attr->interval > 1) {
  132. attr->count++;
  133. if (attr->count % attr->interval)
  134. return false;
  135. }
  136. if (attr->probability <= fault_prandom_u32_below_100())
  137. return false;
  138. fail:
  139. if (!(flags & FAULT_NOWARN))
  140. fail_dump(attr);
  141. if (atomic_read(&attr->times) != -1)
  142. atomic_dec_not_zero(&attr->times);
  143. return true;
  144. }
  145. bool should_fail(struct fault_attr *attr, ssize_t size)
  146. {
  147. return should_fail_ex(attr, size, 0);
  148. }
  149. EXPORT_SYMBOL_GPL(should_fail);
  150. #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
  151. static int debugfs_ul_set(void *data, u64 val)
  152. {
  153. *(unsigned long *)data = val;
  154. return 0;
  155. }
  156. static int debugfs_ul_get(void *data, u64 *val)
  157. {
  158. *val = *(unsigned long *)data;
  159. return 0;
  160. }
  161. DEFINE_SIMPLE_ATTRIBUTE(fops_ul, debugfs_ul_get, debugfs_ul_set, "%llu\n");
  162. static void debugfs_create_ul(const char *name, umode_t mode,
  163. struct dentry *parent, unsigned long *value)
  164. {
  165. debugfs_create_file(name, mode, parent, value, &fops_ul);
  166. }
  167. #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
  168. static int debugfs_stacktrace_depth_set(void *data, u64 val)
  169. {
  170. *(unsigned long *)data =
  171. min_t(unsigned long, val, MAX_STACK_TRACE_DEPTH);
  172. return 0;
  173. }
  174. DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth, debugfs_ul_get,
  175. debugfs_stacktrace_depth_set, "%llu\n");
  176. static void debugfs_create_stacktrace_depth(const char *name, umode_t mode,
  177. struct dentry *parent,
  178. unsigned long *value)
  179. {
  180. debugfs_create_file(name, mode, parent, value, &fops_stacktrace_depth);
  181. }
  182. #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
  183. struct dentry *fault_create_debugfs_attr(const char *name,
  184. struct dentry *parent, struct fault_attr *attr)
  185. {
  186. umode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
  187. struct dentry *dir;
  188. dir = debugfs_create_dir(name, parent);
  189. if (IS_ERR(dir))
  190. return dir;
  191. prandom_init_once(&fault_rnd_state);
  192. debugfs_create_ul("probability", mode, dir, &attr->probability);
  193. debugfs_create_ul("interval", mode, dir, &attr->interval);
  194. debugfs_create_atomic_t("times", mode, dir, &attr->times);
  195. debugfs_create_atomic_t("space", mode, dir, &attr->space);
  196. debugfs_create_ul("verbose", mode, dir, &attr->verbose);
  197. debugfs_create_u32("verbose_ratelimit_interval_ms", mode, dir,
  198. &attr->ratelimit_state.interval);
  199. debugfs_create_u32("verbose_ratelimit_burst", mode, dir,
  200. &attr->ratelimit_state.burst);
  201. debugfs_create_bool("task-filter", mode, dir, &attr->task_filter);
  202. #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
  203. debugfs_create_stacktrace_depth("stacktrace-depth", mode, dir,
  204. &attr->stacktrace_depth);
  205. debugfs_create_xul("require-start", mode, dir, &attr->require_start);
  206. debugfs_create_xul("require-end", mode, dir, &attr->require_end);
  207. debugfs_create_xul("reject-start", mode, dir, &attr->reject_start);
  208. debugfs_create_xul("reject-end", mode, dir, &attr->reject_end);
  209. #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
  210. attr->dname = dget(dir);
  211. return dir;
  212. }
  213. EXPORT_SYMBOL_GPL(fault_create_debugfs_attr);
  214. #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
  215. #ifdef CONFIG_FAULT_INJECTION_CONFIGFS
  216. /* These configfs attribute utilities are copied from drivers/block/null_blk/main.c */
  217. static ssize_t fault_uint_attr_show(unsigned int val, char *page)
  218. {
  219. return snprintf(page, PAGE_SIZE, "%u\n", val);
  220. }
  221. static ssize_t fault_ulong_attr_show(unsigned long val, char *page)
  222. {
  223. return snprintf(page, PAGE_SIZE, "%lu\n", val);
  224. }
  225. static ssize_t fault_bool_attr_show(bool val, char *page)
  226. {
  227. return snprintf(page, PAGE_SIZE, "%u\n", val);
  228. }
  229. static ssize_t fault_atomic_t_attr_show(atomic_t val, char *page)
  230. {
  231. return snprintf(page, PAGE_SIZE, "%d\n", atomic_read(&val));
  232. }
  233. static ssize_t fault_uint_attr_store(unsigned int *val, const char *page, size_t count)
  234. {
  235. unsigned int tmp;
  236. int result;
  237. result = kstrtouint(page, 0, &tmp);
  238. if (result < 0)
  239. return result;
  240. *val = tmp;
  241. return count;
  242. }
  243. static ssize_t fault_ulong_attr_store(unsigned long *val, const char *page, size_t count)
  244. {
  245. int result;
  246. unsigned long tmp;
  247. result = kstrtoul(page, 0, &tmp);
  248. if (result < 0)
  249. return result;
  250. *val = tmp;
  251. return count;
  252. }
  253. static ssize_t fault_bool_attr_store(bool *val, const char *page, size_t count)
  254. {
  255. bool tmp;
  256. int result;
  257. result = kstrtobool(page, &tmp);
  258. if (result < 0)
  259. return result;
  260. *val = tmp;
  261. return count;
  262. }
  263. static ssize_t fault_atomic_t_attr_store(atomic_t *val, const char *page, size_t count)
  264. {
  265. int tmp;
  266. int result;
  267. result = kstrtoint(page, 0, &tmp);
  268. if (result < 0)
  269. return result;
  270. atomic_set(val, tmp);
  271. return count;
  272. }
  273. #define CONFIGFS_ATTR_NAMED(_pfx, _name, _attr_name) \
  274. static struct configfs_attribute _pfx##attr_##_name = { \
  275. .ca_name = _attr_name, \
  276. .ca_mode = 0644, \
  277. .ca_owner = THIS_MODULE, \
  278. .show = _pfx##_name##_show, \
  279. .store = _pfx##_name##_store, \
  280. }
  281. static struct fault_config *to_fault_config(struct config_item *item)
  282. {
  283. return container_of(to_config_group(item), struct fault_config, group);
  284. }
  285. #define FAULT_CONFIGFS_ATTR_NAMED(NAME, ATTR_NAME, MEMBER, TYPE) \
  286. static ssize_t fault_##NAME##_show(struct config_item *item, char *page) \
  287. { \
  288. return fault_##TYPE##_attr_show(to_fault_config(item)->attr.MEMBER, page); \
  289. } \
  290. static ssize_t fault_##NAME##_store(struct config_item *item, const char *page, size_t count) \
  291. { \
  292. struct fault_config *config = to_fault_config(item); \
  293. return fault_##TYPE##_attr_store(&config->attr.MEMBER, page, count); \
  294. } \
  295. CONFIGFS_ATTR_NAMED(fault_, NAME, ATTR_NAME)
  296. #define FAULT_CONFIGFS_ATTR(NAME, TYPE) \
  297. FAULT_CONFIGFS_ATTR_NAMED(NAME, __stringify(NAME), NAME, TYPE)
  298. FAULT_CONFIGFS_ATTR(probability, ulong);
  299. FAULT_CONFIGFS_ATTR(interval, ulong);
  300. FAULT_CONFIGFS_ATTR(times, atomic_t);
  301. FAULT_CONFIGFS_ATTR(space, atomic_t);
  302. FAULT_CONFIGFS_ATTR(verbose, ulong);
  303. FAULT_CONFIGFS_ATTR_NAMED(ratelimit_interval, "verbose_ratelimit_interval_ms",
  304. ratelimit_state.interval, uint);
  305. FAULT_CONFIGFS_ATTR_NAMED(ratelimit_burst, "verbose_ratelimit_burst",
  306. ratelimit_state.burst, uint);
  307. FAULT_CONFIGFS_ATTR_NAMED(task_filter, "task-filter", task_filter, bool);
  308. #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
  309. static ssize_t fault_stacktrace_depth_show(struct config_item *item, char *page)
  310. {
  311. return fault_ulong_attr_show(to_fault_config(item)->attr.stacktrace_depth, page);
  312. }
  313. static ssize_t fault_stacktrace_depth_store(struct config_item *item, const char *page,
  314. size_t count)
  315. {
  316. int result;
  317. unsigned long tmp;
  318. result = kstrtoul(page, 0, &tmp);
  319. if (result < 0)
  320. return result;
  321. to_fault_config(item)->attr.stacktrace_depth =
  322. min_t(unsigned long, tmp, MAX_STACK_TRACE_DEPTH);
  323. return count;
  324. }
  325. CONFIGFS_ATTR_NAMED(fault_, stacktrace_depth, "stacktrace-depth");
  326. static ssize_t fault_xul_attr_show(unsigned long val, char *page)
  327. {
  328. return snprintf(page, PAGE_SIZE,
  329. sizeof(val) == sizeof(u32) ? "0x%08lx\n" : "0x%016lx\n", val);
  330. }
  331. static ssize_t fault_xul_attr_store(unsigned long *val, const char *page, size_t count)
  332. {
  333. return fault_ulong_attr_store(val, page, count);
  334. }
  335. FAULT_CONFIGFS_ATTR_NAMED(require_start, "require-start", require_start, xul);
  336. FAULT_CONFIGFS_ATTR_NAMED(require_end, "require-end", require_end, xul);
  337. FAULT_CONFIGFS_ATTR_NAMED(reject_start, "reject-start", reject_start, xul);
  338. FAULT_CONFIGFS_ATTR_NAMED(reject_end, "reject-end", reject_end, xul);
  339. #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
  340. static struct configfs_attribute *fault_config_attrs[] = {
  341. &fault_attr_probability,
  342. &fault_attr_interval,
  343. &fault_attr_times,
  344. &fault_attr_space,
  345. &fault_attr_verbose,
  346. &fault_attr_ratelimit_interval,
  347. &fault_attr_ratelimit_burst,
  348. &fault_attr_task_filter,
  349. #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
  350. &fault_attr_stacktrace_depth,
  351. &fault_attr_require_start,
  352. &fault_attr_require_end,
  353. &fault_attr_reject_start,
  354. &fault_attr_reject_end,
  355. #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
  356. NULL,
  357. };
  358. static const struct config_item_type fault_config_type = {
  359. .ct_attrs = fault_config_attrs,
  360. .ct_owner = THIS_MODULE,
  361. };
  362. void fault_config_init(struct fault_config *config, const char *name)
  363. {
  364. prandom_init_once(&fault_rnd_state);
  365. config_group_init_type_name(&config->group, name, &fault_config_type);
  366. }
  367. EXPORT_SYMBOL_GPL(fault_config_init);
  368. #endif /* CONFIG_FAULT_INJECTION_CONFIGFS */