xfstests: introduce a common directory
[xfstests-dev.git] / tests / generic / 105
1 #! /bin/bash
2 # FS QA Test No. 105
3 #
4 # Test fix of bug:
5 #   930290 - xfs directory with no exec perm in ACL denies access
6 #            and breaks CAPP evaluation
7 #   which pulls out an earlier mod
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000-2006 Silicon Graphics, Inc.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #
25 #-----------------------------------------------------------------------
26 #
27
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 seqres=$RESULT_DIR/$seq
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1        # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 _cleanup()
40 {
41     cd /
42 }
43
44 # get standard environment, filters and checks
45 . ./common/rc
46 . ./common/filter
47 . ./common/attr
48
49 # Modify as appropriate.
50 _supported_fs generic
51 _supported_os IRIX Linux
52
53 # real QA test starts here
54
55 rm -f $seqres.full
56
57 _require_scratch
58 _require_acls
59
60 _acl_setup_ids
61
62 umount $SCRATCH_DEV >/dev/null 2>&1
63 echo "*** MKFS ***"                         >>$seqres.full
64 echo ""                                     >>$seqres.full
65 _scratch_mkfs                               >>$seqres.full 2>&1 \
66         || _fail "mkfs failed"
67 _scratch_mount                              >>$seqres.full 2>&1 \
68         || _fail "mount failed"
69
70 cd $SCRATCH_MNT
71
72 # create a dir with out execute perms
73 mkdir -m 600 subdir
74
75 # make it owned by $acl1
76 chown $acl1 subdir
77
78 # put a file in the directory
79 echo data > subdir/file
80 _ls_l subdir/file | awk '{ print $1, $3 }'
81
82 # add an ACL with a user ACE which has no exec permission 
83 if [ "$HOSTOS" == "Linux" ]; then
84     setfacl -m u:$acl1:r subdir
85 elif [ "$HOSTOS" == "IRIX" ]; then
86     chacl u:$acl:r--,g::---,o::--- subdir
87 else
88     echo "Unknown OS!"
89     exit 1
90 fi
91
92 # With the bug this gives: `ls: subdir/file: Permission denied'
93 # because one needs at least an exec perm somewhere in acl
94 # However, this should not hold true for directories.
95 _ls_l subdir/file | awk '{ print $1, $3 }'
96
97 # With the bug this gives: `subdir/file2: Permission denied'.
98 echo data2 > subdir/file2
99
100 # success, all done
101 status=0
102 exit