Test suite mostly clean for 4.73/4.74.
[exim.git] / test / runtest
1 #! /usr/bin/perl -w
2
3 # $Cambridge: exim/test/runtest,v 1.37 2010/06/14 20:30:12 jetmore Exp $
4
5 ###############################################################################
6 # This is the controlling script for the "new" test suite for Exim. It should #
7 # be possible to export this suite for running on a wide variety of hosts, in #
8 # contrast to the old suite, which was very dependent on the environment of   #
9 # Philip Hazel's desktop computer. This implementation inspects the version   #
10 # of Exim that it finds, and tests only those features that are included. The #
11 # surrounding environment is also tested to discover what is available. See   #
12 # the README file for details of how it all works.                            #
13 #                                                                             #
14 # Implementation started: 03 August 2005 by Philip Hazel                      #
15 # Placed in the Exim CVS: 06 February 2006                                    #
16 ###############################################################################
17
18 require Cwd;
19 use Errno;
20 use FileHandle;
21 use Socket;
22
23
24 # Start by initializing some global variables
25
26 $testversion = "4.72 (02-Jun-10)";
27
28 $cf = "bin/cf -exact";
29 $cr = "\r";
30 $debug = 0;
31 $force_update = 0;
32 $more = "less -XF";
33 $optargs = "";
34 $save_output = 0;
35 $server_opts = "";
36
37 $have_ipv4 = 1;
38 $have_ipv6 = 1;
39 $have_largefiles = 0;
40
41 $test_start = 1;
42 $test_end = $test_top = 8999;
43 $test_special_top = 9999;
44 @test_list = ();
45 @test_dirs = ();
46
47
48 # Networks to use for DNS tests. We need to choose some networks that will
49 # never be used so that there is no chance that the host on which we are
50 # running is actually in one of the test networks. Private networks such as
51 # the IPv4 10.0.0.0/8 network are no good because hosts may well use them.
52 # Rather than use some unassigned numbers (that might become assigned later),
53 # I have chosen some multicast networks, in the belief that such addresses
54 # won't ever be assigned to hosts. This is the only place where these numbers
55 # are defined, so it is trivially possible to change them should that ever
56 # become necessary.
57
58 $parm_ipv4_test_net = "224";
59 $parm_ipv6_test_net = "ff00";
60
61 # Port numbers are currently hard-wired
62
63 $parm_port_n = 1223;         # Nothing listening on this port
64 $parm_port_s = 1224;         # Used for the "server" command
65 $parm_port_d = 1225;         # Used for the Exim daemon
66 $parm_port_d2 = 1226;        # Additional for daemon
67 $parm_port_d3 = 1227;        # Additional for daemon
68 $parm_port_d4 = 1228;        # Additional for daemon
69
70
71
72 ###############################################################################
73 ###############################################################################
74
75 # Define a number of subroutines
76
77 ###############################################################################
78 ###############################################################################
79
80
81 ##################################################
82 #              Handle signals                    #
83 ##################################################
84
85 sub pipehandler { $sigpipehappened = 1; }
86
87 sub inthandler { print "\n"; tests_exit(-1, "Caught SIGINT"); }
88
89
90 ##################################################
91 #       Do global macro substitutions            #
92 ##################################################
93
94 # This function is applied to configurations, command lines and data lines in
95 # scripts, and to lines in the files of the aux-var-src and the dnszones-src
96 # directory. It takes one argument: the current test number, or zero when
97 # setting up files before running any tests.
98
99 sub do_substitute{
100 s?\bCALLER\b?$parm_caller?g;
101 s?\bCALLERGROUP\b?$parm_caller_group?g;
102 s?\bCALLER_UID\b?$parm_caller_uid?g;
103 s?\bCALLER_GID\b?$parm_caller_gid?g;
104 s?\bCLAMSOCKET\b?$parm_clamsocket?g;
105 s?\bDIR/?$parm_cwd/?g;
106 s?\bEXIMGROUP\b?$parm_eximgroup?g;
107 s?\bEXIMUSER\b?$parm_eximuser?g;
108 s?\bHOSTIPV4\b?$parm_ipv4?g;
109 s?\bHOSTIPV6\b?$parm_ipv6?g;
110 s?\bHOSTNAME\b?$parm_hostname?g;
111 s?\bPORT_D\b?$parm_port_d?g;
112 s?\bPORT_D2\b?$parm_port_d2?g;
113 s?\bPORT_D3\b?$parm_port_d3?g;
114 s?\bPORT_D4\b?$parm_port_d4?g;
115 s?\bPORT_N\b?$parm_port_n?g;
116 s?\bPORT_S\b?$parm_port_s?g;
117 s?\bTESTNUM\b?$_[0]?g;
118 s?(\b|_)V4NET([\._])?$1$parm_ipv4_test_net$2?g;
119 s?\bV6NET:?$parm_ipv6_test_net:?g;
120 }
121
122
123
124 ##################################################
125 #        Subroutine to tidy up and exit          #
126 ##################################################
127
128 # In all cases, we check for any Exim daemons that have been left running, and
129 # kill them. Then remove all the spool data, test output, and the modified Exim
130 # binary if we are ending normally.
131
132 # Arguments:
133 #    $_[0] = 0 for a normal exit; full cleanup done
134 #    $_[0] > 0 for an error exit; no files cleaned up
135 #    $_[0] < 0 for a "die" exit; $_[1] contains a message
136
137 sub tests_exit{
138 my($rc) = $_[0];
139 my($spool);
140
141 # Search for daemon pid files and kill the daemons. We kill with SIGINT rather
142 # than SIGTERM to stop it outputting "Terminated" to the terminal when not in
143 # the background.
144
145 if (opendir(DIR, "spool"))
146   {
147   my(@spools) = sort readdir(DIR);
148   closedir(DIR);
149   foreach $spool (@spools)
150     {
151     next if $spool !~ /^exim-daemon./;
152     open(PID, "spool/$spool") || die "** Failed to open \"spool/$spool\": $!\n";
153     chomp($pid = <PID>);
154     close(PID);
155     print "Tidyup: killing daemon pid=$pid\n";
156     system("sudo rm -f spool/$spool; sudo kill -SIGINT $pid");
157     }
158   }
159 else
160   { die "** Failed to opendir(\"spool\"): $!\n" unless $!{ENOENT}; }
161
162 # Close the terminal input and remove the test files if all went well, unless
163 # the option to save them is set. Always remove the patched Exim binary. Then
164 # exit normally, or die.
165
166 close(T);
167 system("sudo /bin/rm -rf ./spool test-* ./dnszones/*")
168   if ($rc == 0 && !$save_output);
169
170 system("sudo /bin/rm -rf ./eximdir/*");
171 exit $rc if ($rc >= 0);
172 die "** runtest error: $_[1]\n";
173 }
174
175
176
177 ##################################################
178 #   Subroutines used by the munging subroutine   #
179 ##################################################
180
181 # This function is used for things like message ids, where we want to generate
182 # more than one value, but keep a consistent mapping throughout.
183 #
184 # Arguments:
185 #   $oldid        the value from the file
186 #   $base         a base string into which we insert a sequence
187 #   $sequence     the address of the current sequence counter
188
189 sub new_value {
190 my($oldid, $base, $sequence) = @_;
191 my($newid) = $cache{$oldid};
192 if (! defined $newid)
193   {
194   $newid = sprintf($base, $$sequence++);
195   $cache{$oldid} = $newid;
196   }
197 return $newid;
198 }
199
200
201 # This is used while munging the output from exim_dumpdb. We cheat by assuming
202 # that the  date always the same, and just return the number of seconds since
203 # midnight.
204
205 sub date_seconds {
206 my($day,$month,$year,$hour,$min,$sec) =
207   $_[0] =~ /^(\d\d)-(\w\w\w)-(\d{4})\s(\d\d):(\d\d):(\d\d)/;
208 return $hour * 60 * 60 + $min * 60 + $sec;
209 }
210
211
212 # This is a subroutine to sort maildir files into time-order. The second field
213 # is the microsecond field, and may vary in length, so must be compared
214 # numerically.
215
216 sub maildirsort {
217 return $a cmp $b if ($a !~ /^\d+\.H\d/ || $b !~ /^\d+\.H\d/);
218 my($x1,$y1) = $a =~ /^(\d+)\.H(\d+)/;
219 my($x2,$y2) = $b =~ /^(\d+)\.H(\d+)/;
220 return ($x1 != $x2)? ($x1 <=> $x2) : ($y1 <=> $y2);
221 }
222
223
224
225 ##################################################
226 #   Subroutine list files below a directory      #
227 ##################################################
228
229 # This is used to build up a list of expected mail files below a certain path
230 # in the directory tree. It has to be recursive in order to deal with multiple
231 # maildir mailboxes.
232
233 sub list_files_below {
234 my($dir) = $_[0];
235 my(@yield) = ();
236 my(@sublist, $file);
237
238 opendir(DIR, $dir) || tests_exit(-1, "Failed to open $dir: $!");
239 @sublist = sort maildirsort readdir(DIR);
240 closedir(DIR);
241
242 foreach $file (@sublist)
243   {
244   next if $file eq "." || $file eq ".." || $file eq "CVS";
245   if (-d "$dir/$file")
246     { @yield = (@yield, list_files_below("$dir/$file")); }
247   else
248     { push @yield, "$dir/$file"; }
249   }
250
251 return @yield;
252 }
253
254
255
256 ##################################################
257 #         Munge a file before comparing          #
258 ##################################################
259
260 # The pre-processing turns all dates, times, Exim versions, message ids, and so
261 # on into standard values, so that the compare works. Perl's substitution with
262 # an expression provides a neat way to do some of these changes.
263
264 # We keep a global associative array for repeatedly turning the same values
265 # into the same standard values throughout the data from a single test.
266 # Message ids get this treatment (can't be made reliable for times), and
267 # times in dumped retry databases are also handled in a special way, as are
268 # incoming port numbers.
269
270 # On entry to the subroutine, the file to write to is already opened with the
271 # name MUNGED. The input file name is the only argument to the subroutine.
272 # Certain actions are taken only when the name contains "stderr", "stdout",
273 # or "log". The yield of the function is 1 if a line matching "*** truncated
274 # ***" is encountered; otherwise it is 0.
275
276 sub munge {
277 my($file) = $_[0];
278 my($yield) = 0;
279 my(@saved) = ();
280
281 open(IN, "$file") || tests_exit(-1, "Failed to open $file: $!");
282
283 my($is_log) = $file =~ /log/;
284 my($is_stdout) = $file =~ /stdout/;
285 my($is_stderr) = $file =~ /stderr/;
286
287 # Date pattern
288
289 $date = "\\d{2}-\\w{3}-\\d{4}\\s\\d{2}:\\d{2}:\\d{2}";
290
291 # Pattern for matching pids at start of stderr lines; initially something
292 # that won't match.
293
294 $spid = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
295
296 # Scan the file and make the changes. Near the bottom there are some changes
297 # that are specific to certain file types, though there are also some of those
298 # inline too.
299
300 while(<IN>)
301   {
302 RESET_AFTER_EXTRA_LINE_READ:
303   # Check for "*** truncated ***"
304   $yield = 1 if /\*\*\* truncated \*\*\*/;
305
306   # Replace the name of this host
307   s/\Q$parm_hostname\E/the.local.host.name/g;
308
309   # But convert "name=the.local.host address=127.0.0.1" to use "localhost"
310   s/name=the\.local\.host address=127\.0\.0\.1/name=localhost address=127.0.0.1/g;
311
312   # Replace the path to the testsuite directory
313   s?\Q$parm_cwd\E?TESTSUITE?g;
314
315   # Replace the Exim version number (may appear in various places)
316   s/Exim \d+\.\d+[\w-]*/Exim x.yz/i;
317
318   # Replace Exim message ids by a unique series
319   s/((?:[^\W_]{6}-){2}[^\W_]{2})
320     /new_value($1, "10Hm%s-0005vi-00", \$next_msgid)/egx;
321
322   # The names of lock files appear in some error and debug messages
323   s/\.lock(\.[-\w]+)+(\.[\da-f]+){2}/.lock.test.ex.dddddddd.pppppppp/;
324
325   # Unless we are in an IPv6 test, replace IPv4 and/or IPv6 in "listening on
326   # port" message, because it is not always the same.
327   s/port (\d+) \([^)]+\)/port $1/g
328     if !$is_ipv6test && m/listening for SMTP(S?) on port/;
329
330   # Challenges in SPA authentication
331   s/TlRMTVNTUAACAAAAAAAAAAAoAAABgg[\w+\/]+/TlRMTVNTUAACAAAAAAAAAAAoAAABggAAAEbBRwqFwwIAAAAAAAAAAAAt1sgAAAAA/;
332
333   # PRVS values
334   s?prvs=([^/]+)/[\da-f]{10}@?prvs=$1/xxxxxxxxxx@?g;    # Old form
335   s?prvs=[\da-f]{10}=([^@]+)@?prvs=xxxxxxxxxx=$1@?g;    # New form
336
337   # Error lines on stdout from SSL contain process id values and file names.
338   # They also contain a source file name and line number, which may vary from
339   # release to release.
340   s/^\d+:error:/pppp:error:/;
341   s/:(?:\/[^\s:]+\/)?([^\/\s]+\.c):\d+:/:$1:dddd:/;
342
343   # There are differences in error messages between OpenSSL versions
344   s/SSL_CTX_set_cipher_list/SSL_connect/;
345
346   # One error test in expansions mentions base 62 or 36
347   s/is not a base (36|62) number/is not a base 36\/62 number/;
348
349   # This message sometimes has a different number of seconds
350   s/forced fail after \d seconds/forced fail after d seconds/;
351
352   # This message may contain a different DBM library name
353   s/Failed to open \S+( \([^\)]+\))? file/Failed to open DBM file/;
354
355   # The message for a non-listening FIFO varies
356   s/:[^:]+: while opening named pipe/: Error: while opening named pipe/;
357
358   # The name of the shell may vary
359   s/\s\Q$parm_shell\E\b/ SHELL/;
360
361   # Debugging output of lists of hosts may have different sort keys
362   s/sort=\S+/sort=xx/ if /^\S+ (?:\d+\.){3}\d+ mx=\S+ sort=\S+/;
363
364   # Random local part in callout cache testing
365   s/myhost.test.ex-\d+-testing/myhost.test.ex-dddddddd-testing/;
366
367   # File descriptor numbers may vary
368   s/^writing data block fd=\d+/writing data block fd=dddd/;
369   s/running as transport filter: write=\d+ read=\d+/running as transport filter: write=dddd read=dddd/;
370
371
372   # ======== Dumpdb output ========
373   # This must be before the general date/date munging.
374   # Time data lines, which look like this:
375   # 25-Aug-2000 12:11:37  25-Aug-2000 12:11:37  26-Aug-2000 12:11:37
376   if (/^($date)\s+($date)\s+($date)(\s+\*)?\s*$/)
377     {
378     my($date1,$date2,$date3,$expired) = ($1,$2,$3,$4);
379     $expired = "" if !defined $expired;
380     my($increment) = date_seconds($date3) - date_seconds($date2);
381
382     # We used to use globally unique replacement values, but timing
383     # differences make this impossible. Just show the increment on the
384     # last one.
385
386     printf MUNGED ("first failed = time last try = time2 next try = time2 + %s%s\n",
387       $increment, $expired);
388     next;
389     }
390
391   # more_errno values in exim_dumpdb output which are times
392   s/T:(\S+)\s-22\s(\S+)\s/T:$1 -22 xxxx /;
393
394
395   # ======== Dates and times ========
396
397   # Dates and times are all turned into the same value - trying to turn
398   # them into different ones cannot be done repeatedly because they are
399   # real time stamps generated while running the test. The actual date and
400   # time used was fixed when I first started running automatic Exim tests.
401
402   # Date/time in header lines and SMTP responses
403   s/[A-Z][a-z]{2},\s\d\d?\s[A-Z][a-z]{2}\s\d\d\d\d\s\d\d\:\d\d:\d\d\s[-+]\d{4}
404     /Tue, 2 Mar 1999 09:44:33 +0000/gx;
405
406   # Date/time in logs and in one instance of a filter test
407   s/^\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d(\s[+-]\d\d\d\d)?/1999-03-02 09:44:33/gx;
408   s/^Logwrite\s"\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d/Logwrite "1999-03-02 09:44:33/gx;
409
410   # Date/time in message separators
411   s/(?:[A-Z][a-z]{2}\s){2}\d\d\s\d\d:\d\d:\d\d\s\d\d\d\d
412     /Tue Mar 02 09:44:33 1999/gx;
413
414   # Date of message arrival in spool file as shown by -Mvh
415   s/^\d{9,10}\s0$/ddddddddd 0/;
416
417   # Date/time in mbx mailbox files
418   s/\d\d-\w\w\w-\d\d\d\d\s\d\d:\d\d:\d\d\s[-+]\d\d\d\d,/06-Sep-1999 15:52:48 +0100,/gx;
419
420   # Dates/times in debugging output for writing retry records
421   if (/^  first failed=(\d+) last try=(\d+) next try=(\d+) (.*)$/)
422     {
423     my($next) = $3 - $2;
424     $_ = "  first failed=dddd last try=dddd next try=+$next $4\n";
425     }
426   s/^(\s*)now=\d+ first_failed=\d+ next_try=\d+ expired=(\d)/$1now=tttt first_failed=tttt next_try=tttt expired=$2/;
427   s/^(\s*)received_time=\d+ diff=\d+ timeout=(\d+)/$1received_time=tttt diff=tttt timeout=$2/;
428
429   # Time to retry may vary
430   s/time to retry = \S+/time to retry = tttt/;
431   s/retry record exists: age=\S+/retry record exists: age=ttt/;
432   s/failing_interval=\S+ message_age=\S+/failing_interval=ttt message_age=ttt/;
433
434   # Date/time in exim -bV output
435   s/\d\d-[A-Z][a-z]{2}-\d{4}\s\d\d:\d\d:\d\d/07-Mar-2000 12:21:52/g;
436
437   # Time on queue tolerance
438   s/QT=1s/QT=0s/;
439
440   # Eximstats heading
441   s/Exim\sstatistics\sfrom\s\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d\sto\s
442     \d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d/Exim statistics from <time> to <time>/x;
443
444
445   # ======== Caller's login, uid, gid, home, gecos ========
446
447   s/\Q$parm_caller_home\E/CALLER_HOME/g;   # NOTE: these must be done
448   s/\b\Q$parm_caller\E\b/CALLER/g;         #       in this order!
449   s/\b\Q$parm_caller_group\E\b/CALLER/g;   # In case group name different
450
451   s/\beuid=$parm_caller_uid\b/euid=CALLER_UID/g;
452   s/\begid=$parm_caller_gid\b/egid=CALLER_GID/g;
453
454   s/\buid=$parm_caller_uid\b/uid=CALLER_UID/g;
455   s/\bgid=$parm_caller_gid\b/gid=CALLER_GID/g;
456
457   s/\bname=$parm_caller_gecos\b/name=CALLER_GECOS/g;
458
459   # When looking at spool files with -Mvh, we will find not only the caller
460   # login, but also the uid and gid. It seems that $) in some Perls gives all
461   # the auxiliary gids as well, so don't bother checking for that.
462
463   s/^CALLER $> \d+$/CALLER UID GID/;
464
465   # There is one case where the caller's login is forced to something else,
466   # in order to test the processing of logins that contain spaces. Weird what
467   # some people do, isn't it?
468
469   s/^spaced user $> \d+$/CALLER UID GID/;
470
471
472   # ======== Exim's login ========
473   # For messages received by the daemon, this is in the -H file, which some
474   # tests inspect. For bounce messages, this will appear on the U= lines in
475   # logs and also after Received: and in addresses. In one pipe test it appears
476   # after "Running as:". It also appears in addresses, and in the names of lock
477   # files.
478
479   s/U=$parm_eximuser/U=EXIMUSER/;
480   s/user=$parm_eximuser/user=EXIMUSER/;
481   s/login=$parm_eximuser/login=EXIMUSER/;
482   s/Received: from $parm_eximuser /Received: from EXIMUSER /;
483   s/Running as: $parm_eximuser/Running as: EXIMUSER/;
484   s/\b$parm_eximuser@/EXIMUSER@/;
485   s/\b$parm_eximuser\.lock\./EXIMUSER.lock./;
486
487   s/\beuid=$parm_exim_uid\b/euid=EXIM_UID/g;
488   s/\begid=$parm_exim_gid\b/egid=EXIM_GID/g;
489
490   s/\buid=$parm_exim_uid\b/uid=EXIM_UID/g;
491   s/\bgid=$parm_exim_gid\b/gid=EXIM_GID/g;
492
493   s/^$parm_eximuser $parm_exim_uid $parm_exim_gid/EXIMUSER EXIM_UID EXIM_GID/;
494
495
496   # ======== General uids, gids, and pids ========
497   # Note: this must come after munges for caller's and exim's uid/gid
498
499   # These are for systems where long int is 64
500   s/\buid=4294967295/uid=-1/;
501   s/\beuid=4294967295/euid=-1/;
502   s/\bgid=4294967295/gid=-1/;
503   s/\begid=4294967295/egid=-1/;
504
505   s/\bgid=\d+/gid=gggg/;
506   s/\begid=\d+/egid=gggg/;
507   s/\bpid=\d+/pid=pppp/;
508   s/\buid=\d+/uid=uuuu/;
509   s/\beuid=\d+/euid=uuuu/;
510   s/set_process_info:\s+\d+/set_process_info: pppp/;
511   s/queue run pid \d+/queue run pid ppppp/;
512   s/process \d+ running as transport filter/process pppp running as transport filter/;
513   s/process \d+ writing to transport filter/process pppp writing to transport filter/;
514   s/reading pipe for subprocess \d+/reading pipe for subprocess pppp/;
515   s/remote delivery process \d+ ended/remote delivery process pppp ended/;
516
517   # Pid in temp file in appendfile transport
518   s"test-mail/temp\.\d+\."test-mail/temp.pppp.";
519
520   # Optional pid in log lines
521   s/^(\d{4}-\d\d-\d\d\s\d\d:\d\d:\d\d)(\s[+-]\d\d\d\d|)(\s\[\d+\])/
522     "$1$2 [" . new_value($3, "%s", \$next_pid) . "]"/gxe;
523
524   # Detect a daemon stderr line with a pid and save the pid for subsequent
525   # removal from following lines.
526   $spid = $1 if /^(\s*\d+) (?:listening|LOG: MAIN|(?:daemon_smtp_port|local_interfaces) overridden by)/;
527   s/^$spid //;
528
529   # Queue runner waiting messages
530   s/waiting for children of \d+/waiting for children of pppp/;
531   s/waiting for (\S+) \(\d+\)/waiting for $1 (pppp)/;
532
533   # ======== Port numbers ========
534   # Incoming port numbers may vary, but not in daemon startup line.
535
536   s/^Port: (\d+)/"Port: " . new_value($1, "%s", \$next_port)/e;
537   s/\(port=(\d+)/"(port=" . new_value($1, "%s", \$next_port)/e;
538
539   # This handles "connection from" and the like, when the port is given
540   if (!/listening for SMTP on/ && !/Connecting to/ && !/=>/ && !/->/
541       && !/\*>/ && !/Connection refused/)
542     {
543     s/\[([a-z\d:]+|\d+(?:\.\d+){3})\]:(\d+)/"[".$1."]:".new_value($2,"%s",\$next_port)/ie;
544     }
545
546   # Port in host address in spool file output from -Mvh
547   s/^-host_address (.*)\.\d+/-host_address $1.9999/;
548
549
550   # ======== Local IP addresses ========
551   # The amount of space between "host" and the address in verification output
552   # depends on the length of the host name. We therefore reduce it to one space
553   # for all of them.
554   # Also, the length of space at the end of the host line is dependent
555   # on the length of the longest line, so strip it also on otherwise
556   # un-rewritten lines like localhost
557
558   s/^\s+host\s(\S+)\s+(\S+)/  host $1 $2/;
559   s/^\s+(host\s\S+\s\S+)\s+(port=.*)/  host $1 $2/;
560   s/^\s+(host\s\S+\s\S+)\s+(?=MX=)/  $1 /;
561   s/host\s\Q$parm_ipv4\E\s\[\Q$parm_ipv4\E\]/host ipv4.ipv4.ipv4.ipv4 [ipv4.ipv4.ipv4.ipv4]/;
562   s/host\s\Q$parm_ipv6\E\s\[\Q$parm_ipv6\E\]/host ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6 [ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6]/;
563   s/\b\Q$parm_ipv4\E\b/ip4.ip4.ip4.ip4/g;
564   s/\b\Q$parm_ipv6\E\b/ip6:ip6:ip6:ip6:ip6:ip6:ip6:ip6/g;
565   s/\b\Q$parm_ipv4r\E\b/ip4-reverse/g;
566   s/\b\Q$parm_ipv6r\E\b/ip6-reverse/g;
567   s/^(\s+host\s\S+\s+\[\S+\]) +$/$1 /;
568
569
570   # ======== Test network IP addresses ========
571   s/(\b|_)\Q$parm_ipv4_test_net\E(?=\.\d+\.\d+\.\d+\b|_|\.rbl|\.in-addr|\.test\.again\.dns)/$1V4NET/g;
572   s/\b\Q$parm_ipv6_test_net\E(?=:[\da-f]+:[\da-f]+:[\da-f]+)/V6NET/gi;
573
574
575   # ======== IP error numbers and messages ========
576   # These vary between operating systems
577   s/Can't assign requested address/Network Error/;
578   s/Cannot assign requested address/Network Error/;
579   s/Operation timed out/Connection timed out/;
580   s/Address family not supported by protocol family/Network Error/;
581   s/Network is unreachable/Network Error/;
582   s/Invalid argument/Network Error/;
583
584   s/\(\d+\): Network/(dd): Network/;
585   s/\(\d+\): Connection refused/(dd): Connection refused/;
586   s/\(\d+\): Connection timed out/(dd): Connection timed out/;
587   s/\d+ 65 Connection refused/dd 65 Connection refused/;
588   s/\d+ 321 Connection timed out/dd 321 Connection timed out/;
589
590
591   # ======== Other error numbers ========
592   s/errno=\d+/errno=dd/g;
593
594
595   # ======== Output from ls ========
596   # Different operating systems use different spacing on long output
597   s/ +/ /g if /^[-rwd]{10} /;
598
599
600   # ======== Message sizes =========
601   # Message sizes vary, owing to different logins and host names that get
602   # automatically inserted. I can't think of any way of even approximately
603   # comparing these.
604
605   s/([\s,])S=\d+\b/$1S=sss/;
606   s/:S\d+\b/:Ssss/;
607   s/^(\s*\d+m\s+)\d+(\s+[a-z0-9-]{16} <)/$1sss$2/i if $is_stdout;
608   s/\sSIZE=\d+\b/ SIZE=ssss/;
609   s/\ssize=\d+\b/ size=sss/ if $is_stderr;
610   s/old size = \d+\b/old size = sssss/;
611   s/message size = \d+\b/message size = sss/;
612   s/this message = \d+\b/this message = sss/;
613   s/Size of headers = \d+/Size of headers = sss/;
614   s/sum=(?!0)\d+/sum=dddd/;
615   s/(?<=sum=dddd )count=(?!0)\d+\b/count=dd/;
616   s/(?<=sum=0 )count=(?!0)\d+\b/count=dd/;
617   s/,S is \d+\b/,S is ddddd/;
618   s/\+0100,\d+;/+0100,ddd;/;
619   s/\(\d+ bytes written\)/(ddd bytes written)/;
620   s/added '\d+ 1'/added 'ddd 1'/;
621   s/Received\s+\d+/Received               nnn/;
622   s/Delivered\s+\d+/Delivered              nnn/;
623
624
625   # ======== Values in spool space failure message ========
626   s/space=\d+ inodes=[+-]?\d+/space=xxxxx inodes=xxxxx/;
627
628
629   # ======== Filter sizes ========
630   # The sizes of filter files may vary because of the substitution of local
631   # filenames, logins, etc.
632
633   s/^\d+(?= bytes read from )/ssss/;
634
635
636   # ======== OpenSSL error messages ========
637   # Different releases of the OpenSSL libraries seem to give different error
638   # numbers, or handle specific bad conditions in different ways, leading to
639   # different wording in the error messages, so we cannot compare them.
640
641   s/(TLS error on connection (?:from|to) .*? \(SSL_\w+\): error:)(.*)/$1 <<detail omitted>>/;
642
643
644   # ======== Maildir things ========
645   # timestamp output in maildir processing
646   s/(timestamp=|\(timestamp_only\): )\d+/$1ddddddd/g;
647
648   # maildir delivery files appearing in log lines (in cases of error)
649   s/writing to(?: file)? tmp\/\d+\.[^.]+\.(\S+)/writing to tmp\/MAILDIR.$1/;
650
651   s/renamed tmp\/\d+\.[^.]+\.(\S+) as new\/\d+\.[^.]+\.(\S+)/renamed tmp\/MAILDIR.$1 as new\/MAILDIR.$1/;
652
653   # Maildir file names in general
654   s/\b\d+\.H\d+P\d+\b/dddddddddd.HddddddPddddd/;
655
656   # Maildirsize data
657   while (/^\d+S,\d+C\s*$/)
658     {
659     print MUNGED;
660     while (<IN>)
661       {
662       last if !/^\d+ \d+\s*$/;
663       print MUNGED "ddd d\n";
664       }
665     last if !defined $_;
666     }
667   last if !defined $_;
668
669
670   # ======== Output from the "fd" program about open descriptors ========
671   # The statuses seem to be different on different operating systems, but
672   # at least we'll still be checking the number of open fd's.
673
674   s/max fd = \d+/max fd = dddd/;
675   s/status=0 RDONLY/STATUS/g;
676   s/status=1 WRONLY/STATUS/g;
677   s/status=2 RDWR/STATUS/g;
678
679
680   # ======== Contents of spool files ========
681   # A couple of tests dump the contents of the -H file. The length fields
682   # will be wrong because of different user names, etc.
683   s/^\d\d\d(?=[PFS*])/ddd/;
684
685
686   # ==========================================================
687   # Some munging is specific to the specific file types
688
689   # ======== stdout ========
690
691   if ($is_stdout)
692     {
693     # Skip translate_ip_address and use_classresources in -bP output because
694     # they aren't always there.
695
696     next if /translate_ip_address =/;
697     next if /use_classresources/;
698
699     # In certain filter tests, remove initial filter lines because they just
700     # clog up by repetition.
701
702     if ($rmfiltertest)
703       {
704       next if /^(Sender\staken\sfrom|
705                  Return-path\scopied\sfrom|
706                  Sender\s+=|
707                  Recipient\s+=)/x;
708       if (/^Testing \S+ filter/)
709         {
710         $_ = <IN>;    # remove blank line
711         next;
712         }
713       }
714     }
715
716   # ======== stderr ========
717
718   elsif ($is_stderr)
719     {
720     # The very first line of debugging output will vary
721
722     s/^Exim version .*/Exim version x.yz ..../;
723
724     # Debugging lines for Exim terminations
725
726     s/(?<=^>>>>>>>>>>>>>>>> Exim pid=)\d+(?= terminating)/pppp/;
727
728     # IP address lookups use gethostbyname() when IPv6 is not supported,
729     # and gethostbyname2() or getipnodebyname() when it is.
730
731     s/\bgethostbyname2?|\bgetipnodebyname/get[host|ipnode]byname[2]/;
732
733     # drop gnutls version strings
734     next if /GnuTLS compile-time version: \d+[\.\d]+$/;
735     next if /GnuTLS runtime version: \d+[\.\d]+$/;
736
737     # drop openssl version strings
738     next if /OpenSSL compile-time version: OpenSSL \d+[\.\da-z]+/;
739     next if /OpenSSL runtime version: OpenSSL \d+[\.\da-z]+/;
740
741     # drop lookups
742     next if /^Lookups \(built-in\):/;
743     next if /^Total \d+ lookups/;
744
745     # and the ugly bit
746     # different libraries will have different numbers (possibly 0) of follow-up
747     # lines, indenting with more data
748     if (/^Library version:/) {
749       while (1) {
750         $_ = <IN>;
751         next if /^\s/;
752         goto RESET_AFTER_EXTRA_LINE_READ;
753       }
754     }
755
756     # drop other build-time controls emitted for debugging
757     next if /^WHITELIST_D_MACROS:/;
758     next if /^TRUSTED_CONFIG_LIST:/;
759
760     # As of Exim 4.74, we log when a setgid fails; because we invoke Exim
761     # with -be, privileges will have been dropped, so this will always
762     # be the case
763     next if /^changing group to \d+ failed: Operation not permitted/;
764
765     # We invoke Exim with -D, so we hit this new messag as of Exim 4.73:
766     next if /^macros_trusted overriden to true by whitelisting/;
767
768     # We have to omit the localhost ::1 address so that all is well in
769     # the IPv4-only case.
770
771     print MUNGED "MUNGED: ::1 will be omitted in what follows\n"
772       if (/looked up these IP addresses/);
773     next if /name=localhost address=::1/;
774
775     # drop pdkim debugging header
776     next if /^PDKIM <<<<<<<<<<<<<<<<<<<<<<<<<<<<<+$/;
777
778     # Various other IPv6 lines must be omitted too
779
780     next if /using host_fake_gethostbyname for \S+ \(IPv6\)/;
781     next if /get\[host\|ipnode\]byname\[2\]\(af=inet6\)/;
782     next if /DNS lookup of \S+ \(AAAA\) using fakens/;
783     next if / in dns_ipv4_lookup?/;
784
785     if (/DNS lookup of \S+ \(AAAA\) gave NO_DATA/)
786       {
787       $_= <IN>;     # Gets "returning DNS_NODATA"
788       next;
789       }
790
791     # Skip tls_advertise_hosts and hosts_require_tls checks when the options
792     # are unset, because tls ain't always there.
793
794     next if /in\s(?:tls_advertise_hosts\?|hosts_require_tls\?)
795                 \sno\s\(option\sunset\)/x;
796
797     # Skip auxiliary group lists because they will vary.
798
799     next if /auxiliary group list:/;
800
801     # Skip "extracted from gecos field" because the gecos field varies
802
803     next if /extracted from gecos field/;
804
805     # Skip "waiting for data on socket" and "read response data: size=" lines
806     # because some systems pack more stuff into packets than others.
807
808     next if /waiting for data on socket/;
809     next if /read response data: size=/;
810
811     # If Exim is compiled with readline support but it can't find the library
812     # to load, there will be an extra debug line. Omit it.
813
814     next if /failed to load readline:/;
815
816     # Some DBM libraries seem to make DBM files on opening with O_RDWR without
817     # O_CREAT; other's don't. In the latter case there is some debugging output
818     # which is not present in the former. Skip the relevant lines (there are
819     # two of them).
820
821     if (/TESTSUITE\/spool\/db\/\S+ appears not to exist: trying to create/)
822       {
823       $_ = <IN>;
824       next;
825       }
826
827     # Some tests turn on +expand debugging to check on expansions.
828     # Unfortunately, the Received: expansion varies, depending on whether TLS
829     # is compiled or not. So we must remove the relevant debugging if it is.
830
831     if (/^condition: def:tls_cipher/)
832       {
833       while (<IN>) { last if /^condition: def:sender_address/; }
834       }
835     elsif (/^expanding: Received: /)
836       {
837       while (<IN>) { last if !/^\s/; }
838       }
839
840     # When Exim is checking the size of directories for maildir, it uses
841     # the check_dir_size() function to scan directories. Of course, the order
842     # of the files that are obtained using readdir() varies from system to
843     # system. We therefore buffer up debugging lines from check_dir_size()
844     # and sort them before outputting them.
845
846     if (/^check_dir_size:/ || /^skipping TESTSUITE\/test-mail\//)
847       {
848       push @saved, $_;
849       }
850     else
851       {
852       if (@saved > 0)
853         {
854         print MUNGED "MUNGED: the check_dir_size lines have been sorted " .
855           "to ensure consistency\n";
856         @saved = sort(@saved);
857         print MUNGED @saved;
858         @saved = ();
859         }
860
861       # Skip some lines that Exim puts out at the start of debugging output
862       # because they will be different in different binaries.
863
864       print MUNGED
865         unless (/^Berkeley DB: / ||
866                 /^Probably (?:Berkeley DB|ndbm|GDBM)/ ||
867                 /^Authenticators:/ ||
868                 /^Lookups:/ ||
869                 /^Support for:/ ||
870                 /^Routers:/ ||
871                 /^Transports:/ ||
872                 /^log selectors =/ ||
873                 /^cwd=/ ||
874                 /^Fixed never_users:/ ||
875                 /^Size of off_t:/
876                 );
877       }
878
879     next;
880     }
881
882   # ======== All files other than stderr ========
883
884   print MUNGED;
885   }
886
887 close(IN);
888 return $yield;
889 }
890
891
892
893
894 ##################################################
895 #        Subroutine to interact with caller      #
896 ##################################################
897
898 # Arguments: [0] the prompt string
899 #            [1] if there is a U in the prompt and $force_update is true
900 # Returns:   nothing (it sets $_)
901
902 sub interact{
903 print $_[0];
904 if ($_[1]) { $_ = "u"; print "... update forced\n"; }
905   else { $_ = <T>; }
906 }
907
908
909
910
911 ##################################################
912 #    Subroutine to compare one output file       #
913 ##################################################
914
915 # When an Exim server is part of the test, its output is in separate files from
916 # an Exim client. The server data is concatenated with the client data as part
917 # of the munging operation.
918 #
919 # Arguments:  [0] the name of the main raw output file
920 #             [1] the name of the server raw output file or undef
921 #             [2] where to put the munged copy
922 #             [3] the name of the saved file
923 #             [4] TRUE if this is a log file whose deliveries must be sorted
924 #
925 # Returns:    0 comparison succeeded or differences to be ignored
926 #             1 comparison failed; files were updated (=> re-compare)
927 #
928 # Does not return if the user replies "Q" to a prompt.
929
930 sub check_file{
931 my($rf,$rsf,$mf,$sf,$sortfile) = @_;
932
933 # If there is no saved file, the raw files must either not exist, or be
934 # empty. The test ! -s is TRUE if the file does not exist or is empty.
935
936 if (! -e $sf)
937   {
938   return 0 if (! -s $rf && (! defined $rsf || ! -s $rsf));
939
940   print "\n";
941   print "** $rf is not empty\n" if (-s $rf);
942   print "** $rsf is not empty\n" if (defined $rsf && -s $rsf);
943
944   for (;;)
945     {
946     print "Continue, Show, or Quit? [Q] ";
947     $_ = <T>;
948     tests_exit(1) if /^q?$/i;
949     return 0 if /^c$/i;
950     last if (/^s$/);
951     }
952
953   foreach $f ($rf, $rsf)
954     {
955     if (defined $f && -s $f)
956       {
957       print "\n";
958       print "------------ $f -----------\n"
959         if (defined $rf && -s $rf && defined $rsf && -s $rsf);
960       system("$more '$f'");
961       }
962     }
963
964   print "\n";
965   for (;;)
966     {
967     interact("Continue, Update & retry, Quit? [Q] ", $force_update);
968     tests_exit(1) if /^q?$/i;
969     return 0 if /^c$/i;
970     last if (/^u$/i);
971     }
972   }
973
974 # Control reaches here if either (a) there is a saved file ($sf), or (b) there
975 # was a request to create a saved file. First, create the munged file from any
976 # data that does exist.
977
978 open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
979 my($truncated) = munge($rf) if -e $rf;
980 if (defined $rsf && -e $rsf)
981   {
982   print MUNGED "\n******** SERVER ********\n";
983   $truncated |= munge($rsf);
984   }
985 close(MUNGED);
986
987 # If a saved file exists, do the comparison. There are two awkward cases:
988 #
989 # If "*** truncated ***" was found in the new file, it means that a log line
990 # was overlong, and truncated. The problem is that it may be truncated at
991 # different points on different systems, because of different user name
992 # lengths. We reload the file and the saved file, and remove lines from the new
993 # file that precede "*** truncated ***" until we reach one that matches the
994 # line that precedes it in the saved file.
995 #
996 # If $sortfile is set, we are dealing with a mainlog file where the deliveries
997 # for an individual message might vary in their order from system to system, as
998 # a result of parallel deliveries. We load the munged file and sort sequences
999 # of delivery lines.
1000
1001 if (-e $sf)
1002   {
1003   # Deal with truncated text items
1004
1005   if ($truncated)
1006     {
1007     my(@munged, @saved, $i, $j, $k);
1008
1009     open(MUNGED, "$mf") || tests_exit(-1, "Failed to open $mf: $!");
1010     @munged = <MUNGED>;
1011     close(MUNGED);
1012     open(SAVED, "$sf") || tests_exit(-1, "Failed to open $sf: $!");
1013     @saved = <SAVED>;
1014     close(SAVED);
1015
1016     $j = 0;
1017     for ($i = 0; $i < @munged; $i++)
1018       {
1019       if ($munged[$i] =~ /\*\*\* truncated \*\*\*/)
1020         {
1021         for (; $j < @saved; $j++)
1022           { last if $saved[$j] =~ /\*\*\* truncated \*\*\*/; }
1023         last if $j >= @saved;     # not found in saved
1024
1025         for ($k = $i - 1; $k >= 0; $k--)
1026           { last if $munged[$k] eq $saved[$j - 1]; }
1027
1028         last if $k <= 0;          # failed to find previous match
1029         splice @munged, $k + 1, $i - $k - 1;
1030         $i = $k + 1;
1031         }
1032       }
1033
1034     open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
1035     for ($i = 0; $i < @munged; $i++)
1036       { print MUNGED $munged[$i]; }
1037     close(MUNGED);
1038     }
1039
1040   # Deal with log sorting
1041
1042   if ($sortfile)
1043     {
1044     my(@munged, $i, $j);
1045
1046     open(MUNGED, "$mf") || tests_exit(-1, "Failed to open $mf: $!");
1047     @munged = <MUNGED>;
1048     close(MUNGED);
1049
1050     for ($i = 0; $i < @munged; $i++)
1051       {
1052       if ($munged[$i] =~ /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/)
1053         {
1054         for ($j = $i + 1; $j < @munged; $j++)
1055           {
1056           last if $munged[$j] !~
1057             /^[-\d]{10}\s[:\d]{8}\s[-A-Za-z\d]{16}\s[-=*]>/;
1058           }
1059         @temp = splice(@munged, $i, $j - $i);
1060         @temp = sort(@temp);
1061         splice(@munged, $i, 0, @temp);
1062         }
1063       }
1064
1065     open(MUNGED, ">$mf") || tests_exit(-1, "Failed to open $mf: $!");
1066     print MUNGED "**NOTE: The delivery lines in this file have been sorted.\n";
1067     for ($i = 0; $i < @munged; $i++)
1068       { print MUNGED $munged[$i]; }
1069     close(MUNGED);
1070     }
1071
1072   # Do the comparison
1073
1074   return 0 if (system("$cf '$mf' '$sf' >test-cf") == 0);
1075
1076   # Handle comparison failure
1077
1078   print "** Comparison of $mf with $sf failed";
1079   system("$more test-cf");
1080
1081   print "\n";
1082   for (;;)
1083     {
1084     interact("Continue, Update & retry, Quit? [Q] ", $force_update);
1085     tests_exit(1) if /^q?$/i;
1086     return 0 if /^c$/i;
1087     last if (/^u$/i);
1088     }
1089   }
1090
1091 # Update or delete the saved file, and give the appropriate return code.
1092
1093 if (-s $mf)
1094   { tests_exit(-1, "Failed to cp $mf $sf") if system("cp '$mf' '$sf'") != 0; }
1095 else
1096   { tests_exit(-1, "Failed to unlink $sf") if !unlink($sf); }
1097
1098 return 1;
1099 }
1100
1101
1102
1103 ##################################################
1104 #    Subroutine to check the output of a test    #
1105 ##################################################
1106
1107 # This function is called when the series of subtests is complete. It makes
1108 # use of check() file, whose arguments are:
1109 #
1110 #  [0] the name of the main raw output file
1111 #  [1] the name of the server raw output file or undef
1112 #  [2] where to put the munged copy
1113 #  [3] the name of the saved file
1114 #  [4] TRUE if this is a log file whose deliveries must be sorted
1115 #
1116 # Arguments: none
1117 # Returns:   0 if the output compared equal
1118 #            1 if files were updated and the test must be re-run
1119
1120 sub check_output{
1121 my($yield) = 0;
1122
1123 $yield = 1 if check_file("spool/log/paniclog",
1124                        "spool/log/serverpaniclog",
1125                        "test-paniclog-munged",
1126                        "paniclog/$testno", 0);
1127
1128 $yield = 1 if check_file("spool/log/rejectlog",
1129                        "spool/log/serverrejectlog",
1130                        "test-rejectlog-munged",
1131                        "rejectlog/$testno", 0);
1132
1133 $yield = 1 if check_file("spool/log/mainlog",
1134                        "spool/log/servermainlog",
1135                        "test-mainlog-munged",
1136                        "log/$testno", $sortlog);
1137
1138 if (!$stdout_skip)
1139   {
1140   $yield = 1 if check_file("test-stdout",
1141                        "test-stdout-server",
1142                        "test-stdout-munged",
1143                        "stdout/$testno", 0);
1144   }
1145
1146 if (!$stderr_skip)
1147   {
1148   $yield = 1 if check_file("test-stderr",
1149                        "test-stderr-server",
1150                        "test-stderr-munged",
1151                        "stderr/$testno", 0);
1152   }
1153
1154 # Compare any delivered messages, unless this test is skipped.
1155
1156 if (! $message_skip)
1157   {
1158   my($msgno) = 0;
1159
1160   # Get a list of expected mailbox files for this script. We don't bother with
1161   # directories, just the files within them.
1162
1163   foreach $oldmail (@oldmails)
1164     {
1165     next unless $oldmail =~ /^mail\/$testno\./;
1166     print ">> EXPECT $oldmail\n" if $debug;
1167     $expected_mails{$oldmail} = 1;
1168     }
1169
1170   # If there are any files in test-mail, compare them. Note that "." and
1171   # ".." are automatically omitted by list_files_below().
1172
1173   @mails = list_files_below("test-mail");
1174
1175   foreach $mail (@mails)
1176     {
1177     next if $mail eq "test-mail/oncelog";
1178
1179     $saved_mail = substr($mail, 10);               # Remove "test-mail/"
1180     $saved_mail =~ s/^$parm_caller(\/|$)/CALLER/;  # Convert caller name
1181
1182     if ($saved_mail =~ /(\d+\.[^.]+\.)/)
1183       {
1184       $msgno++;
1185       $saved_mail =~ s/(\d+\.[^.]+\.)/$msgno./gx;
1186       }
1187
1188     print ">> COMPARE $mail mail/$testno.$saved_mail\n" if $debug;
1189     $yield = 1 if check_file($mail, undef, "test-mail-munged",
1190       "mail/$testno.$saved_mail", 0);
1191     delete $expected_mails{"mail/$testno.$saved_mail"};
1192     }
1193
1194   # Complain if not all expected mails have been found
1195
1196   if (scalar(keys %expected_mails) != 0)
1197     {
1198     foreach $key (keys %expected_mails)
1199       { print "** no test file found for $key\n"; }
1200
1201     for (;;)
1202       {
1203       interact("Continue, Update & retry, or Quit? [Q] ", $force_update);
1204       tests_exit(1) if /^q?$/i;
1205       last if /^c$/i;
1206
1207       # For update, we not only have to unlink the file, but we must also
1208       # remove it from the @oldmails vector, as otherwise it will still be
1209       # checked for when we re-run the test.
1210
1211       if (/^u$/i)
1212         {
1213         foreach $key (keys %expected_mails)
1214           {
1215           my($i);
1216           tests_exit(-1, "Failed to unlink $key") if !unlink("$key");
1217           for ($i = 0; $i < @oldmails; $i++)
1218             {
1219             if ($oldmails[$i] eq $key)
1220               {
1221               splice @oldmails, $i, 1;
1222               last;
1223               }
1224             }
1225           }
1226         last;
1227         }
1228       }
1229     }
1230   }
1231
1232 # Compare any remaining message logs, unless this test is skipped.
1233
1234 if (! $msglog_skip)
1235   {
1236   # Get a list of expected msglog files for this test
1237
1238   foreach $oldmsglog (@oldmsglogs)
1239     {
1240     next unless $oldmsglog =~ /^$testno\./;
1241     $expected_msglogs{$oldmsglog} = 1;
1242     }
1243
1244   # If there are any files in spool/msglog, compare them. However, we have
1245   # to munge the file names because they are message ids, which are
1246   # time dependent.
1247
1248   if (opendir(DIR, "spool/msglog"))
1249     {
1250     @msglogs = sort readdir(DIR);
1251     closedir(DIR);
1252
1253     foreach $msglog (@msglogs)
1254       {
1255       next if ($msglog eq "." || $msglog eq ".." || $msglog eq "CVS");
1256       ($munged_msglog = $msglog) =~
1257         s/((?:[^\W_]{6}-){2}[^\W_]{2})
1258           /new_value($1, "10Hm%s-0005vi-00", \$next_msgid)/egx;
1259       $yield = 1 if check_file("spool/msglog/$msglog", undef,
1260         "test-msglog-munged", "msglog/$testno.$munged_msglog", 0);
1261       delete $expected_msglogs{"$testno.$munged_msglog"};
1262       }
1263     }
1264
1265   # Complain if not all expected msglogs have been found
1266
1267   if (scalar(keys %expected_msglogs) != 0)
1268     {
1269     foreach $key (keys %expected_msglogs)
1270       {
1271       print "** no test msglog found for msglog/$key\n";
1272       ($msgid) = $key =~ /^\d+\.(.*)$/;
1273       foreach $cachekey (keys %cache)
1274         {
1275         if ($cache{$cachekey} eq $msgid)
1276           {
1277           print "** original msgid $cachekey\n";
1278           last;
1279           }
1280         }
1281       }
1282
1283     for (;;)
1284       {
1285       interact("Continue, Update, or Quit? [Q] ", $force_update);
1286       tests_exit(1) if /^q?$/i;
1287       last if /^c$/i;
1288       if (/^u$/i)
1289         {
1290         foreach $key (keys %expected_msglogs)
1291           {
1292           tests_exit(-1, "Failed to unlink msglog/$key")
1293             if !unlink("msglog/$key");
1294           }
1295         last;
1296         }
1297       }
1298     }
1299   }
1300
1301 return $yield;
1302 }
1303
1304
1305
1306 ##################################################
1307 #     Subroutine to run one "system" command     #
1308 ##################################################
1309
1310 # We put this in a subroutine so that the command can be reflected when
1311 # debugging.
1312 #
1313 # Argument: the command to be run
1314 # Returns:  nothing
1315
1316 sub run_system {
1317 my($cmd) = $_[0];
1318 if ($debug)
1319   {
1320   my($prcmd) = $cmd;
1321   $prcmd =~ s/; /;\n>> /;
1322   print ">> $prcmd\n";
1323   }
1324 system("$cmd");
1325 }
1326
1327
1328
1329 ##################################################
1330 #      Subroutine to run one script command      #
1331 ##################################################
1332
1333 # The <SCRIPT> file is open for us to read an optional return code line,
1334 # followed by the command line and any following data lines for stdin. The
1335 # command line can be continued by the use of \. Data lines are not continued
1336 # in this way. In all lines, the following substutions are made:
1337 #
1338 # DIR    => the current directory
1339 # CALLER => the caller of this script
1340 #
1341 # Arguments: the current test number
1342 #            reference to the subtest number, holding previous value
1343 #            reference to the expected return code value
1344 #            reference to where to put the command name (for messages)
1345 #
1346 # Returns:   0 the commmand was executed inline, no subprocess was run
1347 #            1 a non-exim command was run and waited for
1348 #            2 an exim command was run and waited for
1349 #            3 a command was run and not waited for (daemon, server, exim_lock)
1350 #            4 EOF was encountered after an initial return code line
1351
1352 sub run_command{
1353 my($testno) = $_[0];
1354 my($subtestref) = $_[1];
1355 my($commandnameref) = $_[3];
1356 my($yield) = 1;
1357
1358 if (/^(\d+)\s*$/)                # Handle unusual return code
1359   {
1360   my($r) = $_[2];
1361   $$r = $1 << 8;
1362   $_ = <SCRIPT>;
1363   return 4 if !defined $_;       # Missing command
1364   $lineno++;
1365   }
1366
1367 chomp;
1368 $wait_time = 0;
1369
1370 # Handle concatenated command lines
1371
1372 s/\s+$//;
1373 while (substr($_, -1) eq"\\")
1374   {
1375   my($temp);
1376   $_ = substr($_, 0, -1);
1377   chomp($temp = <SCRIPT>);
1378   if (defined $temp)
1379     {
1380     $lineno++;
1381     $temp =~ s/\s+$//;
1382     $temp =~ s/^\s+//;
1383     $_ .= $temp;
1384     }
1385   }
1386
1387 # Do substitutions
1388
1389 do_substitute($testno);
1390 if ($debug) { printf ">> $_\n"; }
1391
1392 # Pass back the command name (for messages)
1393
1394 ($$commandnameref) = /^(\S+)/;
1395
1396 # Here follows code for handling the various different commands that are
1397 # supported by this script. The first group of commands are all freestanding
1398 # in that they share no common code and are not followed by any data lines.
1399
1400
1401 ###################
1402 ###################
1403
1404 # The "dbmbuild" command runs exim_dbmbuild. This is used both to test the
1405 # utility and to make DBM files for testing DBM lookups.
1406
1407 if (/^dbmbuild\s+(\S+)\s+(\S+)/)
1408   {
1409   run_system("(./eximdir/exim_dbmbuild $parm_cwd/$1 $parm_cwd/$2;" .
1410          "echo exim_dbmbuild exit code = \$?)" .
1411          ">>test-stdout");
1412   return 1;
1413   }
1414
1415
1416 # The "dump" command runs exim_dumpdb. On different systems, the output for
1417 # some types of dump may appear in a different order because it's just hauled
1418 # out of the DBM file. We can solve this by sorting. Ignore the leading
1419 # date/time, as it will be flattened later during munging.
1420
1421 if (/^dump\s+(\S+)/)
1422   {
1423   my($which) = $1;
1424   my(@temp);
1425   print ">> ./eximdir/exim_dumpdb $parm_cwd/spool $which\n" if $debug;
1426   open(IN, "./eximdir/exim_dumpdb $parm_cwd/spool $which |");
1427   @temp = <IN>;
1428   close(IN);
1429   if ($which eq "callout")
1430     {
1431     @temp = sort {
1432                  my($aa) = substr $a, 21;
1433                  my($bb) = substr $b, 21;
1434                  return $aa cmp $bb;
1435                  } @temp;
1436     }
1437   open(OUT, ">>test-stdout");
1438   print OUT "+++++++++++++++++++++++++++\n";
1439   print OUT @temp;
1440   close(OUT);
1441   return 1;
1442   }
1443
1444
1445 # The "echo" command is a way of writing comments to the screen.
1446
1447 if (/^echo\s+(.*)$/)
1448   {
1449   print "$1\n";
1450   return 0;
1451   }
1452
1453
1454 # The "exim_lock" command runs exim_lock in the same manner as "server",
1455 # but it doesn't use any input.
1456
1457 if (/^exim_lock\s+(.*)$/)
1458   {
1459   $cmd = "./eximdir/exim_lock $1 >>test-stdout";
1460   $server_pid = open SERVERCMD, "|$cmd" ||
1461     tests_exit(-1, "Failed to run $cmd\n");
1462
1463   # This gives the process time to get started; otherwise the next
1464   # process may not find it there when it expects it.
1465
1466   select(undef, undef, undef, 0.1);
1467   return 3;
1468   }
1469
1470
1471 # The "exinext" command runs exinext
1472
1473 if (/^exinext\s+(.*)/)
1474   {
1475   run_system("(./eximdir/exinext " .
1476     "-DEXIM_PATH=$parm_cwd/eximdir/exim " .
1477     "-C $parm_cwd/test-config $1;" .
1478     "echo exinext exit code = \$?)" .
1479     ">>test-stdout");
1480   return 1;
1481   }
1482
1483
1484 # The "exigrep" command runs exigrep on the current mainlog
1485
1486 if (/^exigrep\s+(.*)/)
1487   {
1488   run_system("(./eximdir/exigrep " .
1489     "$1 $parm_cwd/spool/log/mainlog;" .
1490     "echo exigrep exit code = \$?)" .
1491     ">>test-stdout");
1492   return 1;
1493   }
1494
1495
1496 # The "eximstats" command runs eximstats on the current mainlog
1497
1498 if (/^eximstats\s+(.*)/)
1499   {
1500   run_system("(./eximdir/eximstats " .
1501     "$1 $parm_cwd/spool/log/mainlog;" .
1502     "echo eximstats exit code = \$?)" .
1503     ">>test-stdout");
1504   return 1;
1505   }
1506
1507
1508 # The "gnutls" command makes a copy of saved GnuTLS parameter data in the
1509 # spool directory, to save Exim from re-creating it each time.
1510
1511 if (/^gnutls/)
1512   {
1513   run_system "sudo cp -p aux-fixed/gnutls-params spool/gnutls-params;" .
1514          "sudo chown $parm_eximuser:$parm_eximgroup spool/gnutls-params;" .
1515          "sudo chmod 0400 spool/gnutls-params";
1516   return 1;
1517   }
1518
1519
1520 # The "killdaemon" command should ultimately follow the starting of any Exim
1521 # daemon with the -bd option. We kill with SIGINT rather than SIGTERM to stop
1522 # it outputting "Terminated" to the terminal when not in the background.
1523
1524 if (/^killdaemon/)
1525   {
1526   $pid = `cat $parm_cwd/spool/exim-daemon.*`;
1527   run_system("sudo /bin/kill -SIGINT $pid");
1528   close DAEMONCMD;                                   # Waits for process
1529   run_system("sudo /bin/rm -f spool/exim-daemon.*");
1530   return 1;
1531   }
1532
1533
1534 # The "millisleep" command is like "sleep" except that its argument is in
1535 # milliseconds, thus allowing for a subsecond sleep, which is, in fact, all it
1536 # is used for.
1537
1538 elsif (/^millisleep\s+(.*)$/)
1539   {
1540   select(undef, undef, undef, $1/1000);
1541   return 0;
1542   }
1543
1544
1545 # The "sleep" command does just that. For sleeps longer than 1 second we
1546 # tell the user what's going on.
1547
1548 if (/^sleep\s+(.*)$/)
1549   {
1550   if ($1 == 1)
1551     {
1552     sleep(1);
1553     }
1554   else
1555     {
1556     printf("  Test %d sleep $1 ", $$subtestref);
1557     for (1..$1)
1558       {
1559       print ".";
1560       sleep(1);
1561       }
1562     printf("\r  Test %d                            $cr", $$subtestref);
1563     }
1564   return 0;
1565   }
1566
1567
1568 # Various Unix management commands are recognized
1569
1570 if (/^(ln|ls|du|mkdir|mkfifo|touch|cp|cat)\s/ ||
1571     /^sudo (rmdir|rm|chown|chmod)\s/)
1572   {
1573   run_system("$_ >>test-stdout 2>>test-stderr");
1574   return 1;
1575   }
1576
1577
1578
1579 ###################
1580 ###################
1581
1582 # The next group of commands are also freestanding, but they are all followed
1583 # by data lines.
1584
1585
1586 # The "server" command starts up a script-driven server that runs in parallel
1587 # with the following exim command. Therefore, we want to run a subprocess and
1588 # not yet wait for it to complete. The waiting happens after the next exim
1589 # command, triggered by $server_pid being non-zero. The server sends its output
1590 # to a different file. The variable $server_opts, if not empty, contains
1591 # options to disable IPv4 or IPv6 if necessary.
1592
1593 if (/^server\s+(.*)$/)
1594   {
1595   $cmd = "./bin/server $server_opts $1 >>test-stdout-server";
1596   print ">> $cmd\n" if ($debug);
1597   $server_pid = open SERVERCMD, "|$cmd" || tests_exit(-1, "Failed to run $cmd");
1598   SERVERCMD->autoflush(1);
1599   print ">> Server pid is $server_pid\n" if $debug;
1600   while (<SCRIPT>)
1601     {
1602     $lineno++;
1603     last if /^\*{4}\s*$/;
1604     print SERVERCMD;
1605     }
1606   print SERVERCMD "++++\n"; # Send end to server; can't send EOF yet
1607                             # because close() waits for the process.
1608
1609   # This gives the server time to get started; otherwise the next
1610   # process may not find it there when it expects it.
1611
1612   select(undef, undef, undef, 0.5);
1613   return 3;
1614   }
1615
1616
1617 # The "write" command is a way of creating files of specific sizes for
1618 # buffering tests, or containing specific data lines from within the script
1619 # (rather than hold lots of little files). The "catwrite" command does the
1620 # same, but it also copies the lines to test-stdout.
1621
1622 if (/^(cat)?write\s+(\S+)(?:\s+(.*))?\s*$/)
1623   {
1624   my($cat) = defined $1;
1625   @sizes = ();
1626   @sizes = split /\s+/, $3 if defined $3;
1627   open FILE, ">$2" || tests_exit(-1, "Failed to open \"$2\": $!");
1628
1629   if ($cat)
1630     {
1631     open CAT, ">>test-stdout" ||
1632       tests_exit(-1, "Failed to open test-stdout: $!");
1633     print CAT "==========\n";
1634     }
1635
1636   if (scalar @sizes > 0)
1637     {
1638     # Pre-data
1639
1640     while (<SCRIPT>)
1641       {
1642       $lineno++;
1643       last if /^\+{4}\s*$/;
1644       print FILE;
1645       print CAT if $cat;
1646       }
1647
1648     # Sized data
1649
1650     while (scalar @sizes > 0)
1651       {
1652       ($count,$len,$leadin) = (shift @sizes) =~ /(\d+)x(\d+)(?:=(.*))?/;
1653       $leadin = "" if !defined $leadin;
1654       $leadin =~ s/_/ /g;
1655       $len -= length($leadin) + 1;
1656       while ($count-- > 0)
1657         {
1658         print FILE $leadin, "a" x $len, "\n";
1659         print CAT $leadin, "a" x $len, "\n" if $cat;
1660         }
1661       }
1662     }
1663
1664   # Post data, or only data if no sized data
1665
1666   while (<SCRIPT>)
1667     {
1668     $lineno++;
1669     last if /^\*{4}\s*$/;
1670     print FILE;
1671     print CAT if $cat;
1672     }
1673   close FILE;
1674
1675   if ($cat)
1676     {
1677     print CAT "==========\n";
1678     close CAT;
1679     }
1680
1681   return 0;
1682   }
1683
1684
1685 ###################
1686 ###################
1687
1688 # From this point on, script commands are implemented by setting up a shell
1689 # command in the variable $cmd. Shared code to run this command and handle its
1690 # input and output follows.
1691
1692 # The "client", "client-gnutls", and "client-ssl" commands run a script-driven
1693 # program that plays the part of an email client. We also have the availability
1694 # of running Perl for doing one-off special things. Note that all these
1695 # commands expect stdin data to be supplied.
1696
1697 if (/^client/ || /^(sudo\s+)?perl\b/)
1698   {
1699   s"client"./bin/client";
1700   $cmd = "$_ >>test-stdout 2>>test-stderr";
1701   }
1702
1703 # For the "exim" command, replace the text "exim" with the path for the test
1704 # binary, plus -D options to pass over various parameters, and a -C option for
1705 # the testing configuration file. When running in the test harness, Exim does
1706 # not drop privilege when -C and -D options are present. To run the exim
1707 # command as root, we use sudo.
1708
1709 elsif (/^([A-Z_]+=\S+\s+)?(\d+)?\s*(sudo\s+)?exim(_\S+)?\s+(.*)$/)
1710   {
1711   $args = $5;
1712   my($envset) = (defined $1)? $1      : "";
1713   my($sudo)   = (defined $3)? "sudo " : "";
1714   my($special)= (defined $4)? $4      : "";
1715   $wait_time  = (defined $2)? $2      : 0;
1716
1717   # Return 2 rather than 1 afterwards
1718
1719   $yield = 2;
1720
1721   # Update the test number
1722
1723   $$subtestref = $$subtestref + 1;
1724   printf("  Test %d       $cr", $$subtestref);
1725
1726   # Copy the configuration file, making the usual substitutions.
1727
1728   open (IN, "$parm_cwd/confs/$testno") ||
1729     tests_exit(-1, "Couldn't open $parm_cwd/confs/$testno: $!\n");
1730   open (OUT, ">test-config") ||
1731     tests_exit(-1, "Couldn't open test-config: $!\n");
1732   while (<IN>)
1733     {
1734     do_substitute($testno);
1735     print OUT;
1736     }
1737   close(IN);
1738   close(OUT);
1739
1740   # The string $msg1 in args substitutes the message id of the first
1741   # message on the queue, and so on. */
1742
1743   if ($args =~ /\$msg/)
1744     {
1745     my($listcmd) = "$parm_cwd/eximdir/exim -bp " .
1746                    "-DEXIM_PATH=$parm_cwd/eximdir/exim " .
1747                    "-C $parm_cwd/test-config |";
1748     print ">> Getting queue list from:\n>>    $listcmd\n" if ($debug);
1749     open (QLIST, $listcmd) || tests_exit(-1, "Couldn't run \"exim -bp\": $!\n");
1750     my(@msglist) = ();
1751     while (<QLIST>) { push (@msglist, $1) if /^\s*\d+[smhdw]\s+\S+\s+(\S+)/; }
1752     close(QLIST);
1753
1754     # Done backwards just in case there are more than 9
1755
1756     my($i);
1757     for ($i = @msglist; $i > 0; $i--) { $args =~ s/\$msg$i/$msglist[$i-1]/g; }
1758     }
1759
1760   # If -d is specified in $optargs, remove it from $args; i.e. let
1761   # the command line for runtest override. Then run Exim.
1762
1763   $args =~ s/(?:^|\s)-d\S*// if $optargs =~ /(?:^|\s)-d/;
1764
1765   $cmd = "$envset$sudo$parm_cwd/eximdir/exim$special$optargs " .
1766          "-DEXIM_PATH=$parm_cwd/eximdir/exim$special " .
1767          "-C $parm_cwd/test-config $args " .
1768          ">>test-stdout 2>>test-stderr";
1769
1770   # If the command is starting an Exim daemon, we run it in the same
1771   # way as the "server" command above, that is, we don't want to wait
1772   # for the process to finish. That happens when "killdaemon" is obeyed later
1773   # in the script. We also send the stderr output to test-stderr-server. The
1774   # daemon has its log files put in a different place too (by configuring with
1775   # log_file_path). This requires the  directory to be set up in advance.
1776   #
1777   # There are also times when we want to run a non-daemon version of Exim
1778   # (e.g. a queue runner) with the server configuration. In this case,
1779   # we also define -DNOTDAEMON.
1780
1781   if ($cmd =~ /\s-DSERVER=server\s/ && $cmd !~ /\s-DNOTDAEMON\s/)
1782     {
1783     if ($debug) { printf ">> daemon: $cmd\n"; }
1784     run_system("sudo mkdir spool/log 2>/dev/null");
1785     run_system("sudo chown $parm_eximuser:$parm_eximgroup spool/log");
1786
1787     # Before running the command, convert the -bd option into -bdf so that an
1788     # Exim daemon doesn't double fork. This means that when we wait close
1789     # DAEMONCMD, it waits for the correct process. Also, ensure that the pid
1790     # file is written to the spool directory, in case the Exim binary was
1791     # built with PID_FILE_PATH pointing somewhere else.
1792
1793     $cmd =~ s!\s-bd\s! -bdf -oP $parm_cwd/spool/exim-daemon.pid !;
1794     print ">> |${cmd}-server\n" if ($debug);
1795     open DAEMONCMD, "|${cmd}-server" || tests_exit(-1, "Failed to run $cmd");
1796     DAEMONCMD->autoflush(1);
1797     while (<SCRIPT>) { $lineno++; last if /^\*{4}\s*$/; }   # Ignore any input
1798     select(undef, undef, undef, 0.3);             # Let the daemon get going
1799     return 3;                                     # Don't wait
1800     }
1801   }
1802
1803
1804 # Unknown command
1805
1806 else { tests_exit(-1, "Command unrecognized in line $lineno: $_"); }
1807
1808
1809 # Run the command, with stdin connected to a pipe, and write the stdin data
1810 # to it, with appropriate substitutions. If a line ends with \NONL\, chop off
1811 # the terminating newline (and the \NONL\). If the command contains
1812 # -DSERVER=server add "-server" to the command, where it will adjoin the name
1813 # for the stderr file. See comment above about the use of -DSERVER.
1814
1815 $stderrsuffix = ($cmd =~ /\s-DSERVER=server\s/)? "-server" : "";
1816 print ">> |${cmd}${stderrsuffix}\n" if ($debug);
1817 open CMD, "|${cmd}${stderrsuffix}" || tests_exit(1, "Failed to run $cmd");
1818
1819 CMD->autoflush(1);
1820 while (<SCRIPT>)
1821   {
1822   $lineno++;
1823   last if /^\*{4}\s*$/;
1824   do_substitute($testno);
1825   if (/^(.*)\\NONL\\\s*$/) { print CMD $1; } else { print CMD; }
1826   }
1827
1828 # For timeout tests, wait before closing the pipe; we expect a
1829 # SIGPIPE error in this case.
1830
1831 if ($wait_time > 0)
1832   {
1833   printf("  Test %d sleep $wait_time ", $$subtestref);
1834   while ($wait_time-- > 0)
1835     {
1836     print ".";
1837     sleep(1);
1838     }
1839   printf("\r  Test %d                                       $cr", $$subtestref);
1840   }
1841
1842 $sigpipehappened = 0;
1843 close CMD;                # Waits for command to finish
1844 return $yield;            # Ran command and waited
1845 }
1846
1847
1848
1849
1850 ###############################################################################
1851 ###############################################################################
1852
1853 # Here beginneth the Main Program ...
1854
1855 ###############################################################################
1856 ###############################################################################
1857
1858
1859 autoflush STDOUT 1;
1860 print "Exim tester $testversion\n";
1861
1862
1863 ##################################################
1864 #       Check for the "less" command             #
1865 ##################################################
1866
1867 $more = "more" if system("which less >/dev/null 2>&1") != 0;
1868
1869
1870
1871 ##################################################
1872 #        Check for sudo access to root           #
1873 ##################################################
1874
1875 print "You need to have sudo access to root to run these tests. Checking ...\n";
1876 if (system("sudo date >/dev/null") != 0)
1877   {
1878   die "** Test for sudo failed: testing abandoned.\n";
1879   }
1880 else
1881   {
1882   print "Test for sudo OK\n";
1883   }
1884
1885
1886
1887 ##################################################
1888 #      See if an Exim binary has been given      #
1889 ##################################################
1890
1891 # If the first character of the first argument is '/', the argument is taken
1892 # as the path to the binary.
1893
1894 $parm_exim = (@ARGV > 0 && $ARGV[0] =~ ?^/?)? shift @ARGV : "";
1895 print "Exim binary is $parm_exim\n" if $parm_exim ne "";
1896
1897
1898
1899 ##################################################
1900 # Sort out options and which tests are to be run #
1901 ##################################################
1902
1903 # There are a few possible options for the test script itself; after these, any
1904 # options are passed on to Exim calls within the tests. Typically, this is used
1905 # to turn on Exim debugging while setting up a test.
1906
1907 while (@ARGV > 0 && $ARGV[0] =~ /^-/)
1908   {
1909   my($arg) = shift @ARGV;
1910   if ($optargs eq "")
1911     {
1912     if ($arg eq "-DEBUG")  { $debug = 1; $cr = "\n"; next; }
1913     if ($arg eq "-DIFF")   { $cf = "diff -u"; next; }
1914     if ($arg eq "-UPDATE") { $force_update = 1; next; }
1915     if ($arg eq "-NOIPV4") { $have_ipv4 = 0; next; }
1916     if ($arg eq "-NOIPV6") { $have_ipv6 = 0; next; }
1917     if ($arg eq "-KEEP")   { $save_output = 1; next; }
1918     }
1919   $optargs .= " $arg";
1920   }
1921
1922 # Any subsequent arguments are a range of test numbers.
1923
1924 if (@ARGV > 0)
1925   {
1926   $test_end = $test_start = $ARGV[0];
1927   $test_end = $ARGV[1] if (@ARGV > 1);
1928   $test_end = ($test_start >= 9000)? $test_special_top : $test_top
1929     if $test_end eq "+";
1930   die "** Test numbers out of order\n" if ($test_end < $test_start);
1931   }
1932
1933
1934 ##################################################
1935 #      Make the command's directory current      #
1936 ##################################################
1937
1938 # After doing so, we find its absolute path name.
1939
1940 $cwd = $0;
1941 $cwd = '.' if ($cwd !~ s|/[^/]+$||);
1942 chdir($cwd) || die "** Failed to chdir to \"$cwd\": $!\n";
1943 $parm_cwd = Cwd::getcwd();
1944
1945
1946 ##################################################
1947 #     Search for an Exim binary to test          #
1948 ##################################################
1949
1950 # If an Exim binary hasn't been provided, try to find one. We can handle the
1951 # case where exim-testsuite is installed alongside Exim source directories. For
1952 # PH's private convenience, if there's a directory just called "exim4", that
1953 # takes precedence; otherwise exim-snapshot takes precedence over any numbered
1954 # releases.
1955
1956 if ($parm_exim eq "")
1957   {
1958   my($use_srcdir) = "";
1959
1960   opendir DIR, ".." || die "** Failed to opendir \"..\": $!\n";
1961   while ($f = readdir(DIR))
1962     {
1963     my($srcdir);
1964
1965     # Try this directory if it is "exim4" or if it is exim-snapshot or exim-n.m
1966     # possibly followed by -RCx where n.m is greater than any previously tried
1967     # directory. Thus, we should choose the highest version of Exim that has
1968     # been compiled.
1969
1970     if ($f eq "exim4" || $f eq "exim-snapshot")
1971       { $srcdir = $f; }
1972     else
1973       { $srcdir = $f
1974         if ($f =~ /^exim-\d+\.\d+(-RC\d+)?$/ && $f gt $use_srcdir); }
1975
1976     # Look for a build directory with a binary in it. If we find a binary,
1977     # accept this source directory.
1978
1979     if ($srcdir)
1980       {
1981       opendir SRCDIR, "../$srcdir" ||
1982         die "** Failed to opendir \"$cwd/../$srcdir\": $!\n";
1983       while ($f = readdir(SRCDIR))
1984         {
1985         if ($f =~ /^build-/ && -e "../$srcdir/$f/exim")
1986           {
1987           $use_srcdir = $srcdir;
1988           $parm_exim = "$cwd/../$srcdir/$f/exim";
1989           $parm_exim =~ s'/[^/]+/\.\./'/';
1990           last;
1991           }
1992         }
1993       closedir(SRCDIR);
1994       }
1995
1996     # If we have found "exim4" or "exim-snapshot", that takes precedence.
1997     # Otherwise, continue to see if there's a later version.
1998
1999     last if $use_srcdir eq "exim4" || $use_srcdir eq "exim-snapshot";
2000     }
2001   closedir(DIR);
2002   print "Exim binary found in $parm_exim\n" if $parm_exim ne "";
2003   }
2004
2005 # If $parm_exim is still empty, ask the caller
2006
2007 if ($parm_exim eq "")
2008   {
2009   print "** Did not find an Exim binary to test\n";
2010   for ($i = 0; $i < 5; $i++)
2011     {
2012     my($trybin);
2013     print "** Enter pathname for Exim binary: ";
2014     chomp($trybin = <STDIN>);
2015     if (-e $trybin)
2016       {
2017       $parm_exim = $trybin;
2018       last;
2019       }
2020     else
2021       {
2022       print "** $trybin does not exist\n";
2023       }
2024     }
2025   die "** Too many tries\n" if $parm_exim eq "";
2026   }
2027
2028
2029
2030 ##################################################
2031 #          Find what is in the binary            #
2032 ##################################################
2033
2034 open(EXIMINFO, "$parm_exim -C $parm_cwd/confs/0000 -DDIR=$parm_cwd " .
2035                "-bP exim_user exim_group|") ||
2036   die "** Cannot run $parm_exim: $!\n";
2037 while(<EXIMINFO>)
2038   {
2039   $parm_eximuser = $1 if /^exim_user = (.*)$/;
2040   $parm_eximgroup = $1 if /^exim_group = (.*)$/;
2041   }
2042 close(EXIMINFO);
2043
2044 if (defined $parm_eximuser)
2045   {
2046   if ($parm_eximuser =~ /^\d+$/) { $parm_exim_uid = $parm_eximuser; }
2047     else { $parm_exim_uid = getpwnam($parm_eximuser); }
2048   }
2049
2050 if (defined $parm_eximgroup)
2051   {
2052   if ($parm_eximgroup =~ /^\d+$/) { $parm_exim_gid = $parm_eximgroup; }
2053     else { $parm_exim_gid = getgrnam($parm_eximgroup); }
2054   }
2055
2056 open(EXIMINFO, "$parm_exim -bV -C $parm_cwd/confs/0000 -DDIR=$parm_cwd |") ||
2057   die "** Cannot run $parm_exim: $!\n";
2058
2059 print "-" x 78, "\n";
2060
2061 while (<EXIMINFO>)
2062   {
2063   my(@temp);
2064
2065   if (/^Exim version/) { print; }
2066
2067   elsif (/^Size of off_t: (\d+)/)
2068     {
2069     print;
2070     $have_largefiles = 1 if $1 > 4;
2071     die "** Size of off_t > 32 which seems improbable, not running tests\n"
2072         if ($1 > 32);
2073     }
2074
2075   elsif (/^Support for: (.*)/)
2076     {
2077     print;
2078     @temp = split /(\s+)/, $1;
2079     push(@temp, ' ');
2080     %parm_support = @temp;
2081     }
2082
2083   elsif (/^Lookups \(built-in\): (.*)/)
2084     {
2085     print;
2086     @temp = split /(\s+)/, $1;
2087     push(@temp, ' ');
2088     %parm_lookups = @temp;
2089     }
2090
2091   elsif (/^Authenticators: (.*)/)
2092     {
2093     print;
2094     @temp = split /(\s+)/, $1;
2095     push(@temp, ' ');
2096     %parm_authenticators = @temp;
2097     }
2098
2099   elsif (/^Routers: (.*)/)
2100     {
2101     print;
2102     @temp = split /(\s+)/, $1;
2103     push(@temp, ' ');
2104     %parm_routers = @temp;
2105     }
2106
2107   # Some transports have options, e.g. appendfile/maildir. For those, ensure
2108   # that the basic transport name is set, and then the name with each of the
2109   # options.
2110
2111   elsif (/^Transports: (.*)/)
2112     {
2113     print;
2114     @temp = split /(\s+)/, $1;
2115     my($i,$k);
2116     push(@temp, ' ');
2117     %parm_transports = @temp;
2118     foreach $k (keys %parm_transports)
2119       {
2120       if ($k =~ "/")
2121         {
2122         @temp = split /\//, $k;
2123         $parm_transports{"$temp[0]"} = " ";
2124         for ($i = 1; $i < @temp; $i++)
2125           { $parm_transports{"$temp[0]/$temp[$i]"} = " "; }
2126         }
2127       }
2128     }
2129   }
2130 close(EXIMINFO);
2131 print "-" x 78, "\n";
2132
2133
2134 ##################################################
2135 #    Check for SpamAssassin and ClamAV           #
2136 ##################################################
2137
2138 # These are crude tests. If they aren't good enough, we'll have to improve
2139 # them, for example by actually passing a message through spamc or clamscan.
2140
2141 if (defined $parm_support{'Content_Scanning'})
2142   {
2143   if (system("spamc -h 2>/dev/null >/dev/null") == 0)
2144     {
2145     print "The spamc command works:\n";
2146
2147     # This test for an active SpamAssassin is courtesy of John Jetmore.
2148     # The tests are hard coded to localhost:783, so no point in making
2149     # this test flexible like the clamav test until the test scripts are
2150     # changed.  spamd doesn't have the nice PING/PONG protoccol that
2151     # clamd does, but it does respond to errors in an informative manner,
2152     # so use that.
2153
2154     my($sint,$sport) = ('127.0.0.1',783);
2155     eval
2156       {
2157       my $sin = sockaddr_in($sport, inet_aton($sint))
2158           or die "** Failed packing $sint:$sport\n";
2159       socket(SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp'))
2160           or die "** Unable to open socket $sint:$sport\n";
2161
2162       local $SIG{ALRM} =
2163           sub { die "** Timeout while connecting to socket $sint:$sport\n"; };
2164       alarm(5);
2165       connect(SOCK, $sin)
2166           or die "** Unable to connect to socket $sint:$sport\n";
2167       alarm(0);
2168
2169       select((select(SOCK), $| = 1)[0]);
2170       print SOCK "bad command\r\n";
2171
2172       $SIG{ALRM} =
2173           sub { die "** Timeout while reading from socket $sint:$sport\n"; };
2174       alarm(10);
2175       my $res = <SOCK>;
2176       alarm(0);
2177
2178       $res =~ m|^SPAMD/|
2179           or die "** Did not get SPAMD from socket $sint:$sport. "
2180                 ."It said: $res\n";
2181       };
2182     alarm(0);
2183     if($@)
2184       {
2185       print "  $@";
2186       print "  Assume SpamAssassin (spamd) is not running\n";
2187       }
2188     else
2189       {
2190       $parm_running{'SpamAssassin'} = ' ';
2191       print "  SpamAssassin (spamd) seems to be running\n";
2192       }
2193     }
2194   else
2195     {
2196     print "The spamc command failed: assume SpamAssassin (spamd) is not running\n";
2197     }
2198
2199   # For ClamAV, we need to find the clamd socket for use in the Exim
2200   # configuration. Search for the clamd configuration file.
2201
2202   if (system("clamscan -h 2>/dev/null >/dev/null") == 0)
2203     {
2204     my($f, $clamconf, $test_prefix);
2205
2206     print "The clamscan command works";
2207
2208     $test_prefix = $ENV{EXIM_TEST_PREFIX};
2209     $test_prefix = "" if !defined $test_prefix;
2210
2211     foreach $f ("$test_prefix/etc/clamd.conf",
2212                 "$test_prefix/usr/local/etc/clamd.conf",
2213                 "$test_prefix/etc/clamav/clamd.conf", "")
2214       {
2215       if (-e $f)
2216         {
2217         $clamconf = $f;
2218         last;
2219         }
2220       }
2221
2222     # Read the ClamAV configuration file and find the socket interface.
2223
2224     if ($clamconf ne "")
2225       {
2226       my $socket_domain;
2227       open(IN, "$clamconf") || die "\n** Unable to open $clamconf: $!\n";
2228       while (<IN>)
2229         {
2230         if (/^LocalSocket\s+(.*)/)
2231           {
2232           $parm_clamsocket = $1;
2233           $socket_domain = AF_UNIX;
2234           last;
2235           }
2236         if (/^TCPSocket\s+(\d+)/)
2237           {
2238           if (defined $parm_clamsocket)
2239             {
2240             $parm_clamsocket .= " $1";
2241             $socket_domain = AF_INET;
2242             last;
2243             }
2244           else
2245             {
2246             $parm_clamsocket = " $1";
2247             }
2248           }
2249         elsif (/^TCPAddr\s+(\S+)/)
2250           {
2251           if (defined $parm_clamsocket)
2252             {
2253             $parm_clamsocket = $1 . $parm_clamsocket;
2254             $socket_domain = AF_INET;
2255             last;
2256             }
2257           else
2258             {
2259             $parm_clamsocket = $1;
2260             }
2261           }
2262         }
2263       close(IN);
2264
2265       if (defined $socket_domain)
2266         {
2267         print ":\n  The clamd socket is $parm_clamsocket\n";
2268         # This test for an active ClamAV is courtesy of Daniel Tiefnig.
2269         eval
2270           {
2271           my $socket;
2272           if ($socket_domain == AF_UNIX)
2273             {
2274             $socket = sockaddr_un($parm_clamsocket) or die "** Failed packing '$parm_clamsocket'\n";
2275             }
2276           elsif ($socket_domain == AF_INET)
2277             {
2278             my ($ca_host, $ca_port) = split(/\s+/,$parm_clamsocket);
2279             my $ca_hostent = gethostbyname($ca_host) or die "** Failed to get raw address for host '$ca_host'\n";
2280             $socket = sockaddr_in($ca_port, $ca_hostent) or die "** Failed packing '$parm_clamsocket'\n";
2281             }
2282           else
2283             {
2284             die "** Unknown socket domain '$socket_domain' (should not happen)\n";
2285             }
2286           socket(SOCK, $socket_domain, SOCK_STREAM, 0) or die "** Unable to open socket '$parm_clamsocket'\n";
2287           local $SIG{ALRM} = sub { die "** Timeout while connecting to socket '$parm_clamsocket'\n"; };
2288           alarm(5);
2289           connect(SOCK, $socket) or die "** Unable to connect to socket '$parm_clamsocket'\n";
2290           alarm(0);
2291
2292           my $ofh = select SOCK; $| = 1; select $ofh;
2293           print SOCK "PING\n";
2294
2295           $SIG{ALRM} = sub { die "** Timeout while reading from socket '$parm_clamsocket'\n"; };
2296           alarm(10);
2297           my $res = <SOCK>;
2298           alarm(0);
2299
2300           $res =~ /PONG/ or die "** Did not get PONG from socket '$parm_clamsocket'. It said: $res\n";
2301           };
2302         alarm(0);
2303
2304         if($@)
2305           {
2306           print "  $@";
2307           print "  Assume ClamAV is not running\n";
2308           }
2309         else
2310           {
2311           $parm_running{'ClamAV'} = ' ';
2312           print "  ClamAV seems to be running\n";
2313           }
2314         }
2315       else
2316         {
2317         print ", but the socket for clamd could not be determined\n";
2318         print "Assume ClamAV is not running\n";
2319         }
2320       }
2321
2322     else
2323       {
2324       print ", but I can't find a configuration for clamd\n";
2325       print "Assume ClamAV is not running\n";
2326       }
2327     }
2328   }
2329
2330
2331 ##################################################
2332 #         Test for the basic requirements        #
2333 ##################################################
2334
2335 # This test suite assumes that Exim has been built with at least the "usual"
2336 # set of routers, transports, and lookups. Ensure that this is so.
2337
2338 $missing = "";
2339
2340 $missing .= "     Lookup: lsearch\n" if (!defined $parm_lookups{'lsearch'});
2341
2342 $missing .= "     Router: accept\n" if (!defined $parm_routers{'accept'});
2343 $missing .= "     Router: dnslookup\n" if (!defined $parm_routers{'dnslookup'});
2344 $missing .= "     Router: manualroute\n" if (!defined $parm_routers{'manualroute'});
2345 $missing .= "     Router: redirect\n" if (!defined $parm_routers{'redirect'});
2346
2347 $missing .= "     Transport: appendfile\n" if (!defined $parm_transports{'appendfile'});
2348 $missing .= "     Transport: autoreply\n" if (!defined $parm_transports{'autoreply'});
2349 $missing .= "     Transport: pipe\n" if (!defined $parm_transports{'pipe'});
2350 $missing .= "     Transport: smtp\n" if (!defined $parm_transports{'smtp'});
2351
2352 if ($missing ne "")
2353   {
2354   print "\n";
2355   print "** Many features can be included or excluded from Exim binaries.\n";
2356   print "** This test suite requires that Exim is built to contain a certain\n";
2357   print "** set of basic facilities. It seems that some of these are missing\n";
2358   print "** from the binary that is under test, so the test cannot proceed.\n";
2359   print "** The missing facilities are:\n";
2360   print "$missing";
2361   die "** Test script abandoned\n";
2362   }
2363
2364
2365 ##################################################
2366 #      Check for the auxiliary programs          #
2367 ##################################################
2368
2369 # These are always required:
2370
2371 for $prog ("cf", "checkaccess", "client", "client-ssl", "client-gnutls",
2372            "fakens", "iefbr14", "server")
2373   {
2374   next if ($prog eq "client-ssl" && !defined $parm_support{'OpenSSL'});
2375   next if ($prog eq "client-gnutls" && !defined $parm_support{'GnuTLS'});
2376   if (!-e "bin/$prog")
2377     {
2378     print "\n";
2379     print "** bin/$prog does not exist. Have you run ./configure and make?\n";
2380     die "** Test script abandoned\n";
2381     }
2382   }
2383
2384 # If the "loaded" binary is missing, we cut out tests for ${dlfunc. It isn't
2385 # compiled on systems where we don't know how to. However, if Exim does not
2386 # have that functionality compiled, we needn't bother.
2387
2388 $dlfunc_deleted = 0;
2389 if (defined $parm_support{'Expand_dlfunc'} && !-e "bin/loaded")
2390   {
2391   delete $parm_support{'Expand_dlfunc'};
2392   $dlfunc_deleted = 1;
2393   }
2394
2395
2396 ##################################################
2397 #          Find environmental details            #
2398 ##################################################
2399
2400 # Find the caller of this program.
2401
2402 ($parm_caller,$pwpw,$parm_caller_uid,$parm_caller_gid,$pwquota,$pwcomm,
2403  $parm_caller_gecos, $parm_caller_home) = getpwuid($>);
2404
2405 $pwpw = $pwpw;       # Kill Perl warnings
2406 $pwquota = $pwquota;
2407 $pwcomm = $pwcomm;
2408
2409 $parm_caller_group = getgrgid($parm_caller_gid);
2410
2411 print "Program caller is $parm_caller, whose group is $parm_caller_group\n";
2412 print "Home directory is $parm_caller_home\n";
2413
2414 print "You need to be in the Exim group to run these tests. Checking ...";
2415
2416 if (`groups` =~ /\b\Q$parm_eximgroup\E\b/)
2417   {
2418   print " OK\n";
2419   }
2420 else
2421   {
2422   print "\nOh dear, you are not in the Exim group.\n";
2423   die "** Testing abandoned.\n";
2424   }
2425
2426 # Find this host's IP addresses - there may be many, of course, but we keep
2427 # one of each type (IPv4 and IPv6).
2428
2429 $parm_ipv4 = "";
2430 $parm_ipv6 = "";
2431
2432 $local_ipv4 = "";
2433 $local_ipv6 = "";
2434
2435 open(IFCONFIG, "ifconfig -a|") || die "** Cannot run \"ifconfig\": $!\n";
2436 while (($parm_ipv4 eq "" || $parm_ipv6 eq "") && ($_ = <IFCONFIG>))
2437   {
2438   my($ip);
2439   if ($parm_ipv4 eq "" &&
2440       $_ =~ /^\s*inet(?:\saddr)?:?\s?(\d+\.\d+\.\d+\.\d+)\s/i)
2441     {
2442     $ip = $1;
2443     next if ($ip eq "127.0.0.1");
2444     $parm_ipv4 = $ip;
2445     }
2446
2447   if ($parm_ipv6 eq "" &&
2448       $_ =~ /^\s*inet6(?:\saddr)?:?\s?([abcdef\d:]+)/i)
2449     {
2450     $ip = $1;
2451     next if ($ip eq "::1" || $ip =~ /^fe80/i);
2452     $parm_ipv6 = $ip;
2453     }
2454   }
2455 close(IFCONFIG);
2456
2457 # Use private IP addresses if there are no public ones.
2458
2459 $parm_ipv4 = $local_ipv4 if ($parm_ipv4 eq "");
2460 $parm_ipv6 = $local_ipv6 if ($parm_ipv6 eq "");
2461
2462 # If either type of IP address is missing, we need to set the value to
2463 # something other than empty, because that wrecks the substitutions. The value
2464 # is reflected, so use a meaningful string. Set appropriate options for the
2465 # "server" command. In practice, however, many tests assume 127.0.0.1 is
2466 # available, so things will go wrong if there is no IPv4 address. The lack
2467 # of IPV4 or IPv6 can be simulated by command options, which force $have_ipv4
2468 # and $have_ipv6 false.
2469
2470 if ($parm_ipv4 eq "")
2471   {
2472   $have_ipv4 = 0;
2473   $parm_ipv4 = "<no IPv4 address found>";
2474   $server_opts .= " -noipv4";
2475   }
2476 elsif ($have_ipv4 == 0)
2477   {
2478   $parm_ipv4 = "<IPv4 testing disabled>";
2479   $server_opts .= " -noipv4";
2480   }
2481 else
2482   {
2483   $parm_running{"IPv4"} = " ";
2484   }
2485
2486 if ($parm_ipv6 eq "")
2487   {
2488   $have_ipv6 = 0;
2489   $parm_ipv6 = "<no IPv6 address found>";
2490   $server_opts .= " -noipv6";
2491   delete($parm_support{"IPv6"});
2492   }
2493 elsif ($have_ipv6 == 0)
2494   {
2495   $parm_ipv6 = "<IPv6 testing disabled>";
2496   $server_opts .= " -noipv6";
2497   delete($parm_support{"IPv6"});
2498   }
2499 elsif (!defined $parm_support{'IPv6'})
2500   {
2501   $have_ipv6 = 0;
2502   $parm_ipv6 = "<no IPv6 support in Exim binary>";
2503   $server_opts .= " -noipv6";
2504   }
2505 else
2506   {
2507   $parm_running{"IPv6"} = " ";
2508   }
2509
2510 print "IPv4 address is $parm_ipv4\n";
2511 print "IPv6 address is $parm_ipv6\n";
2512
2513 # For munging test output, we need the reversed IP addresses.
2514
2515 $parm_ipv4r = ($parm_ipv4 !~ /^\d/)? "" :
2516   join(".", reverse(split /\./, $parm_ipv4));
2517
2518 $parm_ipv6r = $parm_ipv6;             # Appropriate if not in use
2519 if ($parm_ipv6 =~ /^[\da-f]/)
2520   {
2521   my(@comps) = split /:/, $parm_ipv6;
2522   my(@nibbles);
2523   foreach $comp (@comps)
2524     {
2525     push @nibbles, sprintf("%lx", hex($comp) >> 8);
2526     push @nibbles, sprintf("%lx", hex($comp) & 0xff);
2527     }
2528   $parm_ipv6r = join(".", reverse(@nibbles));
2529   }
2530
2531 # Find the host name, fully qualified.
2532
2533 chomp($temp = `hostname`);
2534 $parm_hostname = (gethostbyname($temp))[0];
2535 $parm_hostname = "no.host.name.found" if $parm_hostname eq "";
2536 print "Hostname is $parm_hostname\n";
2537
2538 if ($parm_hostname !~ /\./)
2539   {
2540   print "\n*** Host name is not fully qualified: this may cause problems ***\n\n";
2541   }
2542
2543 # Find the user's shell
2544
2545 $parm_shell = $ENV{'SHELL'};
2546
2547
2548 ##################################################
2549 #     Create a testing version of Exim           #
2550 ##################################################
2551
2552 # We want to be able to run Exim with a variety of configurations. Normally,
2553 # the use of -C to change configuration causes Exim to give up its root
2554 # privilege (unless the caller is exim or root). For these tests, we do not
2555 # want this to happen. Also, we want Exim to know that it is running in its
2556 # test harness.
2557
2558 # We achieve this by copying the binary and patching it as we go. The new
2559 # binary knows it is a testing copy, and it allows -C and -D without loss of
2560 # privilege. Clearly, this file is dangerous to have lying around on systems
2561 # where there are general users with login accounts. To protect against this,
2562 # we put the new binary in a special directory that is accessible only to the
2563 # caller of this script, who is known to have sudo root privilege from the test
2564 # that was done above. Furthermore, we ensure that the binary is deleted at the
2565 # end of the test. First ensure the directory exists.
2566
2567 if (-d "eximdir")
2568   { unlink "eximdir/exim"; }     # Just in case
2569 else
2570   {
2571   mkdir("eximdir", 0710) || die "** Unable to mkdir $parm_cwd/eximdir: $!\n";
2572   system("sudo chgrp $parm_eximgroup eximdir");
2573   }
2574
2575 # The construction of the patched binary must be done as root, so we use
2576 # a separate script. As well as indicating that this is a test-harness binary,
2577 # the version number is patched to "x.yz" so that its length is always the
2578 # same. Otherwise, when it appears in Received: headers, it affects the length
2579 # of the message, which breaks certain comparisons.
2580
2581 die "** Unable to make patched exim: $!\n"
2582   if (system("sudo ./patchexim $parm_exim") != 0);
2583
2584 # From this point on, exits from the program must go via the subroutine
2585 # tests_exit(), so that suitable cleaning up can be done when required.
2586 # Arrange to catch interrupting signals, to assist with this.
2587
2588 $SIG{'INT'} = \&inthandler;
2589 $SIG{'PIPE'} = \&pipehandler;
2590
2591 # For some tests, we need another copy of the binary that is setuid exim rather
2592 # than root.
2593
2594 system("sudo cp eximdir/exim eximdir/exim_exim;" .
2595        "sudo chown $parm_eximuser eximdir/exim_exim;" .
2596        "sudo chgrp $parm_eximgroup eximdir/exim_exim;" .
2597        "sudo chmod 06755 eximdir/exim_exim");
2598
2599
2600 ##################################################
2601 #     Make copies of utilities we might need     #
2602 ##################################################
2603
2604 # Certain of the tests make use of some of Exim's utilities. We do not need
2605 # to be root to copy these.
2606
2607 ($parm_exim_dir) = $parm_exim =~ ?^(.*)/exim?;
2608
2609 $dbm_build_deleted = 0;
2610 if (defined $parm_lookups{'dbm'} &&
2611     system("cp $parm_exim_dir/exim_dbmbuild eximdir") != 0)
2612   {
2613   delete $parm_lookups{'dbm'};
2614   $dbm_build_deleted = 1;
2615   }
2616
2617 if (system("cp $parm_exim_dir/exim_dumpdb eximdir") != 0)
2618   {
2619   tests_exit(-1, "Failed to make a copy of exim_dumpdb: $!");
2620   }
2621
2622 if (system("cp $parm_exim_dir/exim_lock eximdir") != 0)
2623   {
2624   tests_exit(-1, "Failed to make a copy of exim_lock: $!");
2625   }
2626
2627 if (system("cp $parm_exim_dir/exinext eximdir") != 0)
2628   {
2629   tests_exit(-1, "Failed to make a copy of exinext: $!");
2630   }
2631
2632 if (system("cp $parm_exim_dir/exigrep eximdir") != 0)
2633   {
2634   tests_exit(-1, "Failed to make a copy of exigrep: $!");
2635   }
2636
2637 if (system("cp $parm_exim_dir/eximstats eximdir") != 0)
2638   {
2639   tests_exit(-1, "Failed to make a copy of eximstats: $!");
2640   }
2641
2642
2643 ##################################################
2644 #    Check that the Exim user can access stuff   #
2645 ##################################################
2646
2647 # We delay this test till here so that we can check access to the actual test
2648 # binary. This will be needed when Exim re-exec's itself to do deliveries.
2649
2650 print "Exim user is $parm_eximuser ($parm_exim_uid)\n";
2651 print "Exim group is $parm_eximgroup ($parm_exim_gid)\n";
2652
2653 if ($parm_caller_uid eq $parm_exim_uid) {
2654   tests_exit(-1, "Exim user ($parm_eximuser,$parm_exim_uid) cannot be "
2655                 ."the same as caller ($parm_caller,$parm_caller_uid)");
2656 }
2657
2658 print "The Exim user needs access to the test suite directory. Checking ...";
2659
2660 if (($rc = system("sudo bin/checkaccess $parm_cwd/eximdir/exim $parm_eximuser $parm_eximgroup")) != 0)
2661   {
2662   my($why) = "unknown failure $rc";
2663   $rc >>= 8;
2664   $why = "Couldn't find user \"$parm_eximuser\"" if $rc == 1;
2665   $why = "Couldn't find group \"$parm_eximgroup\"" if $rc == 2;
2666   $why = "Couldn't read auxiliary group list" if $rc == 3;
2667   $why = "Couldn't get rid of auxiliary groups" if $rc == 4;
2668   $why = "Couldn't set gid" if $rc == 5;
2669   $why = "Couldn't set uid" if $rc == 6;
2670   $why = "Couldn't open \"$parm_cwd/eximdir/exim\"" if $rc == 7;
2671   print "\n** $why\n";
2672   tests_exit(-1, "$parm_eximuser cannot access the test suite directory");
2673   }
2674 else
2675   {
2676   print " OK\n";
2677   }
2678
2679
2680 ##################################################
2681 #        Create a list of available tests        #
2682 ##################################################
2683
2684 # The scripts directory contains a number of subdirectories whose names are
2685 # of the form 0000-xxxx, 1100-xxxx, 2000-xxxx, etc. Each set of tests apart
2686 # from the first requires certain optional features to be included in the Exim
2687 # binary. These requirements are contained in a file called "REQUIRES" within
2688 # the directory. We scan all these tests, discarding those that cannot be run
2689 # because the current binary does not support the right facilities, and also
2690 # those that are outside the numerical range selected.
2691
2692 print "\nTest range is $test_start to $test_end\n";
2693 print "Omitting \${dlfunc expansion tests (loadable module not present)\n"
2694   if $dlfunc_deleted;
2695 print "Omitting dbm tests (unable to copy exim_dbmbuild)\n"
2696   if $dbm_build_deleted;
2697
2698 opendir(DIR, "scripts") || tests_exit(-1, "Failed to opendir(\"scripts\"): $!");
2699 @test_dirs = sort readdir(DIR);
2700 closedir(DIR);
2701
2702 # Remove . and .. and CVS from the list.
2703
2704 for ($i = 0; $i < @test_dirs; $i++)
2705   {
2706   my($d) = $test_dirs[$i];
2707   if ($d eq "." || $d eq ".." || $d eq "CVS")
2708     {
2709     splice @test_dirs, $i, 1;
2710     $i--;
2711     }
2712   }
2713
2714 # Scan for relevant tests
2715
2716 for ($i = 0; $i < @test_dirs; $i++)
2717   {
2718   my($testdir) = $test_dirs[$i];
2719   my($wantthis) = 1;
2720
2721   print ">>Checking $testdir\n" if $debug;
2722
2723   # Skip this directory if the first test is equal or greater than the first
2724   # test in the next directory.
2725
2726   next if ($i < @test_dirs - 1) &&
2727           ($test_start >= substr($test_dirs[$i+1], 0, 4));
2728
2729   # No need to carry on if the end test is less than the first test in this
2730   # subdirectory.
2731
2732   last if $test_end < substr($testdir, 0, 4);
2733
2734   # Check requirements, if any.
2735
2736   if (open(REQUIRES, "scripts/$testdir/REQUIRES"))
2737     {
2738     while (<REQUIRES>)
2739       {
2740       next if /^\s*$/;
2741       s/\s+$//;
2742       if (/^support (.*)$/)
2743         {
2744         if (!defined $parm_support{$1}) { $wantthis = 0; last; }
2745         }
2746       elsif (/^running (.*)$/)
2747         {
2748         if (!defined $parm_running{$1}) { $wantthis = 0; last; }
2749         }
2750       elsif (/^lookup (.*)$/)
2751         {
2752         if (!defined $parm_lookups{$1}) { $wantthis = 0; last; }
2753         }
2754       elsif (/^authenticators? (.*)$/)
2755         {
2756         if (!defined $parm_authenticators{$1}) { $wantthis = 0; last; }
2757         }
2758       elsif (/^router (.*)$/)
2759         {
2760         if (!defined $parm_routers{$1}) { $wantthis = 0; last; }
2761         }
2762       elsif (/^transport (.*)$/)
2763         {
2764         if (!defined $parm_transports{$1}) { $wantthis = 0; last; }
2765         }
2766       else
2767         {
2768         tests_exit(-1, "Unknown line in \"scripts/$testdir/REQUIRES\": \"$_\"");
2769         }
2770       }
2771     close(REQUIRES);
2772     }
2773   else
2774     {
2775     tests_exit(-1, "Failed to open \"scripts/$testdir/REQUIRES\": $!")
2776       unless $!{ENOENT};
2777     }
2778
2779   # Loop if we do not want the tests in this subdirectory.
2780
2781   if (!$wantthis)
2782     {
2783     chomp;
2784     print "Omitting tests in $testdir (missing $_)\n";
2785     next;
2786     }
2787
2788   # We want the tests from this subdirectory, provided they are in the
2789   # range that was selected.
2790
2791   opendir(SUBDIR, "scripts/$testdir") ||
2792     tests_exit(-1, "Failed to opendir(\"scripts/$testdir\"): $!");
2793   @testlist = sort readdir(SUBDIR);
2794   close(SUBDIR);
2795
2796   foreach $test (@testlist)
2797     {
2798     next if $test !~ /^\d{4}$/;
2799     next if $test < $test_start || $test > $test_end;
2800     push @test_list, "$testdir/$test";
2801     }
2802   }
2803
2804 print ">>Test List: @test_list\n", if $debug;
2805
2806
2807 ##################################################
2808 #         Munge variable auxiliary data          #
2809 ##################################################
2810
2811 # Some of the auxiliary data files have to refer to the current testing
2812 # directory and other parameter data. The generic versions of these files are
2813 # stored in the aux-var-src directory. At this point, we copy each of them
2814 # to the aux-var directory, making appropriate substitutions. There aren't very
2815 # many of them, so it's easiest just to do this every time. Ensure the mode
2816 # is standardized, as this path is used as a test for the ${stat: expansion.
2817
2818 # A similar job has to be done for the files in the dnszones-src directory, to
2819 # make the fake DNS zones for testing. Most of the zone files are copied to
2820 # files of the same name, but db.ipv4.V4NET and db.ipv6.V6NET use the testing
2821 # networks that are defined by parameter.
2822
2823 foreach $basedir ("aux-var", "dnszones")
2824   {
2825   system("sudo rm -rf $parm_cwd/$basedir");
2826   mkdir("$parm_cwd/$basedir", 0777);
2827   chmod(0755, "$parm_cwd/$basedir");
2828
2829   opendir(AUX, "$parm_cwd/$basedir-src") ||
2830     tests_exit(-1, "Failed to opendir $parm_cwd/$basedir-src: $!");
2831   my(@filelist) = readdir(AUX);
2832   close(AUX);
2833
2834   foreach $file (@filelist)
2835     {
2836     my($outfile) = $file;
2837     next if $file =~ /^\./;
2838
2839     if ($file eq "db.ip4.V4NET")
2840       {
2841       $outfile = "db.ip4.$parm_ipv4_test_net";
2842       }
2843     elsif ($file eq "db.ip6.V6NET")
2844       {
2845       my(@nibbles) = reverse(split /\s*/, $parm_ipv6_test_net);
2846       $" = '.';
2847       $outfile = "db.ip6.@nibbles";
2848       $" = ' ';
2849       }
2850
2851     print ">>Copying $basedir-src/$file to $basedir/$outfile\n" if $debug;
2852     open(IN, "$parm_cwd/$basedir-src/$file") ||
2853       tests_exit(-1, "Failed to open $parm_cwd/$basedir-src/$file: $!");
2854     open(OUT, ">$parm_cwd/$basedir/$outfile") ||
2855       tests_exit(-1, "Failed to open $parm_cwd/$basedir/$outfile: $!");
2856     while (<IN>)
2857       {
2858       do_substitute(0);
2859       print OUT;
2860       }
2861     close(IN);
2862     close(OUT);
2863     }
2864   }
2865
2866
2867 ##################################################
2868 #     Create fake DNS zones for this host        #
2869 ##################################################
2870
2871 # There are fixed zone files for 127.0.0.1 and ::1, but we also want to be
2872 # sure that there are forward and reverse registrations for this host, using
2873 # its real IP addresses. Dynamically created zone files achieve this.
2874
2875 if ($have_ipv4 || $have_ipv6)
2876   {
2877   my($shortname,$domain) = $parm_hostname =~ /^([^.]+)(.*)/;
2878   open(OUT, ">$parm_cwd/dnszones/db$domain") ||
2879     tests_exit(-1, "Failed to open $parm_cwd/dnszones/db$domain: $!");
2880   print OUT "; This is a dynamically constructed fake zone file.\n" .
2881     "; The following line causes fakens to return PASS_ON\n" .
2882     "; for queries that it cannot answer\n\n" .
2883     "PASS ON NOT FOUND\n\n";
2884   print OUT "$shortname  A     $parm_ipv4\n" if $have_ipv4;
2885   print OUT "$shortname  AAAA  $parm_ipv6\n" if $have_ipv6;
2886   print OUT "\n; End\n";
2887   close(OUT);
2888   }
2889
2890 if ($have_ipv4 && $parm_ipv4 ne "127.0.0.1")
2891   {
2892   my(@components) = $parm_ipv4 =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/;
2893   open(OUT, ">$parm_cwd/dnszones/db.ip4.$components[0]") ||
2894     tests_exit(-1,
2895       "Failed  to open $parm_cwd/dnszones/db.ip4.$components[0]: $!");
2896   print OUT "; This is a dynamically constructed fake zone file.\n" .
2897     "; The zone is $components[0].in-addr.arpa.\n\n" .
2898     "$components[3].$components[2].$components[1]  PTR  $parm_hostname.\n\n" .
2899     "; End\n";
2900   close(OUT);
2901   }
2902
2903 if ($have_ipv6 && $parm_ipv6 ne "::1")
2904   {
2905   my(@components) = split /:/, $parm_ipv6;
2906   my(@nibbles) = reverse (split /\s*/, shift @components);
2907   my($sep) =  "";
2908
2909   $" = ".";
2910   open(OUT, ">$parm_cwd/dnszones/db.ip6.@nibbles") ||
2911     tests_exit(-1,
2912       "Failed  to open $parm_cwd/dnszones/db.ip6.@nibbles: $!");
2913   print OUT "; This is a dynamically constructed fake zone file.\n" .
2914     "; The zone is @nibbles.ip6.arpa.\n\n";
2915
2916   @components = reverse @components;
2917   foreach $c (@components)
2918     {
2919     $c = "0$c" until $c =~ /^..../;
2920     @nibbles = reverse(split /\s*/, $c);
2921     print OUT "$sep@nibbles";
2922     $sep = ".";
2923     }
2924
2925   print OUT "  PTR  $parm_hostname.\n\n; End\n";
2926   close(OUT);
2927   $" = " ";
2928   }
2929
2930
2931
2932 ##################################################
2933 #    Create lists of mailboxes and message logs  #
2934 ##################################################
2935
2936 # We use these lists to check that a test has created the expected files. It
2937 # should be faster than looking for the file each time. For mailboxes, we have
2938 # to scan a complete subtree, in order to handle maildirs. For msglogs, there
2939 # is just a flat list of files.
2940
2941 @oldmails = list_files_below("mail");
2942 opendir(DIR, "msglog") || tests_exit(-1, "Failed to opendir msglog: $!");
2943 @oldmsglogs = readdir(DIR);
2944 closedir(DIR);
2945
2946
2947
2948 ##################################################
2949 #         Run the required tests                 #
2950 ##################################################
2951
2952 # Each test script contains a number of tests, separated by a line that
2953 # contains ****. We open input from the terminal so that we can read responses
2954 # to prompts.
2955
2956 open(T, "/dev/tty") || tests_exit(-1, "Failed to open /dev/tty: $!");
2957
2958 print "\nPress RETURN to run the tests: ";
2959 $_ = <T>;
2960 print "\n";
2961
2962 $lasttestdir = "";
2963
2964 foreach $test (@test_list)
2965   {
2966   local($lineno) = 0;
2967   local($commandno) = 0;
2968   local($subtestno) = 0;
2969   local($testno) = substr($test, -4);
2970   local($sortlog) = 0;
2971
2972   my($gnutls) = 0;
2973   my($docheck) = 1;
2974   my($thistestdir) = substr($test, 0, -5);
2975
2976   if ($lasttestdir ne $thistestdir)
2977     {
2978     $gnutls = 0;
2979     if (-s "scripts/$thistestdir/REQUIRES")
2980       {
2981       my($indent) = "";
2982       print "\n>>> The following tests require: ";
2983       open(IN, "scripts/$thistestdir/REQUIRES") ||
2984         tests_exit(-1, "Failed to open scripts/$thistestdir/REQUIRES: $1");
2985       while (<IN>)
2986         {
2987         $gnutls = 1 if /^support GnuTLS/;
2988         print $indent, $_;
2989         $indent = ">>>                              ";
2990         }
2991       close(IN);
2992       }
2993     }
2994   $lasttestdir = $thistestdir;
2995
2996   # Remove any debris in the spool directory and the test-mail directory
2997   # and also the files for collecting stdout and stderr. Then put back
2998   # the test-mail directory for appendfile deliveries.
2999
3000   system "sudo /bin/rm -rf spool test-*";
3001   system "mkdir test-mail 2>/dev/null";
3002
3003   # A privileged Exim will normally make its own spool directory, but some of
3004   # the tests run in unprivileged modes that don't always work if the spool
3005   # directory isn't already there. What is more, we want anybody to be able
3006   # to read it in order to find the daemon's pid.
3007
3008   system "mkdir spool; " .
3009          "sudo chown $parm_eximuser:$parm_eximgroup spool; " .
3010          "sudo chmod 0755 spool";
3011
3012   # Empty the cache that keeps track of things like message id mappings, and
3013   # set up the initial sequence strings.
3014
3015   undef %cache;
3016   $next_msgid = "aX";
3017   $next_pid = 1234;
3018   $next_port = 1111;
3019   $message_skip = 0;
3020   $msglog_skip = 0;
3021   $stderr_skip = 0;
3022   $stdout_skip = 0;
3023   $rmfiltertest = 0;
3024   $is_ipv6test = 0;
3025
3026   # Remove the associative arrays used to hold checked mail files and msglogs
3027
3028   undef %expected_mails;
3029   undef %expected_msglogs;
3030
3031   # Open the test's script
3032
3033   open(SCRIPT, "scripts/$test") ||
3034     tests_exit(-1, "Failed to open \"scripts/$test\": $!");
3035
3036   # The first line in the script must be a comment that is used to identify
3037   # the set of tests as a whole.
3038
3039   $_ = <SCRIPT>;
3040   $lineno++;
3041   tests_exit(-1, "Missing identifying comment at start of $test") if (!/^#/);
3042   printf("%s %s", (substr $test, 5), (substr $_, 2));
3043
3044   # Loop for each of the subtests within the script. The variable $server_pid
3045   # is used to remember the pid of a "server" process, for which we do not
3046   # wait until we have waited for a subsequent command.
3047
3048   local($server_pid) = 0;
3049   for ($commandno = 1; !eof SCRIPT; $commandno++)
3050     {
3051     # Skip further leading comments and blank lines, handle the flag setting
3052     # commands, and deal with tests for IP support.
3053
3054     while (<SCRIPT>)
3055       {
3056       $lineno++;
3057       if (/^no_message_check/) { $message_skip = 1; next; }
3058       if (/^no_msglog_check/)  { $msglog_skip = 1; next; }
3059       if (/^no_stderr_check/)  { $stderr_skip = 1; next; }
3060       if (/^no_stdout_check/)  { $stdout_skip = 1; next; }
3061       if (/^rmfiltertest/)     { $rmfiltertest = 1; next; }
3062       if (/^sortlog/)          { $sortlog = 1; next; }
3063
3064       if (/^need_largefiles/)
3065         {
3066         next if $have_largefiles;
3067         print ">>> Large file support is needed for test $testno, but is not available: skipping\n";
3068         $docheck = 0;      # don't check output
3069         undef $_;          # pretend EOF
3070         last;
3071         }
3072
3073       if (/^need_ipv4/)
3074         {
3075         next if $have_ipv4;
3076         print ">>> IPv4 is needed for test $testno, but is not available: skipping\n";
3077         $docheck = 0;      # don't check output
3078         undef $_;          # pretend EOF
3079         last;
3080         }
3081
3082       if (/^need_ipv6/)
3083         {
3084         if ($have_ipv6)
3085           {
3086           $is_ipv6test = 1;
3087           next;
3088           }
3089         print ">>> IPv6 is needed for test $testno, but is not available: skipping\n";
3090         $docheck = 0;      # don't check output
3091         undef $_;          # pretend EOF
3092         last;
3093         }
3094
3095       if (/^need_move_frozen_messages/)
3096         {
3097         next if defined $parm_support{"move_frozen_messages"};
3098         print ">>> move frozen message support is needed for test $testno, " .
3099           "but is not\n>>> available: skipping\n";
3100         $docheck = 0;      # don't check output
3101         undef $_;          # pretend EOF
3102         last;
3103         }
3104
3105       last unless /^(#|\s*$)/;
3106       }
3107     last if !defined $_;  # Hit EOF
3108
3109     my($subtest_startline) = $lineno;
3110
3111     # Now run the command. The function returns 0 if exim was run and waited
3112     # for, 1 if any other command was run and waited for, and 2 if a command
3113     # was run and not waited for (usually a daemon or server startup).
3114
3115     my($commandname) = "";
3116     my($expectrc) = 0;
3117     my($rc) = run_command($testno, \$subtestno, \$expectrc, \$commandname);
3118     my($cmdrc) = $?;
3119
3120     print ">> rc=$rc cmdrc=$cmdrc\n" if $debug;
3121
3122     # Hit EOF after an initial return code number
3123
3124     tests_exit(-1, "Unexpected EOF in script") if ($rc == 4);
3125
3126     # Carry on with the next command if we did not wait for this one. $rc == 0
3127     # if no subprocess was run; $rc == 3 if we started a process but did not
3128     # wait for it.
3129
3130     next if ($rc == 0 || $rc == 3);
3131
3132     # We ran and waited for a command. Check for the expected result unless
3133     # it died.
3134
3135     if ($cmdrc != $expectrc && !$sigpipehappened)
3136       {
3137       printf("** Command $commandno (\"$commandname\", starting at line $subtest_startline)\n");
3138       if (($cmdrc & 0xff) == 0)
3139         {
3140         printf("** Return code %d (expected %d)", $cmdrc/256, $expectrc/256);
3141         }
3142       elsif (($cmdrc & 0xff00) == 0)
3143         { printf("** Killed by signal %d", $cmdrc & 255); }
3144       else
3145         { printf("** Status %x", $cmdrc); }
3146
3147       for (;;)
3148         {
3149         print "\nshow stdErr, show stdOut, Continue (without file comparison), or Quit? [Q] ";
3150         $_ = <T>;
3151         tests_exit(1) if /^q?$/i;
3152         last if /^c$/i;
3153         if (/^e$/i)
3154           {
3155           system("$more test-stderr");
3156           }
3157         elsif (/^o$/i)
3158           {
3159           system("$more test-stdout");
3160           }
3161         }
3162
3163       $docheck = 0;
3164       }
3165
3166     # If the command was exim, and a listening server is running, we can now
3167     # close its input, which causes us to wait for it to finish, which is why
3168     # we didn't close it earlier.
3169
3170     if ($rc == 2 && $server_pid != 0)
3171       {
3172       close SERVERCMD;
3173       $server_pid = 0;
3174       if ($? != 0)
3175         {
3176         if (($? & 0xff) == 0)
3177           { printf("Server return code %d", $?/256); }
3178         elsif (($? & 0xff00) == 0)
3179           { printf("Server killed by signal %d", $? & 255); }
3180         else
3181           { printf("Server status %x", $?); }
3182
3183         for (;;)
3184           {
3185           print "\nShow server stdout, Continue, or Quit? [Q] ";
3186           $_ = <T>;
3187           tests_exit(1) if /^q?$/i;
3188           last if /^c$/i;
3189
3190           if (/^s$/i)
3191             {
3192             open(S, "test-stdout-server") ||
3193               tests_exit(-1, "Failed to open test-stdout-server: $!");
3194             print while <S>;
3195             close(S);
3196             }
3197           }
3198         }
3199       }
3200     }
3201
3202   close SCRIPT;
3203
3204   # The script has finished. Check the all the output that was generated. The
3205   # function returns 0 if all is well, 1 if we should rerun the test (the files
3206   # have been updated). It does not return if the user responds Q to a prompt.
3207
3208   if ($docheck)
3209     {
3210     if (check_output() != 0)
3211       {
3212       print (("#" x 79) . "\n");
3213       redo;
3214       }
3215     else
3216       {
3217       print ("  Script completed\n");
3218       }
3219     }
3220   }
3221
3222
3223 ##################################################
3224 #         Exit from the test script              #
3225 ##################################################
3226
3227 tests_exit(-1, "No runnable tests selected") if @test_list == 0;
3228 tests_exit(0);
3229
3230 # End of runtest script
3231