xfs: fix old fuzz test invocations of xfs_repair
[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 _require_scratch
34 _require_symlinks
35 _require_mknod
36 _require_dm_target flakey
37
38 rm -f $seqres.full
39
40 run_test()
41 {
42         local file_type=$1
43
44         _scratch_mkfs >>$seqres.full 2>&1
45         _require_metadata_journaling $SCRATCH_DEV
46         _init_flakey
47         _mount_flakey
48
49         mkdir $SCRATCH_MNT/testdir
50         case $file_type in
51         symlink)
52                 ln -s xxx $SCRATCH_MNT/testdir/foo
53                 ;;
54         fifo)
55                 mkfifo $SCRATCH_MNT/testdir/foo
56                 ;;
57         dev)
58                 mknod $SCRATCH_MNT/testdir/foo c 0 0
59                 ;;
60         *)
61                 _fail "Invalid file type argument: $file_type"
62         esac
63         # Make sure everything done so far is durably persisted.
64         sync
65
66         # Create a file and fsync it just to create a journal/log. This file
67         # must be in the same directory as our special file "foo".
68         touch $SCRATCH_MNT/testdir/f1
69         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/f1
70
71         # Rename our special file and then create link that has its old name.
72         mv $SCRATCH_MNT/testdir/foo $SCRATCH_MNT/testdir/bar
73         ln $SCRATCH_MNT/testdir/bar $SCRATCH_MNT/testdir/foo
74
75         # Create a second file and fsync it. This is just to durably persist the
76         # fsync journal/log which is typically modified by the previous rename
77         # and link operations. This file does not need to be placed in the same
78         # directory as our special file.
79         touch $SCRATCH_MNT/f2
80         $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/f2
81
82         # Simulate a power failure and mount the filesystem to check that
83         # replaying the fsync log/journal succeeds, that is the mount operation
84         # does not fail.
85         _flakey_drop_and_remount
86         _unmount_flakey
87         _cleanup_flakey
88 }
89
90 run_test symlink
91 run_test fifo
92 run_test dev
93
94 echo "Silence is golden"
95 status=0
96 exit