generic: test deadlock on O_DIRECT|O_DSYNC
[xfstests-dev.git] / tests / generic / 526
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. 526
6 #
7 # Test that after a combination of file renames, linking and creating a new file
8 # with the old name of a renamed file, if we fsync the new file, after a power
9 # failure we are able to mount the filesystem and all file names correspond to
10 # the correct inodes.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         _cleanup_flakey
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/dmflakey
30
31 # real QA test starts here
32 _supported_fs generic
33 _supported_os Linux
34 _require_scratch
35 _require_hardlinks
36 _require_dm_target flakey
37
38 rm -f $seqres.full
39
40 _scratch_mkfs >>$seqres.full 2>&1
41 _require_metadata_journaling $SCRATCH_DEV
42 _init_flakey
43 _mount_flakey
44
45 mkdir $SCRATCH_MNT/testdir
46 echo -n "foo" > $SCRATCH_MNT/testdir/fname1
47 echo -n "hello" > $SCRATCH_MNT/testdir/fname2
48
49 # Make sure everything done so far is durably persisted.
50 sync
51
52 # Rename and link files such that one new name corresponds to the name of
53 # another renamed file and one new file has the old name of one of the renamed
54 # files. Then fsync only the new file.
55 mv $SCRATCH_MNT/testdir/fname1 $SCRATCH_MNT/testdir/fname3
56 mv $SCRATCH_MNT/testdir/fname2 $SCRATCH_MNT/testdir/fname4
57 ln $SCRATCH_MNT/testdir/fname3 $SCRATCH_MNT/testdir/fname2
58 echo -n "bar" > $SCRATCH_MNT/testdir/fname1
59 $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/fname1
60
61 # Simulate a power failure and mount the filesystem to check that all file names
62 # exist and correspond to the correct inodes.
63 _flakey_drop_and_remount
64
65 echo "File fname1 data after power failure: $(cat $SCRATCH_MNT/testdir/fname1)"
66 echo "File fname2 data after power failure: $(cat $SCRATCH_MNT/testdir/fname2)"
67 echo "File fname3 data after power failure: $(cat $SCRATCH_MNT/testdir/fname3)"
68 echo "File fname4 data after power failure: $(cat $SCRATCH_MNT/testdir/fname4)"
69
70 _unmount_flakey
71
72 status=0
73 exit