]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Scrub mirror children without BPs
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 23 Jun 2022 17:36:28 +0000 (10:36 -0700)
committerGitHub <noreply@github.com>
Thu, 23 Jun 2022 17:36:28 +0000 (10:36 -0700)
commitad8b9f940c1e39a38af61934737c1e4cf8ab5c08
tree45d0e726b635f673ed5dd70a20cdfaea0dc628f0
parentdeb1213098e2dc10e6eee5e5c57bb40584e096a6
Scrub mirror children without BPs

When scrubbing a raidz/draid pool, which contains a replacing or
sparing mirror with multiple online children, only one child will
be read.  This is not normally a serious concern because the DTL
records are used to determine where a good copy of the data is.
As long as the data can be read from one child the mirror vdev
will use it to repair gaps in any of its children.  Furthermore,
even if the data which was read is corrupt the raidz code will
detect this and issue its own repair I/O to correct the damage
in the mirror vdev.

However, in the scenario where the DTL is wrong due to silent
data corruption (say due to overwriting one child) and the scrub
happens to read from a child with good data, then the other damaged
mirror child will not be detected nor repaired.

While this is possible for both raidz and draid vdevs, it's most
pronounced when using draid.  This is because by default the zed
will sequentially rebuild a draid pool to a distributed spare,
and the distributed spare half of the mirror is always preferred
since it delivers better performance.  This means the damaged
half of the mirror will go undetected even after scrubbing.

For system administrations this behavior is non-intuitive and in
a worst case scenario could result in the only good copy of the
data being unknowingly detached from the mirror.

This change resolves the issue by reading all replacing/sparing
mirror children when scrubbing.  When the BP isn't available for
verification, then compare the data buffers from each child.  They
must all be identical, if not there's silent damage and an error
is returned to prompt the top-level vdev to issue a repair I/O to
rewrite the data on all of the mirror children.  Since we can't
tell which child was wrong a checksum error is logged against the
replacing or sparing mirror vdev.

Reviewed-by: Mark Maybee <mark.maybee@delphix.com>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #13555
module/zfs/vdev_mirror.c
module/zfs/vdev_raidz.c
tests/runfiles/common.run
tests/test-runner/bin/zts-report.py.in
tests/zfs-tests/tests/Makefile.am
tests/zfs-tests/tests/functional/redundancy/redundancy_draid_damaged1.ksh [moved from tests/zfs-tests/tests/functional/redundancy/redundancy_draid_damaged.ksh with 84% similarity]
tests/zfs-tests/tests/functional/redundancy/redundancy_draid_damaged2.ksh [new file with mode: 0755]