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 2010 Sun Microsystems, Inc. All rights reserved.
25 #
26
27 #
28 # ID: acl_001
29 #
30 # DESCRIPTION:
31 # Read ACLs in an smbfs mount using "ls"
32 #
33 # STRATEGY:
34 # 1. run "mount -F smbfs //server/public /export/mnt"
35 # 2. try "ls -V" etc.
36 #
37
38 . $STF_SUITE/include/libtest.ksh
39
40 tc_id="acl001"
41 tc_desc="Verify we can view ACLs with ls"
42 print_test_case $tc_id - $tc_desc
43
44 if [[ $STC_CIFS_CLIENT_DEBUG == 1 ]] || \
45 [[ *:${STC_CIFS_CLIENT_DEBUG}:* == *:$tc_id:* ]]; then
46 set -x
47 fi
48
49 server=$(server_name) || return
50
51 testdir_init $TDIR
52 smbmount_clean $TMNT
53 smbmount_init $TMNT
54
55 cmd="mount -F smbfs -oacl //$TUSER:$TPASS@$server/public $TMNT"
56 cti_execute -i '' FAIL $cmd
57 if [[ $? != 0 ]]; then
58 cti_fail "FAIL: $cmd"
59 return
60 else
61 cti_report "PASS: $cmd"
62 fi
63
64 # Require that the mount supports ACLs
65 smbmount_getmntopts $TMNT |grep /acl/ >/dev/null
66 if [[ $? != 0 ]]; then
67 smbmount_clean $TMNT
68 cti_unsupported "UNSUPPORTED (no ACLs in this mount)"
69 return
70 fi
71
72 # create a file
73 cmd="cp /etc/passwd $TMNT/$tc_id"
74 cti_execute_cmd $cmd
75 if [[ $? != 0 ]]; then
76 cti_fail "FAIL: $cmd"
77 smbmount_clean $TMNT
78 return
79 fi
80
81 # verify "ls -l" shows a plus sign
82 cmd="ls -l $TMNT/$tc_id"
83 cti_execute_cmd $cmd
84 if [[ $? != 0 ]]; then
85 cti_fail "FAIL: $cmd"
86 smbmount_clean $TMNT
87 return
88 fi
89 read mode junk < cti_stdout
90 case "$mode" in
91 *+)
92 cti_report "PASS: have plus sign"
93 ;;
94 *)
95 cti_fail "FAIL: no plus sign"
96 smbmount_clean $TMNT
97 return
98 esac
99
100 # verify "ls -V" shows an ACL
101 cmd="ls -V $TMNT/$tc_id"
102 cti_execute_cmd $cmd
103 if [[ $? != 0 ]]; then
104 cti_fail "FAIL: $cmd"
105 smbmount_clean $TMNT
106 return
107 fi
108 cnt=$(wc -l < cti_stdout)
109 if [[ "$cnt" -lt 2 ]] ; then
110 cti_fail "FAIL: no ACEs found"
111 smbmount_clean $TMNT
112 return
113 fi
114
115 cti_execute_cmd "rm $TMNT/$tc_id"
116 smbmount_clean $TMNT
117
118 cti_pass "${tc_id}: PASS"