7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / privilege / privilege_002_pos.ksh
blob9075ca4ede3f8a3f87e1cb6d456ed61e2815e855
1 #! /usr/bin/ksh -p
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2013, 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
35 # DESCRIPTION:
37 # The RBAC profile "ZFS File System Management" works
39 # STRATEGY:
41 # The following actions are taken, both using profile execution (pfexec)
42 # and without profile execution - we make sure that the latter should
43 # always fail.
45 # (create)
46 # 1. As a normal user, try to create a filesystem - which should fail.
47 # 2. Assign "ZFS File System Management" profile, try to create fs again,
48 # which should succeed.
50 # (pools)
51 # 3. Ensure a user with this profile can't perform pool administration
52 # by attempting to destroy a pool.
54 # (destroy)
55 # 5. Remove the FS profile, then attempt to destroy the fs, which
56 # should fail.
57 # 6. Assign the FS profile, then attempt to destroy the fs, which
58 # should succeed.
61 verify_runnable "both"
63 log_assert "The RBAC profile \"ZFS File System Management\" works"
65 ZFS_USER=$(cat /tmp/zfs-privs-test-user.txt)
67 # Set a $DATASET where we can create child files systems
68 if is_global_zone; then
69 log_must zpool create -f $TESTPOOL $DISKS
70 DATASET=$TESTPOOL
71 else
72 DATASET=zonepool/zonectr0
75 # A user shouldn't be able to create filesystems
76 log_mustnot su $ZFS_USER -c "zfs create $DATASET/zfsprivfs"
78 # Insist this invocation of usermod works
79 log_must usermod -P "ZFS File System Management" $ZFS_USER
81 # Now try to create file systems as the user
82 log_mustnot su $ZFS_USER -c "zfs create $DATASET/zfsprivfs"
83 log_must su $ZFS_USER -c "pfexec zfs create $DATASET/zfsprivfs"
85 # Ensure the user can't do anything to pools in this state:
86 log_mustnot su $ZFS_USER -c "zpool destroy $DATASET"
87 log_mustnot su $ZFS_USER -c "pfexec zpool destroy $DATASET"
89 # revoke File System Management profile
90 usermod -P, $ZFS_USER
92 # Ensure the user can't create more filesystems
93 log_mustnot su $ZFS_USER -c "zfs create $DATASET/zfsprivfs2"
94 log_mustnot su $ZFS_USER -c "pfexec zfs create $DATASET/zfsprivfs2"
96 # assign the profile again and destroy the fs.
97 usermod -P "ZFS File System Management" $ZFS_USER
98 log_must su $ZFS_USER -c "pfexec zfs destroy $DATASET/zfsprivfs"
99 usermod -P, $ZFS_USER
101 log_pass "The RBAC profile \"ZFS File System Management\" works"