fault-injection.txt 6.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Fault injection capabilities infrastructure
===========================================

See also drivers/md/faulty.c and "every_nth" module option for scsi_debug.


Available fault injection capabilities
--------------------------------------

o failslab

  injects slab allocation failures. (kmalloc(), kmem_cache_alloc(), ...)

o fail_page_alloc

  injects page allocation failures. (alloc_pages(), get_free_pages(), ...)

o fail_make_request

20
  injects disk IO errors on devices permitted by setting
21 22 23
  /sys/block/<device>/make-it-fail or
  /sys/block/<device>/<partition>/make-it-fail. (generic_make_request())

24 25 26 27 28
o fail_mmc_request

  injects MMC data errors on devices permitted by setting
  debugfs entries under /sys/kernel/debug/mmc0/fail_mmc_request

29 30 31 32 33 34 35 36
Configure fault-injection capabilities behavior
-----------------------------------------------

o debugfs entries

fault-inject-debugfs kernel module provides some debugfs entries for runtime
configuration of fault-injection capabilities.

37
- /sys/kernel/debug/fail*/probability:
38 39 40 41

	likelihood of failure injection, in percent.
	Format: <percent>

42 43
	Note that one-failure-per-hundred is a very high error rate
	for some testcases.  Consider setting probability=100 and configure
44
	/sys/kernel/debug/fail*/interval for such testcases.
45

46
- /sys/kernel/debug/fail*/interval:
47 48 49 50 51 52 53

	specifies the interval between failures, for calls to
	should_fail() that pass all the other tests.

	Note that if you enable this, by setting interval>1, you will
	probably want to set probability=100.

54
- /sys/kernel/debug/fail*/times:
55 56 57 58

	specifies how many times failures may happen at most.
	A value of -1 means "no limit".

59
- /sys/kernel/debug/fail*/space:
60 61 62 63 64

	specifies an initial resource "budget", decremented by "size"
	on each call to should_fail(,size).  Failure injection is
	suppressed until "space" reaches zero.

65
- /sys/kernel/debug/fail*/verbose
66 67

	Format: { 0 | 1 | 2 }
68 69 70 71
	specifies the verbosity of the messages when failure is
	injected.  '0' means no messages; '1' will print only a single
	log line per failure; '2' will print a call trace too -- useful
	to debug the problems revealed by fault injection.
72

73
- /sys/kernel/debug/fail*/task-filter:
74

75 76
	Format: { 'Y' | 'N' }
	A value of 'N' disables filtering by process (default).
77 78 79
	Any positive value limits failures to only processes indicated by
	/proc/<pid>/make-it-fail==1.

80 81 82 83
- /sys/kernel/debug/fail*/require-start:
- /sys/kernel/debug/fail*/require-end:
- /sys/kernel/debug/fail*/reject-start:
- /sys/kernel/debug/fail*/reject-end:
84 85 86

	specifies the range of virtual addresses tested during
	stacktrace walking.  Failure is injected only if some caller
87 88 89 90
	in the walked stacktrace lies within the required range, and
	none lies within the rejected range.
	Default required range is [0,ULONG_MAX) (whole of virtual address space).
	Default rejected range is [0,0).
91

92
- /sys/kernel/debug/fail*/stacktrace-depth:
93 94

	specifies the maximum stacktrace depth walked during search
95 96
	for a caller within [require-start,require-end) OR
	[reject-start,reject-end).
97

98
- /sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem:
99

100 101
	Format: { 'Y' | 'N' }
	default is 'N', setting it to 'Y' won't inject failures into
102 103
	highmem/user allocations.

104 105
- /sys/kernel/debug/failslab/ignore-gfp-wait:
- /sys/kernel/debug/fail_page_alloc/ignore-gfp-wait:
106

107 108
	Format: { 'Y' | 'N' }
	default is 'N', setting it to 'Y' will inject failures
109 110
	only into non-sleep allocations (GFP_ATOMIC allocations).

111
- /sys/kernel/debug/fail_page_alloc/min-order:
112 113 114 115

	specifies the minimum page allocation order to be injected
	failures.

