generic: copy_file_range swapfile test
[xfstests-dev.git] / tests / generic / 167
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015 Oracle, Inc.  All Rights Reserved.
4 #
5 # FS QA Test No. 167
6 #
7 # Test for races or FS corruption when writing to a file that's also
8 # the source of a reflink operation.
9 #
10 seq=`basename $0`
11 seqres=$RESULT_DIR/$seq
12 echo "QA output created by $seq"
13
14 here=`pwd`
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 7 15
18
19 _cleanup()
20 {
21     cd /
22     rm -rf $tmp.* $finished_file
23     wait
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/reflink
30
31 # real QA test starts here
32 _supported_os Linux
33 _require_scratch_reflink
34 _require_cp_reflink
35
36 echo "Format and mount"
37 _scratch_mkfs > $seqres.full 2>&1
38 _scratch_mount >> $seqres.full 2>&1
39
40 testdir=$SCRATCH_MNT/test-$seq
41 finished_file=/tmp/finished
42 rm -rf $finished_file
43 mkdir $testdir
44
45 loops=1024
46 nr_loops=$((loops - 1))
47 blksz=65536
48
49 echo "Initialize file"
50 echo >> $seqres.full
51 _pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
52 _scratch_cycle_mount
53
54 # Snapshot creator...
55 snappy() {
56         n=0
57         while [ ! -e $finished_file ]; do
58                 out="$(_cp_reflink $testdir/file1 $testdir/snap_$n 2>&1)"
59                 res=$?
60                 echo "$out" | grep -q "No space left" && break
61                 test -n "$out" && echo "$out"
62                 test $res -ne 0 && break
63                 n=$((n + 1))
64         done
65 }
66
67 echo "Snapshot a file undergoing buffered rewrite"
68 snappy &
69 seq $nr_loops -1 0 | while read i; do
70         _pwrite_byte 0x63 $((i * blksz)) $blksz $testdir/file1 >> $seqres.full
71 done
72 touch $finished_file
73 wait
74
75 # success, all done
76 status=0
77 exit