generic: test for file loss after mix of rename, fsync and inode eviction
[xfstests-dev.git] / tests / generic / 205
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. 205
6 #
7 # See what happens if we CoW blocks 2-4 of a page's worth of blocks when the
8 # second block is a regular block.
9 #
10 # This test is dependent on the system page size, so we cannot use md5 in
11 # the golden output; we can only compare to a check file.
12 #
13 . ./common/preamble
14 _begin_fstest auto quick clone
15
16 # Override the default cleanup function.
17 _cleanup()
18 {
19     cd /
20     rm -rf $tmp.* $testdir
21 }
22
23 # Import common functions.
24 . ./common/filter
25 . ./common/reflink
26
27 # real QA test starts here
28 _require_scratch_reflink
29
30 pagesz=$(getconf PAGE_SIZE)
31 blksz=$((pagesz / 4))
32
33 echo "Format and mount"
34 _scratch_mkfs_blocksized $blksz > $seqres.full 2>&1
35 _scratch_mount >> $seqres.full 2>&1
36
37 testdir=$SCRATCH_MNT/test-$seq
38 mkdir $testdir
39
40 real_blksz=$(_get_file_block_size $testdir)
41 test $real_blksz != $blksz && _notrun "Failed to format with small blocksize."
42
43 echo "Create the original files"
44 _pwrite_byte 0x61 0 $pagesz $testdir/file1 >> $seqres.full
45
46 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2 >> $seqres.full
47 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2.chk >> $seqres.full
48
49 _pwrite_byte 0x61 $blksz $blksz $testdir/file2 >> $seqres.full
50 _pwrite_byte 0x61 $blksz $blksz $testdir/file2.chk >> $seqres.full
51
52 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2 >> $seqres.full
53 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2.chk >> $seqres.full
54
55 _reflink_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) $blksz >> $seqres.full
56 _pwrite_byte 0x61 $((blksz * 2)) $blksz $testdir/file2.chk >> $seqres.full
57 _scratch_cycle_mount
58
59 echo "Compare files"
60 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
61 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
62
63 echo "CoW and unmount"
64 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2 >> $seqres.full
65 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2.chk >> $seqres.full
66 _scratch_cycle_mount
67
68 echo "Compare files"
69 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
70 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
71
72 # success, all done
73 status=0
74 exit