fe1a4d50256ec502cc20cae639ffd59f4bfc13f4
[xfstests-dev.git] / tests / generic / 322
1 #! /bin/bash
2 # FS QA Test No. 322
3 #
4 # Runs various rename fsync tests to cover some rename fsync corner cases.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2013 Fusion IO. 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
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 status=1        # failure is the default!
30
31 _cleanup()
32 {
33         _cleanup_flakey
34 }
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 # get standard environment, filters and checks
38 . ./common/rc
39 . ./common/filter
40 . ./common/dmflakey
41
42 # real QA test starts here
43 _supported_fs generic
44 _supported_os Linux
45 _need_to_be_root
46 _require_scratch
47 _require_dm_flakey
48
49 rm -f $seqres.full
50
51 _clean_working_dir()
52 {
53         _mount_flakey
54         rm -rf $SCRATCH_MNT/foo $SCRATCH_MNT/bar
55         _unmount_flakey
56 }
57
58 # Btrfs wasn't making sure the new file after rename survived the fsync
59 _rename_test()
60 {
61         echo "fsync rename test"
62         _mount_flakey
63         $XFS_IO_PROG -f -c "pwrite 0 1M" -c "fsync" $SCRATCH_MNT/foo \
64                 > $seqres.full 2>&1 || _fail "xfs_io failed"
65         mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar
66         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
67         _load_flakey_table $FLAKEY_DROP_WRITES
68         md5sum $SCRATCH_MNT/bar | _filter_scratch
69         _unmount_flakey
70
71         _load_flakey_table $FLAKEY_ALLOW_WRITES
72         _mount_flakey
73         md5sum $SCRATCH_MNT/bar | _filter_scratch
74         _unmount_flakey
75         _check_scratch_fs $FLAKEY_DEV
76         [ $? -ne 0 ] && _fatal "fsck failed"
77 }
78
79 # Btrfs was dropping some of the modified extents in between fsyncs if we
80 # renamed.
81 _write_after_fsync_rename_test()
82 {
83         echo "fsync rename test"
84         _mount_flakey
85         $XFS_IO_PROG -f -c "pwrite 0 1M" -c "fsync" -c "pwrite 2M 1M" \
86                 -c "sync_range -b" $SCRATCH_MNT/foo > $seqres.full 2>&1 || _fail "xfs_io failed"
87         mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar
88         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
89         _load_flakey_table $FLAKEY_DROP_WRITES
90         md5sum $SCRATCH_MNT/bar | _filter_scratch
91         _unmount_flakey
92
93         _load_flakey_table $FLAKEY_ALLOW_WRITES
94         _mount_flakey
95         md5sum $SCRATCH_MNT/bar | _filter_scratch
96         _unmount_flakey
97 }
98
99 _scratch_mkfs >> $seqres.full 2>&1
100
101 # Create a basic flakey device that will never error out
102 _init_flakey
103
104 _rename_test
105 _clean_working_dir
106 _write_after_fsync_rename_test
107
108 status=0
109 exit