generic: test deadlock on O_DIRECT|O_DSYNC
[xfstests-dev.git] / tests / generic / 157
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 157
6 #
7 # Check that various invalid reflink scenarios are rejected.
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.* $testdir1
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_scratch_reflink
34 _require_mknod
35
36 rm -f $seqres.full
37
38 echo "Format and mount"
39 _scratch_mkfs > $seqres.full 2>&1
40 _scratch_mount >> $seqres.full 2>&1
41
42 testdir1="$TEST_DIR/test-$seq"
43 rm -rf $testdir1
44 mkdir $testdir1
45
46 testdir2=$SCRATCH_MNT/test-$seq
47 mkdir $testdir2
48
49 echo "Create the original files"
50 blksz="$(_get_block_size $testdir1)"
51 blks=1000
52 margin='7%'
53 sz=$((blksz * blks))
54 free_blocks0=$(stat -f $testdir1 -c '%f')
55 nr=4
56 filesize=$((blksz * nr))
57 _pwrite_byte 0x61 0 $sz $testdir1/file1 >> $seqres.full
58 _pwrite_byte 0x61 0 $sz $testdir1/file2 >> $seqres.full
59 _pwrite_byte 0x61 0 $sz $testdir2/file1 >> $seqres.full
60 _pwrite_byte 0x61 0 $sz $testdir2/file2 >> $seqres.full
61 mkdir $testdir1/dir1
62 seq 1 $((2 * blksz / 250)) | while read f; do
63         touch $testdir1/dir1/$f
64 done
65 mknod $testdir1/dev1 c 1 3
66 mkfifo $testdir1/fifo1
67 sync
68
69 _filter_enotty() {
70         sed -e 's/Inappropriate ioctl for device/Invalid argument/g'
71 }
72
73 _filter_einval() {
74         sed -e 's/Invalid argument/Bad file descriptor/g'
75 }
76
77 echo "Try cross-device reflink"
78 _reflink_range $testdir1/file1 0 $testdir2/file1 0 $blksz
79
80 echo "Try unaligned reflink"
81 _reflink_range $testdir1/file1 37 $testdir1/file1 59 23
82
83 echo "Try overlapping reflink"
84 _reflink_range $testdir1/file1 0 $testdir1/file1 1 $((blksz * 2))
85
86 echo "Try reflink past EOF"
87 _reflink_range $testdir1/file1 $(( (blks + 10) * blksz)) $testdir1/file1 0 $blksz
88
89 echo "Try to reflink a dir"
90 _reflink_range $testdir1/dir1 0 $testdir1/file2 0 $blksz
91
92 echo "Try to reflink a device"
93 _reflink_range $testdir1/dev1 0 $testdir1/file2 0 $blksz
94
95 echo "Try to reflink to a dir"
96 _reflink_range $testdir1/file1 0 $testdir1/dir1 0 $blksz 2>&1 | _filter_test_dir
97
98 echo "Try to reflink to a device"
99 _reflink_range $testdir1/file1 0 $testdir1/dev1 0 $blksz 2>&1 | _filter_enotty
100
101 echo "Try to reflink to a fifo"
102 _reflink_range $testdir1/file1 0 $testdir1/fifo1 0 $blksz -n 2>&1 | _filter_enotty
103
104 echo "Try to reflink an append-only file"
105 _reflink_range $testdir1/file1 0 $testdir1/file3 0 $blksz -a 2>&1 | _filter_einval
106
107 echo "Reflink two files"
108 _reflink_range $testdir1/file1 0 $testdir1/file2 0 $blksz >> $seqres.full
109 _reflink_range $testdir2/file1 0 $testdir2/file2 0 $blksz >> $seqres.full
110
111 # success, all done
112 status=0
113 exit