Home | History | Annotate | Line # | Download | only in ffs
t_miscquota.sh revision 1.3.4.1
      1  1.3.4.1    yamt # $NetBSD: t_miscquota.sh,v 1.3.4.1 2012/04/17 00:09:03 yamt Exp $ 
      2      1.2  bouyer #
      3      1.2  bouyer #  Copyright (c) 2011 Manuel Bouyer
      4      1.2  bouyer #  All rights reserved.
      5      1.2  bouyer # 
      6      1.2  bouyer #  Redistribution and use in source and binary forms, with or without
      7      1.2  bouyer #  modification, are permitted provided that the following conditions
      8      1.2  bouyer #  are met:
      9      1.2  bouyer #  1. Redistributions of source code must retain the above copyright
     10      1.2  bouyer #     notice, this list of conditions and the following disclaimer.
     11      1.2  bouyer #  2. Redistributions in binary form must reproduce the above copyright
     12      1.2  bouyer #     notice, this list of conditions and the following disclaimer in the
     13      1.2  bouyer #     documentation and/or other materials provided with the distribution.
     14      1.2  bouyer # 
     15      1.2  bouyer #  THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     16      1.2  bouyer #  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17      1.2  bouyer #  TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18      1.2  bouyer #  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     19      1.2  bouyer #  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20      1.2  bouyer #  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21      1.2  bouyer #  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22      1.2  bouyer #  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23      1.2  bouyer #  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24      1.2  bouyer #  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25      1.2  bouyer #  POSSIBILITY OF SUCH DAMAGE.
     26      1.2  bouyer #
     27      1.2  bouyer 
     28      1.2  bouyer test_case_root walk_list_user quota_walk_list \
     29      1.2  bouyer     "walk user quota list over several disk blocks" -b le 1 user
     30      1.2  bouyer 
     31      1.2  bouyer test_case_root psnapshot_user quota_snap \
     32      1.2  bouyer     "create a persistent shapshot of quota-enabled fs, and do some writes" \
     33      1.2  bouyer     -b le 1 user
     34      1.2  bouyer 
     35      1.2  bouyer test_case_root npsnapshot_user quota_snap \
     36      1.2  bouyer     "create a non-persistent shapshot of quota-enabled fs, and do some writes" \
     37      1.2  bouyer     -boL le 1 user
     38      1.2  bouyer 
     39      1.2  bouyer test_case_root psnapshot_unconf_user quota_snap \
     40      1.2  bouyer     "create a persistent shapshot of quota-enabled fs, and do some writes and unconf" \
     41      1.2  bouyer     -boC le 1 user
     42      1.2  bouyer 
     43      1.2  bouyer test_case_root npsnapshot_unconf_user quota_snap \
     44      1.2  bouyer     "create a non-persistent shapshot of quota-enabled fs, and do some writes and unconf" \
     45      1.2  bouyer     -boLC le 1 user
     46      1.2  bouyer 
     47      1.2  bouyer test_case log_unlink quota_log \
     48      1.2  bouyer     "an unlinked file cleaned by the log replay should update quota" \
     49      1.2  bouyer     -l le 1 user
     50      1.2  bouyer 
     51      1.2  bouyer test_case log_unlink_remount quota_log \
     52      1.2  bouyer     "an unlinked file cleaned by the log replay after remount" \
     53      1.2  bouyer     -oRL le 1 user
     54      1.2  bouyer 
     55      1.2  bouyer 
     56      1.2  bouyer quota_walk_list()
     57      1.2  bouyer {
     58  1.3.4.1    yamt 	create_ffs_server $*
     59      1.2  bouyer 	local q=$4
     60      1.2  bouyer 	local expect
     61      1.2  bouyer 
     62      1.2  bouyer 	case ${q} in
     63      1.2  bouyer 	user)
     64      1.2  bouyer 		expect=u
     65      1.2  bouyer 		fail=g
     66      1.2  bouyer 		;;
     67      1.2  bouyer 	group)
     68      1.2  bouyer 		expect=g
     69      1.2  bouyer 		fail=u
     70      1.2  bouyer 		;;
     71      1.2  bouyer 	*)
     72      1.2  bouyer 		atf_fail "wrong quota type"
     73      1.2  bouyer 		;;
     74      1.2  bouyer 	esac
     75      1.2  bouyer 
     76      1.2  bouyer 	# create 100 users, all in the same hash list
     77      1.2  bouyer 	local i=1;
     78      1.2  bouyer 	while [ $i -lt 101 ]; do
     79      1.2  bouyer 		atf_check -s exit:0 \
     80      1.3  bouyer 		   env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=vfs=getvfsstat,blanket=/mnt edquota -${expect} \
     81      1.2  bouyer 		   -s10k/20 -h40M/50k -t 2W/3D $((i * 4096))
     82      1.2  bouyer 		i=$((i + 1))
     83      1.2  bouyer 	done
     84      1.2  bouyer 	# do a repquota
     85  1.3.4.1    yamt 	atf_check -s exit:0 -o 'match:user 409600 block  *81920 20 0' \
     86      1.3  bouyer 	    env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=vfs=getvfsstat,blanket=/mnt repquota -x -${expect} /mnt
     87  1.3.4.1    yamt 	rump_quota_shutdown
     88      1.2  bouyer }
     89      1.2  bouyer 
     90      1.2  bouyer quota_snap()
     91      1.2  bouyer {
     92      1.2  bouyer 	local flag=$1; shift
     93  1.3.4.1    yamt 	create_ffs $*
     94      1.2  bouyer 	local q=$3
     95      1.2  bouyer 	local expect
     96      1.2  bouyer 
     97      1.2  bouyer 	case ${q} in
     98      1.2  bouyer 	user)
     99      1.2  bouyer 		expect=u
    100      1.2  bouyer 		fail=g
    101      1.2  bouyer 		;;
    102      1.2  bouyer 	group)
    103      1.2  bouyer 		expect=g
    104      1.2  bouyer 		fail=u
    105      1.2  bouyer 		;;
    106      1.2  bouyer 	*)
    107      1.2  bouyer 		atf_fail "wrong quota type"
    108      1.2  bouyer 		;;
    109      1.2  bouyer 	esac
    110      1.2  bouyer 
    111      1.2  bouyer 	#start our server which takes a snapshot
    112      1.2  bouyer 	atf_check -s exit:0 -o ignore \
    113      1.2  bouyer 	    $(atf_get_srcdir)/h_quota2_tests ${flag} 4 ${IMG} ${RUMP_SERVER}
    114      1.2  bouyer 	# create a few users
    115      1.2  bouyer 	local i=1;
    116      1.2  bouyer 	while [ $i -lt 11 ]; do
    117      1.2  bouyer 		atf_check -s exit:0 \
    118      1.3  bouyer 		   env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=vfs=getvfsstat,blanket=/mnt edquota -${expect} \
    119      1.2  bouyer 		   -s10k/20 -h40M/50k -t 2W/3D $i
    120      1.2  bouyer 		i=$((i + 1))
    121      1.2  bouyer 	done
    122      1.2  bouyer 	# we should have 5 files (root + 4 regular files)
    123      1.2  bouyer 	atf_check -s exit:0 \
    124      1.2  bouyer 	    -o 'match:-        -  7days         5       -       -  7days' \
    125      1.3  bouyer 	    env LD_PRELOAD=/usr/lib/librumphijack.so RUMPHIJACK=vfs=getvfsstat,blanket=/mnt repquota -av
    126      1.2  bouyer 	#shutdown and check filesystem
    127  1.3.4.1    yamt 	rump_quota_shutdown
    128      1.2  bouyer }
    129      1.2  bouyer 
    130      1.2  bouyer quota_log()
    131      1.2  bouyer {
    132      1.2  bouyer 	local srv2args=$1; shift
    133  1.3.4.1    yamt 	create_ffs $*
    134      1.2  bouyer 	local q=$3
    135      1.2  bouyer 	local expect
    136      1.2  bouyer 
    137      1.2  bouyer 	case ${q} in
    138      1.2  bouyer 	user)
    139      1.2  bouyer 		expect=u
    140      1.2  bouyer 		fail=g
    141      1.2  bouyer 		;;
    142      1.2  bouyer 	group)
    143      1.2  bouyer 		expect=g
    144      1.2  bouyer 		fail=u
    145      1.2  bouyer 		;;
    146      1.2  bouyer 	*)
    147      1.2  bouyer 		atf_fail "wrong quota type"
    148      1.2  bouyer 		;;
    149      1.2  bouyer 	esac
    150      1.2  bouyer 
    151      1.2  bouyer 	#start our server which create a file and unlink while keeping
    152      1.2  bouyer 	# it open. The server halts itself without flush
    153      1.2  bouyer 	atf_check -s exit:0 -o ignore \
    154      1.2  bouyer 	    $(atf_get_srcdir)/h_quota2_tests -loU 5 ${IMG} ${RUMP_SERVER}
    155      1.2  bouyer 	# we should have one unlinked file, but the log covers it.
    156      1.2  bouyer 	atf_check -s exit:0 -o match:'3 files' -e ignore \
    157      1.2  bouyer 	    fsck_ffs -nf -F ${IMG}
    158      1.2  bouyer 	# have a kernel mount the fs again; it should cleanup the
    159      1.2  bouyer 	# unlinked file
    160      1.2  bouyer 	atf_check -o ignore -e ignore $(atf_get_srcdir)/h_quota2_tests \
    161      1.2  bouyer 	    ${srv2args} -b 5 ${IMG} ${RUMP_SERVER}
    162      1.2  bouyer 	#shutdown and check filesystem
    163  1.3.4.1    yamt 	rump_quota_shutdown
    164      1.2  bouyer }
    165