xfs/029: filter out "extended-header: cycle: 1" from output
[xfstests-dev.git] / tests / xfs / 342
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 342
6 #
7 # Cross-link rtrmapbt block into a file and see if repair fixes it.
8 #
9 seq=`basename "$0"`
10 seqres="$RESULT_DIR/$seq"
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -rf "$tmp".*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27
28 # real QA test starts here
29 _supported_os Linux
30 _supported_fs xfs
31 _require_realtime
32 _require_xfs_scratch_rmapbt
33 _require_test_program "punch-alternating"
34
35 rm -f "$seqres.full"
36
37 echo "Format and mount"
38 _scratch_mkfs | _filter_mkfs 2>$tmp.mkfs >/dev/null
39 . $tmp.mkfs
40 cat $tmp.mkfs > "$seqres.full" 2>&1
41 _scratch_mount
42 blksz="$(_get_block_size $SCRATCH_MNT)"
43
44 # inode core size is at least 176 bytes; btree header is 56 bytes;
45 # rtrmap record is 32 bytes; and rtrmap key/pointer are 56 bytes.
46 i_ptrs=$(( (isize - 176) / 56 ))
47 bt_recs=$(( (blksz - 56) / 32 ))
48
49 blocks=$((i_ptrs * bt_recs + 1))
50 len=$((blocks * rtextsz))
51
52 echo "Create some files"
53 $XFS_IO_PROG -f -R -c "falloc 0 $len" -c "pwrite -S 0x68 -b 1048576 0 $len" $SCRATCH_MNT/f1 >> $seqres.full
54 $XFS_IO_PROG -f -R -c "falloc 0 $len" -c "pwrite -S 0x68 -b 1048576 0 $len" $SCRATCH_MNT/f2 >> $seqres.full
55 $here/src/punch-alternating $SCRATCH_MNT/f1 >> "$seqres.full"
56 $here/src/punch-alternating $SCRATCH_MNT/f2 >> "$seqres.full"
57 echo garbage > $SCRATCH_MNT/f3
58 ino=$(stat -c '%i' $SCRATCH_MNT/f3)
59 _scratch_unmount
60
61 echo "Corrupt fs"
62 _scratch_xfs_db -c 'sb 0' -c 'addr rrmapino' -c 'p u3.rtrmapbt.ptrs[1]' >> $seqres.full
63
64 fsbno=$(_scratch_xfs_db -c 'sb 0' -c 'addr rrmapino' \
65         -c 'p u3.rtrmapbt.ptrs[1]' | sed -e 's/^.*://g')
66 _scratch_xfs_db -x -c "inode $ino" -c "write u3.bmx[0].startblock $fsbno" >> $seqres.full
67 _scratch_mount
68
69 od -tx1 -Ad -c $SCRATCH_MNT/f3 >> $seqres.full
70
71 echo "Try to create more files"
72 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f5 >> $seqres.full 2>&1
73 test ! -e $SCRATCH_MNT/f5 && echo "should have been able to write f5"
74
75 echo "Repair fs"
76 _scratch_unmount 2>&1 | _filter_scratch
77 _repair_scratch_fs >> $seqres.full 2>&1
78
79 echo "Try to create more files (again)"
80 _scratch_mount
81 $XFS_IO_PROG -f -R -c "pwrite -S 0x68 0 9999" $SCRATCH_MNT/f4 >> $seqres.full
82
83 # success, all done
84 status=0
85 exit