Fix up 057 to test the prior bug in acl_get_fd, acl_get_file.
[xfstests-dev.git] / common.quota
1 ##/bin/sh
2 #
3 # Functions useful for quota tests
4
5 # Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
6
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of version 2 of the GNU General Public License as
9 # published by the Free Software Foundation.
10
11 # This program is distributed in the hope that it would be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15 # Further, this software is distributed without any warranty that it is
16 # free of the rightful claim of any third person regarding infringement
17 # or the like.  Any license provided herein, whether implied or
18 # otherwise, applies only to this software file.  Patent licenses, if
19 # any, provided herein do not apply to combinations of this program with
20 # other software, or any other product whatsoever.
21
22 # You should have received a copy of the GNU General Public License along
23 # with this program; if not, write the Free Software Foundation, Inc., 59
24 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
25
26 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
27 # Mountain View, CA  94043, or:
28
29 # http://www.sgi.com 
30
31 # For further information regarding this notice, see: 
32
33 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 #
35
36
37 # checks that the XFS quota support in the kernel is enabled
38 # and that we have valid quota user tools installed.
39
40 _require_quota()
41 {
42     src/feature -q $TEST_DEV
43     [ $? -ne 0 ] && _notrun "Installed kernel does not support XFS quota"
44
45     [ ! -x /sbin/quotaon ] && _notrun "Quota user tools not installed"
46
47     /sbin/quotaon -x 2>&1 | grep "option requires an argument -- x" >/dev/null
48     [ $? -ne 0 ] && _notrun "Installed quota tools do not support XFS"
49 }
50
51 # create a file as a specific user (uid)
52 # takes filename, id, type (u/g), blocksize, blockcount
53
54 _file_as_id()
55 {
56     [ $# != 5 ] && _notrun "broken call to _file_as_id in test $seq"
57
58     if [ $3 = u ]
59     then
60         magik='$>'      # perlspeak for effective uid
61     elif [ $3 = g ]
62     then
63         magik='$)'      # perlspeak for effective gid
64     else
65         _notrun "broken type in call to _file_as_id in test $seq"
66     fi
67
68     perl <<EOF
69         \$| = 1;
70         $magik = $2;
71         exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seq.full 2>&1";
72 EOF
73 }
74
75 _choose_uid()
76 {
77     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
78         /etc/passwd
79 }
80
81 _choose_gid()
82 {
83     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
84         /etc/group
85 }
86
87 _filter_repquota()
88 {
89     perl -ne "
90         s/^(\w+)\s+([-|+])/[NAME]    \2/g;
91         s,$SCRATCH_DEV,[DEVICE],g;
92         print"
93 }
94
95 _qmount()
96 {
97     umount $SCRATCH_DEV >/dev/null 2>&1
98     mount -t xfs $SCRATCH_DEV $SCRATCH_MNT || _fail "qmount failed"
99     chmod ugo+rwx $SCRATCH_MNT
100     [ -x /usr/sbin/quot ] && quot $SCRATCH_DEV >>$seq.full 2>&1
101 }
102
103 # make sure this script returns success
104 /bin/true