lib/: spdx license conversion
[xfstests-dev.git] / tests / ext4 / 017
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. 017
6 #
7 # Create and populate an ext4 filesystem, corrupt a htree block, then
8 # see how the kernel and e2fsck 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
30 # real QA test starts here
31 _supported_fs ext4
32 _supported_os Linux
33
34 _require_scratch
35 test -n "${FORCE_FUZZ}" || _require_scratch_ext4_crc
36 _require_attrs
37
38 rm -f $seqres.full
39 TESTDIR="${SCRATCH_MNT}/scratchdir"
40 TESTFILE="${TESTDIR}/testfile"
41
42 echo "+ create scratch fs"
43 _scratch_mkfs_ext4 > /dev/null 2>&1
44
45 echo "+ mount fs image"
46 _scratch_mount
47 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
48
49 echo "+ make some files"
50 mkdir -p "${SCRATCH_MNT}/test/"
51 for x in `seq 1 $((blksz * 4 / 256))`; do
52         fname="$(printf "%.255s\n" "$(perl -e "print \"${x}_\" x 500;")")"
53         touch "${SCRATCH_MNT}/test/${fname}"
54 done
55 umount "${SCRATCH_MNT}"
56
57 echo "+ check fs"
58 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
59
60 echo "+ corrupt image"
61 debugfs -w -R "zap -f /test 0" "${SCRATCH_DEV}" 2> /dev/null
62
63 echo "+ mount image"
64 _scratch_mount
65
66 echo "+ modify dirs"
67 mkdir -p "${SCRATCH_MNT}/test/newdir" 2> /dev/null && _fail "htree should be corrupt"
68 umount "${SCRATCH_MNT}"
69
70 echo "+ repair fs"
71 e2fsck -fy "${SCRATCH_DEV}" >> $seqres.full 2>&1
72
73 echo "+ mount image (2)"
74 _scratch_mount
75
76 echo "+ modify dirs (2)"
77 mkdir -p "${SCRATCH_MNT}/test/newdir" || _fail "htree should not be corrupt"
78 umount "${SCRATCH_MNT}"
79
80 echo "+ check fs (2)"
81 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
82
83 status=0
84 exit