generic: add race test between reflink and mmap read
authorShiyang Ruan <ruansy.fnst@fujitsu.com>
Tue, 14 Dec 2021 08:19:12 +0000 (16:19 +0800)
committerEryu Guan <guaneryu@gmail.com>
Sat, 25 Dec 2021 13:30:15 +0000 (21:30 +0800)
Test for races or FS corruption between reflink and mmap reading the
target file. (MMAP version of generic/164,165)

Signed-off-by: Shiyang Ruan <ruansy.fnst@fujitsu.com>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
common/reflink
tests/generic/670 [new file with mode: 0755]
tests/generic/670.out [new file with mode: 0644]

index 1a29e5d1869695e1115b0b2c880ee13d60249a5c..76e9cb7d327ab88ecd94b17e39cfb8fc7c2a11a0 100644 (file)
@@ -186,6 +186,17 @@ _read_range() {
        $XFS_IO_PROG $xfs_io_args -f -c "pread -q -v $offset $len" "$file" | cut -d ' ' -f '3-18'
 }
 
+# Prints a range of a file as a hex dump
+_mread_range() {
+       local file="$1"
+       local offset="$2"
+       local len="$3"
+       local xfs_io_args="$4"
+
+       $XFS_IO_PROG $xfs_io_args -f -c "mmap -rw 0 $((offset + len))" \
+               -c "mread -v $offset $len" "$file" | cut -d ' ' -f '3-18'
+}
+
 # Compare ranges of two files
 _compare_range() {
        file1="$1"
diff --git a/tests/generic/670 b/tests/generic/670
new file mode 100755 (executable)
index 0000000..83fbd0b
--- /dev/null
@@ -0,0 +1,72 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+#
+# FS QA Test No. 670
+#
+# Test for races or FS corruption between reflink and mmap reading the
+# target file. (MMAP version of generic/164,165)
+#
+. ./common/preamble
+_begin_fstest auto clone
+
+_register_cleanup "_cleanup" BUS
+
+# Import common functions.
+. ./common/filter
+. ./common/reflink
+
+# real QA test starts here
+_require_scratch_reflink
+_require_cp_reflink
+
+echo "Format and mount"
+_scratch_mkfs > $seqres.full 2>&1
+_scratch_mount >> $seqres.full 2>&1
+
+testdir=$SCRATCH_MNT/test-$seq
+finished_file=/tmp/finished
+rm -rf $finished_file
+mkdir $testdir
+
+loops=512
+nr_loops=$((loops - 1))
+blksz=65536
+
+echo "Initialize files"
+echo >> $seqres.full
+_pwrite_byte 0x61 0 $((loops * blksz)) $testdir/file1 >> $seqres.full
+_pwrite_byte 0x62 0 $((loops * blksz)) $testdir/file2 >> $seqres.full
+_cp_reflink $testdir/file1 $testdir/file3
+_scratch_cycle_mount
+
+fbytes() {
+       egrep -v '(61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61|62 62 62 62 62 62 62 62 62 62 62 62 62 62 62 62)'
+}
+
+reader() {
+       while [ ! -e $finished_file ]; do
+               _mread_range $testdir/file3 0 $((loops * blksz)) | fbytes
+       done
+}
+
+echo "Reflink and mmap reread the files!"
+reader &
+for i in `seq 1 2`; do
+       seq $nr_loops -1 0 | while read i; do
+               _reflink_range  $testdir/file1 $((i * blksz)) \
+                               $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
+               [ $? -ne 0 ] && break
+       done
+       seq $nr_loops -1 0 | while read i; do
+               _reflink_range  $testdir/file2 $((i * blksz)) \
+                               $testdir/file3 $((i * blksz)) $blksz >> $seqres.full
+               [ $? -ne 0 ] && break
+       done
+done
+echo "Finished reflinking"
+touch $finished_file
+wait
+
+# success, all done
+status=0
+exit
diff --git a/tests/generic/670.out b/tests/generic/670.out
new file mode 100644 (file)
index 0000000..13d2dd2
--- /dev/null
@@ -0,0 +1,5 @@
+QA output created by 670
+Format and mount
+Initialize files
+Reflink and mmap reread the files!
+Finished reflinking