687d6274928356b8c0b45df4129b4c71a5c7c4ac
[xfstests-dev.git] / tests / xfs / 129
1 #! /bin/bash
2 # FS QA Test No. 129
3 #
4 # Ensure that we can create enough distinct reflink entries to force creation
5 # of a multi-level refcount btree, and that metadump will successfully copy
6 # said block.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
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 15
33
34 _cleanup()
35 {
36     cd /
37     _scratch_unmount > /dev/null 2>&1
38     rm -rf $tmp.* $testdir $metadump_file $TEST_DIR/image
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 _supported_fs xfs
49 _require_loop
50 _require_scratch_reflink
51
52 rm -f $seqres.full
53
54 _scratch_mkfs >/dev/null 2>&1
55 _scratch_mount
56
57 testdir=$SCRATCH_MNT/test-$seq
58 mkdir $testdir
59 metadump_file=$TEST_DIR/${seq}_metadump
60
61 echo "Create the original file blocks"
62 blksz="$(_get_block_size $testdir)"
63 nr_blks=$((4 * blksz / 12))
64 _pwrite_byte 0x61 0 $((blksz * nr_blks)) $testdir/file1 >> $seqres.full
65
66 echo "Reflink every other block"
67 seq 1 2 $((nr_blks - 1)) | while read nr; do
68         _reflink_range  $testdir/file1 $((nr * blksz)) \
69                         $testdir/file2 $((nr * blksz)) $blksz >> $seqres.full
70 done
71
72 echo "Create metadump file"
73 _scratch_unmount
74 _scratch_metadump $metadump_file
75
76 # Now restore the obfuscated one back and take a look around
77 echo "Restore metadump"
78 xfs_mdrestore $metadump_file $TEST_DIR/image
79 SCRATCH_DEV=$TEST_DIR/image _scratch_mount
80 SCRATCH_DEV=$TEST_DIR/image _scratch_unmount
81
82 echo "Check restored fs"
83 _check_generic_filesystem $metadump_file
84
85 # success, all done
86 status=0
87 exit