1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/random.h>
4 #include <linux/sched.h>
5 #include <linux/stat.h>
6 #include <linux/types.h>
8 #include <linux/export.h>
9 #include <linux/interrupt.h>
10 #include <linux/stacktrace.h>
11 #include <linux/fault-inject.h>
14 * setup_fault_attr() is a helper function for various __setup handlers, so it
15 * returns 0 on error, because that is what __setup handlers do.
17 int setup_fault_attr(struct fault_attr
*attr
, char *str
)
19 unsigned long probability
;
20 unsigned long interval
;
24 /* "<interval>,<probability>,<space>,<times>" */
25 if (sscanf(str
, "%lu,%lu,%d,%d",
26 &interval
, &probability
, &space
, ×
) < 4) {
28 "FAULT_INJECTION: failed to parse arguments\n");
32 attr
->probability
= probability
;
33 attr
->interval
= interval
;
34 atomic_set(&attr
->times
, times
);
35 atomic_set(&attr
->space
, space
);
39 EXPORT_SYMBOL_GPL(setup_fault_attr
);
41 static void fail_dump(struct fault_attr
*attr
)
43 if (attr
->verbose
> 0 && __ratelimit(&attr
->ratelimit_state
)) {
44 printk(KERN_NOTICE
"FAULT_INJECTION: forcing a failure.\n"
45 "name %pd, interval %lu, probability %lu, "
46 "space %d, times %d\n", attr
->dname
,
47 attr
->interval
, attr
->probability
,
48 atomic_read(&attr
->space
),
49 atomic_read(&attr
->times
));
50 if (attr
->verbose
> 1)
55 #define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0)
57 static bool fail_task(struct fault_attr
*attr
, struct task_struct
*task
)
59 return in_task() && task
->make_it_fail
;
62 #define MAX_STACK_TRACE_DEPTH 32
64 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
66 static bool fail_stacktrace(struct fault_attr
*attr
)
68 struct stack_trace trace
;
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
);
78 trace
.entries
= entries
;
79 trace
.max_entries
= depth
;
82 save_stack_trace(&trace
);
83 for (n
= 0; n
< trace
.nr_entries
; n
++) {
84 if (attr
->reject_start
<= entries
[n
] &&
85 entries
[n
] < attr
->reject_end
)
87 if (attr
->require_start
<= entries
[n
] &&
88 entries
[n
] < attr
->require_end
)
96 static inline bool fail_stacktrace(struct fault_attr
*attr
)
101 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
104 * This code is stolen from failmalloc-1.0
105 * http://www.nongnu.org/failmalloc/
108 bool should_fail(struct fault_attr
*attr
, ssize_t size
)
111 unsigned int fail_nth
= READ_ONCE(current
->fail_nth
);
114 if (!WRITE_ONCE(current
->fail_nth
, fail_nth
- 1))
121 /* No need to check any other properties if the probability is 0 */
122 if (attr
->probability
== 0)
125 if (attr
->task_filter
&& !fail_task(attr
, current
))
128 if (atomic_read(&attr
->times
) == 0)
131 if (atomic_read(&attr
->space
) > size
) {
132 atomic_sub(size
, &attr
->space
);
136 if (attr
->interval
> 1) {
138 if (attr
->count
% attr
->interval
)
142 if (attr
->probability
<= prandom_u32() % 100)
145 if (!fail_stacktrace(attr
))
151 if (atomic_read(&attr
->times
) != -1)
152 atomic_dec_not_zero(&attr
->times
);
156 EXPORT_SYMBOL_GPL(should_fail
);
158 #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
160 static int debugfs_ul_set(void *data
, u64 val
)
162 *(unsigned long *)data
= val
;
166 static int debugfs_ul_get(void *data
, u64
*val
)
168 *val
= *(unsigned long *)data
;
172 DEFINE_SIMPLE_ATTRIBUTE(fops_ul
, debugfs_ul_get
, debugfs_ul_set
, "%llu\n");
174 static struct dentry
*debugfs_create_ul(const char *name
, umode_t mode
,
175 struct dentry
*parent
, unsigned long *value
)
177 return debugfs_create_file(name
, mode
, parent
, value
, &fops_ul
);
180 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
182 static int debugfs_stacktrace_depth_set(void *data
, u64 val
)
184 *(unsigned long *)data
=
185 min_t(unsigned long, val
, MAX_STACK_TRACE_DEPTH
);
190 DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth
, debugfs_ul_get
,
191 debugfs_stacktrace_depth_set
, "%llu\n");
193 static struct dentry
*debugfs_create_stacktrace_depth(
194 const char *name
, umode_t mode
,
195 struct dentry
*parent
, unsigned long *value
)
197 return debugfs_create_file(name
, mode
, parent
, value
,
198 &fops_stacktrace_depth
);
201 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
203 struct dentry
*fault_create_debugfs_attr(const char *name
,
204 struct dentry
*parent
, struct fault_attr
*attr
)
206 umode_t mode
= S_IFREG
| S_IRUSR
| S_IWUSR
;
209 dir
= debugfs_create_dir(name
, parent
);
211 return ERR_PTR(-ENOMEM
);
213 if (!debugfs_create_ul("probability", mode
, dir
, &attr
->probability
))
215 if (!debugfs_create_ul("interval", mode
, dir
, &attr
->interval
))
217 if (!debugfs_create_atomic_t("times", mode
, dir
, &attr
->times
))
219 if (!debugfs_create_atomic_t("space", mode
, dir
, &attr
->space
))
221 if (!debugfs_create_ul("verbose", mode
, dir
, &attr
->verbose
))
223 if (!debugfs_create_u32("verbose_ratelimit_interval_ms", mode
, dir
,
224 &attr
->ratelimit_state
.interval
))
226 if (!debugfs_create_u32("verbose_ratelimit_burst", mode
, dir
,
227 &attr
->ratelimit_state
.burst
))
229 if (!debugfs_create_bool("task-filter", mode
, dir
, &attr
->task_filter
))
232 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
234 if (!debugfs_create_stacktrace_depth("stacktrace-depth", mode
, dir
,
235 &attr
->stacktrace_depth
))
237 if (!debugfs_create_ul("require-start", mode
, dir
,
238 &attr
->require_start
))
240 if (!debugfs_create_ul("require-end", mode
, dir
, &attr
->require_end
))
242 if (!debugfs_create_ul("reject-start", mode
, dir
, &attr
->reject_start
))
244 if (!debugfs_create_ul("reject-end", mode
, dir
, &attr
->reject_end
))
247 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
249 attr
->dname
= dget(dir
);
252 debugfs_remove_recursive(dir
);
254 return ERR_PTR(-ENOMEM
);
256 EXPORT_SYMBOL_GPL(fault_create_debugfs_attr
);
258 #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */