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