runtests: Don't log command every torture iteration in verbose
[platform/upstream/curl.git] / tests / runtests.pl
1 #!/usr/bin/env perl
2 #***************************************************************************
3 #                                  _   _ ____  _
4 #  Project                     ___| | | |  _ \| |
5 #                             / __| | | | |_) | |
6 #                            | (__| |_| |  _ <| |___
7 #                             \___|\___/|_| \_\_____|
8 #
9 # Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
10 #
11 # This software is licensed as described in the file COPYING, which
12 # you should have received as part of this distribution. The terms
13 # are also available at http://curl.haxx.se/docs/copyright.html.
14 #
15 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
16 # copies of the Software, and permit persons to whom the Software is
17 # furnished to do so, under the terms of the COPYING file.
18 #
19 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 # KIND, either express or implied.
21 #
22 ###########################################################################
23
24 # Experimental hooks are available to run tests remotely on machines that
25 # are able to run curl but are unable to run the test harness.
26 # The following sections need to be modified:
27 #
28 #  $HOSTIP, $HOST6IP - Set to the address of the host running the test suite
29 #  $CLIENTIP, $CLIENT6IP - Set to the address of the host running curl
30 #  runclient, runclientoutput - Modify to copy all the files in the log/
31 #    directory to the system running curl, run the given command remotely
32 #    and save the return code or returned stdout (respectively), then
33 #    copy all the files from the remote system's log/ directory back to
34 #    the host running the test suite.  This can be done a few ways, such
35 #    as using scp & ssh, rsync & telnet, or using a NFS shared directory
36 #    and ssh.
37 #
38 # 'make && make test' needs to be done on both machines before making the
39 # above changes and running runtests.pl manually.  In the shared NFS case,
40 # the contents of the tests/server/ directory must be from the host
41 # running the test suite, while the rest must be from the host running curl.
42 #
43 # Note that even with these changes a number of tests will still fail (mainly
44 # to do with cookies, those that set environment variables, or those that
45 # do more than touch the file system in a <precheck> or <postcheck>
46 # section). These can be added to the $TESTCASES line below,
47 # e.g. $TESTCASES="!8 !31 !63 !cookies..."
48 #
49 # Finally, to properly support -g and -n, checktestcmd needs to change
50 # to check the remote system's PATH, and the places in the code where
51 # the curl binary is read directly to determine its type also need to be
52 # fixed. As long as the -g option is never given, and the -n is always
53 # given, this won't be a problem.
54
55
56 # These should be the only variables that might be needed to get edited:
57
58 BEGIN {
59     push(@INC, $ENV{'srcdir'}) if(defined $ENV{'srcdir'});
60     push(@INC, ".");
61     # run time statistics needs Time::HiRes
62     eval {
63         no warnings "all";
64         require Time::HiRes;
65         import  Time::HiRes qw( time );
66     }
67 }
68
69 use strict;
70 use warnings;
71 use Cwd;
72
73 # Subs imported from serverhelp module
74 use serverhelp qw(
75     serverfactors
76     servername_id
77     servername_str
78     servername_canon
79     server_pidfilename
80     server_logfilename
81     );
82
83 # Variables and subs imported from sshhelp module
84 use sshhelp qw(
85     $sshdexe
86     $sshexe
87     $sftpexe
88     $sshconfig
89     $sftpconfig
90     $sshdlog
91     $sshlog
92     $sftplog
93     $sftpcmds
94     display_sshdconfig
95     display_sshconfig
96     display_sftpconfig
97     display_sshdlog
98     display_sshlog
99     display_sftplog
100     exe_ext
101     find_sshd
102     find_ssh
103     find_sftp
104     find_httptlssrv
105     sshversioninfo
106     );
107
108 require "getpart.pm"; # array functions
109 require "valgrind.pm"; # valgrind report parser
110 require "ftp.pm";
111
112 my $HOSTIP="127.0.0.1";   # address on which the test server listens
113 my $HOST6IP="[::1]";      # address on which the test server listens
114 my $CLIENTIP="127.0.0.1"; # address which curl uses for incoming connections
115 my $CLIENT6IP="[::1]";    # address which curl uses for incoming connections
116
117 my $base = 8990; # base port number
118
119 my $HTTPPORT;            # HTTP server port
120 my $HTTP6PORT;           # HTTP IPv6 server port
121 my $HTTPSPORT;           # HTTPS (stunnel) server port
122 my $FTPPORT;             # FTP server port
123 my $FTP2PORT;            # FTP server 2 port
124 my $FTPSPORT;            # FTPS (stunnel) server port
125 my $FTP6PORT;            # FTP IPv6 server port
126 my $TFTPPORT;            # TFTP
127 my $TFTP6PORT;           # TFTP
128 my $SSHPORT;             # SCP/SFTP
129 my $SOCKSPORT;           # SOCKS4/5 port
130 my $POP3PORT;            # POP3
131 my $POP36PORT;           # POP3 IPv6 server port
132 my $IMAPPORT;            # IMAP
133 my $IMAP6PORT;           # IMAP IPv6 server port
134 my $SMTPPORT;            # SMTP
135 my $SMTP6PORT;           # SMTP IPv6 server port
136 my $RTSPPORT;            # RTSP
137 my $RTSP6PORT;           # RTSP IPv6 server port
138 my $GOPHERPORT;          # Gopher
139 my $GOPHER6PORT;         # Gopher IPv6 server port
140 my $HTTPTLSPORT;         # HTTP TLS (non-stunnel) server port
141 my $HTTPTLS6PORT;        # HTTP TLS (non-stunnel) IPv6 server port
142 my $HTTPPROXYPORT;       # HTTP proxy port, when using CONNECT
143 my $HTTPPIPEPORT;        # HTTP pipelining port
144
145 my $srcdir = $ENV{'srcdir'} || '.';
146 my $CURL="../src/curl".exe_ext(); # what curl executable to run on the tests
147 my $VCURL=$CURL;   # what curl binary to use to verify the servers with
148                    # VCURL is handy to set to the system one when the one you
149                    # just built hangs or crashes and thus prevent verification
150 my $DBGCURL=$CURL; #"../src/.libs/curl";  # alternative for debugging
151 my $LOGDIR="log";
152 my $TESTDIR="$srcdir/data";
153 my $LIBDIR="./libtest";
154 my $UNITDIR="./unit";
155 # TODO: change this to use server_inputfilename()
156 my $SERVERIN="$LOGDIR/server.input"; # what curl sent the server
157 my $SERVER2IN="$LOGDIR/server2.input"; # what curl sent the second server
158 my $PROXYIN="$LOGDIR/proxy.input"; # what curl sent the proxy
159 my $CURLLOG="$LOGDIR/curl.log"; # all command lines run
160 my $FTPDCMD="$LOGDIR/ftpserver.cmd"; # copy ftp server instructions here
161 my $SERVERLOGS_LOCK="$LOGDIR/serverlogs.lock"; # server logs advisor read lock
162 my $CURLCONFIG="../curl-config"; # curl-config from current build
163
164 # Normally, all test cases should be run, but at times it is handy to
165 # simply run a particular one:
166 my $TESTCASES="all";
167
168 # To run specific test cases, set them like:
169 # $TESTCASES="1 2 3 7 8";
170
171 #######################################################################
172 # No variables below this point should need to be modified
173 #
174
175 # invoke perl like this:
176 my $perl="perl -I$srcdir";
177 my $server_response_maxtime=13;
178
179 my $debug_build=0;          # built debug enabled (--enable-debug)
180 my $has_memory_tracking=0;  # built with memory tracking (--enable-curldebug)
181 my $libtool;
182
183 # name of the file that the memory debugging creates:
184 my $memdump="$LOGDIR/memdump";
185
186 # the path to the script that analyzes the memory debug output file:
187 my $memanalyze="$perl $srcdir/memanalyze.pl";
188
189 my $pwd = getcwd();          # current working directory
190
191 my $start;
192 my $ftpchecktime=1; # time it took to verify our test FTP server
193
194 my $stunnel = checkcmd("stunnel4") || checkcmd("tstunnel") || checkcmd("stunnel");
195 my $valgrind = checktestcmd("valgrind");
196 my $valgrind_logfile="--logfile";
197 my $valgrind_tool;
198 my $gdb = checktestcmd("gdb");
199 my $httptlssrv = find_httptlssrv();
200
201 my $ssl_version; # set if libcurl is built with SSL support
202 my $large_file;  # set if libcurl is built with large file support
203 my $has_idn;     # set if libcurl is built with IDN support
204 my $http_ipv6;   # set if HTTP server has IPv6 support
205 my $ftp_ipv6;    # set if FTP server has IPv6 support
206 my $tftp_ipv6;   # set if TFTP server has IPv6 support
207 my $gopher_ipv6; # set if Gopher server has IPv6 support
208 my $has_ipv6;    # set if libcurl is built with IPv6 support
209 my $has_libz;    # set if libcurl is built with libz support
210 my $has_getrlimit;  # set if system has getrlimit()
211 my $has_ntlm;    # set if libcurl is built with NTLM support
212 my $has_ntlm_wb; # set if libcurl is built with NTLM delegation to winbind
213 my $has_sspi;    # set if libcurl is built with SSPI support
214 my $has_charconv;# set if libcurl is built with CharConv support
215 my $has_tls_srp; # set if libcurl is built with TLS-SRP support
216 my $has_metalink;# set if curl is built with Metalink support
217
218 my $has_openssl;  # built with a lib using an OpenSSL-like API
219 my $has_gnutls;   # built with GnuTLS
220 my $has_nss;      # built with NSS
221 my $has_yassl;    # built with yassl
222 my $has_polarssl; # built with polarssl
223 my $has_axtls;    # built with axTLS
224 my $has_winssl;   # built with WinSSL    (Secure Channel aka Schannel)
225 my $has_darwinssl;# build with DarwinSSL (Secure Transport)
226
227 my $has_shared = "unknown";  # built shared
228
229 my $resolver;     # string to hold the resolver backend
230 my $has_cares;    # if built with c-ares
231 my $has_threadedres; # if built with threaded resolver
232
233 my $ssllib;      # name of the lib we use (for human presentation)
234 my $has_crypto;  # set if libcurl is built with cryptographic support
235 my $has_textaware; # set if running on a system that has a text mode concept
236   # on files. Windows for example
237
238 my @protocols;   # array of lowercase supported protocol servers
239
240 my $skipped=0;  # number of tests skipped; reported in main loop
241 my %skipped;    # skipped{reason}=counter, reasons for skip
242 my @teststat;   # teststat[testnum]=reason, reasons for skip
243 my %disabled_keywords;  # key words of tests to skip
244 my %enabled_keywords;   # key words of tests to run
245 my %disabled;           # disabled test cases
246
247 my $sshdid;      # for socks server, ssh daemon version id
248 my $sshdvernum;  # for socks server, ssh daemon version number
249 my $sshdverstr;  # for socks server, ssh daemon version string
250 my $sshderror;   # for socks server, ssh daemon version error
251
252 my $defserverlogslocktimeout = 20; # timeout to await server logs lock removal
253 my $defpostcommanddelay = 0; # delay between command and postcheck sections
254
255 my $timestats;   # time stamping and stats generation
256 my $fullstats;   # show time stats for every single test
257 my %timeprepini; # timestamp for each test preparation start
258 my %timesrvrini; # timestamp for each test required servers verification start
259 my %timesrvrend; # timestamp for each test required servers verification end
260 my %timetoolini; # timestamp for each test command run starting
261 my %timetoolend; # timestamp for each test command run stopping
262 my %timesrvrlog; # timestamp for each test server logs lock removal
263 my %timevrfyend; # timestamp for each test result verification end
264
265 my $testnumcheck; # test number, set in singletest sub.
266 my %oldenv;
267
268 #######################################################################
269 # variables that command line options may set
270 #
271
272 my $short;
273 my $automakestyle;
274 my $verbose;
275 my $debugprotocol;
276 my $anyway;
277 my $gdbthis;      # run test case with gdb debugger
278 my $gdbxwin;      # use windowed gdb when using gdb
279 my $keepoutfiles; # keep stdout and stderr files after tests
280 my $listonly;     # only list the tests
281 my $postmortem;   # display detailed info about failed tests
282 my $run_event_based; # run curl with --test-event to test the event API
283
284 my %run;          # running server
285 my %doesntrun;    # servers that don't work, identified by pidfile
286 my %serverpidfile;# all server pid file names, identified by server id
287 my %runcert;      # cert file currently in use by an ssl running server
288
289 # torture test variables
290 my $torture;
291 my $tortnum;
292 my $tortalloc;
293
294 #######################################################################
295 # logmsg is our general message logging subroutine.
296 #
297 sub logmsg {
298     for(@_) {
299         print "$_";
300     }
301 }
302
303 # get the name of the current user
304 my $USER = $ENV{USER};          # Linux
305 if (!$USER) {
306     $USER = $ENV{USERNAME};     # Windows
307     if (!$USER) {
308         $USER = $ENV{LOGNAME};  # Some UNIX (I think)
309     }
310 }
311
312 # enable memory debugging if curl is compiled with it
313 $ENV{'CURL_MEMDEBUG'} = $memdump;
314 $ENV{'HOME'}=$pwd;
315
316 sub catch_zap {
317     my $signame = shift;
318     logmsg "runtests.pl received SIG$signame, exiting\n";
319     stopservers($verbose);
320     die "Somebody sent me a SIG$signame";
321 }
322 $SIG{INT} = \&catch_zap;
323 $SIG{TERM} = \&catch_zap;
324
325 ##########################################################################
326 # Clear all possible '*_proxy' environment variables for various protocols
327 # to prevent them to interfere with our testing!
328
329 my $protocol;
330 foreach $protocol (('ftp', 'http', 'ftps', 'https', 'no', 'all')) {
331     my $proxy = "${protocol}_proxy";
332     # clear lowercase version
333     delete $ENV{$proxy} if($ENV{$proxy});
334     # clear uppercase version
335     delete $ENV{uc($proxy)} if($ENV{uc($proxy)});
336 }
337
338 # make sure we don't get affected by other variables that control our
339 # behaviour
340
341 delete $ENV{'SSL_CERT_DIR'} if($ENV{'SSL_CERT_DIR'});
342 delete $ENV{'SSL_CERT_PATH'} if($ENV{'SSL_CERT_PATH'});
343 delete $ENV{'CURL_CA_BUNDLE'} if($ENV{'CURL_CA_BUNDLE'});
344
345 #######################################################################
346 # Load serverpidfile hash with pidfile names for all possible servers.
347 #
348 sub init_serverpidfile_hash {
349   for my $proto (('ftp', 'http', 'imap', 'pop3', 'smtp', 'http')) {
350     for my $ssl (('', 's')) {
351       for my $ipvnum ((4, 6)) {
352         for my $idnum ((1, 2, 3)) {
353           my $serv = servername_id("$proto$ssl", $ipvnum, $idnum);
354           my $pidf = server_pidfilename("$proto$ssl", $ipvnum, $idnum);
355           $serverpidfile{$serv} = $pidf;
356         }
357       }
358     }
359   }
360   for my $proto (('tftp', 'sftp', 'socks', 'ssh', 'rtsp', 'gopher', 'httptls')) {
361     for my $ipvnum ((4, 6)) {
362       for my $idnum ((1, 2)) {
363         my $serv = servername_id($proto, $ipvnum, $idnum);
364         my $pidf = server_pidfilename($proto, $ipvnum, $idnum);
365         $serverpidfile{$serv} = $pidf;
366       }
367     }
368   }
369 }
370
371 #######################################################################
372 # Check if a given child process has just died. Reaps it if so.
373 #
374 sub checkdied {
375     use POSIX ":sys_wait_h";
376     my $pid = $_[0];
377     if(not defined $pid || $pid <= 0) {
378         return 0;
379     }
380     my $rc = waitpid($pid, &WNOHANG);
381     return ($rc == $pid)?1:0;
382 }
383
384 #######################################################################
385 # Start a new thread/process and run the given command line in there.
386 # Return the pids (yes plural) of the new child process to the parent.
387 #
388 sub startnew {
389     my ($cmd, $pidfile, $timeout, $fake)=@_;
390
391     logmsg "startnew: $cmd\n" if ($verbose);
392
393     my $child = fork();
394     my $pid2 = 0;
395
396     if(not defined $child) {
397         logmsg "startnew: fork() failure detected\n";
398         return (-1,-1);
399     }
400
401     if(0 == $child) {
402         # Here we are the child. Run the given command.
403
404         # Put an "exec" in front of the command so that the child process
405         # keeps this child's process ID.
406         exec("exec $cmd") || die "Can't exec() $cmd: $!";
407
408         # exec() should never return back here to this process. We protect
409         # ourselves by calling die() just in case something goes really bad.
410         die "error: exec() has returned";
411     }
412
413     # Ugly hack but ssh client and gnutls-serv don't support pid files
414     if ($fake) {
415         if(open(OUT, ">$pidfile")) {
416             print OUT $child . "\n";
417             close(OUT);
418             logmsg "startnew: $pidfile faked with pid=$child\n" if($verbose);
419         }
420         else {
421             logmsg "startnew: failed to write fake $pidfile with pid=$child\n";
422         }
423         # could/should do a while connect fails sleep a bit and loop
424         sleep $timeout;
425         if (checkdied($child)) {
426             logmsg "startnew: child process has failed to start\n" if($verbose);
427             return (-1,-1);
428         }
429     }
430
431     my $count = $timeout;
432     while($count--) {
433         if(-f $pidfile && -s $pidfile && open(PID, "<$pidfile")) {
434             $pid2 = 0 + <PID>;
435             close(PID);
436             if(($pid2 > 0) && pidexists($pid2)) {
437                 # if $pid2 is valid, then make sure this pid is alive, as
438                 # otherwise it is just likely to be the _previous_ pidfile or
439                 # similar!
440                 last;
441             }
442             # invalidate $pid2 if not actually alive
443             $pid2 = 0;
444         }
445         if (checkdied($child)) {
446             logmsg "startnew: child process has died, server might start up\n"
447                 if($verbose);
448             # We can't just abort waiting for the server with a
449             # return (-1,-1);
450             # because the server might have forked and could still start
451             # up normally. Instead, just reduce the amount of time we remain
452             # waiting.
453             $count >>= 2;
454         }
455         sleep(1);
456     }
457
458     # Return two PIDs, the one for the child process we spawned and the one
459     # reported by the server itself (in case it forked again on its own).
460     # Both (potentially) need to be killed at the end of the test.
461     return ($child, $pid2);
462 }
463
464
465 #######################################################################
466 # Check for a command in the PATH of the test server.
467 #
468 sub checkcmd {
469     my ($cmd)=@_;
470     my @paths=(split(":", $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin",
471                "/sbin", "/usr/bin", "/usr/local/bin",
472                "./libtest/.libs", "./libtest");
473     for(@paths) {
474         if( -x "$_/$cmd" && ! -d "$_/$cmd") {
475             # executable bit but not a directory!
476             return "$_/$cmd";
477         }
478     }
479 }
480
481 #######################################################################
482 # Get the list of tests that the tests/data/Makefile.am knows about!
483 #
484 my $disttests;
485 sub get_disttests {
486     my @dist = `cd data && make show`;
487     $disttests = join("", @dist);
488 }
489
490 #######################################################################
491 # Check for a command in the PATH of the machine running curl.
492 #
493 sub checktestcmd {
494     my ($cmd)=@_;
495     return checkcmd($cmd);
496 }
497
498 #######################################################################
499 # Run the application under test and return its return code
500 #
501 sub runclient {
502     my ($cmd)=@_;
503     my $ret = system($cmd);
504     print "CMD ($ret): $cmd\n" if($verbose && !$torture);
505     return $ret;
506
507 # This is one way to test curl on a remote machine
508 #    my $out = system("ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'");
509 #    sleep 2;    # time to allow the NFS server to be updated
510 #    return $out;
511 }
512
513 #######################################################################
514 # Run the application under test and return its stdout
515 #
516 sub runclientoutput {
517     my ($cmd)=@_;
518     return `$cmd`;
519
520 # This is one way to test curl on a remote machine
521 #    my @out = `ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'`;
522 #    sleep 2;    # time to allow the NFS server to be updated
523 #    return @out;
524  }
525
526 #######################################################################
527 # Memory allocation test and failure torture testing.
528 #
529 sub torture {
530     my $testcmd = shift;
531     my $gdbline = shift;
532
533     # remove memdump first to be sure we get a new nice and clean one
534     unlink($memdump);
535
536     # First get URL from test server, ignore the output/result
537     runclient($testcmd);
538
539     logmsg " CMD: $testcmd\n" if($verbose);
540
541     # memanalyze -v is our friend, get the number of allocations made
542     my $count=0;
543     my @out = `$memanalyze -v $memdump`;
544     for(@out) {
545         if(/^Allocations: (\d+)/) {
546             $count = $1;
547             last;
548         }
549     }
550     if(!$count) {
551         logmsg " found no allocs to make fail\n";
552         return 0;
553     }
554
555     logmsg " $count allocations to make fail\n";
556
557     for ( 1 .. $count ) {
558         my $limit = $_;
559         my $fail;
560         my $dumped_core;
561
562         if($tortalloc && ($tortalloc != $limit)) {
563             next;
564         }
565
566         if($verbose) {
567             my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
568                 localtime(time());
569             my $now = sprintf("%02d:%02d:%02d ", $hour, $min, $sec);
570             logmsg "Fail alloc no: $limit at $now\r";
571         }
572
573         # make the memory allocation function number $limit return failure
574         $ENV{'CURL_MEMLIMIT'} = $limit;
575
576         # remove memdump first to be sure we get a new nice and clean one
577         unlink($memdump);
578
579         logmsg "*** Alloc number $limit is now set to fail ***\n" if($gdbthis);
580
581         my $ret = 0;
582         if($gdbthis) {
583             runclient($gdbline)
584         }
585         else {
586             $ret = runclient($testcmd);
587         }
588         #logmsg "$_ Returned " . $ret >> 8 . "\n";
589
590         # Now clear the variable again
591         delete $ENV{'CURL_MEMLIMIT'} if($ENV{'CURL_MEMLIMIT'});
592
593         if(-r "core") {
594             # there's core file present now!
595             logmsg " core dumped\n";
596             $dumped_core = 1;
597             $fail = 2;
598         }
599
600         # verify that it returns a proper error code, doesn't leak memory
601         # and doesn't core dump
602         if($ret & 255) {
603             logmsg " system() returned $ret\n";
604             $fail=1;
605         }
606         else {
607             my @memdata=`$memanalyze $memdump`;
608             my $leak=0;
609             for(@memdata) {
610                 if($_ ne "") {
611                     # well it could be other memory problems as well, but
612                     # we call it leak for short here
613                     $leak=1;
614                 }
615             }
616             if($leak) {
617                 logmsg "** MEMORY FAILURE\n";
618                 logmsg @memdata;
619                 logmsg `$memanalyze -l $memdump`;
620                 $fail = 1;
621             }
622         }
623         if($fail) {
624             logmsg " Failed on alloc number $limit in test.\n",
625             " invoke with \"-t$limit\" to repeat this single case.\n";
626             stopservers($verbose);
627             return 1;
628         }
629     }
630
631     logmsg "torture OK\n";
632     return 0;
633 }
634
635 #######################################################################
636 # Stop a test server along with pids which aren't in the %run hash yet.
637 # This also stops all servers which are relative to the given one.
638 #
639 sub stopserver {
640     my ($server, $pidlist) = @_;
641     #
642     # kill sockfilter processes for pingpong relative server
643     #
644     if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
645         my $proto  = $1;
646         my $idnum  = ($2 && ($2 > 1)) ? $2 : 1;
647         my $ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4;
648         killsockfilters($proto, $ipvnum, $idnum, $verbose);
649     }
650     #
651     # All servers relative to the given one must be stopped also
652     #
653     my @killservers;
654     if($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)s((\d*)(-ipv6|))$/) {
655         # given a stunnel based ssl server, also kill non-ssl underlying one
656         push @killservers, "${1}${2}";
657     }
658     elsif($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)((\d*)(-ipv6|))$/) {
659         # given a non-ssl server, also kill stunnel based ssl piggybacking one
660         push @killservers, "${1}s${2}";
661     }
662     elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) {
663         # given a socks server, also kill ssh underlying one
664         push @killservers, "ssh${2}";
665     }
666     elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) {
667         # given a ssh server, also kill socks piggybacking one
668         push @killservers, "socks${2}";
669     }
670     push @killservers, $server;
671     #
672     # kill given pids and server relative ones clearing them in %run hash
673     #
674     foreach my $server (@killservers) {
675         if($run{$server}) {
676             # we must prepend a space since $pidlist may already contain a pid
677             $pidlist .= " $run{$server}";
678             $run{$server} = 0;
679         }
680         $runcert{$server} = 0 if($runcert{$server});
681     }
682     killpid($verbose, $pidlist);
683     #
684     # cleanup server pid files
685     #
686     foreach my $server (@killservers) {
687         my $pidfile = $serverpidfile{$server};
688         my $pid = processexists($pidfile);
689         if($pid > 0) {
690             logmsg "Warning: $server server unexpectedly alive\n";
691             killpid($verbose, $pid);
692         }
693         unlink($pidfile) if(-f $pidfile);
694     }
695 }
696
697 #######################################################################
698 # Verify that the server that runs on $ip, $port is our server.  This also
699 # implies that we can speak with it, as there might be occasions when the
700 # server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
701 # assign requested address")
702 #
703 sub verifyhttp {
704     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
705     my $server = servername_id($proto, $ipvnum, $idnum);
706     my $pid = 0;
707     my $bonus="";
708
709     my $verifyout = "$LOGDIR/".
710         servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
711     unlink($verifyout) if(-f $verifyout);
712
713     my $verifylog = "$LOGDIR/".
714         servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
715     unlink($verifylog) if(-f $verifylog);
716
717     if($proto eq "gopher") {
718         # gopher is funny
719         $bonus="1/";
720     }
721
722     my $flags = "--max-time $server_response_maxtime ";
723     $flags .= "--output $verifyout ";
724     $flags .= "--silent ";
725     $flags .= "--verbose ";
726     $flags .= "--globoff ";
727     $flags .= "-1 "         if($has_axtls);
728     $flags .= "--insecure " if($proto eq 'https');
729     $flags .= "\"$proto://$ip:$port/${bonus}verifiedserver\"";
730
731     my $cmd = "$VCURL $flags 2>$verifylog";
732
733     # verify if our/any server is running on this port
734     logmsg "RUN: $cmd\n" if($verbose);
735     my $res = runclient($cmd);
736
737     $res >>= 8; # rotate the result
738     if($res & 128) {
739         logmsg "RUN: curl command died with a coredump\n";
740         return -1;
741     }
742
743     if($res && $verbose) {
744         logmsg "RUN: curl command returned $res\n";
745         if(open(FILE, "<$verifylog")) {
746             while(my $string = <FILE>) {
747                 logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
748             }
749             close(FILE);
750         }
751     }
752
753     my $data;
754     if(open(FILE, "<$verifyout")) {
755         while(my $string = <FILE>) {
756             $data = $string;
757             last; # only want first line
758         }
759         close(FILE);
760     }
761
762     if($data && ($data =~ /WE ROOLZ: (\d+)/)) {
763         $pid = 0+$1;
764     }
765     elsif($res == 6) {
766         # curl: (6) Couldn't resolve host '::1'
767         logmsg "RUN: failed to resolve host ($proto://$ip:$port/verifiedserver)\n";
768         return -1;
769     }
770     elsif($data || ($res && ($res != 7))) {
771         logmsg "RUN: Unknown server on our $server port: $port ($res)\n";
772         return -1;
773     }
774     return $pid;
775 }
776
777 #######################################################################
778 # Verify that the server that runs on $ip, $port is our server.  This also
779 # implies that we can speak with it, as there might be occasions when the
780 # server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
781 # assign requested address")
782 #
783 sub verifyftp {
784     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
785     my $server = servername_id($proto, $ipvnum, $idnum);
786     my $pid = 0;
787     my $time=time();
788     my $extra="";
789
790     my $verifylog = "$LOGDIR/".
791         servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
792     unlink($verifylog) if(-f $verifylog);
793
794     if($proto eq "ftps") {
795         $extra .= "--insecure --ftp-ssl-control ";
796     }
797
798     my $flags = "--max-time $server_response_maxtime ";
799     $flags .= "--silent ";
800     $flags .= "--verbose ";
801     $flags .= "--globoff ";
802     $flags .= $extra;
803     $flags .= "\"$proto://$ip:$port/verifiedserver\"";
804
805     my $cmd = "$VCURL $flags 2>$verifylog";
806
807     # check if this is our server running on this port:
808     logmsg "RUN: $cmd\n" if($verbose);
809     my @data = runclientoutput($cmd);
810
811     my $res = $? >> 8; # rotate the result
812     if($res & 128) {
813         logmsg "RUN: curl command died with a coredump\n";
814         return -1;
815     }
816
817     foreach my $line (@data) {
818         if($line =~ /WE ROOLZ: (\d+)/) {
819             # this is our test server with a known pid!
820             $pid = 0+$1;
821             last;
822         }
823     }
824     if($pid <= 0 && @data && $data[0]) {
825         # this is not a known server
826         logmsg "RUN: Unknown server on our $server port: $port\n";
827         return 0;
828     }
829     # we can/should use the time it took to verify the FTP server as a measure
830     # on how fast/slow this host/FTP is.
831     my $took = int(0.5+time()-$time);
832
833     if($verbose) {
834         logmsg "RUN: Verifying our test $server server took $took seconds\n";
835     }
836     $ftpchecktime = $took>=1?$took:1; # make sure it never is below 1
837
838     return $pid;
839 }
840
841 #######################################################################
842 # Verify that the server that runs on $ip, $port is our server.  This also
843 # implies that we can speak with it, as there might be occasions when the
844 # server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
845 # assign requested address")
846 #
847 sub verifyrtsp {
848     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
849     my $server = servername_id($proto, $ipvnum, $idnum);
850     my $pid = 0;
851
852     my $verifyout = "$LOGDIR/".
853         servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
854     unlink($verifyout) if(-f $verifyout);
855
856     my $verifylog = "$LOGDIR/".
857         servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
858     unlink($verifylog) if(-f $verifylog);
859
860     my $flags = "--max-time $server_response_maxtime ";
861     $flags .= "--output $verifyout ";
862     $flags .= "--silent ";
863     $flags .= "--verbose ";
864     $flags .= "--globoff ";
865     # currently verification is done using http
866     $flags .= "\"http://$ip:$port/verifiedserver\"";
867
868     my $cmd = "$VCURL $flags 2>$verifylog";
869
870     # verify if our/any server is running on this port
871     logmsg "RUN: $cmd\n" if($verbose);
872     my $res = runclient($cmd);
873
874     $res >>= 8; # rotate the result
875     if($res & 128) {
876         logmsg "RUN: curl command died with a coredump\n";
877         return -1;
878     }
879
880     if($res && $verbose) {
881         logmsg "RUN: curl command returned $res\n";
882         if(open(FILE, "<$verifylog")) {
883             while(my $string = <FILE>) {
884                 logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
885             }
886             close(FILE);
887         }
888     }
889
890     my $data;
891     if(open(FILE, "<$verifyout")) {
892         while(my $string = <FILE>) {
893             $data = $string;
894             last; # only want first line
895         }
896         close(FILE);
897     }
898
899     if($data && ($data =~ /RTSP_SERVER WE ROOLZ: (\d+)/)) {
900         $pid = 0+$1;
901     }
902     elsif($res == 6) {
903         # curl: (6) Couldn't resolve host '::1'
904         logmsg "RUN: failed to resolve host ($proto://$ip:$port/verifiedserver)\n";
905         return -1;
906     }
907     elsif($data || ($res != 7)) {
908         logmsg "RUN: Unknown server on our $server port: $port\n";
909         return -1;
910     }
911     return $pid;
912 }
913
914 #######################################################################
915 # Verify that the ssh server has written out its pidfile, recovering
916 # the pid from the file and returning it if a process with that pid is
917 # actually alive.
918 #
919 sub verifyssh {
920     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
921     my $server = servername_id($proto, $ipvnum, $idnum);
922     my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
923     my $pid = 0;
924     if(open(FILE, "<$pidfile")) {
925         $pid=0+<FILE>;
926         close(FILE);
927     }
928     if($pid > 0) {
929         # if we have a pid it is actually our ssh server,
930         # since runsshserver() unlinks previous pidfile
931         if(!pidexists($pid)) {
932             logmsg "RUN: SSH server has died after starting up\n";
933             checkdied($pid);
934             unlink($pidfile);
935             $pid = -1;
936         }
937     }
938     return $pid;
939 }
940
941 #######################################################################
942 # Verify that we can connect to the sftp server, properly authenticate
943 # with generated config and key files and run a simple remote pwd.
944 #
945 sub verifysftp {
946     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
947     my $server = servername_id($proto, $ipvnum, $idnum);
948     my $verified = 0;
949     # Find out sftp client canonical file name
950     my $sftp = find_sftp();
951     if(!$sftp) {
952         logmsg "RUN: SFTP server cannot find $sftpexe\n";
953         return -1;
954     }
955     # Find out ssh client canonical file name
956     my $ssh = find_ssh();
957     if(!$ssh) {
958         logmsg "RUN: SFTP server cannot find $sshexe\n";
959         return -1;
960     }
961     # Connect to sftp server, authenticate and run a remote pwd
962     # command using our generated configuration and key files
963     my $cmd = "$sftp -b $sftpcmds -F $sftpconfig -S $ssh $ip > $sftplog 2>&1";
964     my $res = runclient($cmd);
965     # Search for pwd command response in log file
966     if(open(SFTPLOGFILE, "<$sftplog")) {
967         while(<SFTPLOGFILE>) {
968             if(/^Remote working directory: /) {
969                 $verified = 1;
970                 last;
971             }
972         }
973         close(SFTPLOGFILE);
974     }
975     return $verified;
976 }
977
978 #######################################################################
979 # Verify that the non-stunnel HTTP TLS extensions capable server that runs
980 # on $ip, $port is our server.  This also implies that we can speak with it,
981 # as there might be occasions when the server runs fine but we cannot talk
982 # to it ("Failed to connect to ::1: Can't assign requested address")
983 #
984 sub verifyhttptls {
985     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
986     my $server = servername_id($proto, $ipvnum, $idnum);
987     my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
988     my $pid = 0;
989
990     my $verifyout = "$LOGDIR/".
991         servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
992     unlink($verifyout) if(-f $verifyout);
993
994     my $verifylog = "$LOGDIR/".
995         servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
996     unlink($verifylog) if(-f $verifylog);
997
998     my $flags = "--max-time $server_response_maxtime ";
999     $flags .= "--output $verifyout ";
1000     $flags .= "--verbose ";
1001     $flags .= "--globoff ";
1002     $flags .= "--insecure ";
1003     $flags .= "--tlsauthtype SRP ";
1004     $flags .= "--tlsuser jsmith ";
1005     $flags .= "--tlspassword abc ";
1006     $flags .= "\"https://$ip:$port/verifiedserver\"";
1007
1008     my $cmd = "$VCURL $flags 2>$verifylog";
1009
1010     # verify if our/any server is running on this port
1011     logmsg "RUN: $cmd\n" if($verbose);
1012     my $res = runclient($cmd);
1013
1014     $res >>= 8; # rotate the result
1015     if($res & 128) {
1016         logmsg "RUN: curl command died with a coredump\n";
1017         return -1;
1018     }
1019
1020     if($res && $verbose) {
1021         logmsg "RUN: curl command returned $res\n";
1022         if(open(FILE, "<$verifylog")) {
1023             while(my $string = <FILE>) {
1024                 logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
1025             }
1026             close(FILE);
1027         }
1028     }
1029
1030     my $data;
1031     if(open(FILE, "<$verifyout")) {
1032         while(my $string = <FILE>) {
1033             $data .= $string;
1034         }
1035         close(FILE);
1036     }
1037
1038     if($data && ($data =~ /GNUTLS/) && open(FILE, "<$pidfile")) {
1039         $pid=0+<FILE>;
1040         close(FILE);
1041         if($pid > 0) {
1042             # if we have a pid it is actually our httptls server,
1043             # since runhttptlsserver() unlinks previous pidfile
1044             if(!pidexists($pid)) {
1045                 logmsg "RUN: $server server has died after starting up\n";
1046                 checkdied($pid);
1047                 unlink($pidfile);
1048                 $pid = -1;
1049             }
1050         }
1051         return $pid;
1052     }
1053     elsif($res == 6) {
1054         # curl: (6) Couldn't resolve host '::1'
1055         logmsg "RUN: failed to resolve host (https://$ip:$port/verifiedserver)\n";
1056         return -1;
1057     }
1058     elsif($data || ($res && ($res != 7))) {
1059         logmsg "RUN: Unknown server on our $server port: $port ($res)\n";
1060         return -1;
1061     }
1062     return $pid;
1063 }
1064
1065 #######################################################################
1066 # STUB for verifying socks
1067 #
1068 sub verifysocks {
1069     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
1070     my $server = servername_id($proto, $ipvnum, $idnum);
1071     my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
1072     my $pid = 0;
1073     if(open(FILE, "<$pidfile")) {
1074         $pid=0+<FILE>;
1075         close(FILE);
1076     }
1077     if($pid > 0) {
1078         # if we have a pid it is actually our socks server,
1079         # since runsocksserver() unlinks previous pidfile
1080         if(!pidexists($pid)) {
1081             logmsg "RUN: SOCKS server has died after starting up\n";
1082             checkdied($pid);
1083             unlink($pidfile);
1084             $pid = -1;
1085         }
1086     }
1087     return $pid;
1088 }
1089
1090 #######################################################################
1091 # Verify that the server that runs on $ip, $port is our server.
1092 # Retry over several seconds before giving up.  The ssh server in
1093 # particular can take a long time to start if it needs to generate
1094 # keys on a slow or loaded host.
1095 #
1096 # Just for convenience, test harness uses 'https' and 'httptls' literals
1097 # as values for 'proto' variable in order to differentiate different
1098 # servers. 'https' literal is used for stunnel based https test servers,
1099 # and 'httptls' is used for non-stunnel https test servers.
1100 #
1101
1102 my %protofunc = ('http' => \&verifyhttp,
1103                  'https' => \&verifyhttp,
1104                  'rtsp' => \&verifyrtsp,
1105                  'ftp' => \&verifyftp,
1106                  'pop3' => \&verifyftp,
1107                  'imap' => \&verifyftp,
1108                  'smtp' => \&verifyftp,
1109                  'httppipe' => \&verifyhttp,
1110                  'ftps' => \&verifyftp,
1111                  'tftp' => \&verifyftp,
1112                  'ssh' => \&verifyssh,
1113                  'socks' => \&verifysocks,
1114                  'gopher' => \&verifyhttp,
1115                  'httptls' => \&verifyhttptls);
1116
1117 sub verifyserver {
1118     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
1119
1120     my $count = 30; # try for this many seconds
1121     my $pid;
1122
1123     while($count--) {
1124         my $fun = $protofunc{$proto};
1125
1126         $pid = &$fun($proto, $ipvnum, $idnum, $ip, $port);
1127
1128         if($pid > 0) {
1129             last;
1130         }
1131         elsif($pid < 0) {
1132             # a real failure, stop trying and bail out
1133             return 0;
1134         }
1135         sleep(1);
1136     }
1137     return $pid;
1138 }
1139
1140 #######################################################################
1141 # Single shot server responsiveness test. This should only be used
1142 # to verify that a server present in %run hash is still functional
1143 #
1144 sub responsiveserver {
1145     my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
1146     my $prev_verbose = $verbose;
1147
1148     $verbose = 0;
1149     my $fun = $protofunc{$proto};
1150     my $pid = &$fun($proto, $ipvnum, $idnum, $ip, $port);
1151     $verbose = $prev_verbose;
1152
1153     if($pid > 0) {
1154         return 1; # responsive
1155     }
1156
1157     my $srvrname = servername_str($proto, $ipvnum, $idnum);
1158     logmsg " server precheck FAILED (unresponsive $srvrname server)\n";
1159     return 0;
1160 }
1161
1162 #######################################################################
1163 # start the http server
1164 #
1165 sub runhttpserver {
1166     my ($proto, $verbose, $alt, $port) = @_;
1167     my $ip = $HOSTIP;
1168     my $ipvnum = 4;
1169     my $idnum = 1;
1170     my $server;
1171     my $srvrname;
1172     my $pidfile;
1173     my $logfile;
1174     my $flags = "";
1175     my $exe = "$perl $srcdir/httpserver.pl";
1176     my $verbose_flag = "--verbose ";
1177
1178     if($alt eq "ipv6") {
1179         # if IPv6, use a different setup
1180         $ipvnum = 6;
1181         $ip = $HOST6IP;
1182     }
1183     elsif($alt eq "proxy") {
1184         # basically the same, but another ID
1185         $idnum = 2;
1186     }
1187     elsif($alt eq "pipe") {
1188         # basically the same, but another ID
1189         $idnum = 3;
1190         $exe = "python $srcdir/http_pipe.py";
1191         $verbose_flag .= "1 ";
1192     }
1193
1194     $server = servername_id($proto, $ipvnum, $idnum);
1195
1196     $pidfile = $serverpidfile{$server};
1197
1198     # don't retry if the server doesn't work
1199     if ($doesntrun{$pidfile}) {
1200         return (0,0);
1201     }
1202
1203     my $pid = processexists($pidfile);
1204     if($pid > 0) {
1205         stopserver($server, "$pid");
1206     }
1207     unlink($pidfile) if(-f $pidfile);
1208
1209     $srvrname = servername_str($proto, $ipvnum, $idnum);
1210
1211     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1212
1213     $flags .= "--gopher " if($proto eq "gopher");
1214     $flags .= "--connect $HOSTIP " if($alt eq "proxy");
1215     $flags .= $verbose_flag if($debugprotocol);
1216     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1217     $flags .= "--id $idnum " if($idnum > 1);
1218     $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
1219
1220     my $cmd = "$exe $flags";
1221     my ($httppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1222
1223     if($httppid <= 0 || !pidexists($httppid)) {
1224         # it is NOT alive
1225         logmsg "RUN: failed to start the $srvrname server\n";
1226         stopserver($server, "$pid2");
1227         displaylogs($testnumcheck);
1228         $doesntrun{$pidfile} = 1;
1229         return (0,0);
1230     }
1231
1232     # Server is up. Verify that we can speak to it.
1233     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1234     if(!$pid3) {
1235         logmsg "RUN: $srvrname server failed verification\n";
1236         # failed to talk to it properly. Kill the server and return failure
1237         stopserver($server, "$httppid $pid2");
1238         displaylogs($testnumcheck);
1239         $doesntrun{$pidfile} = 1;
1240         return (0,0);
1241     }
1242     $pid2 = $pid3;
1243
1244     if($verbose) {
1245         logmsg "RUN: $srvrname server is now running PID $httppid\n";
1246     }
1247
1248     sleep(1);
1249
1250     return ($httppid, $pid2);
1251 }
1252
1253 #######################################################################
1254 # start the http server
1255 #
1256 sub runhttp_pipeserver {
1257     my ($proto, $verbose, $alt, $port) = @_;
1258     my $ip = $HOSTIP;
1259     my $ipvnum = 4;
1260     my $idnum = 1;
1261     my $server;
1262     my $srvrname;
1263     my $pidfile;
1264     my $logfile;
1265     my $flags = "";
1266
1267     if($alt eq "ipv6") {
1268         # No IPv6
1269     }
1270
1271     $server = servername_id($proto, $ipvnum, $idnum);
1272
1273     $pidfile = $serverpidfile{$server};
1274
1275     # don't retry if the server doesn't work
1276     if ($doesntrun{$pidfile}) {
1277         return (0,0);
1278     }
1279
1280     my $pid = processexists($pidfile);
1281     if($pid > 0) {
1282         stopserver($server, "$pid");
1283     }
1284     unlink($pidfile) if(-f $pidfile);
1285
1286     $srvrname = servername_str($proto, $ipvnum, $idnum);
1287
1288     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1289
1290     $flags .= "--verbose 1 " if($debugprotocol);
1291     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1292     $flags .= "--id $idnum " if($idnum > 1);
1293     $flags .= "--port $port --srcdir \"$srcdir\"";
1294
1295     my $cmd = "$srcdir/http_pipe.py $flags";
1296     my ($httppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1297
1298     if($httppid <= 0 || !pidexists($httppid)) {
1299         # it is NOT alive
1300         logmsg "RUN: failed to start the $srvrname server\n";
1301         stopserver($server, "$pid2");
1302         displaylogs($testnumcheck);
1303         $doesntrun{$pidfile} = 1;
1304         return (0,0);
1305     }
1306
1307     # Server is up. Verify that we can speak to it.
1308     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1309     if(!$pid3) {
1310         logmsg "RUN: $srvrname server failed verification\n";
1311         # failed to talk to it properly. Kill the server and return failure
1312         stopserver($server, "$httppid $pid2");
1313         displaylogs($testnumcheck);
1314         $doesntrun{$pidfile} = 1;
1315         return (0,0);
1316     }
1317     $pid2 = $pid3;
1318
1319     if($verbose) {
1320         logmsg "RUN: $srvrname server is now running PID $httppid\n";
1321     }
1322
1323     sleep(1);
1324
1325     return ($httppid, $pid2);
1326 }
1327
1328 #######################################################################
1329 # start the https stunnel based server
1330 #
1331 sub runhttpsserver {
1332     my ($verbose, $ipv6, $certfile) = @_;
1333     my $proto = 'https';
1334     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
1335     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
1336     my $idnum = 1;
1337     my $server;
1338     my $srvrname;
1339     my $pidfile;
1340     my $logfile;
1341     my $flags = "";
1342
1343     if(!$stunnel) {
1344         return (0,0);
1345     }
1346
1347     $server = servername_id($proto, $ipvnum, $idnum);
1348
1349     $pidfile = $serverpidfile{$server};
1350
1351     # don't retry if the server doesn't work
1352     if ($doesntrun{$pidfile}) {
1353         return (0,0);
1354     }
1355
1356     my $pid = processexists($pidfile);
1357     if($pid > 0) {
1358         stopserver($server, "$pid");
1359     }
1360     unlink($pidfile) if(-f $pidfile);
1361
1362     $srvrname = servername_str($proto, $ipvnum, $idnum);
1363
1364     $certfile = 'stunnel.pem' unless($certfile);
1365
1366     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1367
1368     $flags .= "--verbose " if($debugprotocol);
1369     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1370     $flags .= "--id $idnum " if($idnum > 1);
1371     $flags .= "--ipv$ipvnum --proto $proto ";
1372     $flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem');
1373     $flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" ";
1374     $flags .= "--connect $HTTPPORT --accept $HTTPSPORT";
1375
1376     my $cmd = "$perl $srcdir/secureserver.pl $flags";
1377     my ($httpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1378
1379     if($httpspid <= 0 || !pidexists($httpspid)) {
1380         # it is NOT alive
1381         logmsg "RUN: failed to start the $srvrname server\n";
1382         stopserver($server, "$pid2");
1383         displaylogs($testnumcheck);
1384         $doesntrun{$pidfile} = 1;
1385         return(0,0);
1386     }
1387
1388     # Server is up. Verify that we can speak to it.
1389     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $HTTPSPORT);
1390     if(!$pid3) {
1391         logmsg "RUN: $srvrname server failed verification\n";
1392         # failed to talk to it properly. Kill the server and return failure
1393         stopserver($server, "$httpspid $pid2");
1394         displaylogs($testnumcheck);
1395         $doesntrun{$pidfile} = 1;
1396         return (0,0);
1397     }
1398     # Here pid3 is actually the pid returned by the unsecure-http server.
1399
1400     $runcert{$server} = $certfile;
1401
1402     if($verbose) {
1403         logmsg "RUN: $srvrname server is now running PID $httpspid\n";
1404     }
1405
1406     sleep(1);
1407
1408     return ($httpspid, $pid2);
1409 }
1410
1411 #######################################################################
1412 # start the non-stunnel HTTP TLS extensions capable server
1413 #
1414 sub runhttptlsserver {
1415     my ($verbose, $ipv6) = @_;
1416     my $proto = "httptls";
1417     my $port = ($ipv6 && ($ipv6 =~ /6$/)) ? $HTTPTLS6PORT : $HTTPTLSPORT;
1418     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
1419     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
1420     my $idnum = 1;
1421     my $server;
1422     my $srvrname;
1423     my $pidfile;
1424     my $logfile;
1425     my $flags = "";
1426
1427     if(!$httptlssrv) {
1428         return (0,0);
1429     }
1430
1431     $server = servername_id($proto, $ipvnum, $idnum);
1432
1433     $pidfile = $serverpidfile{$server};
1434
1435     # don't retry if the server doesn't work
1436     if ($doesntrun{$pidfile}) {
1437         return (0,0);
1438     }
1439
1440     my $pid = processexists($pidfile);
1441     if($pid > 0) {
1442         stopserver($server, "$pid");
1443     }
1444     unlink($pidfile) if(-f $pidfile);
1445
1446     $srvrname = servername_str($proto, $ipvnum, $idnum);
1447
1448     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1449
1450     $flags .= "--http ";
1451     $flags .= "--debug 1 " if($debugprotocol);
1452     $flags .= "--port $port ";
1453     $flags .= "--srppasswd $srcdir/certs/srp-verifier-db ";
1454     $flags .= "--srppasswdconf $srcdir/certs/srp-verifier-conf";
1455
1456     my $cmd = "$httptlssrv $flags > $logfile 2>&1";
1457     my ($httptlspid, $pid2) = startnew($cmd, $pidfile, 10, 1); # fake pidfile
1458
1459     if($httptlspid <= 0 || !pidexists($httptlspid)) {
1460         # it is NOT alive
1461         logmsg "RUN: failed to start the $srvrname server\n";
1462         stopserver($server, "$pid2");
1463         displaylogs($testnumcheck);
1464         $doesntrun{$pidfile} = 1;
1465         return (0,0);
1466     }
1467
1468     # Server is up. Verify that we can speak to it. PID is from fake pidfile
1469     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1470     if(!$pid3) {
1471         logmsg "RUN: $srvrname server failed verification\n";
1472         # failed to talk to it properly. Kill the server and return failure
1473         stopserver($server, "$httptlspid $pid2");
1474         displaylogs($testnumcheck);
1475         $doesntrun{$pidfile} = 1;
1476         return (0,0);
1477     }
1478     $pid2 = $pid3;
1479
1480     if($verbose) {
1481         logmsg "RUN: $srvrname server is now running PID $httptlspid\n";
1482     }
1483
1484     sleep(1);
1485
1486     return ($httptlspid, $pid2);
1487 }
1488
1489 #######################################################################
1490 # start the pingpong server (FTP, POP3, IMAP, SMTP)
1491 #
1492 sub runpingpongserver {
1493     my ($proto, $id, $verbose, $ipv6) = @_;
1494     my $port;
1495     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
1496     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
1497     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
1498     my $server;
1499     my $srvrname;
1500     my $pidfile;
1501     my $logfile;
1502     my $flags = "";
1503
1504     if($proto eq "ftp") {
1505         $port = ($idnum>1)?$FTP2PORT:$FTPPORT;
1506
1507         if($ipvnum==6) {
1508             # if IPv6, use a different setup
1509             $port = $FTP6PORT;
1510         }
1511     }
1512     elsif($proto eq "pop3") {
1513         $port = ($ipvnum==6) ? $POP36PORT : $POP3PORT;
1514     }
1515     elsif($proto eq "imap") {
1516         $port = ($ipvnum==6) ? $IMAP6PORT : $IMAPPORT;
1517     }
1518     elsif($proto eq "smtp") {
1519         $port = ($ipvnum==6) ? $SMTP6PORT : $SMTPPORT;
1520     }
1521     else {
1522         print STDERR "Unsupported protocol $proto!!\n";
1523         return 0;
1524     }
1525
1526     $server = servername_id($proto, $ipvnum, $idnum);
1527
1528     $pidfile = $serverpidfile{$server};
1529
1530     # don't retry if the server doesn't work
1531     if ($doesntrun{$pidfile}) {
1532         return (0,0);
1533     }
1534
1535     my $pid = processexists($pidfile);
1536     if($pid > 0) {
1537         stopserver($server, "$pid");
1538     }
1539     unlink($pidfile) if(-f $pidfile);
1540
1541     $srvrname = servername_str($proto, $ipvnum, $idnum);
1542
1543     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1544
1545     $flags .= "--verbose " if($debugprotocol);
1546     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1547     $flags .= "--srcdir \"$srcdir\" --proto $proto ";
1548     $flags .= "--id $idnum " if($idnum > 1);
1549     $flags .= "--ipv$ipvnum --port $port --addr \"$ip\"";
1550
1551     my $cmd = "$perl $srcdir/ftpserver.pl $flags";
1552     my ($ftppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1553
1554     if($ftppid <= 0 || !pidexists($ftppid)) {
1555         # it is NOT alive
1556         logmsg "RUN: failed to start the $srvrname server\n";
1557         stopserver($server, "$pid2");
1558         displaylogs($testnumcheck);
1559         $doesntrun{$pidfile} = 1;
1560         return (0,0);
1561     }
1562
1563     # Server is up. Verify that we can speak to it.
1564     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1565     if(!$pid3) {
1566         logmsg "RUN: $srvrname server failed verification\n";
1567         # failed to talk to it properly. Kill the server and return failure
1568         stopserver($server, "$ftppid $pid2");
1569         displaylogs($testnumcheck);
1570         $doesntrun{$pidfile} = 1;
1571         return (0,0);
1572     }
1573
1574     $pid2 = $pid3;
1575
1576     if($verbose) {
1577         logmsg "RUN: $srvrname server is now running PID $ftppid\n";
1578     }
1579
1580     sleep(1);
1581
1582     return ($pid2, $ftppid);
1583 }
1584
1585 #######################################################################
1586 # start the ftps server (or rather, tunnel)
1587 #
1588 sub runftpsserver {
1589     my ($verbose, $ipv6, $certfile) = @_;
1590     my $proto = 'ftps';
1591     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
1592     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
1593     my $idnum = 1;
1594     my $server;
1595     my $srvrname;
1596     my $pidfile;
1597     my $logfile;
1598     my $flags = "";
1599
1600     if(!$stunnel) {
1601         return (0,0);
1602     }
1603
1604     $server = servername_id($proto, $ipvnum, $idnum);
1605
1606     $pidfile = $serverpidfile{$server};
1607
1608     # don't retry if the server doesn't work
1609     if ($doesntrun{$pidfile}) {
1610         return (0,0);
1611     }
1612
1613     my $pid = processexists($pidfile);
1614     if($pid > 0) {
1615         stopserver($server, "$pid");
1616     }
1617     unlink($pidfile) if(-f $pidfile);
1618
1619     $srvrname = servername_str($proto, $ipvnum, $idnum);
1620
1621     $certfile = 'stunnel.pem' unless($certfile);
1622
1623     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1624
1625     $flags .= "--verbose " if($debugprotocol);
1626     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1627     $flags .= "--id $idnum " if($idnum > 1);
1628     $flags .= "--ipv$ipvnum --proto $proto ";
1629     $flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem');
1630     $flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" ";
1631     $flags .= "--connect $FTPPORT --accept $FTPSPORT";
1632
1633     my $cmd = "$perl $srcdir/secureserver.pl $flags";
1634     my ($ftpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1635
1636     if($ftpspid <= 0 || !pidexists($ftpspid)) {
1637         # it is NOT alive
1638         logmsg "RUN: failed to start the $srvrname server\n";
1639         stopserver($server, "$pid2");
1640         displaylogs($testnumcheck);
1641         $doesntrun{$pidfile} = 1;
1642         return(0,0);
1643     }
1644
1645     # Server is up. Verify that we can speak to it.
1646     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $FTPSPORT);
1647     if(!$pid3) {
1648         logmsg "RUN: $srvrname server failed verification\n";
1649         # failed to talk to it properly. Kill the server and return failure
1650         stopserver($server, "$ftpspid $pid2");
1651         displaylogs($testnumcheck);
1652         $doesntrun{$pidfile} = 1;
1653         return (0,0);
1654     }
1655     # Here pid3 is actually the pid returned by the unsecure-ftp server.
1656
1657     $runcert{$server} = $certfile;
1658
1659     if($verbose) {
1660         logmsg "RUN: $srvrname server is now running PID $ftpspid\n";
1661     }
1662
1663     sleep(1);
1664
1665     return ($ftpspid, $pid2);
1666 }
1667
1668 #######################################################################
1669 # start the tftp server
1670 #
1671 sub runtftpserver {
1672     my ($id, $verbose, $ipv6) = @_;
1673     my $port = $TFTPPORT;
1674     my $ip = $HOSTIP;
1675     my $proto = 'tftp';
1676     my $ipvnum = 4;
1677     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
1678     my $server;
1679     my $srvrname;
1680     my $pidfile;
1681     my $logfile;
1682     my $flags = "";
1683
1684     if($ipv6) {
1685         # if IPv6, use a different setup
1686         $ipvnum = 6;
1687         $port = $TFTP6PORT;
1688         $ip = $HOST6IP;
1689     }
1690
1691     $server = servername_id($proto, $ipvnum, $idnum);
1692
1693     $pidfile = $serverpidfile{$server};
1694
1695     # don't retry if the server doesn't work
1696     if ($doesntrun{$pidfile}) {
1697         return (0,0);
1698     }
1699
1700     my $pid = processexists($pidfile);
1701     if($pid > 0) {
1702         stopserver($server, "$pid");
1703     }
1704     unlink($pidfile) if(-f $pidfile);
1705
1706     $srvrname = servername_str($proto, $ipvnum, $idnum);
1707
1708     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1709
1710     $flags .= "--verbose " if($debugprotocol);
1711     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1712     $flags .= "--id $idnum " if($idnum > 1);
1713     $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
1714
1715     my $cmd = "$perl $srcdir/tftpserver.pl $flags";
1716     my ($tftppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1717
1718     if($tftppid <= 0 || !pidexists($tftppid)) {
1719         # it is NOT alive
1720         logmsg "RUN: failed to start the $srvrname server\n";
1721         stopserver($server, "$pid2");
1722         displaylogs($testnumcheck);
1723         $doesntrun{$pidfile} = 1;
1724         return (0,0);
1725     }
1726
1727     # Server is up. Verify that we can speak to it.
1728     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1729     if(!$pid3) {
1730         logmsg "RUN: $srvrname server failed verification\n";
1731         # failed to talk to it properly. Kill the server and return failure
1732         stopserver($server, "$tftppid $pid2");
1733         displaylogs($testnumcheck);
1734         $doesntrun{$pidfile} = 1;
1735         return (0,0);
1736     }
1737     $pid2 = $pid3;
1738
1739     if($verbose) {
1740         logmsg "RUN: $srvrname server is now running PID $tftppid\n";
1741     }
1742
1743     sleep(1);
1744
1745     return ($pid2, $tftppid);
1746 }
1747
1748
1749 #######################################################################
1750 # start the rtsp server
1751 #
1752 sub runrtspserver {
1753     my ($verbose, $ipv6) = @_;
1754     my $port = $RTSPPORT;
1755     my $ip = $HOSTIP;
1756     my $proto = 'rtsp';
1757     my $ipvnum = 4;
1758     my $idnum = 1;
1759     my $server;
1760     my $srvrname;
1761     my $pidfile;
1762     my $logfile;
1763     my $flags = "";
1764
1765     if($ipv6) {
1766         # if IPv6, use a different setup
1767         $ipvnum = 6;
1768         $port = $RTSP6PORT;
1769         $ip = $HOST6IP;
1770     }
1771
1772     $server = servername_id($proto, $ipvnum, $idnum);
1773
1774     $pidfile = $serverpidfile{$server};
1775
1776     # don't retry if the server doesn't work
1777     if ($doesntrun{$pidfile}) {
1778         return (0,0);
1779     }
1780
1781     my $pid = processexists($pidfile);
1782     if($pid > 0) {
1783         stopserver($server, "$pid");
1784     }
1785     unlink($pidfile) if(-f $pidfile);
1786
1787     $srvrname = servername_str($proto, $ipvnum, $idnum);
1788
1789     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1790
1791     $flags .= "--verbose " if($debugprotocol);
1792     $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
1793     $flags .= "--id $idnum " if($idnum > 1);
1794     $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
1795
1796     my $cmd = "$perl $srcdir/rtspserver.pl $flags";
1797     my ($rtsppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
1798
1799     if($rtsppid <= 0 || !pidexists($rtsppid)) {
1800         # it is NOT alive
1801         logmsg "RUN: failed to start the $srvrname server\n";
1802         stopserver($server, "$pid2");
1803         displaylogs($testnumcheck);
1804         $doesntrun{$pidfile} = 1;
1805         return (0,0);
1806     }
1807
1808     # Server is up. Verify that we can speak to it.
1809     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1810     if(!$pid3) {
1811         logmsg "RUN: $srvrname server failed verification\n";
1812         # failed to talk to it properly. Kill the server and return failure
1813         stopserver($server, "$rtsppid $pid2");
1814         displaylogs($testnumcheck);
1815         $doesntrun{$pidfile} = 1;
1816         return (0,0);
1817     }
1818     $pid2 = $pid3;
1819
1820     if($verbose) {
1821         logmsg "RUN: $srvrname server is now running PID $rtsppid\n";
1822     }
1823
1824     sleep(1);
1825
1826     return ($rtsppid, $pid2);
1827 }
1828
1829
1830 #######################################################################
1831 # Start the ssh (scp/sftp) server
1832 #
1833 sub runsshserver {
1834     my ($id, $verbose, $ipv6) = @_;
1835     my $ip=$HOSTIP;
1836     my $port = $SSHPORT;
1837     my $socksport = $SOCKSPORT;
1838     my $proto = 'ssh';
1839     my $ipvnum = 4;
1840     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
1841     my $server;
1842     my $srvrname;
1843     my $pidfile;
1844     my $logfile;
1845     my $flags = "";
1846
1847     $server = servername_id($proto, $ipvnum, $idnum);
1848
1849     $pidfile = $serverpidfile{$server};
1850
1851     # don't retry if the server doesn't work
1852     if ($doesntrun{$pidfile}) {
1853         return (0,0);
1854     }
1855
1856     my $pid = processexists($pidfile);
1857     if($pid > 0) {
1858         stopserver($server, "$pid");
1859     }
1860     unlink($pidfile) if(-f $pidfile);
1861
1862     $srvrname = servername_str($proto, $ipvnum, $idnum);
1863
1864     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1865
1866     $flags .= "--verbose " if($verbose);
1867     $flags .= "--debugprotocol " if($debugprotocol);
1868     $flags .= "--pidfile \"$pidfile\" ";
1869     $flags .= "--id $idnum " if($idnum > 1);
1870     $flags .= "--ipv$ipvnum --addr \"$ip\" ";
1871     $flags .= "--sshport $port --socksport $socksport ";
1872     $flags .= "--user \"$USER\"";
1873
1874     my $cmd = "$perl $srcdir/sshserver.pl $flags";
1875     my ($sshpid, $pid2) = startnew($cmd, $pidfile, 60, 0);
1876
1877     # on loaded systems sshserver start up can take longer than the timeout
1878     # passed to startnew, when this happens startnew completes without being
1879     # able to read the pidfile and consequently returns a zero pid2 above.
1880
1881     if($sshpid <= 0 || !pidexists($sshpid)) {
1882         # it is NOT alive
1883         logmsg "RUN: failed to start the $srvrname server\n";
1884         stopserver($server, "$pid2");
1885         $doesntrun{$pidfile} = 1;
1886         return (0,0);
1887     }
1888
1889     # ssh server verification allows some extra time for the server to start up
1890     # and gives us the opportunity of recovering the pid from the pidfile, when
1891     # this verification succeeds the recovered pid is assigned to pid2.
1892
1893     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
1894     if(!$pid3) {
1895         logmsg "RUN: $srvrname server failed verification\n";
1896         # failed to fetch server pid. Kill the server and return failure
1897         stopserver($server, "$sshpid $pid2");
1898         $doesntrun{$pidfile} = 1;
1899         return (0,0);
1900     }
1901     $pid2 = $pid3;
1902
1903     # once it is known that the ssh server is alive, sftp server verification
1904     # is performed actually connecting to it, authenticating and performing a
1905     # very simple remote command.  This verification is tried only one time.
1906
1907     $sshdlog = server_logfilename($LOGDIR, 'ssh', $ipvnum, $idnum);
1908     $sftplog = server_logfilename($LOGDIR, 'sftp', $ipvnum, $idnum);
1909
1910     if(verifysftp('sftp', $ipvnum, $idnum, $ip, $port) < 1) {
1911         logmsg "RUN: SFTP server failed verification\n";
1912         # failed to talk to it properly. Kill the server and return failure
1913         display_sftplog();
1914         display_sftpconfig();
1915         display_sshdlog();
1916         display_sshdconfig();
1917         stopserver($server, "$sshpid $pid2");
1918         $doesntrun{$pidfile} = 1;
1919         return (0,0);
1920     }
1921
1922     if($verbose) {
1923         logmsg "RUN: $srvrname server is now running PID $pid2\n";
1924     }
1925
1926     return ($pid2, $sshpid);
1927 }
1928
1929 #######################################################################
1930 # Start the socks server
1931 #
1932 sub runsocksserver {
1933     my ($id, $verbose, $ipv6) = @_;
1934     my $ip=$HOSTIP;
1935     my $port = $SOCKSPORT;
1936     my $proto = 'socks';
1937     my $ipvnum = 4;
1938     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
1939     my $server;
1940     my $srvrname;
1941     my $pidfile;
1942     my $logfile;
1943     my $flags = "";
1944
1945     $server = servername_id($proto, $ipvnum, $idnum);
1946
1947     $pidfile = $serverpidfile{$server};
1948
1949     # don't retry if the server doesn't work
1950     if ($doesntrun{$pidfile}) {
1951         return (0,0);
1952     }
1953
1954     my $pid = processexists($pidfile);
1955     if($pid > 0) {
1956         stopserver($server, "$pid");
1957     }
1958     unlink($pidfile) if(-f $pidfile);
1959
1960     $srvrname = servername_str($proto, $ipvnum, $idnum);
1961
1962     $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
1963
1964     # The ssh server must be already running
1965     if(!$run{'ssh'}) {
1966         logmsg "RUN: SOCKS server cannot find running SSH server\n";
1967         $doesntrun{$pidfile} = 1;
1968         return (0,0);
1969     }
1970
1971     # Find out ssh daemon canonical file name
1972     my $sshd = find_sshd();
1973     if(!$sshd) {
1974         logmsg "RUN: SOCKS server cannot find $sshdexe\n";
1975         $doesntrun{$pidfile} = 1;
1976         return (0,0);
1977     }
1978
1979     # Find out ssh daemon version info
1980     ($sshdid, $sshdvernum, $sshdverstr, $sshderror) = sshversioninfo($sshd);
1981     if(!$sshdid) {
1982         # Not an OpenSSH or SunSSH ssh daemon
1983         logmsg "$sshderror\n" if($verbose);
1984         logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
1985         $doesntrun{$pidfile} = 1;
1986         return (0,0);
1987     }
1988     logmsg "ssh server found $sshd is $sshdverstr\n" if($verbose);
1989
1990     # Find out ssh client canonical file name
1991     my $ssh = find_ssh();
1992     if(!$ssh) {
1993         logmsg "RUN: SOCKS server cannot find $sshexe\n";
1994         $doesntrun{$pidfile} = 1;
1995         return (0,0);
1996     }
1997
1998     # Find out ssh client version info
1999     my ($sshid, $sshvernum, $sshverstr, $ssherror) = sshversioninfo($ssh);
2000     if(!$sshid) {
2001         # Not an OpenSSH or SunSSH ssh client
2002         logmsg "$ssherror\n" if($verbose);
2003         logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
2004         $doesntrun{$pidfile} = 1;
2005         return (0,0);
2006     }
2007
2008     # Verify minimum ssh client version
2009     if((($sshid =~ /OpenSSH/) && ($sshvernum < 299)) ||
2010        (($sshid =~ /SunSSH/)  && ($sshvernum < 100))) {
2011         logmsg "ssh client found $ssh is $sshverstr\n";
2012         logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
2013         $doesntrun{$pidfile} = 1;
2014         return (0,0);
2015     }
2016     logmsg "ssh client found $ssh is $sshverstr\n" if($verbose);
2017
2018     # Verify if ssh client and ssh daemon versions match
2019     if(($sshdid ne $sshid) || ($sshdvernum != $sshvernum)) {
2020         # Our test harness might work with slightly mismatched versions
2021         logmsg "Warning: version mismatch: sshd $sshdverstr - ssh $sshverstr\n"
2022             if($verbose);
2023     }
2024
2025     # Config file options for ssh client are previously set from sshserver.pl
2026     if(! -e $sshconfig) {
2027         logmsg "RUN: SOCKS server cannot find $sshconfig\n";
2028         $doesntrun{$pidfile} = 1;
2029         return (0,0);
2030     }
2031
2032     $sshlog  = server_logfilename($LOGDIR, 'socks', $ipvnum, $idnum);
2033
2034     # start our socks server
2035     my $cmd="$ssh -N -F $sshconfig $ip > $sshlog 2>&1";
2036     my ($sshpid, $pid2) = startnew($cmd, $pidfile, 30, 1); # fake pidfile
2037
2038     if($sshpid <= 0 || !pidexists($sshpid)) {
2039         # it is NOT alive
2040         logmsg "RUN: failed to start the $srvrname server\n";
2041         display_sshlog();
2042         display_sshconfig();
2043         display_sshdlog();
2044         display_sshdconfig();
2045         stopserver($server, "$pid2");
2046         $doesntrun{$pidfile} = 1;
2047         return (0,0);
2048     }
2049
2050     # Ugly hack but ssh doesn't support pid files. PID is from fake pidfile.
2051     my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
2052     if(!$pid3) {
2053         logmsg "RUN: $srvrname server failed verification\n";
2054         # failed to talk to it properly. Kill the server and return failure
2055         stopserver($server, "$sshpid $pid2");
2056         $doesntrun{$pidfile} = 1;
2057         return (0,0);
2058     }
2059     $pid2 = $pid3;
2060
2061     if($verbose) {
2062         logmsg "RUN: $srvrname server is now running PID $pid2\n";
2063     }
2064
2065     return ($pid2, $sshpid);
2066 }
2067
2068 #######################################################################
2069 # Single shot http and gopher server responsiveness test. This should only
2070 # be used to verify that a server present in %run hash is still functional
2071 #
2072 sub responsive_http_server {
2073     my ($proto, $verbose, $alt, $port) = @_;
2074     my $ip = $HOSTIP;
2075     my $ipvnum = 4;
2076     my $idnum = 1;
2077
2078     if($alt eq "ipv6") {
2079         # if IPv6, use a different setup
2080         $ipvnum = 6;
2081         $ip = $HOST6IP;
2082     }
2083     elsif($alt eq "proxy") {
2084         $idnum = 2;
2085     }
2086
2087     return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
2088 }
2089
2090 #######################################################################
2091 # Single shot pingpong server responsiveness test. This should only be
2092 # used to verify that a server present in %run hash is still functional
2093 #
2094 sub responsive_pingpong_server {
2095     my ($proto, $id, $verbose, $ipv6) = @_;
2096     my $port;
2097     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
2098     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
2099     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
2100
2101     if($proto eq "ftp") {
2102         $port = ($idnum>1)?$FTP2PORT:$FTPPORT;
2103
2104         if($ipvnum==6) {
2105             # if IPv6, use a different setup
2106             $port = $FTP6PORT;
2107         }
2108     }
2109     elsif($proto eq "pop3") {
2110         $port = ($ipvnum==6) ? $POP36PORT : $POP3PORT;
2111     }
2112     elsif($proto eq "imap") {
2113         $port = ($ipvnum==6) ? $IMAP6PORT : $IMAPPORT;
2114     }
2115     elsif($proto eq "smtp") {
2116         $port = ($ipvnum==6) ? $SMTP6PORT : $SMTPPORT;
2117     }
2118     else {
2119         print STDERR "Unsupported protocol $proto!!\n";
2120         return 0;
2121     }
2122
2123     return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
2124 }
2125
2126 #######################################################################
2127 # Single shot rtsp server responsiveness test. This should only be
2128 # used to verify that a server present in %run hash is still functional
2129 #
2130 sub responsive_rtsp_server {
2131     my ($verbose, $ipv6) = @_;
2132     my $port = $RTSPPORT;
2133     my $ip = $HOSTIP;
2134     my $proto = 'rtsp';
2135     my $ipvnum = 4;
2136     my $idnum = 1;
2137
2138     if($ipv6) {
2139         # if IPv6, use a different setup
2140         $ipvnum = 6;
2141         $port = $RTSP6PORT;
2142         $ip = $HOST6IP;
2143     }
2144
2145     return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
2146 }
2147
2148 #######################################################################
2149 # Single shot tftp server responsiveness test. This should only be
2150 # used to verify that a server present in %run hash is still functional
2151 #
2152 sub responsive_tftp_server {
2153     my ($id, $verbose, $ipv6) = @_;
2154     my $port = $TFTPPORT;
2155     my $ip = $HOSTIP;
2156     my $proto = 'tftp';
2157     my $ipvnum = 4;
2158     my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
2159
2160     if($ipv6) {
2161         # if IPv6, use a different setup
2162         $ipvnum = 6;
2163         $port = $TFTP6PORT;
2164         $ip = $HOST6IP;
2165     }
2166
2167     return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
2168 }
2169
2170 #######################################################################
2171 # Single shot non-stunnel HTTP TLS extensions capable server
2172 # responsiveness test. This should only be used to verify that a
2173 # server present in %run hash is still functional
2174 #
2175 sub responsive_httptls_server {
2176     my ($verbose, $ipv6) = @_;
2177     my $proto = "httptls";
2178     my $port = ($ipv6 && ($ipv6 =~ /6$/)) ? $HTTPTLS6PORT : $HTTPTLSPORT;
2179     my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
2180     my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
2181     my $idnum = 1;
2182
2183     return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
2184 }
2185
2186 #######################################################################
2187 # Remove all files in the specified directory
2188 #
2189 sub cleardir {
2190     my $dir = $_[0];
2191     my $count;
2192     my $file;
2193
2194     # Get all files
2195     opendir(DIR, $dir) ||
2196         return 0; # can't open dir
2197     while($file = readdir(DIR)) {
2198         if($file !~ /^\./) {
2199             unlink("$dir/$file");
2200             $count++;
2201         }
2202     }
2203     closedir DIR;
2204     return $count;
2205 }
2206
2207 #######################################################################
2208 # filter out the specified pattern from the given input file and store the
2209 # results in the given output file
2210 #
2211 sub filteroff {
2212     my $infile=$_[0];
2213     my $filter=$_[1];
2214     my $ofile=$_[2];
2215
2216     open(IN, "<$infile")
2217         || return 1;
2218
2219     open(OUT, ">$ofile")
2220         || return 1;
2221
2222     # logmsg "FILTER: off $filter from $infile to $ofile\n";
2223
2224     while(<IN>) {
2225         $_ =~ s/$filter//;
2226         print OUT $_;
2227     }
2228     close(IN);
2229     close(OUT);
2230     return 0;
2231 }
2232
2233 #######################################################################
2234 # compare test results with the expected output, we might filter off
2235 # some pattern that is allowed to differ, output test results
2236 #
2237 sub compare {
2238     # filter off patterns _before_ this comparison!
2239     my ($testnum, $testname, $subject, $firstref, $secondref)=@_;
2240
2241     my $result = compareparts($firstref, $secondref);
2242
2243     if($result) {
2244         # timestamp test result verification end
2245         $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
2246
2247         if(!$short) {
2248             logmsg "\n $testnum: $subject FAILED:\n";
2249             logmsg showdiff($LOGDIR, $firstref, $secondref);
2250         }
2251         elsif(!$automakestyle) {
2252             logmsg "FAILED\n";
2253         }
2254         else {
2255             # automakestyle
2256             logmsg "FAIL: $testnum - $testname - $subject\n";
2257         }
2258     }
2259     return $result;
2260 }
2261
2262 #######################################################################
2263 # display information about curl and the host the test suite runs on
2264 #
2265 sub checksystem {
2266
2267     unlink($memdump); # remove this if there was one left
2268
2269     my $feat;
2270     my $curl;
2271     my $libcurl;
2272     my $versretval;
2273     my $versnoexec;
2274     my @version=();
2275
2276     my $curlverout="$LOGDIR/curlverout.log";
2277     my $curlvererr="$LOGDIR/curlvererr.log";
2278     my $versioncmd="$CURL --version 1>$curlverout 2>$curlvererr";
2279
2280     unlink($curlverout);
2281     unlink($curlvererr);
2282
2283     $versretval = runclient($versioncmd);
2284     $versnoexec = $!;
2285
2286     open(VERSOUT, "<$curlverout");
2287     @version = <VERSOUT>;
2288     close(VERSOUT);
2289
2290     $resolver="stock";
2291     for(@version) {
2292         chomp;
2293
2294         if($_ =~ /^curl/) {
2295             $curl = $_;
2296             $curl =~ s/^(.*)(libcurl.*)/$1/g;
2297
2298             $libcurl = $2;
2299             if($curl =~ /mingw32/) {
2300                 # This is a windows minw32 build, we need to translate the
2301                 # given path to the "actual" windows path. The MSYS shell
2302                 # has a builtin 'pwd -W' command which converts the path.
2303                 $pwd = `sh -c "echo \$(pwd -W)"`;
2304                 chomp($pwd);
2305             }
2306             elsif ($curl =~ /win32/) {
2307                # Native Windows builds don't understand the
2308                # output of cygwin's pwd.  It will be
2309                # something like /cygdrive/c/<some path>.
2310                #
2311                # Use the cygpath utility to convert the
2312                # working directory to a Windows friendly
2313                # path.  The -m option converts to use drive
2314                # letter:, but it uses / instead \.  Forward
2315                # slashes (/) are easier for us.  We don't
2316                # have to escape them to get them to curl
2317                # through a shell.
2318                chomp($pwd = `cygpath -m $pwd`);
2319            }
2320            if ($libcurl =~ /winssl/i) {
2321                $has_winssl=1;
2322                $ssllib="WinSSL";
2323            }
2324            elsif ($libcurl =~ /openssl/i) {
2325                $has_openssl=1;
2326                $ssllib="OpenSSL";
2327            }
2328            elsif ($libcurl =~ /gnutls/i) {
2329                $has_gnutls=1;
2330                $ssllib="GnuTLS";
2331            }
2332            elsif ($libcurl =~ /nss/i) {
2333                $has_nss=1;
2334                $ssllib="NSS";
2335            }
2336            elsif ($libcurl =~ /yassl/i) {
2337                $has_yassl=1;
2338                $ssllib="yassl";
2339            }
2340            elsif ($libcurl =~ /polarssl/i) {
2341                $has_polarssl=1;
2342                $ssllib="polarssl";
2343            }
2344            elsif ($libcurl =~ /axtls/i) {
2345                $has_axtls=1;
2346                $ssllib="axTLS";
2347            }
2348            elsif ($libcurl =~ /securetransport/i) {
2349                $has_darwinssl=1;
2350                $ssllib="DarwinSSL";
2351            }
2352            elsif ($libcurl =~ /ares/i) {
2353                $has_cares=1;
2354                $resolver="c-ares";
2355            }
2356         }
2357         elsif($_ =~ /^Protocols: (.*)/i) {
2358             # these are the protocols compiled in to this libcurl
2359             @protocols = split(' ', lc($1));
2360
2361             # Generate a "proto-ipv6" version of each protocol to match the
2362             # IPv6 <server> name. This works even if IPv6 support isn't
2363             # compiled in because the <features> test will fail.
2364             push @protocols, map($_ . '-ipv6', @protocols);
2365
2366             # 'http-proxy' is used in test cases to do CONNECT through
2367             push @protocols, 'http-proxy';
2368
2369             # 'http-pipe' is the special server for testing pipelining
2370             push @protocols, 'http-pipe';
2371
2372             # 'none' is used in test cases to mean no server
2373             push @protocols, 'none';
2374         }
2375         elsif($_ =~ /^Features: (.*)/i) {
2376             $feat = $1;
2377             if($feat =~ /TrackMemory/i) {
2378                 # built with memory tracking support (--enable-curldebug)
2379                 $has_memory_tracking = 1;
2380             }
2381             if($feat =~ /debug/i) {
2382                 # curl was built with --enable-debug
2383                 $debug_build = 1;
2384             }
2385             if($feat =~ /SSL/i) {
2386                 # ssl enabled
2387                 $ssl_version=1;
2388             }
2389             if($feat =~ /Largefile/i) {
2390                 # large file support
2391                 $large_file=1;
2392             }
2393             if($feat =~ /IDN/i) {
2394                 # IDN support
2395                 $has_idn=1;
2396             }
2397             if($feat =~ /IPv6/i) {
2398                 $has_ipv6 = 1;
2399             }
2400             if($feat =~ /libz/i) {
2401                 $has_libz = 1;
2402             }
2403             if($feat =~ /NTLM/i) {
2404                 # NTLM enabled
2405                 $has_ntlm=1;
2406             }
2407             if($feat =~ /NTLM_WB/i) {
2408                 # NTLM delegation to winbind daemon ntlm_auth helper enabled
2409                 $has_ntlm_wb=1;
2410             }
2411             if($feat =~ /SSPI/i) {
2412                 # SSPI enabled
2413                 $has_sspi=1;
2414             }
2415             if($feat =~ /CharConv/i) {
2416                 # CharConv enabled
2417                 $has_charconv=1;
2418             }
2419             if($feat =~ /TLS-SRP/i) {
2420                 # TLS-SRP enabled
2421                 $has_tls_srp=1;
2422             }
2423             if($feat =~ /Metalink/i) {
2424                 # Metalink enabled
2425                 $has_metalink=1;
2426             }
2427             if($feat =~ /AsynchDNS/i) {
2428                 if(!$has_cares) {
2429                     # this means threaded resolver
2430                     $has_threadedres=1;
2431                     $resolver="threaded";
2432                 }
2433             }
2434         }
2435         #
2436         # Test harness currently uses a non-stunnel server in order to
2437         # run HTTP TLS-SRP tests required when curl is built with https
2438         # protocol support and TLS-SRP feature enabled. For convenience
2439         # 'httptls' may be included in the test harness protocols array
2440         # to differentiate this from classic stunnel based 'https' test
2441         # harness server.
2442         #
2443         if($has_tls_srp) {
2444             my $add_httptls;
2445             for(@protocols) {
2446                 if($_ =~ /^https(-ipv6|)$/) {
2447                     $add_httptls=1;
2448                     last;
2449                 }
2450             }
2451             if($add_httptls && (! grep /^httptls$/, @protocols)) {
2452                 push @protocols, 'httptls';
2453                 push @protocols, 'httptls-ipv6';
2454             }
2455         }
2456     }
2457     if(!$curl) {
2458         logmsg "unable to get curl's version, further details are:\n";
2459         logmsg "issued command: \n";
2460         logmsg "$versioncmd \n";
2461         if ($versretval == -1) {
2462             logmsg "command failed with: \n";
2463             logmsg "$versnoexec \n";
2464         }
2465         elsif ($versretval & 127) {
2466             logmsg sprintf("command died with signal %d, and %s coredump.\n",
2467                            ($versretval & 127), ($versretval & 128)?"a":"no");
2468         }
2469         else {
2470             logmsg sprintf("command exited with value %d \n", $versretval >> 8);
2471         }
2472         logmsg "contents of $curlverout: \n";
2473         displaylogcontent("$curlverout");
2474         logmsg "contents of $curlvererr: \n";
2475         displaylogcontent("$curlvererr");
2476         die "couldn't get curl's version";
2477     }
2478
2479     if(-r "../lib/curl_config.h") {
2480         open(CONF, "<../lib/curl_config.h");
2481         while(<CONF>) {
2482             if($_ =~ /^\#define HAVE_GETRLIMIT/) {
2483                 $has_getrlimit = 1;
2484             }
2485         }
2486         close(CONF);
2487     }
2488
2489     if($has_ipv6) {
2490         # client has ipv6 support
2491
2492         # check if the HTTP server has it!
2493         my @sws = `server/sws --version`;
2494         if($sws[0] =~ /IPv6/) {
2495             # HTTP server has ipv6 support!
2496             $http_ipv6 = 1;
2497             $gopher_ipv6 = 1;
2498         }
2499
2500         # check if the FTP server has it!
2501         @sws = `server/sockfilt --version`;
2502         if($sws[0] =~ /IPv6/) {
2503             # FTP server has ipv6 support!
2504             $ftp_ipv6 = 1;
2505         }
2506     }
2507
2508     if(!$has_memory_tracking && $torture) {
2509         die "can't run torture tests since curl was built without ".
2510             "TrackMemory feature (--enable-curldebug)";
2511     }
2512
2513     $has_shared = `sh $CURLCONFIG --built-shared`;
2514     chomp $has_shared;
2515
2516     # curl doesn't list cryptographic support separately, so assume it's
2517     # always available
2518     $has_crypto=1;
2519
2520     my $hostname=join(' ', runclientoutput("hostname"));
2521     my $hosttype=join(' ', runclientoutput("uname -a"));
2522
2523     logmsg ("********* System characteristics ******** \n",
2524     "* $curl\n",
2525     "* $libcurl\n",
2526     "* Features: $feat\n",
2527     "* Host: $hostname",
2528     "* System: $hosttype");
2529
2530     if($has_memory_tracking && $has_threadedres) {
2531         $has_memory_tracking = 0;
2532         logmsg("*\n",
2533                "*** DISABLES memory tracking when using threaded resolver\n",
2534                "*\n");
2535     }
2536
2537     logmsg sprintf("* Server SSL:   %8s", $stunnel?"ON ":"OFF");
2538     logmsg sprintf("  libcurl SSL:  %s\n", $ssl_version?"ON ":"OFF");
2539     logmsg sprintf("* debug build:  %8s", $debug_build?"ON ":"OFF");
2540     logmsg sprintf("  track memory: %s\n", $has_memory_tracking?"ON ":"OFF");
2541     logmsg sprintf("* valgrind:     %8s", $valgrind?"ON ":"OFF");
2542     logmsg sprintf("  HTTP IPv6     %s\n", $http_ipv6?"ON ":"OFF");
2543     logmsg sprintf("* FTP IPv6      %8s", $ftp_ipv6?"ON ":"OFF");
2544     logmsg sprintf("  Libtool lib:  %s\n", $libtool?"ON ":"OFF");
2545     logmsg sprintf("* Shared build:      %-3s", $has_shared);
2546     logmsg sprintf("  Resolver:     %s\n", $resolver);
2547     if($ssl_version) {
2548         logmsg sprintf("* SSL library: %13s\n", $ssllib);
2549     }
2550
2551     logmsg "* Ports:\n";
2552
2553     logmsg sprintf("*   HTTP/%d ", $HTTPPORT);
2554     logmsg sprintf("FTP/%d ", $FTPPORT);
2555     logmsg sprintf("FTP2/%d ", $FTP2PORT);
2556     logmsg sprintf("RTSP/%d ", $RTSPPORT);
2557     if($stunnel) {
2558         logmsg sprintf("FTPS/%d ", $FTPSPORT);
2559         logmsg sprintf("HTTPS/%d ", $HTTPSPORT);
2560     }
2561     logmsg sprintf("\n*   TFTP/%d ", $TFTPPORT);
2562     if($http_ipv6) {
2563         logmsg sprintf("HTTP-IPv6/%d ", $HTTP6PORT);
2564         logmsg sprintf("RTSP-IPv6/%d ", $RTSP6PORT);
2565     }
2566     if($ftp_ipv6) {
2567         logmsg sprintf("FTP-IPv6/%d ", $FTP6PORT);
2568     }
2569     if($tftp_ipv6) {
2570         logmsg sprintf("TFTP-IPv6/%d ", $TFTP6PORT);
2571     }
2572     logmsg sprintf("\n*   GOPHER/%d ", $GOPHERPORT);
2573     if($gopher_ipv6) {
2574         logmsg sprintf("GOPHER-IPv6/%d", $GOPHERPORT);
2575     }
2576     logmsg sprintf("\n*   SSH/%d ", $SSHPORT);
2577     logmsg sprintf("SOCKS/%d ", $SOCKSPORT);
2578     logmsg sprintf("POP3/%d ", $POP3PORT);
2579     logmsg sprintf("IMAP/%d ", $IMAPPORT);
2580     logmsg sprintf("SMTP/%d\n", $SMTPPORT);
2581     if($ftp_ipv6) {
2582         logmsg sprintf("*   POP3-IPv6/%d ", $POP36PORT);
2583         logmsg sprintf("IMAP-IPv6/%d ", $IMAP6PORT);
2584         logmsg sprintf("SMTP-IPv6/%d\n", $SMTP6PORT);
2585     }
2586     if($httptlssrv) {
2587         logmsg sprintf("*   HTTPTLS/%d ", $HTTPTLSPORT);
2588         if($has_ipv6) {
2589             logmsg sprintf("HTTPTLS-IPv6/%d ", $HTTPTLS6PORT);
2590         }
2591         logmsg "\n";
2592     }
2593     logmsg sprintf("*   HTTP-PIPE/%d \n", $HTTPPIPEPORT);
2594
2595     $has_textaware = ($^O eq 'MSWin32') || ($^O eq 'msys');
2596
2597     logmsg "***************************************** \n";
2598 }
2599
2600 #######################################################################
2601 # substitute the variable stuff into either a joined up file or
2602 # a command, in either case passed by reference
2603 #
2604 sub subVariables {
2605   my ($thing) = @_;
2606
2607   # ports
2608
2609   $$thing =~ s/%FTP6PORT/$FTP6PORT/g;
2610   $$thing =~ s/%FTP2PORT/$FTP2PORT/g;
2611   $$thing =~ s/%FTPSPORT/$FTPSPORT/g;
2612   $$thing =~ s/%FTPPORT/$FTPPORT/g;
2613
2614   $$thing =~ s/%GOPHER6PORT/$GOPHER6PORT/g;
2615   $$thing =~ s/%GOPHERPORT/$GOPHERPORT/g;
2616
2617   $$thing =~ s/%HTTPTLS6PORT/$HTTPTLS6PORT/g;
2618   $$thing =~ s/%HTTPTLSPORT/$HTTPTLSPORT/g;
2619   $$thing =~ s/%HTTP6PORT/$HTTP6PORT/g;
2620   $$thing =~ s/%HTTPSPORT/$HTTPSPORT/g;
2621   $$thing =~ s/%HTTPPORT/$HTTPPORT/g;
2622   $$thing =~ s/%HTTPPIPEPORT/$HTTPPIPEPORT/g;
2623   $$thing =~ s/%PROXYPORT/$HTTPPROXYPORT/g;
2624
2625   $$thing =~ s/%IMAP6PORT/$IMAP6PORT/g;
2626   $$thing =~ s/%IMAPPORT/$IMAPPORT/g;
2627
2628   $$thing =~ s/%POP36PORT/$POP36PORT/g;
2629   $$thing =~ s/%POP3PORT/$POP3PORT/g;
2630
2631   $$thing =~ s/%RTSP6PORT/$RTSP6PORT/g;
2632   $$thing =~ s/%RTSPPORT/$RTSPPORT/g;
2633
2634   $$thing =~ s/%SMTP6PORT/$SMTP6PORT/g;
2635   $$thing =~ s/%SMTPPORT/$SMTPPORT/g;
2636
2637   $$thing =~ s/%SOCKSPORT/$SOCKSPORT/g;
2638   $$thing =~ s/%SSHPORT/$SSHPORT/g;
2639
2640   $$thing =~ s/%TFTP6PORT/$TFTP6PORT/g;
2641   $$thing =~ s/%TFTPPORT/$TFTPPORT/g;
2642
2643   # client IP addresses
2644
2645   $$thing =~ s/%CLIENT6IP/$CLIENT6IP/g;
2646   $$thing =~ s/%CLIENTIP/$CLIENTIP/g;
2647
2648   # server IP addresses
2649
2650   $$thing =~ s/%HOST6IP/$HOST6IP/g;
2651   $$thing =~ s/%HOSTIP/$HOSTIP/g;
2652
2653   # misc
2654
2655   $$thing =~ s/%CURL/$CURL/g;
2656   $$thing =~ s/%PWD/$pwd/g;
2657   $$thing =~ s/%SRCDIR/$srcdir/g;
2658   $$thing =~ s/%USER/$USER/g;
2659
2660   # The purpose of FTPTIME2 and FTPTIME3 is to provide times that can be
2661   # used for time-out tests and that whould work on most hosts as these
2662   # adjust for the startup/check time for this particular host. We needed
2663   # to do this to make the test suite run better on very slow hosts.
2664
2665   my $ftp2 = $ftpchecktime * 2;
2666   my $ftp3 = $ftpchecktime * 3;
2667
2668   $$thing =~ s/%FTPTIME2/$ftp2/g;
2669   $$thing =~ s/%FTPTIME3/$ftp3/g;
2670 }
2671
2672 sub fixarray {
2673     my @in = @_;
2674
2675     for(@in) {
2676         subVariables \$_;
2677     }
2678     return @in;
2679 }
2680
2681 #######################################################################
2682 # Provide time stamps for single test skipped events
2683 #
2684 sub timestampskippedevents {
2685     my $testnum = $_[0];
2686
2687     return if((not defined($testnum)) || ($testnum < 1));
2688
2689     if($timestats) {
2690
2691         if($timevrfyend{$testnum}) {
2692             return;
2693         }
2694         elsif($timesrvrlog{$testnum}) {
2695             $timevrfyend{$testnum} = $timesrvrlog{$testnum};
2696             return;
2697         }
2698         elsif($timetoolend{$testnum}) {
2699             $timevrfyend{$testnum} = $timetoolend{$testnum};
2700             $timesrvrlog{$testnum} = $timetoolend{$testnum};
2701         }
2702         elsif($timetoolini{$testnum}) {
2703             $timevrfyend{$testnum} = $timetoolini{$testnum};
2704             $timesrvrlog{$testnum} = $timetoolini{$testnum};
2705             $timetoolend{$testnum} = $timetoolini{$testnum};
2706         }
2707         elsif($timesrvrend{$testnum}) {
2708             $timevrfyend{$testnum} = $timesrvrend{$testnum};
2709             $timesrvrlog{$testnum} = $timesrvrend{$testnum};
2710             $timetoolend{$testnum} = $timesrvrend{$testnum};
2711             $timetoolini{$testnum} = $timesrvrend{$testnum};
2712         }
2713         elsif($timesrvrini{$testnum}) {
2714             $timevrfyend{$testnum} = $timesrvrini{$testnum};
2715             $timesrvrlog{$testnum} = $timesrvrini{$testnum};
2716             $timetoolend{$testnum} = $timesrvrini{$testnum};
2717             $timetoolini{$testnum} = $timesrvrini{$testnum};
2718             $timesrvrend{$testnum} = $timesrvrini{$testnum};
2719         }
2720         elsif($timeprepini{$testnum}) {
2721             $timevrfyend{$testnum} = $timeprepini{$testnum};
2722             $timesrvrlog{$testnum} = $timeprepini{$testnum};
2723             $timetoolend{$testnum} = $timeprepini{$testnum};
2724             $timetoolini{$testnum} = $timeprepini{$testnum};
2725             $timesrvrend{$testnum} = $timeprepini{$testnum};
2726             $timesrvrini{$testnum} = $timeprepini{$testnum};
2727         }
2728     }
2729 }
2730
2731 #######################################################################
2732 # Run a single specified test case
2733 #
2734 sub singletest {
2735     my ($evbased, # 1 means switch on if possible (and "curl" is tested)
2736                   # returns "not a test" if it can't be used for this test
2737         $testnum,
2738         $count,
2739         $total)=@_;
2740
2741     my @what;
2742     my $why;
2743     my %feature;
2744     my $cmd;
2745     my $disablevalgrind;
2746
2747     # copy test number to a global scope var, this allows
2748     # testnum checking when starting test harness servers.
2749     $testnumcheck = $testnum;
2750
2751     # timestamp test preparation start
2752     $timeprepini{$testnum} = Time::HiRes::time() if($timestats);
2753
2754     if($disttests !~ /test$testnum\W/ ) {
2755         logmsg "Warning: test$testnum not present in tests/data/Makefile.am\n";
2756     }
2757     if($disabled{$testnum}) {
2758         logmsg "Warning: test$testnum is explicitly disabled\n";
2759     }
2760
2761     # load the test case file definition
2762     if(loadtest("${TESTDIR}/test${testnum}")) {
2763         if($verbose) {
2764             # this is not a test
2765             logmsg "RUN: $testnum doesn't look like a test case\n";
2766         }
2767         $why = "no test";
2768     }
2769     else {
2770         @what = getpart("client", "features");
2771     }
2772
2773     # We require a feature to be present
2774     for(@what) {
2775         my $f = $_;
2776         $f =~ s/\s//g;
2777
2778         if($f =~ /^([^!].*)$/) {
2779             # Store the feature for later
2780             $feature{$1} = $1;
2781
2782             if($1 eq "SSL") {
2783                 if($ssl_version) {
2784                     next;
2785                 }
2786             }
2787             elsif($1 eq "OpenSSL") {
2788                 if($has_openssl) {
2789                     next;
2790                 }
2791             }
2792             elsif($1 eq "GnuTLS") {
2793                 if($has_gnutls) {
2794                     next;
2795                 }
2796             }
2797             elsif($1 eq "NSS") {
2798                 if($has_nss) {
2799                     next;
2800                 }
2801             }
2802             elsif($1 eq "axTLS") {
2803                 if($has_axtls) {
2804                     next;
2805                 }
2806             }
2807             elsif($1 eq "WinSSL") {
2808                 if($has_winssl) {
2809                     next;
2810                 }
2811             }
2812             elsif($1 eq "DarwinSSL") {
2813                 if($has_darwinssl) {
2814                     next;
2815                 }
2816             }
2817             elsif($1 eq "unittest") {
2818                 if($debug_build) {
2819                     next;
2820                 }
2821             }
2822             elsif($1 eq "debug") {
2823                 if($debug_build) {
2824                     next;
2825                 }
2826             }
2827             elsif($1 eq "TrackMemory") {
2828                 if($has_memory_tracking) {
2829                     next;
2830                 }
2831             }
2832             elsif($1 eq "large_file") {
2833                 if($large_file) {
2834                     next;
2835                 }
2836             }
2837             elsif($1 eq "idn") {
2838                 if($has_idn) {
2839                     next;
2840                 }
2841             }
2842             elsif($1 eq "ipv6") {
2843                 if($has_ipv6) {
2844                     next;
2845                 }
2846             }
2847             elsif($1 eq "libz") {
2848                 if($has_libz) {
2849                     next;
2850                 }
2851             }
2852             elsif($1 eq "NTLM") {
2853                 if($has_ntlm) {
2854                     next;
2855                 }
2856             }
2857             elsif($1 eq "NTLM_WB") {
2858                 if($has_ntlm_wb) {
2859                     next;
2860                 }
2861             }
2862             elsif($1 eq "SSPI") {
2863                 if($has_sspi) {
2864                     next;
2865                 }
2866             }
2867             elsif($1 eq "getrlimit") {
2868                 if($has_getrlimit) {
2869                     next;
2870                 }
2871             }
2872             elsif($1 eq "crypto") {
2873                 if($has_crypto) {
2874                     next;
2875                 }
2876             }
2877             elsif($1 eq "TLS-SRP") {
2878                 if($has_tls_srp) {
2879                     next;
2880                 }
2881             }
2882             elsif($1 eq "Metalink") {
2883                 if($has_metalink) {
2884                     next;
2885                 }
2886             }
2887             elsif($1 eq "socks") {
2888                 next;
2889             }
2890             # See if this "feature" is in the list of supported protocols
2891             elsif (grep /^\Q$1\E$/i, @protocols) {
2892                 next;
2893             }
2894
2895             $why = "curl lacks $1 support";
2896             last;
2897         }
2898     }
2899
2900     # We require a feature to not be present
2901     if(!$why) {
2902         for(@what) {
2903             my $f = $_;
2904             $f =~ s/\s//g;
2905
2906             if($f =~ /^!(.*)$/) {
2907                 if($1 eq "SSL") {
2908                     if(!$ssl_version) {
2909                         next;
2910                     }
2911                 }
2912                 elsif($1 eq "OpenSSL") {
2913                     if(!$has_openssl) {
2914                         next;
2915                     }
2916                 }
2917                 elsif($1 eq "GnuTLS") {
2918                     if(!$has_gnutls) {
2919                         next;
2920                     }
2921                 }
2922                 elsif($1 eq "NSS") {
2923                     if(!$has_nss) {
2924                         next;
2925                     }
2926                 }
2927                 elsif($1 eq "axTLS") {
2928                     if(!$has_axtls) {
2929                         next;
2930                     }
2931                 }
2932                 elsif($1 eq "WinSSL") {
2933                     if(!$has_winssl) {
2934                         next;
2935                     }
2936                 }
2937                 elsif($1 eq "DarwinSSL") {
2938                     if(!$has_darwinssl) {
2939                         next;
2940                     }
2941                 }
2942                 elsif($1 eq "TrackMemory") {
2943                     if(!$has_memory_tracking) {
2944                         next;
2945                     }
2946                 }
2947                 elsif($1 eq "large_file") {
2948                     if(!$large_file) {
2949                         next;
2950                     }
2951                 }
2952                 elsif($1 eq "idn") {
2953                     if(!$has_idn) {
2954                         next;
2955                     }
2956                 }
2957                 elsif($1 eq "ipv6") {
2958                     if(!$has_ipv6) {
2959                         next;
2960                     }
2961                 }
2962                 elsif($1 eq "libz") {
2963                     if(!$has_libz) {
2964                         next;
2965                     }
2966                 }
2967                 elsif($1 eq "NTLM") {
2968                     if(!$has_ntlm) {
2969                         next;
2970                     }
2971                 }
2972                 elsif($1 eq "NTLM_WB") {
2973                     if(!$has_ntlm_wb) {
2974                         next;
2975                     }
2976                 }
2977                 elsif($1 eq "SSPI") {
2978                     if(!$has_sspi) {
2979                         next;
2980                     }
2981                 }
2982                 elsif($1 eq "getrlimit") {
2983                     if(!$has_getrlimit) {
2984                         next;
2985                     }
2986                 }
2987                 elsif($1 eq "crypto") {
2988                     if(!$has_crypto) {
2989                         next;
2990                     }
2991                 }
2992                 elsif($1 eq "TLS-SRP") {
2993                     if(!$has_tls_srp) {
2994                         next;
2995                     }
2996                 }
2997                 elsif($1 eq "Metalink") {
2998                     if(!$has_metalink) {
2999                         next;
3000                     }
3001                 }
3002                 else {
3003                     next;
3004                 }
3005             }
3006             else {
3007                 next;
3008             }
3009
3010             $why = "curl has $1 support";
3011             last;
3012         }
3013     }
3014
3015     if(!$why) {
3016         my @keywords = getpart("info", "keywords");
3017         my $match;
3018         my $k;
3019         for $k (@keywords) {
3020             chomp $k;
3021             if ($disabled_keywords{$k}) {
3022                 $why = "disabled by keyword";
3023             } elsif ($enabled_keywords{$k}) {
3024                 $match = 1;
3025             }
3026         }
3027
3028         if(!$why && !$match && %enabled_keywords) {
3029             $why = "disabled by missing keyword";
3030         }
3031     }
3032
3033     # test definition may instruct to (un)set environment vars
3034     # this is done this early, so that the precheck can use environment
3035     # variables and still bail out fine on errors
3036
3037     # restore environment variables that were modified in a previous run
3038     foreach my $var (keys %oldenv) {
3039         if($oldenv{$var} eq 'notset') {
3040             delete $ENV{$var} if($ENV{$var});
3041         }
3042         else {
3043             $ENV{$var} = $oldenv{$var};
3044         }
3045         delete $oldenv{$var};
3046     }
3047
3048     # remove test server commands file before servers are started/verified
3049     unlink($FTPDCMD) if(-f $FTPDCMD);
3050
3051     # timestamp required servers verification start
3052     $timesrvrini{$testnum} = Time::HiRes::time() if($timestats);
3053
3054     if(!$why) {
3055         $why = serverfortest($testnum);
3056     }
3057
3058     # timestamp required servers verification end
3059     $timesrvrend{$testnum} = Time::HiRes::time() if($timestats);
3060
3061     my @setenv = getpart("client", "setenv");
3062     if(@setenv) {
3063         foreach my $s (@setenv) {
3064             chomp $s;
3065             subVariables \$s;
3066             if($s =~ /([^=]*)=(.*)/) {
3067                 my ($var, $content) = ($1, $2);
3068                 # remember current setting, to restore it once test runs
3069                 $oldenv{$var} = ($ENV{$var})?"$ENV{$var}":'notset';
3070                 # set new value
3071                 if(!$content) {
3072                     delete $ENV{$var} if($ENV{$var});
3073                 }
3074                 else {
3075                     if($var =~ /^LD_PRELOAD/) {
3076                         if(exe_ext() && (exe_ext() eq '.exe')) {
3077                             # print "Skipping LD_PRELOAD due to lack of OS support\n";
3078                             next;
3079                         }
3080                         if($debug_build || ($has_shared ne "yes")) {
3081                             # print "Skipping LD_PRELOAD due to no release shared build\n";
3082                             next;
3083                         }
3084                     }
3085                     $ENV{$var} = "$content";
3086                 }
3087             }
3088         }
3089     }
3090
3091     if(!$why) {
3092         # TODO:
3093         # Add a precheck cache. If a precheck command was already invoked
3094         # exactly like this, then use the previous result to speed up
3095         # successive test invokes!
3096
3097         my @precheck = getpart("client", "precheck");
3098         if(@precheck) {
3099             $cmd = $precheck[0];
3100             chomp $cmd;
3101             subVariables \$cmd;
3102             if($cmd) {
3103                 my @p = split(/ /, $cmd);
3104                 if($p[0] !~ /\//) {
3105                     # the first word, the command, does not contain a slash so
3106                     # we will scan the "improved" PATH to find the command to
3107                     # be able to run it
3108                     my $fullp = checktestcmd($p[0]);
3109
3110                     if($fullp) {
3111                         $p[0] = $fullp;
3112                     }
3113                     $cmd = join(" ", @p);
3114                 }
3115
3116                 my @o = `$cmd 2>/dev/null`;
3117                 if($o[0]) {
3118                     $why = $o[0];
3119                     chomp $why;
3120                 } elsif($?) {
3121                     $why = "precheck command error";
3122                 }
3123                 logmsg "prechecked $cmd\n" if($verbose);
3124             }
3125         }
3126     }
3127
3128     if($why && !$listonly) {
3129         # there's a problem, count it as "skipped"
3130         $skipped++;
3131         $skipped{$why}++;
3132         $teststat[$testnum]=$why; # store reason for this test case
3133
3134         if(!$short) {
3135             if($skipped{$why} <= 3) {
3136                 # show only the first three skips for each reason
3137                 logmsg sprintf("test %03d SKIPPED: $why\n", $testnum);
3138             }
3139         }
3140
3141         timestampskippedevents($testnum);
3142         return -1;
3143     }
3144     logmsg sprintf("test %03d...", $testnum) if(!$automakestyle);
3145
3146     # extract the reply data
3147     my @reply = getpart("reply", "data");
3148     my @replycheck = getpart("reply", "datacheck");
3149
3150     if (@replycheck) {
3151         # we use this file instead to check the final output against
3152
3153         my %hash = getpartattr("reply", "datacheck");
3154         if($hash{'nonewline'}) {
3155             # Yes, we must cut off the final newline from the final line
3156             # of the datacheck
3157             chomp($replycheck[$#replycheck]);
3158         }
3159
3160         @reply=@replycheck;
3161     }
3162
3163     # this is the valid protocol blurb curl should generate
3164     my @protocol= fixarray ( getpart("verify", "protocol") );
3165
3166     # this is the valid protocol blurb curl should generate to a proxy
3167     my @proxyprot = fixarray ( getpart("verify", "proxy") );
3168
3169     # redirected stdout/stderr to these files
3170     $STDOUT="$LOGDIR/stdout$testnum";
3171     $STDERR="$LOGDIR/stderr$testnum";
3172
3173     # if this section exists, we verify that the stdout contained this:
3174     my @validstdout = fixarray ( getpart("verify", "stdout") );
3175
3176     # if this section exists, we verify upload
3177     my @upload = getpart("verify", "upload");
3178
3179     # if this section exists, it might be FTP server instructions:
3180     my @ftpservercmd = getpart("reply", "servercmd");
3181
3182     my $CURLOUT="$LOGDIR/curl$testnum.out"; # curl output if not stdout
3183
3184     # name of the test
3185     my @testname= getpart("client", "name");
3186     my $testname = $testname[0];
3187     $testname =~ s/\n//g;
3188     logmsg "[$testname]\n" if(!$short);
3189
3190     if($listonly) {
3191         timestampskippedevents($testnum);
3192         return 0; # look successful
3193     }
3194
3195     my @codepieces = getpart("client", "tool");
3196
3197     my $tool="";
3198     if(@codepieces) {
3199         $tool = $codepieces[0];
3200         chomp $tool;
3201     }
3202
3203     # remove server output logfile
3204     unlink($SERVERIN);
3205     unlink($SERVER2IN);
3206     unlink($PROXYIN);
3207
3208     if(@ftpservercmd) {
3209         # write the instructions to file
3210         writearray($FTPDCMD, \@ftpservercmd);
3211     }
3212
3213     # get the command line options to use
3214     my @blaha;
3215     ($cmd, @blaha)= getpart("client", "command");
3216
3217     if($cmd) {
3218         # make some nice replace operations
3219         $cmd =~ s/\n//g; # no newlines please
3220         # substitute variables in the command line
3221         subVariables \$cmd;
3222     }
3223     else {
3224         # there was no command given, use something silly
3225         $cmd="-";
3226     }
3227     if($has_memory_tracking) {
3228         unlink($memdump);
3229     }
3230
3231     # create a (possibly-empty) file before starting the test
3232     my @inputfile=getpart("client", "file");
3233     my %fileattr = getpartattr("client", "file");
3234     my $filename=$fileattr{'name'};
3235     if(@inputfile || $filename) {
3236         if(!$filename) {
3237             logmsg "ERROR: section client=>file has no name attribute\n";
3238             timestampskippedevents($testnum);
3239             return -1;
3240         }
3241         my $fileContent = join('', @inputfile);
3242         subVariables \$fileContent;
3243 #        logmsg "DEBUG: writing file " . $filename . "\n";
3244         open(OUTFILE, ">$filename");
3245         binmode OUTFILE; # for crapage systems, use binary
3246         print OUTFILE $fileContent;
3247         close(OUTFILE);
3248     }
3249
3250     my %cmdhash = getpartattr("client", "command");
3251
3252     my $out="";
3253
3254     if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-output/)) {
3255         #We may slap on --output!
3256         if (!@validstdout) {
3257             $out=" --output $CURLOUT ";
3258         }
3259     }
3260
3261     my $serverlogslocktimeout = $defserverlogslocktimeout;
3262     if($cmdhash{'timeout'}) {
3263         # test is allowed to override default server logs lock timeout
3264         if($cmdhash{'timeout'} =~ /(\d+)/) {
3265             $serverlogslocktimeout = $1 if($1 >= 0);
3266         }
3267     }
3268
3269     my $postcommanddelay = $defpostcommanddelay;
3270     if($cmdhash{'delay'}) {
3271         # test is allowed to specify a delay after command is executed
3272         if($cmdhash{'delay'} =~ /(\d+)/) {
3273             $postcommanddelay = $1 if($1 > 0);
3274         }
3275     }
3276
3277     my $CMDLINE;
3278     my $cmdargs;
3279     my $cmdtype = $cmdhash{'type'} || "default";
3280     my $fail_due_event_based = $evbased;
3281     if($cmdtype eq "perl") {
3282         # run the command line prepended with "perl"
3283         $cmdargs ="$cmd";
3284         $CMDLINE = "perl ";
3285         $tool=$CMDLINE;
3286         $disablevalgrind=1;
3287     }
3288     elsif($cmdtype eq "shell") {
3289         # run the command line prepended with "/bin/sh"
3290         $cmdargs ="$cmd";
3291         $CMDLINE = "/bin/sh ";
3292         $tool=$CMDLINE;
3293         $disablevalgrind=1;
3294     }
3295     elsif(!$tool) {
3296         # run curl, add suitable command line options
3297         $cmd = "-1 ".$cmd if(exists $feature{"SSL"} && ($has_axtls));
3298
3299         my $inc="";
3300         if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-include/)) {
3301             $inc = " --include";
3302         }
3303
3304         $cmdargs = "$out$inc ";
3305         $cmdargs .= "--trace-ascii log/trace$testnum ";
3306         $cmdargs .= "--trace-time ";
3307         if($evbased) {
3308             $cmdargs .= "--test-event ";
3309             $fail_due_event_based--;
3310         }
3311         $cmdargs .= $cmd;
3312     }
3313     else {
3314         $cmdargs = " $cmd"; # $cmd is the command line for the test file
3315         $CURLOUT = $STDOUT; # sends received data to stdout
3316
3317         if($tool =~ /^lib/) {
3318             $CMDLINE="$LIBDIR/$tool";
3319         }
3320         elsif($tool =~ /^unit/) {
3321             $CMDLINE="$UNITDIR/$tool";
3322         }
3323
3324         if(! -f $CMDLINE) {
3325             logmsg "The tool set in the test case for this: '$tool' does not exist\n";
3326             timestampskippedevents($testnum);
3327             return -1;
3328         }
3329         $DBGCURL=$CMDLINE;
3330     }
3331
3332     if($fail_due_event_based) {
3333         logmsg "This test cannot run event based\n";
3334         return -1;
3335     }
3336
3337     my @stdintest = getpart("client", "stdin");
3338
3339     if(@stdintest) {
3340         my $stdinfile="$LOGDIR/stdin-for-$testnum";
3341
3342         my %hash = getpartattr("client", "stdin");
3343         if($hash{'nonewline'}) {
3344             # cut off the final newline from the final line of the stdin data
3345             chomp($stdintest[$#stdintest]);
3346         }
3347
3348         writearray($stdinfile, \@stdintest);
3349
3350         $cmdargs .= " <$stdinfile";
3351     }
3352
3353     if(!$tool) {
3354         $CMDLINE="$CURL";
3355     }
3356
3357     my $usevalgrind;
3358     if($valgrind && !$disablevalgrind) {
3359         my @valgrindoption = getpart("verify", "valgrind");
3360         if((!@valgrindoption) || ($valgrindoption[0] !~ /disable/)) {
3361             $usevalgrind = 1;
3362             my $valgrindcmd = "$valgrind ";
3363             $valgrindcmd .= "$valgrind_tool " if($valgrind_tool);
3364             $valgrindcmd .= "--leak-check=yes ";
3365             $valgrindcmd .= "--suppressions=$srcdir/valgrind.supp ";
3366             $valgrindcmd .= "--num-callers=16 ";
3367             $valgrindcmd .= "${valgrind_logfile}=$LOGDIR/valgrind$testnum";
3368             $CMDLINE = "$valgrindcmd $CMDLINE";
3369         }
3370     }
3371
3372     $CMDLINE .= "$cmdargs >$STDOUT 2>$STDERR";
3373
3374     if($verbose) {
3375         logmsg "$CMDLINE\n";
3376     }
3377
3378     print CMDLOG "$CMDLINE\n";
3379
3380     unlink("core");
3381
3382     my $dumped_core;
3383     my $cmdres;
3384
3385     # Apr 2007: precommand isn't being used and could be removed
3386     my @precommand= getpart("client", "precommand");
3387     if($precommand[0]) {
3388         # this is pure perl to eval!
3389         my $code = join("", @precommand);
3390         eval $code;
3391         if($@) {
3392             logmsg "perl: $code\n";
3393             logmsg "precommand: $@";
3394             stopservers($verbose);
3395             timestampskippedevents($testnum);
3396             return -1;
3397         }
3398     }
3399
3400     if($gdbthis) {
3401         my $gdbinit = "$TESTDIR/gdbinit$testnum";
3402         open(GDBCMD, ">$LOGDIR/gdbcmd");
3403         print GDBCMD "set args $cmdargs\n";
3404         print GDBCMD "show args\n";
3405         print GDBCMD "source $gdbinit\n" if -e $gdbinit;
3406         close(GDBCMD);
3407     }
3408
3409     # timestamp starting of test command
3410     $timetoolini{$testnum} = Time::HiRes::time() if($timestats);
3411
3412     # run the command line we built
3413     if ($torture) {
3414         $cmdres = torture($CMDLINE,
3415                        "$gdb --directory libtest $DBGCURL -x $LOGDIR/gdbcmd");
3416     }
3417     elsif($gdbthis) {
3418         my $GDBW = ($gdbxwin) ? "-w" : "";
3419         runclient("$gdb --directory libtest $DBGCURL $GDBW -x $LOGDIR/gdbcmd");
3420         $cmdres=0; # makes it always continue after a debugged run
3421     }
3422     else {
3423         $cmdres = runclient("$CMDLINE");
3424         my $signal_num  = $cmdres & 127;
3425         $dumped_core = $cmdres & 128;
3426
3427         if(!$anyway && ($signal_num || $dumped_core)) {
3428             $cmdres = 1000;
3429         }
3430         else {
3431             $cmdres >>= 8;
3432             $cmdres = (2000 + $signal_num) if($signal_num && !$cmdres);
3433         }
3434     }
3435
3436     # timestamp finishing of test command
3437     $timetoolend{$testnum} = Time::HiRes::time() if($timestats);
3438
3439     if(!$dumped_core) {
3440         if(-r "core") {
3441             # there's core file present now!
3442             $dumped_core = 1;
3443         }
3444     }
3445
3446     if($dumped_core) {
3447         logmsg "core dumped\n";
3448         if(0 && $gdb) {
3449             logmsg "running gdb for post-mortem analysis:\n";
3450             open(GDBCMD, ">$LOGDIR/gdbcmd2");
3451             print GDBCMD "bt\n";
3452             close(GDBCMD);
3453             runclient("$gdb --directory libtest -x $LOGDIR/gdbcmd2 -batch $DBGCURL core ");
3454      #       unlink("$LOGDIR/gdbcmd2");
3455         }
3456     }
3457
3458     # If a server logs advisor read lock file exists, it is an indication
3459     # that the server has not yet finished writing out all its log files,
3460     # including server request log files used for protocol verification.
3461     # So, if the lock file exists the script waits here a certain amount
3462     # of time until the server removes it, or the given time expires.
3463
3464     if($serverlogslocktimeout) {
3465         my $lockretry = $serverlogslocktimeout * 20;
3466         while((-f $SERVERLOGS_LOCK) && $lockretry--) {
3467             select(undef, undef, undef, 0.05);
3468         }
3469         if(($lockretry < 0) &&
3470            ($serverlogslocktimeout >= $defserverlogslocktimeout)) {
3471             logmsg "Warning: server logs lock timeout ",
3472                    "($serverlogslocktimeout seconds) expired\n";
3473         }
3474     }
3475
3476     # Test harness ssh server does not have this synchronization mechanism,
3477     # this implies that some ssh server based tests might need a small delay
3478     # once that the client command has run to avoid false test failures.
3479     #
3480     # gnutls-serv also lacks this synchronization mechanism, so gnutls-serv
3481     # based tests might need a small delay once that the client command has
3482     # run to avoid false test failures.
3483
3484     sleep($postcommanddelay) if($postcommanddelay);
3485
3486     # timestamp removal of server logs advisor read lock
3487     $timesrvrlog{$testnum} = Time::HiRes::time() if($timestats);
3488
3489     # test definition might instruct to stop some servers
3490     # stop also all servers relative to the given one
3491
3492     my @killtestservers = getpart("client", "killserver");
3493     if(@killtestservers) {
3494         #
3495         # All servers relative to the given one must be stopped also
3496         #
3497         my @killservers;
3498         foreach my $server (@killtestservers) {
3499             chomp $server;
3500             if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|))$/) {
3501                 # given a stunnel ssl server, also kill non-ssl underlying one
3502                 push @killservers, "${1}${2}";
3503             }
3504             elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|))$/) {
3505                 # given a non-ssl server, also kill stunnel piggybacking one
3506                 push @killservers, "${1}s${2}";
3507             }
3508             elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) {
3509                 # given a socks server, also kill ssh underlying one
3510                 push @killservers, "ssh${2}";
3511             }
3512             elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) {
3513                 # given a ssh server, also kill socks piggybacking one
3514                 push @killservers, "socks${2}";
3515             }
3516             push @killservers, $server;
3517         }
3518         #
3519         # kill sockfilter processes for pingpong relative servers
3520         #
3521         foreach my $server (@killservers) {
3522             if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
3523                 my $proto  = $1;
3524                 my $idnum  = ($2 && ($2 > 1)) ? $2 : 1;
3525                 my $ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4;
3526                 killsockfilters($proto, $ipvnum, $idnum, $verbose);
3527             }
3528         }
3529         #
3530         # kill server relative pids clearing them in %run hash
3531         #
3532         my $pidlist;
3533         foreach my $server (@killservers) {
3534             if($run{$server}) {
3535                 $pidlist .= "$run{$server} ";
3536                 $run{$server} = 0;
3537             }
3538             $runcert{$server} = 0 if($runcert{$server});
3539         }
3540         killpid($verbose, $pidlist);
3541         #
3542         # cleanup server pid files
3543         #
3544         foreach my $server (@killservers) {
3545             my $pidfile = $serverpidfile{$server};
3546             my $pid = processexists($pidfile);
3547             if($pid > 0) {
3548                 logmsg "Warning: $server server unexpectedly alive\n";
3549                 killpid($verbose, $pid);
3550             }
3551             unlink($pidfile) if(-f $pidfile);
3552         }
3553     }
3554
3555     # remove the test server commands file after each test
3556     unlink($FTPDCMD) if(-f $FTPDCMD);
3557
3558     # run the postcheck command
3559     my @postcheck= getpart("client", "postcheck");
3560     if(@postcheck) {
3561         $cmd = $postcheck[0];
3562         chomp $cmd;
3563         subVariables \$cmd;
3564         if($cmd) {
3565             logmsg "postcheck $cmd\n" if($verbose);
3566             my $rc = runclient("$cmd");
3567             # Must run the postcheck command in torture mode in order
3568             # to clean up, but the result can't be relied upon.
3569             if($rc != 0 && !$torture) {
3570                 logmsg " postcheck FAILED\n";
3571                 # timestamp test result verification end
3572                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3573                 return 1;
3574             }
3575         }
3576     }
3577
3578     # restore environment variables that were modified
3579     if(%oldenv) {
3580         foreach my $var (keys %oldenv) {
3581             if($oldenv{$var} eq 'notset') {
3582                 delete $ENV{$var} if($ENV{$var});
3583             }
3584             else {
3585                 $ENV{$var} = "$oldenv{$var}";
3586             }
3587         }
3588     }
3589
3590     # Skip all the verification on torture tests
3591     if ($torture) {
3592         if(!$cmdres && !$keepoutfiles) {
3593             cleardir($LOGDIR);
3594         }
3595         # timestamp test result verification end
3596         $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3597         return $cmdres;
3598     }
3599
3600     my @err = getpart("verify", "errorcode");
3601     my $errorcode = $err[0] || "0";
3602     my $ok="";
3603     my $res;
3604     chomp $errorcode;
3605     if (@validstdout) {
3606         # verify redirected stdout
3607         my @actual = loadarray($STDOUT);
3608
3609         # variable-replace in the stdout we have from the test case file
3610         @validstdout = fixarray(@validstdout);
3611
3612         # get all attributes
3613         my %hash = getpartattr("verify", "stdout");
3614
3615         # get the mode attribute
3616         my $filemode=$hash{'mode'};
3617         if($filemode && ($filemode eq "text") && $has_textaware) {
3618             # text mode when running on windows: fix line endings
3619             map s/\r\n/\n/g, @actual;
3620         }
3621
3622         if($hash{'nonewline'}) {
3623             # Yes, we must cut off the final newline from the final line
3624             # of the protocol data
3625             chomp($validstdout[$#validstdout]);
3626         }
3627
3628         $res = compare($testnum, $testname, "stdout", \@actual, \@validstdout);
3629         if($res) {
3630             return 1;
3631         }
3632         $ok .= "s";
3633     }
3634     else {
3635         $ok .= "-"; # stdout not checked
3636     }
3637
3638     my %replyattr = getpartattr("reply", "data");
3639     if(!$replyattr{'nocheck'} && (@reply || $replyattr{'sendzero'})) {
3640         # verify the received data
3641         my @out = loadarray($CURLOUT);
3642         my %hash = getpartattr("reply", "data");
3643         # get the mode attribute
3644         my $filemode=$hash{'mode'};
3645         if($filemode && ($filemode eq "text") && $has_textaware) {
3646             # text mode when running on windows: fix line endings
3647             map s/\r\n/\n/g, @out;
3648         }
3649
3650         $res = compare($testnum, $testname, "data", \@out, \@reply);
3651         if ($res) {
3652             return 1;
3653         }
3654         $ok .= "d";
3655     }
3656     else {
3657         $ok .= "-"; # data not checked
3658     }
3659
3660     if(@upload) {
3661         # verify uploaded data
3662         my @out = loadarray("$LOGDIR/upload.$testnum");
3663         $res = compare($testnum, $testname, "upload", \@out, \@upload);
3664         if ($res) {
3665             return 1;
3666         }
3667         $ok .= "u";
3668     }
3669     else {
3670         $ok .= "-"; # upload not checked
3671     }
3672
3673     if(@protocol) {
3674         # Verify the sent request
3675         my @out = loadarray($SERVERIN);
3676
3677         # what to cut off from the live protocol sent by curl
3678         my @strip = getpart("verify", "strip");
3679
3680         my @protstrip=@protocol;
3681
3682         # check if there's any attributes on the verify/protocol section
3683         my %hash = getpartattr("verify", "protocol");
3684
3685         if($hash{'nonewline'}) {
3686             # Yes, we must cut off the final newline from the final line
3687             # of the protocol data
3688             chomp($protstrip[$#protstrip]);
3689         }
3690
3691         for(@strip) {
3692             # strip off all lines that match the patterns from both arrays
3693             chomp $_;
3694             @out = striparray( $_, \@out);
3695             @protstrip= striparray( $_, \@protstrip);
3696         }
3697
3698         # what parts to cut off from the protocol
3699         my @strippart = getpart("verify", "strippart");
3700         my $strip;
3701         for $strip (@strippart) {
3702             chomp $strip;
3703             for(@out) {
3704                 eval $strip;
3705             }
3706         }
3707
3708         $res = compare($testnum, $testname, "protocol", \@out, \@protstrip);
3709         if($res) {
3710             return 1;
3711         }
3712
3713         $ok .= "p";
3714
3715     }
3716     else {
3717         $ok .= "-"; # protocol not checked
3718     }
3719
3720     if(@proxyprot) {
3721         # Verify the sent proxy request
3722         my @out = loadarray($PROXYIN);
3723
3724         # what to cut off from the live protocol sent by curl, we use the
3725         # same rules as for <protocol>
3726         my @strip = getpart("verify", "strip");
3727
3728         my @protstrip=@proxyprot;
3729
3730         # check if there's any attributes on the verify/protocol section
3731         my %hash = getpartattr("verify", "proxy");
3732
3733         if($hash{'nonewline'}) {
3734             # Yes, we must cut off the final newline from the final line
3735             # of the protocol data
3736             chomp($protstrip[$#protstrip]);
3737         }
3738
3739         for(@strip) {
3740             # strip off all lines that match the patterns from both arrays
3741             chomp $_;
3742             @out = striparray( $_, \@out);
3743             @protstrip= striparray( $_, \@protstrip);
3744         }
3745
3746         # what parts to cut off from the protocol
3747         my @strippart = getpart("verify", "strippart");
3748         my $strip;
3749         for $strip (@strippart) {
3750             chomp $strip;
3751             for(@out) {
3752                 eval $strip;
3753             }
3754         }
3755
3756         $res = compare($testnum, $testname, "proxy", \@out, \@protstrip);
3757         if($res) {
3758             return 1;
3759         }
3760
3761         $ok .= "P";
3762
3763     }
3764     else {
3765         $ok .= "-"; # protocol not checked
3766     }
3767
3768     my $outputok;
3769     for my $partsuffix (('', '1', '2', '3', '4')) {
3770         my @outfile=getpart("verify", "file".$partsuffix);
3771         if(@outfile || partexists("verify", "file".$partsuffix) ) {
3772             # we're supposed to verify a dynamically generated file!
3773             my %hash = getpartattr("verify", "file".$partsuffix);
3774
3775             my $filename=$hash{'name'};
3776             if(!$filename) {
3777                 logmsg "ERROR: section verify=>file$partsuffix ".
3778                        "has no name attribute\n";
3779                 stopservers($verbose);
3780                 # timestamp test result verification end
3781                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3782                 return -1;
3783             }
3784             my @generated=loadarray($filename);
3785
3786             # what parts to cut off from the file
3787             my @stripfile = getpart("verify", "stripfile".$partsuffix);
3788
3789             my $filemode=$hash{'mode'};
3790             if($filemode && ($filemode eq "text") && $has_textaware) {
3791                 # text mode when running on windows means adding an extra
3792                 # strip expression
3793                 push @stripfile, "s/\r\n/\n/";
3794             }
3795
3796             my $strip;
3797             for $strip (@stripfile) {
3798                 chomp $strip;
3799                 for(@generated) {
3800                     eval $strip;
3801                 }
3802             }
3803
3804             @outfile = fixarray(@outfile);
3805
3806             $res = compare($testnum, $testname, "output ($filename)",
3807                            \@generated, \@outfile);
3808             if($res) {
3809                 return 1;
3810             }
3811
3812             $outputok = 1; # output checked
3813         }
3814     }
3815     $ok .= ($outputok) ? "o" : "-"; # output checked or not
3816
3817     # accept multiple comma-separated error codes
3818     my @splerr = split(/ *, */, $errorcode);
3819     my $errok;
3820     foreach my $e (@splerr) {
3821         if($e == $cmdres) {
3822             # a fine error code
3823             $errok = 1;
3824             last;
3825         }
3826     }
3827
3828     if($errok) {
3829         $ok .= "e";
3830     }
3831     else {
3832         if(!$short) {
3833             logmsg sprintf("\n%s returned $cmdres, when expecting %s\n",
3834                            (!$tool)?"curl":$tool, $errorcode);
3835         }
3836         logmsg " exit FAILED\n";
3837         # timestamp test result verification end
3838         $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3839         return 1;
3840     }
3841
3842     if($has_memory_tracking) {
3843         if(! -f $memdump) {
3844             logmsg "\n** ALERT! memory tracking with no output file?\n"
3845                 if(!$cmdtype eq "perl");
3846         }
3847         else {
3848             my @memdata=`$memanalyze $memdump`;
3849             my $leak=0;
3850             for(@memdata) {
3851                 if($_ ne "") {
3852                     # well it could be other memory problems as well, but
3853                     # we call it leak for short here
3854                     $leak=1;
3855                 }
3856             }
3857             if($leak) {
3858                 logmsg "\n** MEMORY FAILURE\n";
3859                 logmsg @memdata;
3860                 # timestamp test result verification end
3861                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3862                 return 1;
3863             }
3864             else {
3865                 $ok .= "m";
3866             }
3867         }
3868     }
3869     else {
3870         $ok .= "-"; # memory not checked
3871     }
3872
3873     if($valgrind) {
3874         if($usevalgrind) {
3875             unless(opendir(DIR, "$LOGDIR")) {
3876                 logmsg "ERROR: unable to read $LOGDIR\n";
3877                 # timestamp test result verification end
3878                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3879                 return 1;
3880             }
3881             my @files = readdir(DIR);
3882             closedir(DIR);
3883             my $vgfile;
3884             foreach my $file (@files) {
3885                 if($file =~ /^valgrind$testnum(\..*|)$/) {
3886                     $vgfile = $file;
3887                     last;
3888                 }
3889             }
3890             if(!$vgfile) {
3891                 logmsg "ERROR: valgrind log file missing for test $testnum\n";
3892                 # timestamp test result verification end
3893                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3894                 return 1;
3895             }
3896             my @e = valgrindparse($srcdir, $feature{'SSL'}, "$LOGDIR/$vgfile");
3897             if(@e && $e[0]) {
3898                 if($automakestyle) {
3899                     logmsg "FAIL: $testnum - $testname - valgrind\n";
3900                 }
3901                 else {
3902                     logmsg " valgrind ERROR ";
3903                     logmsg @e;
3904                 }
3905                 # timestamp test result verification end
3906                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3907                 return 1;
3908             }
3909             $ok .= "v";
3910         }
3911         else {
3912             if(!$short && !$disablevalgrind) {
3913                 logmsg " valgrind SKIPPED\n";
3914             }
3915             $ok .= "-"; # skipped
3916         }
3917     }
3918     else {
3919         $ok .= "-"; # valgrind not checked
3920     }
3921     # add 'E' for event-based
3922     $ok .= $evbased ? "E" : "-";
3923
3924     logmsg "$ok " if(!$short);
3925
3926     my $sofar= time()-$start;
3927     my $esttotal = $sofar/$count * $total;
3928     my $estleft = $esttotal - $sofar;
3929     my $left=sprintf("remaining: %02d:%02d",
3930                      $estleft/60,
3931                      $estleft%60);
3932
3933     if(!$automakestyle) {
3934         logmsg sprintf("OK (%-3d out of %-3d, %s)\n", $count, $total, $left);
3935     }
3936     else {
3937         logmsg "PASS: $testnum - $testname\n";
3938     }
3939
3940     # the test succeeded, remove all log files
3941     if(!$keepoutfiles) {
3942         cleardir($LOGDIR);
3943     }
3944
3945     # timestamp test result verification end
3946     $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3947
3948     return 0;
3949 }
3950
3951 #######################################################################
3952 # Stop all running test servers
3953 #
3954 sub stopservers {
3955     my $verbose = $_[0];
3956     #
3957     # kill sockfilter processes for all pingpong servers
3958     #
3959     killallsockfilters($verbose);
3960     #
3961     # kill all server pids from %run hash clearing them
3962     #
3963     my $pidlist;
3964     foreach my $server (keys %run) {
3965         if($run{$server}) {
3966             if($verbose) {
3967                 my $prev = 0;
3968                 my $pids = $run{$server};
3969                 foreach my $pid (split(' ', $pids)) {
3970                     if($pid != $prev) {
3971                         logmsg sprintf("* kill pid for %s => %d\n",
3972                             $server, $pid);
3973                         $prev = $pid;
3974                     }
3975                 }
3976             }
3977             $pidlist .= "$run{$server} ";
3978             $run{$server} = 0;
3979         }
3980         $runcert{$server} = 0 if($runcert{$server});
3981     }
3982     killpid($verbose, $pidlist);
3983     #
3984     # cleanup all server pid files
3985     #
3986     foreach my $server (keys %serverpidfile) {
3987         my $pidfile = $serverpidfile{$server};
3988         my $pid = processexists($pidfile);
3989         if($pid > 0) {
3990             logmsg "Warning: $server server unexpectedly alive\n";
3991             killpid($verbose, $pid);
3992         }
3993         unlink($pidfile) if(-f $pidfile);
3994     }
3995 }
3996
3997 #######################################################################
3998 # startservers() starts all the named servers
3999 #
4000 # Returns: string with error reason or blank for success
4001 #
4002 sub startservers {
4003     my @what = @_;
4004     my ($pid, $pid2);
4005     for(@what) {
4006         my (@whatlist) = split(/\s+/,$_);
4007         my $what = lc($whatlist[0]);
4008         $what =~ s/[^a-z0-9-]//g;
4009
4010         my $certfile;
4011         if($what =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|))$/) {
4012             $certfile = ($whatlist[1]) ? $whatlist[1] : 'stunnel.pem';
4013         }
4014
4015         if(($what eq "pop3") ||
4016            ($what eq "ftp") ||
4017            ($what eq "imap") ||
4018            ($what eq "smtp")) {
4019             if($torture && $run{$what} &&
4020                !responsive_pingpong_server($what, "", $verbose)) {
4021                 stopserver($what);
4022             }
4023             if(!$run{$what}) {
4024                 ($pid, $pid2) = runpingpongserver($what, "", $verbose);
4025                 if($pid <= 0) {
4026                     return "failed starting ". uc($what) ." server";
4027                 }
4028                 printf ("* pid $what => %d %d\n", $pid, $pid2) if($verbose);
4029                 $run{$what}="$pid $pid2";
4030             }
4031         }
4032         elsif($what eq "ftp2") {
4033             if($torture && $run{'ftp2'} &&
4034                !responsive_pingpong_server("ftp", "2", $verbose)) {
4035                 stopserver('ftp2');
4036             }
4037             if(!$run{'ftp2'}) {
4038                 ($pid, $pid2) = runpingpongserver("ftp", "2", $verbose);
4039                 if($pid <= 0) {
4040                     return "failed starting FTP2 server";
4041                 }
4042                 printf ("* pid ftp2 => %d %d\n", $pid, $pid2) if($verbose);
4043                 $run{'ftp2'}="$pid $pid2";
4044             }
4045         }
4046         elsif($what eq "ftp-ipv6") {
4047             if($torture && $run{'ftp-ipv6'} &&
4048                !responsive_pingpong_server("ftp", "", $verbose, "ipv6")) {
4049                 stopserver('ftp-ipv6');
4050             }
4051             if(!$run{'ftp-ipv6'}) {
4052                 ($pid, $pid2) = runpingpongserver("ftp", "", $verbose, "ipv6");
4053                 if($pid <= 0) {
4054                     return "failed starting FTP-IPv6 server";
4055                 }
4056                 logmsg sprintf("* pid ftp-ipv6 => %d %d\n", $pid,
4057                        $pid2) if($verbose);
4058                 $run{'ftp-ipv6'}="$pid $pid2";
4059             }
4060         }
4061         elsif($what eq "gopher") {
4062             if($torture && $run{'gopher'} &&
4063                !responsive_http_server("gopher", $verbose, 0, $GOPHERPORT)) {
4064                 stopserver('gopher');
4065             }
4066             if(!$run{'gopher'}) {
4067                 ($pid, $pid2) = runhttpserver("gopher", $verbose, 0,
4068                                               $GOPHERPORT);
4069                 if($pid <= 0) {
4070                     return "failed starting GOPHER server";
4071                 }
4072                 logmsg sprintf ("* pid gopher => %d %d\n", $pid, $pid2)
4073                     if($verbose);
4074                 $run{'gopher'}="$pid $pid2";
4075             }
4076         }
4077         elsif($what eq "gopher-ipv6") {
4078             if($torture && $run{'gopher-ipv6'} &&
4079                !responsive_http_server("gopher", $verbose, "ipv6",
4080                                        $GOPHER6PORT)) {
4081                 stopserver('gopher-ipv6');
4082             }
4083             if(!$run{'gopher-ipv6'}) {
4084                 ($pid, $pid2) = runhttpserver("gopher", $verbose, "ipv6",
4085                                               $GOPHER6PORT);
4086                 if($pid <= 0) {
4087                     return "failed starting GOPHER-IPv6 server";
4088                 }
4089                 logmsg sprintf("* pid gopher-ipv6 => %d %d\n", $pid,
4090                                $pid2) if($verbose);
4091                 $run{'gopher-ipv6'}="$pid $pid2";
4092             }
4093         }
4094         elsif($what eq "http") {
4095             if($torture && $run{'http'} &&
4096                !responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
4097                 stopserver('http');
4098             }
4099             if(!$run{'http'}) {
4100                 ($pid, $pid2) = runhttpserver("http", $verbose, 0,
4101                                               $HTTPPORT);
4102                 if($pid <= 0) {
4103                     return "failed starting HTTP server";
4104                 }
4105                 logmsg sprintf ("* pid http => %d %d\n", $pid, $pid2)
4106                     if($verbose);
4107                 $run{'http'}="$pid $pid2";
4108             }
4109         }
4110         elsif($what eq "http-proxy") {
4111             if($torture && $run{'http-proxy'} &&
4112                !responsive_http_server("http", $verbose, "proxy",
4113                                        $HTTPPROXYPORT)) {
4114                 stopserver('http-proxy');
4115             }
4116             if(!$run{'http-proxy'}) {
4117                 ($pid, $pid2) = runhttpserver("http", $verbose, "proxy",
4118                                               $HTTPPROXYPORT);
4119                 if($pid <= 0) {
4120                     return "failed starting HTTP-proxy server";
4121                 }
4122                 logmsg sprintf ("* pid http-proxy => %d %d\n", $pid, $pid2)
4123                     if($verbose);
4124                 $run{'http-proxy'}="$pid $pid2";
4125             }
4126         }
4127         elsif($what eq "http-ipv6") {
4128             if($torture && $run{'http-ipv6'} &&
4129                !responsive_http_server("http", $verbose, "IPv6", $HTTP6PORT)) {
4130                 stopserver('http-ipv6');
4131             }
4132             if(!$run{'http-ipv6'}) {
4133                 ($pid, $pid2) = runhttpserver("http", $verbose, "ipv6",
4134                                               $HTTP6PORT);
4135                 if($pid <= 0) {
4136                     return "failed starting HTTP-IPv6 server";
4137                 }
4138                 logmsg sprintf("* pid http-ipv6 => %d %d\n", $pid, $pid2)
4139                     if($verbose);
4140                 $run{'http-ipv6'}="$pid $pid2";
4141             }
4142         }
4143         elsif($what eq "http-pipe") {
4144             if($torture && $run{'http-pipe'} &&
4145                !responsive_http_server("http", $verbose, "pipe",
4146                                        $HTTPPIPEPORT)) {
4147                 stopserver('http-pipe');
4148             }
4149             if(!$run{'http-pipe'}) {
4150                 ($pid, $pid2) = runhttpserver("http", $verbose, "pipe",
4151                                               $HTTPPIPEPORT);
4152                 if($pid <= 0) {
4153                     return "failed starting HTTP-pipe server";
4154                 }
4155                 logmsg sprintf ("* pid http-pipe => %d %d\n", $pid, $pid2)
4156                     if($verbose);
4157                 $run{'http-pipe'}="$pid $pid2";
4158             }
4159         }
4160         elsif($what eq "rtsp") {
4161             if($torture && $run{'rtsp'} &&
4162                !responsive_rtsp_server($verbose)) {
4163                 stopserver('rtsp');
4164             }
4165             if(!$run{'rtsp'}) {
4166                 ($pid, $pid2) = runrtspserver($verbose);
4167                 if($pid <= 0) {
4168                     return "failed starting RTSP server";
4169                 }
4170                 printf ("* pid rtsp => %d %d\n", $pid, $pid2) if($verbose);
4171                 $run{'rtsp'}="$pid $pid2";
4172             }
4173         }
4174         elsif($what eq "rtsp-ipv6") {
4175             if($torture && $run{'rtsp-ipv6'} &&
4176                !responsive_rtsp_server($verbose, "IPv6")) {
4177                 stopserver('rtsp-ipv6');
4178             }
4179             if(!$run{'rtsp-ipv6'}) {
4180                 ($pid, $pid2) = runrtspserver($verbose, "IPv6");
4181                 if($pid <= 0) {
4182                     return "failed starting RTSP-IPv6 server";
4183                 }
4184                 logmsg sprintf("* pid rtsp-ipv6 => %d %d\n", $pid, $pid2)
4185                     if($verbose);
4186                 $run{'rtsp-ipv6'}="$pid $pid2";
4187             }
4188         }
4189         elsif($what eq "ftps") {
4190             if(!$stunnel) {
4191                 # we can't run ftps tests without stunnel
4192                 return "no stunnel";
4193             }
4194             if(!$ssl_version) {
4195                 # we can't run ftps tests if libcurl is SSL-less
4196                 return "curl lacks SSL support";
4197             }
4198             if($runcert{'ftps'} && ($runcert{'ftps'} ne $certfile)) {
4199                 # stop server when running and using a different cert
4200                 stopserver('ftps');
4201             }
4202             if($torture && $run{'ftp'} &&
4203                !responsive_pingpong_server("ftp", "", $verbose)) {
4204                 stopserver('ftp');
4205             }
4206             if(!$run{'ftp'}) {
4207                 ($pid, $pid2) = runpingpongserver("ftp", "", $verbose);
4208                 if($pid <= 0) {
4209                     return "failed starting FTP server";
4210                 }
4211                 printf ("* pid ftp => %d %d\n", $pid, $pid2) if($verbose);
4212                 $run{'ftp'}="$pid $pid2";
4213             }
4214             if(!$run{'ftps'}) {
4215                 ($pid, $pid2) = runftpsserver($verbose, "", $certfile);
4216                 if($pid <= 0) {
4217                     return "failed starting FTPS server (stunnel)";
4218                 }
4219                 logmsg sprintf("* pid ftps => %d %d\n", $pid, $pid2)
4220                     if($verbose);
4221                 $run{'ftps'}="$pid $pid2";
4222             }
4223         }
4224         elsif($what eq "file") {
4225             # we support it but have no server!
4226         }
4227         elsif($what eq "https") {
4228             if(!$stunnel) {
4229                 # we can't run https tests without stunnel
4230                 return "no stunnel";
4231             }
4232             if(!$ssl_version) {
4233                 # we can't run https tests if libcurl is SSL-less
4234                 return "curl lacks SSL support";
4235             }
4236             if($runcert{'https'} && ($runcert{'https'} ne $certfile)) {
4237                 # stop server when running and using a different cert
4238                 stopserver('https');
4239             }
4240             if($torture && $run{'http'} &&
4241                !responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
4242                 stopserver('http');
4243             }
4244             if(!$run{'http'}) {
4245                 ($pid, $pid2) = runhttpserver("http", $verbose, 0,
4246                                               $HTTPPORT);
4247                 if($pid <= 0) {
4248                     return "failed starting HTTP server";
4249                 }
4250                 printf ("* pid http => %d %d\n", $pid, $pid2) if($verbose);
4251                 $run{'http'}="$pid $pid2";
4252             }
4253             if(!$run{'https'}) {
4254                 ($pid, $pid2) = runhttpsserver($verbose, "", $certfile);
4255                 if($pid <= 0) {
4256                     return "failed starting HTTPS server (stunnel)";
4257                 }
4258                 logmsg sprintf("* pid https => %d %d\n", $pid, $pid2)
4259                     if($verbose);
4260                 $run{'https'}="$pid $pid2";
4261             }
4262         }
4263         elsif($what eq "httptls") {
4264             if(!$httptlssrv) {
4265                 # for now, we can't run http TLS-EXT tests without gnutls-serv
4266                 return "no gnutls-serv";
4267             }
4268             if($torture && $run{'httptls'} &&
4269                !responsive_httptls_server($verbose, "IPv4")) {
4270                 stopserver('httptls');
4271             }
4272             if(!$run{'httptls'}) {
4273                 ($pid, $pid2) = runhttptlsserver($verbose, "IPv4");
4274                 if($pid <= 0) {
4275                     return "failed starting HTTPTLS server (gnutls-serv)";
4276                 }
4277                 logmsg sprintf("* pid httptls => %d %d\n", $pid, $pid2)
4278                     if($verbose);
4279                 $run{'httptls'}="$pid $pid2";
4280             }
4281         }
4282         elsif($what eq "httptls-ipv6") {
4283             if(!$httptlssrv) {
4284                 # for now, we can't run http TLS-EXT tests without gnutls-serv
4285                 return "no gnutls-serv";
4286             }
4287             if($torture && $run{'httptls-ipv6'} &&
4288                !responsive_httptls_server($verbose, "IPv6")) {
4289                 stopserver('httptls-ipv6');
4290             }
4291             if(!$run{'httptls-ipv6'}) {
4292                 ($pid, $pid2) = runhttptlsserver($verbose, "IPv6");
4293                 if($pid <= 0) {
4294                     return "failed starting HTTPTLS-IPv6 server (gnutls-serv)";
4295                 }
4296                 logmsg sprintf("* pid httptls-ipv6 => %d %d\n", $pid, $pid2)
4297                     if($verbose);
4298                 $run{'httptls-ipv6'}="$pid $pid2";
4299             }
4300         }
4301         elsif($what eq "tftp") {
4302             if($torture && $run{'tftp'} &&
4303                !responsive_tftp_server("", $verbose)) {
4304                 stopserver('tftp');
4305             }
4306             if(!$run{'tftp'}) {
4307                 ($pid, $pid2) = runtftpserver("", $verbose);
4308                 if($pid <= 0) {
4309                     return "failed starting TFTP server";
4310                 }
4311                 printf ("* pid tftp => %d %d\n", $pid, $pid2) if($verbose);
4312                 $run{'tftp'}="$pid $pid2";
4313             }
4314         }
4315         elsif($what eq "tftp-ipv6") {
4316             if($torture && $run{'tftp-ipv6'} &&
4317                !responsive_tftp_server("", $verbose, "IPv6")) {
4318                 stopserver('tftp-ipv6');
4319             }
4320             if(!$run{'tftp-ipv6'}) {
4321                 ($pid, $pid2) = runtftpserver("", $verbose, "IPv6");
4322                 if($pid <= 0) {
4323                     return "failed starting TFTP-IPv6 server";
4324                 }
4325                 printf("* pid tftp-ipv6 => %d %d\n", $pid, $pid2) if($verbose);
4326                 $run{'tftp-ipv6'}="$pid $pid2";
4327             }
4328         }
4329         elsif($what eq "sftp" || $what eq "scp" || $what eq "socks4" || $what eq "socks5" ) {
4330             if(!$run{'ssh'}) {
4331                 ($pid, $pid2) = runsshserver("", $verbose);
4332                 if($pid <= 0) {
4333                     return "failed starting SSH server";
4334                 }
4335                 printf ("* pid ssh => %d %d\n", $pid, $pid2) if($verbose);
4336                 $run{'ssh'}="$pid $pid2";
4337             }
4338             if($what eq "socks4" || $what eq "socks5") {
4339                 if(!$run{'socks'}) {
4340                     ($pid, $pid2) = runsocksserver("", $verbose);
4341                     if($pid <= 0) {
4342                         return "failed starting socks server";
4343                     }
4344                     printf ("* pid socks => %d %d\n", $pid, $pid2) if($verbose);
4345                     $run{'socks'}="$pid $pid2";
4346                 }
4347             }
4348             if($what eq "socks5") {
4349                 if(!$sshdid) {
4350                     # Not an OpenSSH or SunSSH ssh daemon
4351                     logmsg "Not OpenSSH or SunSSH; socks5 tests need at least OpenSSH 3.7\n";
4352                     return "failed starting socks5 server";
4353                 }
4354                 elsif(($sshdid =~ /OpenSSH/) && ($sshdvernum < 370)) {
4355                     # Need OpenSSH 3.7 for socks5 - http://www.openssh.com/txt/release-3.7
4356                     logmsg "$sshdverstr insufficient; socks5 tests need at least OpenSSH 3.7\n";
4357                     return "failed starting socks5 server";
4358                 }
4359                 elsif(($sshdid =~ /SunSSH/)  && ($sshdvernum < 100)) {
4360                     # Need SunSSH 1.0 for socks5
4361                     logmsg "$sshdverstr insufficient; socks5 tests need at least SunSSH 1.0\n";
4362                     return "failed starting socks5 server";
4363                 }
4364             }
4365         }
4366         elsif($what eq "none") {
4367             logmsg "* starts no server\n" if ($verbose);
4368         }
4369         else {
4370             warn "we don't support a server for $what";
4371             return "no server for $what";
4372         }
4373     }
4374     return 0;
4375 }
4376
4377 ##############################################################################
4378 # This function makes sure the right set of server is running for the
4379 # specified test case. This is a useful design when we run single tests as not
4380 # all servers need to run then!
4381 #
4382 # Returns: a string, blank if everything is fine or a reason why it failed
4383 #
4384 sub serverfortest {
4385     my ($testnum)=@_;
4386
4387     my @what = getpart("client", "server");
4388
4389     if(!$what[0]) {
4390         warn "Test case $testnum has no server(s) specified";
4391         return "no server specified";
4392     }
4393
4394     for(my $i = scalar(@what) - 1; $i >= 0; $i--) {
4395         my $srvrline = $what[$i];
4396         chomp $srvrline if($srvrline);
4397         if($srvrline =~ /^(\S+)((\s*)(.*))/) {
4398             my $server = "${1}";
4399             my $lnrest = "${2}";
4400             my $tlsext;
4401             if($server =~ /^(httptls)(\+)(ext|srp)(\d*)(-ipv6|)$/) {
4402                 $server = "${1}${4}${5}";
4403                 $tlsext = uc("TLS-${3}");
4404             }
4405             if(! grep /^\Q$server\E$/, @protocols) {
4406                 if(substr($server,0,5) ne "socks") {
4407                     if($tlsext) {
4408                         return "curl lacks $tlsext support";
4409                     }
4410                     else {
4411                         return "curl lacks $server server support";
4412                     }
4413                 }
4414             }
4415             $what[$i] = "$server$lnrest" if($tlsext);
4416         }
4417     }
4418
4419     return &startservers(@what);
4420 }
4421
4422 #######################################################################
4423 # runtimestats displays test-suite run time statistics
4424 #
4425 sub runtimestats {
4426     my $lasttest = $_[0];
4427
4428     return if(not $timestats);
4429
4430     logmsg "\nTest suite total running time breakdown per task...\n\n";
4431
4432     my @timesrvr;
4433     my @timeprep;
4434     my @timetool;
4435     my @timelock;
4436     my @timevrfy;
4437     my @timetest;
4438     my $timesrvrtot = 0.0;
4439     my $timepreptot = 0.0;
4440     my $timetooltot = 0.0;
4441     my $timelocktot = 0.0;
4442     my $timevrfytot = 0.0;
4443     my $timetesttot = 0.0;
4444     my $counter;
4445
4446     for my $testnum (1 .. $lasttest) {
4447         if($timesrvrini{$testnum}) {
4448             $timesrvrtot += $timesrvrend{$testnum} - $timesrvrini{$testnum};
4449             $timepreptot +=
4450                 (($timetoolini{$testnum} - $timeprepini{$testnum}) -
4451                  ($timesrvrend{$testnum} - $timesrvrini{$testnum}));
4452             $timetooltot += $timetoolend{$testnum} - $timetoolini{$testnum};
4453             $timelocktot += $timesrvrlog{$testnum} - $timetoolend{$testnum};
4454             $timevrfytot += $timevrfyend{$testnum} - $timesrvrlog{$testnum};
4455             $timetesttot += $timevrfyend{$testnum} - $timeprepini{$testnum};
4456             push @timesrvr, sprintf("%06.3f  %04d",
4457                 $timesrvrend{$testnum} - $timesrvrini{$testnum}, $testnum);
4458             push @timeprep, sprintf("%06.3f  %04d",
4459                 ($timetoolini{$testnum} - $timeprepini{$testnum}) -
4460                 ($timesrvrend{$testnum} - $timesrvrini{$testnum}), $testnum);
4461             push @timetool, sprintf("%06.3f  %04d",
4462                 $timetoolend{$testnum} - $timetoolini{$testnum}, $testnum);
4463             push @timelock, sprintf("%06.3f  %04d",
4464                 $timesrvrlog{$testnum} - $timetoolend{$testnum}, $testnum);
4465             push @timevrfy, sprintf("%06.3f  %04d",
4466                 $timevrfyend{$testnum} - $timesrvrlog{$testnum}, $testnum);
4467             push @timetest, sprintf("%06.3f  %04d",
4468                 $timevrfyend{$testnum} - $timeprepini{$testnum}, $testnum);
4469         }
4470     }
4471
4472     {
4473         no warnings 'numeric';
4474         @timesrvr = sort { $b <=> $a } @timesrvr;
4475         @timeprep = sort { $b <=> $a } @timeprep;
4476         @timetool = sort { $b <=> $a } @timetool;
4477         @timelock = sort { $b <=> $a } @timelock;
4478         @timevrfy = sort { $b <=> $a } @timevrfy;
4479         @timetest = sort { $b <=> $a } @timetest;
4480     }
4481
4482     logmsg "Spent ". sprintf("%08.3f ", $timesrvrtot) .
4483            "seconds starting and verifying test harness servers.\n";
4484     logmsg "Spent ". sprintf("%08.3f ", $timepreptot) .
4485            "seconds reading definitions and doing test preparations.\n";
4486     logmsg "Spent ". sprintf("%08.3f ", $timetooltot) .
4487            "seconds actually running test tools.\n";
4488     logmsg "Spent ". sprintf("%08.3f ", $timelocktot) .
4489            "seconds awaiting server logs lock removal.\n";
4490     logmsg "Spent ". sprintf("%08.3f ", $timevrfytot) .
4491            "seconds verifying test results.\n";
4492     logmsg "Spent ". sprintf("%08.3f ", $timetesttot) .
4493            "seconds doing all of the above.\n";
4494
4495     $counter = 25;
4496     logmsg "\nTest server starting and verification time per test ".
4497         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4498     logmsg "-time-  test\n";
4499     logmsg "------  ----\n";
4500     foreach my $txt (@timesrvr) {
4501         last if((not $fullstats) && (not $counter--));
4502         logmsg "$txt\n";
4503     }
4504
4505     $counter = 10;
4506     logmsg "\nTest definition reading and preparation time per test ".
4507         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4508     logmsg "-time-  test\n";
4509     logmsg "------  ----\n";
4510     foreach my $txt (@timeprep) {
4511         last if((not $fullstats) && (not $counter--));
4512         logmsg "$txt\n";
4513     }
4514
4515     $counter = 25;
4516     logmsg "\nTest tool execution time per test ".
4517         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4518     logmsg "-time-  test\n";
4519     logmsg "------  ----\n";
4520     foreach my $txt (@timetool) {
4521         last if((not $fullstats) && (not $counter--));
4522         logmsg "$txt\n";
4523     }
4524
4525     $counter = 15;
4526     logmsg "\nTest server logs lock removal time per test ".
4527         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4528     logmsg "-time-  test\n";
4529     logmsg "------  ----\n";
4530     foreach my $txt (@timelock) {
4531         last if((not $fullstats) && (not $counter--));
4532         logmsg "$txt\n";
4533     }
4534
4535     $counter = 10;
4536     logmsg "\nTest results verification time per test ".
4537         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4538     logmsg "-time-  test\n";
4539     logmsg "------  ----\n";
4540     foreach my $txt (@timevrfy) {
4541         last if((not $fullstats) && (not $counter--));
4542         logmsg "$txt\n";
4543     }
4544
4545     $counter = 50;
4546     logmsg "\nTotal time per test ".
4547         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4548     logmsg "-time-  test\n";
4549     logmsg "------  ----\n";
4550     foreach my $txt (@timetest) {
4551         last if((not $fullstats) && (not $counter--));
4552         logmsg "$txt\n";
4553     }
4554
4555     logmsg "\n";
4556 }
4557
4558 #######################################################################
4559 # Check options to this test program
4560 #
4561
4562 my $number=0;
4563 my $fromnum=-1;
4564 my @testthis;
4565 while(@ARGV) {
4566     if ($ARGV[0] eq "-v") {
4567         # verbose output
4568         $verbose=1;
4569     }
4570     elsif($ARGV[0] =~ /^-b(.*)/) {
4571         my $portno=$1;
4572         if($portno =~ s/(\d+)$//) {
4573             $base = int $1;
4574         }
4575     }
4576     elsif ($ARGV[0] eq "-c") {
4577         # use this path to curl instead of default
4578         $DBGCURL=$CURL=$ARGV[1];
4579         shift @ARGV;
4580     }
4581     elsif ($ARGV[0] eq "-vc") {
4582         # use this path to a curl used to verify servers
4583
4584         # Particularly useful when you introduce a crashing bug somewhere in
4585         # the development version as then it won't be able to run any tests
4586         # since it can't verify the servers!
4587
4588         $VCURL=$ARGV[1];
4589         shift @ARGV;
4590     }
4591     elsif ($ARGV[0] eq "-d") {
4592         # have the servers display protocol output
4593         $debugprotocol=1;
4594     }
4595     elsif ($ARGV[0] eq "-g") {
4596         # run this test with gdb
4597         $gdbthis=1;
4598     }
4599     elsif ($ARGV[0] eq "-gw") {
4600         # run this test with windowed gdb
4601         $gdbthis=1;
4602         $gdbxwin=1;
4603     }
4604     elsif($ARGV[0] eq "-s") {
4605         # short output
4606         $short=1;
4607     }
4608     elsif($ARGV[0] eq "-am") {
4609         # automake-style output
4610         $short=1;
4611         $automakestyle=1;
4612     }
4613     elsif($ARGV[0] eq "-n") {
4614         # no valgrind
4615         undef $valgrind;
4616     }
4617     elsif($ARGV[0] =~ /^-t(.*)/) {
4618         # torture
4619         $torture=1;
4620         my $xtra = $1;
4621
4622         if($xtra =~ s/(\d+)$//) {
4623             $tortalloc = $1;
4624         }
4625         # we undef valgrind to make this fly in comparison
4626         undef $valgrind;
4627     }
4628     elsif($ARGV[0] eq "-a") {
4629         # continue anyway, even if a test fail
4630         $anyway=1;
4631     }
4632     elsif($ARGV[0] eq "-e") {
4633         # run the tests cases event based if possible
4634         $run_event_based=1;
4635     }
4636     elsif($ARGV[0] eq "-p") {
4637         $postmortem=1;
4638     }
4639     elsif($ARGV[0] eq "-l") {
4640         # lists the test case names only
4641         $listonly=1;
4642     }
4643     elsif($ARGV[0] eq "-k") {
4644         # keep stdout and stderr files after tests
4645         $keepoutfiles=1;
4646     }
4647     elsif($ARGV[0] eq "-r") {
4648         # run time statistics needs Time::HiRes
4649         if($Time::HiRes::VERSION) {
4650             keys(%timeprepini) = 1000;
4651             keys(%timesrvrini) = 1000;
4652             keys(%timesrvrend) = 1000;
4653             keys(%timetoolini) = 1000;
4654             keys(%timetoolend) = 1000;
4655             keys(%timesrvrlog) = 1000;
4656             keys(%timevrfyend) = 1000;
4657             $timestats=1;
4658             $fullstats=0;
4659         }
4660     }
4661     elsif($ARGV[0] eq "-rf") {
4662         # run time statistics needs Time::HiRes
4663         if($Time::HiRes::VERSION) {
4664             keys(%timeprepini) = 1000;
4665             keys(%timesrvrini) = 1000;
4666             keys(%timesrvrend) = 1000;
4667             keys(%timetoolini) = 1000;
4668             keys(%timetoolend) = 1000;
4669             keys(%timesrvrlog) = 1000;
4670             keys(%timevrfyend) = 1000;
4671             $timestats=1;
4672             $fullstats=1;
4673         }
4674     }
4675     elsif(($ARGV[0] eq "-h") || ($ARGV[0] eq "--help")) {
4676         # show help text
4677         print <<EOHELP
4678 Usage: runtests.pl [options] [test selection(s)]
4679   -a       continue even if a test fails
4680   -bN      use base port number N for test servers (default $base)
4681   -c path  use this curl executable
4682   -d       display server debug info
4683   -g       run the test case with gdb
4684   -gw      run the test case with gdb as a windowed application
4685   -h       this help text
4686   -k       keep stdout and stderr files present after tests
4687   -l       list all test case names/descriptions
4688   -n       no valgrind
4689   -p       print log file contents when a test fails
4690   -r       run time statistics
4691   -rf      full run time statistics
4692   -s       short output
4693   -am      automake style output PASS/FAIL: [number] [name]
4694   -t[N]    torture (simulate memory alloc failures); N means fail Nth alloc
4695   -v       verbose output
4696   -vc path use this curl only to verify the existing servers
4697   [num]    like "5 6 9" or " 5 to 22 " to run those tests only
4698   [!num]   like "!5 !6 !9" to disable those tests
4699   [keyword] like "IPv6" to select only tests containing the key word
4700   [!keyword] like "!cookies" to disable any tests containing the key word
4701 EOHELP
4702     ;
4703         exit;
4704     }
4705     elsif($ARGV[0] =~ /^(\d+)/) {
4706         $number = $1;
4707         if($fromnum >= 0) {
4708             for($fromnum .. $number) {
4709                 push @testthis, $_;
4710             }
4711             $fromnum = -1;
4712         }
4713         else {
4714             push @testthis, $1;
4715         }
4716     }
4717     elsif($ARGV[0] =~ /^to$/i) {
4718         $fromnum = $number+1;
4719     }
4720     elsif($ARGV[0] =~ /^!(\d+)/) {
4721         $fromnum = -1;
4722         $disabled{$1}=$1;
4723     }
4724     elsif($ARGV[0] =~ /^!(.+)/) {
4725         $disabled_keywords{$1}=$1;
4726     }
4727     elsif($ARGV[0] =~ /^([-[{a-zA-Z].*)/) {
4728         $enabled_keywords{$1}=$1;
4729     }
4730     else {
4731         print "Unknown option: $ARGV[0]\n";
4732         exit;
4733     }
4734     shift @ARGV;
4735 }
4736
4737 if(@testthis && ($testthis[0] ne "")) {
4738     $TESTCASES=join(" ", @testthis);
4739 }
4740
4741 if($valgrind) {
4742     # we have found valgrind on the host, use it
4743
4744     # verify that we can invoke it fine
4745     my $code = runclient("valgrind >/dev/null 2>&1");
4746
4747     if(($code>>8) != 1) {
4748         #logmsg "Valgrind failure, disable it\n";
4749         undef $valgrind;
4750     } else {
4751
4752         # since valgrind 2.1.x, '--tool' option is mandatory
4753         # use it, if it is supported by the version installed on the system
4754         runclient("valgrind --help 2>&1 | grep -- --tool > /dev/null 2>&1");
4755         if (($? >> 8)==0) {
4756             $valgrind_tool="--tool=memcheck";
4757         }
4758         open(C, "<$CURL");
4759         my $l = <C>;
4760         if($l =~ /^\#\!/) {
4761             # A shell script. This is typically when built with libtool,
4762             $valgrind="../libtool --mode=execute $valgrind";
4763         }
4764         close(C);
4765
4766         # valgrind 3 renamed the --logfile option to --log-file!!!
4767         my $ver=join(' ', runclientoutput("valgrind --version"));
4768         # cut off all but digits and dots
4769         $ver =~ s/[^0-9.]//g;
4770
4771         if($ver =~ /^(\d+)/) {
4772             $ver = $1;
4773             if($ver >= 3) {
4774                 $valgrind_logfile="--log-file";
4775             }
4776         }
4777     }
4778 }
4779
4780 if ($gdbthis) {
4781     # open the executable curl and read the first 4 bytes of it
4782     open(CHECK, "<$CURL");
4783     my $c;
4784     sysread CHECK, $c, 4;
4785     close(CHECK);
4786     if($c eq "#! /") {
4787         # A shell script. This is typically when built with libtool,
4788         $libtool = 1;
4789         $gdb = "libtool --mode=execute gdb";
4790     }
4791 }
4792
4793 $HTTPPORT        = $base++; # HTTP server port
4794 $HTTPSPORT       = $base++; # HTTPS (stunnel) server port
4795 $FTPPORT         = $base++; # FTP server port
4796 $FTPSPORT        = $base++; # FTPS (stunnel) server port
4797 $HTTP6PORT       = $base++; # HTTP IPv6 server port
4798 $FTP2PORT        = $base++; # FTP server 2 port
4799 $FTP6PORT        = $base++; # FTP IPv6 port
4800 $TFTPPORT        = $base++; # TFTP (UDP) port
4801 $TFTP6PORT       = $base++; # TFTP IPv6 (UDP) port
4802 $SSHPORT         = $base++; # SSH (SCP/SFTP) port
4803 $SOCKSPORT       = $base++; # SOCKS port
4804 $POP3PORT        = $base++; # POP3 server port
4805 $POP36PORT       = $base++; # POP3 IPv6 server port
4806 $IMAPPORT        = $base++; # IMAP server port
4807 $IMAP6PORT       = $base++; # IMAP IPv6 server port
4808 $SMTPPORT        = $base++; # SMTP server port
4809 $SMTP6PORT       = $base++; # SMTP IPv6 server port
4810 $RTSPPORT        = $base++; # RTSP server port
4811 $RTSP6PORT       = $base++; # RTSP IPv6 server port
4812 $GOPHERPORT      = $base++; # Gopher IPv4 server port
4813 $GOPHER6PORT     = $base++; # Gopher IPv6 server port
4814 $HTTPTLSPORT     = $base++; # HTTP TLS (non-stunnel) server port
4815 $HTTPTLS6PORT    = $base++; # HTTP TLS (non-stunnel) IPv6 server port
4816 $HTTPPROXYPORT   = $base++; # HTTP proxy port, when using CONNECT
4817 $HTTPPIPEPORT    = $base++; # HTTP pipelining port
4818
4819 #######################################################################
4820 # clear and create logging directory:
4821 #
4822
4823 cleardir($LOGDIR);
4824 mkdir($LOGDIR, 0777);
4825
4826 #######################################################################
4827 # initialize some variables
4828 #
4829
4830 get_disttests();
4831 init_serverpidfile_hash();
4832
4833 #######################################################################
4834 # Output curl version and host info being tested
4835 #
4836
4837 if(!$listonly) {
4838     checksystem();
4839 }
4840
4841 #######################################################################
4842 # Fetch all disabled tests
4843 #
4844
4845 open(D, "<$TESTDIR/DISABLED");
4846 while(<D>) {
4847     if(/^ *\#/) {
4848         # allow comments
4849         next;
4850     }
4851     if($_ =~ /(\d+)/) {
4852         $disabled{$1}=$1; # disable this test number
4853     }
4854 }
4855 close(D);
4856
4857 #######################################################################
4858 # If 'all' tests are requested, find out all test numbers
4859 #
4860
4861 if ( $TESTCASES eq "all") {
4862     # Get all commands and find out their test numbers
4863     opendir(DIR, $TESTDIR) || die "can't opendir $TESTDIR: $!";
4864     my @cmds = grep { /^test([0-9]+)$/ && -f "$TESTDIR/$_" } readdir(DIR);
4865     closedir(DIR);
4866
4867     $TESTCASES=""; # start with no test cases
4868
4869     # cut off everything but the digits
4870     for(@cmds) {
4871         $_ =~ s/[a-z\/\.]*//g;
4872     }
4873     # sort the numbers from low to high
4874     foreach my $n (sort { $a <=> $b } @cmds) {
4875         if($disabled{$n}) {
4876             # skip disabled test cases
4877             my $why = "configured as DISABLED";
4878             $skipped++;
4879             $skipped{$why}++;
4880             $teststat[$n]=$why; # store reason for this test case
4881             next;
4882         }
4883         $TESTCASES .= " $n";
4884     }
4885 }
4886
4887 #######################################################################
4888 # Start the command line log
4889 #
4890 open(CMDLOG, ">$CURLLOG") ||
4891     logmsg "can't log command lines to $CURLLOG\n";
4892
4893 #######################################################################
4894
4895 # Display the contents of the given file.  Line endings are canonicalized
4896 # and excessively long files are elided
4897 sub displaylogcontent {
4898     my ($file)=@_;
4899     if(open(SINGLE, "<$file")) {
4900         my $linecount = 0;
4901         my $truncate;
4902         my @tail;
4903         while(my $string = <SINGLE>) {
4904             $string =~ s/\r\n/\n/g;
4905             $string =~ s/[\r\f\032]/\n/g;
4906             $string .= "\n" unless ($string =~ /\n$/);
4907             $string =~ tr/\n//;
4908             for my $line (split("\n", $string)) {
4909                 $line =~ s/\s*\!$//;
4910                 if ($truncate) {
4911                     push @tail, " $line\n";
4912                 } else {
4913                     logmsg " $line\n";
4914                 }
4915                 $linecount++;
4916                 $truncate = $linecount > 1000;
4917             }
4918         }
4919         if(@tail) {
4920             my $tailshow = 200;
4921             my $tailskip = 0;
4922             my $tailtotal = scalar @tail;
4923             if($tailtotal > $tailshow) {
4924                 $tailskip = $tailtotal - $tailshow;
4925                 logmsg "=== File too long: $tailskip lines omitted here\n";
4926             }
4927             for($tailskip .. $tailtotal-1) {
4928                 logmsg "$tail[$_]";
4929             }
4930         }
4931         close(SINGLE);
4932     }
4933 }
4934
4935 sub displaylogs {
4936     my ($testnum)=@_;
4937     opendir(DIR, "$LOGDIR") ||
4938         die "can't open dir: $!";
4939     my @logs = readdir(DIR);
4940     closedir(DIR);
4941
4942     logmsg "== Contents of files in the $LOGDIR/ dir after test $testnum\n";
4943     foreach my $log (sort @logs) {
4944         if($log =~ /\.(\.|)$/) {
4945             next; # skip "." and ".."
4946         }
4947         if($log =~ /^\.nfs/) {
4948             next; # skip ".nfs"
4949         }
4950         if(($log eq "memdump") || ($log eq "core")) {
4951             next; # skip "memdump" and  "core"
4952         }
4953         if((-d "$LOGDIR/$log") || (! -s "$LOGDIR/$log")) {
4954             next; # skip directory and empty files
4955         }
4956         if(($log =~ /^stdout\d+/) && ($log !~ /^stdout$testnum/)) {
4957             next; # skip stdoutNnn of other tests
4958         }
4959         if(($log =~ /^stderr\d+/) && ($log !~ /^stderr$testnum/)) {
4960             next; # skip stderrNnn of other tests
4961         }
4962         if(($log =~ /^upload\d+/) && ($log !~ /^upload$testnum/)) {
4963             next; # skip uploadNnn of other tests
4964         }
4965         if(($log =~ /^curl\d+\.out/) && ($log !~ /^curl$testnum\.out/)) {
4966             next; # skip curlNnn.out of other tests
4967         }
4968         if(($log =~ /^test\d+\.txt/) && ($log !~ /^test$testnum\.txt/)) {
4969             next; # skip testNnn.txt of other tests
4970         }
4971         if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) {
4972             next; # skip fileNnn.txt of other tests
4973         }
4974         if(($log =~ /^netrc\d+/) && ($log !~ /^netrc$testnum/)) {
4975             next; # skip netrcNnn of other tests
4976         }
4977         if(($log =~ /^trace\d+/) && ($log !~ /^trace$testnum/)) {
4978             next; # skip traceNnn of other tests
4979         }
4980         if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum(\..*|)$/)) {
4981             next; # skip valgrindNnn of other tests
4982         }
4983         logmsg "=== Start of file $log\n";
4984         displaylogcontent("$LOGDIR/$log");
4985         logmsg "=== End of file $log\n";
4986     }
4987 }
4988
4989 #######################################################################
4990 # The main test-loop
4991 #
4992
4993 my $failed;
4994 my $testnum;
4995 my $ok=0;
4996 my $total=0;
4997 my $lasttest=0;
4998 my @at = split(" ", $TESTCASES);
4999 my $count=0;
5000
5001 $start = time();
5002
5003 foreach $testnum (@at) {
5004
5005     $lasttest = $testnum if($testnum > $lasttest);
5006     $count++;
5007
5008     my $error = singletest($run_event_based, $testnum, $count, scalar(@at));
5009     if($error < 0) {
5010         # not a test we can run
5011         next;
5012     }
5013
5014     $total++; # number of tests we've run
5015
5016     if($error>0) {
5017         $failed.= "$testnum ";
5018         if($postmortem) {
5019             # display all files in log/ in a nice way
5020             displaylogs($testnum);
5021         }
5022         if(!$anyway) {
5023             # a test failed, abort
5024             logmsg "\n - abort tests\n";
5025             last;
5026         }
5027     }
5028     elsif(!$error) {
5029         $ok++; # successful test counter
5030     }
5031
5032     # loop for next test
5033 }
5034
5035 my $sofar = time() - $start;
5036
5037 #######################################################################
5038 # Close command log
5039 #
5040 close(CMDLOG);
5041
5042 # Tests done, stop the servers
5043 stopservers($verbose);
5044
5045 my $all = $total + $skipped;
5046
5047 runtimestats($lasttest);
5048
5049 if($total) {
5050     logmsg sprintf("TESTDONE: $ok tests out of $total reported OK: %d%%\n",
5051                    $ok/$total*100);
5052
5053     if($ok != $total) {
5054         logmsg "TESTFAIL: These test cases failed: $failed\n";
5055     }
5056 }
5057 else {
5058     logmsg "TESTFAIL: No tests were performed\n";
5059 }
5060
5061 if($all) {
5062     logmsg "TESTDONE: $all tests were considered during ".
5063         sprintf("%.0f", $sofar) ." seconds.\n";
5064 }
5065
5066 if($skipped && !$short) {
5067     my $s=0;
5068     logmsg "TESTINFO: $skipped tests were skipped due to these restraints:\n";
5069
5070     for(keys %skipped) {
5071         my $r = $_;
5072         printf "TESTINFO: \"%s\" %d times (", $r, $skipped{$_};
5073
5074         # now show all test case numbers that had this reason for being
5075         # skipped
5076         my $c=0;
5077         my $max = 9;
5078         for(0 .. scalar @teststat) {
5079             my $t = $_;
5080             if($teststat[$_] && ($teststat[$_] eq $r)) {
5081                 if($c < $max) {
5082                     logmsg ", " if($c);
5083                     logmsg $_;
5084                 }
5085                 $c++;
5086             }
5087         }
5088         if($c > $max) {
5089             logmsg " and ".($c-$max)." more";
5090         }
5091         logmsg ")\n";
5092     }
5093 }
5094
5095 if($total && ($ok != $total)) {
5096     exit 1;
5097 }