2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
7 # exercise xfs_repair repairing broken filesystems
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
16 status=1 # failure is the default!
21 _scratch_unmount 2>/dev/null
25 trap "_cleanup; exit \$status" 0 1 2 3 15
27 # get standard environment, filters and checks
33 # nuke the superblock, AGI, AGF, AGFL; then try repair the damage
37 for structure in 'sb 0' 'agf 0' 'agi 0' 'agfl 0'
39 echo "Corrupting $structure - setting bits to $1"
40 _check_repair $1 "$structure" | uniq |
41 sed -e '/^error following ag 0 unlinked list$/d' \
42 -e '/^bad agbno AGBNO for finobt/d' \
43 -e '/^bad agbno AGBNO for rmapbt/d' \
44 -e '/^bad agbno AGBNO for refcntbt/d' \
45 -e '/^agf has bad CRC/d' \
46 -e '/^agi has bad CRC/d' \
47 -e '/^Missing reverse-mapping record.*/d' \
48 -e '/^unknown block state, ag AGNO, block.*/d'
52 # real QA test starts here
56 _require_no_large_scratch_dev
58 DSIZE="-dsize=100m,agcount=6"
60 # first we need to ensure there are no bogus secondary
61 # superblocks between the primary and first secondary
62 # superblock (hanging around from earlier tests)...
65 _scratch_mkfs_xfs $DSIZE >/dev/null 2>&1
66 if [ $? -ne 0 ] # probably don't have a big enough scratch
68 _notrun "SCRATCH_DEV too small, results would be non-deterministic"
70 _qmount_option noquota
72 $here/src/feature -U $SCRATCH_DEV && \
73 _notrun "UQuota are enabled, test needs controlled sb recovery"
74 $here/src/feature -G $SCRATCH_DEV && \
75 _notrun "GQuota are enabled, test needs controlled sb recovery"
76 $here/src/feature -P $SCRATCH_DEV && \
77 _notrun "PQuota are enabled, test needs controlled sb recovery"
81 eval `xfs_db -r -c "sb 1" -c stack $SCRATCH_DEV | perl -ne '
82 if (/byte offset (\d+), length (\d+)/) {
83 print "clear=", $1 / 512, "\n"; exit
85 [ -z "$clear" ] && echo "Cannot calculate length to clear"
86 $here/src/devzero -v -1 -n "$clear" $SCRATCH_DEV >/dev/null
88 # now kick off the real repair test...
90 _scratch_mkfs_xfs $DSIZE | _filter_mkfs 2>$tmp.mkfs