c3a853b003e5f97284bbc1c7d8c98b5025066a4e
[xfstests-dev.git] / tests / xfs / 105
1 #! /bin/bash
2 # FS QA Test No. 105
3 #
4 # Create and populate an XFS filesystem, corrupt a node directory's leaf
5 # extent, then see how 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
59 echo "+ create scratch fs"
60 _scratch_mkfs_xfs > /dev/null
61
62 echo "+ mount fs image"
63 _scratch_mount
64 dblksz="$(xfs_info "${SCRATCH_MNT}" | grep naming.*bsize | sed -e 's/^.*bsize=//g' -e 's/\([0-9]*\).*$/\1/g')"
65 nr="$((16 * dblksz / 40))"
66 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
67 leaf_lblk="$((32 * 1073741824 / blksz))"
68 node_lblk="$((64 * 1073741824 / blksz))"
69
70 echo "+ make some files"
71 __populate_create_dir "${SCRATCH_MNT}/blockdir" "${nr}" true
72 inode="$(stat -c '%i' "${SCRATCH_MNT}/blockdir")"
73 umount "${SCRATCH_MNT}"
74
75 echo "+ check fs"
76 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
77
78 echo "+ check dir"
79 __populate_check_xfs_dir "${inode}" node
80
81 echo "+ corrupt dir"
82 loff="${leaf_lblk}"
83 while true; do
84         _scratch_xfs_db -x -c "inode ${inode}" -c "dblock ${loff}" -c "stack" | grep -q 'file data block is unmapped' && break
85         _scratch_xfs_db -x -c "inode ${inode}" -c "dblock ${loff}" -c "stack" -c "blocktrash -x 32 -y $((blksz * 8)) -z ${FUZZ_ARGS}" >> $seqres.full
86         loff="$((loff + 1))"
87 done
88
89 echo "+ mount image"
90 if _try_scratch_mount >> $seqres.full 2>&1; then
91
92         echo "+ modify dir"
93         rm -rf "${SCRATCH_MNT}/blockdir/00000000" 2> /dev/null && _fail "modified corrupt directory"
94         mkdir "${SCRATCH_MNT}/blockdir/xxxxxxxx" 2> /dev/null && _fail "add to corrupt directory"
95         umount "${SCRATCH_MNT}"
96 fi
97
98 echo "+ repair fs"
99 _scratch_xfs_repair >> $seqres.full 2>&1
100 _scratch_xfs_repair >> $seqres.full 2>&1
101
102 echo "+ mount image (2)"
103 _scratch_mount
104
105 echo "+ chattr -R -i"
106 $CHATTR_PROG -R -f -i "${SCRATCH_MNT}/"
107
108 echo "+ modify dir (2)"
109 mkdir -p "${SCRATCH_MNT}/blockdir"
110 rm -rf "${SCRATCH_MNT}/blockdir/00000000" || _fail "couldn't modify repaired directory"
111 mkdir "${SCRATCH_MNT}/blockdir/xxxxxxxx" || _fail "add to repaired directory"
112 umount "${SCRATCH_MNT}"
113
114 echo "+ check fs (2)"
115 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
116
117 status=0
118 exit