generic: test for creating duplicate filenames in encrypted dir
[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 _require_test_reflink
32 _require_cp_reflink
33
34 rm -f $seqres.full
35
36 echo "Format and mount"
37 testdir=$TEST_DIR/test-$seq
38 mkdir $testdir
39
40 echo "Create the original files"
41 bigoff=9223372036854775806
42 len=9223372036854775807
43 bigoff_64k=9223372036854710272  # bigoff rounded down to 64k
44 $XFS_IO_PROG -f -c "truncate $len" $testdir/file0 >> $seqres.full
45 test -s $testdir/file0 || _notrun "High offset ftruncate failed"
46 _pwrite_byte 0x61 $bigoff 1 $testdir/file1 >> $seqres.full
47 _pwrite_byte 0x61 1048575 1 $testdir/file2 >> $seqres.full
48
49 echo "Reflink large single byte file"
50 _cp_reflink $testdir/file1 $testdir/file3 >> $seqres.full
51
52 echo "Reflink large empty file"
53 _cp_reflink $testdir/file0 $testdir/file4 >> $seqres.full
54
55 echo "Reflink past maximum file size in dest file (should fail)"
56 _reflink_range $testdir/file1 0 $testdir/file5 4611686018427322368 $len >> $seqres.full
57
58 echo "Reflink high offset to low offset"
59 _reflink_range $testdir/file1 $bigoff_64k $testdir/file6 1048576 65535 >> $seqres.full
60
61 echo "Reflink past source file EOF (should fail)"
62 _reflink_range $testdir/file2 524288 $testdir/file7 0 1048576 >> $seqres.full
63
64 echo "Reflink max size at nonzero offset (should fail)"
65 _reflink_range $testdir/file2 524288 $testdir/file8 0 $len >> $seqres.full
66
67 echo "Reflink with huge off/len (should fail)"
68 _reflink_range $testdir/file2 $bigoff_64k $testdir/file9 0 $bigoff_64k >> $seqres.full
69
70 echo "Check file creation"
71 _test_cycle_mount
72 echo "file3"
73 $XFS_IO_PROG -c "pread -v -q $bigoff 1" $testdir/file3
74 echo "file4"
75 $XFS_IO_PROG -c "pread -v -q $bigoff 1" $testdir/file4
76 # file5 should fail above
77 echo "file6"
78 $XFS_IO_PROG -c "pread -v -q 1114110 1" $testdir/file6
79 # file7 should fail above
80
81 # success, all done
82 status=0
83 exit