Add zfault zpool configurations and tests
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 28 Sep 2010 23:32:12 +0000 (16:32 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 12 Oct 2010 22:20:03 +0000 (15:20 -0700)
commit0ee8118bd31d1c160123d0aac9c55455706d5975
tree3ecde46a971389233e729cfe923057987e561f48
parentbaa40d45cbb336765b2f89d934cd9ea690e4f7c9
Add zfault zpool configurations and tests

Eleven new zpool configurations were added to allow testing of various
failure cases.  The first 5 zpool configurations leverage the 'faulty'
md device type which allow us to simuluate IO errors at the block layer.
The last 6 zpool configurations leverage the scsi_debug module provided
by modern kernels.  This device allows you to create virtual scsi
devices which are backed by a ram disk.  With this setup we can verify
the full IO stack by injecting faults at the lowest layer.  Both methods
of fault injection are important to verifying the IO stack.

The zfs code itself also provides a mechanism for error injection
via the zinject command line tool.  While we should also take advantage
of this appraoch to validate the code it does not address any of the
Linux integration issues which are the most concerning.  For the
moment we're trusting that the upstream Solaris guys are running
zinject and would have caught internal zfs logic errors.

Currently, there are 6 r/w test cases layered on top of the 'faulty'
md devices.  They include 3 writes tests for soft/transient errors,
hard/permenant errors, and all writes error to the device.  There
are 3 matching read tests for soft/transient errors, hard/permenant
errors, and fixable read error with a write.  Although for this last
case zfs doesn't do anything special.

The seventh test case verifies zfs detects and corrects checksum
errors.  In this case one of the drives is extensively damaged and
by dd'ing over large sections of it.  We then ensure zfs logs the
issue and correctly rebuilds the damage.

The next  test cases use the scsi_debug configuration to injects error
at the bottom of the scsi stack.  This ensures we find any flaws in the
scsi midlayer or our usage of it.  Plus it stresses the device specific
retry, timeout, and error handling outside of zfs's control.

The eighth test case is to verify that the system correctly handles an
intermittent device timeout.  Here the scsi_debug device drops 1 in N
requests resulting in a retry either at the block level.  The ZFS code
does specify the FAILFAST option but it turns out that for this case
the Linux IO stack with still retry the command.  The FAILFAST logic
located in scsi_noretry_cmd() does no seem to apply to the simply
timeout case.  It appears to be more targeted to specific device or
transport errors from the lower layers.

The ninth test case handles a persistent failure in which the device
is removed from the system by Linux.  The test verifies that the failure
is detected, the device is made unavailable, and then can be successfully
re-add when brought back online.  Additionally, it ensures that errors
and events are logged to the correct places and the no data corruption
has occured due to the failure.
22 files changed:
scripts/Makefile.am
scripts/Makefile.in
scripts/common.sh.in
scripts/zconfig.sh
scripts/zfault.sh [new file with mode: 0755]
scripts/zpool-config/Makefile.am
scripts/zpool-config/Makefile.in
scripts/zpool-config/lo-faulty-raid0.sh [new file with mode: 0644]
scripts/zpool-config/lo-faulty-raid10.sh [new file with mode: 0644]
scripts/zpool-config/lo-faulty-raidz.sh [new file with mode: 0644]
scripts/zpool-config/lo-faulty-raidz2.sh [new file with mode: 0644]
scripts/zpool-config/lo-faulty-raidz3.sh [new file with mode: 0644]
scripts/zpool-config/lo-raid0.sh
scripts/zpool-config/lo-raid10.sh
scripts/zpool-config/lo-raidz.sh
scripts/zpool-config/lo-raidz2.sh
scripts/zpool-config/scsi_debug-noraid.sh [new file with mode: 0644]
scripts/zpool-config/scsi_debug-raid0.sh [new file with mode: 0644]
scripts/zpool-config/scsi_debug-raid10.sh [new file with mode: 0644]
scripts/zpool-config/scsi_debug-raidz.sh [new file with mode: 0644]
scripts/zpool-config/scsi_debug-raidz2.sh [new file with mode: 0644]
scripts/zpool-config/scsi_debug-raidz3.sh [new file with mode: 0644]