4549597c251d3c3bbe7e382f938b672240305060
[xfstests-dev.git] / tests / xfs / 087
1 #! /bin/bash
2 # FS QA Test No. 087
3 #
4 # Create and populate an XFS filesystem, corrupt the AGI, then see how
5 # the kernel and xfs_repair deal with it.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015 Oracle, Inc.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36     cd /
37     #rm -f $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/attr
44 . ./common/populate
45
46 # real QA test starts here
47 _supported_fs xfs
48 _supported_os Linux
49
50 _require_scratch
51 test -n "${FORCE_FUZZ}" || _require_scratch_xfs_crc
52 _require_attrs
53 _require_populate_commands
54 _require_xfs_db_blocktrash_z_command
55 test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-n 8 -3"
56
57 rm -f $seqres.full
58 TESTDIR="${SCRATCH_MNT}/scratchdir"
59 TESTFILE="${TESTDIR}/testfile"
60
61 echo "+ create scratch fs"
62 _scratch_mkfs_xfs > /dev/null
63
64 echo "+ mount fs image"
65 _scratch_mount
66 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
67
68 echo "+ make some files"
69 mkdir -p "${TESTDIR}"
70 for x in `seq 1 1024`; do
71         touch "${SCRATCH_MNT}/junk.${x}"
72         inode="$(stat -c '%i' "${SCRATCH_MNT}/junk.${x}")"
73         if [ "$x" -gt 512 ] && [ "$((inode % 64))" -eq 0 ]; then
74                 mv "${SCRATCH_MNT}/junk.${x}" "${TESTFILE}.1"
75                 break
76         fi
77 done
78 for x in `seq 2 64`; do
79         touch "${TESTFILE}.${x}"
80 done
81 inode="$(stat -c '%i' "${TESTFILE}.1")"
82 agcount="$($XFS_INFO_PROG "${SCRATCH_MNT}" | grep agcount= | sed -e 's/^.*agcount=\([0-9]*\),.*$/\1/g')"
83 umount "${SCRATCH_MNT}"
84
85 echo "+ check fs"
86 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
87
88 echo "+ corrupt image"
89 for ag in $(seq 1 $((agcount - 1))) 0; do
90         _scratch_xfs_db -x -c "agi ${ag}" -c "agi ${ag}" -c "stack" -c "blocktrash -x 32 -o +64 -y 4096 -z ${FUZZ_ARGS}" >> $seqres.full 2>&1
91 done
92
93 echo "+ mount image"
94 if _try_scratch_mount >> $seqres.full 2>&1; then
95
96         echo "+ modify files"
97         broken=0
98         for x in `seq 65 70`; do
99                 touch "${TESTFILE}.${x}" 2> /dev/null || broken=1
100         done
101         echo "broken: ${broken}"
102         umount "${SCRATCH_MNT}"
103 fi
104
105 echo "+ repair fs"
106 _scratch_xfs_repair >> $seqres.full 2>&1
107
108 echo "+ mount image (2)"
109 _scratch_mount
110
111 echo "+ chattr -R -i"
112 $CHATTR_PROG -R -f -i "${SCRATCH_MNT}/"
113
114 echo "+ modify files (2)"
115 broken=0
116 for x in `seq 65 70`; do
117         touch "${TESTFILE}.${x}" || broken=1
118 done
119 echo "broken: ${broken}"
120 umount "${SCRATCH_MNT}"
121
122 echo "+ check fs (2)"
123 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
124
125 status=0
126 exit