populate: add _require_populate_commands to check for tools
[xfstests-dev.git] / tests / xfs / 315
1 #! /bin/bash
2 # FS QA Test No. 315
3 #
4 # Reflink a file with a few dozen extents and CoW a few blocks.
5 # Inject an error during extent freeing to test log recovery.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35         cd /
36         _scratch_unmount > /dev/null 2>&1
37         rm -rf $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/reflink
44 . ./common/inject
45
46 # real QA test starts here
47 _supported_os Linux
48 _supported_fs xfs
49 _require_cp_reflink
50 _require_scratch_reflink
51 _require_error_injection
52 _require_xfs_io_command "cowextsize"
53 _require_xfs_io_error_injection "free_extent"
54
55 rm -f $seqres.full
56
57 blksz=65536
58 blks=4
59 sz=$((blksz * blks))
60 echo "Format filesystem"
61 _scratch_mkfs >/dev/null 2>&1
62 _scratch_mount >> $seqres.full
63
64 $XFS_IO_PROG -c "cowextsize $sz" $SCRATCH_MNT
65
66 echo "Create files"
67 _pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full
68 _pwrite_byte 0x66 $((sz / 2)) $((sz / 2)) $SCRATCH_MNT/file2 >> $seqres.full
69 _reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file2 0 $((sz / 2)) >> $seqres.full
70 sync
71
72 echo "Check files"
73 md5sum $SCRATCH_MNT/file1 | _filter_scratch
74 md5sum $SCRATCH_MNT/file2 | _filter_scratch
75
76 echo "Inject error"
77 _scratch_inject_error "free_extent"
78
79 echo "CoW a few blocks"
80 $XFS_IO_PROG -c "pwrite -W -S 0x67 -b $sz 0 $sz" $SCRATCH_MNT/file1 >> $seqres.full
81 sync
82
83 echo "FS should be shut down, touch will fail"
84 touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch
85
86 echo "Remount to replay log"
87 _scratch_inject_logprint >> $seqres.full
88
89 echo "FS should be online, touch should succeed"
90 touch $SCRATCH_MNT/goodfs
91
92 echo "Check files again"
93 md5sum $SCRATCH_MNT/file1 | _filter_scratch
94 md5sum $SCRATCH_MNT/file2 | _filter_scratch
95
96 echo "Done"
97
98 # success, all done
99 status=0
100 exit