e9f5b9ab4690e1d49e576f27b6e68476627f81e9
[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            if ($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                 # Use this as a proxy for any cryptographic authentication
2407                 $has_crypto=1;
2408             }
2409             if($feat =~ /NTLM_WB/i) {
2410                 # NTLM delegation to winbind daemon ntlm_auth helper enabled
2411                 $has_ntlm_wb=1;
2412             }
2413             if($feat =~ /SSPI/i) {
2414                 # SSPI enabled
2415                 $has_sspi=1;
2416             }
2417             if($feat =~ /CharConv/i) {
2418                 # CharConv enabled
2419                 $has_charconv=1;
2420             }
2421             if($feat =~ /TLS-SRP/i) {
2422                 # TLS-SRP enabled
2423                 $has_tls_srp=1;
2424             }
2425             if($feat =~ /Metalink/i) {
2426                 # Metalink enabled
2427                 $has_metalink=1;
2428             }
2429             if($feat =~ /AsynchDNS/i) {
2430                 if(!$has_cares) {
2431                     # this means threaded resolver
2432                     $has_threadedres=1;
2433                     $resolver="threaded";
2434                 }
2435             }
2436         }
2437         #
2438         # Test harness currently uses a non-stunnel server in order to
2439         # run HTTP TLS-SRP tests required when curl is built with https
2440         # protocol support and TLS-SRP feature enabled. For convenience
2441         # 'httptls' may be included in the test harness protocols array
2442         # to differentiate this from classic stunnel based 'https' test
2443         # harness server.
2444         #
2445         if($has_tls_srp) {
2446             my $add_httptls;
2447             for(@protocols) {
2448                 if($_ =~ /^https(-ipv6|)$/) {
2449                     $add_httptls=1;
2450                     last;
2451                 }
2452             }
2453             if($add_httptls && (! grep /^httptls$/, @protocols)) {
2454                 push @protocols, 'httptls';
2455                 push @protocols, 'httptls-ipv6';
2456             }
2457         }
2458     }
2459     if(!$curl) {
2460         logmsg "unable to get curl's version, further details are:\n";
2461         logmsg "issued command: \n";
2462         logmsg "$versioncmd \n";
2463         if ($versretval == -1) {
2464             logmsg "command failed with: \n";
2465             logmsg "$versnoexec \n";
2466         }
2467         elsif ($versretval & 127) {
2468             logmsg sprintf("command died with signal %d, and %s coredump.\n",
2469                            ($versretval & 127), ($versretval & 128)?"a":"no");
2470         }
2471         else {
2472             logmsg sprintf("command exited with value %d \n", $versretval >> 8);
2473         }
2474         logmsg "contents of $curlverout: \n";
2475         displaylogcontent("$curlverout");
2476         logmsg "contents of $curlvererr: \n";
2477         displaylogcontent("$curlvererr");
2478         die "couldn't get curl's version";
2479     }
2480
2481     if(-r "../lib/curl_config.h") {
2482         open(CONF, "<../lib/curl_config.h");
2483         while(<CONF>) {
2484             if($_ =~ /^\#define HAVE_GETRLIMIT/) {
2485                 $has_getrlimit = 1;
2486             }
2487         }
2488         close(CONF);
2489     }
2490
2491     if($has_ipv6) {
2492         # client has ipv6 support
2493
2494         # check if the HTTP server has it!
2495         my @sws = `server/sws --version`;
2496         if($sws[0] =~ /IPv6/) {
2497             # HTTP server has ipv6 support!
2498             $http_ipv6 = 1;
2499             $gopher_ipv6 = 1;
2500         }
2501
2502         # check if the FTP server has it!
2503         @sws = `server/sockfilt --version`;
2504         if($sws[0] =~ /IPv6/) {
2505             # FTP server has ipv6 support!
2506             $ftp_ipv6 = 1;
2507         }
2508     }
2509
2510     if(!$has_memory_tracking && $torture) {
2511         die "can't run torture tests since curl was built without ".
2512             "TrackMemory feature (--enable-curldebug)";
2513     }
2514
2515     $has_shared = `sh $CURLCONFIG --built-shared`;
2516     chomp $has_shared;
2517
2518     my $hostname=join(' ', runclientoutput("hostname"));
2519     my $hosttype=join(' ', runclientoutput("uname -a"));
2520
2521     logmsg ("********* System characteristics ******** \n",
2522     "* $curl\n",
2523     "* $libcurl\n",
2524     "* Features: $feat\n",
2525     "* Host: $hostname",
2526     "* System: $hosttype");
2527
2528     if($has_memory_tracking && $has_threadedres) {
2529         $has_memory_tracking = 0;
2530         logmsg("*\n",
2531                "*** DISABLES memory tracking when using threaded resolver\n",
2532                "*\n");
2533     }
2534
2535     logmsg sprintf("* Server SSL:   %8s", $stunnel?"ON ":"OFF");
2536     logmsg sprintf("  libcurl SSL:  %s\n", $ssl_version?"ON ":"OFF");
2537     logmsg sprintf("* debug build:  %8s", $debug_build?"ON ":"OFF");
2538     logmsg sprintf("  track memory: %s\n", $has_memory_tracking?"ON ":"OFF");
2539     logmsg sprintf("* valgrind:     %8s", $valgrind?"ON ":"OFF");
2540     logmsg sprintf("  HTTP IPv6     %s\n", $http_ipv6?"ON ":"OFF");
2541     logmsg sprintf("* FTP IPv6      %8s", $ftp_ipv6?"ON ":"OFF");
2542     logmsg sprintf("  Libtool lib:  %s\n", $libtool?"ON ":"OFF");
2543     logmsg sprintf("* Shared build:      %-3s", $has_shared);
2544     logmsg sprintf("  Resolver:     %s\n", $resolver);
2545     if($ssl_version) {
2546         logmsg sprintf("* SSL library: %13s\n", $ssllib);
2547     }
2548
2549     logmsg "* Ports:\n";
2550
2551     logmsg sprintf("*   HTTP/%d ", $HTTPPORT);
2552     logmsg sprintf("FTP/%d ", $FTPPORT);
2553     logmsg sprintf("FTP2/%d ", $FTP2PORT);
2554     logmsg sprintf("RTSP/%d ", $RTSPPORT);
2555     if($stunnel) {
2556         logmsg sprintf("FTPS/%d ", $FTPSPORT);
2557         logmsg sprintf("HTTPS/%d ", $HTTPSPORT);
2558     }
2559     logmsg sprintf("\n*   TFTP/%d ", $TFTPPORT);
2560     if($http_ipv6) {
2561         logmsg sprintf("HTTP-IPv6/%d ", $HTTP6PORT);
2562         logmsg sprintf("RTSP-IPv6/%d ", $RTSP6PORT);
2563     }
2564     if($ftp_ipv6) {
2565         logmsg sprintf("FTP-IPv6/%d ", $FTP6PORT);
2566     }
2567     if($tftp_ipv6) {
2568         logmsg sprintf("TFTP-IPv6/%d ", $TFTP6PORT);
2569     }
2570     logmsg sprintf("\n*   GOPHER/%d ", $GOPHERPORT);
2571     if($gopher_ipv6) {
2572         logmsg sprintf("GOPHER-IPv6/%d", $GOPHERPORT);
2573     }
2574     logmsg sprintf("\n*   SSH/%d ", $SSHPORT);
2575     logmsg sprintf("SOCKS/%d ", $SOCKSPORT);
2576     logmsg sprintf("POP3/%d ", $POP3PORT);
2577     logmsg sprintf("IMAP/%d ", $IMAPPORT);
2578     logmsg sprintf("SMTP/%d\n", $SMTPPORT);
2579     if($ftp_ipv6) {
2580         logmsg sprintf("*   POP3-IPv6/%d ", $POP36PORT);
2581         logmsg sprintf("IMAP-IPv6/%d ", $IMAP6PORT);
2582         logmsg sprintf("SMTP-IPv6/%d\n", $SMTP6PORT);
2583     }
2584     if($httptlssrv) {
2585         logmsg sprintf("*   HTTPTLS/%d ", $HTTPTLSPORT);
2586         if($has_ipv6) {
2587             logmsg sprintf("HTTPTLS-IPv6/%d ", $HTTPTLS6PORT);
2588         }
2589         logmsg "\n";
2590     }
2591     logmsg sprintf("*   HTTP-PIPE/%d \n", $HTTPPIPEPORT);
2592
2593     $has_textaware = ($^O eq 'MSWin32') || ($^O eq 'msys');
2594
2595     logmsg "***************************************** \n";
2596 }
2597
2598 #######################################################################
2599 # substitute the variable stuff into either a joined up file or
2600 # a command, in either case passed by reference
2601 #
2602 sub subVariables {
2603   my ($thing) = @_;
2604
2605   # ports
2606
2607   $$thing =~ s/%FTP6PORT/$FTP6PORT/g;
2608   $$thing =~ s/%FTP2PORT/$FTP2PORT/g;
2609   $$thing =~ s/%FTPSPORT/$FTPSPORT/g;
2610   $$thing =~ s/%FTPPORT/$FTPPORT/g;
2611
2612   $$thing =~ s/%GOPHER6PORT/$GOPHER6PORT/g;
2613   $$thing =~ s/%GOPHERPORT/$GOPHERPORT/g;
2614
2615   $$thing =~ s/%HTTPTLS6PORT/$HTTPTLS6PORT/g;
2616   $$thing =~ s/%HTTPTLSPORT/$HTTPTLSPORT/g;
2617   $$thing =~ s/%HTTP6PORT/$HTTP6PORT/g;
2618   $$thing =~ s/%HTTPSPORT/$HTTPSPORT/g;
2619   $$thing =~ s/%HTTPPORT/$HTTPPORT/g;
2620   $$thing =~ s/%HTTPPIPEPORT/$HTTPPIPEPORT/g;
2621   $$thing =~ s/%PROXYPORT/$HTTPPROXYPORT/g;
2622
2623   $$thing =~ s/%IMAP6PORT/$IMAP6PORT/g;
2624   $$thing =~ s/%IMAPPORT/$IMAPPORT/g;
2625
2626   $$thing =~ s/%POP36PORT/$POP36PORT/g;
2627   $$thing =~ s/%POP3PORT/$POP3PORT/g;
2628
2629   $$thing =~ s/%RTSP6PORT/$RTSP6PORT/g;
2630   $$thing =~ s/%RTSPPORT/$RTSPPORT/g;
2631
2632   $$thing =~ s/%SMTP6PORT/$SMTP6PORT/g;
2633   $$thing =~ s/%SMTPPORT/$SMTPPORT/g;
2634
2635   $$thing =~ s/%SOCKSPORT/$SOCKSPORT/g;
2636   $$thing =~ s/%SSHPORT/$SSHPORT/g;
2637
2638   $$thing =~ s/%TFTP6PORT/$TFTP6PORT/g;
2639   $$thing =~ s/%TFTPPORT/$TFTPPORT/g;
2640
2641   # client IP addresses
2642
2643   $$thing =~ s/%CLIENT6IP/$CLIENT6IP/g;
2644   $$thing =~ s/%CLIENTIP/$CLIENTIP/g;
2645
2646   # server IP addresses
2647
2648   $$thing =~ s/%HOST6IP/$HOST6IP/g;
2649   $$thing =~ s/%HOSTIP/$HOSTIP/g;
2650
2651   # misc
2652
2653   $$thing =~ s/%CURL/$CURL/g;
2654   $$thing =~ s/%PWD/$pwd/g;
2655   $$thing =~ s/%SRCDIR/$srcdir/g;
2656   $$thing =~ s/%USER/$USER/g;
2657
2658   # The purpose of FTPTIME2 and FTPTIME3 is to provide times that can be
2659   # used for time-out tests and that whould work on most hosts as these
2660   # adjust for the startup/check time for this particular host. We needed
2661   # to do this to make the test suite run better on very slow hosts.
2662
2663   my $ftp2 = $ftpchecktime * 2;
2664   my $ftp3 = $ftpchecktime * 3;
2665
2666   $$thing =~ s/%FTPTIME2/$ftp2/g;
2667   $$thing =~ s/%FTPTIME3/$ftp3/g;
2668 }
2669
2670 sub fixarray {
2671     my @in = @_;
2672
2673     for(@in) {
2674         subVariables \$_;
2675     }
2676     return @in;
2677 }
2678
2679 #######################################################################
2680 # Provide time stamps for single test skipped events
2681 #
2682 sub timestampskippedevents {
2683     my $testnum = $_[0];
2684
2685     return if((not defined($testnum)) || ($testnum < 1));
2686
2687     if($timestats) {
2688
2689         if($timevrfyend{$testnum}) {
2690             return;
2691         }
2692         elsif($timesrvrlog{$testnum}) {
2693             $timevrfyend{$testnum} = $timesrvrlog{$testnum};
2694             return;
2695         }
2696         elsif($timetoolend{$testnum}) {
2697             $timevrfyend{$testnum} = $timetoolend{$testnum};
2698             $timesrvrlog{$testnum} = $timetoolend{$testnum};
2699         }
2700         elsif($timetoolini{$testnum}) {
2701             $timevrfyend{$testnum} = $timetoolini{$testnum};
2702             $timesrvrlog{$testnum} = $timetoolini{$testnum};
2703             $timetoolend{$testnum} = $timetoolini{$testnum};
2704         }
2705         elsif($timesrvrend{$testnum}) {
2706             $timevrfyend{$testnum} = $timesrvrend{$testnum};
2707             $timesrvrlog{$testnum} = $timesrvrend{$testnum};
2708             $timetoolend{$testnum} = $timesrvrend{$testnum};
2709             $timetoolini{$testnum} = $timesrvrend{$testnum};
2710         }
2711         elsif($timesrvrini{$testnum}) {
2712             $timevrfyend{$testnum} = $timesrvrini{$testnum};
2713             $timesrvrlog{$testnum} = $timesrvrini{$testnum};
2714             $timetoolend{$testnum} = $timesrvrini{$testnum};
2715             $timetoolini{$testnum} = $timesrvrini{$testnum};
2716             $timesrvrend{$testnum} = $timesrvrini{$testnum};
2717         }
2718         elsif($timeprepini{$testnum}) {
2719             $timevrfyend{$testnum} = $timeprepini{$testnum};
2720             $timesrvrlog{$testnum} = $timeprepini{$testnum};
2721             $timetoolend{$testnum} = $timeprepini{$testnum};
2722             $timetoolini{$testnum} = $timeprepini{$testnum};
2723             $timesrvrend{$testnum} = $timeprepini{$testnum};
2724             $timesrvrini{$testnum} = $timeprepini{$testnum};
2725         }
2726     }
2727 }
2728
2729 #######################################################################
2730 # Run a single specified test case
2731 #
2732 sub singletest {
2733     my ($evbased, # 1 means switch on if possible (and "curl" is tested)
2734                   # returns "not a test" if it can't be used for this test
2735         $testnum,
2736         $count,
2737         $total)=@_;
2738
2739     my @what;
2740     my $why;
2741     my %feature;
2742     my $cmd;
2743     my $disablevalgrind;
2744
2745     # copy test number to a global scope var, this allows
2746     # testnum checking when starting test harness servers.
2747     $testnumcheck = $testnum;
2748
2749     # timestamp test preparation start
2750     $timeprepini{$testnum} = Time::HiRes::time() if($timestats);
2751
2752     if($disttests !~ /test$testnum\W/ ) {
2753         logmsg "Warning: test$testnum not present in tests/data/Makefile.am\n";
2754     }
2755     if($disabled{$testnum}) {
2756         logmsg "Warning: test$testnum is explicitly disabled\n";
2757     }
2758
2759     # load the test case file definition
2760     if(loadtest("${TESTDIR}/test${testnum}")) {
2761         if($verbose) {
2762             # this is not a test
2763             logmsg "RUN: $testnum doesn't look like a test case\n";
2764         }
2765         $why = "no test";
2766     }
2767     else {
2768         @what = getpart("client", "features");
2769     }
2770
2771     # We require a feature to be present
2772     for(@what) {
2773         my $f = $_;
2774         $f =~ s/\s//g;
2775
2776         if($f =~ /^([^!].*)$/) {
2777             # Store the feature for later
2778             $feature{$1} = $1;
2779
2780             if($1 eq "SSL") {
2781                 if($ssl_version) {
2782                     next;
2783                 }
2784             }
2785             elsif($1 eq "OpenSSL") {
2786                 if($has_openssl) {
2787                     next;
2788                 }
2789             }
2790             elsif($1 eq "GnuTLS") {
2791                 if($has_gnutls) {
2792                     next;
2793                 }
2794             }
2795             elsif($1 eq "NSS") {
2796                 if($has_nss) {
2797                     next;
2798                 }
2799             }
2800             elsif($1 eq "axTLS") {
2801                 if($has_axtls) {
2802                     next;
2803                 }
2804             }
2805             elsif($1 eq "WinSSL") {
2806                 if($has_winssl) {
2807                     next;
2808                 }
2809             }
2810             elsif($1 eq "DarwinSSL") {
2811                 if($has_darwinssl) {
2812                     next;
2813                 }
2814             }
2815             elsif($1 eq "unittest") {
2816                 if($debug_build) {
2817                     next;
2818                 }
2819             }
2820             elsif($1 eq "debug") {
2821                 if($debug_build) {
2822                     next;
2823                 }
2824             }
2825             elsif($1 eq "TrackMemory") {
2826                 if($has_memory_tracking) {
2827                     next;
2828                 }
2829             }
2830             elsif($1 eq "large_file") {
2831                 if($large_file) {
2832                     next;
2833                 }
2834             }
2835             elsif($1 eq "idn") {
2836                 if($has_idn) {
2837                     next;
2838                 }
2839             }
2840             elsif($1 eq "ipv6") {
2841                 if($has_ipv6) {
2842                     next;
2843                 }
2844             }
2845             elsif($1 eq "libz") {
2846                 if($has_libz) {
2847                     next;
2848                 }
2849             }
2850             elsif($1 eq "NTLM") {
2851                 if($has_ntlm) {
2852                     next;
2853                 }
2854             }
2855             elsif($1 eq "NTLM_WB") {
2856                 if($has_ntlm_wb) {
2857                     next;
2858                 }
2859             }
2860             elsif($1 eq "SSPI") {
2861                 if($has_sspi) {
2862                     next;
2863                 }
2864             }
2865             elsif($1 eq "getrlimit") {
2866                 if($has_getrlimit) {
2867                     next;
2868                 }
2869             }
2870             elsif($1 eq "crypto") {
2871                 if($has_crypto) {
2872                     next;
2873                 }
2874             }
2875             elsif($1 eq "TLS-SRP") {
2876                 if($has_tls_srp) {
2877                     next;
2878                 }
2879             }
2880             elsif($1 eq "Metalink") {
2881                 if($has_metalink) {
2882                     next;
2883                 }
2884             }
2885             elsif($1 eq "socks") {
2886                 next;
2887             }
2888             # See if this "feature" is in the list of supported protocols
2889             elsif (grep /^\Q$1\E$/i, @protocols) {
2890                 next;
2891             }
2892
2893             $why = "curl lacks $1 support";
2894             last;
2895         }
2896     }
2897
2898     # We require a feature to not be present
2899     if(!$why) {
2900         for(@what) {
2901             my $f = $_;
2902             $f =~ s/\s//g;
2903
2904             if($f =~ /^!(.*)$/) {
2905                 if($1 eq "SSL") {
2906                     if(!$ssl_version) {
2907                         next;
2908                     }
2909                 }
2910                 elsif($1 eq "OpenSSL") {
2911                     if(!$has_openssl) {
2912                         next;
2913                     }
2914                 }
2915                 elsif($1 eq "GnuTLS") {
2916                     if(!$has_gnutls) {
2917                         next;
2918                     }
2919                 }
2920                 elsif($1 eq "NSS") {
2921                     if(!$has_nss) {
2922                         next;
2923                     }
2924                 }
2925                 elsif($1 eq "axTLS") {
2926                     if(!$has_axtls) {
2927                         next;
2928                     }
2929                 }
2930                 elsif($1 eq "WinSSL") {
2931                     if(!$has_winssl) {
2932                         next;
2933                     }
2934                 }
2935                 elsif($1 eq "DarwinSSL") {
2936                     if(!$has_darwinssl) {
2937                         next;
2938                     }
2939                 }
2940                 elsif($1 eq "TrackMemory") {
2941                     if(!$has_memory_tracking) {
2942                         next;
2943                     }
2944                 }
2945                 elsif($1 eq "large_file") {
2946                     if(!$large_file) {
2947                         next;
2948                     }
2949                 }
2950                 elsif($1 eq "idn") {
2951                     if(!$has_idn) {
2952                         next;
2953                     }
2954                 }
2955                 elsif($1 eq "ipv6") {
2956                     if(!$has_ipv6) {
2957                         next;
2958                     }
2959                 }
2960                 elsif($1 eq "libz") {
2961                     if(!$has_libz) {
2962                         next;
2963                     }
2964                 }
2965                 elsif($1 eq "NTLM") {
2966                     if(!$has_ntlm) {
2967                         next;
2968                     }
2969                 }
2970                 elsif($1 eq "NTLM_WB") {
2971                     if(!$has_ntlm_wb) {
2972                         next;
2973                     }
2974                 }
2975                 elsif($1 eq "SSPI") {
2976                     if(!$has_sspi) {
2977                         next;
2978                     }
2979                 }
2980                 elsif($1 eq "getrlimit") {
2981                     if(!$has_getrlimit) {
2982                         next;
2983                     }
2984                 }
2985                 elsif($1 eq "crypto") {
2986                     if(!$has_crypto) {
2987                         next;
2988                     }
2989                 }
2990                 elsif($1 eq "TLS-SRP") {
2991                     if(!$has_tls_srp) {
2992                         next;
2993                     }
2994                 }
2995                 elsif($1 eq "Metalink") {
2996                     if(!$has_metalink) {
2997                         next;
2998                     }
2999                 }
3000                 else {
3001                     next;
3002                 }
3003             }
3004             else {
3005                 next;
3006             }
3007
3008             $why = "curl has $1 support";
3009             last;
3010         }
3011     }
3012
3013     if(!$why) {
3014         my @keywords = getpart("info", "keywords");
3015         my $match;
3016         my $k;
3017         for $k (@keywords) {
3018             chomp $k;
3019             if ($disabled_keywords{$k}) {
3020                 $why = "disabled by keyword";
3021             } elsif ($enabled_keywords{$k}) {
3022                 $match = 1;
3023             }
3024         }
3025
3026         if(!$why && !$match && %enabled_keywords) {
3027             $why = "disabled by missing keyword";
3028         }
3029     }
3030
3031     # test definition may instruct to (un)set environment vars
3032     # this is done this early, so that the precheck can use environment
3033     # variables and still bail out fine on errors
3034
3035     # restore environment variables that were modified in a previous run
3036     foreach my $var (keys %oldenv) {
3037         if($oldenv{$var} eq 'notset') {
3038             delete $ENV{$var} if($ENV{$var});
3039         }
3040         else {
3041             $ENV{$var} = $oldenv{$var};
3042         }
3043         delete $oldenv{$var};
3044     }
3045
3046     # remove test server commands file before servers are started/verified
3047     unlink($FTPDCMD) if(-f $FTPDCMD);
3048
3049     # timestamp required servers verification start
3050     $timesrvrini{$testnum} = Time::HiRes::time() if($timestats);
3051
3052     if(!$why) {
3053         $why = serverfortest($testnum);
3054     }
3055
3056     # timestamp required servers verification end
3057     $timesrvrend{$testnum} = Time::HiRes::time() if($timestats);
3058
3059     my @setenv = getpart("client", "setenv");
3060     if(@setenv) {
3061         foreach my $s (@setenv) {
3062             chomp $s;
3063             subVariables \$s;
3064             if($s =~ /([^=]*)=(.*)/) {
3065                 my ($var, $content) = ($1, $2);
3066                 # remember current setting, to restore it once test runs
3067                 $oldenv{$var} = ($ENV{$var})?"$ENV{$var}":'notset';
3068                 # set new value
3069                 if(!$content) {
3070                     delete $ENV{$var} if($ENV{$var});
3071                 }
3072                 else {
3073                     if($var =~ /^LD_PRELOAD/) {
3074                         if(exe_ext() && (exe_ext() eq '.exe')) {
3075                             # print "Skipping LD_PRELOAD due to lack of OS support\n";
3076                             next;
3077                         }
3078                         if($debug_build || ($has_shared ne "yes")) {
3079                             # print "Skipping LD_PRELOAD due to no release shared build\n";
3080                             next;
3081                         }
3082                     }
3083                     $ENV{$var} = "$content";
3084                 }
3085             }
3086         }
3087     }
3088
3089     if(!$why) {
3090         # TODO:
3091         # Add a precheck cache. If a precheck command was already invoked
3092         # exactly like this, then use the previous result to speed up
3093         # successive test invokes!
3094
3095         my @precheck = getpart("client", "precheck");
3096         if(@precheck) {
3097             $cmd = $precheck[0];
3098             chomp $cmd;
3099             subVariables \$cmd;
3100             if($cmd) {
3101                 my @p = split(/ /, $cmd);
3102                 if($p[0] !~ /\//) {
3103                     # the first word, the command, does not contain a slash so
3104                     # we will scan the "improved" PATH to find the command to
3105                     # be able to run it
3106                     my $fullp = checktestcmd($p[0]);
3107
3108                     if($fullp) {
3109                         $p[0] = $fullp;
3110                     }
3111                     $cmd = join(" ", @p);
3112                 }
3113
3114                 my @o = `$cmd 2>/dev/null`;
3115                 if($o[0]) {
3116                     $why = $o[0];
3117                     chomp $why;
3118                 } elsif($?) {
3119                     $why = "precheck command error";
3120                 }
3121                 logmsg "prechecked $cmd\n" if($verbose);
3122             }
3123         }
3124     }
3125
3126     if($why && !$listonly) {
3127         # there's a problem, count it as "skipped"
3128         $skipped++;
3129         $skipped{$why}++;
3130         $teststat[$testnum]=$why; # store reason for this test case
3131
3132         if(!$short) {
3133             if($skipped{$why} <= 3) {
3134                 # show only the first three skips for each reason
3135                 logmsg sprintf("test %03d SKIPPED: $why\n", $testnum);
3136             }
3137         }
3138
3139         timestampskippedevents($testnum);
3140         return -1;
3141     }
3142     logmsg sprintf("test %03d...", $testnum) if(!$automakestyle);
3143
3144     # extract the reply data
3145     my @reply = getpart("reply", "data");
3146     my @replycheck = getpart("reply", "datacheck");
3147
3148     my %replyattr = getpartattr("reply", "data");
3149     my %replycheckattr = getpartattr("reply", "datacheck");
3150
3151     if (@replycheck) {
3152         # we use this file instead to check the final output against
3153
3154         if($replycheckattr{'nonewline'}) {
3155             # Yes, we must cut off the final newline from the final line
3156             # of the datacheck
3157             chomp($replycheck[$#replycheck]);
3158         }
3159         if($replycheckattr{'mode'}) {
3160             $replyattr{'mode'} = $replycheckattr{'mode'};
3161         }
3162
3163         @reply=@replycheck;
3164     }
3165
3166     # this is the valid protocol blurb curl should generate
3167     my @protocol= fixarray ( getpart("verify", "protocol") );
3168
3169     # this is the valid protocol blurb curl should generate to a proxy
3170     my @proxyprot = fixarray ( getpart("verify", "proxy") );
3171
3172     # redirected stdout/stderr to these files
3173     $STDOUT="$LOGDIR/stdout$testnum";
3174     $STDERR="$LOGDIR/stderr$testnum";
3175
3176     # if this section exists, we verify that the stdout contained this:
3177     my @validstdout = fixarray ( getpart("verify", "stdout") );
3178
3179     # if this section exists, we verify upload
3180     my @upload = getpart("verify", "upload");
3181
3182     # if this section exists, it might be FTP server instructions:
3183     my @ftpservercmd = getpart("reply", "servercmd");
3184
3185     my $CURLOUT="$LOGDIR/curl$testnum.out"; # curl output if not stdout
3186
3187     # name of the test
3188     my @testname= getpart("client", "name");
3189     my $testname = $testname[0];
3190     $testname =~ s/\n//g;
3191     logmsg "[$testname]\n" if(!$short);
3192
3193     if($listonly) {
3194         timestampskippedevents($testnum);
3195         return 0; # look successful
3196     }
3197
3198     my @codepieces = getpart("client", "tool");
3199
3200     my $tool="";
3201     if(@codepieces) {
3202         $tool = $codepieces[0];
3203         chomp $tool;
3204     }
3205
3206     # remove server output logfile
3207     unlink($SERVERIN);
3208     unlink($SERVER2IN);
3209     unlink($PROXYIN);
3210
3211     if(@ftpservercmd) {
3212         # write the instructions to file
3213         writearray($FTPDCMD, \@ftpservercmd);
3214     }
3215
3216     # get the command line options to use
3217     my @blaha;
3218     ($cmd, @blaha)= getpart("client", "command");
3219
3220     if($cmd) {
3221         # make some nice replace operations
3222         $cmd =~ s/\n//g; # no newlines please
3223         # substitute variables in the command line
3224         subVariables \$cmd;
3225     }
3226     else {
3227         # there was no command given, use something silly
3228         $cmd="-";
3229     }
3230     if($has_memory_tracking) {
3231         unlink($memdump);
3232     }
3233
3234     # create a (possibly-empty) file before starting the test
3235     my @inputfile=getpart("client", "file");
3236     my %fileattr = getpartattr("client", "file");
3237     my $filename=$fileattr{'name'};
3238     if(@inputfile || $filename) {
3239         if(!$filename) {
3240             logmsg "ERROR: section client=>file has no name attribute\n";
3241             timestampskippedevents($testnum);
3242             return -1;
3243         }
3244         my $fileContent = join('', @inputfile);
3245         subVariables \$fileContent;
3246 #        logmsg "DEBUG: writing file " . $filename . "\n";
3247         open(OUTFILE, ">$filename");
3248         binmode OUTFILE; # for crapage systems, use binary
3249         print OUTFILE $fileContent;
3250         close(OUTFILE);
3251     }
3252
3253     my %cmdhash = getpartattr("client", "command");
3254
3255     my $out="";
3256
3257     if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-output/)) {
3258         #We may slap on --output!
3259         if (!@validstdout) {
3260             $out=" --output $CURLOUT ";
3261         }
3262     }
3263
3264     my $serverlogslocktimeout = $defserverlogslocktimeout;
3265     if($cmdhash{'timeout'}) {
3266         # test is allowed to override default server logs lock timeout
3267         if($cmdhash{'timeout'} =~ /(\d+)/) {
3268             $serverlogslocktimeout = $1 if($1 >= 0);
3269         }
3270     }
3271
3272     my $postcommanddelay = $defpostcommanddelay;
3273     if($cmdhash{'delay'}) {
3274         # test is allowed to specify a delay after command is executed
3275         if($cmdhash{'delay'} =~ /(\d+)/) {
3276             $postcommanddelay = $1 if($1 > 0);
3277         }
3278     }
3279
3280     my $CMDLINE;
3281     my $cmdargs;
3282     my $cmdtype = $cmdhash{'type'} || "default";
3283     my $fail_due_event_based = $evbased;
3284     if($cmdtype eq "perl") {
3285         # run the command line prepended with "perl"
3286         $cmdargs ="$cmd";
3287         $CMDLINE = "perl ";
3288         $tool=$CMDLINE;
3289         $disablevalgrind=1;
3290     }
3291     elsif($cmdtype eq "shell") {
3292         # run the command line prepended with "/bin/sh"
3293         $cmdargs ="$cmd";
3294         $CMDLINE = "/bin/sh ";
3295         $tool=$CMDLINE;
3296         $disablevalgrind=1;
3297     }
3298     elsif(!$tool) {
3299         # run curl, add suitable command line options
3300         $cmd = "-1 ".$cmd if(exists $feature{"SSL"} && ($has_axtls));
3301
3302         my $inc="";
3303         if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-include/)) {
3304             $inc = " --include";
3305         }
3306
3307         $cmdargs = "$out$inc ";
3308         $cmdargs .= "--trace-ascii log/trace$testnum ";
3309         $cmdargs .= "--trace-time ";
3310         if($evbased) {
3311             $cmdargs .= "--test-event ";
3312             $fail_due_event_based--;
3313         }
3314         $cmdargs .= $cmd;
3315     }
3316     else {
3317         $cmdargs = " $cmd"; # $cmd is the command line for the test file
3318         $CURLOUT = $STDOUT; # sends received data to stdout
3319
3320         if($tool =~ /^lib/) {
3321             $CMDLINE="$LIBDIR/$tool";
3322         }
3323         elsif($tool =~ /^unit/) {
3324             $CMDLINE="$UNITDIR/$tool";
3325         }
3326
3327         if(! -f $CMDLINE) {
3328             logmsg "The tool set in the test case for this: '$tool' does not exist\n";
3329             timestampskippedevents($testnum);
3330             return -1;
3331         }
3332         $DBGCURL=$CMDLINE;
3333     }
3334
3335     if($gdbthis) {
3336         # gdb is incompatible with valgrind, so disable it when debugging
3337         # Perhaps a better approach would be to run it under valgrind anyway
3338         # with --db-attach=yes or --vgdb=yes.
3339         $disablevalgrind=1;
3340     }
3341
3342     if($fail_due_event_based) {
3343         logmsg "This test cannot run event based\n";
3344         return -1;
3345     }
3346
3347     my @stdintest = getpart("client", "stdin");
3348
3349     if(@stdintest) {
3350         my $stdinfile="$LOGDIR/stdin-for-$testnum";
3351
3352         my %hash = getpartattr("client", "stdin");
3353         if($hash{'nonewline'}) {
3354             # cut off the final newline from the final line of the stdin data
3355             chomp($stdintest[$#stdintest]);
3356         }
3357
3358         writearray($stdinfile, \@stdintest);
3359
3360         $cmdargs .= " <$stdinfile";
3361     }
3362
3363     if(!$tool) {
3364         $CMDLINE="$CURL";
3365     }
3366
3367     my $usevalgrind;
3368     if($valgrind && !$disablevalgrind) {
3369         my @valgrindoption = getpart("verify", "valgrind");
3370         if((!@valgrindoption) || ($valgrindoption[0] !~ /disable/)) {
3371             $usevalgrind = 1;
3372             my $valgrindcmd = "$valgrind ";
3373             $valgrindcmd .= "$valgrind_tool " if($valgrind_tool);
3374             $valgrindcmd .= "--leak-check=yes ";
3375             $valgrindcmd .= "--suppressions=$srcdir/valgrind.supp ";
3376            # $valgrindcmd .= "--gen-suppressions=all ";
3377             $valgrindcmd .= "--num-callers=16 ";
3378             $valgrindcmd .= "${valgrind_logfile}=$LOGDIR/valgrind$testnum";
3379             $CMDLINE = "$valgrindcmd $CMDLINE";
3380         }
3381     }
3382
3383     $CMDLINE .= "$cmdargs >$STDOUT 2>$STDERR";
3384
3385     if($verbose) {
3386         logmsg "$CMDLINE\n";
3387     }
3388
3389     print CMDLOG "$CMDLINE\n";
3390
3391     unlink("core");
3392
3393     my $dumped_core;
3394     my $cmdres;
3395
3396     # Apr 2007: precommand isn't being used and could be removed
3397     my @precommand= getpart("client", "precommand");
3398     if($precommand[0]) {
3399         # this is pure perl to eval!
3400         my $code = join("", @precommand);
3401         eval $code;
3402         if($@) {
3403             logmsg "perl: $code\n";
3404             logmsg "precommand: $@";
3405             stopservers($verbose);
3406             timestampskippedevents($testnum);
3407             return -1;
3408         }
3409     }
3410
3411     if($gdbthis) {
3412         my $gdbinit = "$TESTDIR/gdbinit$testnum";
3413         open(GDBCMD, ">$LOGDIR/gdbcmd");
3414         print GDBCMD "set args $cmdargs\n";
3415         print GDBCMD "show args\n";
3416         print GDBCMD "source $gdbinit\n" if -e $gdbinit;
3417         close(GDBCMD);
3418     }
3419
3420     # timestamp starting of test command
3421     $timetoolini{$testnum} = Time::HiRes::time() if($timestats);
3422
3423     # run the command line we built
3424     if ($torture) {
3425         $cmdres = torture($CMDLINE,
3426                        "$gdb --directory libtest $DBGCURL -x $LOGDIR/gdbcmd");
3427     }
3428     elsif($gdbthis) {
3429         my $GDBW = ($gdbxwin) ? "-w" : "";
3430         runclient("$gdb --directory libtest $DBGCURL $GDBW -x $LOGDIR/gdbcmd");
3431         $cmdres=0; # makes it always continue after a debugged run
3432     }
3433     else {
3434         $cmdres = runclient("$CMDLINE");
3435         my $signal_num  = $cmdres & 127;
3436         $dumped_core = $cmdres & 128;
3437
3438         if(!$anyway && ($signal_num || $dumped_core)) {
3439             $cmdres = 1000;
3440         }
3441         else {
3442             $cmdres >>= 8;
3443             $cmdres = (2000 + $signal_num) if($signal_num && !$cmdres);
3444         }
3445     }
3446
3447     # timestamp finishing of test command
3448     $timetoolend{$testnum} = Time::HiRes::time() if($timestats);
3449
3450     if(!$dumped_core) {
3451         if(-r "core") {
3452             # there's core file present now!
3453             $dumped_core = 1;
3454         }
3455     }
3456
3457     if($dumped_core) {
3458         logmsg "core dumped\n";
3459         if(0 && $gdb) {
3460             logmsg "running gdb for post-mortem analysis:\n";
3461             open(GDBCMD, ">$LOGDIR/gdbcmd2");
3462             print GDBCMD "bt\n";
3463             close(GDBCMD);
3464             runclient("$gdb --directory libtest -x $LOGDIR/gdbcmd2 -batch $DBGCURL core ");
3465      #       unlink("$LOGDIR/gdbcmd2");
3466         }
3467     }
3468
3469     # If a server logs advisor read lock file exists, it is an indication
3470     # that the server has not yet finished writing out all its log files,
3471     # including server request log files used for protocol verification.
3472     # So, if the lock file exists the script waits here a certain amount
3473     # of time until the server removes it, or the given time expires.
3474
3475     if($serverlogslocktimeout) {
3476         my $lockretry = $serverlogslocktimeout * 20;
3477         while((-f $SERVERLOGS_LOCK) && $lockretry--) {
3478             select(undef, undef, undef, 0.05);
3479         }
3480         if(($lockretry < 0) &&
3481            ($serverlogslocktimeout >= $defserverlogslocktimeout)) {
3482             logmsg "Warning: server logs lock timeout ",
3483                    "($serverlogslocktimeout seconds) expired\n";
3484         }
3485     }
3486
3487     # Test harness ssh server does not have this synchronization mechanism,
3488     # this implies that some ssh server based tests might need a small delay
3489     # once that the client command has run to avoid false test failures.
3490     #
3491     # gnutls-serv also lacks this synchronization mechanism, so gnutls-serv
3492     # based tests might need a small delay once that the client command has
3493     # run to avoid false test failures.
3494
3495     sleep($postcommanddelay) if($postcommanddelay);
3496
3497     # timestamp removal of server logs advisor read lock
3498     $timesrvrlog{$testnum} = Time::HiRes::time() if($timestats);
3499
3500     # test definition might instruct to stop some servers
3501     # stop also all servers relative to the given one
3502
3503     my @killtestservers = getpart("client", "killserver");
3504     if(@killtestservers) {
3505         #
3506         # All servers relative to the given one must be stopped also
3507         #
3508         my @killservers;
3509         foreach my $server (@killtestservers) {
3510             chomp $server;
3511             if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|))$/) {
3512                 # given a stunnel ssl server, also kill non-ssl underlying one
3513                 push @killservers, "${1}${2}";
3514             }
3515             elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|))$/) {
3516                 # given a non-ssl server, also kill stunnel piggybacking one
3517                 push @killservers, "${1}s${2}";
3518             }
3519             elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) {
3520                 # given a socks server, also kill ssh underlying one
3521                 push @killservers, "ssh${2}";
3522             }
3523             elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) {
3524                 # given a ssh server, also kill socks piggybacking one
3525                 push @killservers, "socks${2}";
3526             }
3527             push @killservers, $server;
3528         }
3529         #
3530         # kill sockfilter processes for pingpong relative servers
3531         #
3532         foreach my $server (@killservers) {
3533             if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
3534                 my $proto  = $1;
3535                 my $idnum  = ($2 && ($2 > 1)) ? $2 : 1;
3536                 my $ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4;
3537                 killsockfilters($proto, $ipvnum, $idnum, $verbose);
3538             }
3539         }
3540         #
3541         # kill server relative pids clearing them in %run hash
3542         #
3543         my $pidlist;
3544         foreach my $server (@killservers) {
3545             if($run{$server}) {
3546                 $pidlist .= "$run{$server} ";
3547                 $run{$server} = 0;
3548             }
3549             $runcert{$server} = 0 if($runcert{$server});
3550         }
3551         killpid($verbose, $pidlist);
3552         #
3553         # cleanup server pid files
3554         #
3555         foreach my $server (@killservers) {
3556             my $pidfile = $serverpidfile{$server};
3557             my $pid = processexists($pidfile);
3558             if($pid > 0) {
3559                 logmsg "Warning: $server server unexpectedly alive\n";
3560                 killpid($verbose, $pid);
3561             }
3562             unlink($pidfile) if(-f $pidfile);
3563         }
3564     }
3565
3566     # remove the test server commands file after each test
3567     unlink($FTPDCMD) if(-f $FTPDCMD);
3568
3569     # run the postcheck command
3570     my @postcheck= getpart("client", "postcheck");
3571     if(@postcheck) {
3572         $cmd = $postcheck[0];
3573         chomp $cmd;
3574         subVariables \$cmd;
3575         if($cmd) {
3576             logmsg "postcheck $cmd\n" if($verbose);
3577             my $rc = runclient("$cmd");
3578             # Must run the postcheck command in torture mode in order
3579             # to clean up, but the result can't be relied upon.
3580             if($rc != 0 && !$torture) {
3581                 logmsg " postcheck FAILED\n";
3582                 # timestamp test result verification end
3583                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3584                 return 1;
3585             }
3586         }
3587     }
3588
3589     # restore environment variables that were modified
3590     if(%oldenv) {
3591         foreach my $var (keys %oldenv) {
3592             if($oldenv{$var} eq 'notset') {
3593                 delete $ENV{$var} if($ENV{$var});
3594             }
3595             else {
3596                 $ENV{$var} = "$oldenv{$var}";
3597             }
3598         }
3599     }
3600
3601     # Skip all the verification on torture tests
3602     if ($torture) {
3603         if(!$cmdres && !$keepoutfiles) {
3604             cleardir($LOGDIR);
3605         }
3606         # timestamp test result verification end
3607         $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3608         return $cmdres;
3609     }
3610
3611     my @err = getpart("verify", "errorcode");
3612     my $errorcode = $err[0] || "0";
3613     my $ok="";
3614     my $res;
3615     chomp $errorcode;
3616     if (@validstdout) {
3617         # verify redirected stdout
3618         my @actual = loadarray($STDOUT);
3619
3620         # variable-replace in the stdout we have from the test case file
3621         @validstdout = fixarray(@validstdout);
3622
3623         # get all attributes
3624         my %hash = getpartattr("verify", "stdout");
3625
3626         # get the mode attribute
3627         my $filemode=$hash{'mode'};
3628         if($filemode && ($filemode eq "text") && $has_textaware) {
3629             # text mode when running on windows: fix line endings
3630             map s/\r\n/\n/g, @validstdout;
3631             map s/\n/\r\n/g, @validstdout;
3632         }
3633
3634         if($hash{'nonewline'}) {
3635             # Yes, we must cut off the final newline from the final line
3636             # of the protocol data
3637             chomp($validstdout[$#validstdout]);
3638         }
3639
3640         $res = compare($testnum, $testname, "stdout", \@actual, \@validstdout);
3641         if($res) {
3642             return 1;
3643         }
3644         $ok .= "s";
3645     }
3646     else {
3647         $ok .= "-"; # stdout not checked
3648     }
3649
3650     if(!$replyattr{'nocheck'} && (@reply || $replyattr{'sendzero'})) {
3651         # verify the received data
3652         my @out = loadarray($CURLOUT);
3653         # get the mode attribute
3654         my $filemode=$replyattr{'mode'};
3655         if($filemode && ($filemode eq "text") && $has_textaware) {
3656             # text mode when running on windows: fix line endings
3657             map s/\r\n/\n/g, @reply;
3658             map s/\n/\r\n/g, @reply;
3659         }
3660
3661         $res = compare($testnum, $testname, "data", \@out, \@reply);
3662         if ($res) {
3663             return 1;
3664         }
3665         $ok .= "d";
3666     }
3667     else {
3668         $ok .= "-"; # data not checked
3669     }
3670
3671     if(@upload) {
3672         # verify uploaded data
3673         my @out = loadarray("$LOGDIR/upload.$testnum");
3674         $res = compare($testnum, $testname, "upload", \@out, \@upload);
3675         if ($res) {
3676             return 1;
3677         }
3678         $ok .= "u";
3679     }
3680     else {
3681         $ok .= "-"; # upload not checked
3682     }
3683
3684     if(@protocol) {
3685         # Verify the sent request
3686         my @out = loadarray($SERVERIN);
3687
3688         # what to cut off from the live protocol sent by curl
3689         my @strip = getpart("verify", "strip");
3690
3691         my @protstrip=@protocol;
3692
3693         # check if there's any attributes on the verify/protocol section
3694         my %hash = getpartattr("verify", "protocol");
3695
3696         if($hash{'nonewline'}) {
3697             # Yes, we must cut off the final newline from the final line
3698             # of the protocol data
3699             chomp($protstrip[$#protstrip]);
3700         }
3701
3702         for(@strip) {
3703             # strip off all lines that match the patterns from both arrays
3704             chomp $_;
3705             @out = striparray( $_, \@out);
3706             @protstrip= striparray( $_, \@protstrip);
3707         }
3708
3709         # what parts to cut off from the protocol
3710         my @strippart = getpart("verify", "strippart");
3711         my $strip;
3712         for $strip (@strippart) {
3713             chomp $strip;
3714             for(@out) {
3715                 eval $strip;
3716             }
3717         }
3718
3719         $res = compare($testnum, $testname, "protocol", \@out, \@protstrip);
3720         if($res) {
3721             return 1;
3722         }
3723
3724         $ok .= "p";
3725
3726     }
3727     else {
3728         $ok .= "-"; # protocol not checked
3729     }
3730
3731     if(@proxyprot) {
3732         # Verify the sent proxy request
3733         my @out = loadarray($PROXYIN);
3734
3735         # what to cut off from the live protocol sent by curl, we use the
3736         # same rules as for <protocol>
3737         my @strip = getpart("verify", "strip");
3738
3739         my @protstrip=@proxyprot;
3740
3741         # check if there's any attributes on the verify/protocol section
3742         my %hash = getpartattr("verify", "proxy");
3743
3744         if($hash{'nonewline'}) {
3745             # Yes, we must cut off the final newline from the final line
3746             # of the protocol data
3747             chomp($protstrip[$#protstrip]);
3748         }
3749
3750         for(@strip) {
3751             # strip off all lines that match the patterns from both arrays
3752             chomp $_;
3753             @out = striparray( $_, \@out);
3754             @protstrip= striparray( $_, \@protstrip);
3755         }
3756
3757         # what parts to cut off from the protocol
3758         my @strippart = getpart("verify", "strippart");
3759         my $strip;
3760         for $strip (@strippart) {
3761             chomp $strip;
3762             for(@out) {
3763                 eval $strip;
3764             }
3765         }
3766
3767         $res = compare($testnum, $testname, "proxy", \@out, \@protstrip);
3768         if($res) {
3769             return 1;
3770         }
3771
3772         $ok .= "P";
3773
3774     }
3775     else {
3776         $ok .= "-"; # protocol not checked
3777     }
3778
3779     my $outputok;
3780     for my $partsuffix (('', '1', '2', '3', '4')) {
3781         my @outfile=getpart("verify", "file".$partsuffix);
3782         if(@outfile || partexists("verify", "file".$partsuffix) ) {
3783             # we're supposed to verify a dynamically generated file!
3784             my %hash = getpartattr("verify", "file".$partsuffix);
3785
3786             my $filename=$hash{'name'};
3787             if(!$filename) {
3788                 logmsg "ERROR: section verify=>file$partsuffix ".
3789                        "has no name attribute\n";
3790                 stopservers($verbose);
3791                 # timestamp test result verification end
3792                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3793                 return -1;
3794             }
3795             my @generated=loadarray($filename);
3796
3797             # what parts to cut off from the file
3798             my @stripfile = getpart("verify", "stripfile".$partsuffix);
3799
3800             my $filemode=$hash{'mode'};
3801             if($filemode && ($filemode eq "text") && $has_textaware) {
3802                 # text mode when running on windows: fix line endings
3803                 map s/\r\n/\n/g, @outfile;
3804                 map s/\n/\r\n/g, @outfile;
3805             }
3806
3807             my $strip;
3808             for $strip (@stripfile) {
3809                 chomp $strip;
3810                 my @newgen;
3811                 for(@generated) {
3812                     eval $strip;
3813                     if($_) {
3814                         push @newgen, $_;
3815                     }
3816                 }
3817                 # this is to get rid of array entries that vanished (zero
3818                 # length) because of replacements
3819                 @generated = @newgen;
3820             }
3821
3822             @outfile = fixarray(@outfile);
3823
3824             $res = compare($testnum, $testname, "output ($filename)",
3825                            \@generated, \@outfile);
3826             if($res) {
3827                 return 1;
3828             }
3829
3830             $outputok = 1; # output checked
3831         }
3832     }
3833     $ok .= ($outputok) ? "o" : "-"; # output checked or not
3834
3835     # accept multiple comma-separated error codes
3836     my @splerr = split(/ *, */, $errorcode);
3837     my $errok;
3838     foreach my $e (@splerr) {
3839         if($e == $cmdres) {
3840             # a fine error code
3841             $errok = 1;
3842             last;
3843         }
3844     }
3845
3846     if($errok) {
3847         $ok .= "e";
3848     }
3849     else {
3850         if(!$short) {
3851             logmsg sprintf("\n%s returned $cmdres, when expecting %s\n",
3852                            (!$tool)?"curl":$tool, $errorcode);
3853         }
3854         logmsg " exit FAILED\n";
3855         # timestamp test result verification end
3856         $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3857         return 1;
3858     }
3859
3860     if($has_memory_tracking) {
3861         if(! -f $memdump) {
3862             logmsg "\n** ALERT! memory tracking with no output file?\n"
3863                 if(!$cmdtype eq "perl");
3864         }
3865         else {
3866             my @memdata=`$memanalyze $memdump`;
3867             my $leak=0;
3868             for(@memdata) {
3869                 if($_ ne "") {
3870                     # well it could be other memory problems as well, but
3871                     # we call it leak for short here
3872                     $leak=1;
3873                 }
3874             }
3875             if($leak) {
3876                 logmsg "\n** MEMORY FAILURE\n";
3877                 logmsg @memdata;
3878                 # timestamp test result verification end
3879                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3880                 return 1;
3881             }
3882             else {
3883                 $ok .= "m";
3884             }
3885         }
3886     }
3887     else {
3888         $ok .= "-"; # memory not checked
3889     }
3890
3891     if($valgrind) {
3892         if($usevalgrind) {
3893             unless(opendir(DIR, "$LOGDIR")) {
3894                 logmsg "ERROR: unable to read $LOGDIR\n";
3895                 # timestamp test result verification end
3896                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3897                 return 1;
3898             }
3899             my @files = readdir(DIR);
3900             closedir(DIR);
3901             my $vgfile;
3902             foreach my $file (@files) {
3903                 if($file =~ /^valgrind$testnum(\..*|)$/) {
3904                     $vgfile = $file;
3905                     last;
3906                 }
3907             }
3908             if(!$vgfile) {
3909                 logmsg "ERROR: valgrind log file missing for test $testnum\n";
3910                 # timestamp test result verification end
3911                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3912                 return 1;
3913             }
3914             my @e = valgrindparse($srcdir, $feature{'SSL'}, "$LOGDIR/$vgfile");
3915             if(@e && $e[0]) {
3916                 if($automakestyle) {
3917                     logmsg "FAIL: $testnum - $testname - valgrind\n";
3918                 }
3919                 else {
3920                     logmsg " valgrind ERROR ";
3921                     logmsg @e;
3922                 }
3923                 # timestamp test result verification end
3924                 $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3925                 return 1;
3926             }
3927             $ok .= "v";
3928         }
3929         else {
3930             if(!$short && !$disablevalgrind) {
3931                 logmsg " valgrind SKIPPED\n";
3932             }
3933             $ok .= "-"; # skipped
3934         }
3935     }
3936     else {
3937         $ok .= "-"; # valgrind not checked
3938     }
3939     # add 'E' for event-based
3940     $ok .= $evbased ? "E" : "-";
3941
3942     logmsg "$ok " if(!$short);
3943
3944     my $sofar= time()-$start;
3945     my $esttotal = $sofar/$count * $total;
3946     my $estleft = $esttotal - $sofar;
3947     my $left=sprintf("remaining: %02d:%02d",
3948                      $estleft/60,
3949                      $estleft%60);
3950
3951     if(!$automakestyle) {
3952         logmsg sprintf("OK (%-3d out of %-3d, %s)\n", $count, $total, $left);
3953     }
3954     else {
3955         logmsg "PASS: $testnum - $testname\n";
3956     }
3957
3958     # the test succeeded, remove all log files
3959     if(!$keepoutfiles) {
3960         cleardir($LOGDIR);
3961     }
3962
3963     # timestamp test result verification end
3964     $timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
3965
3966     return 0;
3967 }
3968
3969 #######################################################################
3970 # Stop all running test servers
3971 #
3972 sub stopservers {
3973     my $verbose = $_[0];
3974     #
3975     # kill sockfilter processes for all pingpong servers
3976     #
3977     killallsockfilters($verbose);
3978     #
3979     # kill all server pids from %run hash clearing them
3980     #
3981     my $pidlist;
3982     foreach my $server (keys %run) {
3983         if($run{$server}) {
3984             if($verbose) {
3985                 my $prev = 0;
3986                 my $pids = $run{$server};
3987                 foreach my $pid (split(' ', $pids)) {
3988                     if($pid != $prev) {
3989                         logmsg sprintf("* kill pid for %s => %d\n",
3990                             $server, $pid);
3991                         $prev = $pid;
3992                     }
3993                 }
3994             }
3995             $pidlist .= "$run{$server} ";
3996             $run{$server} = 0;
3997         }
3998         $runcert{$server} = 0 if($runcert{$server});
3999     }
4000     killpid($verbose, $pidlist);
4001     #
4002     # cleanup all server pid files
4003     #
4004     foreach my $server (keys %serverpidfile) {
4005         my $pidfile = $serverpidfile{$server};
4006         my $pid = processexists($pidfile);
4007         if($pid > 0) {
4008             logmsg "Warning: $server server unexpectedly alive\n";
4009             killpid($verbose, $pid);
4010         }
4011         unlink($pidfile) if(-f $pidfile);
4012     }
4013 }
4014
4015 #######################################################################
4016 # startservers() starts all the named servers
4017 #
4018 # Returns: string with error reason or blank for success
4019 #
4020 sub startservers {
4021     my @what = @_;
4022     my ($pid, $pid2);
4023     for(@what) {
4024         my (@whatlist) = split(/\s+/,$_);
4025         my $what = lc($whatlist[0]);
4026         $what =~ s/[^a-z0-9-]//g;
4027
4028         my $certfile;
4029         if($what =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|))$/) {
4030             $certfile = ($whatlist[1]) ? $whatlist[1] : 'stunnel.pem';
4031         }
4032
4033         if(($what eq "pop3") ||
4034            ($what eq "ftp") ||
4035            ($what eq "imap") ||
4036            ($what eq "smtp")) {
4037             if($torture && $run{$what} &&
4038                !responsive_pingpong_server($what, "", $verbose)) {
4039                 stopserver($what);
4040             }
4041             if(!$run{$what}) {
4042                 ($pid, $pid2) = runpingpongserver($what, "", $verbose);
4043                 if($pid <= 0) {
4044                     return "failed starting ". uc($what) ." server";
4045                 }
4046                 printf ("* pid $what => %d %d\n", $pid, $pid2) if($verbose);
4047                 $run{$what}="$pid $pid2";
4048             }
4049         }
4050         elsif($what eq "ftp2") {
4051             if($torture && $run{'ftp2'} &&
4052                !responsive_pingpong_server("ftp", "2", $verbose)) {
4053                 stopserver('ftp2');
4054             }
4055             if(!$run{'ftp2'}) {
4056                 ($pid, $pid2) = runpingpongserver("ftp", "2", $verbose);
4057                 if($pid <= 0) {
4058                     return "failed starting FTP2 server";
4059                 }
4060                 printf ("* pid ftp2 => %d %d\n", $pid, $pid2) if($verbose);
4061                 $run{'ftp2'}="$pid $pid2";
4062             }
4063         }
4064         elsif($what eq "ftp-ipv6") {
4065             if($torture && $run{'ftp-ipv6'} &&
4066                !responsive_pingpong_server("ftp", "", $verbose, "ipv6")) {
4067                 stopserver('ftp-ipv6');
4068             }
4069             if(!$run{'ftp-ipv6'}) {
4070                 ($pid, $pid2) = runpingpongserver("ftp", "", $verbose, "ipv6");
4071                 if($pid <= 0) {
4072                     return "failed starting FTP-IPv6 server";
4073                 }
4074                 logmsg sprintf("* pid ftp-ipv6 => %d %d\n", $pid,
4075                        $pid2) if($verbose);
4076                 $run{'ftp-ipv6'}="$pid $pid2";
4077             }
4078         }
4079         elsif($what eq "gopher") {
4080             if($torture && $run{'gopher'} &&
4081                !responsive_http_server("gopher", $verbose, 0, $GOPHERPORT)) {
4082                 stopserver('gopher');
4083             }
4084             if(!$run{'gopher'}) {
4085                 ($pid, $pid2) = runhttpserver("gopher", $verbose, 0,
4086                                               $GOPHERPORT);
4087                 if($pid <= 0) {
4088                     return "failed starting GOPHER server";
4089                 }
4090                 logmsg sprintf ("* pid gopher => %d %d\n", $pid, $pid2)
4091                     if($verbose);
4092                 $run{'gopher'}="$pid $pid2";
4093             }
4094         }
4095         elsif($what eq "gopher-ipv6") {
4096             if($torture && $run{'gopher-ipv6'} &&
4097                !responsive_http_server("gopher", $verbose, "ipv6",
4098                                        $GOPHER6PORT)) {
4099                 stopserver('gopher-ipv6');
4100             }
4101             if(!$run{'gopher-ipv6'}) {
4102                 ($pid, $pid2) = runhttpserver("gopher", $verbose, "ipv6",
4103                                               $GOPHER6PORT);
4104                 if($pid <= 0) {
4105                     return "failed starting GOPHER-IPv6 server";
4106                 }
4107                 logmsg sprintf("* pid gopher-ipv6 => %d %d\n", $pid,
4108                                $pid2) if($verbose);
4109                 $run{'gopher-ipv6'}="$pid $pid2";
4110             }
4111         }
4112         elsif($what eq "http") {
4113             if($torture && $run{'http'} &&
4114                !responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
4115                 stopserver('http');
4116             }
4117             if(!$run{'http'}) {
4118                 ($pid, $pid2) = runhttpserver("http", $verbose, 0,
4119                                               $HTTPPORT);
4120                 if($pid <= 0) {
4121                     return "failed starting HTTP server";
4122                 }
4123                 logmsg sprintf ("* pid http => %d %d\n", $pid, $pid2)
4124                     if($verbose);
4125                 $run{'http'}="$pid $pid2";
4126             }
4127         }
4128         elsif($what eq "http-proxy") {
4129             if($torture && $run{'http-proxy'} &&
4130                !responsive_http_server("http", $verbose, "proxy",
4131                                        $HTTPPROXYPORT)) {
4132                 stopserver('http-proxy');
4133             }
4134             if(!$run{'http-proxy'}) {
4135                 ($pid, $pid2) = runhttpserver("http", $verbose, "proxy",
4136                                               $HTTPPROXYPORT);
4137                 if($pid <= 0) {
4138                     return "failed starting HTTP-proxy server";
4139                 }
4140                 logmsg sprintf ("* pid http-proxy => %d %d\n", $pid, $pid2)
4141                     if($verbose);
4142                 $run{'http-proxy'}="$pid $pid2";
4143             }
4144         }
4145         elsif($what eq "http-ipv6") {
4146             if($torture && $run{'http-ipv6'} &&
4147                !responsive_http_server("http", $verbose, "IPv6", $HTTP6PORT)) {
4148                 stopserver('http-ipv6');
4149             }
4150             if(!$run{'http-ipv6'}) {
4151                 ($pid, $pid2) = runhttpserver("http", $verbose, "ipv6",
4152                                               $HTTP6PORT);
4153                 if($pid <= 0) {
4154                     return "failed starting HTTP-IPv6 server";
4155                 }
4156                 logmsg sprintf("* pid http-ipv6 => %d %d\n", $pid, $pid2)
4157                     if($verbose);
4158                 $run{'http-ipv6'}="$pid $pid2";
4159             }
4160         }
4161         elsif($what eq "http-pipe") {
4162             if($torture && $run{'http-pipe'} &&
4163                !responsive_http_server("http", $verbose, "pipe",
4164                                        $HTTPPIPEPORT)) {
4165                 stopserver('http-pipe');
4166             }
4167             if(!$run{'http-pipe'}) {
4168                 ($pid, $pid2) = runhttpserver("http", $verbose, "pipe",
4169                                               $HTTPPIPEPORT);
4170                 if($pid <= 0) {
4171                     return "failed starting HTTP-pipe server";
4172                 }
4173                 logmsg sprintf ("* pid http-pipe => %d %d\n", $pid, $pid2)
4174                     if($verbose);
4175                 $run{'http-pipe'}="$pid $pid2";
4176             }
4177         }
4178         elsif($what eq "rtsp") {
4179             if($torture && $run{'rtsp'} &&
4180                !responsive_rtsp_server($verbose)) {
4181                 stopserver('rtsp');
4182             }
4183             if(!$run{'rtsp'}) {
4184                 ($pid, $pid2) = runrtspserver($verbose);
4185                 if($pid <= 0) {
4186                     return "failed starting RTSP server";
4187                 }
4188                 printf ("* pid rtsp => %d %d\n", $pid, $pid2) if($verbose);
4189                 $run{'rtsp'}="$pid $pid2";
4190             }
4191         }
4192         elsif($what eq "rtsp-ipv6") {
4193             if($torture && $run{'rtsp-ipv6'} &&
4194                !responsive_rtsp_server($verbose, "IPv6")) {
4195                 stopserver('rtsp-ipv6');
4196             }
4197             if(!$run{'rtsp-ipv6'}) {
4198                 ($pid, $pid2) = runrtspserver($verbose, "IPv6");
4199                 if($pid <= 0) {
4200                     return "failed starting RTSP-IPv6 server";
4201                 }
4202                 logmsg sprintf("* pid rtsp-ipv6 => %d %d\n", $pid, $pid2)
4203                     if($verbose);
4204                 $run{'rtsp-ipv6'}="$pid $pid2";
4205             }
4206         }
4207         elsif($what eq "ftps") {
4208             if(!$stunnel) {
4209                 # we can't run ftps tests without stunnel
4210                 return "no stunnel";
4211             }
4212             if(!$ssl_version) {
4213                 # we can't run ftps tests if libcurl is SSL-less
4214                 return "curl lacks SSL support";
4215             }
4216             if($runcert{'ftps'} && ($runcert{'ftps'} ne $certfile)) {
4217                 # stop server when running and using a different cert
4218                 stopserver('ftps');
4219             }
4220             if($torture && $run{'ftp'} &&
4221                !responsive_pingpong_server("ftp", "", $verbose)) {
4222                 stopserver('ftp');
4223             }
4224             if(!$run{'ftp'}) {
4225                 ($pid, $pid2) = runpingpongserver("ftp", "", $verbose);
4226                 if($pid <= 0) {
4227                     return "failed starting FTP server";
4228                 }
4229                 printf ("* pid ftp => %d %d\n", $pid, $pid2) if($verbose);
4230                 $run{'ftp'}="$pid $pid2";
4231             }
4232             if(!$run{'ftps'}) {
4233                 ($pid, $pid2) = runftpsserver($verbose, "", $certfile);
4234                 if($pid <= 0) {
4235                     return "failed starting FTPS server (stunnel)";
4236                 }
4237                 logmsg sprintf("* pid ftps => %d %d\n", $pid, $pid2)
4238                     if($verbose);
4239                 $run{'ftps'}="$pid $pid2";
4240             }
4241         }
4242         elsif($what eq "file") {
4243             # we support it but have no server!
4244         }
4245         elsif($what eq "https") {
4246             if(!$stunnel) {
4247                 # we can't run https tests without stunnel
4248                 return "no stunnel";
4249             }
4250             if(!$ssl_version) {
4251                 # we can't run https tests if libcurl is SSL-less
4252                 return "curl lacks SSL support";
4253             }
4254             if($runcert{'https'} && ($runcert{'https'} ne $certfile)) {
4255                 # stop server when running and using a different cert
4256                 stopserver('https');
4257             }
4258             if($torture && $run{'http'} &&
4259                !responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
4260                 stopserver('http');
4261             }
4262             if(!$run{'http'}) {
4263                 ($pid, $pid2) = runhttpserver("http", $verbose, 0,
4264                                               $HTTPPORT);
4265                 if($pid <= 0) {
4266                     return "failed starting HTTP server";
4267                 }
4268                 printf ("* pid http => %d %d\n", $pid, $pid2) if($verbose);
4269                 $run{'http'}="$pid $pid2";
4270             }
4271             if(!$run{'https'}) {
4272                 ($pid, $pid2) = runhttpsserver($verbose, "", $certfile);
4273                 if($pid <= 0) {
4274                     return "failed starting HTTPS server (stunnel)";
4275                 }
4276                 logmsg sprintf("* pid https => %d %d\n", $pid, $pid2)
4277                     if($verbose);
4278                 $run{'https'}="$pid $pid2";
4279             }
4280         }
4281         elsif($what eq "httptls") {
4282             if(!$httptlssrv) {
4283                 # for now, we can't run http TLS-EXT tests without gnutls-serv
4284                 return "no gnutls-serv";
4285             }
4286             if($torture && $run{'httptls'} &&
4287                !responsive_httptls_server($verbose, "IPv4")) {
4288                 stopserver('httptls');
4289             }
4290             if(!$run{'httptls'}) {
4291                 ($pid, $pid2) = runhttptlsserver($verbose, "IPv4");
4292                 if($pid <= 0) {
4293                     return "failed starting HTTPTLS server (gnutls-serv)";
4294                 }
4295                 logmsg sprintf("* pid httptls => %d %d\n", $pid, $pid2)
4296                     if($verbose);
4297                 $run{'httptls'}="$pid $pid2";
4298             }
4299         }
4300         elsif($what eq "httptls-ipv6") {
4301             if(!$httptlssrv) {
4302                 # for now, we can't run http TLS-EXT tests without gnutls-serv
4303                 return "no gnutls-serv";
4304             }
4305             if($torture && $run{'httptls-ipv6'} &&
4306                !responsive_httptls_server($verbose, "IPv6")) {
4307                 stopserver('httptls-ipv6');
4308             }
4309             if(!$run{'httptls-ipv6'}) {
4310                 ($pid, $pid2) = runhttptlsserver($verbose, "IPv6");
4311                 if($pid <= 0) {
4312                     return "failed starting HTTPTLS-IPv6 server (gnutls-serv)";
4313                 }
4314                 logmsg sprintf("* pid httptls-ipv6 => %d %d\n", $pid, $pid2)
4315                     if($verbose);
4316                 $run{'httptls-ipv6'}="$pid $pid2";
4317             }
4318         }
4319         elsif($what eq "tftp") {
4320             if($torture && $run{'tftp'} &&
4321                !responsive_tftp_server("", $verbose)) {
4322                 stopserver('tftp');
4323             }
4324             if(!$run{'tftp'}) {
4325                 ($pid, $pid2) = runtftpserver("", $verbose);
4326                 if($pid <= 0) {
4327                     return "failed starting TFTP server";
4328                 }
4329                 printf ("* pid tftp => %d %d\n", $pid, $pid2) if($verbose);
4330                 $run{'tftp'}="$pid $pid2";
4331             }
4332         }
4333         elsif($what eq "tftp-ipv6") {
4334             if($torture && $run{'tftp-ipv6'} &&
4335                !responsive_tftp_server("", $verbose, "IPv6")) {
4336                 stopserver('tftp-ipv6');
4337             }
4338             if(!$run{'tftp-ipv6'}) {
4339                 ($pid, $pid2) = runtftpserver("", $verbose, "IPv6");
4340                 if($pid <= 0) {
4341                     return "failed starting TFTP-IPv6 server";
4342                 }
4343                 printf("* pid tftp-ipv6 => %d %d\n", $pid, $pid2) if($verbose);
4344                 $run{'tftp-ipv6'}="$pid $pid2";
4345             }
4346         }
4347         elsif($what eq "sftp" || $what eq "scp" || $what eq "socks4" || $what eq "socks5" ) {
4348             if(!$run{'ssh'}) {
4349                 ($pid, $pid2) = runsshserver("", $verbose);
4350                 if($pid <= 0) {
4351                     return "failed starting SSH server";
4352                 }
4353                 printf ("* pid ssh => %d %d\n", $pid, $pid2) if($verbose);
4354                 $run{'ssh'}="$pid $pid2";
4355             }
4356             if($what eq "socks4" || $what eq "socks5") {
4357                 if(!$run{'socks'}) {
4358                     ($pid, $pid2) = runsocksserver("", $verbose);
4359                     if($pid <= 0) {
4360                         return "failed starting socks server";
4361                     }
4362                     printf ("* pid socks => %d %d\n", $pid, $pid2) if($verbose);
4363                     $run{'socks'}="$pid $pid2";
4364                 }
4365             }
4366             if($what eq "socks5") {
4367                 if(!$sshdid) {
4368                     # Not an OpenSSH or SunSSH ssh daemon
4369                     logmsg "Not OpenSSH or SunSSH; socks5 tests need at least OpenSSH 3.7\n";
4370                     return "failed starting socks5 server";
4371                 }
4372                 elsif(($sshdid =~ /OpenSSH/) && ($sshdvernum < 370)) {
4373                     # Need OpenSSH 3.7 for socks5 - http://www.openssh.com/txt/release-3.7
4374                     logmsg "$sshdverstr insufficient; socks5 tests need at least OpenSSH 3.7\n";
4375                     return "failed starting socks5 server";
4376                 }
4377                 elsif(($sshdid =~ /SunSSH/)  && ($sshdvernum < 100)) {
4378                     # Need SunSSH 1.0 for socks5
4379                     logmsg "$sshdverstr insufficient; socks5 tests need at least SunSSH 1.0\n";
4380                     return "failed starting socks5 server";
4381                 }
4382             }
4383         }
4384         elsif($what eq "none") {
4385             logmsg "* starts no server\n" if ($verbose);
4386         }
4387         else {
4388             warn "we don't support a server for $what";
4389             return "no server for $what";
4390         }
4391     }
4392     return 0;
4393 }
4394
4395 ##############################################################################
4396 # This function makes sure the right set of server is running for the
4397 # specified test case. This is a useful design when we run single tests as not
4398 # all servers need to run then!
4399 #
4400 # Returns: a string, blank if everything is fine or a reason why it failed
4401 #
4402 sub serverfortest {
4403     my ($testnum)=@_;
4404
4405     my @what = getpart("client", "server");
4406
4407     if(!$what[0]) {
4408         warn "Test case $testnum has no server(s) specified";
4409         return "no server specified";
4410     }
4411
4412     for(my $i = scalar(@what) - 1; $i >= 0; $i--) {
4413         my $srvrline = $what[$i];
4414         chomp $srvrline if($srvrline);
4415         if($srvrline =~ /^(\S+)((\s*)(.*))/) {
4416             my $server = "${1}";
4417             my $lnrest = "${2}";
4418             my $tlsext;
4419             if($server =~ /^(httptls)(\+)(ext|srp)(\d*)(-ipv6|)$/) {
4420                 $server = "${1}${4}${5}";
4421                 $tlsext = uc("TLS-${3}");
4422             }
4423             if(! grep /^\Q$server\E$/, @protocols) {
4424                 if(substr($server,0,5) ne "socks") {
4425                     if($tlsext) {
4426                         return "curl lacks $tlsext support";
4427                     }
4428                     else {
4429                         return "curl lacks $server server support";
4430                     }
4431                 }
4432             }
4433             $what[$i] = "$server$lnrest" if($tlsext);
4434         }
4435     }
4436
4437     return &startservers(@what);
4438 }
4439
4440 #######################################################################
4441 # runtimestats displays test-suite run time statistics
4442 #
4443 sub runtimestats {
4444     my $lasttest = $_[0];
4445
4446     return if(not $timestats);
4447
4448     logmsg "\nTest suite total running time breakdown per task...\n\n";
4449
4450     my @timesrvr;
4451     my @timeprep;
4452     my @timetool;
4453     my @timelock;
4454     my @timevrfy;
4455     my @timetest;
4456     my $timesrvrtot = 0.0;
4457     my $timepreptot = 0.0;
4458     my $timetooltot = 0.0;
4459     my $timelocktot = 0.0;
4460     my $timevrfytot = 0.0;
4461     my $timetesttot = 0.0;
4462     my $counter;
4463
4464     for my $testnum (1 .. $lasttest) {
4465         if($timesrvrini{$testnum}) {
4466             $timesrvrtot += $timesrvrend{$testnum} - $timesrvrini{$testnum};
4467             $timepreptot +=
4468                 (($timetoolini{$testnum} - $timeprepini{$testnum}) -
4469                  ($timesrvrend{$testnum} - $timesrvrini{$testnum}));
4470             $timetooltot += $timetoolend{$testnum} - $timetoolini{$testnum};
4471             $timelocktot += $timesrvrlog{$testnum} - $timetoolend{$testnum};
4472             $timevrfytot += $timevrfyend{$testnum} - $timesrvrlog{$testnum};
4473             $timetesttot += $timevrfyend{$testnum} - $timeprepini{$testnum};
4474             push @timesrvr, sprintf("%06.3f  %04d",
4475                 $timesrvrend{$testnum} - $timesrvrini{$testnum}, $testnum);
4476             push @timeprep, sprintf("%06.3f  %04d",
4477                 ($timetoolini{$testnum} - $timeprepini{$testnum}) -
4478                 ($timesrvrend{$testnum} - $timesrvrini{$testnum}), $testnum);
4479             push @timetool, sprintf("%06.3f  %04d",
4480                 $timetoolend{$testnum} - $timetoolini{$testnum}, $testnum);
4481             push @timelock, sprintf("%06.3f  %04d",
4482                 $timesrvrlog{$testnum} - $timetoolend{$testnum}, $testnum);
4483             push @timevrfy, sprintf("%06.3f  %04d",
4484                 $timevrfyend{$testnum} - $timesrvrlog{$testnum}, $testnum);
4485             push @timetest, sprintf("%06.3f  %04d",
4486                 $timevrfyend{$testnum} - $timeprepini{$testnum}, $testnum);
4487         }
4488     }
4489
4490     {
4491         no warnings 'numeric';
4492         @timesrvr = sort { $b <=> $a } @timesrvr;
4493         @timeprep = sort { $b <=> $a } @timeprep;
4494         @timetool = sort { $b <=> $a } @timetool;
4495         @timelock = sort { $b <=> $a } @timelock;
4496         @timevrfy = sort { $b <=> $a } @timevrfy;
4497         @timetest = sort { $b <=> $a } @timetest;
4498     }
4499
4500     logmsg "Spent ". sprintf("%08.3f ", $timesrvrtot) .
4501            "seconds starting and verifying test harness servers.\n";
4502     logmsg "Spent ". sprintf("%08.3f ", $timepreptot) .
4503            "seconds reading definitions and doing test preparations.\n";
4504     logmsg "Spent ". sprintf("%08.3f ", $timetooltot) .
4505            "seconds actually running test tools.\n";
4506     logmsg "Spent ". sprintf("%08.3f ", $timelocktot) .
4507            "seconds awaiting server logs lock removal.\n";
4508     logmsg "Spent ". sprintf("%08.3f ", $timevrfytot) .
4509            "seconds verifying test results.\n";
4510     logmsg "Spent ". sprintf("%08.3f ", $timetesttot) .
4511            "seconds doing all of the above.\n";
4512
4513     $counter = 25;
4514     logmsg "\nTest server starting and verification time per test ".
4515         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4516     logmsg "-time-  test\n";
4517     logmsg "------  ----\n";
4518     foreach my $txt (@timesrvr) {
4519         last if((not $fullstats) && (not $counter--));
4520         logmsg "$txt\n";
4521     }
4522
4523     $counter = 10;
4524     logmsg "\nTest definition reading and preparation time per test ".
4525         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4526     logmsg "-time-  test\n";
4527     logmsg "------  ----\n";
4528     foreach my $txt (@timeprep) {
4529         last if((not $fullstats) && (not $counter--));
4530         logmsg "$txt\n";
4531     }
4532
4533     $counter = 25;
4534     logmsg "\nTest tool execution time per test ".
4535         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4536     logmsg "-time-  test\n";
4537     logmsg "------  ----\n";
4538     foreach my $txt (@timetool) {
4539         last if((not $fullstats) && (not $counter--));
4540         logmsg "$txt\n";
4541     }
4542
4543     $counter = 15;
4544     logmsg "\nTest server logs lock removal time per test ".
4545         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4546     logmsg "-time-  test\n";
4547     logmsg "------  ----\n";
4548     foreach my $txt (@timelock) {
4549         last if((not $fullstats) && (not $counter--));
4550         logmsg "$txt\n";
4551     }
4552
4553     $counter = 10;
4554     logmsg "\nTest results verification time per test ".
4555         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4556     logmsg "-time-  test\n";
4557     logmsg "------  ----\n";
4558     foreach my $txt (@timevrfy) {
4559         last if((not $fullstats) && (not $counter--));
4560         logmsg "$txt\n";
4561     }
4562
4563     $counter = 50;
4564     logmsg "\nTotal time per test ".
4565         sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
4566     logmsg "-time-  test\n";
4567     logmsg "------  ----\n";
4568     foreach my $txt (@timetest) {
4569         last if((not $fullstats) && (not $counter--));
4570         logmsg "$txt\n";
4571     }
4572
4573     logmsg "\n";
4574 }
4575
4576 #######################################################################
4577 # Check options to this test program
4578 #
4579
4580 my $number=0;
4581 my $fromnum=-1;
4582 my @testthis;
4583 while(@ARGV) {
4584     if ($ARGV[0] eq "-v") {
4585         # verbose output
4586         $verbose=1;
4587     }
4588     elsif($ARGV[0] =~ /^-b(.*)/) {
4589         my $portno=$1;
4590         if($portno =~ s/(\d+)$//) {
4591             $base = int $1;
4592         }
4593     }
4594     elsif ($ARGV[0] eq "-c") {
4595         # use this path to curl instead of default
4596         $DBGCURL=$CURL=$ARGV[1];
4597         shift @ARGV;
4598     }
4599     elsif ($ARGV[0] eq "-vc") {
4600         # use this path to a curl used to verify servers
4601
4602         # Particularly useful when you introduce a crashing bug somewhere in
4603         # the development version as then it won't be able to run any tests
4604         # since it can't verify the servers!
4605
4606         $VCURL=$ARGV[1];
4607         shift @ARGV;
4608     }
4609     elsif ($ARGV[0] eq "-d") {
4610         # have the servers display protocol output
4611         $debugprotocol=1;
4612     }
4613     elsif ($ARGV[0] eq "-g") {
4614         # run this test with gdb
4615         $gdbthis=1;
4616     }
4617     elsif ($ARGV[0] eq "-gw") {
4618         # run this test with windowed gdb
4619         $gdbthis=1;
4620         $gdbxwin=1;
4621     }
4622     elsif($ARGV[0] eq "-s") {
4623         # short output
4624         $short=1;
4625     }
4626     elsif($ARGV[0] eq "-am") {
4627         # automake-style output
4628         $short=1;
4629         $automakestyle=1;
4630     }
4631     elsif($ARGV[0] eq "-n") {
4632         # no valgrind
4633         undef $valgrind;
4634     }
4635     elsif($ARGV[0] =~ /^-t(.*)/) {
4636         # torture
4637         $torture=1;
4638         my $xtra = $1;
4639
4640         if($xtra =~ s/(\d+)$//) {
4641             $tortalloc = $1;
4642         }
4643         # we undef valgrind to make this fly in comparison
4644         undef $valgrind;
4645     }
4646     elsif($ARGV[0] eq "-a") {
4647         # continue anyway, even if a test fail
4648         $anyway=1;
4649     }
4650     elsif($ARGV[0] eq "-e") {
4651         # run the tests cases event based if possible
4652         $run_event_based=1;
4653     }
4654     elsif($ARGV[0] eq "-p") {
4655         $postmortem=1;
4656     }
4657     elsif($ARGV[0] eq "-l") {
4658         # lists the test case names only
4659         $listonly=1;
4660     }
4661     elsif($ARGV[0] eq "-k") {
4662         # keep stdout and stderr files after tests
4663         $keepoutfiles=1;
4664     }
4665     elsif($ARGV[0] eq "-r") {
4666         # run time statistics needs Time::HiRes
4667         if($Time::HiRes::VERSION) {
4668             keys(%timeprepini) = 1000;
4669             keys(%timesrvrini) = 1000;
4670             keys(%timesrvrend) = 1000;
4671             keys(%timetoolini) = 1000;
4672             keys(%timetoolend) = 1000;
4673             keys(%timesrvrlog) = 1000;
4674             keys(%timevrfyend) = 1000;
4675             $timestats=1;
4676             $fullstats=0;
4677         }
4678     }
4679     elsif($ARGV[0] eq "-rf") {
4680         # run time statistics needs Time::HiRes
4681         if($Time::HiRes::VERSION) {
4682             keys(%timeprepini) = 1000;
4683             keys(%timesrvrini) = 1000;
4684             keys(%timesrvrend) = 1000;
4685             keys(%timetoolini) = 1000;
4686             keys(%timetoolend) = 1000;
4687             keys(%timesrvrlog) = 1000;
4688             keys(%timevrfyend) = 1000;
4689             $timestats=1;
4690             $fullstats=1;
4691         }
4692     }
4693     elsif(($ARGV[0] eq "-h") || ($ARGV[0] eq "--help")) {
4694         # show help text
4695         print <<EOHELP
4696 Usage: runtests.pl [options] [test selection(s)]
4697   -a       continue even if a test fails
4698   -bN      use base port number N for test servers (default $base)
4699   -c path  use this curl executable
4700   -d       display server debug info
4701   -g       run the test case with gdb
4702   -gw      run the test case with gdb as a windowed application
4703   -h       this help text
4704   -k       keep stdout and stderr files present after tests
4705   -l       list all test case names/descriptions
4706   -n       no valgrind
4707   -p       print log file contents when a test fails
4708   -r       run time statistics
4709   -rf      full run time statistics
4710   -s       short output
4711   -am      automake style output PASS/FAIL: [number] [name]
4712   -t[N]    torture (simulate memory alloc failures); N means fail Nth alloc
4713   -v       verbose output
4714   -vc path use this curl only to verify the existing servers
4715   [num]    like "5 6 9" or " 5 to 22 " to run those tests only
4716   [!num]   like "!5 !6 !9" to disable those tests
4717   [keyword] like "IPv6" to select only tests containing the key word
4718   [!keyword] like "!cookies" to disable any tests containing the key word
4719 EOHELP
4720     ;
4721         exit;
4722     }
4723     elsif($ARGV[0] =~ /^(\d+)/) {
4724         $number = $1;
4725         if($fromnum >= 0) {
4726             for($fromnum .. $number) {
4727                 push @testthis, $_;
4728             }
4729             $fromnum = -1;
4730         }
4731         else {
4732             push @testthis, $1;
4733         }
4734     }
4735     elsif($ARGV[0] =~ /^to$/i) {
4736         $fromnum = $number+1;
4737     }
4738     elsif($ARGV[0] =~ /^!(\d+)/) {
4739         $fromnum = -1;
4740         $disabled{$1}=$1;
4741     }
4742     elsif($ARGV[0] =~ /^!(.+)/) {
4743         $disabled_keywords{$1}=$1;
4744     }
4745     elsif($ARGV[0] =~ /^([-[{a-zA-Z].*)/) {
4746         $enabled_keywords{$1}=$1;
4747     }
4748     else {
4749         print "Unknown option: $ARGV[0]\n";
4750         exit;
4751     }
4752     shift @ARGV;
4753 }
4754
4755 if(@testthis && ($testthis[0] ne "")) {
4756     $TESTCASES=join(" ", @testthis);
4757 }
4758
4759 if($valgrind) {
4760     # we have found valgrind on the host, use it
4761
4762     # verify that we can invoke it fine
4763     my $code = runclient("valgrind >/dev/null 2>&1");
4764
4765     if(($code>>8) != 1) {
4766         #logmsg "Valgrind failure, disable it\n";
4767         undef $valgrind;
4768     } else {
4769
4770         # since valgrind 2.1.x, '--tool' option is mandatory
4771         # use it, if it is supported by the version installed on the system
4772         runclient("valgrind --help 2>&1 | grep -- --tool > /dev/null 2>&1");
4773         if (($? >> 8)==0) {
4774             $valgrind_tool="--tool=memcheck";
4775         }
4776         open(C, "<$CURL");
4777         my $l = <C>;
4778         if($l =~ /^\#\!/) {
4779             # A shell script. This is typically when built with libtool,
4780             $valgrind="../libtool --mode=execute $valgrind";
4781         }
4782         close(C);
4783
4784         # valgrind 3 renamed the --logfile option to --log-file!!!
4785         my $ver=join(' ', runclientoutput("valgrind --version"));
4786         # cut off all but digits and dots
4787         $ver =~ s/[^0-9.]//g;
4788
4789         if($ver =~ /^(\d+)/) {
4790             $ver = $1;
4791             if($ver >= 3) {
4792                 $valgrind_logfile="--log-file";
4793             }
4794         }
4795     }
4796 }
4797
4798 if ($gdbthis) {
4799     # open the executable curl and read the first 4 bytes of it
4800     open(CHECK, "<$CURL");
4801     my $c;
4802     sysread CHECK, $c, 4;
4803     close(CHECK);
4804     if($c eq "#! /") {
4805         # A shell script. This is typically when built with libtool,
4806         $libtool = 1;
4807         $gdb = "libtool --mode=execute gdb";
4808     }
4809 }
4810
4811 $HTTPPORT        = $base++; # HTTP server port
4812 $HTTPSPORT       = $base++; # HTTPS (stunnel) server port
4813 $FTPPORT         = $base++; # FTP server port
4814 $FTPSPORT        = $base++; # FTPS (stunnel) server port
4815 $HTTP6PORT       = $base++; # HTTP IPv6 server port
4816 $FTP2PORT        = $base++; # FTP server 2 port
4817 $FTP6PORT        = $base++; # FTP IPv6 port
4818 $TFTPPORT        = $base++; # TFTP (UDP) port
4819 $TFTP6PORT       = $base++; # TFTP IPv6 (UDP) port
4820 $SSHPORT         = $base++; # SSH (SCP/SFTP) port
4821 $SOCKSPORT       = $base++; # SOCKS port
4822 $POP3PORT        = $base++; # POP3 server port
4823 $POP36PORT       = $base++; # POP3 IPv6 server port
4824 $IMAPPORT        = $base++; # IMAP server port
4825 $IMAP6PORT       = $base++; # IMAP IPv6 server port
4826 $SMTPPORT        = $base++; # SMTP server port
4827 $SMTP6PORT       = $base++; # SMTP IPv6 server port
4828 $RTSPPORT        = $base++; # RTSP server port
4829 $RTSP6PORT       = $base++; # RTSP IPv6 server port
4830 $GOPHERPORT      = $base++; # Gopher IPv4 server port
4831 $GOPHER6PORT     = $base++; # Gopher IPv6 server port
4832 $HTTPTLSPORT     = $base++; # HTTP TLS (non-stunnel) server port
4833 $HTTPTLS6PORT    = $base++; # HTTP TLS (non-stunnel) IPv6 server port
4834 $HTTPPROXYPORT   = $base++; # HTTP proxy port, when using CONNECT
4835 $HTTPPIPEPORT    = $base++; # HTTP pipelining port
4836
4837 #######################################################################
4838 # clear and create logging directory:
4839 #
4840
4841 cleardir($LOGDIR);
4842 mkdir($LOGDIR, 0777);
4843
4844 #######################################################################
4845 # initialize some variables
4846 #
4847
4848 get_disttests();
4849 init_serverpidfile_hash();
4850
4851 #######################################################################
4852 # Output curl version and host info being tested
4853 #
4854
4855 if(!$listonly) {
4856     checksystem();
4857 }
4858
4859 #######################################################################
4860 # Fetch all disabled tests
4861 #
4862
4863 open(D, "<$TESTDIR/DISABLED");
4864 while(<D>) {
4865     if(/^ *\#/) {
4866         # allow comments
4867         next;
4868     }
4869     if($_ =~ /(\d+)/) {
4870         $disabled{$1}=$1; # disable this test number
4871     }
4872 }
4873 close(D);
4874
4875 #######################################################################
4876 # If 'all' tests are requested, find out all test numbers
4877 #
4878
4879 if ( $TESTCASES eq "all") {
4880     # Get all commands and find out their test numbers
4881     opendir(DIR, $TESTDIR) || die "can't opendir $TESTDIR: $!";
4882     my @cmds = grep { /^test([0-9]+)$/ && -f "$TESTDIR/$_" } readdir(DIR);
4883     closedir(DIR);
4884
4885     $TESTCASES=""; # start with no test cases
4886
4887     # cut off everything but the digits
4888     for(@cmds) {
4889         $_ =~ s/[a-z\/\.]*//g;
4890     }
4891     # sort the numbers from low to high
4892     foreach my $n (sort { $a <=> $b } @cmds) {
4893         if($disabled{$n}) {
4894             # skip disabled test cases
4895             my $why = "configured as DISABLED";
4896             $skipped++;
4897             $skipped{$why}++;
4898             $teststat[$n]=$why; # store reason for this test case
4899             next;
4900         }
4901         $TESTCASES .= " $n";
4902     }
4903 }
4904 else {
4905     my $verified="";
4906     map {
4907         if (-e "$TESTDIR/test$_") {
4908             $verified.="$_ ";
4909         }
4910     } split(" ", $TESTCASES);
4911     if($verified eq "") {
4912         print "No existing test cases were specified\n";
4913         exit;
4914     }
4915     $TESTCASES = $verified;
4916 }
4917
4918 #######################################################################
4919 # Start the command line log
4920 #
4921 open(CMDLOG, ">$CURLLOG") ||
4922     logmsg "can't log command lines to $CURLLOG\n";
4923
4924 #######################################################################
4925
4926 # Display the contents of the given file.  Line endings are canonicalized
4927 # and excessively long files are elided
4928 sub displaylogcontent {
4929     my ($file)=@_;
4930     if(open(SINGLE, "<$file")) {
4931         my $linecount = 0;
4932         my $truncate;
4933         my @tail;
4934         while(my $string = <SINGLE>) {
4935             $string =~ s/\r\n/\n/g;
4936             $string =~ s/[\r\f\032]/\n/g;
4937             $string .= "\n" unless ($string =~ /\n$/);
4938             $string =~ tr/\n//;
4939             for my $line (split("\n", $string)) {
4940                 $line =~ s/\s*\!$//;
4941                 if ($truncate) {
4942                     push @tail, " $line\n";
4943                 } else {
4944                     logmsg " $line\n";
4945                 }
4946                 $linecount++;
4947                 $truncate = $linecount > 1000;
4948             }
4949         }
4950         if(@tail) {
4951             my $tailshow = 200;
4952             my $tailskip = 0;
4953             my $tailtotal = scalar @tail;
4954             if($tailtotal > $tailshow) {
4955                 $tailskip = $tailtotal - $tailshow;
4956                 logmsg "=== File too long: $tailskip lines omitted here\n";
4957             }
4958             for($tailskip .. $tailtotal-1) {
4959                 logmsg "$tail[$_]";
4960             }
4961         }
4962         close(SINGLE);
4963     }
4964 }
4965
4966 sub displaylogs {
4967     my ($testnum)=@_;
4968     opendir(DIR, "$LOGDIR") ||
4969         die "can't open dir: $!";
4970     my @logs = readdir(DIR);
4971     closedir(DIR);
4972
4973     logmsg "== Contents of files in the $LOGDIR/ dir after test $testnum\n";
4974     foreach my $log (sort @logs) {
4975         if($log =~ /\.(\.|)$/) {
4976             next; # skip "." and ".."
4977         }
4978         if($log =~ /^\.nfs/) {
4979             next; # skip ".nfs"
4980         }
4981         if(($log eq "memdump") || ($log eq "core")) {
4982             next; # skip "memdump" and  "core"
4983         }
4984         if((-d "$LOGDIR/$log") || (! -s "$LOGDIR/$log")) {
4985             next; # skip directory and empty files
4986         }
4987         if(($log =~ /^stdout\d+/) && ($log !~ /^stdout$testnum/)) {
4988             next; # skip stdoutNnn of other tests
4989         }
4990         if(($log =~ /^stderr\d+/) && ($log !~ /^stderr$testnum/)) {
4991             next; # skip stderrNnn of other tests
4992         }
4993         if(($log =~ /^upload\d+/) && ($log !~ /^upload$testnum/)) {
4994             next; # skip uploadNnn of other tests
4995         }
4996         if(($log =~ /^curl\d+\.out/) && ($log !~ /^curl$testnum\.out/)) {
4997             next; # skip curlNnn.out of other tests
4998         }
4999         if(($log =~ /^test\d+\.txt/) && ($log !~ /^test$testnum\.txt/)) {
5000             next; # skip testNnn.txt of other tests
5001         }
5002         if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) {
5003             next; # skip fileNnn.txt of other tests
5004         }
5005         if(($log =~ /^netrc\d+/) && ($log !~ /^netrc$testnum/)) {
5006             next; # skip netrcNnn of other tests
5007         }
5008         if(($log =~ /^trace\d+/) && ($log !~ /^trace$testnum/)) {
5009             next; # skip traceNnn of other tests
5010         }
5011         if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum(\..*|)$/)) {
5012             next; # skip valgrindNnn of other tests
5013         }
5014         logmsg "=== Start of file $log\n";
5015         displaylogcontent("$LOGDIR/$log");
5016         logmsg "=== End of file $log\n";
5017     }
5018 }
5019
5020 #######################################################################
5021 # The main test-loop
5022 #
5023
5024 my $failed;
5025 my $testnum;
5026 my $ok=0;
5027 my $total=0;
5028 my $lasttest=0;
5029 my @at = split(" ", $TESTCASES);
5030 my $count=0;
5031
5032 $start = time();
5033
5034 foreach $testnum (@at) {
5035
5036     $lasttest = $testnum if($testnum > $lasttest);
5037     $count++;
5038
5039     my $error = singletest($run_event_based, $testnum, $count, scalar(@at));
5040     if($error < 0) {
5041         # not a test we can run
5042         next;
5043     }
5044
5045     $total++; # number of tests we've run
5046
5047     if($error>0) {
5048         $failed.= "$testnum ";
5049         if($postmortem) {
5050             # display all files in log/ in a nice way
5051             displaylogs($testnum);
5052         }
5053         if(!$anyway) {
5054             # a test failed, abort
5055             logmsg "\n - abort tests\n";
5056             last;
5057         }
5058     }
5059     elsif(!$error) {
5060         $ok++; # successful test counter
5061     }
5062
5063     # loop for next test
5064 }
5065
5066 my $sofar = time() - $start;
5067
5068 #######################################################################
5069 # Close command log
5070 #
5071 close(CMDLOG);
5072
5073 # Tests done, stop the servers
5074 stopservers($verbose);
5075
5076 my $all = $total + $skipped;
5077
5078 runtimestats($lasttest);
5079
5080 if($total) {
5081     logmsg sprintf("TESTDONE: $ok tests out of $total reported OK: %d%%\n",
5082                    $ok/$total*100);
5083
5084     if($ok != $total) {
5085         logmsg "TESTFAIL: These test cases failed: $failed\n";
5086     }
5087 }
5088 else {
5089     logmsg "TESTFAIL: No tests were performed\n";
5090 }
5091
5092 if($all) {
5093     logmsg "TESTDONE: $all tests were considered during ".
5094         sprintf("%.0f", $sofar) ." seconds.\n";
5095 }
5096
5097 if($skipped && !$short) {
5098     my $s=0;
5099     logmsg "TESTINFO: $skipped tests were skipped due to these restraints:\n";
5100
5101     for(keys %skipped) {
5102         my $r = $_;
5103         printf "TESTINFO: \"%s\" %d times (", $r, $skipped{$_};
5104
5105         # now show all test case numbers that had this reason for being
5106         # skipped
5107         my $c=0;
5108         my $max = 9;
5109         for(0 .. scalar @teststat) {
5110             my $t = $_;
5111             if($teststat[$_] && ($teststat[$_] eq $r)) {
5112                 if($c < $max) {
5113                     logmsg ", " if($c);
5114                     logmsg $_;
5115                 }
5116                 $c++;
5117             }
5118         }
5119         if($c > $max) {
5120             logmsg " and ".($c-$max)." more";
5121         }
5122         logmsg ")\n";
5123     }
5124 }
5125
5126 if($total && ($ok != $total)) {
5127     exit 1;
5128 }