xfs: fix more xfs_db open-coding instances
[xfstests-dev.git] / tests / xfs / 240
1 #! /bin/bash
2 # FS QA Test No. 240
3 #
4 # Test AIO CoW behavior when the write temporarily fails.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22
23 seq=`basename $0`
24 seqres=$RESULT_DIR/$seq
25 echo "QA output created by $seq"
26
27 here=`pwd`
28 tmp=/tmp/$$
29 status=1    # failure is the default!
30 trap "_cleanup; exit \$status" 0 1 2 3 15
31
32 _cleanup()
33 {
34     cd /
35     rm -rf $tmp.* $TEST_DIR/moo
36     _dmerror_cleanup
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42 . ./common/reflink
43 . ./common/dmerror
44
45 # real QA test starts here
46 _supported_os Linux
47 _supported_fs xfs
48 _require_scratch_reflink
49 _require_cp_reflink
50 _require_dm_target error
51 _require_xfs_io_command "cowextsize"
52 _require_test_program "aio-dio-regress/aiocp"
53 AIO_TEST="src/aio-dio-regress/aiocp"
54 _require_odirect
55
56 rm -f $seqres.full
57
58
59 echo "Format and mount"
60 _scratch_mkfs > $seqres.full 2>&1
61 _dmerror_init
62 _dmerror_mount >> $seqres.full 2>&1
63
64 testdir=$SCRATCH_MNT/test-$seq
65 mkdir $testdir
66
67 blksz=65536
68 nr=640
69 bufnr=128
70 filesize=$((blksz * nr))
71 bufsize=$((blksz * bufnr))
72 filesize=$filesize
73 bufsize=$bufsize
74
75 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
76
77 echo "Create the original files"
78 $XFS_IO_PROG -c "cowextsize $((bufsize * 2))" $testdir
79 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file1 >> $seqres.full
80 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
81 _dmerror_unmount
82 _dmerror_mount
83
84 echo "Compare files"
85 md5sum $testdir/file1 | _filter_scratch
86 md5sum $testdir/file2 | _filter_scratch
87
88 echo "CoW and unmount"
89 $XFS_IO_PROG -f -c "pwrite -S 0x63 $bufsize 1" $testdir/file2 >> $seqres.full
90 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $bufsize 0 $filesize" $TEST_DIR/moo >> $seqres.full
91 sync
92 _dmerror_load_error_table
93 $AIO_TEST -b $bufsize $TEST_DIR/moo $testdir/file2 >> $seqres.full
94 $XFS_IO_PROG -c "fdatasync" $testdir/file2
95 _dmerror_load_working_table
96 _dmerror_unmount
97 _dmerror_mount
98
99 echo "Compare files"
100 md5sum $testdir/file1 | _filter_scratch
101 md5sum $testdir/file2 | _filter_scratch
102
103 echo "Check for damage"
104 _dmerror_unmount
105 _dmerror_cleanup
106 _repair_scratch_fs >> $seqres.full
107
108 # success, all done
109 status=0
110 exit