ext4/027: Correct the right code of block and inode bitmap
[xfstests-dev.git] / tests / ext4 / 012
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. 012
6 #
7 # Create and populate an ext4 filesystem, corrupt the journal, 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 -O journal > /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 echo moo > "${SCRATCH_MNT}/file0"
43 umount "${SCRATCH_MNT}"
44
45 echo "+ check fs"
46 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
47
48 echo "+ corrupt image"
49 debugfs -w -R 'zap -f <8> 0' "${SCRATCH_DEV}" 2> /dev/null
50
51 echo "+ mount image"
52 _try_scratch_mount 2> /dev/null && _fail "mount should fail due to bad journal"
53
54 echo "+ repair fs"
55 e2fsck -fy "${SCRATCH_DEV}" >> $seqres.full 2>&1
56
57 echo "+ mount image (2)"
58 _try_scratch_mount || _fail "mount should not fail; journal has been fixed"
59
60 echo "+ check fs (2)"
61 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
62
63 status=0
64 exit