Update configure scripts in xfstests directory.
[xfstests-dev.git] / common.quota
1 ##/bin/sh
2 #
3 # Functions useful for quota tests
4
5 # Copyright (c) 2000-2001 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     if [ "$HOSTOS" = "IRIX" ]; then 
46         [ ! -x /usr/etc/quotaon ] && _notrun "Quota user tools not installed"
47     else
48         [ ! -x /sbin/quotaon ] && _notrun "Quota user tools not installed"
49
50         /sbin/quotaon -x 2>&1 | grep "option requires an argument -- x" >/dev/null
51         [ $? -ne 0 ] && _notrun "Installed quota tools do not support XFS"
52     fi
53 }
54
55 # create a file as a specific user (uid)
56 # takes filename, id, type (u/g), blocksize, blockcount
57
58 _file_as_id()
59 {
60     [ $# != 5 ] && _notrun "broken call to _file_as_id in test $seq"
61
62     if [ $3 = u ]
63     then
64         magik='$>'      # perlspeak for effective uid
65     elif [ $3 = g ]
66     then
67         magik='$)'      # perlspeak for effective gid
68     else
69         _notrun "broken type in call to _file_as_id in test $seq"
70     fi
71
72     perl <<EOF >/dev/null 2>&1
73         \$| = 1;
74         $magik = $2;
75         exec "dd if=/dev/zero of=$1 bs=$4 count=$5";
76 EOF
77 # for debugging the above euid change, try... [need write in cwd]
78 #       exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seq.full 2>&1";
79 }
80
81 _choose_uid()
82 {
83     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
84         /etc/passwd
85 }
86
87 _choose_gid()
88 {
89     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
90         /etc/group
91 }
92
93 _filter_repquota()
94 {
95     head -$1 | perl -ne "
96         s/^(\w+)\s+([-|+])/[NAME]    \2/g;
97         s($SCRATCH_DEV)([DEVICE])g;
98         print"
99 }
100
101 _qmount()
102 {
103     umount $SCRATCH_DEV >/dev/null 2>&1
104     _scratch_mount || _fail "qmount failed"
105     chmod ugo+rwx $SCRATCH_MNT
106     [ -x /usr/sbin/quot ] && quot $SCRATCH_MNT >>$seq.full 2>&1
107 }
108
109 # make sure this script returns success
110 /bin/true