blob: 918972babcd8f2fb877babb7447d4e9476341af3 [file] [log] [blame]
Akinobu Mitade1ba092006-12-08 02:39:42 -08001Fault injection capabilities infrastructure
2===========================================
3
4See also drivers/md/faulty.c and "every_nth" module option for scsi_debug.
5
6
7Available fault injection capabilities
8--------------------------------------
9
10o failslab
11
12 injects slab allocation failures. (kmalloc(), kmem_cache_alloc(), ...)
13
14o fail_page_alloc
15
16 injects page allocation failures. (alloc_pages(), get_free_pages(), ...)
17
Davidlohr Buesoab51fba2015-06-29 23:26:02 -070018o fail_futex
19
20 injects futex deadlock and uaddr fault errors.
21
Akinobu Mitade1ba092006-12-08 02:39:42 -080022o fail_make_request
23
Don Mullis5d0ffa22006-12-08 02:39:50 -080024 injects disk IO errors on devices permitted by setting
Akinobu Mitade1ba092006-12-08 02:39:42 -080025 /sys/block/<device>/make-it-fail or
26 /sys/block/<device>/<partition>/make-it-fail. (generic_make_request())
27
Per Forlin1e4cb222011-08-19 14:52:38 +020028o fail_mmc_request
29
30 injects MMC data errors on devices permitted by setting
31 debugfs entries under /sys/kernel/debug/mmc0/fail_mmc_request
32
Akinobu Mitade1ba092006-12-08 02:39:42 -080033Configure fault-injection capabilities behavior
34-----------------------------------------------
35
36o debugfs entries
37
38fault-inject-debugfs kernel module provides some debugfs entries for runtime
39configuration of fault-injection capabilities.
40
GeunSik Lim156f5a72009-06-02 15:01:37 +090041- /sys/kernel/debug/fail*/probability:
Akinobu Mitade1ba092006-12-08 02:39:42 -080042
43 likelihood of failure injection, in percent.
44 Format: <percent>
45
Don Mullis5d0ffa22006-12-08 02:39:50 -080046 Note that one-failure-per-hundred is a very high error rate
47 for some testcases. Consider setting probability=100 and configure
GeunSik Lim156f5a72009-06-02 15:01:37 +090048 /sys/kernel/debug/fail*/interval for such testcases.
Akinobu Mitade1ba092006-12-08 02:39:42 -080049
GeunSik Lim156f5a72009-06-02 15:01:37 +090050- /sys/kernel/debug/fail*/interval:
Akinobu Mitade1ba092006-12-08 02:39:42 -080051
52 specifies the interval between failures, for calls to
53 should_fail() that pass all the other tests.
54
55 Note that if you enable this, by setting interval>1, you will
56 probably want to set probability=100.
57
GeunSik Lim156f5a72009-06-02 15:01:37 +090058- /sys/kernel/debug/fail*/times:
Akinobu Mitade1ba092006-12-08 02:39:42 -080059
60 specifies how many times failures may happen at most.
61 A value of -1 means "no limit".
62
GeunSik Lim156f5a72009-06-02 15:01:37 +090063- /sys/kernel/debug/fail*/space:
Akinobu Mitade1ba092006-12-08 02:39:42 -080064
65 specifies an initial resource "budget", decremented by "size"
66 on each call to should_fail(,size). Failure injection is
67 suppressed until "space" reaches zero.
68
GeunSik Lim156f5a72009-06-02 15:01:37 +090069- /sys/kernel/debug/fail*/verbose
Akinobu Mitade1ba092006-12-08 02:39:42 -080070
71 Format: { 0 | 1 | 2 }
Don Mullis5d0ffa22006-12-08 02:39:50 -080072 specifies the verbosity of the messages when failure is
73 injected. '0' means no messages; '1' will print only a single
74 log line per failure; '2' will print a call trace too -- useful
75 to debug the problems revealed by fault injection.
Akinobu Mitade1ba092006-12-08 02:39:42 -080076
GeunSik Lim156f5a72009-06-02 15:01:37 +090077- /sys/kernel/debug/fail*/task-filter:
Akinobu Mitade1ba092006-12-08 02:39:42 -080078
Don Mullis5d0ffa22006-12-08 02:39:50 -080079 Format: { 'Y' | 'N' }
80 A value of 'N' disables filtering by process (default).
Akinobu Mitade1ba092006-12-08 02:39:42 -080081 Any positive value limits failures to only processes indicated by
82 /proc/<pid>/make-it-fail==1.
83
GeunSik Lim156f5a72009-06-02 15:01:37 +090084- /sys/kernel/debug/fail*/require-start:
85- /sys/kernel/debug/fail*/require-end:
86- /sys/kernel/debug/fail*/reject-start:
87- /sys/kernel/debug/fail*/reject-end:
Akinobu Mitade1ba092006-12-08 02:39:42 -080088
89 specifies the range of virtual addresses tested during
90 stacktrace walking. Failure is injected only if some caller
Akinobu Mita329409a2006-12-08 02:39:48 -080091 in the walked stacktrace lies within the required range, and
92 none lies within the rejected range.
93 Default required range is [0,ULONG_MAX) (whole of virtual address space).
94 Default rejected range is [0,0).
Akinobu Mitade1ba092006-12-08 02:39:42 -080095
GeunSik Lim156f5a72009-06-02 15:01:37 +090096- /sys/kernel/debug/fail*/stacktrace-depth:
Akinobu Mitade1ba092006-12-08 02:39:42 -080097
98 specifies the maximum stacktrace depth walked during search
Don Mullis5d0ffa22006-12-08 02:39:50 -080099 for a caller within [require-start,require-end) OR
100 [reject-start,reject-end).
Akinobu Mitade1ba092006-12-08 02:39:42 -0800101
GeunSik Lim156f5a72009-06-02 15:01:37 +0900102- /sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem:
Akinobu Mitade1ba092006-12-08 02:39:42 -0800103
Don Mullis5d0ffa22006-12-08 02:39:50 -0800104 Format: { 'Y' | 'N' }
105 default is 'N', setting it to 'Y' won't inject failures into
Akinobu Mitade1ba092006-12-08 02:39:42 -0800106 highmem/user allocations.
107
GeunSik Lim156f5a72009-06-02 15:01:37 +0900108- /sys/kernel/debug/failslab/ignore-gfp-wait:
109- /sys/kernel/debug/fail_page_alloc/ignore-gfp-wait:
Akinobu Mitade1ba092006-12-08 02:39:42 -0800110
Don Mullis5d0ffa22006-12-08 02:39:50 -0800111 Format: { 'Y' | 'N' }
112 default is 'N', setting it to 'Y' will inject failures
Akinobu Mitade1ba092006-12-08 02:39:42 -0800113 only into non-sleep allocations (GFP_ATOMIC allocations).
114
GeunSik Lim156f5a72009-06-02 15:01:37 +0900115- /sys/kernel/debug/fail_page_alloc/min-order:
Akinobu Mita54114992007-07-15 23:40:23 -0700116
117 specifies the minimum page allocation order to be injected
118 failures.
119
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700120- /sys/kernel/debug/fail_futex/ignore-private:
121
122 Format: { 'Y' | 'N' }
123 default is 'N', setting it to 'Y' will disable failure injections
124 when dealing with private (address space) futexes.
125
Akinobu Mitade1ba092006-12-08 02:39:42 -0800126o Boot option
127
128In order to inject faults while debugfs is not available (early boot time),
129use the boot option:
130
131 failslab=
132 fail_page_alloc=
Per Forlin1e4cb222011-08-19 14:52:38 +0200133 fail_make_request=
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700134 fail_futex=
Per Forlin199e3f42011-09-13 23:03:30 +0200135 mmc_core.fail_request=<interval>,<probability>,<space>,<times>
Akinobu Mitade1ba092006-12-08 02:39:42 -0800136
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700137o proc entries
138
Akinobu Mita168c42b2017-07-14 14:50:00 -0700139- /proc/<pid>/fail-nth:
140- /proc/self/task/<tid>/fail-nth:
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700141
Akinobu Mita9049f2f2017-07-14 14:49:52 -0700142 Write to this file of integer N makes N-th call in the task fail.
Akinobu Mitabfc74092017-07-14 14:49:54 -0700143 Read from this file returns a integer value. A value of '0' indicates
144 that the fault setup with a previous write to this file was injected.
145 A positive integer N indicates that the fault wasn't yet injected.
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700146 Note that this file enables all types of faults (slab, futex, etc).
147 This setting takes precedence over all other generic debugfs settings
148 like probability, interval, times, etc. But per-capability settings
149 (e.g. fail_futex/ignore-private) take precedence over it.
150
151 This feature is intended for systematic testing of faults in a single
152 system call. See an example below.
153
Akinobu Mitade1ba092006-12-08 02:39:42 -0800154How to add new fault injection capability
155-----------------------------------------
156
157o #include <linux/fault-inject.h>
158
159o define the fault attributes
160
161 DECLARE_FAULT_INJECTION(name);
162
163 Please see the definition of struct fault_attr in fault-inject.h
164 for details.
165
Don Mullis5d0ffa22006-12-08 02:39:50 -0800166o provide a way to configure fault attributes
Akinobu Mitade1ba092006-12-08 02:39:42 -0800167
168- boot option
169
170 If you need to enable the fault injection capability from boot time, you can
Don Mullis5d0ffa22006-12-08 02:39:50 -0800171 provide boot option to configure it. There is a helper function for it:
Akinobu Mitade1ba092006-12-08 02:39:42 -0800172
Don Mullis5d0ffa22006-12-08 02:39:50 -0800173 setup_fault_attr(attr, str);
Akinobu Mitade1ba092006-12-08 02:39:42 -0800174
175- debugfs entries
176
177 failslab, fail_page_alloc, and fail_make_request use this way.
Don Mullis5d0ffa22006-12-08 02:39:50 -0800178 Helper functions:
Akinobu Mitade1ba092006-12-08 02:39:42 -0800179
Akinobu Mitadd48c082011-08-03 16:21:01 -0700180 fault_create_debugfs_attr(name, parent, attr);
Akinobu Mitade1ba092006-12-08 02:39:42 -0800181
182- module parameters
183
184 If the scope of the fault injection capability is limited to a
185 single kernel module, it is better to provide module parameters to
186 configure the fault attributes.
187
188o add a hook to insert failures
189
Don Mullis5d0ffa22006-12-08 02:39:50 -0800190 Upon should_fail() returning true, client code should inject a failure.
Akinobu Mitade1ba092006-12-08 02:39:42 -0800191
Don Mullis5d0ffa22006-12-08 02:39:50 -0800192 should_fail(attr, size);
Akinobu Mitade1ba092006-12-08 02:39:42 -0800193
194Application Examples
195--------------------
196
Akinobu Mita18584872007-07-15 23:40:24 -0700197o Inject slab allocation failures into module init/exit code
Akinobu Mitade1ba092006-12-08 02:39:42 -0800198
Akinobu Mitade1ba092006-12-08 02:39:42 -0800199#!/bin/bash
200
Akinobu Mita18584872007-07-15 23:40:24 -0700201FAILTYPE=failslab
GeunSik Lim156f5a72009-06-02 15:01:37 +0900202echo Y > /sys/kernel/debug/$FAILTYPE/task-filter
203echo 10 > /sys/kernel/debug/$FAILTYPE/probability
204echo 100 > /sys/kernel/debug/$FAILTYPE/interval
205echo -1 > /sys/kernel/debug/$FAILTYPE/times
206echo 0 > /sys/kernel/debug/$FAILTYPE/space
207echo 2 > /sys/kernel/debug/$FAILTYPE/verbose
208echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-wait
Akinobu Mitade1ba092006-12-08 02:39:42 -0800209
Akinobu Mita18584872007-07-15 23:40:24 -0700210faulty_system()
Akinobu Mitade1ba092006-12-08 02:39:42 -0800211{
Akinobu Mita18584872007-07-15 23:40:24 -0700212 bash -c "echo 1 > /proc/self/make-it-fail && exec $*"
Akinobu Mitade1ba092006-12-08 02:39:42 -0800213}
214
Akinobu Mita18584872007-07-15 23:40:24 -0700215if [ $# -eq 0 ]
216then
217 echo "Usage: $0 modulename [ modulename ... ]"
218 exit 1
219fi
Akinobu Mitade1ba092006-12-08 02:39:42 -0800220
Akinobu Mita18584872007-07-15 23:40:24 -0700221for m in $*
222do
223 echo inserting $m...
224 faulty_system modprobe $m
Akinobu Mitade1ba092006-12-08 02:39:42 -0800225
Akinobu Mita18584872007-07-15 23:40:24 -0700226 echo removing $m...
227 faulty_system modprobe -r $m
228done
Akinobu Mitade1ba092006-12-08 02:39:42 -0800229
230------------------------------------------------------------------------------
231
Akinobu Mita18584872007-07-15 23:40:24 -0700232o Inject page allocation failures only for a specific module
Akinobu Mitade1ba092006-12-08 02:39:42 -0800233
Akinobu Mitade1ba092006-12-08 02:39:42 -0800234#!/bin/bash
235
Akinobu Mita18584872007-07-15 23:40:24 -0700236FAILTYPE=fail_page_alloc
237module=$1
Akinobu Mitade1ba092006-12-08 02:39:42 -0800238
Akinobu Mita18584872007-07-15 23:40:24 -0700239if [ -z $module ]
240then
241 echo "Usage: $0 <modulename>"
242 exit 1
243fi
Akinobu Mitade1ba092006-12-08 02:39:42 -0800244
Akinobu Mita18584872007-07-15 23:40:24 -0700245modprobe $module
Akinobu Mitade1ba092006-12-08 02:39:42 -0800246
Akinobu Mita18584872007-07-15 23:40:24 -0700247if [ ! -d /sys/module/$module/sections ]
248then
249 echo Module $module is not loaded
250 exit 1
251fi
252
GeunSik Lim156f5a72009-06-02 15:01:37 +0900253cat /sys/module/$module/sections/.text > /sys/kernel/debug/$FAILTYPE/require-start
254cat /sys/module/$module/sections/.data > /sys/kernel/debug/$FAILTYPE/require-end
Akinobu Mita18584872007-07-15 23:40:24 -0700255
GeunSik Lim156f5a72009-06-02 15:01:37 +0900256echo N > /sys/kernel/debug/$FAILTYPE/task-filter
257echo 10 > /sys/kernel/debug/$FAILTYPE/probability
258echo 100 > /sys/kernel/debug/$FAILTYPE/interval
259echo -1 > /sys/kernel/debug/$FAILTYPE/times
260echo 0 > /sys/kernel/debug/$FAILTYPE/space
261echo 2 > /sys/kernel/debug/$FAILTYPE/verbose
262echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-wait
263echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-highmem
264echo 10 > /sys/kernel/debug/$FAILTYPE/stacktrace-depth
Akinobu Mita18584872007-07-15 23:40:24 -0700265
GeunSik Lim156f5a72009-06-02 15:01:37 +0900266trap "echo 0 > /sys/kernel/debug/$FAILTYPE/probability" SIGINT SIGTERM EXIT
Akinobu Mita18584872007-07-15 23:40:24 -0700267
268echo "Injecting errors into the module $module... (interrupt to stop)"
269sleep 1000000
Akinobu Mitade1ba092006-12-08 02:39:42 -0800270
Akinobu Mitac24aa642012-07-30 14:43:20 -0700271Tool to run command with failslab or fail_page_alloc
272----------------------------------------------------
273In order to make it easier to accomplish the tasks mentioned above, we can use
274tools/testing/fault-injection/failcmd.sh. Please run a command
275"./tools/testing/fault-injection/failcmd.sh --help" for more information and
276see the following examples.
277
278Examples:
279
280Run a command "make -C tools/testing/selftests/ run_tests" with injecting slab
281allocation failure.
282
283 # ./tools/testing/fault-injection/failcmd.sh \
284 -- make -C tools/testing/selftests/ run_tests
285
286Same as above except to specify 100 times failures at most instead of one time
287at most by default.
288
289 # ./tools/testing/fault-injection/failcmd.sh --times=100 \
290 -- make -C tools/testing/selftests/ run_tests
291
292Same as above except to inject page allocation failure instead of slab
293allocation failure.
294
295 # env FAILCMD_TYPE=fail_page_alloc \
296 ./tools/testing/fault-injection/failcmd.sh --times=100 \
297 -- make -C tools/testing/selftests/ run_tests
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700298
299Systematic faults using fail-nth
300---------------------------------
301
302The following code systematically faults 0-th, 1-st, 2-nd and so on
303capabilities in the socketpair() system call.
304
305#include <sys/types.h>
306#include <sys/stat.h>
307#include <sys/socket.h>
308#include <sys/syscall.h>
309#include <fcntl.h>
310#include <unistd.h>
311#include <string.h>
312#include <stdlib.h>
313#include <stdio.h>
314#include <errno.h>
315
316int main()
317{
318 int i, err, res, fail_nth, fds[2];
319 char buf[128];
320
321 system("echo N > /sys/kernel/debug/failslab/ignore-gfp-wait");
322 sprintf(buf, "/proc/self/task/%ld/fail-nth", syscall(SYS_gettid));
323 fail_nth = open(buf, O_RDWR);
Akinobu Mita9049f2f2017-07-14 14:49:52 -0700324 for (i = 1;; i++) {
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700325 sprintf(buf, "%d", i);
326 write(fail_nth, buf, strlen(buf));
327 res = socketpair(AF_LOCAL, SOCK_STREAM, 0, fds);
328 err = errno;
Akinobu Mitabfc74092017-07-14 14:49:54 -0700329 pread(fail_nth, buf, sizeof(buf), 0);
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700330 if (res == 0) {
331 close(fds[0]);
332 close(fds[1]);
333 }
Akinobu Mitabfc74092017-07-14 14:49:54 -0700334 printf("%d-th fault %c: res=%d/%d\n", i, atoi(buf) ? 'N' : 'Y',
335 res, err);
336 if (atoi(buf))
Dmitry Vyukove41d58182017-07-12 14:34:35 -0700337 break;
338 }
339 return 0;
340}
341
342An example output:
343
Dmitry Vyukove41d58182017-07-12 14:34:35 -07003441-th fault Y: res=-1/23
3452-th fault Y: res=-1/23
3463-th fault Y: res=-1/12
3474-th fault Y: res=-1/12
3485-th fault Y: res=-1/23
3496-th fault Y: res=-1/23
3507-th fault Y: res=-1/23
3518-th fault Y: res=-1/12
3529-th fault Y: res=-1/12
35310-th fault Y: res=-1/12
35411-th fault Y: res=-1/12
35512-th fault Y: res=-1/12
35613-th fault Y: res=-1/12
35714-th fault Y: res=-1/12
35815-th fault Y: res=-1/12
35916-th fault N: res=0/12