overlay: run unionmount testsuite test cases
[xfstests-dev.git] / tests / generic / 479
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FSQA Test No. 479
6 #
7 # Test that when a fsync journal/log exists, if we rename a special file (fifo,
8 # symbolic link or device), create a hard link for it with its old name and then
9 # commit the journal/log, if a power loss happens the filesystem will not fail
10 # to replay the journal/log when it is mounted the next time.
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_symlinks
36 _require_mknod
37 _require_dm_target flakey
38
39 rm -f $seqres.full
40
41 run_test()
42 {
43         local file_type=$1
44
45         _scratch_mkfs >>$seqres.full 2>&1
46         _require_metadata_journaling $SCRATCH_DEV
47         _init_flakey
48         _mount_flakey
49
50         mkdir $SCRATCH_MNT/testdir
51         case $file_type in
52         symlink)
53                 ln -s xxx $SCRATCH_MNT/testdir/foo
54                 ;;
55         fifo)
56                 mkfifo $SCRATCH_MNT/testdir/foo
57                 ;;
58         dev)
59                 mknod $SCRATCH_MNT/testdir/foo c 0 0
60                 ;;
61         *)
62                 _fail "Invalid file type argument: $file_type"
63         esac
64         # Make sure everything done so far is durably persisted.
65         sync
66
67         # Create a file and fsync it just to create a journal/log. This file
68         # must be in the same directory as our special file "foo".
69         touch $SCRATCH_MNT/testdir/f1
70         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/f1
71
72         # Rename our special file and then create link that has its old name.
73         mv $SCRATCH_MNT/testdir/foo $SCRATCH_MNT/testdir/bar
74         ln $SCRATCH_MNT/testdir/bar $SCRATCH_MNT/testdir/foo
75
76         # Create a second file and fsync it. This is just to durably persist the
77         # fsync journal/log which is typically modified by the previous rename
78         # and link operations. This file does not need to be placed in the same
79         # directory as our special file.
80         touch $SCRATCH_MNT/f2
81         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/f2
82
83         # Simulate a power failure and mount the filesystem to check that
84         # replaying the fsync log/journal succeeds, that is the mount operation
85         # does not fail.
86         _flakey_drop_and_remount
87         _unmount_flakey
88         _cleanup_flakey
89 }
90
91 run_test symlink
92 run_test fifo
93 run_test dev
94
95 echo "Silence is golden"
96 status=0
97 exit