QA source updates and some associated test changes
[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     [ ! -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 >/dev/null 2>&1
69         \$| = 1;
70         $magik = $2;
71         exec "dd if=/dev/zero of=$1 bs=$4 count=$5";
72 EOF
73 # for debugging the above euid change, try... [need write in cwd]
74 #       exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seq.full 2>&1";
75 }
76
77 _choose_uid()
78 {
79     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
80         /etc/passwd
81 }
82
83 _choose_gid()
84 {
85     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }' \
86         /etc/group
87 }
88
89 _filter_repquota()
90 {
91     perl -ne "
92         s/^(\w+)\s+([-|+])/[NAME]    \2/g;
93         s,$SCRATCH_DEV,[DEVICE],g;
94         print"
95 }
96
97 _qmount()
98 {
99     umount $SCRATCH_DEV >/dev/null 2>&1
100     mount -t xfs $SCRATCH_DEV $SCRATCH_MNT || _fail "qmount failed"
101     chmod ugo+rwx $SCRATCH_MNT
102     [ -x /usr/sbin/quot ] && quot $SCRATCH_MNT >>$seq.full 2>&1
103 }
104
105 # make sure this script returns success
106 /bin/true