1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/kernel.h>
3 #include <linux/init.h>
4 #include <linux/random.h>
5 #include <linux/sched.h>
6 #include <linux/stat.h>
7 #include <linux/types.h>
9 #include <linux/export.h>
10 #include <linux/interrupt.h>
11 #include <linux/stacktrace.h>
12 #include <linux/fault-inject.h>
15 * setup_fault_attr() is a helper function for various __setup handlers, so it
16 * returns 0 on error, because that is what __setup handlers do.
18 int setup_fault_attr(struct fault_attr
*attr
, char *str
)
20 unsigned long probability
;
21 unsigned long interval
;
25 /* "<interval>,<probability>,<space>,<times>" */
26 if (sscanf(str
, "%lu,%lu,%d,%d",
27 &interval
, &probability
, &space
, ×
) < 4) {
29 "FAULT_INJECTION: failed to parse arguments\n");
33 attr
->probability
= probability
;
34 attr
->interval
= interval
;
35 atomic_set(&attr
->times
, times
);
36 atomic_set(&attr
->space
, space
);
40 EXPORT_SYMBOL_GPL(setup_fault_attr
);
42 static void fail_dump(struct fault_attr
*attr
)
44 if (attr
->verbose
> 0 && __ratelimit(&attr
->ratelimit_state
)) {
45 printk(KERN_NOTICE
"FAULT_INJECTION: forcing a failure.\n"
46 "name %pd, interval %lu, probability %lu, "
47 "space %d, times %d\n", attr
->dname
,
48 attr
->interval
, attr
->probability
,
49 atomic_read(&attr
->space
),
50 atomic_read(&attr
->times
));
51 if (attr
->verbose
> 1)
56 #define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
58 static bool fail_task(struct fault_attr
*attr
, struct task_struct
*task
)
60 return in_task() && task
->make_it_fail
;
63 #define MAX_STACK_TRACE_DEPTH 32
65 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
67 static bool fail_stacktrace(struct fault_attr
*attr
)
69 int depth
= attr
->stacktrace_depth
;
70 unsigned long entries
[MAX_STACK_TRACE_DEPTH
];
72 bool found
= (attr
->require_start
== 0 && attr
->require_end
== ULONG_MAX
);
77 nr_entries
= stack_trace_save(entries
, depth
, 1);
78 for (n
= 0; n
< nr_entries
; n
++) {
79 if (attr
->reject_start
<= entries
[n
] &&
80 entries
[n
] < attr
->reject_end
)
82 if (attr
->require_start
<= entries
[n
] &&
83 entries
[n
] < attr
->require_end
)
91 static inline bool fail_stacktrace(struct fault_attr
*attr
)
96 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
99 * This code is stolen from failmalloc-1.0
100 * http://www.nongnu.org/failmalloc/
103 bool should_fail(struct fault_attr
*attr
, ssize_t size
)
106 unsigned int fail_nth
= READ_ONCE(current
->fail_nth
);
110 WRITE_ONCE(current
->fail_nth
, fail_nth
);
118 /* No need to check any other properties if the probability is 0 */
119 if (attr
->probability
== 0)
122 if (attr
->task_filter
&& !fail_task(attr
, current
))
125 if (atomic_read(&attr
->times
) == 0)
128 if (atomic_read(&attr
->space
) > size
) {
129 atomic_sub(size
, &attr
->space
);
133 if (attr
->interval
> 1) {
135 if (attr
->count
% attr
->interval
)
139 if (attr
->probability
<= prandom_u32() % 100)
142 if (!fail_stacktrace(attr
))
148 if (atomic_read(&attr
->times
) != -1)
149 atomic_dec_not_zero(&attr
->times
);
153 EXPORT_SYMBOL_GPL(should_fail
);
155 #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
157 static int debugfs_ul_set(void *data
, u64 val
)
159 *(unsigned long *)data
= val
;
163 static int debugfs_ul_get(void *data
, u64
*val
)
165 *val
= *(unsigned long *)data
;
169 DEFINE_SIMPLE_ATTRIBUTE(fops_ul
, debugfs_ul_get
, debugfs_ul_set
, "%llu\n");
171 static void debugfs_create_ul(const char *name
, umode_t mode
,
172 struct dentry
*parent
, unsigned long *value
)
174 debugfs_create_file(name
, mode
, parent
, value
, &fops_ul
);
177 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
179 static int debugfs_stacktrace_depth_set(void *data
, u64 val
)
181 *(unsigned long *)data
=
182 min_t(unsigned long, val
, MAX_STACK_TRACE_DEPTH
);
187 DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth
, debugfs_ul_get
,
188 debugfs_stacktrace_depth_set
, "%llu\n");
190 static void debugfs_create_stacktrace_depth(const char *name
, umode_t mode
,
191 struct dentry
*parent
,
192 unsigned long *value
)
194 debugfs_create_file(name
, mode
, parent
, value
, &fops_stacktrace_depth
);
197 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
199 struct dentry
*fault_create_debugfs_attr(const char *name
,
200 struct dentry
*parent
, struct fault_attr
*attr
)
202 umode_t mode
= S_IFREG
| S_IRUSR
| S_IWUSR
;
205 dir
= debugfs_create_dir(name
, parent
);
209 debugfs_create_ul("probability", mode
, dir
, &attr
->probability
);
210 debugfs_create_ul("interval", mode
, dir
, &attr
->interval
);
211 debugfs_create_atomic_t("times", mode
, dir
, &attr
->times
);
212 debugfs_create_atomic_t("space", mode
, dir
, &attr
->space
);
213 debugfs_create_ul("verbose", mode
, dir
, &attr
->verbose
);
214 debugfs_create_u32("verbose_ratelimit_interval_ms", mode
, dir
,
215 &attr
->ratelimit_state
.interval
);
216 debugfs_create_u32("verbose_ratelimit_burst", mode
, dir
,
217 &attr
->ratelimit_state
.burst
);
218 debugfs_create_bool("task-filter", mode
, dir
, &attr
->task_filter
);
220 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
221 debugfs_create_stacktrace_depth("stacktrace-depth", mode
, dir
,
222 &attr
->stacktrace_depth
);
223 debugfs_create_ul("require-start", mode
, dir
, &attr
->require_start
);
224 debugfs_create_ul("require-end", mode
, dir
, &attr
->require_end
);
225 debugfs_create_ul("reject-start", mode
, dir
, &attr
->reject_start
);
226 debugfs_create_ul("reject-end", mode
, dir
, &attr
->reject_end
);
227 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
229 attr
->dname
= dget(dir
);
232 EXPORT_SYMBOL_GPL(fault_create_debugfs_attr
);
234 #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */