1#!/bin/ksh -p 2# 3# CDDL HEADER START 4# 5# The contents of this file are subject to the terms of the 6# Common Development and Distribution License (the "License"). 7# You may not use this file except in compliance with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or https://opensource.org/licenses/CDDL-1.0. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22 23# 24# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 25# Use is subject to license terms. 26# 27 28# 29# Copyright (c) 2016 by Delphix. All rights reserved. 30# 31 32. $STF_SUITE/include/libtest.shlib 33 34# 35# DESCRIPTION: 36# Verify that umount and destroy fail, and do not unshare the shared 37# file system 38# 39# STRATEGY: 40# 1. Share the filesystem via 'zfs set sharenfs'. 41# 2. Try umount failure, and verify that the file system is still shared. 42# 3. Try destroy failure, and verify that the file system is still shared. 43# 44 45verify_runnable "global" 46 47function cleanup 48{ 49 log_must cd $origdir 50 51 log_must zfs set sharenfs=off $TESTPOOL/$TESTFS 52 unshare_fs $TESTPOOL/$TESTFS 53 54 snapexists "$TESTPOOL/$TESTFS@snapshot" && \ 55 destroy_dataset $TESTPOOL/$TESTFS@snapshot -f 56 57 datasetexists $TESTPOOL/$TESTFS/fs2 && \ 58 destroy_dataset $TESTPOOL/$TESTFS/fs2 -f 59} 60 61log_assert "Verify that umount and destroy fail, and do not unshare the shared" \ 62 "file system" 63log_onexit cleanup 64 65typeset origdir=$PWD 66 67# unmount fails will not unshare the shared filesystem 68log_must zfs set sharenfs=on $TESTPOOL/$TESTFS 69log_must is_shared $TESTDIR 70log_must cd $TESTDIR 71log_mustnot zfs umount $TESTPOOL/$TESTFS 72log_must is_shared $TESTDIR 73 74# destroy fails will not unshare the shared filesystem 75log_must zfs create $TESTPOOL/$TESTFS/fs2 76log_must cd $TESTDIR/fs2 77log_mustnot zfs destroy $TESTPOOL/$TESTFS/fs2 78log_must is_shared $TESTDIR/fs2 79 80log_pass "Verify that umount and destroy fail, and do not unshare the shared" \ 81 "file system" 82