#!/bin/sh1#2# Copyright (c) 2008, 2009 Edward Tomasz Napierała <[email protected]>3#4# Redistribution and use in source and binary forms, with or without5# modification, are permitted provided that the following conditions6# are met:7# 1. Redistributions of source code must retain the above copyright8# notice, this list of conditions and the following disclaimer.9# 2. Redistributions in binary form must reproduce the above copyright10# notice, this list of conditions and the following disclaimer in the11# documentation and/or other materials provided with the distribution.12#13# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND14# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE15# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE16# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE17# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL18# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS19# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)20# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT21# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY22# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF23# SUCH DAMAGE.24#25#2627# This is a wrapper script to run tools-nfs4.test on UFS filesystem.28#29# If any of the tests fails, here is how to debug it: go to30# the directory with problematic filesystem mounted on it,31# and do /path/to/test run /path/to/test tools-nfs4.test, e.g.32#33# /usr/src/tools/regression/acltools/run /usr/src/tools/regression/acltools/tools-nfs4.test34#35# Output should be obvious.3637if [ $(sysctl -n kern.features.ufs_acl 2>/dev/null || echo 0) -eq 0 ]; then38echo "1..0 # SKIP system does not have UFS ACL support"39exit 040fi41if [ $(id -u) -ne 0 ]; then42echo "1..0 # SKIP you must be root"43exit 044fi45if [ ! -c /dev/mdctl ]; then46echo "1..0 # SKIP no /dev/mdctl to create md devices"47exit 048fi4950echo "1..4"5152TESTDIR=$(dirname $(realpath $0))5354# Set up the test filesystem.55MD=`mdconfig -at swap -s 10m`56MNT=`mktemp -dt acltools`57newfs /dev/$MD > /dev/null58trap "cd /; umount -f $MNT; rmdir $MNT; mdconfig -d -u $MD" EXIT59mount -o nfsv4acls /dev/$MD $MNT60if [ $? -ne 0 ]; then61echo "not ok 1 - mount failed."62echo 'Bail out!'63exit 164fi6566echo "ok 1"6768cd $MNT6970# First, check whether we can crash the kernel by creating too many71# entries. For some reason this won't work in the test file.72touch xxx73setfacl -x2 xxx74while :; do setfacl -a0 u:42:rwx:allow xxx 2> /dev/null; if [ $? -ne 0 ]; then break; fi; done75chmod 600 xxx76rm xxx77echo "ok 2"7879if [ `sysctl -n vfs.acl_nfs4_old_semantics` = 0 ]; then80perl $TESTDIR/run $TESTDIR/tools-nfs4-psarc.test >&281else82perl $TESTDIR/run $TESTDIR/tools-nfs4.test >&283fi8485if [ $? -eq 0 ]; then86echo "ok 3"87else88echo "not ok 3"89fi9091cd /9293echo "ok 4"94959697