autoupdate
[gnulib.git] / tests / test-copy-file.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] tmpaclout[0-2]
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   # Define a function to test for the same ACLs, from the point of view of
110   # the programs.
111   # func_test_same_acls file1 file2
112   case $acl_flavor in
113     linux | cygwin | freebsd | solaris)
114       func_test_same_acls ()
115       {
116         getfacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
117         getfacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
118         cmp tmpaclout1 tmpaclout2 > /dev/null
119       }
120       ;;
121     hpux)
122       func_test_same_acls ()
123       {
124         lsacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
125         lsacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
126         cmp tmpaclout1 tmpaclout2 > /dev/null
127       }
128       ;;
129     osf1)
130       func_test_same_acls ()
131       {
132         getacl "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
133         getacl "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
134         cmp tmpaclout1 tmpaclout2 > /dev/null
135       }
136       ;;
137     aix)
138       func_test_same_acls ()
139       {
140         aclget "$1" > tmpaclout1
141         aclget "$2" > tmpaclout2
142         cmp tmpaclout1 tmpaclout2 > /dev/null
143       }
144       ;;
145     macosx)
146       func_test_same_acls ()
147       {
148         /bin/ls -le "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
149         /bin/ls -le "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
150         cmp tmpaclout1 tmpaclout2 > /dev/null
151       }
152       ;;
153     irix)
154       func_test_same_acls ()
155       {
156         /bin/ls -lD "$1" | sed -e "s/$1/FILENAME/g" > tmpaclout1
157         /bin/ls -lD "$2" | sed -e "s/$2/FILENAME/g" > tmpaclout2
158         cmp tmpaclout1 tmpaclout2 > /dev/null
159       }
160       ;;
161     none)
162       func_test_same_acls ()
163       {
164         :
165       }
166       ;;
167   esac
168
169   # func_test_copy file1 file2
170   # copies file1 to file2 and verifies the permissions and ACLs are the same
171   # on both.
172   func_test_copy ()
173   {
174     "$builddir"/test-copy-file${EXEEXT} "$1" "$2" || exit 1
175     if test "$USE_ACL" != 0; then
176       "$builddir"/test-sameacls${EXEEXT} "$1" "$2" || exit 1
177       func_test_same_acls                "$1" "$2" || exit 1
178     fi
179   }
180
181   func_test_copy tmpfile0 tmpfile1
182
183   if test "$USE_ACL" != 0 && test $acl_flavor != none; then
184     # A POSIX compliant 'id' program.
185     if test -f /usr/xpg4/bin/id; then
186       ID=/usr/xpg4/bin/id
187     else
188       ID=id
189     fi
190     # Use a user and group id different from the current one, to avoid
191     # redundant/ambiguous ACLs.
192     myuid=`$ID -u`
193     mygid=`$ID -g`
194     auid=1
195     if test "$auid" = "$myuid"; then auid=2; fi
196     agid=1
197     if test "$agid" = "$mygid"; then agid=2; fi
198
199     case $acl_flavor in
200       linux | freebsd | solaris)
201
202         # Set an ACL for a user.
203         setfacl -m user:$auid:1 tmpfile0
204
205         func_test_copy tmpfile0 tmpfile2
206
207         # Set an ACL for a group.
208         setfacl -m group:$agid:4 tmpfile0
209
210         func_test_copy tmpfile0 tmpfile3
211
212         # Set an ACL for other.
213         case $acl_flavor in
214           freebsd) setfacl -m other::4 tmpfile0 ;;
215           solaris) chmod o+r tmpfile0 ;;
216           *)       setfacl -m other:4 tmpfile0 ;;
217         esac
218
219         func_test_copy tmpfile0 tmpfile4
220
221         # Remove the ACL for the user.
222         case $acl_flavor in
223           linux)   setfacl -x user:$auid tmpfile0 ;;
224           freebsd) setfacl -x user:$auid:1 tmpfile0 ;;
225           *)       setfacl -d user:$auid:1 tmpfile0 ;;
226         esac
227
228         func_test_copy tmpfile0 tmpfile5
229
230         # Remove the ACL for other.
231         case $acl_flavor in
232           linux | solaris) ;; # impossible
233           freebsd) setfacl -x other::4 tmpfile0 ;;
234           *)       setfacl -d other:4 tmpfile0 ;;
235         esac
236
237         func_test_copy tmpfile0 tmpfile6
238
239         # Remove the ACL for the group.
240         case $acl_flavor in
241           linux)   setfacl -x group:$agid tmpfile0 ;;
242           freebsd) setfacl -x group:$agid:4 tmpfile0 ;;
243           *)       setfacl -d group:$agid:4 tmpfile0 ;;
244         esac
245
246         func_test_copy tmpfile0 tmpfile7
247
248         # Delete all optional ACLs.
249         case $acl_flavor in
250           linux | freebsd)
251             setfacl -m user:$auid:1 tmpfile0
252             setfacl -b tmpfile0
253             ;;
254           *)
255             setfacl -s user::6,group::0,other:0 tmpfile0 ;;
256         esac
257
258         func_test_copy tmpfile0 tmpfile8
259
260         # Copy ACLs from a file that has no ACLs.
261         echo > tmpfile9
262         chmod a+x tmpfile9
263         case $acl_flavor in
264           linux)   getfacl tmpfile9 | setfacl --set-file=- tmpfile0 ;;
265           freebsd) ;;
266           *)       getfacl tmpfile9 | setfacl -f - tmpfile0 ;;
267         esac
268         rm -f tmpfile9
269
270         func_test_copy tmpfile0 tmpfile9
271
272         ;;
273
274       cygwin)
275
276         # Set an ACL for a group.
277         setfacl -m group:0:1 tmpfile0
278
279         func_test_copy tmpfile0 tmpfile2
280
281         # Set an ACL for other.
282         setfacl -m other:4 tmpfile0
283
284         func_test_copy tmpfile0 tmpfile4
285
286         # Remove the ACL for the group.
287         setfacl -d group:0 tmpfile0
288
289         func_test_copy tmpfile0 tmpfile5
290
291         # Remove the ACL for other.
292         setfacl -d other:4 tmpfile0
293
294         func_test_copy tmpfile0 tmpfile6
295
296         # Delete all optional ACLs.
297         setfacl -s user::6,group::0,other:0 tmpfile0
298
299         func_test_copy tmpfile0 tmpfile8
300
301         # Copy ACLs from a file that has no ACLs.
302         echo > tmpfile9
303         chmod a+x tmpfile9
304         getfacl tmpfile9 | setfacl -f - tmpfile0
305         rm -f tmpfile9
306
307         func_test_copy tmpfile0 tmpfile9
308
309         ;;
310
311       hpux)
312
313         # Set an ACL for a user.
314         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
315         chacl -r "${orig}($auid.%,--x)" tmpfile0
316
317         func_test_copy tmpfile0 tmpfile2
318
319         # Set an ACL for a group.
320         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
321         chacl -r "${orig}(%.$agid,r--)" tmpfile0
322
323         func_test_copy tmpfile0 tmpfile3
324
325         # Set an ACL for other.
326         orig=`lsacl tmpfile0 | sed -e 's/ tmpfile0$//'`
327         chacl -r "${orig}(%.%,r--)" tmpfile0
328
329         func_test_copy tmpfile0 tmpfile4
330
331         # Remove the ACL for the user.
332         chacl -d "($auid.%,--x)" tmpfile0
333
334         func_test_copy tmpfile0 tmpfile5
335
336         # Remove the ACL for the group.
337         chacl -d "(%.$agid,r--)" tmpfile0
338
339         func_test_copy tmpfile0 tmpfile6
340
341         # Delete all optional ACLs.
342         chacl -z tmpfile0
343
344         func_test_copy tmpfile0 tmpfile8
345
346         # Copy ACLs from a file that has no ACLs.
347         echo > tmpfile9
348         chmod a+x tmpfile9
349         orig=`lsacl tmpfile9 | sed -e 's/ tmpfile9$//'`
350         rm -f tmpfile9
351         chacl -r "${orig}" tmpfile0
352
353         func_test_copy tmpfile0 tmpfile9
354
355         ;;
356
357       osf1)
358
359         # Set an ACL for a user.
360         setacl -u user:$auid:1 tmpfile0
361
362         func_test_copy tmpfile0 tmpfile2
363
364         # Set an ACL for a group.
365         setacl -u group:$agid:4 tmpfile0
366
367         func_test_copy tmpfile0 tmpfile3
368
369         # Set an ACL for other.
370         setacl -u other::4 tmpfile0
371
372         func_test_copy tmpfile0 tmpfile4
373
374         # Remove the ACL for the user.
375         setacl -x user:$auid:1 tmpfile0
376
377         func_test_copy tmpfile0 tmpfile5
378
379         if false; then # would give an error "can't set ACL: Invalid argument"
380           # Remove the ACL for other.
381           setacl -x other::4 tmpfile0
382
383           func_test_copy tmpfile0 tmpfile6
384         fi
385
386         # Remove the ACL for the group.
387         setacl -x group:$agid:4 tmpfile0
388
389         func_test_copy tmpfile0 tmpfile7
390
391         # Delete all optional ACLs.
392         setacl -u user:$auid:1 tmpfile0
393         setacl -b tmpfile0
394
395         func_test_copy tmpfile0 tmpfile8
396
397         # Copy ACLs from a file that has no ACLs.
398         echo > tmpfile9
399         chmod a+x tmpfile9
400         getacl tmpfile9 > tmpaclout0
401         setacl -b -U tmpaclout0 tmpfile0
402         rm -f tmpfile9
403
404         func_test_copy tmpfile0 tmpfile9
405
406         ;;
407
408       aix)
409
410         # Set an ACL for a user.
411         { aclget tmpfile0 | sed -e 's/disabled$/enabled/'; echo "        permit --x u:$auid"; } | aclput tmpfile0
412
413         func_test_copy tmpfile0 tmpfile2
414
415         # Set an ACL for a group.
416         { aclget tmpfile0 | sed -e 's/disabled$/enabled/'; echo "        permit r-- g:$agid"; } | aclput tmpfile0
417
418         func_test_copy tmpfile0 tmpfile3
419
420         # Set an ACL for other.
421         chmod o+r tmpfile0
422
423         func_test_copy tmpfile0 tmpfile4
424
425         # Remove the ACL for the user.
426         aclget tmpfile0 | grep -v ' u:[^ ]*$' | aclput tmpfile0
427
428         func_test_copy tmpfile0 tmpfile5
429
430         # Remove the ACL for the group.
431         aclget tmpfile0 | grep -v ' g:[^ ]*$' | aclput tmpfile0
432
433         func_test_copy tmpfile0 tmpfile7
434
435         # Delete all optional ACLs.
436         aclget tmpfile0 | sed -e 's/enabled$/disabled/' | sed -e '/disabled$/q' | aclput tmpfile0
437
438         func_test_copy tmpfile0 tmpfile8
439
440         # Copy ACLs from a file that has no ACLs.
441         echo > tmpfile9
442         chmod a+x tmpfile9
443         aclget tmpfile9 | aclput tmpfile0
444         rm -f tmpfile9
445
446         func_test_copy tmpfile0 tmpfile9
447
448         ;;
449
450       macosx)
451
452         # Set an ACL for a user.
453         /bin/chmod +a "user:daemon allow execute" tmpfile0
454
455         func_test_copy tmpfile0 tmpfile2
456
457         # Set an ACL for a group.
458         /bin/chmod +a "group:daemon allow read" tmpfile0
459
460         func_test_copy tmpfile0 tmpfile3
461
462         # Set an ACL for other.
463         chmod o+r tmpfile0
464
465         func_test_copy tmpfile0 tmpfile4
466
467         # Remove the ACL for the user.
468         /bin/chmod -a "user:daemon allow execute" tmpfile0
469
470         func_test_copy tmpfile0 tmpfile5
471
472         # Remove the ACL for the group.
473         /bin/chmod -a "group:daemon allow read" tmpfile0
474
475         func_test_copy tmpfile0 tmpfile7
476
477         # Delete all optional ACLs.
478         /bin/chmod -N tmpfile0
479
480         func_test_copy tmpfile0 tmpfile8
481
482         # Copy ACLs from a file that has no ACLs.
483         echo > tmpfile9
484         chmod a+x tmpfile9
485         { /bin/ls -le tmpfile9 | sed -n -e 's/^ [0-9][0-9]*: //p'; echo; } | /bin/chmod -E tmpfile0
486         rm -f tmpfile9
487
488         func_test_copy tmpfile0 tmpfile9
489
490         ;;
491
492       irix)
493
494         # Set an ACL for a user.
495         /sbin/chacl user::rw-,group::---,other::---,user:$auid:--x tmpfile0
496
497         func_test_copy tmpfile0 tmpfile2
498
499         # Set an ACL for a group.
500         /sbin/chacl user::rw-,group::---,other::---,user:$auid:--x,group:$agid:r-- tmpfile0
501
502         func_test_copy tmpfile0 tmpfile3
503
504         # Set an ACL for other.
505         /sbin/chacl user::rw-,group::---,user:$auid:--x,group:$agid:r--,other::r-- tmpfile0
506
507         func_test_copy tmpfile0 tmpfile4
508
509         # Remove the ACL for the user.
510         /sbin/chacl user::rw-,group::---,group:$agid:r--,other::r-- tmpfile0
511
512         func_test_copy tmpfile0 tmpfile5
513
514         # Remove the ACL for the group.
515         /sbin/chacl user::rw-,group::---,other::r-- tmpfile0
516
517         func_test_copy tmpfile0 tmpfile7
518
519         ;;
520
521     esac
522   fi
523
524   rm -f tmpfile[0-9] tmpaclout[0-2]
525 ) || exit 1
526
527 rm -rf "$tmp"
528 exit 0