3 # Show all commands when run with environment variable VERBOSE=yes.
4 test -z "$VERBOSE" ||
set -x
8 echo "Skipping test: insufficient ACL support"
13 # creates a temporary directory.
15 # - tmp pathname of freshly created temporary directory
18 # Use the environment variable TMPDIR, falling back to /tmp. This allows
19 # users to specify a different temporary directory, for example, if their
20 # /tmp is filled up or too small.
23 # Use the mktemp program if available. If not available, hide the error
25 tmp
=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
26 test -n "$tmp" && test -d "$tmp"
29 # Use a simple mkdir command. It is guaranteed to fail if the directory
30 # already exists. $RANDOM is bash specific and expands to empty in shells
31 # other than bash, ksh and zsh. Its use does not increase security;
32 # rather, it minimizes the probability of failure in a very cluttered /tmp
34 tmp
=$TMPDIR/gl$$
-$RANDOM
35 (umask 077 && mkdir
"$tmp")
38 echo "$0: cannot create a temporary directory in $TMPDIR" >&2
44 # builddir may already be set by the script that invokes this one.
48 *) builddir
=`pwd`/$builddir ;;
52 echo "$0: cannot determine build directory (unreadable parent dir?)" >&2
55 # Switch to a temporary directory, to increase the likelihood that ACLs are
56 # supported on the current file system. (/tmp is usually locally mounted,
57 # whereas the build dir is sometimes NFS-mounted.)
61 rm -f tmpfile
[0-9] tmp.err
62 echo "Simple contents" > tmpfile0
65 # Classification of the platform according to the programs available for
67 # Possible values are:
68 # linux, cygwin, freebsd, solaris, hpux, hpuxjfs, osf1, aix, macosx, irix, none.
69 # TODO: Support also native Windows platforms (mingw).
71 if (getfacl tmpfile0
>/dev
/null
) 2>/dev
/null
; then
72 # Platforms with the getfacl and setfacl programs.
73 # Linux, FreeBSD, Solaris, Cygwin.
74 if (setfacl
--help >/dev
/null
) 2>/dev
/null
; then
76 if (LC_ALL
=C setfacl
--help |
grep ' --set-file' >/dev
/null
) 2>/dev
/null
; then
84 if (LC_ALL
=C setfacl
2>&1 |
grep '\-x entries' >/dev
/null
) 2>/dev
/null
; then
93 if (lsacl
/ >/dev
/null
) 2>/dev
/null
; then
94 # Platforms with the lsacl and chacl programs.
95 # HP-UX, sometimes also IRIX.
96 if (getacl tmpfile0
>/dev
/null
) 2>/dev
/null
; then
97 # HP-UX 11.11 or newer.
104 if (getacl tmpfile0
>/dev
/null
) 2>/dev
/null
; then
105 # Tru64, NonStop Kernel.
106 if (getacl
-m tmpfile0
>/dev
/null
) 2>/dev
/null
; then
114 if (aclget tmpfile0
>/dev
/null
) 2>/dev
/null
; then
118 if (fsaclctl
-v >/dev
/null
) 2>/dev
/null
; then
122 if test -f /sbin
/chacl
; then
132 # func_test_file_has_acl file expected
133 # tests the result of the file_has_acl function on file, and checks that it
134 # matches the expected value.
135 func_test_file_has_acl
()
137 res
=`${CHECKER} "$builddir"/test-file-has-acl${EXEEXT} "$1"`
138 test "$res" = "$2" ||
{
139 echo "file_has_acl(\"$1\") returned $res, expected $2" 1>&2
144 # func_test_has_acl file expected
145 # tests the result of the file_has_acl function on file, and checks that it
146 # matches the expected value, also taking into account the system's 'ls'
149 freebsd | solaris | hpux | macosx
)
151 freebsd | solaris | hpux
) acl_ls_option
="-ld" ;;
152 macosx
) acl_ls_option
="-lde" ;;
156 func_test_file_has_acl
"$1" "$2"
157 case `/bin/ls $acl_ls_option "$1" | sed 1q` in
160 echo "/bin/ls $acl_ls_option $1 shows an ACL, but expected $2" 1>&2
166 echo "/bin/ls $acl_ls_option $1 shows no ACL, but expected $2" 1>&2
176 func_test_file_has_acl
"$1" "$2"
177 case `/bin/ls -ldD "$1" | sed 1q` in
180 echo "/bin/ls -ldD $1 shows no ACL, but expected $2" 1>&2
186 echo "/bin/ls -ldD $1 shows an ACL, but expected $2" 1>&2
196 func_test_file_has_acl
"$1" "$2"
201 func_test_has_acl tmpfile0 no
204 func_test_has_acl tmpdir0 no
206 if test $acl_flavor != none
; then
207 # A POSIX compliant 'id' program.
208 if test -f /usr
/xpg
4/bin
/id
; then
213 # Use a user and group id different from the current one, to avoid
214 # redundant/ambiguous ACLs.
218 if test "$auid" = "$myuid"; then auid
=2; fi
220 if test "$agid" = "$mygid"; then agid
=2; fi
223 linux | freebsd | solaris
)
225 # Set an ACL for a user.
226 if setfacl
-m user
:$auid:1 tmpfile0
; then
228 func_test_has_acl tmpfile0
yes
230 # Remove the ACL for the user.
232 linux
) setfacl
-x user
:$auid tmpfile0
;;
233 freebsd
) setfacl
-x user
:$auid:1 tmpfile0
;;
234 *) setfacl
-d user
:$auid:1 tmpfile0
;;
237 # On Linux and FreeBSD, the ACL for the mask is implicitly added.
238 # On Solaris, it is always there.
240 linux | freebsd
) func_test_has_acl tmpfile0
yes ;;
241 *) func_test_has_acl tmpfile0 no
;;
244 # Remove the ACL for the mask, if it was implicitly added.
246 linux | freebsd
) setfacl
-x mask
: tmpfile0
;;
247 *) setfacl
-d mask
: tmpfile0
;;
250 func_test_has_acl tmpfile0 no
257 # Set an ACL for a group.
258 if setfacl
-m group
:0:1 tmpfile0
; then
260 func_test_has_acl tmpfile0
yes
262 # Remove the ACL for the group.
263 setfacl
-d group
:0 tmpfile0
265 func_test_has_acl tmpfile0 no
272 # Set an ACL for a user.
273 orig
=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
274 if chacl
-r "${orig}($auid.%,--x)" tmpfile0
; then
276 func_test_has_acl tmpfile0
yes
278 # Remove the ACL for the user.
279 chacl
-d "($auid.%,--x)" tmpfile0
281 func_test_has_acl tmpfile0 no
284 if test $acl_flavor = hpuxjfs
; then
286 # Set an ACL for a user.
287 setacl
-m user
:$auid:1 tmpfile0
289 func_test_has_acl tmpfile0
yes
291 # Remove the ACL for the user.
292 setacl
-d user
:$auid tmpfile0
294 func_test_has_acl tmpfile0 no
302 # Set an ACL for a user.
303 setacl
-u user
:$auid:1 tmpfile0
2> tmp.err
305 if grep 'Error:' tmp.err
> /dev
/null \
306 ||
grep 'Operation not supported' tmp.err
> /dev
/null
; then
310 func_test_has_acl tmpfile0
yes
312 # Remove the ACL for the user.
313 setacl
-x user
:$auid:1 tmpfile0
315 func_test_has_acl tmpfile0 no
322 # Set an ACL for a user.
323 setacl
-m user
:$auid:1 tmpfile0
325 func_test_has_acl tmpfile0
yes
327 # Remove the ACL for the user.
328 setacl
-d user
:$auid tmpfile0
330 func_test_has_acl tmpfile0 no
336 # Set an ACL for a user.
337 { aclget tmpfile0 |
sed -e 's/disabled$/enabled/'; echo " permit --x u:$auid"; } | aclput tmpfile0
338 if aclget tmpfile0 |
grep enabled
> /dev
/null
; then
340 func_test_has_acl tmpfile0
yes
342 # Remove the ACL for the user.
343 aclget tmpfile0 |
grep -v ' u:[^ ]*$' | aclput tmpfile0
345 func_test_has_acl tmpfile0 no
352 # Set an ACL for a user.
353 /bin
/chmod +a
"user:daemon allow execute" tmpfile0
355 func_test_has_acl tmpfile0
yes
357 # Remove the ACL for the user.
358 /bin
/chmod -a "user:daemon allow execute" tmpfile0
360 func_test_has_acl tmpfile0 no
366 # Set an ACL for a user.
367 /sbin
/chacl user
::rw-
,group
::---,other
::---,user
:$auid:--x tmpfile0
2> tmp.err
369 if test -s tmp.err
; then :; else
371 func_test_has_acl tmpfile0
yes
373 # Remove the ACL for the user.
374 /sbin
/chacl user
::rw-
,group
::---,other
::--- tmpfile0
376 func_test_has_acl tmpfile0 no
384 rm -f tmpfile
[0-9] tmp.err