Add burst to the test machines list
[xfstests-dev.git] / 057
1 #! /bin/sh
2 # XFS QA Test No. 057
3 # $Id: 1.1 $
4 #
5 # Test out the different acl_get semantics
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
9
10 # This program is free software; you can redistribute it and/or modify it
11 # under the terms of version 2 of the GNU General Public License as
12 # published by the Free Software Foundation.
13
14 # This program is distributed in the hope that it would be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17
18 # Further, this software is distributed without any warranty that it is
19 # free of the rightful claim of any third person regarding infringement
20 # or the like.  Any license provided herein, whether implied or
21 # otherwise, applies only to this software file.  Patent licenses, if
22 # any, provided herein do not apply to combinations of this program with
23 # other software, or any other product whatsoever.
24
25 # You should have received a copy of the GNU General Public License along
26 # with this program; if not, write the Free Software Foundation, Inc., 59
27 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
28
29 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
30 # Mountain View, CA  94043, or:
31
32 # http://www.sgi.com 
33
34 # For further information regarding this notice, see: 
35
36 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
37 #-----------------------------------------------------------------------
38 #
39 # creator
40 owner=tes@sherman.melbourne.sgi.com
41
42 # get standard environment, filters and checks
43 . ./common.rc
44 . ./common.filter
45 . ./common.attr
46
47 seq=`basename $0`
48 echo "QA output created by $seq"
49
50 _cleanup()
51 {
52     rm -f $tmp.*
53     rm -rf $TEST_DIR/$seq.dir1
54 }
55
56 here=`pwd`
57 tmp=/tmp/$$
58 status=1        # failure is the default!
59 trap "_cleanup; exit \$status" 0 1 2 3 15
60
61 acl_get=$here/src/acl_get
62
63 _get_file()
64 {
65     _file=$1
66
67     ls -ln $_file | awk '{ print $1, $3, $4, $NF }'
68     echo ""
69
70     echo "access, default, irix-semantics"
71     $acl_get -adi $_file
72     echo ""
73
74     echo "access, default, linux-semantics"
75     $acl_get -ad $_file
76     echo ""
77
78     echo "access, fd, irix-semantics"
79     $acl_get -afi $_file
80     echo ""
81
82     echo "access, fd, linux-semantics"
83     $acl_get -af $_file
84     echo ""
85 }
86
87 _acl_on()
88 {
89     # test if acl_get syscall is operational
90     # and hence the ACL config has been turned on  
91     touch syscalltest
92     if $acl_get -l syscalltest 2>&1 | tee -a $here/$seq.full \
93     | grep 'Function not implemented' >/dev/null
94     then
95       cd $here
96       _notrun "requires kernel ACL support"
97     fi
98 }
99
100 # real QA test starts here
101 rm -f $seq.full
102
103 _need_to_be_root
104
105 [ -x $acl_get ] || _notrun "$acl_get command not found" 
106 [ -x /bin/chacl ] || _notrun "chacl command not found"
107
108 # get dir
109 cd $TEST_DIR
110 rm -rf $seq.dir1
111 mkdir $seq.dir1
112 cd $seq.dir1
113
114 _acl_on
115
116 touch file1
117 chmod 752 file1
118 _get_file file1
119
120 # ensure that full blown acls' get/set work, not just minimal ones
121 _acl_setup_ids
122 chacl u::rwx,g::rw-,o::---,u:$acl1:r-x,g:$acl1:r--,m::rwx file1 2>&1
123 chacl -l file1 | _acl_filter_id
124 _get_file file1 | _acl_filter_id
125
126 # success, all done
127 status=0
128 exit