don't use -f to "hostname", its not portable.
[xfstests-dev.git] / 053
1 #! /bin/sh
2 # XFS QA Test No. 053
3 # $Id: 1.1 $
4 #
5 # xfs_repair breaks acls
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=ajag@bruce.melbourne.sgi.com
41
42 seq=`basename $0`
43 echo "QA output created by $seq"
44
45 here=`pwd`
46 tmp=/tmp/$$
47 status=1        # failure is the default!
48 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.attr
54
55 # real QA test starts here
56 _require_scratch
57 _acl_setup_ids
58 _do_die_on_error=y
59 test=$SCRATCH_MNT/test
60
61 # make filesystem on scratch using the defaults
62 _do 'make filesystem on $SCRATCH_DEV' \
63     'mkfs -t xfs -f $SCRATCH_DEV'
64 _do 'mount filesytem' \
65     'mount -t xfs $SCRATCH_DEV $SCRATCH_MNT'
66
67 # create test files and set acls
68 acls="
69 u::r--,g::rwx,o::rw-
70 u::r-x,g::---,o::---
71 u::---,g::r-x,o::---
72 u::---,g::---,o::r-x
73 u::---,g::r-x,o::rwx
74 u::---,g::---,o::---,u:$acl2:r-x,m::rwx
75 u::rwx,g::r-x,o::r--
76 u::---,g::---,o::---,g:$acl2:r-x,m::-w-"
77
78 i=0
79 for acl in $acls
80 do
81   _do "touch $test.$i"
82   _do "chacl $acl $test.$i"
83   i=`expr $i + 1`
84 done
85
86 list_acls()
87 {
88   i=0
89   for acl in $acls
90   do
91     chacl -l $test.$i | _acl_filter_id | sed -e "s!$SCRATCH_MNT!\$SCRATCH_MNT!"
92     i=`expr $i + 1`
93   done
94 }
95
96 echo "acls before repair:"
97 list_acls
98 _do 'unmount $SCRATCH_DEV' 'umount $SCRATCH_DEV'
99 _do 'repair filesystem' 'xfs_repair $SCRATCH_DEV'
100 _do 'mount filesytem' 'mount -t xfs $SCRATCH_DEV $SCRATCH_MNT'
101 echo "acls after repair: "
102 list_acls
103
104 # success, all done
105 status=0; exit