43d7e6cb33f095db0d7f7c094c2da084ec1d1c00
[xfstests-dev.git] / tests / btrfs / 025
1 #! /bin/bash
2 # FS QA Test No. btrfs/025
3 #
4 # Test for an issue in btrfs send where it sent clone operations to user
5 # space with a range (offset + length) that was not aligned with the block
6 # size. This caused the btrfs receive command to send such clone operations
7 # to the ioctl clone API, which would return -EINVAL errors to btrfs receive,
8 # causing the receive command to abort immediately.
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2014 Filipe Manana.  All Rights Reserved.
12 #
13 # This program is free software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License as
15 # published by the Free Software Foundation.
16 #
17 # This program is distributed in the hope that it would be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write the Free Software Foundation,
24 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
25 #-----------------------------------------------------------------------
26 #
27
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 echo "QA output created by $seq"
31
32 tmp=`mktemp -d`
33
34 status=1        # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     rm -fr $tmp
40 }
41
42 # get standard environment, filters and checks
43 . ./common/rc
44 . ./common/filter
45
46 # real QA test starts here
47 _supported_fs btrfs
48 _supported_os Linux
49 _require_scratch
50
51 rm -f $seqres.full
52
53 _scratch_mkfs >/dev/null 2>&1
54 _scratch_mount
55
56 run_check $XFS_IO_PROG -f -c "truncate 819200" $SCRATCH_MNT/foo
57 _run_btrfs_util_prog filesystem sync $SCRATCH_MNT
58
59 run_check $XFS_IO_PROG -c "falloc -k 819200 667648" $SCRATCH_MNT/foo
60 _run_btrfs_util_prog filesystem sync $SCRATCH_MNT
61
62 run_check $XFS_IO_PROG -c "pwrite 1482752 2978" $SCRATCH_MNT/foo
63 _run_btrfs_util_prog filesystem sync $SCRATCH_MNT
64
65 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT \
66     $SCRATCH_MNT/mysnap1
67
68 run_check $XFS_IO_PROG -c "truncate 883305" $SCRATCH_MNT/foo
69 _run_btrfs_util_prog filesystem sync $SCRATCH_MNT
70
71 _run_btrfs_util_prog subvolume snapshot -r $SCRATCH_MNT \
72     $SCRATCH_MNT/mysnap2
73
74 _run_btrfs_util_prog send -f $tmp/1.snap $SCRATCH_MNT/mysnap1
75 _run_btrfs_util_prog send -p $SCRATCH_MNT/mysnap1 -f $tmp/2.snap \
76     $SCRATCH_MNT/mysnap2 2>&1
77
78 md5sum $SCRATCH_MNT/foo | _filter_scratch
79 md5sum $SCRATCH_MNT/mysnap1/foo | _filter_scratch
80 md5sum $SCRATCH_MNT/mysnap2/foo | _filter_scratch
81
82 _scratch_unmount
83 _check_btrfs_filesystem $SCRATCH_DEV
84 _scratch_mkfs >/dev/null 2>&1
85 _scratch_mount
86
87 _run_btrfs_util_prog receive -f $tmp/1.snap $SCRATCH_MNT
88 md5sum $SCRATCH_MNT/mysnap1/foo | _filter_scratch
89
90 _run_btrfs_util_prog receive -f $tmp/2.snap $SCRATCH_MNT
91 md5sum $SCRATCH_MNT/mysnap2/foo | _filter_scratch
92
93 _scratch_unmount
94 _check_btrfs_filesystem $SCRATCH_DEV
95
96 status=0
97 exit