1N/A#
1N/A# CDDL HEADER START
1N/A#
1N/A# The contents of this file are subject to the terms of the
1N/A# Common Development and Distribution License (the "License").
1N/A# You may not use this file except in compliance with the License.
1N/A#
1N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1N/A# or http://www.opensolaris.org/os/licensing.
1N/A# See the License for the specific language governing permissions
1N/A# and limitations under the License.
1N/A#
1N/A# When distributing Covered Code, include this CDDL HEADER in each
1N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1N/A# If applicable, add the following below this CDDL HEADER, with the
1N/A# fields enclosed by brackets "[]" replaced with your own identifying
1N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1N/A#
1N/A# CDDL HEADER END
1N/A#
1N/A
1N/A#
1N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
1N/A# Use is subject to license terms.
1N/A#
1N/A
1N/A#
1N/A# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
1N/A#
1N/A
1N/A. $STF_SUITE/tests/functional/quota/quota.cfg
1N/A
1N/A# BLOCK_SIZE, QUOTA_VALUE and TOLERANCE set in quota.cfg
1N/Areadonly EDQUOT=49
1N/A
1N/A#
1N/A# Function to fill the quota of a zfs filesystem
1N/A#
1N/A# $1 - The File system or container to fill.
1N/A# $2 - The mountpoint to use.
1N/A#
1N/Afunction fill_quota
1N/A{
1N/A typeset FILESYSTEM="$1"
1N/A typeset MNTPT="$2"
1N/A
1N/A log_must zfs set quota=$QUOTA_VALUE $FILESYSTEM
1N/A
1N/A typeset -i write_size=0
1N/A (( write_size = 2 * QUOTA_VALUE ))
1N/A
1N/A typeset -i zret=0
1N/A file_write -o create -f $MNTPT/$TESTFILE1 -b $BLOCK_SIZE \
1N/A -c $write_size -d 0
1N/A zret=$?
1N/A [[ $zret -ne EDQUOT ]] && \
1N/A log_fail "Returned error code: $zret. Expected: $EDQUOT."
1N/A
1N/A typeset -i file_size=`ls -ls $MNTPT/$TESTFILE1 | awk '{ print $1 }'`
1N/A typeset -i limit=0
1N/A (( file_size = file_size * 512 ))
1N/A (( limit = QUOTA_VALUE + TOLERANCE ))
1N/A (( file_size > limit )) && \
1N/A log_fail "File was created larger than the quota value, aborting!!!"
1N/A return 0
1N/A}
1N/A
1N/A#
1N/A# Function attempts to write another file in a ZFS filesystem
1N/A# that has already filled its quota
1N/A#
1N/Afunction exceed_quota
1N/A{
1N/A typeset FILESYSTEM="$1"
1N/A typeset MNTPT="$2"
1N/A
1N/A log_must fill_quota $FILESYSTEM $MNTPT
1N/A typeset -i write_size=0
1N/A (( write_size = 2 * QUOTA_VALUE ))
1N/A typeset -i zret=0
1N/A #
1N/A # Writing a file without API to access return code
1N/A #
1N/A log_note "Creating a file in a FS that has already exceeded its quota"
1N/A file_write -o create -f $MNTPT/$TESTFILE2 \
1N/A -b $BLOCK_SIZE -c $write_size -d 0
1N/A zret=$?
1N/A [[ $zret -ne EDQUOT ]] && \
1N/A log_fail "Returned error code: $zret. Expected: EDQUOT."
1N/A return 0
1N/A}
1N/A