check: use generated group files
[xfstests-dev.git] / tests / ext4 / 011
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. 011
6 #
7 # Create and populate an ext4 filesystem, corrupt the MMP 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 -O mmp -E mmp_update_interval=2 > /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 blk="$(dumpe2fs "${SCRATCH_DEV}" 2> /dev/null | grep 'MMP block number' | sed -e 's/^MMP block number: *\([0-9]*\)$/\1/g')"
50 $XFS_IO_PROG -f -c "pwrite -S 0x62 $((blk * blksz + 16)) 8" "${SCRATCH_DEV}" >> $seqres.full
51
52 echo "+ mount image"
53 _try_scratch_mount 2> /dev/null && _fail "mount should fail due to bad MMP"
54
55 echo "+ repair fs"
56 e2fsck -fy "${SCRATCH_DEV}" >> $seqres.full 2>&1
57
58 echo "+ mount image (2)"
59 _try_scratch_mount || _fail "mount should not fail; MMP has been fixed"
60
61 echo "+ check fs (2)"
62 e2fsck -fn "${SCRATCH_DEV}" >> $seqres.full 2>&1 || _fail "fsck should not fail"
63
64 status=0
65 exit