]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/acl/posix/posix_001_pos.ksh
Add the ZFS Test Suite
[mirror_zfs.git] / tests / zfs-tests / tests / functional / acl / posix / posix_001_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
30 #
31 # Copyright (c) 2012 by Delphix. All rights reserved.
32 #
33
34 #
35 # DESCRIPTION:
36 # Verify that user can access file/directory if acltype=posixacl.
37 #
38 # STRATEGY:
39 # 1. Test access to file (mode=rw-)
40 # a. Can modify file
41 # b. Can't create new file
42 # b. Can't execute file
43 #
44
45 verify_runnable "both"
46 log_assert "Verify acltype=posixacl works on file"
47
48 # Test access to FILE
49 log_note "Testing access to FILE"
50 log_must $TOUCH $TESTDIR/file.0
51 log_must $SETFACL -m g:zfsgrp:rw $TESTDIR/file.0
52 $GETFACL $TESTDIR/file.0 2> /dev/null | $EGREP -q "^group:zfsgrp:rw-$"
53 if [ "$?" -eq "0" ]; then
54 # Should be able to write to file
55 log_must $SU staff1 -c "$ECHO \"$ECHO test > /dev/null\" > $TESTDIR/file.0"
56
57 # Should NOT be able to create new file
58 log_mustnot $SU staff1 -c "$TOUCH $TESTDIR/file.1"
59
60 # Root should be able to run file, but not user
61 chmod +x $TESTDIR/file.0
62 log_must $TESTDIR/file.0
63 log_mustnot $SU staff1 -c $TESTDIR/file.0
64
65 log_pass "POSIX ACL mode works on files"
66 else
67 log_fail "Group 'zfsgrp' does not have 'rw' as specified"
68 fi