mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfs: test repair regression of dir w/ single leafn block
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Eryu Guan <guaneryu@gmail.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
This commit is contained in:
committed by
Eryu Guan
parent
0b0ef1d421
commit
acada47e49
Executable
+71
@@ -0,0 +1,71 @@
|
||||
#! /bin/bash
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (c) 2018 Oracle, Inc. All Rights Reserved.
|
||||
#
|
||||
# FS QA Test No. 495
|
||||
#
|
||||
# Test for two related regressions -- first, check that repair doesn't
|
||||
# repeatedly rebuild directories with a single leafn block; and check that
|
||||
# repair also doesn't crash when it hits a corrupt da btree with a zero before
|
||||
# pointer.
|
||||
#
|
||||
seq=`basename $0`
|
||||
seqres=$RESULT_DIR/$seq
|
||||
echo "QA output created by $seq"
|
||||
|
||||
here=`pwd`
|
||||
tmp=/tmp/$$
|
||||
status=1 # failure is the default!
|
||||
trap "_cleanup; exit \$status" 0 1 2 3 7 15
|
||||
|
||||
_cleanup()
|
||||
{
|
||||
cd /
|
||||
rm -f $tmp.*
|
||||
}
|
||||
|
||||
# get standard environment, filters and checks
|
||||
. ./common/rc
|
||||
. ./common/filter
|
||||
. ./common/populate
|
||||
. ./common/fuzzy
|
||||
|
||||
# real QA test starts here
|
||||
_supported_os Linux
|
||||
_supported_fs xfs
|
||||
_require_scratch_xfs_fuzz_fields
|
||||
|
||||
echo "Format and populate"
|
||||
_scratch_populate_cached nofill > $seqres.full 2>&1
|
||||
|
||||
filter_nbrepair() {
|
||||
grep rebuilding | sed -e 's/directory inode [0-9]*/directory inode XXX/g'
|
||||
}
|
||||
|
||||
run_repair() {
|
||||
_scratch_xfs_repair > $tmp.repair 2>&1
|
||||
cat $tmp.repair >> $seqres.full
|
||||
cat $tmp.repair | filter_nbrepair
|
||||
}
|
||||
|
||||
echo "Check leafn rebuilds"
|
||||
run_repair
|
||||
run_repair
|
||||
|
||||
echo "Fuzz nbtree[0].before to zero"
|
||||
_scratch_mount
|
||||
inum=$(stat -c '%i' $SCRATCH_MNT/S_IFDIR.FMT_NODE)
|
||||
blk_sz=$(_get_block_size $SCRATCH_MNT)
|
||||
_scratch_unmount
|
||||
leaf_offset=$(( (2 ** 35) / blk_sz ))
|
||||
_scratch_xfs_fuzz_metadata_field "nbtree[0].before" "zeroes" "inode ${inum}" \
|
||||
"dblock ${leaf_offset}" >> $seqres.full
|
||||
|
||||
echo "Check nbtree[0].before repair"
|
||||
run_repair
|
||||
run_repair
|
||||
|
||||
# success, all done
|
||||
echo Done
|
||||
status=0
|
||||
exit
|
||||
@@ -0,0 +1,7 @@
|
||||
QA output created by 495
|
||||
Format and populate
|
||||
Check leafn rebuilds
|
||||
Fuzz nbtree[0].before to zero
|
||||
Check nbtree[0].before repair
|
||||
rebuilding directory inode XXX
|
||||
Done
|
||||
@@ -492,3 +492,4 @@
|
||||
492 auto quick fuzz
|
||||
493 auto quick fuzz
|
||||
494 auto quick
|
||||
495 auto quick repair
|
||||
|
||||
Reference in New Issue
Block a user