]>
Commit | Line | Data |
---|---|---|
6ff1cb35 AM |
1 | #include <linux/kernel.h> |
2 | #include <linux/init.h> | |
3 | #include <linux/random.h> | |
d43c36dc | 4 | #include <linux/sched.h> |
6ff1cb35 AM |
5 | #include <linux/stat.h> |
6 | #include <linux/types.h> | |
7 | #include <linux/fs.h> | |
8bc3bcc9 | 8 | #include <linux/export.h> |
f4f154fd | 9 | #include <linux/interrupt.h> |
329409ae | 10 | #include <linux/stacktrace.h> |
6ff1cb35 AM |
11 | #include <linux/fault-inject.h> |
12 | ||
13 | /* | |
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. | |
16 | */ | |
6cba00ea | 17 | int setup_fault_attr(struct fault_attr *attr, char *str) |
6ff1cb35 AM |
18 | { |
19 | unsigned long probability; | |
20 | unsigned long interval; | |
21 | int times; | |
22 | int space; | |
23 | ||
24 | /* "<interval>,<probability>,<space>,<times>" */ | |
25 | if (sscanf(str, "%lu,%lu,%d,%d", | |
26 | &interval, &probability, &space, ×) < 4) { | |
27 | printk(KERN_WARNING | |
28 | "FAULT_INJECTION: failed to parse arguments\n"); | |
29 | return 0; | |
30 | } | |
31 | ||
32 | attr->probability = probability; | |
33 | attr->interval = interval; | |
34 | atomic_set(&attr->times, times); | |
35 | atomic_set(&attr->space, space); | |
36 | ||
37 | return 1; | |
38 | } | |
6cba00ea | 39 | EXPORT_SYMBOL_GPL(setup_fault_attr); |
6ff1cb35 AM |
40 | |
41 | static void fail_dump(struct fault_attr *attr) | |
42 | { | |
6adc4a22 DM |
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, | |
bb387002 | 47 | attr->interval, attr->probability, |
6adc4a22 DM |
48 | atomic_read(&attr->space), |
49 | atomic_read(&attr->times)); | |
50 | if (attr->verbose > 1) | |
51 | dump_stack(); | |
52 | } | |
6ff1cb35 AM |
53 | } |
54 | ||
55 | #define atomic_dec_not_zero(v) atomic_add_unless((v), -1, 0) | |
56 | ||
08b3df2d | 57 | static bool fail_task(struct fault_attr *attr, struct task_struct *task) |
f4f154fd | 58 | { |
f2ad37da | 59 | return in_task() && task->make_it_fail; |
f4f154fd AM |
60 | } |
61 | ||
a124c28e DM |
62 | #define MAX_STACK_TRACE_DEPTH 32 |
63 | ||
1df49008 | 64 | #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER |
329409ae | 65 | |
08b3df2d | 66 | static bool fail_stacktrace(struct fault_attr *attr) |
329409ae AM |
67 | { |
68 | struct stack_trace trace; | |
69 | int depth = attr->stacktrace_depth; | |
70 | unsigned long entries[MAX_STACK_TRACE_DEPTH]; | |
71 | int n; | |
72 | bool found = (attr->require_start == 0 && attr->require_end == ULONG_MAX); | |
73 | ||
74 | if (depth == 0) | |
75 | return found; | |
76 | ||
77 | trace.nr_entries = 0; | |
78 | trace.entries = entries; | |
a124c28e | 79 | trace.max_entries = depth; |
329409ae | 80 | trace.skip = 1; |
329409ae | 81 | |
ab1b6f03 | 82 | save_stack_trace(&trace); |
329409ae AM |
83 | for (n = 0; n < trace.nr_entries; n++) { |
84 | if (attr->reject_start <= entries[n] && | |
85 | entries[n] < attr->reject_end) | |
08b3df2d | 86 | return false; |
329409ae AM |
87 | if (attr->require_start <= entries[n] && |
88 | entries[n] < attr->require_end) | |
08b3df2d | 89 | found = true; |
329409ae AM |
90 | } |
91 | return found; | |
92 | } | |
93 | ||
94 | #else | |
95 | ||
08b3df2d | 96 | static inline bool fail_stacktrace(struct fault_attr *attr) |
329409ae | 97 | { |
1df49008 | 98 | return true; |
329409ae AM |
99 | } |
100 | ||
1df49008 | 101 | #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */ |
329409ae | 102 | |
6ff1cb35 AM |
103 | /* |
104 | * This code is stolen from failmalloc-1.0 | |
105 | * http://www.nongnu.org/failmalloc/ | |
106 | */ | |
107 | ||
08b3df2d | 108 | bool should_fail(struct fault_attr *attr, ssize_t size) |
6ff1cb35 | 109 | { |
1203c8e6 AM |
110 | if (in_task()) { |
111 | unsigned int fail_nth = READ_ONCE(current->fail_nth); | |
112 | ||
113 | if (fail_nth && !WRITE_ONCE(current->fail_nth, fail_nth - 1)) | |
e41d5818 | 114 | goto fail; |
1203c8e6 | 115 | |
e41d5818 DV |
116 | return false; |
117 | } | |
118 | ||
f39cdaeb AB |
119 | /* No need to check any other properties if the probability is 0 */ |
120 | if (attr->probability == 0) | |
121 | return false; | |
122 | ||
f4f154fd | 123 | if (attr->task_filter && !fail_task(attr, current)) |
08b3df2d | 124 | return false; |
f4f154fd | 125 | |
6ff1cb35 | 126 | if (atomic_read(&attr->times) == 0) |
08b3df2d | 127 | return false; |
6ff1cb35 AM |
128 | |
129 | if (atomic_read(&attr->space) > size) { | |
130 | atomic_sub(size, &attr->space); | |
08b3df2d | 131 | return false; |
6ff1cb35 AM |
132 | } |
133 | ||
134 | if (attr->interval > 1) { | |
135 | attr->count++; | |
136 | if (attr->count % attr->interval) | |
08b3df2d | 137 | return false; |
6ff1cb35 AM |
138 | } |
139 | ||
f39fee5f | 140 | if (attr->probability <= prandom_u32() % 100) |
f1729c28 | 141 | return false; |
6ff1cb35 | 142 | |
f1729c28 DM |
143 | if (!fail_stacktrace(attr)) |
144 | return false; | |
6ff1cb35 | 145 | |
e41d5818 | 146 | fail: |
6ff1cb35 AM |
147 | fail_dump(attr); |
148 | ||
149 | if (atomic_read(&attr->times) != -1) | |
150 | atomic_dec_not_zero(&attr->times); | |
151 | ||
08b3df2d | 152 | return true; |
6ff1cb35 | 153 | } |
df87ecbf | 154 | EXPORT_SYMBOL_GPL(should_fail); |
6ff1cb35 AM |
155 | |
156 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS | |
157 | ||
8b88b099 | 158 | static int debugfs_ul_set(void *data, u64 val) |
6ff1cb35 AM |
159 | { |
160 | *(unsigned long *)data = val; | |
8b88b099 | 161 | return 0; |
6ff1cb35 AM |
162 | } |
163 | ||
8b88b099 | 164 | static int debugfs_ul_get(void *data, u64 *val) |
6ff1cb35 | 165 | { |
8b88b099 CH |
166 | *val = *(unsigned long *)data; |
167 | return 0; | |
6ff1cb35 AM |
168 | } |
169 | ||
170 | DEFINE_SIMPLE_ATTRIBUTE(fops_ul, debugfs_ul_get, debugfs_ul_set, "%llu\n"); | |
171 | ||
f4ae40a6 | 172 | static struct dentry *debugfs_create_ul(const char *name, umode_t mode, |
6ff1cb35 AM |
173 | struct dentry *parent, unsigned long *value) |
174 | { | |
175 | return debugfs_create_file(name, mode, parent, value, &fops_ul); | |
176 | } | |
177 | ||
6ddb23c7 | 178 | #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER |
a124c28e | 179 | |
8307fc25 AM |
180 | static int debugfs_stacktrace_depth_set(void *data, u64 val) |
181 | { | |
182 | *(unsigned long *)data = | |
183 | min_t(unsigned long, val, MAX_STACK_TRACE_DEPTH); | |
184 | ||
185 | return 0; | |
186 | } | |
187 | ||
188 | DEFINE_SIMPLE_ATTRIBUTE(fops_stacktrace_depth, debugfs_ul_get, | |
189 | debugfs_stacktrace_depth_set, "%llu\n"); | |
190 | ||
191 | static struct dentry *debugfs_create_stacktrace_depth( | |
f4ae40a6 | 192 | const char *name, umode_t mode, |
a124c28e DM |
193 | struct dentry *parent, unsigned long *value) |
194 | { | |
195 | return debugfs_create_file(name, mode, parent, value, | |
8307fc25 | 196 | &fops_stacktrace_depth); |
a124c28e | 197 | } |
8307fc25 | 198 | |
6ddb23c7 | 199 | #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */ |
a124c28e | 200 | |
dd48c085 AM |
201 | struct dentry *fault_create_debugfs_attr(const char *name, |
202 | struct dentry *parent, struct fault_attr *attr) | |
6ff1cb35 | 203 | { |
f4ae40a6 | 204 | umode_t mode = S_IFREG | S_IRUSR | S_IWUSR; |
6ff1cb35 AM |
205 | struct dentry *dir; |
206 | ||
dd48c085 | 207 | dir = debugfs_create_dir(name, parent); |
6ff1cb35 | 208 | if (!dir) |
dd48c085 | 209 | return ERR_PTR(-ENOMEM); |
6ff1cb35 | 210 | |
7f5ddcc8 AM |
211 | if (!debugfs_create_ul("probability", mode, dir, &attr->probability)) |
212 | goto fail; | |
213 | if (!debugfs_create_ul("interval", mode, dir, &attr->interval)) | |
214 | goto fail; | |
215 | if (!debugfs_create_atomic_t("times", mode, dir, &attr->times)) | |
216 | goto fail; | |
217 | if (!debugfs_create_atomic_t("space", mode, dir, &attr->space)) | |
218 | goto fail; | |
219 | if (!debugfs_create_ul("verbose", mode, dir, &attr->verbose)) | |
220 | goto fail; | |
6adc4a22 DM |
221 | if (!debugfs_create_u32("verbose_ratelimit_interval_ms", mode, dir, |
222 | &attr->ratelimit_state.interval)) | |
223 | goto fail; | |
224 | if (!debugfs_create_u32("verbose_ratelimit_burst", mode, dir, | |
225 | &attr->ratelimit_state.burst)) | |
226 | goto fail; | |
7f5ddcc8 | 227 | if (!debugfs_create_bool("task-filter", mode, dir, &attr->task_filter)) |
1df49008 AM |
228 | goto fail; |
229 | ||
230 | #ifdef CONFIG_FAULT_INJECTION_STACKTRACE_FILTER | |
231 | ||
7f5ddcc8 AM |
232 | if (!debugfs_create_stacktrace_depth("stacktrace-depth", mode, dir, |
233 | &attr->stacktrace_depth)) | |
234 | goto fail; | |
235 | if (!debugfs_create_ul("require-start", mode, dir, | |
236 | &attr->require_start)) | |
237 | goto fail; | |
238 | if (!debugfs_create_ul("require-end", mode, dir, &attr->require_end)) | |
239 | goto fail; | |
240 | if (!debugfs_create_ul("reject-start", mode, dir, &attr->reject_start)) | |
241 | goto fail; | |
242 | if (!debugfs_create_ul("reject-end", mode, dir, &attr->reject_end)) | |
6ff1cb35 AM |
243 | goto fail; |
244 | ||
1df49008 AM |
245 | #endif /* CONFIG_FAULT_INJECTION_STACKTRACE_FILTER */ |
246 | ||
6adc4a22 | 247 | attr->dname = dget(dir); |
dd48c085 | 248 | return dir; |
6ff1cb35 | 249 | fail: |
dd48c085 | 250 | debugfs_remove_recursive(dir); |
7f5ddcc8 | 251 | |
dd48c085 | 252 | return ERR_PTR(-ENOMEM); |
6ff1cb35 | 253 | } |
df87ecbf | 254 | EXPORT_SYMBOL_GPL(fault_create_debugfs_attr); |
6ff1cb35 AM |
255 | |
256 | #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */ |