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 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
44[ -d "/var/lib/samba/usershares" ] || log_unsupported "Samba usershares disabled"
45
46function cleanup
47{
48	log_must zfs unshare -a
49	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared1
50	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared2
51	log_must zfs destroy -f $TESTPOOL/$TESTFS/shared3
52	log_must rm -f /var/lib/samba/usershares/testpool_testfs_shared{2,3}
53}
54
55log_assert "Verify 'zfs unshare [nfs|smb] -a' only works on the specified" \
56	"protocol."
57log_onexit cleanup
58
59# 1. Share filesystems with different protocols.
60log_must zfs create $TESTPOOL/$TESTFS/shared1
61log_must zfs create $TESTPOOL/$TESTFS/shared2
62log_must zfs create $TESTPOOL/$TESTFS/shared3
63log_must zfs set mountpoint=$TESTDIR/1 $TESTPOOL/$TESTFS/shared1
64log_must zfs set mountpoint=$TESTDIR/2 $TESTPOOL/$TESTFS/shared2
65log_must zfs set mountpoint=$TESTDIR/3 $TESTPOOL/$TESTFS/shared3
66log_must zfs set sharenfs=on $TESTPOOL/$TESTFS/shared1
67log_must zfs set sharenfs=on $TESTPOOL/$TESTFS/shared2
68log_must zfs set sharesmb=on $TESTPOOL/$TESTFS/shared2
69log_must zfs set sharesmb=on $TESTPOOL/$TESTFS/shared3
70log_must zfs share -a
71
72# 2. Invoke 'zfs unshare nfs -a' to unshare filesystems.
73log_must zfs unshare nfs -a
74
75# 3. Verify that only nfs filesystems are unshared.
76log_must not_shared $TESTPOOL/$TESTFS/shared1
77log_must not_shared $TESTPOOL/$TESTFS/shared2
78log_must is_shared_smb $TESTPOOL/$TESTFS/shared2
79log_must is_shared_smb $TESTPOOL/$TESTFS/shared3
80
81# 4. Share all filesystems again.
82log_must zfs share -a
83
84# 5. Invoke 'zfs unshare smb -a' and verify only smb filesystems are unshared.
85log_must zfs unshare smb -a
86log_must is_shared $TESTPOOL/$TESTFS/shared1
87log_must is_shared $TESTPOOL/$TESTFS/shared2
88log_must not_shared_smb $TESTPOOL/$TESTFS/shared2
89log_must not_shared_smb $TESTPOOL/$TESTFS/shared3
90
91log_pass "'zfs unshare [nfs|smb] -a' only works on the specified protocol."
92