generic/520: Remove sync in clean_dir
[xfstests-dev.git] / tests / generic / 449
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2017 Ernesto A. Fernandez.  All Rights Reserved.
4 #
5 # FS QA Test 449
6 #
7 # Fill the device and set as many extended attributes to a file as
8 # possible. Then call setfacl on it and, if this fails for lack of
9 # space, test that the permissions remain the same.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1        # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/attr
30
31 # remove previous $seqres.full before test
32 rm -f $seqres.full
33
34 # real QA test starts here
35
36 # Modify as appropriate.
37 _supported_fs generic
38 _supported_os Linux
39 _require_scratch
40 _require_test
41 _require_acls
42 _require_attrs
43
44 _scratch_mkfs_sized $((256 * 1024 * 1024)) >> $seqres.full 2>&1
45 _scratch_mount || _fail "mount failed"
46
47 TFILE=$SCRATCH_MNT/testfile.$seq
48
49 # Create the test file and choose its permissions
50 touch $TFILE
51 chmod u+rwx $TFILE
52 chmod go-rwx $TFILE
53
54 # Try to run out of space so setfacl will fail
55 $XFS_IO_PROG -c "pwrite 0 256m" $TFILE >>$seqres.full 2>&1
56 i=1
57
58 # Setting acls on an xfs filesystem will succeed even after running out of
59 # space for user attributes. Use trusted attributes
60 while $SETFATTR_PROG -n trusted.$i -v $(perl -e 'print "a"x1024') $TFILE &>/dev/null; do
61         ((++i))
62 done
63 j=1
64 ret=0
65 while [ $ret -eq 0 ]; do
66         ret=1
67         while [ $j -le 1000 ]; do
68                 # On btrfs, setfattr will sometimes fail when free space is
69                 # low, long before it's actually exhausted. Insist until it
70                 # fails consistently.
71                 $SETFATTR_PROG -n trusted.$i"x"$j $TFILE &>/dev/null
72                 ret=$(( $ret && $? ))
73                 ((++j))
74         done
75         j=1
76         ((++i))
77 done
78
79 if setfacl -m m:r $TFILE &>/dev/null; then
80         # setfacl succeeded, so the test was meaningless
81         # The filesystem might still have an issue
82         _notrun "$FSTYP succeeds in setting acls despite running out of space for user attrs"
83 fi
84
85 # Since setfacl failed, the permissions should not have changed
86 stat -c %A $TFILE
87
88 status=0
89 exit