6d0c828817988e0a971688135a5c70f38a1e2b04
[xfstests-dev.git] / tests / generic / 278
1 #! /bin/bash
2 # FS QA Test No. 278
3 #
4 # Test DIO CoW behavior when the write temporarily fails but the userspace
5 # program writes again.
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     rm -rf $tmp.*
37     _dmerror_cleanup
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/reflink
44 . ./common/dmerror
45
46 # real QA test starts here
47 _supported_os Linux
48 _require_scratch_reflink
49 _require_cp_reflink
50 _need_to_be_root
51 _require_dm_target error
52 _require_odirect
53
54 rm -f $seqres.full
55
56
57 echo "Format and mount"
58 _scratch_mkfs > $seqres.full 2>&1
59 _dmerror_init
60 _dmerror_mount >> $seqres.full 2>&1
61
62 testdir=$SCRATCH_MNT/test-$seq
63 mkdir $testdir
64
65 blksz=65536
66 nr=640
67 filesize=$((blksz * nr))
68 bufnr=128
69 bufsize=$((blksz * bufnr))
70
71 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
72
73 echo "Create the original files"
74 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file1 >> $seqres.full
75 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
76 _dmerror_unmount
77 _dmerror_mount
78
79 echo "Compare files"
80 md5sum $testdir/file1 | _filter_scratch
81 md5sum $testdir/file2 | _filter_scratch
82
83 echo "CoW and unmount"
84 sync
85 _dmerror_load_error_table
86 $XFS_IO_PROG -d -f -c "pwrite -S 0x63 -b $bufsize 0 $filesize" $testdir/file2 >> $seqres.full
87 _dmerror_load_working_table
88
89 echo "Rewrite"
90 $XFS_IO_PROG -d -f -c "pwrite -S 0x64 -b $bufsize 0 $filesize" $testdir/file2 >> $seqres.full 2>&1
91 _dmerror_unmount
92 _dmerror_mount
93
94 echo "Compare files"
95 md5sum $testdir/file1 | _filter_scratch
96
97 echo "Check for damage"
98 _dmerror_unmount
99 _dmerror_cleanup
100 _repair_scratch_fs >> $seqres.full
101
102 # success, all done
103 status=0
104 exit