generic/223: make sure all files get created on the data device
[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 _require_scratch
39 _require_test
40 _require_acls
41 _require_attrs trusted
42
43 _scratch_mkfs_sized $((256 * 1024 * 1024)) >> $seqres.full 2>&1
44 _scratch_mount || _fail "mount failed"
45
46 TFILE=$SCRATCH_MNT/testfile.$seq
47
48 # Create the test file and choose its permissions
49 touch $TFILE
50 chmod u+rwx $TFILE
51 chmod go-rwx $TFILE
52
53 # Try to run out of space so setfacl will fail
54 $XFS_IO_PROG -c "pwrite 0 256m" $TFILE >>$seqres.full 2>&1
55 i=1
56
57 # Setting acls on an xfs filesystem will succeed even after running out of
58 # space for user attributes. Use trusted attributes
59 while $SETFATTR_PROG -n trusted.$i -v $(perl -e 'print "a"x1024') $TFILE &>/dev/null; do
60         ((++i))
61 done
62 j=1
63 ret=0
64 while [ $ret -eq 0 ]; do
65         ret=1
66         while [ $j -le 1000 ]; do
67                 # On btrfs, setfattr will sometimes fail when free space is
68                 # low, long before it's actually exhausted. Insist until it
69                 # fails consistently.
70                 $SETFATTR_PROG -n trusted.$i"x"$j $TFILE &>/dev/null
71                 ret=$(( $ret && $? ))
72                 ((++j))
73         done
74         j=1
75         ((++i))
76 done
77
78 if setfacl -m m:r $TFILE &>/dev/null; then
79         # setfacl succeeded, so the test was meaningless
80         # The filesystem might still have an issue
81         _notrun "$FSTYP succeeds in setting acls despite running out of space for user attrs"
82 fi
83
84 # Since setfacl failed, the permissions should not have changed
85 stat -c %A $TFILE
86
87 status=0
88 exit