]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/acl/posix/posix_002_pos.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / acl / posix / posix_002_pos.ksh
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 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=posixacl.
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
45 verify_runnable "both"
46 log_assert "Verify acltype=posixacl works on directory"
47
48 # Test access to DIRECTORY
49 log_note "Testing access to DIRECTORY"
50 log_must mkdir $TESTDIR/dir.0
51 # Eliminate access by "other" including our test group,
52 # we want access controlled only by the ACLs.
53 log_must chmod 700 $TESTDIR/dir.0
54 log_must setfacl -m g:$ZFS_ACL_STAFF_GROUP:wx $TESTDIR/dir.0
55 # Confirm permissions
56 ls -l $TESTDIR |grep "dir.0" |grep -q "drwx-wx---+"
57 if [ "$?" -ne "0" ]; then
58         msk=$(ls -l $TESTDIR |grep "dir.0" | awk '{print $1}')
59         log_note "expected mask drwx-wx---+ but found $msk"
60         log_fail "Expected permissions were not set."
61 fi
62 getfacl $TESTDIR/dir.0 2> /dev/null | egrep -q \
63     "^group:$ZFS_ACL_STAFF_GROUP:-wx$"
64 if [ "$?" -eq "0" ]; then
65         # Should be able to create file in directory
66         log_must user_run $ZFS_ACL_STAFF1 "touch $TESTDIR/dir.0/file.0"
67
68         # Should NOT be able to list files in directory
69         log_mustnot user_run $ZFS_ACL_STAFF1 "ls -l $TESTDIR/dir.0"
70
71         log_pass "POSIX ACL mode works on directories"
72 else
73         acl=$(getfacl $TESTDIR/dir.0 2> /dev/null)
74         log_note $acl
75         log_fail "Group '$ZFS_ACL_STAFF_GROUP' does not have '-wx' as specified"
76 fi