Back out newly introduced EF_PROTECT_FREE.
[xfstests-dev.git] / 054
1 #! /bin/sh
2 # XFS QA Test No. 054
3 # $Id: 1.1 $
4 #
5 # Check behavior of chown with both user and group quota enabled,
6 # and changing both user and group together via chown(2).
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
10
11 # This program is free software; you can redistribute it and/or modify it
12 # under the terms of version 2 of the GNU General Public License as
13 # published by the Free Software Foundation.
14
15 # This program is distributed in the hope that it would be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
19 # Further, this software is distributed without any warranty that it is
20 # free of the rightful claim of any third person regarding infringement
21 # or the like.  Any license provided herein, whether implied or
22 # otherwise, applies only to this software file.  Patent licenses, if
23 # any, provided herein do not apply to combinations of this program with
24 # other software, or any other product whatsoever.
25
26 # You should have received a copy of the GNU General Public License along
27 # with this program; if not, write the Free Software Foundation, Inc., 59
28 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
29
30 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
31 # Mountain View, CA  94043, or:
32
33 # http://www.sgi.com 
34
35 # For further information regarding this notice, see: 
36
37 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
38 #-----------------------------------------------------------------------
39 #
40 # creator
41 owner=nathans@sgi.com
42
43 seq=`basename $0`
44 echo "QA output created by $seq"
45
46 here=`pwd`
47 tmp=/tmp/$$
48 status=1        # failure is the default!
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53 . ./common.quota
54
55 _cleanup()
56 {
57         umount $SCRATCH_MNT 2>/dev/null
58         rm -f $tmp.*
59 }
60 trap "_cleanup; exit \$status" 0 1 2 3 15
61 cp /dev/null $seq.full
62 chmod ugo+rwx $seq.full
63
64 _require_scratch
65
66 _filter_stat()
67 {
68     sed "
69         /^Access:/d;
70         /^Modify:/d;
71         /^Change:/d;
72         s/Device: *[0-9][0-9]*,[0-9][0-9]*/Device: <DEVICE>/;
73         s/Inode: *[0-9][0-9]*/Inode: <INODE>/;
74         s,$SCRATCH_MNT,<MOUNT>,;
75     " | tr -s ' '
76 }
77
78 _exercise()
79 {
80         mkfs -t xfs -f $SCRATCH_DEV >/dev/null 2>&1
81         _qmount
82
83         umask 022
84         touch $SCRATCH_MNT/testfile
85
86         chown 12345 $SCRATCH_MNT/testfile
87         chgrp 54321 $SCRATCH_MNT/testfile
88         src/lstat64 $SCRATCH_MNT/testfile | _filter_stat
89
90         chown 34567 $SCRATCH_MNT/testfile
91         chgrp 76543 $SCRATCH_MNT/testfile
92         src/lstat64 $SCRATCH_MNT/testfile | _filter_stat
93
94         chown 56789 $SCRATCH_MNT/testfile
95         chgrp 98765 $SCRATCH_MNT/testfile
96         src/lstat64 $SCRATCH_MNT/testfile | _filter_stat
97
98         # finally give back to original owners
99         chown 12345 $SCRATCH_MNT/testfile
100         chgrp 54321 $SCRATCH_MNT/testfile
101         src/lstat64 $SCRATCH_MNT/testfile | _filter_stat
102
103         echo
104         umount $SCRATCH_MNT 2>/dev/null
105 }
106
107 # real QA test starts here
108 mkfs -t xfs -f $SCRATCH_DEV >/dev/null 2>&1
109 MOUNT_OPTIONS="-o usrquota,grpquota"; export MOUNT_OPTIONS
110 _qmount
111 if src/feature -G $SCRATCH_DEV ; then
112         :
113 else
114         _notrun "No quota support at mount time"
115 fi
116 umount $SCRATCH_MNT 2>/dev/null
117
118 MOUNT_OPTIONS=""; export MOUNT_OPTIONS
119 echo "*** Default mount options"
120 _exercise
121
122 MOUNT_OPTIONS="-o usrquota"; export MOUNT_OPTIONS
123 echo "*** User quota mount option"
124 _exercise
125
126 MOUNT_OPTIONS="-o grpquota"; export MOUNT_OPTIONS
127 echo "*** Group quota mount option"
128 _exercise
129
130 MOUNT_OPTIONS="-o usrquota,grpquota"; export MOUNT_OPTIONS
131 echo "*** User and Group quota mount options"
132 _exercise
133
134 # success, all done
135 status=0
136 exit