#!/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 ZFS filesystem.28#29# WARNING: It uses hardcoded ZFS pool name "acltools"30#31# If any of the tests fails, here is how to debug it: go to32# the directory with problematic filesystem mounted on it,33# and do /path/to/test run /path/to/test tools-nfs4.test, e.g.34#35# /usr/src/tools/regression/acltools/run /usr/src/tools/regression/acltools/tools-nfs4.test36#37# Output should be obvious.3839if ! sysctl vfs.zfs.version.spa >/dev/null 2>&1; then40echo "1..0 # SKIP system doesn't have ZFS loaded"41exit 042fi43if [ $(id -u) -ne 0 ]; then44echo "1..0 # SKIP you must be root"45exit 046fi47if [ ! -c /dev/mdctl ]; then48echo "1..0 # SKIP no /dev/mdctl to create md devices"49exit 050fi5152echo "1..4"5354TESTDIR=$(dirname $(realpath $0))5556# Set up the test filesystem.57MD=`mdconfig -at swap -s 64m`58MNT=`mktemp -dt acltools`59trap "cd /; zpool destroy -f acltools; rmdir $MNT; mdconfig -d -u $MD" EXIT60zpool create -m $MNT acltools /dev/$MD61if [ $? -ne 0 ]; then62echo "not ok 1 - 'zpool create' failed."63echo 'Bail out!'64exit 165fi6667echo "ok 1"6869cd $MNT7071# First, check whether we can crash the kernel by creating too many72# entries. For some reason this won't work in the test file.73touch xxx74setfacl -x2 xxx75while :; do setfacl -a0 u:42:rwx:allow xxx 2> /dev/null; if [ $? -ne 0 ]; then break; fi; done76chmod 600 xxx77rm xxx78echo "ok 2"7980perl $TESTDIR/run $TESTDIR/tools-nfs4-psarc.test >&28182if [ $? -eq 0 ]; then83echo "ok 3"84else85echo "not ok 3 # TODO: fails due to ACL changes in ZFS; bug 212323"86fi8788echo "ok 4"899091