c124f2569f27fe1a9665d5bae67e7b23e6e1a788
[xfstests-dev.git] / tests / xfs / 323
1 #! /bin/bash
2 # FS QA Test No. 323
3 #
4 # Reflink a file.
5 # Inject an error during extent free to test log recovery.
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         _scratch_unmount > /dev/null 2>&1
37         rm -rf $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/reflink
44 . ./common/inject
45
46 # real QA test starts here
47 _supported_os Linux
48 _supported_fs xfs
49 _require_cp_reflink
50 _require_scratch_reflink
51 _require_xfs_io_error_injection "free_extent"
52
53 rm -f $seqres.full
54
55 blksz=65536
56 blks=64
57 sz=$((blksz * blks))
58 echo "Format filesystem"
59 _scratch_mkfs >/dev/null 2>&1
60 _scratch_mount >> $seqres.full
61
62 echo "Create files"
63 _pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full
64 _pwrite_byte 0x67 0 $sz $SCRATCH_MNT/file3 >> $seqres.full
65 sync
66
67 echo "Check files"
68 md5sum $SCRATCH_MNT/file1 | _filter_scratch
69 md5sum $SCRATCH_MNT/file3 | _filter_scratch
70
71 echo "Inject error"
72 _scratch_inject_error "free_extent"
73
74 echo "Try to reflink"
75 _reflink_range $SCRATCH_MNT/file1 0 $SCRATCH_MNT/file3 0 $sz >> $seqres.full
76
77 echo "FS should be shut down, touch will fail"
78 touch $SCRATCH_MNT/badfs 2>&1 | _filter_scratch
79
80 echo "Remount to replay log"
81 _scratch_inject_logprint >> $seqres.full
82
83 echo "Check files"
84 md5sum $SCRATCH_MNT/file1 | _filter_scratch
85 md5sum $SCRATCH_MNT/file3 | _filter_scratch
86
87 echo "FS should be online, touch should succeed"
88 touch $SCRATCH_MNT/goodfs
89
90 echo "Done"
91
92 # success, all done
93 status=0
94 exit