Use different test code for Cygwin.
[gnulib.git] / tests / test-set-mode-acl.sh
1 #!/bin/sh
2
3 # Show all commands when run with environment variable VERBOSE=yes.
4 test -z "$VERBOSE" || set -x
5
6 # func_tmpdir
7 # creates a temporary directory.
8 # Sets variable
9 # - tmp             pathname of freshly created temporary directory
10 func_tmpdir ()
11 {
12   # Use the environment variable TMPDIR, falling back to /tmp. This allows
13   # users to specify a different temporary directory, for example, if their
14   # /tmp is filled up or too small.
15   : ${TMPDIR=/tmp}
16   {
17     # Use the mktemp program if available. If not available, hide the error
18     # message.
19     tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` &&
20     test -n "$tmp" && test -d "$tmp"
21   } ||
22   {
23     # Use a simple mkdir command. It is guaranteed to fail if the directory
24     # already exists.  $RANDOM is bash specific and expands to empty in shells
25     # other than bash, ksh and zsh.  Its use does not increase security;
26     # rather, it minimizes the probability of failure in a very cluttered /tmp
27     # directory.
28     tmp=$TMPDIR/gl$$-$RANDOM
29     (umask 077 && mkdir "$tmp")
30   } ||
31   {
32     echo "$0: cannot create a temporary directory in $TMPDIR" >&2
33     exit 1
34   }
35 }
36
37 func_tmpdir
38 builddir=`pwd`
39 cd "$builddir" ||
40   {
41     echo "$0: cannot determine build directory (unreadable parent dir?)" >&2
42     exit 1
43   }
44 # Switch to a temporary directory, to increase the likelihood that ACLs are
45 # supported on the current file system. (/tmp is usually locally mounted,
46 # whereas the build dir is sometimes NFS-mounted.)
47 ( cd "$tmp"
48
49   # Prepare tmpfile0.
50   rm -f tmpfile[0-9]
51   echo "Simple contents" > tmpfile0
52   chmod 600 tmpfile0
53
54   # Classification of the platform according to the programs available for
55   # manipulating ACLs.
56   # Possible values are:
57   #   linux, cygwin, freebsd, solaris, hpux, osf1, aix, macosx, irix, none.
58   # TODO: Support also native Win32 platforms (mingw).
59   acl_flavor=none
60   if (getfacl tmpfile0 >/dev/null) 2>/dev/null; then
61     # Platforms with the getfacl and setfacl programs.
62     # Linux, FreeBSD, Solaris, Cygwin.
63     if (setfacl --help >/dev/null) 2>/dev/null; then
64       # Linux, Cygwin.
65       if (LC_ALL=C setfacl --help | grep ' --set-file' >/dev/null) 2>/dev/null; then
66         # Linux.
67         acl_flavor=linux
68       else
69         acl_flavor=cygwin
70       fi
71     else
72       # FreeBSD, Solaris.
73       if (LC_ALL=C setfacl 2>&1 | grep '\-x entries' >/dev/null) 2>/dev/null; then
74         # FreeBSD.
75         acl_flavor=freebsd
76       else
77         # Solaris.
78         acl_flavor=solaris
79       fi
80     fi
81   else
82     if (lsacl / >/dev/null) 2>/dev/null; then
83       # Platforms with the lsacl and chacl programs.
84       # HP-UX, sometimes also IRIX.
85       acl_flavor=hpux
86     else
87       if (getacl tmpfile0 >/dev/null) 2>/dev/null; then
88         # Tru64.
89         acl_flavor=osf1
90       else
91         if (aclget tmpfile0 >/dev/null) 2>/dev/null; then
92           # AIX.
93           acl_flavor=aix
94         else
95           if (fsaclctl -v >/dev/null) 2>/dev/null; then
96             # MacOS X.
97             acl_flavor=macosx
98           else
99             if test -f /sbin/chacl; then
100               # IRIX.
101               acl_flavor=irix
102             fi
103           fi
104         fi
105       fi
106     fi
107   fi
108
109   if test $acl_flavor != none; then
110     # Use a user and group id different from the current one, to avoid
111     # redundant/ambiguous ACLs.
112     myuid=`id -u`
113     mygid=`id -g`
114     auid=1
115     if test "$auid" = "$myuid"; then auid=2; fi
116     agid=1
117     if test "$agid" = "$mygid"; then agid=2; fi
118   fi
119
120   for mode in 700 400 200 100 644 650 605 011 4700 2070; do
121     rm -f tmpfile0 tmpfile1 tmpfile2
122
123     # Prepare a file with no ACL.
124     echo "Anything" > tmpfile0
125     # If a mode is not supported (e.g. 2070 on FreeBSD), we skip testing it.
126     if chmod $mode tmpfile0 2>/dev/null; then
127       modestring0=`ls -l tmpfile0 | dd ibs=1 count=10 2>/dev/null`
128
129       # Prepare a file with no ACL.
130       echo "Some contents" > tmpfile1
131       chmod 600 tmpfile1
132
133       # Try to set the ACL to only the given mode.
134       "$builddir"/test-set-mode-acl${EXEEXT} tmpfile1 $mode
135       # Verify that tmpfile1 has no ACL and has the desired mode.
136       modestring=`ls -l tmpfile1 | dd ibs=1 count=10 2>/dev/null`
137       if test "x$modestring" != "x$modestring0"; then
138         echo "mode = $mode: tmpfile1 has wrong mode: $modestring" 1>&2
139         exit 1
140       fi
141       if test `"$builddir"/test-file-has-acl${EXEEXT} tmpfile1` != no; then
142         echo "mode = $mode: tmpfile1 got an ACL" 1>&2
143         exit 1
144       fi
145
146       if test $acl_flavor != none; then
147
148         # Prepare a file with an ACL.
149         echo "Special contents" > tmpfile2
150         chmod 600 tmpfile2
151         # Set an ACL for a user (or group).
152         case $acl_flavor in
153           linux | freebsd | solaris)
154             setfacl -m user:$auid:1 tmpfile0
155             ;;
156           cygwin)
157             setfacl -m group:0:1 tmpfile0
158             ;;
159           hpux)
160             orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
161             chacl -r "${orig}($auid.%,--x)" tmpfile0
162             ;;
163           osf1)
164             setacl -u user:$auid:1 tmpfile0
165             ;;
166           aix)
167             { aclget tmpfile0 | sed -e 's/disabled$/enabled/'; echo "        permit --x u:$auid"; } | aclput tmpfile0
168             ;;
169           macosx)
170             /bin/chmod +a "user:daemon allow execute" tmpfile0
171             ;;
172           irix)
173             /sbin/chacl user::rw-,group::---,other::---,user:$auid:--x tmpfile0
174             ;;
175         esac
176
177         # Try to set the ACL to only the given mode.
178         "$builddir"/test-set-mode-acl${EXEEXT} tmpfile2 $mode
179         # Verify that tmpfile2 has no ACL and has the desired mode.
180         modestring=`ls -l tmpfile2 | dd ibs=1 count=10 2>/dev/null`
181         if test "x$modestring" != "x$modestring0"; then
182           echo "mode = $mode: tmpfile2 has wrong mode: $modestring" 1>&2
183           exit 1
184         fi
185         if test `"$builddir"/test-file-has-acl${EXEEXT} tmpfile2` != no; then
186           echo "mode = $mode: tmpfile2 still has an ACL" 1>&2
187           exit 1
188         fi
189       fi
190     fi
191   done
192
193   rm -f tmpfile[0-9]
194 ) || exit 1
195
196 rm -rf "$tmp"
197 exit 0