xfs: test that reflink forces the log if mounted with wsync
[xfstests-dev.git] / common / quota
1 ##/bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.  All Rights Reserved.
4 #
5 # Functions useful for quota tests
6
7 # checks that the generic quota support in the kernel is enabled
8 # and that we have valid quota user tools installed.
9 #
10 _require_quota()
11 {
12     [ -n "$QUOTA_PROG" ] || _notrun "Quota user tools not installed"
13
14     case $FSTYP in
15     ext2|ext3|ext4|ext4dev|f2fs|reiserfs)
16         if [ ! -d /proc/sys/fs/quota ]; then
17             _notrun "Installed kernel does not support quotas"
18         fi
19         ;;
20     gfs2|ocfs2)
21         ;;
22     xfs)
23         if [ ! -f /proc/fs/xfs/xqmstat ]; then
24             _notrun "Installed kernel does not support XFS quotas"
25         fi
26         if [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ]; then
27             _notrun "Quotas not supported on realtime test device"
28         fi
29         if [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ]; then
30             _notrun "Quotas not supported on realtime scratch device"
31         fi
32         ;;
33     *)
34         _notrun "disk quotas not supported by this filesystem type: $FSTYP"
35         ;;
36     esac
37 }
38
39 #
40 # checks that the XFS quota support in the kernel is enabled
41 # and that we have valid quota user tools installed.
42 #
43 _require_xfs_quota()
44 {
45     $here/src/feature -q $TEST_DEV
46     [ $? -ne 0 ] && _notrun "Installed kernel does not support XFS quota"
47     if [ "$USE_EXTERNAL" = yes -a ! -z "$TEST_RTDEV" ]; then
48         _notrun "Quotas not supported on realtime test device"
49     fi
50     if [ "$USE_EXTERNAL" = yes -a ! -z "$SCRATCH_RTDEV" ]; then
51         _notrun "Quotas not supported on realtime scratch device"
52     fi
53     [ -n "$XFS_QUOTA_PROG" ] || _notrun "XFS quota user tools not installed"
54 }
55
56 #
57 # checks that xfs_quota can operate on foreign (non-xfs) filesystems
58 # Skips check on xfs filesystems, old xfs_quota is fine there.
59 # Appends "-f" to enable foreign behavior on non-xfs filesystems if available.
60 #
61 _require_xfs_quota_foreign()
62 {
63         if [ "$FSTYP" != "xfs" ]; then
64                 $XFS_QUOTA_PROG -f -V &>/dev/null || \
65                  _notrun "xfs_quota binary does not support foreign filesystems"
66                 XFS_QUOTA_PROG="$XFS_QUOTA_PROG -f"
67         fi
68 }
69
70 #
71 # Checks that the project quota support in the kernel is enabled.
72 # The device must be mounted for detection to work properly.
73 #
74 _require_prjquota()
75 {
76     [ -n "$1" ] && _dev="$1" || _dev="$TEST_DEV"
77     if [[ "$FSTYP" == ext[234] ]]; then
78         dumpe2fs -h $_dev 2>&1 | grep -qw project || \
79                 _notrun "Project quota not available on this $FSTYP"
80     fi
81     if [ "$FSTYP" == "f2fs" ]; then
82         dump.f2fs $_dev 2>&1 | grep -qw project_quota
83         [ $? -ne 0 ] && _notrun "Project quota not enabled in this device $_dev"
84         dump.f2fs $_dev 2>&1 | grep -qw quota_ino
85         [ $? -ne 0 ] && _notrun "quota sysfile not enabled in this device $_dev"
86         cat /sys/fs/f2fs/features/project_quota | grep -qw supported
87         [ $? -ne 0 ] && _notrun "Installed kernel does not support project quotas"
88         return
89     fi
90     $here/src/feature -P $_dev
91     [ $? -ne 0 ] && _notrun "Installed kernel does not support project quotas"
92     if [ "$USE_EXTERNAL" = yes ]; then
93         if [ -n "$TEST_RTDEV" -o -n "$SCRATCH_RTDEV" ]; then
94             _notrun "Project quotas not supported on realtime filesystem"
95         fi
96     fi
97 }
98
99 #
100 # Do we have GETNEXTQUOTA?  Querying ID 0 should work.
101 #
102 _require_getnextquota()
103 {
104         _require_test_program "test-nextquota"
105         $here/src/test-nextquota -i 0 -u -d $SCRATCH_DEV &> $seqres.full || \
106                 _notrun "No GETNEXTQUOTA support"
107 }
108
109 #
110 # ext4 (for now) is unique in that we must enable the project quota feature
111 # prior to mount.  This is a relatively new feature ...
112 _scratch_enable_pquota()
113 {
114         case $FSTYP in
115         ext2|ext3|ext4)
116                 tune2fs -O quota,project $SCRATCH_DEV >>$seqres.full 2>&1
117                 _try_scratch_mount >/dev/null 2>&1 \
118                         || _notrun "kernel doesn't support project feature on $FSTYP"
119                 _scratch_unmount
120                 ;;
121         f2fs)
122                 _scratch_mkfs "-O extra_attr -O quota -O project_quota" >> $seqres.full 2>&1
123                 ;;
124         esac
125 }
126
127 _require_setquota_project()
128 {
129         setquota --help 2>&1 | \
130                 grep -q "\-P, \-\-project[[:space:]]*set limits for project"
131         if [ "$?" -ne 0 ];then
132                 _notrun "setquota doesn't support project quota (-P)"
133         fi
134 }
135
136 #
137 # checks for user nobody in /etc/passwd and /etc/group.
138 #
139 _require_nobody()
140 {
141     _cat_passwd | grep -q '^nobody'
142     [ $? -ne 0 ] && _notrun "password file does not contain user nobody."
143
144     _cat_group | egrep -q '^no(body|group)'
145     [ $? -ne 0 ] && _notrun "group file does not contain nobody/nogroup."
146 }
147
148 # create a file as a specific user (uid)
149 # takes filename, id, type (u/g/p), blocksize, blockcount
150 #
151 _file_as_id()
152 {
153     [ $# != 5 ] && _fail "broken call to _file_as_id in test $seq"
154
155     parent=`dirname $1`
156     if [ $3 = p ]; then
157         echo PARENT: $XFS_IO_PROG -r -c "chproj $2" -c "chattr +P" $parent >>$seqres.full
158         $XFS_IO_PROG -r -c "chproj $2" -c "chattr +P" $parent >>$seqres.full 2>&1
159         magik='$>'      # (irrelevent, above set projid-inherit-on-parent)
160     elif [ $3 = u ]; then
161         magik='$>'      # perlspeak for effective uid
162     elif [ $3 = g ]; then
163         magik='$)'      # perlspeak for effective gid
164     else
165         _notrun "broken type in call to _file_as_id in test $seq"
166     fi
167
168     perl <<EOF >>$seqres.full 2>&1
169         \$| = 1;
170         $magik = $2;
171         if ($5 == 0) {
172             print "touch $1";
173             exec "touch $1";
174         } else {
175             print "dd if=/dev/zero of=$1 bs=$4 count=$5";
176             exec "dd if=/dev/zero of=$1 bs=$4 count=$5";
177         }
178 EOF
179 # for debugging the above euid change, try... [need write in cwd]
180 #       exec "dd if=/dev/zero of=$1 bs=$4 count=$5 >>$seqres.full 2>&1";
181
182     if [ $3 = p ]; then
183         echo PARENT: $XFS_IO_PROG -r -c "chproj 0" -c "chattr -P" $parent >>$seqres.full
184         $XFS_IO_PROG -r -c "chproj 0" -c "chattr -P" $parent >>$seqres.full 2>&1
185     fi
186 }
187
188 _choose_uid()
189 {
190     _cat_passwd | grep '^nobody' | perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }'
191 }
192
193 _choose_gid()
194 {
195     _cat_group | egrep '^no(body|group)' | perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[2],$a[0] }'
196 }
197
198 _choose_prid()
199 {
200     if [ "X$projid_file" == "X" ]; then
201         projid_file=/etc/projid
202     fi
203     if [ ! -f $projid_file ]; then
204         echo 0
205         return
206     fi
207     perl -ne '@a = split(/:/); END { printf "id=%d name=%s\n", $a[1],$a[0] }' \
208         $projid_file
209 }
210
211 _qmount()
212 {
213     _scratch_unmount >/dev/null 2>&1
214     _try_scratch_mount || _fail "qmount failed"
215     # xfs doesn't need these setups and quotacheck even fails on xfs
216     # redirect the output to $seqres.full for debug purpose and ignore results
217     if [ "$FSTYP" != "xfs" ]; then
218         quotacheck -ug $SCRATCH_MNT >>$seqres.full 2>&1
219         quotaon -ug $SCRATCH_MNT >>$seqres.full 2>&1
220     fi
221     chmod ugo+rwx $SCRATCH_MNT
222 }
223
224 #
225 # Ensures only the given quota mount option is used
226 #
227 _qmount_option()
228 {
229         OPTS=$1
230
231         # Replace any user defined quota options
232         # with the quota option that we want.
233         # Simplest to do this rather than delete existing ones first because
234         # of the variety of commas and spaces and multiple -o's
235         # that we'd have to cater for. Doesn't matter if we have duplicates.
236         # Use "QUOTA" string so that we don't have any substring confusion
237         # thanks to "quota" which will match with "uquota" and "gquota" etc.
238         export MOUNT_OPTIONS=`echo $MOUNT_OPTIONS \
239         | sed   -e 's/uquota/QUOTA/g'      \
240                 -e 's/usrquota/QUOTA/g'    \
241                 -e 's/usrjquota=[^, ]*/QUOTA/g' \
242                 -e 's/gquota/QUOTA/g'      \
243                 -e 's/grpquota/QUOTA/g'    \
244                 -e 's/grpjquota=[^, ]*/QUOTA/g' \
245                 -e 's/\bpquota/QUOTA/g'    \
246                 -e 's/prjquota/QUOTA/g'    \
247                 -e 's/quota/QUOTA/g'       \
248                 -e 's/uqnoenforce/QUOTA/g' \
249                 -e 's/gqnoenforce/QUOTA/g' \
250                 -e 's/pqnoenforce/QUOTA/g' \
251                 -e 's/qnoenforce/QUOTA/g'  \
252                 -e "s/QUOTA/$OPTS/g"`
253
254         # ext4 doesn't _do_ "-o pquota/prjquota" because reasons
255         # Switch it to "quota" to enable mkfs-time pquota
256         if [[ "$FSTYP" == ext[234] ]]; then
257                 OPTS=`echo $OPTS \
258                 | sed   -e 's/\bpquota/quota/g' \
259                         -e 's/prjquota/quota/g'`
260         fi
261         # Ensure we have the given quota option - duplicates are fine
262         export MOUNT_OPTIONS="$MOUNT_OPTIONS -o $OPTS"
263         echo "MOUNT_OPTIONS = $MOUNT_OPTIONS" >>$seqres.full
264 }
265
266 _check_quota_usage()
267 {
268         # Sync to get delalloc to disk
269         sync
270
271         # kill caches to guarantee removal speculative delalloc
272         # XXX: really need an ioctl instead of this big hammer
273         echo 3 > /proc/sys/vm/drop_caches
274
275         VFS_QUOTA=0
276         case $FSTYP in
277         ext2|ext3|ext4|ext4dev|f2fs|reiserfs|gfs2)
278                 VFS_QUOTA=1
279                 quotaon -f -u -g $SCRATCH_MNT 2>/dev/null
280                 ;;
281         xfs)
282                 # Only way to make this reliable with cow/delalloc/speculative
283                 # preallocations is to unmount and remount the whole mess...
284                 _scratch_unmount
285                 _scratch_mount "-o usrquota,grpquota"
286                 ;;
287         *)
288                 ;;
289         esac
290         repquota -u -n $SCRATCH_MNT  | grep -v "^#0" | _filter_scratch |
291                 sort >$tmp.user.orig
292         repquota -g -n $SCRATCH_MNT  | grep -v "^#0" | _filter_scratch |
293                 sort >$tmp.group.orig
294         if [ $VFS_QUOTA -eq 1 ]; then
295                 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
296         else
297                 # use XFS method to force quotacheck
298                 xfs_quota -x -c "off -ug" $SCRATCH_MNT
299                 _scratch_unmount
300                 _scratch_mount "-o usrquota,grpquota"
301         fi
302         repquota -u -n $SCRATCH_MNT  | grep -v "^#0" | _filter_scratch |
303                 sort >$tmp.user.checked
304         repquota -g -n $SCRATCH_MNT  | grep -v "^#0" | _filter_scratch |
305                 sort >$tmp.group.checked
306         if [ $VFS_QUOTA -eq 1 ]; then
307                 quotaon -u -g $SCRATCH_MNT 2>/dev/null
308         fi
309         {
310                 echo "Comparing user usage"
311                 diff $tmp.user.orig $tmp.user.checked
312         } && {
313                 echo "Comparing group usage"
314                 diff $tmp.group.orig $tmp.group.checked
315         }
316 }
317
318 # Report the block usage of root, $qa_user, and nobody
319 _report_quota_blocks() {
320         repquota $1 | egrep "^($qa_user|root|nobody)" | awk '{print $1, $3, $4, $5}' | sort -r
321 }
322
323 # Report the inode usage of root, $qa_user, and nobody
324 _report_quota_inodes() {
325         repquota $1 | egrep "^($qa_user|root|nobody)" | awk '{print $1, $6, $7, $8}' | sort -r
326 }
327
328 # make sure this script returns success
329 /bin/true