27f57135a41a35c1ab39a7e624a3635a08750e19
[xfstests-dev.git] / tests / xfs / 067
1 #! /bin/bash
2 # FS QA Test No. 067
3 #
4 # Test out acl/dacls which fit in shortform in the inode
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37 . ./common/attr
38
39 # real QA test starts here
40 _supported_fs xfs
41 _supported_os Linux
42
43 _need_to_be_root
44 _require_attrs
45 _require_acls
46 _require_scratch
47
48 # set up fs for 1K inodes
49 isize=0
50 _scratch_mkfs_xfs | _filter_mkfs >$seqres.full 2>$tmp.mkfs
51 [ $? -eq 0 ] && source $tmp.mkfs
52 if [ "$isize" -lt 1024 ]; then
53     _scratch_mkfs_xfs -i size=1024 >>$seqres.full \
54         || _notrun "Cannot mkfs for this test using MKFS_OPTIONS specified"
55 fi
56 _scratch_mount >>$seqres.full || _fail "mount failed"
57 xfs_info $SCRATCH_MNT >>$seqres.full
58 cd $SCRATCH_MNT
59
60 echo ""
61 echo "=== Test out large ACLs  ==="
62
63 mkdir largeacldir
64
65 # John Trostel reported probs with going from 20 to 21 aces
66 # 20 ace ACL = 20*12+4 = 244 bytes
67 # 21 ace ACL = 21*12+4 = 256 bytes - too big for shortform
68 # the 21 ace ACL can not be shortform
69 #
70 acl20=`_create_n_aces 20`
71 acl21=`_create_n_aces 21`
72
73 echo "try 20 aces for access acl"
74 chacl $acl20 largeacldir
75 getfacl --numeric largeacldir | _filter_aces
76
77 echo "try 20 aces for default acl"
78 chacl -d $acl20 largeacldir
79 getfacl --numeric largeacldir | _filter_aces
80
81 echo "try 21 aces for access acl"
82 chacl $acl21 largeacldir
83 getfacl --numeric largeacldir | _filter_aces
84
85 echo "try 21 aces for default acl"
86 chacl -d $acl21 largeacldir
87 getfacl --numeric largeacldir | _filter_aces
88
89 # success, all done
90 status=0
91 exit