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