btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / generic / 631
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0-or-later
3 # Copyright (c) 2021 Oracle.  All Rights Reserved.
4 #
5 # FS QA Test No. 631
6 #
7 # Reproducer for a deadlock in xfs_rename reported by Wenli Xie.
8 #
9 # When overlayfs is running on top of xfs and the user unlinks a file in the
10 # overlay, overlayfs will create a whiteout inode and ask us to "rename" the
11 # whiteout file atop the one being unlinked.  If the file being unlinked loses
12 # its one nlink, we then have to put the inode on the unlinked list.
13 #
14 # This requires us to grab the AGI buffer of the whiteout inode to take it
15 # off the unlinked list (which is where whiteouts are created) and to grab
16 # the AGI buffer of the file being deleted.  If the whiteout was created in
17 # a higher numbered AG than the file being deleted, we'll lock the AGIs in
18 # the wrong order and deadlock.
19 #
20 # Note that this test doesn't do anything xfs-specific so it's a generic test.
21 # This is a regression test for commit 6da1b4b1ab36 ("xfs: fix an ABBA deadlock
22 # in xfs_rename").
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35         stop_workers
36         cd /
37         rm -f $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/attr
43
44 # real QA test starts here
45 _supported_fs generic
46 _require_scratch
47 _require_attrs
48 test "$FSTYP" = "overlay" && _notrun "Test does not apply to overlayfs."
49 _require_extra_fs overlay
50
51 rm -f $seqres.full
52
53 _scratch_mkfs >> $seqres.full
54 _scratch_mount
55 _supports_filetype $SCRATCH_MNT || _notrun "overlayfs test requires d_type"
56
57 mkdir $SCRATCH_MNT/lowerdir
58 mkdir $SCRATCH_MNT/lowerdir1
59 mkdir $SCRATCH_MNT/lowerdir/etc
60 mkdir $SCRATCH_MNT/workers
61 echo salts > $SCRATCH_MNT/lowerdir/etc/access.conf
62 touch $SCRATCH_MNT/running
63
64 stop_workers() {
65         test -e $SCRATCH_MNT/running || return
66         rm -f $SCRATCH_MNT/running
67
68         while [ "$(ls $SCRATCH_MNT/workers/ | wc -l)" -gt 0 ]; do
69                 wait
70         done
71 }
72
73 worker() {
74         local tag="$1"
75         local mergedir="$SCRATCH_MNT/merged$tag"
76         local l="lowerdir=$SCRATCH_MNT/lowerdir:$SCRATCH_MNT/lowerdir1"
77         local u="upperdir=$SCRATCH_MNT/upperdir$tag"
78         local w="workdir=$SCRATCH_MNT/workdir$tag"
79         local i="index=off"
80
81         touch $SCRATCH_MNT/workers/$tag
82         while test -e $SCRATCH_MNT/running; do
83                 rm -rf $SCRATCH_MNT/merged$tag
84                 rm -rf $SCRATCH_MNT/upperdir$tag
85                 rm -rf $SCRATCH_MNT/workdir$tag
86                 mkdir $SCRATCH_MNT/merged$tag
87                 mkdir $SCRATCH_MNT/workdir$tag
88                 mkdir $SCRATCH_MNT/upperdir$tag
89
90                 mount -t overlay overlay -o "$l,$u,$w,$i" $mergedir
91                 mv $mergedir/etc/access.conf $mergedir/etc/access.conf.bak
92                 touch $mergedir/etc/access.conf
93                 mv $mergedir/etc/access.conf $mergedir/etc/access.conf.bak
94                 touch $mergedir/etc/access.conf
95                 umount $mergedir
96         done
97         rm -f $SCRATCH_MNT/workers/$tag
98 }
99
100 for i in $(seq 0 $((4 + LOAD_FACTOR)) ); do
101         worker $i &
102 done
103
104 sleep $((30 * TIME_FACTOR))
105 stop_workers
106
107 echo Silence is golden.
108 # success, all done
109 status=0
110 exit