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