overlay: run unionmount testsuite test cases
[xfstests-dev.git] / tests / generic / 564
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Red Hat, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 564
6 #
7 # Exercise copy_file_range() syscall error conditions.
8 #
9 # This is a regression test for kernel commit:
10 #   96e6e8f4a68d ("vfs: add missing checks to copy_file_range")
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1        # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 7 15
20
21 _cleanup()
22 {
23         cd /
24         rm -rf $tmp.*
25         [ -z "$loopdev" ] || _destroy_loop_device $loopdev
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31
32 # real QA test starts here
33 _supported_os Linux
34 _supported_fs generic
35
36 rm -f $seqres.full
37
38 _require_test
39 _require_loop
40 # for mkfifo
41 _require_mknod
42
43 #
44 # This test effectively requires xfs_io with these commits
45 #  2a42470b xfs_io: copy_file_range length is a size_t
46 #  1a05efba io: open pipes in non-blocking mode
47 #
48 # Without those commits test will hang on old kernel when copying
49 # very large size and when copying from a pipe.
50 #
51 # We require a new xfs_io feature of passing an open file as the
52 # copy source, as an indication that the test can run without hanging
53 # with large size argument and to avoid opening pipe in blocking mode.
54 #
55 # Test both basic copy_range and copy_range -f availability
56 _require_xfs_io_command "copy_range"
57 _require_xfs_io_command "copy_range" "-f"
58
59 testdir="$TEST_DIR/test-$seq"
60 rm -rf $testdir
61 mkdir $testdir
62
63 rm -f $seqres.full
64
65 $XFS_IO_PROG -f -c "pwrite -S 0x61 0 128k" $testdir/file >> $seqres.full 2>&1
66
67 echo source range overlaps destination range in same file returns EINVAL
68 $XFS_IO_PROG -f -c "copy_range -s 32k -d 48k -l 32k $testdir/file" $testdir/file
69
70 echo
71 echo destination file O_RDONLY returns EBADF
72 $XFS_IO_PROG -f -r -c "copy_range -l 32k $testdir/file" $testdir/copy
73
74 echo
75 echo destination file O_APPEND returns EBADF
76 $XFS_IO_PROG -f -a -c "copy_range -l 32k $testdir/file" $testdir/copy
77
78 echo
79 echo source/destination as directory returns EISDIR
80 $XFS_IO_PROG -c "copy_range -l 32k $testdir/file" $testdir
81 $XFS_IO_PROG -f -c "copy_range -l 32k $testdir" $testdir/copy
82
83 echo
84 echo source/destination as blkdev returns EINVAL
85 $XFS_IO_PROG -f -c "truncate 128k" $testdir/img >> $seqres.full 2>&1
86 loopdev=`_create_loop_device $testdir/img`
87 $XFS_IO_PROG -c "copy_range -l 32k $testdir/file" $loopdev
88 $XFS_IO_PROG -f -c "copy_range -l 32k $loopdev" $testdir/copy
89 _destroy_loop_device $loopdev
90 loopdev=
91
92 echo
93 echo source/destination as chardev returns EINVAL
94 $XFS_IO_PROG -c "copy_range -l 32k $testdir/file" /dev/null
95 $XFS_IO_PROG -f -c "copy_range -l 32k /dev/zero" $testdir/copy
96
97 echo
98 echo source/destination as FIFO returns EINVAL
99 mkfifo $testdir/fifo
100 $XFS_IO_PROG -c "copy_range -l 32k $testdir/file" $testdir/fifo
101 # Pass input pipe as non-blocking open file to avoid old xfs_io (<4.20)
102 # opening the pipe in blocking mode and causing the test to hang
103 $XFS_IO_PROG -r -n -f -c "open $testdir/copy" -C "copy_range -l 32k -f 0" $testdir/fifo
104
105 max_off=$((8 * 2**60 - 65536 - 1))
106 min_off=65537
107
108 echo
109 echo length beyond 8EiB wraps around 0 returns EOVERFLOW
110 $XFS_IO_PROG -f -c "copy_range -l 10e -s $max_off $testdir/file" $testdir/copy
111 $XFS_IO_PROG -f -c "copy_range -l 10e -d $max_off $testdir/file" $testdir/copy
112
113 echo
114 echo source range beyond 8TiB returns 0
115 $XFS_IO_PROG -c "copy_range -s $max_off -l $min_off -d 0 $testdir/file" $testdir/copy
116
117 echo
118 echo destination range beyond 8TiB returns EFBIG
119 $XFS_IO_PROG -c "copy_range -l $min_off -s 0 -d $max_off $testdir/file" $testdir/copy
120
121 echo
122 echo destination larger than rlimit returns EFBIG
123 rm -f $testdir/copy
124 $XFS_IO_PROG -c "truncate 128k" $testdir/file
125
126 # need a wrapper so the "File size limit exceeded" error can be filtered
127 do_rlimit_copy()
128 {
129         $XFS_IO_PROG -f -c "copy_range -l 32k -s 0 -d 16m $testdir/file" $testdir/copy
130 }
131
132 ulimit -f $((8 * 1024))
133 ulimit -c 0
134 do_rlimit_copy 2>&1 | grep -o "File size limit exceeded"
135 ulimit -f unlimited
136
137 # success, all done
138 status=0
139 exit