116 117 118 119 120 121 122
o Boot option

In order to inject faults while debugfs is not available (early boot time),
use the boot option:

	failslab=
	fail_page_alloc=
123
	fail_make_request=
124
	mmc_core.fail_request=<interval>,<probability>,<space>,<times>
125 126 127 128 129 130 131 132 133 134 135 136 137

How to add new fault injection capability
-----------------------------------------

o #include <linux/fault-inject.h>

o define the fault attributes

  DECLARE_FAULT_INJECTION(name);

  Please see the definition of struct fault_attr in fault-inject.h
  for details.

138
o provide a way to configure fault attributes
139 140 141 142

- boot option

  If you need to enable the fault injection capability from boot time, you can
143
  provide boot option to configure it. There is a helper function for it:
144

145
	setup_fault_attr(attr, str);
146 147 148 149

- debugfs entries

  failslab, fail_page_alloc, and fail_make_request use this way.
150
  Helper functions:
151

152
	fault_create_debugfs_attr(name, parent, attr);
153 154 155 156 157 158 159 160 161

- module parameters

  If the scope of the fault injection capability is limited to a
  single kernel module, it is better to provide module parameters to
  configure the fault attributes.

o add a hook to insert failures

162
  Upon should_fail() returning true, client code should inject a failure.
163

164
	should_fail(attr, size);
165 166 167 168

Application Examples
--------------------

169
o Inject slab allocation failures into module init/exit code
170 171 172

#!/bin/bash

173
FAILTYPE=failslab
174 175 176 177 178 179 180
echo Y > /sys/kernel/debug/$FAILTYPE/task-filter
echo 10 > /sys/kernel/debug/$FAILTYPE/probability
echo 100 > /sys/kernel/debug/$FAILTYPE/interval
echo -1 > /sys/kernel/debug/$FAILTYPE/times
echo 0 > /sys/kernel/debug/$FAILTYPE/space
echo 2 > /sys/kernel/debug/$FAILTYPE/verbose
echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-wait
181

182
faulty_system()
183
{
184
	bash -c "echo 1 > /proc/self/make-it-fail && exec $*"
185 186
}

187 188 189 190 191 192 193 194 195 196
if [ $# -eq 0 ]
then
	echo "Usage: $0 modulename [ modulename ... ]"
	exit 1
fi

for m in $*
do
	echo inserting $m...
	faulty_system modprobe $m
197

198 199 200
	echo removing $m...
	faulty_system modprobe -r $m
done
201 202 203

------------------------------------------------------------------------------

204
o Inject page allocation failures only for a specific module
205 206 207

#!/bin/bash

208 209
FAILTYPE=fail_page_alloc
module=$1
210

211 212 213 214 215
if [ -z $module ]
then
	echo "Usage: $0 <modulename>"
	exit 1
fi
216

217
modprobe $module
218

219 220 221 222 223 224
if [ ! -d /sys/module/$module/sections ]
then
	echo Module $module is not loaded
	exit 1
fi

225 226
cat /sys/module/$module/sections/.text > /sys/kernel/debug/$FAILTYPE/require-start
cat /sys/module/$module/sections/.data > /sys/kernel/debug/$FAILTYPE/require-end
227

228 229 230 231 232 233 234 235 236
echo N > /sys/kernel/debug/$FAILTYPE/task-filter
echo 10 > /sys/kernel/debug/$FAILTYPE/probability
echo 100 > /sys/kernel/debug/$FAILTYPE/interval
echo -1 > /sys/kernel/debug/$FAILTYPE/times
echo 0 > /sys/kernel/debug/$FAILTYPE/space
echo 2 > /sys/kernel/debug/$FAILTYPE/verbose
echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-wait
echo 1 > /sys/kernel/debug/$FAILTYPE/ignore-gfp-highmem
echo 10 > /sys/kernel/debug/$FAILTYPE/stacktrace-depth
237

238
trap "echo 0 > /sys/kernel/debug/$FAILTYPE/probability" SIGINT SIGTERM EXIT
239 240 241

echo "Injecting errors into the module $module... (interrupt to stop)"
sleep 1000000
242