279: test mkfs with various sector sizes & alignments
[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_attrs
46 _require_acls
47 _require_scratch
48
49 # set up fs for 1K inodes
50 isize=0
51 _scratch_mkfs_xfs | _filter_mkfs >$seq.full 2>$tmp.mkfs
52 [ $? -eq 0 ] && source $tmp.mkfs
53 if [ "$isize" -lt 1024 ]; then
54     _scratch_mkfs_xfs -i size=1024 >>$here/$seq.full \
55         || _notrun "Cannot mkfs for this test using MKFS_OPTIONS specified"
56 fi
57 _scratch_mount >>$here/$seq.full || _fail "mount failed"
58 xfs_info $SCRATCH_MNT >>$here/$seq.full
59 cd $SCRATCH_MNT
60
61 echo ""
62 echo "=== Test out large ACLs  ==="
63
64 mkdir largeacldir
65
66 # John Trostel reported probs with going from 20 to 21 aces
67 # 20 ace ACL = 20*12+4 = 244 bytes
68 # 21 ace ACL = 21*12+4 = 256 bytes - too big for shortform
69 # the 21 ace ACL can not be shortform
70 #
71 acl20=`_create_n_aces 20`
72 acl21=`_create_n_aces 21`
73
74 echo "try 20 aces for access acl"
75 chacl $acl20 largeacldir
76 getfacl --numeric largeacldir | _filter_aces
77
78 echo "try 20 aces for default acl"
79 chacl -d $acl20 largeacldir
80 getfacl --numeric largeacldir | _filter_aces
81
82 echo "try 21 aces for access acl"
83 chacl $acl21 largeacldir
84 getfacl --numeric largeacldir | _filter_aces
85
86 echo "try 21 aces for default acl"
87 chacl -d $acl21 largeacldir
88 getfacl --numeric largeacldir | _filter_aces
89
90 # success, all done
91 status=0
92 exit