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. $STF_SUITE/include/libtest.shlib
29. $STF_SUITE/tests/functional/acl/acl_common.kshlib
30
31#
32# Copyright (c) 2012 by Delphix. All rights reserved.
33#
34
35#
36# DESCRIPTION:
37#	Verify that user can access file/directory if acltype=posix.
38#
39# STRATEGY:
40#	1. Test access to directory (mode=-wx)
41#	   a. Can create file in dir
42#	   b. Can't list directory
43#
44
45verify_runnable "both"
46log_assert "Verify acltype=posix works on directory"
47
48# Test access to DIRECTORY
49log_note "Testing access to DIRECTORY"
50log_must mkdir $TESTDIR/dir.0
51# Eliminate access by "other" including our test group,
52# we want access controlled only by the ACLs.
53log_must chmod 700 $TESTDIR/dir.0
54log_must setfacl -m g:$ZFS_ACL_STAFF_GROUP:wx $TESTDIR/dir.0
55# Confirm permissions
56if ! ls -l $TESTDIR | grep "dir.0" | grep -q "drwx-wx---+"; then
57	msk=$(ls -l $TESTDIR | awk '/dir.0/ {print $1}')
58	log_note "expected mask drwx-wx---+ but found $msk"
59	log_fail "Expected permissions were not set."
60fi
61if getfacl $TESTDIR/dir.0 2> /dev/null |
62    grep -q "^group:$ZFS_ACL_STAFF_GROUP:-wx$"
63then
64	# Should be able to create file in directory
65	log_must user_run $ZFS_ACL_STAFF1 "touch $TESTDIR/dir.0/file.0"
66
67	# Should NOT be able to list files in directory
68	log_mustnot user_run $ZFS_ACL_STAFF1 "ls -l $TESTDIR/dir.0"
69
70	log_pass "POSIX ACL mode works on directories"
71else
72	acl=$(getfacl $TESTDIR/dir.0 2> /dev/null)
73	log_note $acl
74	log_fail "Group '$ZFS_ACL_STAFF_GROUP' does not have '-wx' as specified"
75fi
76