1f38cb554SJohn Wren Kennedy#!/bin/ksh -p
2f38cb554SJohn Wren Kennedy#
3f38cb554SJohn Wren Kennedy# CDDL HEADER START
4f38cb554SJohn Wren Kennedy#
5f38cb554SJohn Wren Kennedy# The contents of this file are subject to the terms of the
6f38cb554SJohn Wren Kennedy# Common Development and Distribution License (the "License").
7f38cb554SJohn Wren Kennedy# You may not use this file except in compliance with the License.
8f38cb554SJohn Wren Kennedy#
9f38cb554SJohn Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10f38cb554SJohn Wren Kennedy# or http://www.opensolaris.org/os/licensing.
11f38cb554SJohn Wren Kennedy# See the License for the specific language governing permissions
12f38cb554SJohn Wren Kennedy# and limitations under the License.
13f38cb554SJohn Wren Kennedy#
14f38cb554SJohn Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
15f38cb554SJohn Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16f38cb554SJohn Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
17f38cb554SJohn Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
18f38cb554SJohn Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
19f38cb554SJohn Wren Kennedy#
20f38cb554SJohn Wren Kennedy# CDDL HEADER END
21f38cb554SJohn Wren Kennedy#
22f38cb554SJohn Wren Kennedy
23f38cb554SJohn Wren Kennedy#
24f38cb554SJohn Wren Kennedy# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25f38cb554SJohn Wren Kennedy# Use is subject to license terms.
26f38cb554SJohn Wren Kennedy#
27f38cb554SJohn Wren Kennedy
28f38cb554SJohn Wren Kennedy#
291d32ba66SJohn Wren Kennedy# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
30*51463258SBill Sommerfeld# Copyright 2023 Bill Sommerfeld <sommerfeld@alum.mit.edu>
31f38cb554SJohn Wren Kennedy#
32f38cb554SJohn Wren Kennedy
33f38cb554SJohn Wren Kennedy. $STF_SUITE/tests/functional/delegate/delegate_common.kshlib
34f38cb554SJohn Wren Kennedy
35f38cb554SJohn Wren Kennedy#
36f38cb554SJohn Wren Kennedy# DESCRIPTION:
37f38cb554SJohn Wren Kennedy#	Verify option '-c' will be granted locally to the creator on any
38f38cb554SJohn Wren Kennedy#	newly-created descendent file systems.
39f38cb554SJohn Wren Kennedy#
40f38cb554SJohn Wren Kennedy# STRATEGY:
41f38cb554SJohn Wren Kennedy#	1. Allow create permissions to everyone on $ROOT_TESTFS locally.
42f38cb554SJohn Wren Kennedy#	2. Allow '-c' create to $ROOT_TESTFS.
43f38cb554SJohn Wren Kennedy#	3. chmod 777 the mountpoint of $ROOT_TESTFS
44f38cb554SJohn Wren Kennedy#	4. Verify only creator can create descendent dataset on
45f38cb554SJohn Wren Kennedy#	   $ROOT_TESTFS/$user.
46f38cb554SJohn Wren Kennedy#
47f38cb554SJohn Wren Kennedy
48f38cb554SJohn Wren Kennedyverify_runnable "both"
49f38cb554SJohn Wren Kennedy
50f38cb554SJohn Wren Kennedylog_assert "Verify option '-c' will be granted locally to the creator."
51f38cb554SJohn Wren Kennedylog_onexit restore_root_datasets
52f38cb554SJohn Wren Kennedy
53f38cb554SJohn Wren Kennedyeval set -A dataset $DATASETS
54f38cb554SJohn Wren Kennedytypeset perms="snapshot,reservation,compression,checksum,userprop"
55f38cb554SJohn Wren Kennedy
561d32ba66SJohn Wren Kennedylog_must zfs allow -l everyone create,mount $ROOT_TESTFS
571d32ba66SJohn Wren Kennedylog_must zfs allow -c $perms $ROOT_TESTFS
58f38cb554SJohn Wren Kennedy
59*51463258SBill Sommerfeld#
60*51463258SBill Sommerfeld# Verify section headers are correct in allow output
61*51463258SBill Sommerfeld#
62*51463258SBill Sommerfeldtypeset sortedperms=$(echo "$perms" | tr ',' '\n' |
63*51463258SBill Sommerfeld			  sort | tr '\n' ',' | sed 's/,$//')
64*51463258SBill Sommerfeldverify_allow_output $ROOT_TESTFS \
65*51463258SBill Sommerfeld		    "Create time permissions" "$sortedperms" \
66*51463258SBill Sommerfeld		    "Local permissions" "everyone create,mount"
67*51463258SBill Sommerfeld
68f38cb554SJohn Wren Kennedymntpnt=$(get_prop mountpoint $ROOT_TESTFS)
691d32ba66SJohn Wren Kennedylog_must chmod 777 $mntpnt
70f38cb554SJohn Wren Kennedy
71f38cb554SJohn Wren Kennedyfor user in $EVERYONE; do
72f38cb554SJohn Wren Kennedy	childfs=$ROOT_TESTFS/$user
73f38cb554SJohn Wren Kennedy
741d32ba66SJohn Wren Kennedy	user_run $user zfs create $childfs
75f38cb554SJohn Wren Kennedy
76f38cb554SJohn Wren Kennedy	for other in $EVERYONE; do
77f38cb554SJohn Wren Kennedy		#
78f38cb554SJohn Wren Kennedy		# Verify only the creator has the $perm time permissions.
79f38cb554SJohn Wren Kennedy		#
80f38cb554SJohn Wren Kennedy		if [[ $other == $user ]]; then
81f38cb554SJohn Wren Kennedy			log_must verify_perm $childfs $perms $user
82f38cb554SJohn Wren Kennedy		else
83f38cb554SJohn Wren Kennedy			log_must verify_noperm $childfs $perms $other
84f38cb554SJohn Wren Kennedy		fi
85f38cb554SJohn Wren Kennedy	done
86f38cb554SJohn Wren Kennedydone
87f38cb554SJohn Wren Kennedy
88f38cb554SJohn Wren Kennedylog_pass "Verify option '-c' will be granted locally to the creator passed."
89