generic: shutdown fs after log recovery
[xfstests-dev.git] / tests / generic / 321
1 #! /bin/bash
2 # FS QA Test No. 321
3 #
4 # Runs various dir fsync tests to cover fsync'ing directory 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 _require_scratch_nocheck
46 _require_dm_target flakey
47 _require_metadata_journaling $SCRATCH_DEV
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 directory survived fsync
59 _directory_test()
60 {
61         echo "fsync new directory"
62         _mount_flakey
63         mkdir $SCRATCH_MNT/bar
64         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
65
66         _flakey_drop_and_remount
67
68         _ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
69         _unmount_flakey
70         _check_scratch_fs $FLAKEY_DEV
71         [ $? -ne 0 ] && _fatal "fsck failed"
72 }
73
74 # Btrfs was losing a rename into a new directory
75 _rename_test()
76 {
77         echo "rename fsync test"
78         _mount_flakey
79         touch $SCRATCH_MNT/foo
80         mkdir $SCRATCH_MNT/bar
81         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/foo
82         mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar/foo
83         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
84         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar/foo
85
86         _flakey_drop_and_remount\
87
88         _ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
89         _ls_l $SCRATCH_MNT/bar | tail -n +2 | awk '{ print $1, $9 }'
90         _unmount_flakey
91         _check_scratch_fs $FLAKEY_DEV
92         [ $? -ne 0 ] && _fatal "fsck failed"
93 }
94
95 # Btrfs was failing to replay a log when we had a inode with a smaller inode
96 # number that is renamed into a directory with a higher inode number
97 _replay_rename_test()
98 {
99         echo "replay rename fsync test"
100         _mount_flakey
101         touch $SCRATCH_MNT/foo
102         mkdir $SCRATCH_MNT/bar
103         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/foo
104         mv $SCRATCH_MNT/foo $SCRATCH_MNT/bar/foo
105         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar
106
107         # This is to force btrfs to relog the entire inode including the ref so
108         # we are sure to try and replay the ref along with the dir_index item
109         setfattr -n user.foo -v blah $SCRATCH_MNT/bar/foo >> $seqres.full 2>&1
110
111         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/bar/foo
112
113         _flakey_drop_and_remount
114
115         _ls_l $SCRATCH_MNT | tail -n +2 | awk '{ print $1, $9 }'
116         _ls_l $SCRATCH_MNT/bar | tail -n +2 | awk '{ print $1, $9 }'
117         _unmount_flakey
118 }
119
120 _scratch_mkfs >> $seqres.full 2>&1
121
122 # Create a basic flakey device that will never error out
123 _init_flakey
124
125 _directory_test
126 _clean_working_dir
127 _rename_test
128 _clean_working_dir
129 _replay_rename_test
130
131 status=0
132 exit