ext4/027: Correct the right code of block and inode bitmap
[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 . ./common/preamble
11 _begin_fstest fuzzers
12
13 # Override the default cleanup function.
14 _cleanup()
15 {
16     cd /
17     #rm -f $tmp.*
18 }
19
20 # Import common functions.
21 . ./common/filter
22 . ./common/attr
23
24 # real QA test starts here
25 _supported_fs ext4
26
27 _require_scratch
28 test -n "${FORCE_FUZZ}" || _require_scratch_ext4_crc
29 _require_attrs
30
31 TESTDIR="${SCRATCH_MNT}/scratchdir"
32 TESTFILE="${TESTDIR}/testfile"
33
34 echo "+ create scratch fs"
35 _scratch_mkfs_ext4 > /dev/null 2>&1
36
37 echo "+ mount fs image"
38 _scratch_mount
39 blksz="$(stat -f -c '%s' "${SCRATCH_MNT}")"
40
41 echo "+ make some files"
42 mkdir -p "${SCRATCH_MNT}/test/"
43 for x in `seq 1 $((blksz * 4 / 256))`; do
44         fname="$(printf "%.255s\n" "$(perl -e "print \"${x}_\" x 500;")")"
45         touch "${SCRATCH_MNT}/test/${fname}"
46 done
47 umount "${SCRATCH_MNT}"
48
49 echo "+ check fs"
50 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
51
52 echo "+ corrupt image"
53 debugfs -w -R "zap -f /test 0" "${SCRATCH_DEV}" 2> /dev/null
54
55 echo "+ mount image"
56 _scratch_mount
57
58 echo "+ modify dirs"
59 mkdir -p "${SCRATCH_MNT}/test/newdir" 2> /dev/null && _fail "htree should be corrupt"
60 umount "${SCRATCH_MNT}"
61
62 echo "+ repair fs"
63 e2fsck -fy "${SCRATCH_DEV}" >> $seqres.full 2>&1
64
65 echo "+ mount image (2)"
66 _scratch_mount
67
68 echo "+ modify dirs (2)"
69 mkdir -p "${SCRATCH_MNT}/test/newdir" || _fail "htree should not be corrupt"
70 umount "${SCRATCH_MNT}"
71
72 echo "+ check fs (2)"
73 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
74
75 status=0
76 exit