Add a new daemon security option: "munge symlinks".
[rsync/rsync.git] / testsuite / rsync.fns
CommitLineData
d820215b
MP
1#! /bin/sh
2
3# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5# General-purpose test functions for rsync.
3a4c683f 6
0154b302
MP
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License version
9# 2 as published by the Free Software Foundation.
10#
11# This program is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# Lesser General Public License for more details.
15#
16# You should have received a copy of the GNU Lesser General Public
17# License along with this program; if not, write to the Free Software
18# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20
6f481bb0 21tmpdir="$scratchdir"
e3442095
WD
22fromdir="$tmpdir/from"
23todir="$tmpdir/to"
24chkdir="$tmpdir/chk"
3a4c683f 25
2094283b 26# Berkley's nice.
96553aa7 27PATH="$PATH:/usr/ucb"
2094283b 28
e3442095 29if diff -u "$srcdir/testsuite/rsync.fns" "$srcdir/testsuite/rsync.fns" >/dev/null 2>&1; then
84229c7a
WD
30 diffopt="-u"
31else
32 diffopt="-c"
33fi
34
a98cad00
WD
35HOME="$scratchdir"
36export HOME
37
3a4c683f
MP
38runtest() {
39 echo $ECHO_N "Test $1: $ECHO_C"
501972bf
MP
40 if eval "$2"
41 then
6f481bb0 42 echo "$ECHO_T done."
501972bf
MP
43 return 0
44 else
6f481bb0 45 echo "$ECHO_T failed!"
501972bf
MP
46 return 1
47 fi
3a4c683f
MP
48}
49
757287d8
WD
50# Call this if you want to filter out verbose messages (-v or -vv) from
51# the output of an rsync run (whittling the output down to just the file
52# messages). This isn't needed if you use -i without -v.
53filter_outfile() {
54 sed -e '/^building file list /d' \
9544261a 55 -e '/^sending incremental file list/d' \
757287d8
WD
56 -e '/^created directory /d' \
57 -e '/^done$/d' \
58 -e '/ --whole-file$/d' \
59 -e '/^total: /d' \
332cf6df
WD
60 -e '/^client charset: /d' \
61 -e '/^server charset: /d' \
757287d8
WD
62 -e '/^$/,$d' \
63 <"$outfile" >"$outfile.new"
64 mv "$outfile.new" "$outfile"
65}
66
3a4c683f
MP
67printmsg() {
68 echo "$1"
69}
70
6773a779 71rsync_ls_lR() {
db9c9e27 72 find "$@" -print | sort | sed 's/ /\\ /g' | xargs "$TOOLDIR/tls" $TLS_ARGS
dfef3f10
MP
73}
74
18d7e9f4 75check_perms() {
eace352b
WD
76 perms=`"$TOOLDIR/tls" "$1" | sed 's/^[-d]\(.........\).*/\1/'`
77 if test $perms = $2; then
78 return 0
79 fi
80 echo "permissions: $perms on $1"
81 echo "should be: $2"
82 test_fail "failed test $3"
18d7e9f4
WD
83}
84
dfef3f10
MP
85rsync_getgroups() {
86 "$TOOLDIR/getgroups"
57835c00
MP
87}
88
89
e052b21f 90####################
6f481bb0 91# Build test directories $todir and $fromdir, with $fromdir full of files.
e052b21f 92
3a4c683f 93hands_setup() {
501972bf 94 # Clean before creation
6f481bb0
WD
95 rm -rf "$fromdir"
96 rm -rf "$todir"
3d807132 97
e3442095
WD
98 [ -d "$tmpdir" ] || mkdir "$tmpdir"
99 [ -d "$fromdir" ] || mkdir "$fromdir"
100 [ -d "$todir" ] || mkdir "$todir"
3a4c683f 101
e052b21f
MP
102 # On some BSD systems, the umask affects the mode of created
103 # symlinks, even though the mode apparently has no effect on how
104 # the links behave in the future, and it cannot be changed using
105 # chmod! rsync always sets its umask to 000 so that it can
106 # accurately recreate permissions, but this script is probably run
107 # with a different umask.
108
109 # This causes a little problem that "ls -l" of the two will not be
110 # the same. So, we need to set our umask before doing any creations.
111
3a4c683f 112 # set up test data
6f481bb0
WD
113 touch "$fromdir/empty"
114 mkdir "$fromdir/emptydir"
e8ca5901 115
571a4b26 116 # a hundred lines of text or so
6f481bb0 117 rsync_ls_lR "$srcdir" > "$fromdir/filelist"
3a4c683f 118
6f481bb0 119 echo $ECHO_N "This file has no trailing lf$ECHO_C" > "$fromdir/nolf"
0154b302 120 umask 0
6f481bb0 121 ln -s nolf "$fromdir/nolf-symlink"
4c80c473 122 umask 022
0154b302 123
db10766a 124 cat "$srcdir"/*.c > "$fromdir/text"
6f481bb0
WD
125 mkdir "$fromdir/dir"
126 cp "$fromdir/text" "$fromdir/dir"
127 mkdir "$fromdir/dir/subdir"
128 echo some data > "$fromdir/dir/subdir/foobar.baz"
129 mkdir "$fromdir/dir/subdir/subsubdir"
a7a1cc2c
WD
130 if [ -r /etc ]; then
131 ls -ltr /etc > "$fromdir/dir/subdir/subsubdir/etc-ltr-list"
132 else
133 ls -ltr / > "$fromdir/dir/subdir/subsubdir/etc-ltr-list"
134 fi
6f481bb0 135 mkdir "$fromdir/dir/subdir/subsubdir2"
a7a1cc2c
WD
136 if [ -r /bin ]; then
137 ls -lt /bin > "$fromdir/dir/subdir/subsubdir2/bin-lt-list"
138 else
139 ls -lt / > "$fromdir/dir/subdir/subsubdir2/bin-lt-list"
140 fi
7d691654 141
8f98c608 142# echo testing head:
6f481bb0 143# ls -lR "$srcdir" | head -10 || echo failed
3a4c683f 144}
3fedd74b
MP
145
146
99cdaff7
MP
147####################
148# Many machines do not have "mkdir -p", so we have to build up long paths.
149# How boring.
5ef8c5c6 150makepath() {
d1798a2f
WD
151 for p in "${@}"; do
152 (echo " makepath $p"
153
99cdaff7
MP
154 # Absolut Unix.
155 if echo $p | grep '^/' >/dev/null
156 then
157 cd /
158 fi
159
d1798a2f 160 # This will break if $p contains a space.
99cdaff7
MP
161 for c in `echo $p | tr '/' ' '`
162 do
112e7311
MP
163 if [ -d "$c" ] || mkdir "$c"
164 then
165 cd "$c" || return $?
166 else
167 echo "failed to create $c" >&2; return $?
168 fi
d1798a2f
WD
169 done)
170 done
99cdaff7
MP
171}
172
173
174
3fedd74b
MP
175###########################
176# Run a test (in '$1') then compare directories $2 and $3 to see if
177# there are any difference. If there are, explain them.
178
f494f286
MP
179# So normally basically $1 should be an rsync command, and $2 and $3
180# the source and destination directories. This is only good when you
181# expect to transfer the whole directory exactly as is. If some files
182# should be excluded, you might need to use something else.
183
3fedd74b 184checkit() {
3fedd74b 185 failed=
3fedd74b 186
cf72f204
MP
187 # We can just write everything to stdout/stderr, because the
188 # wrapper hides it unless there is a problem.
189
190 echo "Running: \"$1\""
191 eval "$1"
3fedd74b
MP
192 status=$?
193 if [ $status != 0 ]; then
194 failed="YES";
195 fi
196
cf72f204
MP
197 echo "-------------"
198 echo "check how the directory listings compare with diff:"
199 echo ""
6f481bb0
WD
200 ( cd "$2" && rsync_ls_lR . ) > "$tmpdir/ls-from"
201 ( cd "$3" && rsync_ls_lR . ) > "$tmpdir/ls-to"
202 diff $diffopt "$tmpdir/ls-from" "$tmpdir/ls-to" || failed=YES
30688bf1
WD
203
204 echo "-------------"
205 echo "check how the files compare with diff:"
206 echo ""
207 if [ "x$4" != x ]; then
208 echo " === Skipping (as directed) ==="
209 else
210 diff -r $diffopt "$2" "$3" || failed=YES
211 fi
212
213 echo "-------------"
6f481bb0 214 if [ -z "$failed" ] ; then
3fedd74b
MP
215 return 0
216 else
3fedd74b
MP
217 return 1
218 fi
219}
220
863dff51 221
4a7cb3e8 222build_rsyncd_conf() {
d2094cc3
MP
223 # Build an appropriate configuration file
224 conf="$scratchdir/test-rsyncd.conf"
225 echo "building configuration $conf"
226
227 port=2612
228 pidfile="$scratchdir/rsyncd.pid"
229 logfile="$scratchdir/rsyncd.log"
e5255195 230 hostname=`uname -n`
d2094cc3 231
6f481bb0 232 cat >"$conf" <<EOF
3aae15ec 233# rsyncd configuration file autogenerated by $0
d2094cc3 234
3aae15ec
MP
235pid file = $pidfile
236use chroot = no
9585b276 237munge symlinks = no
e73eed85 238hosts allow = localhost 127.0.0.0/24 192.168.0.0/16 10.0.0.0/8 $hostname
3aae15ec 239log file = $logfile
2ae4126a
WD
240log format = %i %h [%a] %m (%u) %l %f%L
241transfer logging = yes
6f481bb0 242exclude = foobar.baz
eddeaf76 243max verbosity = 9
76ee1d18
WD
244uid = 0
245gid = 0
98c1b325 246
2e6c7f45 247[test-from]
6f481bb0 248 path = $fromdir
3aae15ec 249 read only = yes
d2094cc3 250
2e6c7f45 251[test-to]
6f481bb0 252 path = $todir
3aae15ec 253 read only = no
2ae4126a
WD
254
255[test-scratch]
256 path = $scratchdir
257 read only = no
d2094cc3
MP
258EOF
259}
260
261
3cd2af41 262build_symlinks() {
3cd2af41
MP
263 mkdir "$fromdir"
264 date >"$fromdir/referent"
265 ln -s referent "$fromdir/relative"
266 ln -s "$fromdir/referent" "$fromdir/absolute"
267 ln -s nonexistent "$fromdir/dangling"
1db8b61d 268 ln -s "$srcdir/rsync.c" "$fromdir/unsafe"
3cd2af41
MP
269}
270
271test_fail() {
272 echo "$@" >&2
273 exit 1
274}
275
a217ad30
MP
276test_skipped() {
277 echo "$@" >&2
6f481bb0 278 echo "$@" > "$tmpdir/whyskipped"
a217ad30
MP
279 exit 77
280}
281
be2f866b
MP
282# It failed, but we expected that. don't dump out error logs,
283# because most users won't want to see them. But do leave
284# the working directory around.
285test_xfail() {
286 echo "$@" >&2
287 exit 78
288}
289
d1239eae
MP
290# Determine what shell command will appropriately test for links.
291ln -s foo "$scratchdir/testlink"
292for cmd in test /bin/test /usr/bin/test /usr/ucb/bin/test /usr/ucb/test
293do
294 for switch in -h -L
295 do
296 if $cmd $switch "$scratchdir/testlink" 2>/dev/null
297 then
298 # how nice
299 TEST_SYMLINK_CMD="$cmd $switch"
300 # i wonder if break 2 is portable?
301 break 2
302 fi
303 done
304done
cca4e067
MP
305# ok, now get rid of it
306rm "$scratchdir/testlink"
d1239eae
MP
307
308
309if [ "x$TEST_SYMLINK_CMD" = 'x' ]
310then
311 test_fail "Couldn't determine how to test for symlinks"
312else
313 echo "Testing for symlinks using '$TEST_SYMLINK_CMD'"
314fi
315
316
d96d3893
MP
317# Test whether something is a link, allowing for shell peculiarities
318is_a_link() {
d1239eae
MP
319 # note the variable contains the first option and therefore is not quoted
320 $TEST_SYMLINK_CMD "$1"
d96d3893
MP
321}
322
77867907
MP
323
324# We need to set the umask to be reproducible. Note also that when we
325# do some daemon tests as root, we will setuid() and therefore the
326# directory has to be writable by the nobody user in some cases. The
327# best thing is probably to explicitly chmod those directories after
328# creation.
329
ad301e48 330umask 022