xfs: convert tests to SPDX license tags
[xfstests-dev.git] / tests / xfs / 112
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Oracle, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 112
6 #
7 # Create and populate an XFS filesystem, corrupt a node directory's freeindex
8 # extent, then see how the kernel and xfs_repair deal with it.
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21     cd /
22     #rm -f $tmp.*
23 }
24
25 # get standard environment, filters and checks
26 . ./common/rc
27 . ./common/filter
28 . ./common/attr
29 . ./common/populate
30
31 # real QA test starts here
32 _supported_fs xfs
33 _supported_os Linux
34
35 _require_scratch
36 test -n "${FORCE_FUZZ}" || _require_scratch_xfs_crc
37 _require_attrs
38 _require_populate_commands
39 _require_xfs_db_blocktrash_z_command
40 test -z "${FUZZ_ARGS}" && FUZZ_ARGS="-n 8 -3"
41
42 rm -f $seqres.full
43
44 echo "+ create scratch fs"
45 _scratch_mkfs_xfs > /dev/null
46
47 echo "+ mount fs image"
48 _scratch_mount
49 dblksz="$($XFS_INFO_PROG "${SCRATCH_MNT}" | grep naming.*bsize | sed -e 's/^.*bsize=//g' -e 's/\([0-9]*\).*$/\1/g')"
50 nr="$((16 * dblksz / 40))"
51 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
52 leaf_lblk="$((32 * 1073741824 / blksz))"
53 node_lblk="$((64 * 1073741824 / blksz))"
54
55 echo "+ make some files"
56 __populate_create_dir "${SCRATCH_MNT}/blockdir" "${nr}" true
57 inode="$(stat -c '%i' "${SCRATCH_MNT}/blockdir")"
58 umount "${SCRATCH_MNT}"
59
60 echo "+ check fs"
61 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
62
63 echo "+ check dir"
64 __populate_check_xfs_dir "${inode}" node
65
66 echo "+ corrupt dir"
67 loff="${node_lblk}"
68 while true; do
69         _scratch_xfs_db -x -c "inode ${inode}" -c "dblock ${loff}" -c "stack" | grep -q 'file data block is unmapped' && break
70         _scratch_xfs_db -x -c "inode ${inode}" -c "dblock ${loff}" -c "stack" -c "blocktrash -x 32 -y $((blksz * 8)) -z ${FUZZ_ARGS}" >> $seqres.full
71         loff="$((loff + 1))"
72 done
73
74 echo "+ mount image"
75 if _try_scratch_mount >> $seqres.full 2>&1; then
76
77         echo "+ modify dir"
78         rm -rf "${SCRATCH_MNT}/blockdir/00000000" 2> /dev/null && _fail "modified corrupt directory"
79         mkdir "${SCRATCH_MNT}/blockdir/xxxxxxxx" 2> /dev/null && _fail "add to corrupt directory"
80         umount "${SCRATCH_MNT}"
81 fi
82
83 echo "+ repair fs"
84 _scratch_xfs_repair >> $seqres.full 2>&1
85 if [ $? -eq 2 ]; then
86         _scratch_mount
87         umount "${SCRATCH_MNT}"
88         _scratch_xfs_repair >> $seqres.full 2>&1
89 fi
90
91 echo "+ mount image (2)"
92 _scratch_mount
93
94 echo "+ chattr -R -i"
95 $CHATTR_PROG -R -f -i "${SCRATCH_MNT}/"
96
97 echo "+ modify dir (2)"
98 mkdir -p "${SCRATCH_MNT}/blockdir"
99 rm -rf "${SCRATCH_MNT}/blockdir/00000000" || _fail "couldn't modify repaired directory"
100 mkdir "${SCRATCH_MNT}/blockdir/xxxxxxxx" || _fail "add to repaired directory"
101 umount "${SCRATCH_MNT}"
102
103 echo "+ check fs (2)"
104 _scratch_xfs_repair -n >> $seqres.full 2>&1 || _fail "xfs_repair should not fail"
105
106 status=0
107 exit