xfstests: have getfacl(1) report numeric id's
[xfstests-dev.git] / 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 # creator
25 owner=tes@sgi.com
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.attr
39
40 # real QA test starts here
41 _supported_fs xfs
42 _supported_os Linux
43
44 _need_to_be_root
45 _require_acls
46 _require_scratch
47
48 # set up fs for 1K inodes
49 isize=0
50 _scratch_mkfs_xfs | _filter_mkfs >$seq.full 2>$tmp.mkfs
51 [ $? -eq 0 ] && source $tmp.mkfs
52 if [ "$isize" -lt 1024 ]; then
53     _scratch_mkfs_xfs -i size=1024 >>$here/$seq.full \
54         || _notrun "Cannot mkfs for this test using MKFS_OPTIONS specified"
55 fi
56 _scratch_mount >>$here/$seq.full || _fail "mount failed"
57 xfs_info $SCRATCH_MNT >>$here/$seq.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 -n largeacldir | _filter_aces
76
77 echo "try 20 aces for default acl"
78 chacl -d $acl20 largeacldir
79 getfacl -n largeacldir | _filter_aces
80
81 echo "try 21 aces for access acl"
82 chacl $acl21 largeacldir
83 getfacl -n largeacldir | _filter_aces
84
85 echo "try 21 aces for default acl"
86 chacl -d $acl21 largeacldir
87 getfacl -n largeacldir | _filter_aces
88
89 # success, all done
90 status=0
91 exit