PageRenderTime 98ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/test/runtest

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