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 http://www.opensolaris.org/os/licensing.
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 2016, loli10K. All rights reserved.
25#
26
27. $STF_SUITE/include/libtest.shlib
28
29#
30# DESCRIPTION:
31# Verify that 'zfs unshare [nfs|smb] -a' unshares only filesystems shared by the
32# specified protocol.
33#
34# STRATEGY:
35# 1. Share filesystems with different protocols.
36# 2. Invoke 'zfs unshare nfs -a' to unshare filesystems.
37# 3. Verify that only nfs filesystems are unshared.
38# 4. Share all filesystems again.
39# 5. Invoke 'zfs unshare smb -a' and verify only smb filesystems are unshared.
40#
41
42verify_runnable "global"
43
44if is_linux; then
45	log_unsupported "some distros come with Samba "user shares" disabled"
46fi
47
48function cleanup
49{
50	log_must zfs unshare -a
51	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared1
52	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared2
53	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared3
54}
55
56log_assert "Verify 'zfs unshare [nfs|smb] -a' only works on the specified "\
57	"protocol."
58log_onexit cleanup
59
60# 1. Share filesystems with different protocols.
61log_must zfs create $TESTPOOL/$TESTFS/shared1
62log_must zfs create $TESTPOOL/$TESTFS/shared2
63log_must zfs create $TESTPOOL/$TESTFS/shared3
64log_must zfs set mountpoint=$TESTDIR/1 $TESTPOOL/$TESTFS/shared1
65log_must zfs set mountpoint=$TESTDIR/2 $TESTPOOL/$TESTFS/shared2
66log_must zfs set mountpoint=$TESTDIR/3 $TESTPOOL/$TESTFS/shared3
67log_must zfs set sharenfs=on $TESTPOOL/$TESTFS/shared1
68log_must zfs set sharenfs=on $TESTPOOL/$TESTFS/shared2
69log_must zfs set sharesmb=on $TESTPOOL/$TESTFS/shared2
70log_must zfs set sharesmb=on $TESTPOOL/$TESTFS/shared3
71log_must zfs share -a
72
73# 2. Invoke 'zfs unshare nfs -a' to unshare filesystems.
74log_must zfs unshare nfs -a
75
76# 3. Verify that only nfs filesystems are unshared.
77log_must eval "not_shared $TESTPOOL/$TESTFS/shared1"
78log_must eval "not_shared $TESTPOOL/$TESTFS/shared2"
79log_must eval "is_shared_smb $TESTPOOL/$TESTFS/shared2"
80log_must eval "is_shared_smb $TESTPOOL/$TESTFS/shared3"
81
82# 4. Share all filesystems again.
83log_must zfs share -a
84
85# 5. Invoke 'zfs unshare smb -a' and verify only smb filesystems are unshared.
86log_must zfs unshare smb -a
87log_must eval "is_shared $TESTPOOL/$TESTFS/shared1"
88log_must eval "is_shared $TESTPOOL/$TESTFS/shared2"
89log_must eval "not_shared_smb $TESTPOOL/$TESTFS/shared2"
90log_must eval "not_shared_smb $TESTPOOL/$TESTFS/shared3"
91
92log_pass "'zfs unshare [nfs|smb] -a' only works on the specified protocol."
93