generic: copy_file_range swapfile test
[xfstests-dev.git] / tests / generic / 303
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 303
6 #
7 # Check that high-offset reflinks work.
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20     cd /
21     rm -rf $tmp.* $testdir
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/attr
28 . ./common/reflink
29
30 # real QA test starts here
31 _supported_os Linux
32 _require_test_reflink
33 _require_cp_reflink
34
35 rm -f $seqres.full
36
37 echo "Format and mount"
38 testdir=$TEST_DIR/test-$seq
39 mkdir $testdir
40
41 echo "Create the original files"
42 bigoff=9223372036854775806
43 len=9223372036854775807
44 bigoff_64k=9223372036854710272  # bigoff rounded down to 64k
45 $XFS_IO_PROG -f -c "truncate $len" $testdir/file0 >> $seqres.full
46 test -s $testdir/file0 || _notrun "High offset ftruncate failed"
47 _pwrite_byte 0x61 $bigoff 1 $testdir/file1 >> $seqres.full
48 _pwrite_byte 0x61 1048575 1 $testdir/file2 >> $seqres.full
49
50 echo "Reflink large single byte file"
51 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
52
53 echo "Reflink large empty file"
54 _cp_reflink $testdir/file0 $testdir/file4 >> $seqres.full
55
56 echo "Reflink past maximum file size in dest file (should fail)"
57 _reflink_range $testdir/file1 0 $testdir/file5 4611686018427322368 $len >> $seqres.full
58
59 echo "Reflink high offset to low offset"
60 _reflink_range $testdir/file1 $bigoff_64k $testdir/file6 1048576 65535 >> $seqres.full
61
62 echo "Reflink past source file EOF (should fail)"
63 _reflink_range $testdir/file2 524288 $testdir/file7 0 1048576 >> $seqres.full
64
65 echo "Reflink max size at nonzero offset (should fail)"
66 _reflink_range $testdir/file2 524288 $testdir/file8 0 $len >> $seqres.full
67
68 echo "Reflink with huge off/len (should fail)"
69 _reflink_range $testdir/file2 $bigoff_64k $testdir/file9 0 $bigoff_64k >> $seqres.full
70
71 echo "Check file creation"
72 _test_cycle_mount
73 echo "file3"
74 $XFS_IO_PROG -c "pread -v -q $bigoff 1" $testdir/file3
75 echo "file4"
76 $XFS_IO_PROG -c "pread -v -q $bigoff 1" $testdir/file4
77 # file5 should fail above
78 echo "file6"
79 $XFS_IO_PROG -c "pread -v -q 1114110 1" $testdir/file6
80 # file7 should fail above
81
82 # success, all done
83 status=0
84 exit