generic: test for file loss after mix of rename, fsync and inode eviction
[xfstests-dev.git] / tests / generic / 329
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 329
6 #
7 # Test AIO DIO CoW behavior when the write temporarily fails.
8 #
9 . ./common/preamble
10 _begin_fstest auto quick clone eio
11
12 # Override the default cleanup function.
13 _cleanup()
14 {
15     cd /
16     rm -rf $tmp.* $TEST_DIR/moo
17     _dmerror_cleanup
18 }
19
20 # Import common functions.
21 . ./common/filter
22 . ./common/reflink
23 . ./common/dmerror
24
25 # real QA test starts here
26 _require_scratch_reflink
27 _require_cp_reflink
28 _require_dm_target error
29 _require_aiodio "aiocp"
30
31 echo "Format and mount"
32 _scratch_mkfs > $seqres.full 2>&1
33 _dmerror_init
34 _dmerror_mount >> $seqres.full 2>&1
35
36 testdir=$SCRATCH_MNT/test-$seq
37 mkdir $testdir
38
39 blksz=65536
40 nr=640
41 bufnr=128
42 filesize=$((blksz * nr))
43 bufsize=$((blksz * bufnr))
44 alignment=`_min_dio_alignment $TEST_DEV`
45
46 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
47
48 echo "Create the original files"
49 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $filesize" $testdir/file1 >> $seqres.full
50 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
51 _dmerror_unmount
52 _dmerror_mount
53
54 echo "Compare files"
55 md5sum $testdir/file1 | _filter_scratch
56 md5sum $testdir/file2 | _filter_scratch
57
58 echo "CoW and unmount"
59 $XFS_IO_PROG -f -c "pwrite -S 0x63 $bufsize 1" $testdir/file2 >> $seqres.full
60 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $bufsize 0 $filesize" $TEST_DIR/moo >> $seqres.full
61 sync
62 _dmerror_load_error_table
63 $AIO_TEST -a $alignment -f DIRECT -b $bufsize $TEST_DIR/moo $testdir/file2 >> $seqres.full
64 _dmerror_load_working_table
65 _dmerror_unmount
66 _dmerror_mount
67
68 echo "Compare files"
69 md5sum $testdir/file1 | _filter_scratch
70 md5sum $testdir/file2 | _filter_scratch
71
72 echo "Check for damage"
73 _dmerror_unmount
74 _dmerror_cleanup
75 _repair_scratch_fs >> $seqres.full
76
77 # success, all done
78 status=0
79 exit