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 int depth
= attr
->stacktrace_depth
;
69 unsigned long entries
[MAX_STACK_TRACE_DEPTH
];
71 bool found
= (attr
->require_start
== 0 && attr
->require_end
== ULONG_MAX
);
76 nr_entries
= stack_trace_save(entries
, depth
, 1);
77 for (n
= 0; n
< nr_entries
; n
++) {
78 if (attr
->reject_start
<= entries
[n
] &&
79 entries
[n
] < attr
->reject_end
)
81 if (attr
->require_start
<= entries
[n
] &&
82 entries
[n
] < attr
->require_end
)
90 static inline bool fail_stacktrace(struct fault_attr
*attr
)
95 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
98 * This code is stolen from failmalloc-1.0
99 * http://www.nongnu.org/failmalloc/
102 bool should_fail(struct fault_attr
*attr
, ssize_t size
)
105 unsigned int fail_nth
= READ_ONCE(current
->fail_nth
);
108 if (!WRITE_ONCE(current
->fail_nth
, fail_nth
- 1))
115 /* No need to check any other properties if the probability is 0 */
116 if (attr
->probability
== 0)
119 if (attr
->task_filter
&& !fail_task(attr
, current
))
122 if (atomic_read(&attr
->times
) == 0)
125 if (atomic_read(&attr
->space
) > size
) {
126 atomic_sub(size
, &attr
->space
);
130 if (attr
->interval
> 1) {
132 if (attr
->count
% attr
->interval
)
136 if (attr
->probability
<= prandom_u32() % 100)
139 if (!fail_stacktrace(attr
))
145 if (atomic_read(&attr
->times
) != -1)
146 atomic_dec_not_zero(&attr
->times
);
150 EXPORT_SYMBOL_GPL(should_fail
);
152 #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
154 static int debugfs_ul_set(void *data
, u64 val
)
156 *(unsigned long *)data
= val
;
160 static int debugfs_ul_get(void *data
, u64
*val
)
162 *val
= *(unsigned long *)data
;
166 DEFINE_SIMPLE_ATTRIBUTE(fops_ul
, debugfs_ul_get
, debugfs_ul_set
, "%llu\n");
168 static struct dentry
*debugfs_create_ul(const char *name
, umode_t mode
,
169 struct dentry
*parent
, unsigned long *value
)
171 return debugfs_create_file(name
, mode
, parent
, value
, &fops_ul
);
174 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
176 static int debugfs_stacktrace_depth_set(void *data
, u64 val
)
178 *(unsigned long *)data
=
179 min_t(unsigned long, val
, MAX_STACK_TRACE_DEPTH
);
184 DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth
, debugfs_ul_get
,
185 debugfs_stacktrace_depth_set
, "%llu\n");
187 static struct dentry
*debugfs_create_stacktrace_depth(
188 const char *name
, umode_t mode
,
189 struct dentry
*parent
, unsigned long *value
)
191 return debugfs_create_file(name
, mode
, parent
, value
,
192 &fops_stacktrace_depth
);
195 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
197 struct dentry
*fault_create_debugfs_attr(const char *name
,
198 struct dentry
*parent
, struct fault_attr
*attr
)
200 umode_t mode
= S_IFREG
| S_IRUSR
| S_IWUSR
;
203 dir
= debugfs_create_dir(name
, parent
);
205 return ERR_PTR(-ENOMEM
);
207 if (!debugfs_create_ul("probability", mode
, dir
, &attr
->probability
))
209 if (!debugfs_create_ul("interval", mode
, dir
, &attr
->interval
))
211 if (!debugfs_create_atomic_t("times", mode
, dir
, &attr
->times
))
213 if (!debugfs_create_atomic_t("space", mode
, dir
, &attr
->space
))
215 if (!debugfs_create_ul("verbose", mode
, dir
, &attr
->verbose
))
217 if (!debugfs_create_u32("verbose_ratelimit_interval_ms", mode
, dir
,
218 &attr
->ratelimit_state
.interval
))
220 if (!debugfs_create_u32("verbose_ratelimit_burst", mode
, dir
,
221 &attr
->ratelimit_state
.burst
))
223 if (!debugfs_create_bool("task-filter", mode
, dir
, &attr
->task_filter
))
226 #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER
228 if (!debugfs_create_stacktrace_depth("stacktrace-depth", mode
, dir
,
229 &attr
->stacktrace_depth
))
231 if (!debugfs_create_ul("require-start", mode
, dir
,
232 &attr
->require_start
))
234 if (!debugfs_create_ul("require-end", mode
, dir
, &attr
->require_end
))
236 if (!debugfs_create_ul("reject-start", mode
, dir
, &attr
->reject_start
))
238 if (!debugfs_create_ul("reject-end", mode
, dir
, &attr
->reject_end
))
241 #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */
243 attr
->dname
= dget(dir
);
246 debugfs_remove_recursive(dir
);
248 return ERR_PTR(-ENOMEM
);
250 EXPORT_SYMBOL_GPL(fault_create_debugfs_attr
);
252 #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */