Add GPL license plate to SGI's test files.
[xfstests-dev.git] / 053
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 053
22 #
23 # xfs_repair breaks acls
24 #
25 # creator
26 owner=ajag@sgi.com
27
28 seq=`basename $0`
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
39 . ./common.attr
40
41 # real QA test starts here
42 _supported_fs xfs
43 _supported_os Linux
44
45 [ ! -x /bin/chacl -a ! -x /usr/bin/chacl ] && _notrun "chacl command not found"
46
47 _require_scratch
48 _acl_setup_ids
49 _do_die_on_error=y
50 test=$SCRATCH_MNT/test
51
52 # make filesystem on scratch using the defaults
53 _do 'make filesystem on $SCRATCH_DEV' '_scratch_mkfs_xfs'
54 _do 'mount filesytem' '_scratch_mount'
55
56 # create test files and set acls
57 acls="
58 u::r--,g::rwx,o::rw-
59 u::r-x,g::---,o::---
60 u::---,g::r-x,o::---
61 u::---,g::---,o::r-x
62 u::---,g::r-x,o::rwx
63 u::---,g::---,o::---,u:$acl2:r-x,m::rwx
64 u::rwx,g::r-x,o::r--
65 u::---,g::---,o::---,g:$acl2:r-x,m::-w-"
66
67 i=0
68 for acl in $acls
69 do
70   _do "touch $test.$i"
71   _do "chacl $acl $test.$i"
72   let i=$i+1
73 done
74
75 list_acls()
76 {
77   i=0
78   for acl in $acls
79   do
80     chacl -l $test.$i | _acl_filter_id | sed -e "s!$SCRATCH_MNT!\$SCRATCH_MNT!"
81     let i=$i+1
82   done
83 }
84
85 echo "acls before repair:"
86 list_acls
87 _do 'unmount $SCRATCH_DEV' 'umount $SCRATCH_DEV'
88 _do 'repair filesystem' '_scratch_xfs_repair'
89 _do 'mount filesytem' '_scratch_mount'
90 echo "acls after repair: "
91 list_acls
92
93 # success, all done
94 status=0; exit