generic: shutdown fs after log recovery
[xfstests-dev.git] / tests / generic / 166
1 #! /bin/bash
2 # FS QA Test No. 166
3 #
4 # Test for races or FS corruption when DIO writing to a file that's also
5 # the source of a reflink operation.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015 Oracle, Inc.  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
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 7 15
33
34 _cleanup()
35 {
36     cd /
37     rm -rf $tmp.* $finished_file
38     wait
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/reflink
45
46 # real QA test starts here
47 _supported_os Linux
48 _require_scratch_reflink
49 _require_cp_reflink
50 _require_odirect
51
52 echo "Format and mount"
53 _scratch_mkfs > $seqres.full 2>&1
54 _scratch_mount >> $seqres.full 2>&1
55
56 testdir=$SCRATCH_MNT/test-$seq
57 finished_file=/tmp/finished
58 rm -rf $finished_file
59 mkdir $testdir
60
61 loops=1024
62 nr_loops=$((loops - 1))
63 blksz=65536
64
65 echo "Initialize file"
66 echo >> $seqres.full
67 _pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
68 _scratch_cycle_mount
69
70 # Snapshot creator...
71 snappy() {
72         n=0
73         while [ ! -e $finished_file ]; do
74                 out="$(_cp_reflink $testdir/file1 $testdir/snap_$n 2>&1)"
75                 res=$?
76                 echo "$out" | grep -q "No space left" && break
77                 test -n "$out" && echo "$out"
78                 test $res -ne 0 && break
79                 n=$((n + 1))
80         done
81 }
82
83 echo "Snapshot a file undergoing directio rewrite"
84 snappy &
85 seq $nr_loops -1 0 | while read i; do
86         _pwrite_byte 0x63 $((i * blksz)) $blksz -d $testdir/file1 >> $seqres.full
87 done
88 touch $finished_file
89 wait
90
91 # success, all done
92 status=0
93 exit