2002-02-25 09:08:51 -05:00
|
|
|
#!/usr/bin/env perl
|
2004-01-13 03:57:01 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
2004-01-13 02:37:29 -05:00
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2017-05-05 02:12:24 -04:00
|
|
|
# Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-01-13 02:37:29 -05:00
|
|
|
#
|
2004-01-13 03:57:01 -05:00
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
2000-11-13 11:06:16 -05:00
|
|
|
#
|
2004-01-13 02:37:29 -05:00
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
2004-01-13 03:57:01 -05:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
2000-11-13 11:06:16 -05:00
|
|
|
#
|
2004-01-13 02:37:29 -05:00
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
2004-01-13 03:57:01 -05:00
|
|
|
###########################################################################
|
2007-09-17 17:42:01 -04:00
|
|
|
|
|
|
|
# Experimental hooks are available to run tests remotely on machines that
|
2010-02-14 14:40:18 -05:00
|
|
|
# are able to run curl but are unable to run the test harness.
|
2007-09-17 17:42:01 -04:00
|
|
|
# The following sections need to be modified:
|
2007-09-20 16:39:17 -04:00
|
|
|
#
|
2007-09-17 17:42:01 -04:00
|
|
|
# $HOSTIP, $HOST6IP - Set to the address of the host running the test suite
|
|
|
|
# $CLIENTIP, $CLIENT6IP - Set to the address of the host running curl
|
2007-09-20 16:39:17 -04:00
|
|
|
# runclient, runclientoutput - Modify to copy all the files in the log/
|
|
|
|
# directory to the system running curl, run the given command remotely
|
|
|
|
# and save the return code or returned stdout (respectively), then
|
|
|
|
# copy all the files from the remote system's log/ directory back to
|
|
|
|
# the host running the test suite. This can be done a few ways, such
|
|
|
|
# as using scp & ssh, rsync & telnet, or using a NFS shared directory
|
|
|
|
# and ssh.
|
|
|
|
#
|
|
|
|
# 'make && make test' needs to be done on both machines before making the
|
|
|
|
# above changes and running runtests.pl manually. In the shared NFS case,
|
|
|
|
# the contents of the tests/server/ directory must be from the host
|
|
|
|
# running the test suite, while the rest must be from the host running curl.
|
|
|
|
#
|
|
|
|
# Note that even with these changes a number of tests will still fail (mainly
|
|
|
|
# to do with cookies, those that set environment variables, or those that
|
|
|
|
# do more than touch the file system in a <precheck> or <postcheck>
|
|
|
|
# section). These can be added to the $TESTCASES line below,
|
2008-07-26 22:34:27 -04:00
|
|
|
# e.g. $TESTCASES="!8 !31 !63 !cookies..."
|
2007-09-20 16:39:17 -04:00
|
|
|
#
|
|
|
|
# Finally, to properly support -g and -n, checktestcmd needs to change
|
|
|
|
# to check the remote system's PATH, and the places in the code where
|
|
|
|
# the curl binary is read directly to determine its type also need to be
|
|
|
|
# fixed. As long as the -g option is never given, and the -n is always
|
|
|
|
# given, this won't be a problem.
|
2007-09-17 17:42:01 -04:00
|
|
|
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
# These should be the only variables that might be needed to get edited:
|
|
|
|
|
2008-01-03 22:05:33 -05:00
|
|
|
BEGIN {
|
2012-11-14 05:40:31 -05:00
|
|
|
push(@INC, $ENV{'srcdir'}) if(defined $ENV{'srcdir'});
|
|
|
|
push(@INC, ".");
|
2009-12-22 08:46:06 -05:00
|
|
|
# run time statistics needs Time::HiRes
|
|
|
|
eval {
|
|
|
|
no warnings "all";
|
2009-12-19 22:48:32 -05:00
|
|
|
require Time::HiRes;
|
|
|
|
import Time::HiRes qw( time );
|
2009-12-18 10:23:18 -05:00
|
|
|
}
|
2008-01-03 22:05:33 -05:00
|
|
|
}
|
|
|
|
|
2002-05-21 18:39:09 -04:00
|
|
|
use strict;
|
2010-01-17 09:31:13 -05:00
|
|
|
use warnings;
|
2007-12-22 13:25:43 -05:00
|
|
|
use Cwd;
|
2000-11-15 02:09:37 -05:00
|
|
|
|
2009-12-28 15:00:41 -05:00
|
|
|
# Subs imported from serverhelp module
|
|
|
|
use serverhelp qw(
|
2010-01-17 21:36:39 -05:00
|
|
|
serverfactors
|
2010-01-16 21:50:48 -05:00
|
|
|
servername_id
|
2009-12-28 15:00:41 -05:00
|
|
|
servername_str
|
2010-01-17 21:36:39 -05:00
|
|
|
servername_canon
|
2010-01-08 10:54:07 -05:00
|
|
|
server_pidfilename
|
|
|
|
server_logfilename
|
2009-12-28 15:00:41 -05:00
|
|
|
);
|
|
|
|
|
2008-01-03 15:48:22 -05:00
|
|
|
# Variables and subs imported from sshhelp module
|
|
|
|
use sshhelp qw(
|
2008-01-04 08:00:40 -05:00
|
|
|
$sshdexe
|
2008-01-03 15:48:22 -05:00
|
|
|
$sshexe
|
2008-02-08 08:54:02 -05:00
|
|
|
$sftpexe
|
2008-01-03 15:48:22 -05:00
|
|
|
$sshconfig
|
2008-02-08 08:54:02 -05:00
|
|
|
$sftpconfig
|
2010-01-15 15:14:37 -05:00
|
|
|
$sshdlog
|
2008-01-03 15:48:22 -05:00
|
|
|
$sshlog
|
2008-02-08 08:54:02 -05:00
|
|
|
$sftplog
|
|
|
|
$sftpcmds
|
2008-01-07 19:39:31 -05:00
|
|
|
display_sshdconfig
|
2008-01-04 08:00:40 -05:00
|
|
|
display_sshconfig
|
2008-02-08 08:54:02 -05:00
|
|
|
display_sftpconfig
|
2008-01-07 19:39:31 -05:00
|
|
|
display_sshdlog
|
2008-01-03 15:48:22 -05:00
|
|
|
display_sshlog
|
2008-02-08 08:54:02 -05:00
|
|
|
display_sftplog
|
2010-01-21 09:29:04 -05:00
|
|
|
exe_ext
|
2008-01-04 08:00:40 -05:00
|
|
|
find_sshd
|
2008-01-03 15:48:22 -05:00
|
|
|
find_ssh
|
2008-02-08 08:54:02 -05:00
|
|
|
find_sftp
|
2011-10-06 14:26:42 -04:00
|
|
|
find_httptlssrv
|
2008-01-03 15:48:22 -05:00
|
|
|
sshversioninfo
|
|
|
|
);
|
|
|
|
|
2016-03-15 17:14:47 -04:00
|
|
|
use pathhelp;
|
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
require "getpart.pm"; # array functions
|
2005-02-10 03:50:33 -05:00
|
|
|
require "valgrind.pm"; # valgrind report parser
|
2005-04-18 02:57:44 -04:00
|
|
|
require "ftp.pm";
|
2001-04-24 17:09:53 -04:00
|
|
|
|
2007-09-17 17:42:01 -04:00
|
|
|
my $HOSTIP="127.0.0.1"; # address on which the test server listens
|
|
|
|
my $HOST6IP="[::1]"; # address on which the test server listens
|
|
|
|
my $CLIENTIP="127.0.0.1"; # address which curl uses for incoming connections
|
|
|
|
my $CLIENT6IP="[::1]"; # address which curl uses for incoming connections
|
2004-09-08 04:08:38 -04:00
|
|
|
|
|
|
|
my $base = 8990; # base port number
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
my $HTTPPORT; # HTTP server port
|
|
|
|
my $HTTP6PORT; # HTTP IPv6 server port
|
|
|
|
my $HTTPSPORT; # HTTPS (stunnel) server port
|
|
|
|
my $FTPPORT; # FTP server port
|
|
|
|
my $FTP2PORT; # FTP server 2 port
|
|
|
|
my $FTPSPORT; # FTPS (stunnel) server port
|
|
|
|
my $FTP6PORT; # FTP IPv6 server port
|
|
|
|
my $TFTPPORT; # TFTP
|
|
|
|
my $TFTP6PORT; # TFTP
|
|
|
|
my $SSHPORT; # SCP/SFTP
|
|
|
|
my $SOCKSPORT; # SOCKS4/5 port
|
|
|
|
my $POP3PORT; # POP3
|
|
|
|
my $POP36PORT; # POP3 IPv6 server port
|
|
|
|
my $IMAPPORT; # IMAP
|
|
|
|
my $IMAP6PORT; # IMAP IPv6 server port
|
|
|
|
my $SMTPPORT; # SMTP
|
|
|
|
my $SMTP6PORT; # SMTP IPv6 server port
|
|
|
|
my $RTSPPORT; # RTSP
|
|
|
|
my $RTSP6PORT; # RTSP IPv6 server port
|
|
|
|
my $GOPHERPORT; # Gopher
|
|
|
|
my $GOPHER6PORT; # Gopher IPv6 server port
|
|
|
|
my $HTTPTLSPORT; # HTTP TLS (non-stunnel) server port
|
|
|
|
my $HTTPTLS6PORT; # HTTP TLS (non-stunnel) IPv6 server port
|
2011-12-17 17:47:22 -05:00
|
|
|
my $HTTPPROXYPORT; # HTTP proxy port, when using CONNECT
|
2013-02-15 05:50:45 -05:00
|
|
|
my $HTTPPIPEPORT; # HTTP pipelining port
|
2014-12-26 15:45:21 -05:00
|
|
|
my $HTTPUNIXPATH; # HTTP server Unix domain socket path
|
2016-06-03 17:36:10 -04:00
|
|
|
my $HTTP2PORT; # HTTP/2 server port
|
2017-06-26 11:46:53 -04:00
|
|
|
my $DICTPORT; # DICT server port
|
2017-07-03 06:00:04 -04:00
|
|
|
my $SMBPORT; # SMB server port
|
|
|
|
my $SMBSPORT; # SMBS server port
|
2017-07-05 05:12:10 -04:00
|
|
|
my $NEGTELNETPORT; # TELNET server port with negotiation
|
2004-09-08 04:08:38 -04:00
|
|
|
|
2007-09-17 17:42:01 -04:00
|
|
|
my $srcdir = $ENV{'srcdir'} || '.';
|
2010-01-21 09:29:04 -05:00
|
|
|
my $CURL="../src/curl".exe_ext(); # what curl executable to run on the tests
|
2009-05-10 17:20:15 -04:00
|
|
|
my $VCURL=$CURL; # what curl binary to use to verify the servers with
|
|
|
|
# VCURL is handy to set to the system one when the one you
|
|
|
|
# just built hangs or crashes and thus prevent verification
|
2007-11-23 04:50:44 -05:00
|
|
|
my $DBGCURL=$CURL; #"../src/.libs/curl"; # alternative for debugging
|
2000-11-15 02:09:37 -05:00
|
|
|
my $LOGDIR="log";
|
2004-02-12 09:40:08 -05:00
|
|
|
my $TESTDIR="$srcdir/data";
|
2007-11-23 04:50:44 -05:00
|
|
|
my $LIBDIR="./libtest";
|
2011-01-01 11:33:42 -05:00
|
|
|
my $UNITDIR="./unit";
|
2011-12-31 03:49:34 -05:00
|
|
|
# TODO: change this to use server_inputfilename()
|
2002-02-25 07:14:24 -05:00
|
|
|
my $SERVERIN="$LOGDIR/server.input"; # what curl sent the server
|
2011-12-17 17:47:22 -05:00
|
|
|
my $SERVER2IN="$LOGDIR/server2.input"; # what curl sent the second server
|
|
|
|
my $PROXYIN="$LOGDIR/proxy.input"; # what curl sent the proxy
|
2000-11-21 12:07:16 -05:00
|
|
|
my $CURLLOG="$LOGDIR/curl.log"; # all command lines run
|
2000-11-27 07:53:50 -05:00
|
|
|
my $FTPDCMD="$LOGDIR/ftpserver.cmd"; # copy ftp server instructions here
|
2008-04-23 19:55:34 -04:00
|
|
|
my $SERVERLOGS_LOCK="$LOGDIR/serverlogs.lock"; # server logs advisor read lock
|
2010-07-29 18:47:49 -04:00
|
|
|
my $CURLCONFIG="../curl-config"; # curl-config from current build
|
2000-11-13 11:06:16 -05:00
|
|
|
|
|
|
|
# Normally, all test cases should be run, but at times it is handy to
|
|
|
|
# simply run a particular one:
|
2000-11-15 02:09:37 -05:00
|
|
|
my $TESTCASES="all";
|
2000-11-13 11:06:16 -05:00
|
|
|
|
|
|
|
# To run specific test cases, set them like:
|
|
|
|
# $TESTCASES="1 2 3 7 8";
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# No variables below this point should need to be modified
|
|
|
|
#
|
|
|
|
|
2001-05-28 11:26:15 -04:00
|
|
|
# invoke perl like this:
|
|
|
|
my $perl="perl -I$srcdir";
|
2006-05-11 02:34:30 -04:00
|
|
|
my $server_response_maxtime=13;
|
2001-05-28 11:26:15 -04:00
|
|
|
|
2013-03-15 14:58:00 -04:00
|
|
|
my $debug_build=0; # built debug enabled (--enable-debug)
|
|
|
|
my $has_memory_tracking=0; # built with memory tracking (--enable-curldebug)
|
2006-03-03 09:37:44 -05:00
|
|
|
my $libtool;
|
2002-05-21 18:20:52 -04:00
|
|
|
|
2000-11-17 10:07:29 -05:00
|
|
|
# name of the file that the memory debugging creates:
|
2005-01-27 10:51:03 -05:00
|
|
|
my $memdump="$LOGDIR/memdump";
|
2000-11-17 10:07:29 -05:00
|
|
|
|
|
|
|
# the path to the script that analyzes the memory debug output file:
|
2006-09-06 06:03:34 -04:00
|
|
|
my $memanalyze="$perl $srcdir/memanalyze.pl";
|
2000-11-17 10:07:29 -05:00
|
|
|
|
2007-12-22 13:25:43 -05:00
|
|
|
my $pwd = getcwd(); # current working directory
|
2007-09-20 16:39:17 -04:00
|
|
|
|
2005-04-22 07:51:06 -04:00
|
|
|
my $start;
|
2010-01-17 09:31:13 -05:00
|
|
|
my $ftpchecktime=1; # time it took to verify our test FTP server
|
2017-05-04 10:32:56 -04:00
|
|
|
my $scrambleorder;
|
2014-01-04 20:22:09 -05:00
|
|
|
my $stunnel = checkcmd("stunnel4") || checkcmd("tstunnel") || checkcmd("stunnel");
|
2007-09-20 16:39:17 -04:00
|
|
|
my $valgrind = checktestcmd("valgrind");
|
|
|
|
my $valgrind_logfile="--logfile";
|
2004-07-26 11:45:03 -04:00
|
|
|
my $valgrind_tool;
|
2007-09-17 17:42:01 -04:00
|
|
|
my $gdb = checktestcmd("gdb");
|
2011-10-06 14:26:42 -04:00
|
|
|
my $httptlssrv = find_httptlssrv();
|
2001-04-24 17:09:53 -04:00
|
|
|
|
2015-11-12 08:50:13 -05:00
|
|
|
my $has_ssl; # set if libcurl is built with SSL support
|
|
|
|
my $has_largefile; # set if libcurl is built with large file support
|
2014-11-22 18:12:44 -05:00
|
|
|
my $has_idn; # set if libcurl is built with IDN support
|
|
|
|
my $http_ipv6; # set if HTTP server has IPv6 support
|
2014-12-26 15:45:21 -05:00
|
|
|
my $http_unix; # set if HTTP server has Unix sockets support
|
2014-11-22 18:12:44 -05:00
|
|
|
my $ftp_ipv6; # set if FTP server has IPv6 support
|
|
|
|
my $tftp_ipv6; # set if TFTP server has IPv6 support
|
|
|
|
my $gopher_ipv6; # set if Gopher server has IPv6 support
|
|
|
|
my $has_ipv6; # set if libcurl is built with IPv6 support
|
2014-12-26 15:45:21 -05:00
|
|
|
my $has_unix; # set if libcurl is built with Unix sockets support
|
2014-11-22 18:12:44 -05:00
|
|
|
my $has_libz; # set if libcurl is built with libz support
|
2004-11-22 17:26:46 -05:00
|
|
|
my $has_getrlimit; # set if system has getrlimit()
|
2014-11-22 18:12:44 -05:00
|
|
|
my $has_ntlm; # set if libcurl is built with NTLM support
|
|
|
|
my $has_ntlm_wb; # set if libcurl is built with NTLM delegation to winbind
|
|
|
|
my $has_sspi; # set if libcurl is built with Windows SSPI
|
|
|
|
my $has_gssapi; # set if libcurl is built with a GSS-API library
|
|
|
|
my $has_kerberos; # set if libcurl is built with Kerberos support
|
|
|
|
my $has_spnego; # set if libcurl is built with SPNEGO support
|
|
|
|
my $has_charconv; # set if libcurl is built with CharConv support
|
|
|
|
my $has_tls_srp; # set if libcurl is built with TLS-SRP support
|
|
|
|
my $has_metalink; # set if curl is built with Metalink support
|
|
|
|
my $has_http2; # set if libcurl is built with HTTP2 support
|
|
|
|
my $has_crypto; # set if libcurl is built with cryptographic support
|
|
|
|
my $has_cares; # set if built with c-ares
|
|
|
|
my $has_threadedres;# set if built with threaded resolver
|
2015-09-29 05:33:01 -04:00
|
|
|
my $has_psl; # set if libcurl is built with PSL support
|
2014-08-02 17:51:46 -04:00
|
|
|
|
|
|
|
# this version is decided by the particular nghttp2 library that is being used
|
2015-05-18 04:10:55 -04:00
|
|
|
my $h2cver = "h2c";
|
2007-03-18 18:37:23 -04:00
|
|
|
|
2014-11-22 18:12:44 -05:00
|
|
|
my $has_openssl; # built with a lib using an OpenSSL-like API
|
|
|
|
my $has_gnutls; # built with GnuTLS
|
|
|
|
my $has_nss; # built with NSS
|
|
|
|
my $has_yassl; # built with yassl
|
|
|
|
my $has_polarssl; # built with polarssl
|
|
|
|
my $has_axtls; # built with axTLS
|
|
|
|
my $has_winssl; # built with WinSSL (Secure Channel aka Schannel)
|
2015-01-23 08:24:19 -05:00
|
|
|
my $has_darwinssl; # built with DarwinSSL (Secure Transport)
|
|
|
|
my $has_boringssl; # built with BoringSSL
|
2016-01-10 02:56:26 -05:00
|
|
|
my $has_libressl; # built with libressl
|
|
|
|
my $has_mbedtls; # built with mbedTLS
|
2007-03-18 18:37:23 -04:00
|
|
|
|
2014-11-04 17:02:09 -05:00
|
|
|
my $has_sslpinning; # built with a TLS backend that supports pinning
|
|
|
|
|
2011-12-20 21:31:53 -05:00
|
|
|
my $has_shared = "unknown"; # built shared
|
2010-07-29 18:47:49 -04:00
|
|
|
|
2014-11-22 18:12:44 -05:00
|
|
|
my $resolver; # name of the resolver backend (for human presentation)
|
|
|
|
my $ssllib; # name of the SSL library we use (for human presentation)
|
2014-01-08 07:20:29 -05:00
|
|
|
|
2014-11-22 18:12:44 -05:00
|
|
|
my $has_textaware; # set if running on a system that has a text mode concept
|
|
|
|
# on files. Windows for example
|
2011-10-06 14:26:42 -04:00
|
|
|
|
|
|
|
my @protocols; # array of lowercase supported protocol servers
|
2001-05-21 09:38:38 -04:00
|
|
|
|
2003-03-15 11:43:58 -05:00
|
|
|
my $skipped=0; # number of tests skipped; reported in main loop
|
2003-06-26 07:44:01 -04:00
|
|
|
my %skipped; # skipped{reason}=counter, reasons for skip
|
|
|
|
my @teststat; # teststat[testnum]=reason, reasons for skip
|
2009-12-20 21:37:23 -05:00
|
|
|
my %disabled_keywords; # key words of tests to skip
|
|
|
|
my %enabled_keywords; # key words of tests to run
|
2011-12-29 21:36:18 -05:00
|
|
|
my %disabled; # disabled test cases
|
2002-05-21 18:20:52 -04:00
|
|
|
|
2008-01-04 08:00:40 -05:00
|
|
|
my $sshdid; # for socks server, ssh daemon version id
|
|
|
|
my $sshdvernum; # for socks server, ssh daemon version number
|
|
|
|
my $sshdverstr; # for socks server, ssh daemon version string
|
|
|
|
my $sshderror; # for socks server, ssh daemon version error
|
2008-01-03 15:48:22 -05:00
|
|
|
|
2008-04-25 00:19:50 -04:00
|
|
|
my $defserverlogslocktimeout = 20; # timeout to await server logs lock removal
|
|
|
|
my $defpostcommanddelay = 0; # delay between command and postcheck sections
|
2008-04-23 19:55:34 -04:00
|
|
|
|
2009-12-18 23:15:22 -05:00
|
|
|
my $timestats; # time stamping and stats generation
|
|
|
|
my $fullstats; # show time stats for every single test
|
2009-12-18 14:17:14 -05:00
|
|
|
my %timeprepini; # timestamp for each test preparation start
|
|
|
|
my %timesrvrini; # timestamp for each test required servers verification start
|
|
|
|
my %timesrvrend; # timestamp for each test required servers verification end
|
2009-12-18 10:23:18 -05:00
|
|
|
my %timetoolini; # timestamp for each test command run starting
|
|
|
|
my %timetoolend; # timestamp for each test command run stopping
|
|
|
|
my %timesrvrlog; # timestamp for each test server logs lock removal
|
2009-12-18 23:15:22 -05:00
|
|
|
my %timevrfyend; # timestamp for each test result verification end
|
2009-12-18 10:23:18 -05:00
|
|
|
|
2009-05-15 07:14:03 -04:00
|
|
|
my $testnumcheck; # test number, set in singletest sub.
|
2010-08-11 17:12:39 -04:00
|
|
|
my %oldenv;
|
2009-05-15 07:14:03 -04:00
|
|
|
|
2000-11-15 02:09:37 -05:00
|
|
|
#######################################################################
|
2011-12-20 21:31:53 -05:00
|
|
|
# variables that command line options may set
|
2000-11-15 02:09:37 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
my $short;
|
2012-11-23 05:56:26 -05:00
|
|
|
my $automakestyle;
|
2000-11-15 02:09:37 -05:00
|
|
|
my $verbose;
|
2001-01-27 13:50:54 -05:00
|
|
|
my $debugprotocol;
|
2000-11-17 10:15:48 -05:00
|
|
|
my $anyway;
|
2001-05-04 03:47:11 -04:00
|
|
|
my $gdbthis; # run test case with gdb debugger
|
2011-08-21 13:25:35 -04:00
|
|
|
my $gdbxwin; # use windowed gdb when using gdb
|
2001-05-04 03:47:11 -04:00
|
|
|
my $keepoutfiles; # keep stdout and stderr files after tests
|
2002-01-04 08:20:17 -05:00
|
|
|
my $listonly; # only list the tests
|
2004-04-13 01:57:50 -04:00
|
|
|
my $postmortem; # display detailed info about failed tests
|
2013-08-10 16:55:59 -04:00
|
|
|
my $run_event_based; # run curl with --test-event to test the event API
|
2002-01-04 08:20:17 -05:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
my %run; # running server
|
|
|
|
my %doesntrun; # servers that don't work, identified by pidfile
|
2010-01-12 17:22:55 -05:00
|
|
|
my %serverpidfile;# all server pid file names, identified by server id
|
2010-01-18 12:03:59 -05:00
|
|
|
my %runcert; # cert file currently in use by an ssl running server
|
2003-04-01 03:41:49 -05:00
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
# torture test variables
|
|
|
|
my $torture;
|
|
|
|
my $tortnum;
|
|
|
|
my $tortalloc;
|
|
|
|
|
2009-12-16 10:16:06 -05:00
|
|
|
#######################################################################
|
|
|
|
# logmsg is our general message logging subroutine.
|
|
|
|
#
|
2005-05-25 08:26:20 -04:00
|
|
|
sub logmsg {
|
|
|
|
for(@_) {
|
2009-12-16 10:16:06 -05:00
|
|
|
print "$_";
|
2005-05-25 08:26:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-23 21:01:28 -04:00
|
|
|
# get the name of the current user
|
2009-12-20 21:37:23 -05:00
|
|
|
my $USER = $ENV{USER}; # Linux
|
2007-03-23 21:01:28 -04:00
|
|
|
if (!$USER) {
|
2009-12-20 21:37:23 -05:00
|
|
|
$USER = $ENV{USERNAME}; # Windows
|
2007-03-23 21:01:28 -04:00
|
|
|
if (!$USER) {
|
2014-12-26 15:45:21 -05:00
|
|
|
$USER = $ENV{LOGNAME}; # Some Unix (I think)
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-02-28 07:36:25 -05:00
|
|
|
# enable memory debugging if curl is compiled with it
|
2005-01-27 10:51:03 -05:00
|
|
|
$ENV{'CURL_MEMDEBUG'} = $memdump;
|
2014-06-08 15:33:29 -04:00
|
|
|
$ENV{'CURL_ENTROPY'}="12345678";
|
2014-03-20 06:17:40 -04:00
|
|
|
$ENV{'CURL_FORCETIME'}=1; # for debug NTLM magic
|
2002-04-09 10:28:16 -04:00
|
|
|
$ENV{'HOME'}=$pwd;
|
2002-02-28 07:36:25 -05:00
|
|
|
|
2005-04-28 04:23:25 -04:00
|
|
|
sub catch_zap {
|
|
|
|
my $signame = shift;
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "runtests.pl received SIG$signame, exiting\n";
|
2009-12-16 10:16:06 -05:00
|
|
|
stopservers($verbose);
|
2005-04-28 04:23:25 -04:00
|
|
|
die "Somebody sent me a SIG$signame";
|
|
|
|
}
|
|
|
|
$SIG{INT} = \&catch_zap;
|
2010-01-20 16:16:32 -05:00
|
|
|
$SIG{TERM} = \&catch_zap;
|
2005-04-28 04:23:25 -04:00
|
|
|
|
2003-09-12 11:41:14 -04:00
|
|
|
##########################################################################
|
|
|
|
# Clear all possible '*_proxy' environment variables for various protocols
|
|
|
|
# to prevent them to interfere with our testing!
|
|
|
|
|
|
|
|
my $protocol;
|
2011-07-14 05:03:03 -04:00
|
|
|
foreach $protocol (('ftp', 'http', 'ftps', 'https', 'no', 'all')) {
|
2003-09-12 11:41:14 -04:00
|
|
|
my $proxy = "${protocol}_proxy";
|
|
|
|
# clear lowercase version
|
2010-01-20 15:08:50 -05:00
|
|
|
delete $ENV{$proxy} if($ENV{$proxy});
|
2003-09-12 11:41:14 -04:00
|
|
|
# clear uppercase version
|
2010-01-20 15:08:50 -05:00
|
|
|
delete $ENV{uc($proxy)} if($ENV{uc($proxy)});
|
2003-09-12 11:41:14 -04:00
|
|
|
}
|
|
|
|
|
2005-05-02 03:54:25 -04:00
|
|
|
# make sure we don't get affected by other variables that control our
|
|
|
|
# behaviour
|
|
|
|
|
2010-01-20 15:08:50 -05:00
|
|
|
delete $ENV{'SSL_CERT_DIR'} if($ENV{'SSL_CERT_DIR'});
|
|
|
|
delete $ENV{'SSL_CERT_PATH'} if($ENV{'SSL_CERT_PATH'});
|
|
|
|
delete $ENV{'CURL_CA_BUNDLE'} if($ENV{'CURL_CA_BUNDLE'});
|
2005-05-02 03:54:25 -04:00
|
|
|
|
2010-01-12 17:22:55 -05:00
|
|
|
#######################################################################
|
|
|
|
# Load serverpidfile hash with pidfile names for all possible servers.
|
|
|
|
#
|
|
|
|
sub init_serverpidfile_hash {
|
2016-06-19 17:52:01 -04:00
|
|
|
for my $proto (('ftp', 'http', 'imap', 'pop3', 'smtp', 'http/2')) {
|
2010-01-12 17:22:55 -05:00
|
|
|
for my $ssl (('', 's')) {
|
|
|
|
for my $ipvnum ((4, 6)) {
|
2013-02-15 05:50:45 -05:00
|
|
|
for my $idnum ((1, 2, 3)) {
|
2010-01-12 17:22:55 -05:00
|
|
|
my $serv = servername_id("$proto$ssl", $ipvnum, $idnum);
|
|
|
|
my $pidf = server_pidfilename("$proto$ssl", $ipvnum, $idnum);
|
|
|
|
$serverpidfile{$serv} = $pidf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 11:46:53 -04:00
|
|
|
for my $proto (('tftp', 'sftp', 'socks', 'ssh', 'rtsp', 'gopher', 'httptls',
|
2017-07-05 05:12:10 -04:00
|
|
|
'dict', 'smb', 'smbs', 'telnet')) {
|
2010-01-12 17:22:55 -05:00
|
|
|
for my $ipvnum ((4, 6)) {
|
|
|
|
for my $idnum ((1, 2)) {
|
|
|
|
my $serv = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
my $pidf = server_pidfilename($proto, $ipvnum, $idnum);
|
|
|
|
$serverpidfile{$serv} = $pidf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-19 17:52:01 -04:00
|
|
|
for my $proto (('http', 'imap', 'pop3', 'smtp', 'http/2')) {
|
2014-11-27 17:59:23 -05:00
|
|
|
for my $ssl (('', 's')) {
|
|
|
|
my $serv = servername_id("$proto$ssl", "unix", 1);
|
|
|
|
my $pidf = server_pidfilename("$proto$ssl", "unix", 1);
|
|
|
|
$serverpidfile{$serv} = $pidf;
|
|
|
|
}
|
|
|
|
}
|
2010-01-12 17:22:55 -05:00
|
|
|
}
|
|
|
|
|
2007-03-23 21:01:28 -04:00
|
|
|
#######################################################################
|
|
|
|
# Check if a given child process has just died. Reaps it if so.
|
|
|
|
#
|
|
|
|
sub checkdied {
|
|
|
|
use POSIX ":sys_wait_h";
|
|
|
|
my $pid = $_[0];
|
2015-09-29 22:08:57 -04:00
|
|
|
if((not defined $pid) || $pid <= 0) {
|
2007-11-23 07:18:45 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2007-03-23 21:01:28 -04:00
|
|
|
my $rc = waitpid($pid, &WNOHANG);
|
2007-11-23 07:18:45 -05:00
|
|
|
return ($rc == $pid)?1:0;
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
#######################################################################
|
|
|
|
# Start a new thread/process and run the given command line in there.
|
2006-11-20 11:58:04 -05:00
|
|
|
# Return the pids (yes plural) of the new child process to the parent.
|
2005-05-01 09:20:53 -04:00
|
|
|
#
|
|
|
|
sub startnew {
|
2007-11-24 22:55:53 -05:00
|
|
|
my ($cmd, $pidfile, $timeout, $fake)=@_;
|
2005-05-01 09:20:53 -04:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "startnew: $cmd\n" if ($verbose);
|
2005-05-01 09:20:53 -04:00
|
|
|
|
|
|
|
my $child = fork();
|
2008-01-14 14:28:54 -05:00
|
|
|
my $pid2 = 0;
|
2005-05-01 09:20:53 -04:00
|
|
|
|
2006-11-09 08:20:42 -05:00
|
|
|
if(not defined $child) {
|
2007-11-22 14:56:38 -05:00
|
|
|
logmsg "startnew: fork() failure detected\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
return (-1,-1);
|
2006-11-09 08:20:42 -05:00
|
|
|
}
|
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
if(0 == $child) {
|
2006-11-09 08:20:42 -05:00
|
|
|
# Here we are the child. Run the given command.
|
2005-05-03 19:14:43 -04:00
|
|
|
|
2007-06-08 14:56:05 -04:00
|
|
|
# Put an "exec" in front of the command so that the child process
|
|
|
|
# keeps this child's process ID.
|
|
|
|
exec("exec $cmd") || die "Can't exec() $cmd: $!";
|
2005-05-03 19:14:43 -04:00
|
|
|
|
2006-11-09 08:20:42 -05:00
|
|
|
# exec() should never return back here to this process. We protect
|
2007-06-08 14:56:05 -04:00
|
|
|
# ourselves by calling die() just in case something goes really bad.
|
2007-04-03 08:27:03 -04:00
|
|
|
die "error: exec() has returned";
|
2005-05-01 09:20:53 -04:00
|
|
|
}
|
2005-05-03 19:14:43 -04:00
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
# Ugly hack but ssh client and gnutls-serv don't support pid files
|
2007-06-05 09:50:59 -04:00
|
|
|
if ($fake) {
|
2007-11-22 14:56:38 -05:00
|
|
|
if(open(OUT, ">$pidfile")) {
|
|
|
|
print OUT $child . "\n";
|
|
|
|
close(OUT);
|
|
|
|
logmsg "startnew: $pidfile faked with pid=$child\n" if($verbose);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logmsg "startnew: failed to write fake $pidfile with pid=$child\n";
|
|
|
|
}
|
|
|
|
# could/should do a while connect fails sleep a bit and loop
|
2007-11-24 22:55:53 -05:00
|
|
|
sleep $timeout;
|
2007-06-07 15:49:09 -04:00
|
|
|
if (checkdied($child)) {
|
2008-01-08 15:12:43 -05:00
|
|
|
logmsg "startnew: child process has failed to start\n" if($verbose);
|
2007-06-07 15:49:09 -04:00
|
|
|
return (-1,-1);
|
|
|
|
}
|
2007-06-05 09:50:59 -04:00
|
|
|
}
|
2007-11-22 14:56:38 -05:00
|
|
|
|
2007-11-24 22:55:53 -05:00
|
|
|
my $count = $timeout;
|
2006-11-20 11:58:04 -05:00
|
|
|
while($count--) {
|
2008-01-14 14:28:54 -05:00
|
|
|
if(-f $pidfile && -s $pidfile && open(PID, "<$pidfile")) {
|
2007-06-07 18:42:26 -04:00
|
|
|
$pid2 = 0 + <PID>;
|
|
|
|
close(PID);
|
2013-04-06 06:45:05 -04:00
|
|
|
if(($pid2 > 0) && pidexists($pid2)) {
|
2006-11-20 11:58:04 -05:00
|
|
|
# if $pid2 is valid, then make sure this pid is alive, as
|
|
|
|
# otherwise it is just likely to be the _previous_ pidfile or
|
|
|
|
# similar!
|
|
|
|
last;
|
|
|
|
}
|
2008-01-14 14:28:54 -05:00
|
|
|
# invalidate $pid2 if not actually alive
|
|
|
|
$pid2 = 0;
|
2006-11-20 11:58:04 -05:00
|
|
|
}
|
2007-03-23 21:01:28 -04:00
|
|
|
if (checkdied($child)) {
|
2008-01-08 15:12:43 -05:00
|
|
|
logmsg "startnew: child process has died, server might start up\n"
|
|
|
|
if($verbose);
|
2007-03-23 21:01:28 -04:00
|
|
|
# We can't just abort waiting for the server with a
|
|
|
|
# return (-1,-1);
|
|
|
|
# because the server might have forked and could still start
|
|
|
|
# up normally. Instead, just reduce the amount of time we remain
|
|
|
|
# waiting.
|
|
|
|
$count >>= 2;
|
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
sleep(1);
|
2005-05-03 19:14:43 -04:00
|
|
|
}
|
|
|
|
|
2007-06-08 14:56:05 -04:00
|
|
|
# Return two PIDs, the one for the child process we spawned and the one
|
|
|
|
# reported by the server itself (in case it forked again on its own).
|
|
|
|
# Both (potentially) need to be killed at the end of the test.
|
2006-11-20 11:58:04 -05:00
|
|
|
return ($child, $pid2);
|
2005-05-01 09:20:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-29 04:12:47 -05:00
|
|
|
#######################################################################
|
2007-09-17 17:42:01 -04:00
|
|
|
# Check for a command in the PATH of the test server.
|
2003-10-29 04:12:47 -05:00
|
|
|
#
|
|
|
|
sub checkcmd {
|
|
|
|
my ($cmd)=@_;
|
2008-01-16 17:08:37 -05:00
|
|
|
my @paths=(split(":", $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin",
|
2010-07-29 18:47:49 -04:00
|
|
|
"/sbin", "/usr/bin", "/usr/local/bin",
|
|
|
|
"./libtest/.libs", "./libtest");
|
2003-10-29 04:12:47 -05:00
|
|
|
for(@paths) {
|
2008-08-12 03:21:39 -04:00
|
|
|
if( -x "$_/$cmd" && ! -d "$_/$cmd") {
|
|
|
|
# executable bit but not a directory!
|
2003-10-29 04:12:47 -05:00
|
|
|
return "$_/$cmd";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-11 10:50:30 -05:00
|
|
|
#######################################################################
|
|
|
|
# Get the list of tests that the tests/data/Makefile.am knows about!
|
|
|
|
#
|
|
|
|
my $disttests;
|
|
|
|
sub get_disttests {
|
2010-01-11 22:01:00 -05:00
|
|
|
my @dist = `cd data && make show`;
|
2010-01-11 10:50:30 -05:00
|
|
|
$disttests = join("", @dist);
|
|
|
|
}
|
|
|
|
|
2007-09-17 17:42:01 -04:00
|
|
|
#######################################################################
|
|
|
|
# Check for a command in the PATH of the machine running curl.
|
|
|
|
#
|
|
|
|
sub checktestcmd {
|
|
|
|
my ($cmd)=@_;
|
|
|
|
return checkcmd($cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
2007-09-20 16:39:17 -04:00
|
|
|
# Run the application under test and return its return code
|
2007-09-17 17:42:01 -04:00
|
|
|
#
|
2007-09-20 16:39:17 -04:00
|
|
|
sub runclient {
|
2007-09-17 17:42:01 -04:00
|
|
|
my ($cmd)=@_;
|
2013-04-25 17:40:01 -04:00
|
|
|
my $ret = system($cmd);
|
2014-01-24 17:14:19 -05:00
|
|
|
print "CMD ($ret): $cmd\n" if($verbose && !$torture);
|
2013-04-25 17:40:01 -04:00
|
|
|
return $ret;
|
2007-09-20 16:39:17 -04:00
|
|
|
|
|
|
|
# This is one way to test curl on a remote machine
|
|
|
|
# my $out = system("ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'");
|
2009-12-20 21:37:23 -05:00
|
|
|
# sleep 2; # time to allow the NFS server to be updated
|
2007-09-20 16:39:17 -04:00
|
|
|
# return $out;
|
2007-09-17 17:42:01 -04:00
|
|
|
}
|
|
|
|
|
2007-09-20 16:39:17 -04:00
|
|
|
#######################################################################
|
|
|
|
# Run the application under test and return its stdout
|
|
|
|
#
|
|
|
|
sub runclientoutput {
|
|
|
|
my ($cmd)=@_;
|
|
|
|
return `$cmd`;
|
|
|
|
|
|
|
|
# This is one way to test curl on a remote machine
|
|
|
|
# my @out = `ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'`;
|
2009-12-20 21:37:23 -05:00
|
|
|
# sleep 2; # time to allow the NFS server to be updated
|
2007-09-20 16:39:17 -04:00
|
|
|
# return @out;
|
|
|
|
}
|
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
#######################################################################
|
|
|
|
# Memory allocation test and failure torture testing.
|
|
|
|
#
|
|
|
|
sub torture {
|
2004-05-10 05:01:45 -04:00
|
|
|
my $testcmd = shift;
|
|
|
|
my $gdbline = shift;
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# remove memdump first to be sure we get a new nice and clean one
|
|
|
|
unlink($memdump);
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# First get URL from test server, ignore the output/result
|
2007-09-20 16:39:17 -04:00
|
|
|
runclient($testcmd);
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " CMD: $testcmd\n" if($verbose);
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# memanalyze -v is our friend, get the number of allocations made
|
2004-05-13 03:52:33 -04:00
|
|
|
my $count=0;
|
2004-05-10 05:01:45 -04:00
|
|
|
my @out = `$memanalyze -v $memdump`;
|
|
|
|
for(@out) {
|
|
|
|
if(/^Allocations: (\d+)/) {
|
|
|
|
$count = $1;
|
|
|
|
last;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
2004-05-10 05:01:45 -04:00
|
|
|
}
|
2004-05-13 03:52:33 -04:00
|
|
|
if(!$count) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " found no allocs to make fail\n";
|
2004-05-13 03:52:33 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2003-10-24 09:00:19 -04:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " $count allocations to make fail\n";
|
2003-10-24 09:00:19 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
for ( 1 .. $count ) {
|
|
|
|
my $limit = $_;
|
|
|
|
my $fail;
|
|
|
|
my $dumped_core;
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
if($tortalloc && ($tortalloc != $limit)) {
|
2003-10-24 04:53:59 -04:00
|
|
|
next;
|
|
|
|
}
|
2003-10-24 09:00:19 -04:00
|
|
|
|
2010-01-20 13:31:52 -05:00
|
|
|
if($verbose) {
|
|
|
|
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
|
|
|
|
localtime(time());
|
|
|
|
my $now = sprintf("%02d:%02d:%02d ", $hour, $min, $sec);
|
|
|
|
logmsg "Fail alloc no: $limit at $now\r";
|
|
|
|
}
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# make the memory allocation function number $limit return failure
|
|
|
|
$ENV{'CURL_MEMLIMIT'} = $limit;
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# remove memdump first to be sure we get a new nice and clean one
|
|
|
|
unlink($memdump);
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2010-01-20 13:31:52 -05:00
|
|
|
logmsg "*** Alloc number $limit is now set to fail ***\n" if($gdbthis);
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2010-02-06 12:31:09 -05:00
|
|
|
my $ret = 0;
|
2004-05-10 05:01:45 -04:00
|
|
|
if($gdbthis) {
|
2015-03-27 19:26:45 -04:00
|
|
|
runclient($gdbline);
|
2004-05-17 06:53:34 -04:00
|
|
|
}
|
2004-05-10 05:01:45 -04:00
|
|
|
else {
|
2007-09-20 16:39:17 -04:00
|
|
|
$ret = runclient($testcmd);
|
2004-05-10 05:01:45 -04:00
|
|
|
}
|
2014-04-28 18:06:32 -04:00
|
|
|
#logmsg "$_ Returned " . ($ret >> 8) . "\n";
|
2003-10-24 04:53:59 -04:00
|
|
|
|
2004-05-13 03:52:33 -04:00
|
|
|
# Now clear the variable again
|
2010-01-20 15:08:50 -05:00
|
|
|
delete $ENV{'CURL_MEMLIMIT'} if($ENV{'CURL_MEMLIMIT'});
|
2004-05-13 03:52:33 -04:00
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
if(-r "core") {
|
|
|
|
# there's core file present now!
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg " core dumped\n";
|
2004-05-10 05:01:45 -04:00
|
|
|
$dumped_core = 1;
|
|
|
|
$fail = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
# verify that it returns a proper error code, doesn't leak memory
|
|
|
|
# and doesn't core dump
|
2014-04-28 18:06:32 -04:00
|
|
|
if(($ret & 255) || ($ret >> 8) >= 128) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " system() returned $ret\n";
|
2004-05-10 05:01:45 -04:00
|
|
|
$fail=1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
my @memdata=`$memanalyze $memdump`;
|
|
|
|
my $leak=0;
|
|
|
|
for(@memdata) {
|
|
|
|
if($_ ne "") {
|
|
|
|
# well it could be other memory problems as well, but
|
|
|
|
# we call it leak for short here
|
|
|
|
$leak=1;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
|
|
|
}
|
2004-05-10 05:01:45 -04:00
|
|
|
if($leak) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "** MEMORY FAILURE\n";
|
|
|
|
logmsg @memdata;
|
|
|
|
logmsg `$memanalyze -l $memdump`;
|
2004-05-10 05:01:45 -04:00
|
|
|
$fail = 1;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
|
|
|
}
|
2004-05-10 05:01:45 -04:00
|
|
|
if($fail) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " Failed on alloc number $limit in test.\n",
|
2010-01-20 13:31:52 -05:00
|
|
|
" invoke with \"-t$limit\" to repeat this single case.\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
stopservers($verbose);
|
2007-04-09 20:37:56 -04:00
|
|
|
return 1;
|
2004-05-10 05:01:45 -04:00
|
|
|
}
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
2004-05-10 05:01:45 -04:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "torture OK\n";
|
2004-05-13 03:52:33 -04:00
|
|
|
return 0;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
|
|
|
|
2000-11-14 05:18:44 -05:00
|
|
|
#######################################################################
|
2010-01-16 21:45:24 -05:00
|
|
|
# Stop a test server along with pids which aren't in the %run hash yet.
|
|
|
|
# This also stops all servers which are relative to the given one.
|
2000-11-14 05:18:44 -05:00
|
|
|
#
|
2006-11-20 11:58:04 -05:00
|
|
|
sub stopserver {
|
2010-01-16 21:45:24 -05:00
|
|
|
my ($server, $pidlist) = @_;
|
|
|
|
#
|
|
|
|
# kill sockfilter processes for pingpong relative server
|
|
|
|
#
|
|
|
|
if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
|
|
|
|
my $proto = $1;
|
|
|
|
my $idnum = ($2 && ($2 > 1)) ? $2 : 1;
|
|
|
|
my $ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4;
|
|
|
|
killsockfilters($proto, $ipvnum, $idnum, $verbose);
|
|
|
|
}
|
|
|
|
#
|
|
|
|
# All servers relative to the given one must be stopped also
|
|
|
|
#
|
|
|
|
my @killservers;
|
2014-11-27 17:59:23 -05:00
|
|
|
if($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)s((\d*)(-ipv6|-unix|))$/) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# given a stunnel based ssl server, also kill non-ssl underlying one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "${1}${2}";
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)((\d*)(-ipv6|-unix|))$/) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# given a non-ssl server, also kill stunnel based ssl piggybacking one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "${1}s${2}";
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) {
|
|
|
|
# given a socks server, also kill ssh underlying one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "ssh${2}";
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) {
|
|
|
|
# given a ssh server, also kill socks piggybacking one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "socks${2}";
|
|
|
|
}
|
|
|
|
push @killservers, $server;
|
|
|
|
#
|
|
|
|
# kill given pids and server relative ones clearing them in %run hash
|
|
|
|
#
|
|
|
|
foreach my $server (@killservers) {
|
2010-01-17 09:31:13 -05:00
|
|
|
if($run{$server}) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# we must prepend a space since $pidlist may already contain a pid
|
2011-02-22 07:28:27 -05:00
|
|
|
$pidlist .= " $run{$server}";
|
2010-01-17 09:31:13 -05:00
|
|
|
$run{$server} = 0;
|
|
|
|
}
|
2010-01-18 21:01:01 -05:00
|
|
|
$runcert{$server} = 0 if($runcert{$server});
|
2010-01-16 21:45:24 -05:00
|
|
|
}
|
2009-12-16 10:16:06 -05:00
|
|
|
killpid($verbose, $pidlist);
|
2010-01-16 21:45:24 -05:00
|
|
|
#
|
|
|
|
# cleanup server pid files
|
|
|
|
#
|
|
|
|
foreach my $server (@killservers) {
|
|
|
|
my $pidfile = $serverpidfile{$server};
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
logmsg "Warning: $server server unexpectedly alive\n";
|
|
|
|
killpid($verbose, $pid);
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server. This also
|
|
|
|
# implies that we can speak with it, as there might be occasions when the
|
|
|
|
# server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
|
2011-10-06 14:26:42 -04:00
|
|
|
# assign requested address")
|
|
|
|
#
|
2005-05-06 19:21:34 -04:00
|
|
|
sub verifyhttp {
|
2014-11-27 17:59:23 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port_or_path) = @_;
|
2010-01-19 12:40:15 -05:00
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
2010-01-17 15:28:07 -05:00
|
|
|
my $pid = 0;
|
2010-08-25 09:10:40 -04:00
|
|
|
my $bonus="";
|
2014-12-26 15:45:21 -05:00
|
|
|
# $port_or_path contains a path for Unix sockets, sws ignores the port
|
2014-11-27 17:59:23 -05:00
|
|
|
my $port = ($ipvnum eq "unix") ? 80 : $port_or_path;
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
my $verifyout = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
|
2010-01-19 12:40:15 -05:00
|
|
|
unlink($verifyout) if(-f $verifyout);
|
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
2010-08-24 18:47:45 -04:00
|
|
|
if($proto eq "gopher") {
|
|
|
|
# gopher is funny
|
|
|
|
$bonus="1/";
|
|
|
|
}
|
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--output $verifyout ";
|
|
|
|
$flags .= "--silent ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
2014-11-27 17:59:23 -05:00
|
|
|
$flags .= "--unix-socket '$port_or_path' " if $ipvnum eq "unix";
|
2010-12-16 11:33:53 -05:00
|
|
|
$flags .= "-1 " if($has_axtls);
|
2010-01-19 12:40:15 -05:00
|
|
|
$flags .= "--insecure " if($proto eq 'https');
|
2010-08-24 18:47:45 -04:00
|
|
|
$flags .= "\"$proto://$ip:$port/${bonus}verifiedserver\"";
|
2010-01-17 21:36:39 -05:00
|
|
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog";
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
# verify if our/any server is running on this port
|
2010-01-17 21:36:39 -05:00
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
2007-09-20 16:39:17 -04:00
|
|
|
my $res = runclient($cmd);
|
2005-05-06 19:21:34 -04:00
|
|
|
|
|
|
|
$res >>= 8; # rotate the result
|
2010-01-19 12:40:15 -05:00
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2005-05-06 19:21:34 -04:00
|
|
|
|
|
|
|
if($res && $verbose) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "RUN: curl command returned $res\n";
|
2010-01-17 21:36:39 -05:00
|
|
|
if(open(FILE, "<$verifylog")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
2010-01-17 21:36:39 -05:00
|
|
|
close(FILE);
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
|
|
|
}
|
2010-01-17 21:36:39 -05:00
|
|
|
|
2010-01-19 12:40:15 -05:00
|
|
|
my $data;
|
2010-01-17 21:36:39 -05:00
|
|
|
if(open(FILE, "<$verifyout")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
$data = $string;
|
|
|
|
last; # only want first line
|
|
|
|
}
|
2010-01-17 15:28:07 -05:00
|
|
|
close(FILE);
|
|
|
|
}
|
2010-01-17 21:36:39 -05:00
|
|
|
|
2010-01-17 15:28:07 -05:00
|
|
|
if($data && ($data =~ /WE ROOLZ: (\d+)/)) {
|
2005-05-06 19:21:34 -04:00
|
|
|
$pid = 0+$1;
|
|
|
|
}
|
|
|
|
elsif($res == 6) {
|
|
|
|
# curl: (6) Couldn't resolve host '::1'
|
2007-07-14 18:33:46 -04:00
|
|
|
logmsg "RUN: failed to resolve host ($proto://$ip:$port/verifiedserver)\n";
|
|
|
|
return -1;
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
2010-08-24 18:47:45 -04:00
|
|
|
elsif($data || ($res && ($res != 7))) {
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port ($res)\n";
|
2007-07-14 18:33:46 -04:00
|
|
|
return -1;
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server. This also
|
|
|
|
# implies that we can speak with it, as there might be occasions when the
|
|
|
|
# server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
|
2011-10-06 14:26:42 -04:00
|
|
|
# assign requested address")
|
|
|
|
#
|
2009-12-20 17:08:06 -05:00
|
|
|
sub verifyftp {
|
2010-01-17 21:36:39 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
2010-01-18 12:47:01 -05:00
|
|
|
my $pid = 0;
|
2005-05-06 19:21:34 -04:00
|
|
|
my $time=time();
|
2010-01-17 09:31:13 -05:00
|
|
|
my $extra="";
|
2010-01-19 12:40:15 -05:00
|
|
|
|
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
2007-03-07 21:38:49 -05:00
|
|
|
if($proto eq "ftps") {
|
2010-02-16 08:32:45 -05:00
|
|
|
$extra .= "--insecure --ftp-ssl-control ";
|
2009-12-25 17:21:46 -05:00
|
|
|
}
|
2010-01-19 12:40:15 -05:00
|
|
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--silent ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
|
|
|
$flags .= $extra;
|
|
|
|
$flags .= "\"$proto://$ip:$port/verifiedserver\"";
|
|
|
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog";
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
# check if this is our server running on this port:
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
2010-01-19 12:40:15 -05:00
|
|
|
my @data = runclientoutput($cmd);
|
|
|
|
|
|
|
|
my $res = $? >> 8; # rotate the result
|
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2009-12-25 17:21:46 -05:00
|
|
|
foreach my $line (@data) {
|
2010-01-19 12:40:15 -05:00
|
|
|
if($line =~ /WE ROOLZ: (\d+)/) {
|
2005-05-06 19:21:34 -04:00
|
|
|
# this is our test server with a known pid!
|
|
|
|
$pid = 0+$1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
2010-01-18 12:47:01 -05:00
|
|
|
if($pid <= 0 && @data && $data[0]) {
|
2005-05-06 19:21:34 -04:00
|
|
|
# this is not a known server
|
2010-01-19 12:40:15 -05:00
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n";
|
2005-05-06 19:21:34 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2006-05-11 02:34:30 -04:00
|
|
|
# we can/should use the time it took to verify the FTP server as a measure
|
|
|
|
# on how fast/slow this host/FTP is.
|
2009-12-19 22:48:32 -05:00
|
|
|
my $took = int(0.5+time()-$time);
|
2006-05-11 02:34:30 -04:00
|
|
|
|
|
|
|
if($verbose) {
|
2010-01-19 12:40:15 -05:00
|
|
|
logmsg "RUN: Verifying our test $server server took $took seconds\n";
|
2006-05-11 02:34:30 -04:00
|
|
|
}
|
2009-12-19 18:10:33 -05:00
|
|
|
$ftpchecktime = $took>=1?$took:1; # make sure it never is below 1
|
2006-05-11 02:34:30 -04:00
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2010-02-01 07:05:08 -05:00
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server. This also
|
|
|
|
# implies that we can speak with it, as there might be occasions when the
|
|
|
|
# server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
|
2011-10-06 14:26:42 -04:00
|
|
|
# assign requested address")
|
|
|
|
#
|
2010-02-01 07:05:08 -05:00
|
|
|
sub verifyrtsp {
|
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
my $pid = 0;
|
|
|
|
|
|
|
|
my $verifyout = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
|
|
|
|
unlink($verifyout) if(-f $verifyout);
|
|
|
|
|
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--output $verifyout ";
|
|
|
|
$flags .= "--silent ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
|
|
|
# currently verification is done using http
|
|
|
|
$flags .= "\"http://$ip:$port/verifiedserver\"";
|
|
|
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog";
|
|
|
|
|
|
|
|
# verify if our/any server is running on this port
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
|
|
|
my $res = runclient($cmd);
|
|
|
|
|
|
|
|
$res >>= 8; # rotate the result
|
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($res && $verbose) {
|
|
|
|
logmsg "RUN: curl command returned $res\n";
|
|
|
|
if(open(FILE, "<$verifylog")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $data;
|
|
|
|
if(open(FILE, "<$verifyout")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
$data = $string;
|
|
|
|
last; # only want first line
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($data && ($data =~ /RTSP_SERVER WE ROOLZ: (\d+)/)) {
|
|
|
|
$pid = 0+$1;
|
|
|
|
}
|
|
|
|
elsif($res == 6) {
|
|
|
|
# curl: (6) Couldn't resolve host '::1'
|
|
|
|
logmsg "RUN: failed to resolve host ($proto://$ip:$port/verifiedserver)\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
elsif($data || ($res != 7)) {
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2007-03-23 21:01:28 -04:00
|
|
|
#######################################################################
|
2008-02-08 08:54:02 -05:00
|
|
|
# Verify that the ssh server has written out its pidfile, recovering
|
|
|
|
# the pid from the file and returning it if a process with that pid is
|
|
|
|
# actually alive.
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
2007-03-23 21:01:28 -04:00
|
|
|
sub verifyssh {
|
2010-01-17 21:36:39 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
2010-01-15 13:55:01 -05:00
|
|
|
my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
|
2008-01-11 15:17:33 -05:00
|
|
|
my $pid = 0;
|
2010-01-15 13:55:01 -05:00
|
|
|
if(open(FILE, "<$pidfile")) {
|
2008-01-10 11:19:14 -05:00
|
|
|
$pid=0+<FILE>;
|
|
|
|
close(FILE);
|
|
|
|
}
|
2008-01-11 15:17:33 -05:00
|
|
|
if($pid > 0) {
|
|
|
|
# if we have a pid it is actually our ssh server,
|
|
|
|
# since runsshserver() unlinks previous pidfile
|
2013-04-06 06:45:05 -04:00
|
|
|
if(!pidexists($pid)) {
|
2008-01-11 15:17:33 -05:00
|
|
|
logmsg "RUN: SSH server has died after starting up\n";
|
2008-01-11 19:12:16 -05:00
|
|
|
checkdied($pid);
|
2010-01-15 13:55:01 -05:00
|
|
|
unlink($pidfile);
|
2008-01-11 15:17:33 -05:00
|
|
|
$pid = -1;
|
|
|
|
}
|
2008-01-10 11:19:14 -05:00
|
|
|
}
|
2007-06-05 09:50:59 -04:00
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2008-02-08 08:54:02 -05:00
|
|
|
#######################################################################
|
|
|
|
# Verify that we can connect to the sftp server, properly authenticate
|
|
|
|
# with generated config and key files and run a simple remote pwd.
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
2008-02-08 08:54:02 -05:00
|
|
|
sub verifysftp {
|
2010-01-17 21:36:39 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
2008-02-08 08:54:02 -05:00
|
|
|
my $verified = 0;
|
|
|
|
# Find out sftp client canonical file name
|
|
|
|
my $sftp = find_sftp();
|
|
|
|
if(!$sftp) {
|
|
|
|
logmsg "RUN: SFTP server cannot find $sftpexe\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-09 21:52:17 -05:00
|
|
|
# Find out ssh client canonical file name
|
|
|
|
my $ssh = find_ssh();
|
|
|
|
if(!$ssh) {
|
|
|
|
logmsg "RUN: SFTP server cannot find $sshexe\n";
|
|
|
|
return -1;
|
|
|
|
}
|
2008-02-08 08:54:02 -05:00
|
|
|
# Connect to sftp server, authenticate and run a remote pwd
|
|
|
|
# command using our generated configuration and key files
|
2014-12-20 20:42:29 -05:00
|
|
|
my $cmd = "\"$sftp\" -b $sftpcmds -F $sftpconfig -S \"$ssh\" $ip > $sftplog 2>&1";
|
2008-02-08 08:54:02 -05:00
|
|
|
my $res = runclient($cmd);
|
|
|
|
# Search for pwd command response in log file
|
|
|
|
if(open(SFTPLOGFILE, "<$sftplog")) {
|
|
|
|
while(<SFTPLOGFILE>) {
|
|
|
|
if(/^Remote working directory: /) {
|
|
|
|
$verified = 1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(SFTPLOGFILE);
|
|
|
|
}
|
|
|
|
return $verified;
|
|
|
|
}
|
|
|
|
|
2011-01-19 14:35:02 -05:00
|
|
|
#######################################################################
|
2011-10-06 14:26:42 -04:00
|
|
|
# Verify that the non-stunnel HTTP TLS extensions capable server that runs
|
|
|
|
# on $ip, $port is our server. This also implies that we can speak with it,
|
|
|
|
# as there might be occasions when the server runs fine but we cannot talk
|
|
|
|
# to it ("Failed to connect to ::1: Can't assign requested address")
|
|
|
|
#
|
|
|
|
sub verifyhttptls {
|
2011-01-19 14:35:02 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
|
|
|
|
my $pid = 0;
|
|
|
|
|
|
|
|
my $verifyout = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.out';
|
|
|
|
unlink($verifyout) if(-f $verifyout);
|
|
|
|
|
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--output $verifyout ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
|
|
|
$flags .= "--insecure ";
|
2011-10-06 14:26:42 -04:00
|
|
|
$flags .= "--tlsauthtype SRP ";
|
|
|
|
$flags .= "--tlsuser jsmith ";
|
|
|
|
$flags .= "--tlspassword abc ";
|
2011-01-19 14:35:02 -05:00
|
|
|
$flags .= "\"https://$ip:$port/verifiedserver\"";
|
|
|
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog";
|
|
|
|
|
|
|
|
# verify if our/any server is running on this port
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
|
|
|
my $res = runclient($cmd);
|
|
|
|
|
|
|
|
$res >>= 8; # rotate the result
|
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($res && $verbose) {
|
|
|
|
logmsg "RUN: curl command returned $res\n";
|
|
|
|
if(open(FILE, "<$verifylog")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
logmsg "RUN: $string" if($string !~ /^([ \t]*)$/);
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $data;
|
|
|
|
if(open(FILE, "<$verifyout")) {
|
|
|
|
while(my $string = <FILE>) {
|
|
|
|
$data .= $string;
|
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
|
2014-07-11 17:43:13 -04:00
|
|
|
if($data && ($data =~ /(GNUTLS|GnuTLS)/) && open(FILE, "<$pidfile")) {
|
2011-01-19 14:35:02 -05:00
|
|
|
$pid=0+<FILE>;
|
|
|
|
close(FILE);
|
2011-10-06 14:26:42 -04:00
|
|
|
if($pid > 0) {
|
|
|
|
# if we have a pid it is actually our httptls server,
|
|
|
|
# since runhttptlsserver() unlinks previous pidfile
|
2013-04-06 06:45:05 -04:00
|
|
|
if(!pidexists($pid)) {
|
2011-10-06 14:26:42 -04:00
|
|
|
logmsg "RUN: $server server has died after starting up\n";
|
|
|
|
checkdied($pid);
|
|
|
|
unlink($pidfile);
|
|
|
|
$pid = -1;
|
|
|
|
}
|
|
|
|
}
|
2011-01-19 14:35:02 -05:00
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
elsif($res == 6) {
|
|
|
|
# curl: (6) Couldn't resolve host '::1'
|
|
|
|
logmsg "RUN: failed to resolve host (https://$ip:$port/verifiedserver)\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
elsif($data || ($res && ($res != 7))) {
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port ($res)\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return $pid;
|
|
|
|
}
|
2008-02-08 08:54:02 -05:00
|
|
|
|
2007-06-05 09:50:59 -04:00
|
|
|
#######################################################################
|
|
|
|
# STUB for verifying socks
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
2007-06-05 09:50:59 -04:00
|
|
|
sub verifysocks {
|
2010-01-17 21:36:39 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
2010-01-15 13:55:01 -05:00
|
|
|
my $pidfile = server_pidfilename($proto, $ipvnum, $idnum);
|
2008-01-11 15:17:33 -05:00
|
|
|
my $pid = 0;
|
2010-01-15 13:55:01 -05:00
|
|
|
if(open(FILE, "<$pidfile")) {
|
2008-01-11 15:17:33 -05:00
|
|
|
$pid=0+<FILE>;
|
|
|
|
close(FILE);
|
|
|
|
}
|
|
|
|
if($pid > 0) {
|
|
|
|
# if we have a pid it is actually our socks server,
|
|
|
|
# since runsocksserver() unlinks previous pidfile
|
2013-04-06 06:45:05 -04:00
|
|
|
if(!pidexists($pid)) {
|
2008-01-11 15:17:33 -05:00
|
|
|
logmsg "RUN: SOCKS server has died after starting up\n";
|
2008-01-11 19:12:16 -05:00
|
|
|
checkdied($pid);
|
2010-01-15 13:55:01 -05:00
|
|
|
unlink($pidfile);
|
2008-01-11 15:17:33 -05:00
|
|
|
$pid = -1;
|
|
|
|
}
|
|
|
|
}
|
2007-03-23 21:01:28 -04:00
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:00:04 -04:00
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server. This also
|
|
|
|
# implies that we can speak with it, as there might be occasions when the
|
|
|
|
# server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
|
|
|
|
# assign requested address")
|
|
|
|
#
|
|
|
|
sub verifysmb {
|
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
my $pid = 0;
|
|
|
|
my $time=time();
|
|
|
|
my $extra="";
|
|
|
|
|
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--silent ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
|
|
|
$flags .= "-u 'curltest:curltest' ";
|
|
|
|
$flags .= $extra;
|
|
|
|
$flags .= "\"$proto://$ip:$port/SERVER/verifiedserver\"";
|
|
|
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog";
|
|
|
|
|
|
|
|
# check if this is our server running on this port:
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
|
|
|
my @data = runclientoutput($cmd);
|
|
|
|
|
|
|
|
my $res = $? >> 8; # rotate the result
|
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $line (@data) {
|
|
|
|
if($line =~ /WE ROOLZ: (\d+)/) {
|
|
|
|
# this is our test server with a known pid!
|
|
|
|
$pid = 0+$1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($pid <= 0 && @data && $data[0]) {
|
|
|
|
# this is not a known server
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# we can/should use the time it took to verify the server as a measure
|
|
|
|
# on how fast/slow this host is.
|
|
|
|
my $took = int(0.5+time()-$time);
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: Verifying our test $server server took $took seconds\n";
|
|
|
|
}
|
|
|
|
$ftpchecktime = $took>=1?$took:1; # make sure it never is below 1
|
|
|
|
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2017-07-05 05:12:10 -04:00
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server. This also
|
|
|
|
# implies that we can speak with it, as there might be occasions when the
|
|
|
|
# server runs fine but we cannot talk to it ("Failed to connect to ::1: Can't
|
|
|
|
# assign requested address")
|
|
|
|
#
|
|
|
|
sub verifytelnet {
|
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
my $pid = 0;
|
|
|
|
my $time=time();
|
|
|
|
my $extra="";
|
|
|
|
|
|
|
|
my $verifylog = "$LOGDIR/".
|
|
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log';
|
|
|
|
unlink($verifylog) if(-f $verifylog);
|
|
|
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime ";
|
|
|
|
$flags .= "--silent ";
|
|
|
|
$flags .= "--verbose ";
|
|
|
|
$flags .= "--globoff ";
|
|
|
|
$flags .= "--upload-file - ";
|
|
|
|
$flags .= $extra;
|
|
|
|
$flags .= "\"$proto://$ip:$port\"";
|
|
|
|
|
|
|
|
my $cmd = "echo 'verifiedserver' | $VCURL $flags 2>$verifylog";
|
|
|
|
|
|
|
|
# check if this is our server running on this port:
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose);
|
|
|
|
my @data = runclientoutput($cmd);
|
|
|
|
|
|
|
|
my $res = $? >> 8; # rotate the result
|
|
|
|
if($res & 128) {
|
|
|
|
logmsg "RUN: curl command died with a coredump\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $line (@data) {
|
|
|
|
if($line =~ /WE ROOLZ: (\d+)/) {
|
|
|
|
# this is our test server with a known pid!
|
|
|
|
$pid = 0+$1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($pid <= 0 && @data && $data[0]) {
|
|
|
|
# this is not a known server
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
# we can/should use the time it took to verify the server as a measure
|
|
|
|
# on how fast/slow this host is.
|
|
|
|
my $took = int(0.5+time()-$time);
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: Verifying our test $server server took $took seconds\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
#######################################################################
|
|
|
|
# Verify that the server that runs on $ip, $port is our server.
|
2007-06-11 13:53:10 -04:00
|
|
|
# Retry over several seconds before giving up. The ssh server in
|
|
|
|
# particular can take a long time to start if it needs to generate
|
|
|
|
# keys on a slow or loaded host.
|
2005-05-06 19:21:34 -04:00
|
|
|
#
|
2011-10-06 14:26:42 -04:00
|
|
|
# Just for convenience, test harness uses 'https' and 'httptls' literals
|
|
|
|
# as values for 'proto' variable in order to differentiate different
|
|
|
|
# servers. 'https' literal is used for stunnel based https test servers,
|
|
|
|
# and 'httptls' is used for non-stunnel https test servers.
|
|
|
|
#
|
2005-05-06 19:21:34 -04:00
|
|
|
|
|
|
|
my %protofunc = ('http' => \&verifyhttp,
|
|
|
|
'https' => \&verifyhttp,
|
2010-02-01 07:05:08 -05:00
|
|
|
'rtsp' => \&verifyrtsp,
|
2009-12-20 17:08:06 -05:00
|
|
|
'ftp' => \&verifyftp,
|
|
|
|
'pop3' => \&verifyftp,
|
|
|
|
'imap' => \&verifyftp,
|
|
|
|
'smtp' => \&verifyftp,
|
2013-02-15 05:50:45 -05:00
|
|
|
'httppipe' => \&verifyhttp,
|
2009-12-20 17:08:06 -05:00
|
|
|
'ftps' => \&verifyftp,
|
|
|
|
'tftp' => \&verifyftp,
|
2007-06-05 09:50:59 -04:00
|
|
|
'ssh' => \&verifyssh,
|
2010-08-23 17:30:59 -04:00
|
|
|
'socks' => \&verifysocks,
|
2011-01-19 14:35:02 -05:00
|
|
|
'gopher' => \&verifyhttp,
|
2017-06-26 11:46:53 -04:00
|
|
|
'httptls' => \&verifyhttptls,
|
2017-07-03 06:00:04 -04:00
|
|
|
'dict' => \&verifyftp,
|
2017-07-05 05:12:10 -04:00
|
|
|
'smb' => \&verifysmb,
|
|
|
|
'telnet' => \&verifytelnet);
|
2005-05-06 19:21:34 -04:00
|
|
|
|
|
|
|
sub verifyserver {
|
2010-01-17 21:36:39 -05:00
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2007-06-11 13:53:10 -04:00
|
|
|
my $count = 30; # try for this many seconds
|
2005-05-06 19:21:34 -04:00
|
|
|
my $pid;
|
|
|
|
|
|
|
|
while($count--) {
|
|
|
|
my $fun = $protofunc{$proto};
|
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
$pid = &$fun($proto, $ipvnum, $idnum, $ip, $port);
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2007-07-14 18:33:46 -04:00
|
|
|
if($pid > 0) {
|
2005-05-06 19:21:34 -04:00
|
|
|
last;
|
|
|
|
}
|
2007-07-14 18:33:46 -04:00
|
|
|
elsif($pid < 0) {
|
|
|
|
# a real failure, stop trying and bail out
|
|
|
|
return 0;
|
|
|
|
}
|
2005-05-06 19:21:34 -04:00
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
return $pid;
|
|
|
|
}
|
|
|
|
|
2011-10-25 17:19:36 -04:00
|
|
|
#######################################################################
|
|
|
|
# Single shot server responsiveness test. This should only be used
|
|
|
|
# to verify that a server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsiveserver {
|
|
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_;
|
2011-10-30 11:45:14 -04:00
|
|
|
my $prev_verbose = $verbose;
|
2011-10-25 17:19:36 -04:00
|
|
|
|
2011-10-30 11:45:14 -04:00
|
|
|
$verbose = 0;
|
2011-10-25 17:19:36 -04:00
|
|
|
my $fun = $protofunc{$proto};
|
|
|
|
my $pid = &$fun($proto, $ipvnum, $idnum, $ip, $port);
|
2011-10-30 11:45:14 -04:00
|
|
|
$verbose = $prev_verbose;
|
2011-10-25 17:19:36 -04:00
|
|
|
|
|
|
|
if($pid > 0) {
|
|
|
|
return 1; # responsive
|
|
|
|
}
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2011-10-25 17:19:36 -04:00
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum);
|
2011-10-30 11:45:14 -04:00
|
|
|
logmsg " server precheck FAILED (unresponsive $srvrname server)\n";
|
2011-10-25 17:19:36 -04:00
|
|
|
return 0;
|
|
|
|
}
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2016-06-03 17:36:10 -04:00
|
|
|
#######################################################################
|
|
|
|
# start the http2 server
|
|
|
|
#
|
|
|
|
sub runhttp2server {
|
|
|
|
my ($verbose, $port) = @_;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2016-06-19 17:52:01 -04:00
|
|
|
my $proto="http/2";
|
2016-06-03 17:36:10 -04:00
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 0;
|
|
|
|
my $exe = "$perl $srcdir/http2-server.pl";
|
|
|
|
my $verbose_flag = "--verbose ";
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--port $HTTP2PORT ";
|
2017-02-27 16:32:07 -05:00
|
|
|
$flags .= "--connect $HOSTIP:$HTTPPORT ";
|
2016-06-03 17:36:10 -04:00
|
|
|
$flags .= $verbose_flag if($debugprotocol);
|
|
|
|
|
|
|
|
my $cmd = "$exe $flags";
|
|
|
|
my ($http2pid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
|
|
|
if($http2pid <= 0 || !pidexists($http2pid)) {
|
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $http2pid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return ($http2pid, $pid2);
|
|
|
|
}
|
|
|
|
|
2001-04-24 17:09:53 -04:00
|
|
|
#######################################################################
|
2005-05-01 09:20:53 -04:00
|
|
|
# start the http server
|
2001-04-24 17:09:53 -04:00
|
|
|
#
|
|
|
|
sub runhttpserver {
|
2014-11-27 17:59:23 -05:00
|
|
|
my ($proto, $verbose, $alt, $port_or_path) = @_;
|
2004-12-11 16:41:00 -05:00
|
|
|
my $ip = $HOSTIP;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-08 10:54:07 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2013-02-15 05:50:45 -05:00
|
|
|
my $exe = "$perl $srcdir/httpserver.pl";
|
2013-04-06 14:24:10 -04:00
|
|
|
my $verbose_flag = "--verbose ";
|
2004-12-11 16:41:00 -05:00
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
if($alt eq "ipv6") {
|
2004-12-11 16:41:00 -05:00
|
|
|
# if IPv6, use a different setup
|
2009-12-28 15:00:41 -05:00
|
|
|
$ipvnum = 6;
|
2004-12-11 16:41:00 -05:00
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
2011-12-17 17:47:22 -05:00
|
|
|
elsif($alt eq "proxy") {
|
|
|
|
# basically the same, but another ID
|
|
|
|
$idnum = 2;
|
|
|
|
}
|
2013-02-15 05:50:45 -05:00
|
|
|
elsif($alt eq "pipe") {
|
|
|
|
# basically the same, but another ID
|
|
|
|
$idnum = 3;
|
2013-04-06 14:24:10 -04:00
|
|
|
$exe = "python $srcdir/http_pipe.py";
|
|
|
|
$verbose_flag .= "1 ";
|
2013-02-15 05:50:45 -05:00
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($alt eq "unix") {
|
2014-12-26 15:45:21 -05:00
|
|
|
# IP (protocol) is mutually exclusive with Unix sockets
|
2014-11-27 17:59:23 -05:00
|
|
|
$ipvnum = "unix";
|
|
|
|
}
|
2004-12-11 16:41:00 -05:00
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2010-01-08 10:54:07 -05:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2006-11-20 11:58:04 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2010-01-08 10:54:07 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2010-01-08 10:54:07 -05:00
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
2010-08-24 18:47:45 -04:00
|
|
|
$flags .= "--gopher " if($proto eq "gopher");
|
2011-12-17 17:47:22 -05:00
|
|
|
$flags .= "--connect $HOSTIP " if($alt eq "proxy");
|
2013-04-06 14:24:10 -04:00
|
|
|
$flags .= $verbose_flag if($debugprotocol);
|
2010-01-08 10:54:07 -05:00
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
2014-11-27 17:59:23 -05:00
|
|
|
if($ipvnum eq "unix") {
|
|
|
|
$flags .= "--unix-socket '$port_or_path' ";
|
|
|
|
} else {
|
|
|
|
$flags .= "--ipv$ipvnum --port $port_or_path ";
|
|
|
|
}
|
|
|
|
$flags .= "--srcdir \"$srcdir\"";
|
2010-01-08 10:54:07 -05:00
|
|
|
|
2013-02-15 05:50:45 -05:00
|
|
|
my $cmd = "$exe $flags";
|
|
|
|
my ($httppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($httppid <= 0 || !pidexists($httppid)) {
|
2013-02-15 05:50:45 -05:00
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
2014-11-27 17:59:23 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port_or_path);
|
2013-02-15 05:50:45 -05:00
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
|
|
|
stopserver($server, "$httppid $pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $httppid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($httppid, $pid2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# start the http server
|
|
|
|
#
|
|
|
|
sub runhttp_pipeserver {
|
|
|
|
my ($proto, $verbose, $alt, $port) = @_;
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
|
|
|
if($alt eq "ipv6") {
|
|
|
|
# No IPv6
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
2013-04-06 14:24:10 -04:00
|
|
|
$flags .= "--verbose 1 " if($debugprotocol);
|
2013-02-15 05:50:45 -05:00
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$srcdir/http_pipe.py $flags";
|
2010-01-08 10:54:07 -05:00
|
|
|
my ($httppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
2005-04-28 09:54:48 -04:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($httppid <= 0 || !pidexists($httppid)) {
|
2005-05-01 09:20:53 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return (0,0);
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
# Server is up. Verify that we can speak to it.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
2008-02-12 08:47:56 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$httppid $pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return (0,0);
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
2008-02-12 08:47:56 -05:00
|
|
|
$pid2 = $pid3;
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2003-03-15 11:43:58 -05:00
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $httppid\n";
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
sleep(1);
|
|
|
|
|
2006-11-20 11:58:04 -05:00
|
|
|
return ($httppid, $pid2);
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
|
|
|
|
2001-04-24 17:09:53 -04:00
|
|
|
#######################################################################
|
2011-10-06 14:26:42 -04:00
|
|
|
# start the https stunnel based server
|
2001-04-24 17:09:53 -04:00
|
|
|
#
|
|
|
|
sub runhttpsserver {
|
2010-01-10 23:49:13 -05:00
|
|
|
my ($verbose, $ipv6, $certfile) = @_;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $proto = 'https';
|
2010-01-10 23:49:13 -05:00
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $idnum = 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-10 23:49:13 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2001-04-24 17:09:53 -04:00
|
|
|
|
2003-10-29 11:27:43 -05:00
|
|
|
if(!$stunnel) {
|
2010-01-17 08:33:27 -05:00
|
|
|
return (0,0);
|
2003-10-29 11:27:43 -05:00
|
|
|
}
|
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2006-11-20 11:58:04 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2001-04-24 17:09:53 -04:00
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
2010-01-18 12:03:59 -05:00
|
|
|
$certfile = 'stunnel.pem' unless($certfile);
|
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
2004-01-12 09:34:48 -05:00
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
$flags .= "--verbose " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --proto $proto ";
|
2010-01-18 12:03:59 -05:00
|
|
|
$flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem');
|
2010-01-10 23:49:13 -05:00
|
|
|
$flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" ";
|
|
|
|
$flags .= "--connect $HTTPPORT --accept $HTTPSPORT";
|
|
|
|
|
|
|
|
my $cmd = "$perl $srcdir/secureserver.pl $flags";
|
2011-09-09 19:14:52 -04:00
|
|
|
my ($httpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
2006-11-20 11:58:04 -05:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($httpspid <= 0 || !pidexists($httpspid)) {
|
2005-05-01 09:20:53 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return(0,0);
|
2005-05-01 09:20:53 -04:00
|
|
|
}
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
# Server is up. Verify that we can speak to it.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $HTTPSPORT);
|
2008-02-12 08:47:56 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$httpspid $pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return (0,0);
|
2005-05-06 19:21:34 -04:00
|
|
|
}
|
2008-02-13 01:06:57 -05:00
|
|
|
# Here pid3 is actually the pid returned by the unsecure-http server.
|
2005-05-06 19:21:34 -04:00
|
|
|
|
2010-01-18 12:03:59 -05:00
|
|
|
$runcert{$server} = $certfile;
|
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $httpspid\n";
|
2004-01-12 09:34:48 -05:00
|
|
|
}
|
2003-06-13 05:04:08 -04:00
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
sleep(1);
|
|
|
|
|
2006-11-20 11:58:04 -05:00
|
|
|
return ($httpspid, $pid2);
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
|
|
|
|
2011-01-19 14:35:02 -05:00
|
|
|
#######################################################################
|
2011-10-06 14:26:42 -04:00
|
|
|
# start the non-stunnel HTTP TLS extensions capable server
|
2011-01-19 14:35:02 -05:00
|
|
|
#
|
2011-10-06 14:26:42 -04:00
|
|
|
sub runhttptlsserver {
|
|
|
|
my ($verbose, $ipv6) = @_;
|
|
|
|
my $proto = "httptls";
|
|
|
|
my $port = ($ipv6 && ($ipv6 =~ /6$/)) ? $HTTPTLS6PORT : $HTTPTLSPORT;
|
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
2011-01-19 14:35:02 -05:00
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
if(!$httptlssrv) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2011-01-19 14:35:02 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--http ";
|
2011-10-06 14:26:42 -04:00
|
|
|
$flags .= "--debug 1 " if($debugprotocol);
|
2011-01-19 14:35:02 -05:00
|
|
|
$flags .= "--port $port ";
|
2014-07-11 17:55:53 -04:00
|
|
|
$flags .= "--priority NORMAL:+SRP ";
|
2012-12-21 18:26:03 -05:00
|
|
|
$flags .= "--srppasswd $srcdir/certs/srp-verifier-db ";
|
|
|
|
$flags .= "--srppasswdconf $srcdir/certs/srp-verifier-conf";
|
2011-01-19 14:35:02 -05:00
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
my $cmd = "$httptlssrv $flags > $logfile 2>&1";
|
|
|
|
my ($httptlspid, $pid2) = startnew($cmd, $pidfile, 10, 1); # fake pidfile
|
2011-01-19 14:35:02 -05:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($httptlspid <= 0 || !pidexists($httptlspid)) {
|
2011-01-19 14:35:02 -05:00
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
# Server is up. Verify that we can speak to it. PID is from fake pidfile
|
2011-01-19 14:35:02 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2011-10-06 14:26:42 -04:00
|
|
|
stopserver($server, "$httptlspid $pid2");
|
2011-01-19 14:35:02 -05:00
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
2011-10-06 14:26:42 -04:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $httptlspid\n";
|
2011-01-19 14:35:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
return ($httptlspid, $pid2);
|
2011-01-19 14:35:02 -05:00
|
|
|
}
|
|
|
|
|
2001-04-24 17:09:53 -04:00
|
|
|
#######################################################################
|
2010-08-24 18:47:45 -04:00
|
|
|
# start the pingpong server (FTP, POP3, IMAP, SMTP)
|
2001-04-24 17:09:53 -04:00
|
|
|
#
|
2009-12-12 16:54:01 -05:00
|
|
|
sub runpingpongserver {
|
|
|
|
my ($proto, $id, $verbose, $ipv6) = @_;
|
|
|
|
my $port;
|
2010-01-09 21:41:44 -05:00
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-09 13:35:59 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2005-04-18 02:57:44 -04:00
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if($proto eq "ftp") {
|
2009-12-28 15:00:41 -05:00
|
|
|
$port = ($idnum>1)?$FTP2PORT:$FTPPORT;
|
2009-12-12 16:54:01 -05:00
|
|
|
|
2010-01-09 21:41:44 -05:00
|
|
|
if($ipvnum==6) {
|
2009-12-12 16:54:01 -05:00
|
|
|
# if IPv6, use a different setup
|
|
|
|
$port = $FTP6PORT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($proto eq "pop3") {
|
2010-01-09 21:41:44 -05:00
|
|
|
$port = ($ipvnum==6) ? $POP36PORT : $POP3PORT;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
elsif($proto eq "imap") {
|
2010-01-09 21:41:44 -05:00
|
|
|
$port = ($ipvnum==6) ? $IMAP6PORT : $IMAPPORT;
|
2005-04-18 02:57:44 -04:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
elsif($proto eq "smtp") {
|
2010-01-09 21:41:44 -05:00
|
|
|
$port = ($ipvnum==6) ? $SMTP6PORT : $SMTPPORT;
|
2009-12-12 16:54:01 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
print STDERR "Unsupported protocol $proto!!\n";
|
|
|
|
return 0;
|
|
|
|
}
|
2010-01-09 13:35:59 -05:00
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2005-04-18 02:57:44 -04:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2008-02-12 08:47:56 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2006-11-20 11:58:04 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2010-01-09 13:35:59 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
2006-11-20 11:58:04 -05:00
|
|
|
|
2010-01-09 13:35:59 -05:00
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--srcdir \"$srcdir\" --proto $proto ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --port $port --addr \"$ip\"";
|
|
|
|
|
|
|
|
my $cmd = "$perl $srcdir/ftpserver.pl $flags";
|
2007-11-24 22:55:53 -05:00
|
|
|
my ($ftppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
2006-11-20 11:58:04 -05:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($ftppid <= 0 || !pidexists($ftppid)) {
|
2005-05-01 09:20:53 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
2005-05-02 05:08:44 -04:00
|
|
|
}
|
|
|
|
|
2005-05-06 19:21:34 -04:00
|
|
|
# Server is up. Verify that we can speak to it.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
2008-02-12 08:47:56 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$ftppid $pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return (0,0);
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
2010-08-23 17:30:59 -04:00
|
|
|
|
2008-02-12 08:47:56 -05:00
|
|
|
$pid2 = $pid3;
|
2003-03-15 11:43:58 -05:00
|
|
|
|
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $ftppid\n";
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
|
|
|
|
2005-05-01 09:20:53 -04:00
|
|
|
sleep(1);
|
|
|
|
|
2006-11-20 11:58:04 -05:00
|
|
|
return ($pid2, $ftppid);
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
|
|
|
|
2007-03-07 21:38:49 -05:00
|
|
|
#######################################################################
|
|
|
|
# start the ftps server (or rather, tunnel)
|
|
|
|
#
|
|
|
|
sub runftpsserver {
|
2010-01-10 23:49:13 -05:00
|
|
|
my ($verbose, $ipv6, $certfile) = @_;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $proto = 'ftps';
|
2010-01-10 23:49:13 -05:00
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $idnum = 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-10 23:49:13 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2007-03-07 21:38:49 -05:00
|
|
|
|
|
|
|
if(!$stunnel) {
|
2010-01-17 08:33:27 -05:00
|
|
|
return (0,0);
|
2007-03-07 21:38:49 -05:00
|
|
|
}
|
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2007-03-07 21:38:49 -05:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2007-03-07 21:38:49 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2007-03-07 21:38:49 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2007-03-07 21:38:49 -05:00
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
2010-01-18 12:03:59 -05:00
|
|
|
$certfile = 'stunnel.pem' unless($certfile);
|
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --proto $proto ";
|
2010-01-18 12:03:59 -05:00
|
|
|
$flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem');
|
2010-01-10 23:49:13 -05:00
|
|
|
$flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" ";
|
|
|
|
$flags .= "--connect $FTPPORT --accept $FTPSPORT";
|
2007-03-07 21:38:49 -05:00
|
|
|
|
2010-01-10 23:49:13 -05:00
|
|
|
my $cmd = "$perl $srcdir/secureserver.pl $flags";
|
2011-09-09 19:14:52 -04:00
|
|
|
my ($ftpspid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
2007-03-07 21:38:49 -05:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($ftpspid <= 0 || !pidexists($ftpspid)) {
|
2007-03-07 21:38:49 -05:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2007-03-07 21:38:49 -05:00
|
|
|
return(0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $FTPSPORT);
|
2008-02-12 08:47:56 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2007-03-07 21:38:49 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$ftpspid $pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2007-03-07 21:38:49 -05:00
|
|
|
return (0,0);
|
|
|
|
}
|
2008-02-13 01:06:57 -05:00
|
|
|
# Here pid3 is actually the pid returned by the unsecure-ftp server.
|
2007-03-07 21:38:49 -05:00
|
|
|
|
2010-01-18 12:03:59 -05:00
|
|
|
$runcert{$server} = $certfile;
|
|
|
|
|
2007-03-07 21:38:49 -05:00
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $ftpspid\n";
|
2007-03-07 21:38:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($ftpspid, $pid2);
|
|
|
|
}
|
|
|
|
|
2005-09-15 16:25:02 -04:00
|
|
|
#######################################################################
|
|
|
|
# start the tftp server
|
|
|
|
#
|
|
|
|
sub runtftpserver {
|
|
|
|
my ($id, $verbose, $ipv6) = @_;
|
|
|
|
my $port = $TFTPPORT;
|
2010-01-08 10:54:07 -05:00
|
|
|
my $ip = $HOSTIP;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $proto = 'tftp';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-08 10:54:07 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
2005-09-15 16:25:02 -04:00
|
|
|
|
|
|
|
if($ipv6) {
|
|
|
|
# if IPv6, use a different setup
|
2009-12-28 15:00:41 -05:00
|
|
|
$ipvnum = 6;
|
2005-09-15 16:25:02 -04:00
|
|
|
$port = $TFTP6PORT;
|
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2010-01-08 10:54:07 -05:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2008-02-12 08:47:56 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2006-11-20 11:58:04 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2005-09-15 16:25:02 -04:00
|
|
|
|
2010-01-08 10:54:07 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
2006-11-20 11:58:04 -05:00
|
|
|
|
2010-01-08 10:54:07 -05:00
|
|
|
$flags .= "--verbose " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$perl $srcdir/tftpserver.pl $flags";
|
2007-11-24 22:55:53 -05:00
|
|
|
my ($tftppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
2006-11-20 11:58:04 -05:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($tftppid <= 0 || !pidexists($tftppid)) {
|
2005-09-15 16:25:02 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
2008-02-12 08:47:56 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2006-11-20 11:58:04 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$tftppid $pid2");
|
2009-05-15 07:59:24 -04:00
|
|
|
displaylogs($testnumcheck);
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2006-11-20 11:58:04 -05:00
|
|
|
return (0,0);
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
2008-02-12 08:47:56 -05:00
|
|
|
$pid2 = $pid3;
|
2005-09-15 16:25:02 -04:00
|
|
|
|
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $tftppid\n";
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
2006-11-20 11:58:04 -05:00
|
|
|
return ($pid2, $tftppid);
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-01 07:05:08 -05:00
|
|
|
#######################################################################
|
|
|
|
# start the rtsp server
|
|
|
|
#
|
|
|
|
sub runrtspserver {
|
|
|
|
my ($verbose, $ipv6) = @_;
|
|
|
|
my $port = $RTSPPORT;
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $proto = 'rtsp';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
|
|
|
if($ipv6) {
|
|
|
|
# if IPv6, use a different setup
|
|
|
|
$ipvnum = 6;
|
|
|
|
$port = $RTSP6PORT;
|
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$perl $srcdir/rtspserver.pl $flags";
|
|
|
|
my ($rtsppid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($rtsppid <= 0 || !pidexists($rtsppid)) {
|
2010-02-01 07:05:08 -05:00
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
|
|
|
stopserver($server, "$rtsppid $pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $rtsppid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($rtsppid, $pid2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-23 21:01:28 -04:00
|
|
|
#######################################################################
|
2010-01-15 13:55:01 -05:00
|
|
|
# Start the ssh (scp/sftp) server
|
2007-03-23 21:01:28 -04:00
|
|
|
#
|
|
|
|
sub runsshserver {
|
|
|
|
my ($id, $verbose, $ipv6) = @_;
|
|
|
|
my $ip=$HOSTIP;
|
|
|
|
my $port = $SSHPORT;
|
2008-01-03 15:48:22 -05:00
|
|
|
my $socksport = $SOCKSPORT;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $proto = 'ssh';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-15 13:55:01 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2007-03-23 21:01:28 -04:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2007-03-23 21:01:28 -04:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2007-03-23 21:01:28 -04:00
|
|
|
|
2010-01-15 13:55:01 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
2008-01-03 15:48:22 -05:00
|
|
|
|
2010-01-15 13:55:01 -05:00
|
|
|
$flags .= "--verbose " if($verbose);
|
|
|
|
$flags .= "--debugprotocol " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--ipv$ipvnum --addr \"$ip\" ";
|
|
|
|
$flags .= "--sshport $port --socksport $socksport ";
|
|
|
|
$flags .= "--user \"$USER\"";
|
|
|
|
|
|
|
|
my $cmd = "$perl $srcdir/sshserver.pl $flags";
|
2011-09-09 19:14:52 -04:00
|
|
|
my ($sshpid, $pid2) = startnew($cmd, $pidfile, 60, 0);
|
2007-03-23 21:01:28 -04:00
|
|
|
|
2008-01-18 04:18:59 -05:00
|
|
|
# on loaded systems sshserver start up can take longer than the timeout
|
|
|
|
# passed to startnew, when this happens startnew completes without being
|
|
|
|
# able to read the pidfile and consequently returns a zero pid2 above.
|
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($sshpid <= 0 || !pidexists($sshpid)) {
|
2007-03-23 21:01:28 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
|
|
|
|
2008-02-08 08:54:02 -05:00
|
|
|
# ssh server verification allows some extra time for the server to start up
|
|
|
|
# and gives us the opportunity of recovering the pid from the pidfile, when
|
|
|
|
# this verification succeeds the recovered pid is assigned to pid2.
|
2008-01-18 04:18:59 -05:00
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
2008-01-18 04:18:59 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2008-02-08 08:54:02 -05:00
|
|
|
# failed to fetch server pid. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$sshpid $pid2");
|
2008-02-08 08:54:02 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
# once it is known that the ssh server is alive, sftp server verification
|
|
|
|
# is performed actually connecting to it, authenticating and performing a
|
2008-02-09 21:52:17 -05:00
|
|
|
# very simple remote command. This verification is tried only one time.
|
2008-02-08 08:54:02 -05:00
|
|
|
|
2010-01-15 13:55:01 -05:00
|
|
|
$sshdlog = server_logfilename($LOGDIR, 'ssh', $ipvnum, $idnum);
|
|
|
|
$sftplog = server_logfilename($LOGDIR, 'sftp', $ipvnum, $idnum);
|
|
|
|
|
2010-01-17 21:36:39 -05:00
|
|
|
if(verifysftp('sftp', $ipvnum, $idnum, $ip, $port) < 1) {
|
2008-02-08 08:54:02 -05:00
|
|
|
logmsg "RUN: SFTP server failed verification\n";
|
2007-11-26 09:26:40 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2008-02-08 08:54:02 -05:00
|
|
|
display_sftplog();
|
|
|
|
display_sftpconfig();
|
|
|
|
display_sshdlog();
|
|
|
|
display_sshdconfig();
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$sshpid $pid2");
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2007-03-23 21:01:28 -04:00
|
|
|
return (0,0);
|
|
|
|
}
|
2008-01-18 04:18:59 -05:00
|
|
|
|
2007-03-23 21:01:28 -04:00
|
|
|
if($verbose) {
|
2009-12-28 15:00:41 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $pid2\n";
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ($pid2, $sshpid);
|
|
|
|
}
|
|
|
|
|
2007-06-05 09:50:59 -04:00
|
|
|
#######################################################################
|
|
|
|
# Start the socks server
|
|
|
|
#
|
|
|
|
sub runsocksserver {
|
|
|
|
my ($id, $verbose, $ipv6) = @_;
|
|
|
|
my $ip=$HOSTIP;
|
|
|
|
my $port = $SOCKSPORT;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $proto = 'socks';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
2010-01-16 21:45:24 -05:00
|
|
|
my $server;
|
2009-12-28 15:00:41 -05:00
|
|
|
my $srvrname;
|
2010-01-15 13:55:01 -05:00
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
2010-01-16 21:45:24 -05:00
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
2007-06-05 09:50:59 -04:00
|
|
|
|
2007-11-16 18:06:53 -05:00
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2009-11-30 08:48:51 -05:00
|
|
|
my $pid = processexists($pidfile);
|
2008-01-03 15:48:22 -05:00
|
|
|
if($pid > 0) {
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid");
|
2008-01-03 15:48:22 -05:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2008-01-03 15:48:22 -05:00
|
|
|
|
2010-01-15 13:55:01 -05:00
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
2008-01-03 15:48:22 -05:00
|
|
|
# The ssh server must be already running
|
|
|
|
if(!$run{'ssh'}) {
|
|
|
|
logmsg "RUN: SOCKS server cannot find running SSH server\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2008-01-04 08:00:40 -05:00
|
|
|
# Find out ssh daemon canonical file name
|
|
|
|
my $sshd = find_sshd();
|
|
|
|
if(!$sshd) {
|
|
|
|
logmsg "RUN: SOCKS server cannot find $sshdexe\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Find out ssh daemon version info
|
|
|
|
($sshdid, $sshdvernum, $sshdverstr, $sshderror) = sshversioninfo($sshd);
|
|
|
|
if(!$sshdid) {
|
|
|
|
# Not an OpenSSH or SunSSH ssh daemon
|
|
|
|
logmsg "$sshderror\n" if($verbose);
|
|
|
|
logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
2008-01-04 14:56:56 -05:00
|
|
|
logmsg "ssh server found $sshd is $sshdverstr\n" if($verbose);
|
2008-01-04 08:00:40 -05:00
|
|
|
|
2008-01-03 15:48:22 -05:00
|
|
|
# Find out ssh client canonical file name
|
|
|
|
my $ssh = find_ssh();
|
|
|
|
if(!$ssh) {
|
|
|
|
logmsg "RUN: SOCKS server cannot find $sshexe\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Find out ssh client version info
|
2008-01-04 08:00:40 -05:00
|
|
|
my ($sshid, $sshvernum, $sshverstr, $ssherror) = sshversioninfo($ssh);
|
2008-01-03 15:48:22 -05:00
|
|
|
if(!$sshid) {
|
|
|
|
# Not an OpenSSH or SunSSH ssh client
|
|
|
|
logmsg "$ssherror\n" if($verbose);
|
|
|
|
logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Verify minimum ssh client version
|
|
|
|
if((($sshid =~ /OpenSSH/) && ($sshvernum < 299)) ||
|
|
|
|
(($sshid =~ /SunSSH/) && ($sshvernum < 100))) {
|
|
|
|
logmsg "ssh client found $ssh is $sshverstr\n";
|
|
|
|
logmsg "SCP, SFTP and SOCKS tests require OpenSSH 2.9.9 or later\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
logmsg "ssh client found $ssh is $sshverstr\n" if($verbose);
|
|
|
|
|
2008-01-04 08:00:40 -05:00
|
|
|
# Verify if ssh client and ssh daemon versions match
|
|
|
|
if(($sshdid ne $sshid) || ($sshdvernum != $sshvernum)) {
|
2008-01-08 15:12:43 -05:00
|
|
|
# Our test harness might work with slightly mismatched versions
|
|
|
|
logmsg "Warning: version mismatch: sshd $sshdverstr - ssh $sshverstr\n"
|
2008-01-04 08:00:40 -05:00
|
|
|
if($verbose);
|
|
|
|
}
|
|
|
|
|
2008-01-03 15:48:22 -05:00
|
|
|
# Config file options for ssh client are previously set from sshserver.pl
|
|
|
|
if(! -e $sshconfig) {
|
|
|
|
logmsg "RUN: SOCKS server cannot find $sshconfig\n";
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2010-01-15 13:55:01 -05:00
|
|
|
$sshlog = server_logfilename($LOGDIR, 'socks', $ipvnum, $idnum);
|
|
|
|
|
2008-01-03 15:48:22 -05:00
|
|
|
# start our socks server
|
2014-12-20 20:42:29 -05:00
|
|
|
my $cmd="\"$ssh\" -N -F $sshconfig $ip > $sshlog 2>&1";
|
2011-10-06 14:26:42 -04:00
|
|
|
my ($sshpid, $pid2) = startnew($cmd, $pidfile, 30, 1); # fake pidfile
|
2007-06-05 09:50:59 -04:00
|
|
|
|
2013-04-06 06:45:05 -04:00
|
|
|
if($sshpid <= 0 || !pidexists($sshpid)) {
|
2007-06-05 09:50:59 -04:00
|
|
|
# it is NOT alive
|
2009-12-28 15:10:00 -05:00
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
2008-01-03 15:48:22 -05:00
|
|
|
display_sshlog();
|
2008-01-04 08:00:40 -05:00
|
|
|
display_sshconfig();
|
2008-01-07 19:39:31 -05:00
|
|
|
display_sshdlog();
|
|
|
|
display_sshdconfig();
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$pid2");
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2007-06-05 09:50:59 -04:00
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
# Ugly hack but ssh doesn't support pid files. PID is from fake pidfile.
|
2010-01-17 21:36:39 -05:00
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
2008-01-18 04:18:59 -05:00
|
|
|
if(!$pid3) {
|
2009-12-28 15:10:00 -05:00
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
2007-11-26 09:26:40 -05:00
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
2010-01-16 21:45:24 -05:00
|
|
|
stopserver($server, "$sshpid $pid2");
|
2007-11-16 18:06:53 -05:00
|
|
|
$doesntrun{$pidfile} = 1;
|
2007-06-05 09:50:59 -04:00
|
|
|
return (0,0);
|
|
|
|
}
|
2008-02-12 08:47:56 -05:00
|
|
|
$pid2 = $pid3;
|
2008-01-18 04:18:59 -05:00
|
|
|
|
2007-06-05 09:50:59 -04:00
|
|
|
if($verbose) {
|
2009-12-28 15:10:00 -05:00
|
|
|
logmsg "RUN: $srvrname server is now running PID $pid2\n";
|
2007-06-05 09:50:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ($pid2, $sshpid);
|
|
|
|
}
|
|
|
|
|
2017-06-26 11:46:53 -04:00
|
|
|
#######################################################################
|
|
|
|
# start the dict server
|
|
|
|
#
|
|
|
|
sub rundictserver {
|
|
|
|
my ($verbose, $alt, $port) = @_;
|
|
|
|
my $proto = "dict";
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
|
|
|
if($alt eq "ipv6") {
|
|
|
|
# No IPv6
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose 1 " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$srcdir/dictserver.py $flags";
|
|
|
|
my ($dictpid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
|
|
|
if($dictpid <= 0 || !pidexists($dictpid)) {
|
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
|
|
|
stopserver($server, "$dictpid $pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $dictpid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($dictpid, $pid2);
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:00:04 -04:00
|
|
|
#######################################################################
|
|
|
|
# start the SMB server
|
|
|
|
#
|
|
|
|
sub runsmbserver {
|
|
|
|
my ($verbose, $alt, $port) = @_;
|
|
|
|
my $proto = "smb";
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
|
|
|
if($alt eq "ipv6") {
|
|
|
|
# No IPv6
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose 1 " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$srcdir/smbserver.py $flags";
|
|
|
|
my ($smbpid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
|
|
|
if($smbpid <= 0 || !pidexists($smbpid)) {
|
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
|
|
|
stopserver($server, "$smbpid $pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $smbpid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($smbpid, $pid2);
|
|
|
|
}
|
|
|
|
|
2017-07-05 05:12:10 -04:00
|
|
|
#######################################################################
|
|
|
|
# start the telnet server
|
|
|
|
#
|
|
|
|
sub runnegtelnetserver {
|
|
|
|
my ($verbose, $alt, $port) = @_;
|
|
|
|
my $proto = "telnet";
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
my $server;
|
|
|
|
my $srvrname;
|
|
|
|
my $pidfile;
|
|
|
|
my $logfile;
|
|
|
|
my $flags = "";
|
|
|
|
|
|
|
|
if($alt eq "ipv6") {
|
|
|
|
# No IPv6
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = servername_id($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$pidfile = $serverpidfile{$server};
|
|
|
|
|
|
|
|
# don't retry if the server doesn't work
|
|
|
|
if ($doesntrun{$pidfile}) {
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
stopserver($server, "$pid");
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
|
|
|
|
$srvrname = servername_str($proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum);
|
|
|
|
|
|
|
|
$flags .= "--verbose 1 " if($debugprotocol);
|
|
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" ";
|
|
|
|
$flags .= "--id $idnum " if($idnum > 1);
|
|
|
|
$flags .= "--port $port --srcdir \"$srcdir\"";
|
|
|
|
|
|
|
|
my $cmd = "$srcdir/negtelnetserver.py $flags";
|
|
|
|
my ($ntelpid, $pid2) = startnew($cmd, $pidfile, 15, 0);
|
|
|
|
|
|
|
|
if($ntelpid <= 0 || !pidexists($ntelpid)) {
|
|
|
|
# it is NOT alive
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n";
|
|
|
|
stopserver($server, "$pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
|
|
|
|
# Server is up. Verify that we can speak to it.
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
if(!$pid3) {
|
|
|
|
logmsg "RUN: $srvrname server failed verification\n";
|
|
|
|
# failed to talk to it properly. Kill the server and return failure
|
|
|
|
stopserver($server, "$ntelpid $pid2");
|
|
|
|
displaylogs($testnumcheck);
|
|
|
|
$doesntrun{$pidfile} = 1;
|
|
|
|
return (0,0);
|
|
|
|
}
|
|
|
|
$pid2 = $pid3;
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "RUN: $srvrname server is now running PID $ntelpid\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep(1);
|
|
|
|
|
|
|
|
return ($ntelpid, $pid2);
|
|
|
|
}
|
|
|
|
|
2017-07-03 06:00:04 -04:00
|
|
|
|
2011-10-27 18:05:16 -04:00
|
|
|
#######################################################################
|
|
|
|
# Single shot http and gopher server responsiveness test. This should only
|
|
|
|
# be used to verify that a server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsive_http_server {
|
2014-11-27 17:59:23 -05:00
|
|
|
my ($proto, $verbose, $alt, $port_or_path) = @_;
|
2011-10-27 18:05:16 -04:00
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
if($alt eq "ipv6") {
|
2011-10-27 18:05:16 -04:00
|
|
|
# if IPv6, use a different setup
|
|
|
|
$ipvnum = 6;
|
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
2011-12-17 17:47:22 -05:00
|
|
|
elsif($alt eq "proxy") {
|
|
|
|
$idnum = 2;
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($alt eq "unix") {
|
2014-12-26 15:45:21 -05:00
|
|
|
# IP (protocol) is mutually exclusive with Unix sockets
|
2014-11-27 17:59:23 -05:00
|
|
|
$ipvnum = "unix";
|
|
|
|
}
|
2011-10-27 18:05:16 -04:00
|
|
|
|
2014-11-27 17:59:23 -05:00
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port_or_path);
|
2011-10-27 18:05:16 -04:00
|
|
|
}
|
|
|
|
|
2011-10-25 17:19:36 -04:00
|
|
|
#######################################################################
|
|
|
|
# Single shot pingpong server responsiveness test. This should only be
|
|
|
|
# used to verify that a server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsive_pingpong_server {
|
|
|
|
my ($proto, $id, $verbose, $ipv6) = @_;
|
|
|
|
my $port;
|
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
|
|
|
|
|
|
|
if($proto eq "ftp") {
|
|
|
|
$port = ($idnum>1)?$FTP2PORT:$FTPPORT;
|
|
|
|
|
|
|
|
if($ipvnum==6) {
|
|
|
|
# if IPv6, use a different setup
|
|
|
|
$port = $FTP6PORT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($proto eq "pop3") {
|
|
|
|
$port = ($ipvnum==6) ? $POP36PORT : $POP3PORT;
|
|
|
|
}
|
|
|
|
elsif($proto eq "imap") {
|
|
|
|
$port = ($ipvnum==6) ? $IMAP6PORT : $IMAPPORT;
|
|
|
|
}
|
|
|
|
elsif($proto eq "smtp") {
|
|
|
|
$port = ($ipvnum==6) ? $SMTP6PORT : $SMTPPORT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print STDERR "Unsupported protocol $proto!!\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
}
|
|
|
|
|
2011-10-27 18:05:16 -04:00
|
|
|
#######################################################################
|
|
|
|
# Single shot rtsp server responsiveness test. This should only be
|
|
|
|
# used to verify that a server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsive_rtsp_server {
|
|
|
|
my ($verbose, $ipv6) = @_;
|
|
|
|
my $port = $RTSPPORT;
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $proto = 'rtsp';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
|
|
|
|
if($ipv6) {
|
|
|
|
# if IPv6, use a different setup
|
|
|
|
$ipvnum = 6;
|
|
|
|
$port = $RTSP6PORT;
|
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Single shot tftp server responsiveness test. This should only be
|
|
|
|
# used to verify that a server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsive_tftp_server {
|
|
|
|
my ($id, $verbose, $ipv6) = @_;
|
|
|
|
my $port = $TFTPPORT;
|
|
|
|
my $ip = $HOSTIP;
|
|
|
|
my $proto = 'tftp';
|
|
|
|
my $ipvnum = 4;
|
|
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1;
|
|
|
|
|
|
|
|
if($ipv6) {
|
|
|
|
# if IPv6, use a different setup
|
|
|
|
$ipvnum = 6;
|
|
|
|
$port = $TFTP6PORT;
|
|
|
|
$ip = $HOST6IP;
|
|
|
|
}
|
|
|
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Single shot non-stunnel HTTP TLS extensions capable server
|
|
|
|
# responsiveness test. This should only be used to verify that a
|
|
|
|
# server present in %run hash is still functional
|
|
|
|
#
|
|
|
|
sub responsive_httptls_server {
|
|
|
|
my ($verbose, $ipv6) = @_;
|
|
|
|
my $proto = "httptls";
|
|
|
|
my $port = ($ipv6 && ($ipv6 =~ /6$/)) ? $HTTPTLS6PORT : $HTTPTLSPORT;
|
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP";
|
|
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4;
|
|
|
|
my $idnum = 1;
|
|
|
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port);
|
|
|
|
}
|
|
|
|
|
2000-11-14 05:18:44 -05:00
|
|
|
#######################################################################
|
|
|
|
# Remove all files in the specified directory
|
|
|
|
#
|
|
|
|
sub cleardir {
|
|
|
|
my $dir = $_[0];
|
|
|
|
my $count;
|
2000-11-15 02:09:37 -05:00
|
|
|
my $file;
|
2000-11-14 05:18:44 -05:00
|
|
|
|
|
|
|
# Get all files
|
|
|
|
opendir(DIR, $dir) ||
|
|
|
|
return 0; # can't open dir
|
|
|
|
while($file = readdir(DIR)) {
|
|
|
|
if($file !~ /^\./) {
|
|
|
|
unlink("$dir/$file");
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir DIR;
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# compare test results with the expected output, we might filter off
|
|
|
|
# some pattern that is allowed to differ, output test results
|
|
|
|
#
|
2000-11-13 11:06:16 -05:00
|
|
|
sub compare {
|
2012-11-23 05:56:26 -05:00
|
|
|
my ($testnum, $testname, $subject, $firstref, $secondref)=@_;
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
my $result = compareparts($firstref, $secondref);
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2003-04-30 13:15:38 -04:00
|
|
|
if($result) {
|
2012-11-23 05:56:26 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2003-04-30 13:15:38 -04:00
|
|
|
if(!$short) {
|
2012-11-23 05:56:26 -05:00
|
|
|
logmsg "\n $testnum: $subject FAILED:\n";
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg showdiff($LOGDIR, $firstref, $secondref);
|
2003-04-30 13:15:38 -04:00
|
|
|
}
|
2012-11-23 05:56:26 -05:00
|
|
|
elsif(!$automakestyle) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "FAILED\n";
|
2003-04-30 13:15:38 -04:00
|
|
|
}
|
2012-11-23 05:56:26 -05:00
|
|
|
else {
|
|
|
|
# automakestyle
|
|
|
|
logmsg "FAIL: $testnum - $testname - $subject\n";
|
|
|
|
}
|
2000-11-17 10:15:48 -05:00
|
|
|
}
|
2001-05-23 11:02:58 -04:00
|
|
|
return $result;
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
|
|
|
|
2000-11-14 05:18:44 -05:00
|
|
|
#######################################################################
|
|
|
|
# display information about curl and the host the test suite runs on
|
|
|
|
#
|
2005-04-28 17:04:58 -04:00
|
|
|
sub checksystem {
|
2000-11-17 10:07:29 -05:00
|
|
|
|
|
|
|
unlink($memdump); # remove this if there was one left
|
|
|
|
|
2004-11-26 03:41:39 -05:00
|
|
|
my $feat;
|
2003-06-26 07:44:01 -04:00
|
|
|
my $curl;
|
|
|
|
my $libcurl;
|
2005-12-08 06:29:47 -05:00
|
|
|
my $versretval;
|
|
|
|
my $versnoexec;
|
|
|
|
my @version=();
|
|
|
|
|
|
|
|
my $curlverout="$LOGDIR/curlverout.log";
|
|
|
|
my $curlvererr="$LOGDIR/curlvererr.log";
|
|
|
|
my $versioncmd="$CURL --version 1>$curlverout 2>$curlvererr";
|
|
|
|
|
|
|
|
unlink($curlverout);
|
|
|
|
unlink($curlvererr);
|
|
|
|
|
2007-09-20 16:39:17 -04:00
|
|
|
$versretval = runclient($versioncmd);
|
2005-12-08 06:29:47 -05:00
|
|
|
$versnoexec = $!;
|
|
|
|
|
2007-06-08 13:03:50 -04:00
|
|
|
open(VERSOUT, "<$curlverout");
|
2007-06-07 18:42:26 -04:00
|
|
|
@version = <VERSOUT>;
|
|
|
|
close(VERSOUT);
|
2005-12-08 06:29:47 -05:00
|
|
|
|
2014-01-08 07:20:29 -05:00
|
|
|
$resolver="stock";
|
2003-06-26 07:44:01 -04:00
|
|
|
for(@version) {
|
|
|
|
chomp;
|
2001-04-26 04:32:12 -04:00
|
|
|
|
2003-06-26 07:44:01 -04:00
|
|
|
if($_ =~ /^curl/) {
|
|
|
|
$curl = $_;
|
|
|
|
$curl =~ s/^(.*)(libcurl.*)/$1/g;
|
2005-04-27 05:59:29 -04:00
|
|
|
|
2003-06-26 07:44:01 -04:00
|
|
|
$libcurl = $2;
|
2016-03-15 17:14:47 -04:00
|
|
|
if($curl =~ /win32|mingw(32|64)/) {
|
|
|
|
# This is a Windows MinGW build or native build, we need to use
|
|
|
|
# Win32-style path.
|
|
|
|
$pwd = pathhelp::sys_native_current_path();
|
2004-03-29 04:26:31 -05:00
|
|
|
}
|
2012-07-19 10:31:08 -04:00
|
|
|
if ($libcurl =~ /winssl/i) {
|
|
|
|
$has_winssl=1;
|
|
|
|
$ssllib="WinSSL";
|
|
|
|
}
|
2005-04-27 05:59:29 -04:00
|
|
|
elsif ($libcurl =~ /openssl/i) {
|
2005-04-12 03:18:48 -04:00
|
|
|
$has_openssl=1;
|
2014-11-04 17:02:09 -05:00
|
|
|
$has_sslpinning=1;
|
2007-03-18 18:37:23 -04:00
|
|
|
$ssllib="OpenSSL";
|
2005-04-12 03:18:48 -04:00
|
|
|
}
|
2005-04-27 05:59:29 -04:00
|
|
|
elsif ($libcurl =~ /gnutls/i) {
|
2005-04-12 03:18:48 -04:00
|
|
|
$has_gnutls=1;
|
2014-11-04 17:02:09 -05:00
|
|
|
$has_sslpinning=1;
|
2007-03-18 18:37:23 -04:00
|
|
|
$ssllib="GnuTLS";
|
2005-04-12 03:18:48 -04:00
|
|
|
}
|
2007-02-12 17:32:37 -05:00
|
|
|
elsif ($libcurl =~ /nss/i) {
|
|
|
|
$has_nss=1;
|
2015-03-25 08:48:41 -04:00
|
|
|
$has_sslpinning=1;
|
2007-03-18 18:37:23 -04:00
|
|
|
$ssllib="NSS";
|
|
|
|
}
|
2015-03-27 19:26:45 -04:00
|
|
|
elsif ($libcurl =~ /(yassl|wolfssl)/i) {
|
2007-03-18 18:37:23 -04:00
|
|
|
$has_yassl=1;
|
2015-04-05 01:48:16 -04:00
|
|
|
$has_sslpinning=1;
|
2007-03-18 18:37:23 -04:00
|
|
|
$ssllib="yassl";
|
2007-02-12 17:32:37 -05:00
|
|
|
}
|
2010-05-05 16:30:46 -04:00
|
|
|
elsif ($libcurl =~ /polarssl/i) {
|
|
|
|
$has_polarssl=1;
|
2016-04-21 21:21:45 -04:00
|
|
|
$has_sslpinning=1;
|
2010-05-05 16:30:46 -04:00
|
|
|
$ssllib="polarssl";
|
2011-12-29 21:36:18 -05:00
|
|
|
}
|
2011-09-09 19:23:21 -04:00
|
|
|
elsif ($libcurl =~ /axtls/i) {
|
|
|
|
$has_axtls=1;
|
|
|
|
$ssllib="axTLS";
|
|
|
|
}
|
2013-02-24 17:39:15 -05:00
|
|
|
elsif ($libcurl =~ /securetransport/i) {
|
|
|
|
$has_darwinssl=1;
|
2017-04-17 19:47:51 -04:00
|
|
|
$has_sslpinning=1;
|
2013-02-24 17:39:15 -05:00
|
|
|
$ssllib="DarwinSSL";
|
|
|
|
}
|
2015-01-23 08:24:19 -05:00
|
|
|
elsif ($libcurl =~ /BoringSSL/i) {
|
|
|
|
$has_boringssl=1;
|
2016-01-10 02:56:26 -05:00
|
|
|
$has_sslpinning=1;
|
2015-01-23 08:24:19 -05:00
|
|
|
$ssllib="BoringSSL";
|
|
|
|
}
|
|
|
|
elsif ($libcurl =~ /libressl/i) {
|
|
|
|
$has_libressl=1;
|
2016-01-10 02:56:26 -05:00
|
|
|
$has_sslpinning=1;
|
2015-01-23 08:24:19 -05:00
|
|
|
$ssllib="libressl";
|
|
|
|
}
|
2016-01-10 02:56:26 -05:00
|
|
|
elsif ($libcurl =~ /mbedTLS/i) {
|
|
|
|
$has_mbedtls=1;
|
|
|
|
$has_sslpinning=1;
|
|
|
|
$ssllib="mbedTLS";
|
|
|
|
}
|
2014-02-05 17:36:16 -05:00
|
|
|
if ($libcurl =~ /ares/i) {
|
2014-01-08 07:20:29 -05:00
|
|
|
$has_cares=1;
|
|
|
|
$resolver="c-ares";
|
|
|
|
}
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
|
|
|
elsif($_ =~ /^Protocols: (.*)/i) {
|
2007-03-09 16:01:39 -05:00
|
|
|
# these are the protocols compiled in to this libcurl
|
2011-10-06 14:26:42 -04:00
|
|
|
@protocols = split(' ', lc($1));
|
2007-03-09 16:01:39 -05:00
|
|
|
|
|
|
|
# Generate a "proto-ipv6" version of each protocol to match the
|
2014-11-27 17:59:23 -05:00
|
|
|
# IPv6 <server> name and a "proto-unix" to match the variant which
|
2014-12-26 15:45:21 -05:00
|
|
|
# uses Unix domain sockets. This works even if support isn't
|
2007-03-09 16:01:39 -05:00
|
|
|
# compiled in because the <features> test will fail.
|
2014-11-27 17:59:23 -05:00
|
|
|
push @protocols, map(("$_-ipv6", "$_-unix"), @protocols);
|
2011-01-19 14:35:02 -05:00
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
# 'http-proxy' is used in test cases to do CONNECT through
|
|
|
|
push @protocols, 'http-proxy';
|
|
|
|
|
2013-02-15 05:50:45 -05:00
|
|
|
# 'http-pipe' is the special server for testing pipelining
|
|
|
|
push @protocols, 'http-pipe';
|
|
|
|
|
2007-03-09 16:01:39 -05:00
|
|
|
# 'none' is used in test cases to mean no server
|
2011-10-06 14:26:42 -04:00
|
|
|
push @protocols, 'none';
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
|
|
|
elsif($_ =~ /^Features: (.*)/i) {
|
2004-11-26 03:41:39 -05:00
|
|
|
$feat = $1;
|
2009-06-09 22:49:42 -04:00
|
|
|
if($feat =~ /TrackMemory/i) {
|
2013-03-15 14:58:00 -04:00
|
|
|
# built with memory tracking support (--enable-curldebug)
|
|
|
|
$has_memory_tracking = 1;
|
2009-06-09 22:49:42 -04:00
|
|
|
}
|
|
|
|
if($feat =~ /debug/i) {
|
|
|
|
# curl was built with --enable-debug
|
|
|
|
$debug_build = 1;
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
|
|
|
if($feat =~ /SSL/i) {
|
|
|
|
# ssl enabled
|
2015-11-12 08:50:13 -05:00
|
|
|
$has_ssl=1;
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
2004-03-01 11:24:54 -05:00
|
|
|
if($feat =~ /Largefile/i) {
|
|
|
|
# large file support
|
2015-11-12 08:50:13 -05:00
|
|
|
$has_largefile=1;
|
2004-03-01 11:24:54 -05:00
|
|
|
}
|
2004-04-30 04:03:07 -04:00
|
|
|
if($feat =~ /IDN/i) {
|
|
|
|
# IDN support
|
|
|
|
$has_idn=1;
|
|
|
|
}
|
2004-11-25 17:21:49 -05:00
|
|
|
if($feat =~ /IPv6/i) {
|
|
|
|
$has_ipv6 = 1;
|
|
|
|
}
|
2014-12-27 05:40:41 -05:00
|
|
|
if($feat =~ /UnixSockets/i) {
|
2014-11-27 17:59:23 -05:00
|
|
|
$has_unix = 1;
|
|
|
|
}
|
2004-11-29 07:23:02 -05:00
|
|
|
if($feat =~ /libz/i) {
|
|
|
|
$has_libz = 1;
|
|
|
|
}
|
2005-03-21 03:14:32 -05:00
|
|
|
if($feat =~ /NTLM/i) {
|
|
|
|
# NTLM enabled
|
|
|
|
$has_ntlm=1;
|
2014-11-22 07:30:15 -05:00
|
|
|
|
|
|
|
# Use this as a proxy for any cryptographic authentication
|
2014-02-17 03:14:44 -05:00
|
|
|
$has_crypto=1;
|
2005-03-21 03:14:32 -05:00
|
|
|
}
|
2011-08-26 19:32:49 -04:00
|
|
|
if($feat =~ /NTLM_WB/i) {
|
|
|
|
# NTLM delegation to winbind daemon ntlm_auth helper enabled
|
|
|
|
$has_ntlm_wb=1;
|
2011-07-18 17:39:52 -04:00
|
|
|
}
|
2013-11-12 07:34:56 -05:00
|
|
|
if($feat =~ /SSPI/i) {
|
|
|
|
# SSPI enabled
|
|
|
|
$has_sspi=1;
|
|
|
|
}
|
2014-11-22 07:12:42 -05:00
|
|
|
if($feat =~ /GSS-API/i) {
|
|
|
|
# GSS-API enabled
|
|
|
|
$has_gssapi=1;
|
|
|
|
}
|
2014-11-22 07:18:17 -05:00
|
|
|
if($feat =~ /Kerberos/i) {
|
|
|
|
# Kerberos enabled
|
|
|
|
$has_kerberos=1;
|
2014-11-22 07:30:15 -05:00
|
|
|
|
|
|
|
# Use this as a proxy for any cryptographic authentication
|
|
|
|
$has_crypto=1;
|
2014-11-22 07:18:17 -05:00
|
|
|
}
|
2014-11-22 07:24:13 -05:00
|
|
|
if($feat =~ /SPNEGO/i) {
|
|
|
|
# SPNEGO enabled
|
|
|
|
$has_spnego=1;
|
2014-11-22 07:30:15 -05:00
|
|
|
|
|
|
|
# Use this as a proxy for any cryptographic authentication
|
|
|
|
$has_crypto=1;
|
2014-11-22 07:24:13 -05:00
|
|
|
}
|
2009-05-11 13:20:41 -04:00
|
|
|
if($feat =~ /CharConv/i) {
|
|
|
|
# CharConv enabled
|
|
|
|
$has_charconv=1;
|
|
|
|
}
|
2011-01-19 14:35:02 -05:00
|
|
|
if($feat =~ /TLS-SRP/i) {
|
|
|
|
# TLS-SRP enabled
|
|
|
|
$has_tls_srp=1;
|
|
|
|
}
|
2012-06-20 14:15:42 -04:00
|
|
|
if($feat =~ /Metalink/i) {
|
|
|
|
# Metalink enabled
|
|
|
|
$has_metalink=1;
|
|
|
|
}
|
2015-09-29 05:33:01 -04:00
|
|
|
if($feat =~ /PSL/i) {
|
|
|
|
# PSL enabled
|
|
|
|
$has_psl=1;
|
|
|
|
}
|
2014-01-08 07:20:29 -05:00
|
|
|
if($feat =~ /AsynchDNS/i) {
|
|
|
|
if(!$has_cares) {
|
|
|
|
# this means threaded resolver
|
|
|
|
$has_threadedres=1;
|
|
|
|
$resolver="threaded";
|
|
|
|
}
|
|
|
|
}
|
2014-08-02 17:51:46 -04:00
|
|
|
if($feat =~ /HTTP2/) {
|
|
|
|
# http2 enabled
|
|
|
|
$has_http2=1;
|
2016-06-03 17:36:10 -04:00
|
|
|
|
2016-06-19 17:52:01 -04:00
|
|
|
push @protocols, 'http/2';
|
2014-08-02 17:51:46 -04:00
|
|
|
}
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
|
|
|
# Test harness currently uses a non-stunnel server in order to
|
|
|
|
# run HTTP TLS-SRP tests required when curl is built with https
|
|
|
|
# protocol support and TLS-SRP feature enabled. For convenience
|
|
|
|
# 'httptls' may be included in the test harness protocols array
|
|
|
|
# to differentiate this from classic stunnel based 'https' test
|
|
|
|
# harness server.
|
|
|
|
#
|
|
|
|
if($has_tls_srp) {
|
|
|
|
my $add_httptls;
|
|
|
|
for(@protocols) {
|
|
|
|
if($_ =~ /^https(-ipv6|)$/) {
|
|
|
|
$add_httptls=1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($add_httptls && (! grep /^httptls$/, @protocols)) {
|
|
|
|
push @protocols, 'httptls';
|
|
|
|
push @protocols, 'httptls-ipv6';
|
|
|
|
}
|
|
|
|
}
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
2004-02-12 09:40:08 -05:00
|
|
|
if(!$curl) {
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg "unable to get curl's version, further details are:\n";
|
2005-12-08 06:29:47 -05:00
|
|
|
logmsg "issued command: \n";
|
2005-12-05 14:23:56 -05:00
|
|
|
logmsg "$versioncmd \n";
|
2005-12-08 06:29:47 -05:00
|
|
|
if ($versretval == -1) {
|
|
|
|
logmsg "command failed with: \n";
|
|
|
|
logmsg "$versnoexec \n";
|
|
|
|
}
|
|
|
|
elsif ($versretval & 127) {
|
2006-09-06 06:03:34 -04:00
|
|
|
logmsg sprintf("command died with signal %d, and %s coredump.\n",
|
2005-12-08 06:29:47 -05:00
|
|
|
($versretval & 127), ($versretval & 128)?"a":"no");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logmsg sprintf("command exited with value %d \n", $versretval >> 8);
|
2005-12-05 14:23:56 -05:00
|
|
|
}
|
2005-12-08 06:29:47 -05:00
|
|
|
logmsg "contents of $curlverout: \n";
|
|
|
|
displaylogcontent("$curlverout");
|
|
|
|
logmsg "contents of $curlvererr: \n";
|
|
|
|
displaylogcontent("$curlvererr");
|
2007-04-03 08:27:03 -04:00
|
|
|
die "couldn't get curl's version";
|
2004-02-12 09:40:08 -05:00
|
|
|
}
|
2001-04-26 04:32:12 -04:00
|
|
|
|
2009-07-14 09:25:14 -04:00
|
|
|
if(-r "../lib/curl_config.h") {
|
|
|
|
open(CONF, "<../lib/curl_config.h");
|
2007-06-07 18:42:26 -04:00
|
|
|
while(<CONF>) {
|
2004-11-22 17:26:46 -05:00
|
|
|
if($_ =~ /^\#define HAVE_GETRLIMIT/) {
|
|
|
|
$has_getrlimit = 1;
|
|
|
|
}
|
|
|
|
}
|
2007-06-07 18:42:26 -04:00
|
|
|
close(CONF);
|
2004-11-22 17:26:46 -05:00
|
|
|
}
|
|
|
|
|
2004-12-11 16:41:00 -05:00
|
|
|
if($has_ipv6) {
|
2014-12-27 06:09:01 -05:00
|
|
|
# client has IPv6 support
|
2005-04-18 02:57:44 -04:00
|
|
|
|
|
|
|
# check if the HTTP server has it!
|
2004-12-11 16:41:00 -05:00
|
|
|
my @sws = `server/sws --version`;
|
|
|
|
if($sws[0] =~ /IPv6/) {
|
2014-12-27 06:09:01 -05:00
|
|
|
# HTTP server has IPv6 support!
|
2004-12-11 16:41:00 -05:00
|
|
|
$http_ipv6 = 1;
|
2010-08-24 18:47:45 -04:00
|
|
|
$gopher_ipv6 = 1;
|
2004-12-11 16:41:00 -05:00
|
|
|
}
|
2005-04-18 02:57:44 -04:00
|
|
|
|
|
|
|
# check if the FTP server has it!
|
2005-04-28 04:23:25 -04:00
|
|
|
@sws = `server/sockfilt --version`;
|
2005-04-18 02:57:44 -04:00
|
|
|
if($sws[0] =~ /IPv6/) {
|
2014-12-27 06:09:01 -05:00
|
|
|
# FTP server has IPv6 support!
|
2005-04-18 02:57:44 -04:00
|
|
|
$ftp_ipv6 = 1;
|
|
|
|
}
|
2004-12-11 16:41:00 -05:00
|
|
|
}
|
|
|
|
|
2014-11-27 17:59:23 -05:00
|
|
|
if($has_unix) {
|
2014-12-26 15:45:21 -05:00
|
|
|
# client has Unix sockets support, check whether the HTTP server has it
|
2014-11-27 17:59:23 -05:00
|
|
|
my @sws = `server/sws --version`;
|
|
|
|
$http_unix = 1 if($sws[0] =~ /unix/);
|
|
|
|
}
|
|
|
|
|
2013-03-15 14:58:00 -04:00
|
|
|
if(!$has_memory_tracking && $torture) {
|
|
|
|
die "can't run torture tests since curl was built without ".
|
|
|
|
"TrackMemory feature (--enable-curldebug)";
|
2004-06-14 04:25:54 -04:00
|
|
|
}
|
|
|
|
|
2010-07-29 18:47:49 -04:00
|
|
|
$has_shared = `sh $CURLCONFIG --built-shared`;
|
|
|
|
chomp $has_shared;
|
|
|
|
|
2007-09-20 16:39:17 -04:00
|
|
|
my $hostname=join(' ', runclientoutput("hostname"));
|
|
|
|
my $hosttype=join(' ', runclientoutput("uname -a"));
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg ("********* System characteristics ******** \n",
|
2001-04-26 04:32:12 -04:00
|
|
|
"* $curl\n",
|
|
|
|
"* $libcurl\n",
|
2004-11-26 03:41:39 -05:00
|
|
|
"* Features: $feat\n",
|
2000-11-17 10:15:48 -05:00
|
|
|
"* Host: $hostname",
|
2005-05-25 08:26:20 -04:00
|
|
|
"* System: $hosttype");
|
|
|
|
|
2014-01-08 07:20:29 -05:00
|
|
|
if($has_memory_tracking && $has_threadedres) {
|
|
|
|
$has_memory_tracking = 0;
|
|
|
|
logmsg("*\n",
|
|
|
|
"*** DISABLES memory tracking when using threaded resolver\n",
|
|
|
|
"*\n");
|
|
|
|
}
|
|
|
|
|
2015-11-12 09:32:48 -05:00
|
|
|
logmsg sprintf("* Servers: %s", $stunnel?"SSL ":"");
|
|
|
|
logmsg sprintf("%s", $http_ipv6?"HTTP-IPv6 ":"");
|
|
|
|
logmsg sprintf("%s", $http_unix?"HTTP-unix ":"");
|
2016-11-30 16:38:45 -05:00
|
|
|
logmsg sprintf("%s\n", $ftp_ipv6?"FTP-IPv6 ":"");
|
2015-11-12 09:32:48 -05:00
|
|
|
|
2016-03-14 10:39:16 -04:00
|
|
|
logmsg sprintf("* Env: %s%s", $valgrind?"Valgrind ":"",
|
|
|
|
$run_event_based?"event-based ":"");
|
2015-11-12 09:32:48 -05:00
|
|
|
logmsg sprintf("%s\n", $libtool?"Libtool ":"");
|
|
|
|
|
|
|
|
if($verbose) {
|
|
|
|
logmsg "* Ports:\n";
|
|
|
|
|
|
|
|
logmsg sprintf("* HTTP/%d ", $HTTPPORT);
|
|
|
|
logmsg sprintf("FTP/%d ", $FTPPORT);
|
|
|
|
logmsg sprintf("FTP2/%d ", $FTP2PORT);
|
|
|
|
logmsg sprintf("RTSP/%d ", $RTSPPORT);
|
|
|
|
if($stunnel) {
|
|
|
|
logmsg sprintf("FTPS/%d ", $FTPSPORT);
|
|
|
|
logmsg sprintf("HTTPS/%d ", $HTTPSPORT);
|
2011-10-06 14:26:42 -04:00
|
|
|
}
|
2015-11-12 09:32:48 -05:00
|
|
|
logmsg sprintf("\n* TFTP/%d ", $TFTPPORT);
|
|
|
|
if($http_ipv6) {
|
|
|
|
logmsg sprintf("HTTP-IPv6/%d ", $HTTP6PORT);
|
|
|
|
logmsg sprintf("RTSP-IPv6/%d ", $RTSP6PORT);
|
|
|
|
}
|
|
|
|
if($ftp_ipv6) {
|
|
|
|
logmsg sprintf("FTP-IPv6/%d ", $FTP6PORT);
|
|
|
|
}
|
|
|
|
if($tftp_ipv6) {
|
|
|
|
logmsg sprintf("TFTP-IPv6/%d ", $TFTP6PORT);
|
|
|
|
}
|
|
|
|
logmsg sprintf("\n* GOPHER/%d ", $GOPHERPORT);
|
|
|
|
if($gopher_ipv6) {
|
2017-03-20 18:37:57 -04:00
|
|
|
logmsg sprintf("GOPHER-IPv6/%d", $GOPHER6PORT);
|
2015-11-12 09:32:48 -05:00
|
|
|
}
|
|
|
|
logmsg sprintf("\n* SSH/%d ", $SSHPORT);
|
|
|
|
logmsg sprintf("SOCKS/%d ", $SOCKSPORT);
|
|
|
|
logmsg sprintf("POP3/%d ", $POP3PORT);
|
|
|
|
logmsg sprintf("IMAP/%d ", $IMAPPORT);
|
|
|
|
logmsg sprintf("SMTP/%d\n", $SMTPPORT);
|
|
|
|
if($ftp_ipv6) {
|
|
|
|
logmsg sprintf("* POP3-IPv6/%d ", $POP36PORT);
|
|
|
|
logmsg sprintf("IMAP-IPv6/%d ", $IMAP6PORT);
|
|
|
|
logmsg sprintf("SMTP-IPv6/%d\n", $SMTP6PORT);
|
|
|
|
}
|
|
|
|
if($httptlssrv) {
|
|
|
|
logmsg sprintf("* HTTPTLS/%d ", $HTTPTLSPORT);
|
|
|
|
if($has_ipv6) {
|
|
|
|
logmsg sprintf("HTTPTLS-IPv6/%d ", $HTTPTLS6PORT);
|
|
|
|
}
|
|
|
|
logmsg "\n";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* HTTP-PIPE/%d \n", $HTTPPIPEPORT);
|
2006-09-06 06:03:34 -04:00
|
|
|
|
2015-11-12 09:32:48 -05:00
|
|
|
if($has_unix) {
|
|
|
|
logmsg "* Unix socket paths:\n";
|
|
|
|
if($http_unix) {
|
|
|
|
logmsg sprintf("* HTTP-Unix:%s\n", $HTTPUNIXPATH);
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
}
|
|
|
|
}
|
2005-04-28 17:04:58 -04:00
|
|
|
$has_textaware = ($^O eq 'MSWin32') || ($^O eq 'msys');
|
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "***************************************** \n";
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
|
|
|
|
2002-05-21 18:20:52 -04:00
|
|
|
#######################################################################
|
2004-05-17 06:53:34 -04:00
|
|
|
# substitute the variable stuff into either a joined up file or
|
2002-05-21 18:20:52 -04:00
|
|
|
# a command, in either case passed by reference
|
|
|
|
#
|
|
|
|
sub subVariables {
|
|
|
|
my ($thing) = @_;
|
2011-10-06 14:26:42 -04:00
|
|
|
|
|
|
|
# ports
|
|
|
|
|
2005-04-18 02:57:44 -04:00
|
|
|
$$thing =~ s/%FTP6PORT/$FTP6PORT/g;
|
2005-01-17 15:20:34 -05:00
|
|
|
$$thing =~ s/%FTP2PORT/$FTP2PORT/g;
|
2002-05-21 18:20:52 -04:00
|
|
|
$$thing =~ s/%FTPSPORT/$FTPSPORT/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
$$thing =~ s/%FTPPORT/$FTPPORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%GOPHER6PORT/$GOPHER6PORT/g;
|
|
|
|
$$thing =~ s/%GOPHERPORT/$GOPHERPORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%HTTPTLS6PORT/$HTTPTLS6PORT/g;
|
|
|
|
$$thing =~ s/%HTTPTLSPORT/$HTTPTLSPORT/g;
|
|
|
|
$$thing =~ s/%HTTP6PORT/$HTTP6PORT/g;
|
|
|
|
$$thing =~ s/%HTTPSPORT/$HTTPSPORT/g;
|
2016-06-03 17:36:10 -04:00
|
|
|
$$thing =~ s/%HTTP2PORT/$HTTP2PORT/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
$$thing =~ s/%HTTPPORT/$HTTPPORT/g;
|
2013-02-15 05:50:45 -05:00
|
|
|
$$thing =~ s/%HTTPPIPEPORT/$HTTPPIPEPORT/g;
|
2011-12-17 17:47:22 -05:00
|
|
|
$$thing =~ s/%PROXYPORT/$HTTPPROXYPORT/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
|
2010-01-09 13:35:59 -05:00
|
|
|
$$thing =~ s/%IMAP6PORT/$IMAP6PORT/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
$$thing =~ s/%IMAPPORT/$IMAPPORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%POP36PORT/$POP36PORT/g;
|
|
|
|
$$thing =~ s/%POP3PORT/$POP3PORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%RTSP6PORT/$RTSP6PORT/g;
|
|
|
|
$$thing =~ s/%RTSPPORT/$RTSPPORT/g;
|
|
|
|
|
2010-01-09 13:35:59 -05:00
|
|
|
$$thing =~ s/%SMTP6PORT/$SMTP6PORT/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
$$thing =~ s/%SMTPPORT/$SMTPPORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%SOCKSPORT/$SOCKSPORT/g;
|
|
|
|
$$thing =~ s/%SSHPORT/$SSHPORT/g;
|
|
|
|
|
|
|
|
$$thing =~ s/%TFTP6PORT/$TFTP6PORT/g;
|
|
|
|
$$thing =~ s/%TFTPPORT/$TFTPPORT/g;
|
|
|
|
|
2017-06-26 11:46:53 -04:00
|
|
|
$$thing =~ s/%DICTPORT/$DICTPORT/g;
|
|
|
|
|
2017-07-03 06:00:04 -04:00
|
|
|
$$thing =~ s/%SMBPORT/$SMBPORT/g;
|
|
|
|
$$thing =~ s/%SMBSPORT/$SMBSPORT/g;
|
|
|
|
|
2017-07-05 05:12:10 -04:00
|
|
|
$$thing =~ s/%NEGTELNETPORT/$NEGTELNETPORT/g;
|
|
|
|
|
2014-12-26 15:45:21 -05:00
|
|
|
# server Unix domain socket paths
|
2014-11-27 17:59:23 -05:00
|
|
|
|
|
|
|
$$thing =~ s/%HTTPUNIXPATH/$HTTPUNIXPATH/g;
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
# client IP addresses
|
|
|
|
|
|
|
|
$$thing =~ s/%CLIENT6IP/$CLIENT6IP/g;
|
|
|
|
$$thing =~ s/%CLIENTIP/$CLIENTIP/g;
|
|
|
|
|
|
|
|
# server IP addresses
|
|
|
|
|
|
|
|
$$thing =~ s/%HOST6IP/$HOST6IP/g;
|
|
|
|
$$thing =~ s/%HOSTIP/$HOSTIP/g;
|
|
|
|
|
|
|
|
# misc
|
|
|
|
|
2007-01-18 13:04:20 -05:00
|
|
|
$$thing =~ s/%CURL/$CURL/g;
|
2011-10-06 14:26:42 -04:00
|
|
|
$$thing =~ s/%PWD/$pwd/g;
|
|
|
|
$$thing =~ s/%SRCDIR/$srcdir/g;
|
2007-03-23 21:01:28 -04:00
|
|
|
$$thing =~ s/%USER/$USER/g;
|
2006-05-11 02:34:30 -04:00
|
|
|
|
|
|
|
# The purpose of FTPTIME2 and FTPTIME3 is to provide times that can be
|
|
|
|
# used for time-out tests and that whould work on most hosts as these
|
|
|
|
# adjust for the startup/check time for this particular host. We needed
|
|
|
|
# to do this to make the test suite run better on very slow hosts.
|
|
|
|
|
|
|
|
my $ftp2 = $ftpchecktime * 2;
|
|
|
|
my $ftp3 = $ftpchecktime * 3;
|
|
|
|
|
|
|
|
$$thing =~ s/%FTPTIME2/$ftp2/g;
|
|
|
|
$$thing =~ s/%FTPTIME3/$ftp3/g;
|
2014-08-02 17:51:46 -04:00
|
|
|
|
|
|
|
# HTTP2
|
|
|
|
|
2017-06-26 11:46:53 -04:00
|
|
|
$$thing =~ s/%H2CVER/$h2cver/g;
|
2002-05-21 18:20:52 -04:00
|
|
|
}
|
|
|
|
|
2004-09-08 04:08:38 -04:00
|
|
|
sub fixarray {
|
|
|
|
my @in = @_;
|
|
|
|
|
|
|
|
for(@in) {
|
|
|
|
subVariables \$_;
|
|
|
|
}
|
|
|
|
return @in;
|
|
|
|
}
|
|
|
|
|
2000-11-14 05:18:44 -05:00
|
|
|
#######################################################################
|
2009-12-18 14:17:14 -05:00
|
|
|
# Provide time stamps for single test skipped events
|
2000-11-14 05:18:44 -05:00
|
|
|
#
|
2009-12-18 14:17:14 -05:00
|
|
|
sub timestampskippedevents {
|
|
|
|
my $testnum = $_[0];
|
|
|
|
|
|
|
|
return if((not defined($testnum)) || ($testnum < 1));
|
|
|
|
|
|
|
|
if($timestats) {
|
2009-12-18 23:15:22 -05:00
|
|
|
|
|
|
|
if($timevrfyend{$testnum}) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
elsif($timesrvrlog{$testnum}) {
|
|
|
|
$timevrfyend{$testnum} = $timesrvrlog{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
elsif($timetoolend{$testnum}) {
|
2009-12-18 23:15:22 -05:00
|
|
|
$timevrfyend{$testnum} = $timetoolend{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
$timesrvrlog{$testnum} = $timetoolend{$testnum};
|
|
|
|
}
|
|
|
|
elsif($timetoolini{$testnum}) {
|
2009-12-18 23:15:22 -05:00
|
|
|
$timevrfyend{$testnum} = $timetoolini{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
$timesrvrlog{$testnum} = $timetoolini{$testnum};
|
|
|
|
$timetoolend{$testnum} = $timetoolini{$testnum};
|
|
|
|
}
|
|
|
|
elsif($timesrvrend{$testnum}) {
|
2009-12-18 23:15:22 -05:00
|
|
|
$timevrfyend{$testnum} = $timesrvrend{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
$timesrvrlog{$testnum} = $timesrvrend{$testnum};
|
|
|
|
$timetoolend{$testnum} = $timesrvrend{$testnum};
|
|
|
|
$timetoolini{$testnum} = $timesrvrend{$testnum};
|
|
|
|
}
|
|
|
|
elsif($timesrvrini{$testnum}) {
|
2009-12-18 23:15:22 -05:00
|
|
|
$timevrfyend{$testnum} = $timesrvrini{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
$timesrvrlog{$testnum} = $timesrvrini{$testnum};
|
|
|
|
$timetoolend{$testnum} = $timesrvrini{$testnum};
|
|
|
|
$timetoolini{$testnum} = $timesrvrini{$testnum};
|
|
|
|
$timesrvrend{$testnum} = $timesrvrini{$testnum};
|
|
|
|
}
|
|
|
|
elsif($timeprepini{$testnum}) {
|
2009-12-18 23:15:22 -05:00
|
|
|
$timevrfyend{$testnum} = $timeprepini{$testnum};
|
2009-12-18 14:17:14 -05:00
|
|
|
$timesrvrlog{$testnum} = $timeprepini{$testnum};
|
|
|
|
$timetoolend{$testnum} = $timeprepini{$testnum};
|
|
|
|
$timetoolini{$testnum} = $timeprepini{$testnum};
|
|
|
|
$timesrvrend{$testnum} = $timeprepini{$testnum};
|
|
|
|
$timesrvrini{$testnum} = $timeprepini{$testnum};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-11-14 05:18:44 -05:00
|
|
|
|
2009-12-18 14:17:14 -05:00
|
|
|
#######################################################################
|
|
|
|
# Run a single specified test case
|
|
|
|
#
|
2000-11-13 11:06:16 -05:00
|
|
|
sub singletest {
|
2013-08-10 16:55:59 -04:00
|
|
|
my ($evbased, # 1 means switch on if possible (and "curl" is tested)
|
|
|
|
# returns "not a test" if it can't be used for this test
|
|
|
|
$testnum,
|
|
|
|
$count,
|
|
|
|
$total)=@_;
|
2001-05-23 11:02:58 -04:00
|
|
|
|
2003-06-26 07:44:01 -04:00
|
|
|
my @what;
|
|
|
|
my $why;
|
2005-01-30 07:56:36 -05:00
|
|
|
my %feature;
|
2005-05-06 19:21:34 -04:00
|
|
|
my $cmd;
|
2010-11-03 06:22:46 -04:00
|
|
|
my $disablevalgrind;
|
2003-06-26 07:44:01 -04:00
|
|
|
|
2009-05-15 07:14:03 -04:00
|
|
|
# copy test number to a global scope var, this allows
|
|
|
|
# testnum checking when starting test harness servers.
|
|
|
|
$testnumcheck = $testnum;
|
2009-05-12 15:18:54 -04:00
|
|
|
|
2009-12-18 14:17:14 -05:00
|
|
|
# timestamp test preparation start
|
|
|
|
$timeprepini{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2010-01-11 22:01:00 -05:00
|
|
|
if($disttests !~ /test$testnum\W/ ) {
|
2014-11-27 17:59:16 -05:00
|
|
|
logmsg "Warning: test$testnum not present in tests/data/Makefile.inc\n";
|
2010-01-11 10:50:30 -05:00
|
|
|
}
|
2011-06-23 17:10:00 -04:00
|
|
|
if($disabled{$testnum}) {
|
|
|
|
logmsg "Warning: test$testnum is explicitly disabled\n";
|
|
|
|
}
|
2010-01-11 10:50:30 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# load the test case file definition
|
|
|
|
if(loadtest("${TESTDIR}/test${testnum}")) {
|
|
|
|
if($verbose) {
|
|
|
|
# this is not a test
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg "RUN: $testnum doesn't look like a test case\n";
|
2001-05-23 11:02:58 -04:00
|
|
|
}
|
2004-12-16 09:18:11 -05:00
|
|
|
$why = "no test";
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
@what = getpart("client", "features");
|
2001-05-23 11:02:58 -04:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2013-12-28 06:11:18 -05:00
|
|
|
# We require a feature to be present
|
2003-06-12 12:38:14 -04:00
|
|
|
for(@what) {
|
|
|
|
my $f = $_;
|
|
|
|
$f =~ s/\s//g;
|
|
|
|
|
2013-12-28 11:32:48 -05:00
|
|
|
if($f =~ /^([^!].*)$/) {
|
2013-12-28 06:31:43 -05:00
|
|
|
# Store the feature for later
|
|
|
|
$feature{$1} = $1;
|
2005-01-30 07:56:36 -05:00
|
|
|
|
2013-12-28 06:31:43 -05:00
|
|
|
if($1 eq "SSL") {
|
2015-11-12 08:50:13 -05:00
|
|
|
if($has_ssl) {
|
2013-12-28 06:31:43 -05:00
|
|
|
next;
|
|
|
|
}
|
2003-06-12 12:38:14 -04:00
|
|
|
}
|
2014-11-04 17:02:09 -05:00
|
|
|
elsif($1 eq "SSLpinning") {
|
|
|
|
if($has_sslpinning) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "OpenSSL") {
|
|
|
|
if($has_openssl) {
|
|
|
|
next;
|
|
|
|
}
|
2005-04-12 03:18:48 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "GnuTLS") {
|
|
|
|
if($has_gnutls) {
|
|
|
|
next;
|
|
|
|
}
|
2005-04-12 03:18:48 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "NSS") {
|
|
|
|
if($has_nss) {
|
|
|
|
next;
|
|
|
|
}
|
2007-02-12 17:32:37 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "axTLS") {
|
|
|
|
if($has_axtls) {
|
|
|
|
next;
|
|
|
|
}
|
2003-06-12 12:38:14 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "WinSSL") {
|
|
|
|
if($has_winssl) {
|
|
|
|
next;
|
|
|
|
}
|
2013-02-24 17:39:15 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "DarwinSSL") {
|
|
|
|
if($has_darwinssl) {
|
|
|
|
next;
|
|
|
|
}
|
2012-07-17 01:13:58 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "unittest") {
|
|
|
|
if($debug_build) {
|
|
|
|
next;
|
|
|
|
}
|
2011-01-03 16:42:46 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "debug") {
|
|
|
|
if($debug_build) {
|
|
|
|
next;
|
|
|
|
}
|
2011-07-19 17:49:40 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "TrackMemory") {
|
|
|
|
if($has_memory_tracking) {
|
|
|
|
next;
|
|
|
|
}
|
2013-03-15 14:58:00 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "large_file") {
|
2015-11-12 08:50:13 -05:00
|
|
|
if($has_largefile) {
|
2013-12-28 06:31:43 -05:00
|
|
|
next;
|
|
|
|
}
|
2004-03-01 11:24:54 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "idn") {
|
|
|
|
if($has_idn) {
|
|
|
|
next;
|
|
|
|
}
|
2004-04-30 04:03:07 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "ipv6") {
|
|
|
|
if($has_ipv6) {
|
|
|
|
next;
|
|
|
|
}
|
2004-11-25 17:21:49 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "libz") {
|
|
|
|
if($has_libz) {
|
|
|
|
next;
|
|
|
|
}
|
2004-11-29 07:23:02 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "NTLM") {
|
|
|
|
if($has_ntlm) {
|
|
|
|
next;
|
|
|
|
}
|
2005-03-21 03:14:32 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "NTLM_WB") {
|
|
|
|
if($has_ntlm_wb) {
|
|
|
|
next;
|
|
|
|
}
|
2011-07-18 17:39:52 -04:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "SSPI") {
|
|
|
|
if($has_sspi) {
|
|
|
|
next;
|
|
|
|
}
|
2013-11-12 07:34:56 -05:00
|
|
|
}
|
2014-11-22 07:12:42 -05:00
|
|
|
elsif($1 eq "GSS-API") {
|
|
|
|
if($has_gssapi) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 07:18:17 -05:00
|
|
|
elsif($1 eq "Kerberos") {
|
|
|
|
if($has_kerberos) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 07:24:13 -05:00
|
|
|
elsif($1 eq "SPNEGO") {
|
|
|
|
if($has_spnego) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "getrlimit") {
|
|
|
|
if($has_getrlimit) {
|
|
|
|
next;
|
|
|
|
}
|
2007-03-09 18:39:42 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "crypto") {
|
|
|
|
if($has_crypto) {
|
|
|
|
next;
|
|
|
|
}
|
2004-11-22 17:26:46 -05:00
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "TLS-SRP") {
|
|
|
|
if($has_tls_srp) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "Metalink") {
|
|
|
|
if($has_metalink) {
|
|
|
|
next;
|
2014-08-02 17:51:46 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-19 17:52:01 -04:00
|
|
|
elsif($1 eq "http/2") {
|
2014-08-02 17:51:46 -04:00
|
|
|
if($has_http2) {
|
|
|
|
next;
|
2013-12-28 06:31:43 -05:00
|
|
|
}
|
|
|
|
}
|
2017-07-06 05:11:07 -04:00
|
|
|
elsif($1 eq "threaded-resolver") {
|
|
|
|
if($has_threadedres) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2015-09-29 05:33:01 -04:00
|
|
|
elsif($1 eq "PSL") {
|
|
|
|
if($has_psl) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
elsif($1 eq "socks") {
|
2011-01-19 14:35:02 -05:00
|
|
|
next;
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($1 eq "unix-sockets") {
|
|
|
|
next if $has_unix;
|
|
|
|
}
|
2013-12-28 06:31:43 -05:00
|
|
|
# See if this "feature" is in the list of supported protocols
|
|
|
|
elsif (grep /^\Q$1\E$/i, @protocols) {
|
2012-06-20 14:15:42 -04:00
|
|
|
next;
|
|
|
|
}
|
2003-06-12 12:38:14 -04:00
|
|
|
|
2013-12-28 06:31:43 -05:00
|
|
|
$why = "curl lacks $1 support";
|
|
|
|
last;
|
|
|
|
}
|
2003-06-12 12:38:14 -04:00
|
|
|
}
|
|
|
|
|
2013-12-28 06:11:18 -05:00
|
|
|
# We require a feature to not be present
|
|
|
|
if(!$why) {
|
|
|
|
for(@what) {
|
|
|
|
my $f = $_;
|
|
|
|
$f =~ s/\s//g;
|
|
|
|
|
|
|
|
if($f =~ /^!(.*)$/) {
|
|
|
|
if($1 eq "SSL") {
|
2015-11-12 08:50:13 -05:00
|
|
|
if(!$has_ssl) {
|
2013-12-28 06:11:18 -05:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "OpenSSL") {
|
|
|
|
if(!$has_openssl) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "GnuTLS") {
|
|
|
|
if(!$has_gnutls) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "NSS") {
|
|
|
|
if(!$has_nss) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "axTLS") {
|
|
|
|
if(!$has_axtls) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "WinSSL") {
|
|
|
|
if(!$has_winssl) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "DarwinSSL") {
|
|
|
|
if(!$has_darwinssl) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "TrackMemory") {
|
|
|
|
if(!$has_memory_tracking) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "large_file") {
|
2015-11-12 08:50:13 -05:00
|
|
|
if(!$has_largefile) {
|
2013-12-28 06:11:18 -05:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "idn") {
|
|
|
|
if(!$has_idn) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "ipv6") {
|
|
|
|
if(!$has_ipv6) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($1 eq "unix-sockets") {
|
|
|
|
next if !$has_unix;
|
|
|
|
}
|
2013-12-28 06:11:18 -05:00
|
|
|
elsif($1 eq "libz") {
|
|
|
|
if(!$has_libz) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "NTLM") {
|
|
|
|
if(!$has_ntlm) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "NTLM_WB") {
|
|
|
|
if(!$has_ntlm_wb) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "SSPI") {
|
|
|
|
if(!$has_sspi) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 07:12:42 -05:00
|
|
|
elsif($1 eq "GSS-API") {
|
|
|
|
if(!$has_gssapi) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 07:18:17 -05:00
|
|
|
elsif($1 eq "Kerberos") {
|
|
|
|
if(!$has_kerberos) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 07:24:13 -05:00
|
|
|
elsif($1 eq "SPNEGO") {
|
|
|
|
if(!$has_spnego) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2013-12-28 06:11:18 -05:00
|
|
|
elsif($1 eq "getrlimit") {
|
|
|
|
if(!$has_getrlimit) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "crypto") {
|
|
|
|
if(!$has_crypto) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "TLS-SRP") {
|
|
|
|
if(!$has_tls_srp) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($1 eq "Metalink") {
|
|
|
|
if(!$has_metalink) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
2015-09-29 05:33:01 -04:00
|
|
|
elsif($1 eq "PSL") {
|
|
|
|
if(!$has_psl) {
|
|
|
|
next;
|
|
|
|
}
|
2017-07-06 05:11:07 -04:00
|
|
|
}
|
|
|
|
elsif($1 eq "threaded-resolver") {
|
|
|
|
if(!$has_threadedres) {
|
|
|
|
next;
|
|
|
|
}
|
2015-09-29 05:33:01 -04:00
|
|
|
}
|
2013-12-28 06:11:18 -05:00
|
|
|
else {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
$why = "curl has $1 support";
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 17:15:09 -04:00
|
|
|
if(!$why) {
|
|
|
|
my @keywords = getpart("info", "keywords");
|
2009-12-20 21:37:23 -05:00
|
|
|
my $match;
|
2007-10-11 17:15:09 -04:00
|
|
|
my $k;
|
2014-04-03 05:33:41 -04:00
|
|
|
|
|
|
|
if(!$keywords[0]) {
|
|
|
|
$why = "missing the <keywords> section!";
|
|
|
|
}
|
|
|
|
|
2007-10-11 17:15:09 -04:00
|
|
|
for $k (@keywords) {
|
|
|
|
chomp $k;
|
2017-08-14 17:05:11 -04:00
|
|
|
if ($disabled_keywords{lc($k)}) {
|
2009-12-20 21:37:23 -05:00
|
|
|
$why = "disabled by keyword";
|
2017-08-14 17:05:11 -04:00
|
|
|
} elsif ($enabled_keywords{lc($k)}) {
|
2009-12-20 21:37:23 -05:00
|
|
|
$match = 1;
|
2007-10-11 17:15:09 -04:00
|
|
|
}
|
|
|
|
}
|
2008-07-26 22:34:27 -04:00
|
|
|
|
2009-12-20 21:37:23 -05:00
|
|
|
if(!$why && !$match && %enabled_keywords) {
|
|
|
|
$why = "disabled by missing keyword";
|
|
|
|
}
|
2007-10-11 17:15:09 -04:00
|
|
|
}
|
|
|
|
|
2010-07-29 18:47:49 -04:00
|
|
|
# test definition may instruct to (un)set environment vars
|
|
|
|
# this is done this early, so that the precheck can use environment
|
|
|
|
# variables and still bail out fine on errors
|
2010-08-11 17:12:39 -04:00
|
|
|
|
|
|
|
# restore environment variables that were modified in a previous run
|
|
|
|
foreach my $var (keys %oldenv) {
|
|
|
|
if($oldenv{$var} eq 'notset') {
|
|
|
|
delete $ENV{$var} if($ENV{$var});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ENV{$var} = $oldenv{$var};
|
|
|
|
}
|
|
|
|
delete $oldenv{$var};
|
|
|
|
}
|
|
|
|
|
2011-10-30 11:45:14 -04:00
|
|
|
# remove test server commands file before servers are started/verified
|
|
|
|
unlink($FTPDCMD) if(-f $FTPDCMD);
|
|
|
|
|
2010-08-14 01:14:26 -04:00
|
|
|
# timestamp required servers verification start
|
|
|
|
$timesrvrini{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
|
|
|
if(!$why) {
|
|
|
|
$why = serverfortest($testnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
# timestamp required servers verification end
|
|
|
|
$timesrvrend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2010-07-29 18:47:49 -04:00
|
|
|
my @setenv = getpart("client", "setenv");
|
|
|
|
if(@setenv) {
|
|
|
|
foreach my $s (@setenv) {
|
|
|
|
chomp $s;
|
|
|
|
subVariables \$s;
|
|
|
|
if($s =~ /([^=]*)=(.*)/) {
|
|
|
|
my ($var, $content) = ($1, $2);
|
|
|
|
# remember current setting, to restore it once test runs
|
|
|
|
$oldenv{$var} = ($ENV{$var})?"$ENV{$var}":'notset';
|
|
|
|
# set new value
|
|
|
|
if(!$content) {
|
|
|
|
delete $ENV{$var} if($ENV{$var});
|
|
|
|
}
|
|
|
|
else {
|
2010-12-28 10:52:20 -05:00
|
|
|
if($var =~ /^LD_PRELOAD/) {
|
|
|
|
if(exe_ext() && (exe_ext() eq '.exe')) {
|
|
|
|
# print "Skipping LD_PRELOAD due to lack of OS support\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if($debug_build || ($has_shared ne "yes")) {
|
|
|
|
# print "Skipping LD_PRELOAD due to no release shared build\n";
|
|
|
|
next;
|
|
|
|
}
|
2010-07-29 18:47:49 -04:00
|
|
|
}
|
|
|
|
$ENV{$var} = "$content";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-12-16 09:18:11 -05:00
|
|
|
if(!$why) {
|
2004-11-23 04:50:16 -05:00
|
|
|
my @precheck = getpart("client", "precheck");
|
2010-01-17 09:31:13 -05:00
|
|
|
if(@precheck) {
|
|
|
|
$cmd = $precheck[0];
|
|
|
|
chomp $cmd;
|
|
|
|
subVariables \$cmd;
|
|
|
|
if($cmd) {
|
2010-07-29 18:47:49 -04:00
|
|
|
my @p = split(/ /, $cmd);
|
|
|
|
if($p[0] !~ /\//) {
|
|
|
|
# the first word, the command, does not contain a slash so
|
|
|
|
# we will scan the "improved" PATH to find the command to
|
|
|
|
# be able to run it
|
|
|
|
my $fullp = checktestcmd($p[0]);
|
|
|
|
|
|
|
|
if($fullp) {
|
|
|
|
$p[0] = $fullp;
|
|
|
|
}
|
|
|
|
$cmd = join(" ", @p);
|
|
|
|
}
|
|
|
|
|
2010-01-17 09:31:13 -05:00
|
|
|
my @o = `$cmd 2>/dev/null`;
|
|
|
|
if($o[0]) {
|
|
|
|
$why = $o[0];
|
|
|
|
chomp $why;
|
|
|
|
} elsif($?) {
|
|
|
|
$why = "precheck command error";
|
|
|
|
}
|
|
|
|
logmsg "prechecked $cmd\n" if($verbose);
|
2004-11-23 04:50:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 17:15:09 -04:00
|
|
|
if($why && !$listonly) {
|
2004-12-16 09:18:11 -05:00
|
|
|
# there's a problem, count it as "skipped"
|
2003-06-26 07:44:01 -04:00
|
|
|
$skipped++;
|
|
|
|
$skipped{$why}++;
|
|
|
|
$teststat[$testnum]=$why; # store reason for this test case
|
2004-05-17 06:53:34 -04:00
|
|
|
|
2003-06-26 07:44:01 -04:00
|
|
|
if(!$short) {
|
2012-11-12 07:50:00 -05:00
|
|
|
if($skipped{$why} <= 3) {
|
|
|
|
# show only the first three skips for each reason
|
2014-07-27 06:14:50 -04:00
|
|
|
logmsg sprintf("test %04d SKIPPED: $why\n", $testnum);
|
2012-11-12 07:50:00 -05:00
|
|
|
}
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
|
|
|
|
2009-12-18 14:17:14 -05:00
|
|
|
timestampskippedevents($testnum);
|
2003-01-27 08:51:35 -05:00
|
|
|
return -1;
|
|
|
|
}
|
2014-07-27 06:14:50 -04:00
|
|
|
logmsg sprintf("test %04d...", $testnum) if(!$automakestyle);
|
2003-01-27 08:51:35 -05:00
|
|
|
|
2014-01-26 05:31:52 -05:00
|
|
|
my %replyattr = getpartattr("reply", "data");
|
2017-05-06 03:04:00 -04:00
|
|
|
my @reply;
|
|
|
|
if (partexists("reply", "datacheck")) {
|
|
|
|
for my $partsuffix (('', '1', '2', '3', '4')) {
|
2015-12-26 04:59:22 -05:00
|
|
|
my @replycheckpart = getpart("reply", "datacheck".$partsuffix);
|
2017-05-06 03:04:00 -04:00
|
|
|
if(@replycheckpart) {
|
2015-12-26 04:59:22 -05:00
|
|
|
my %replycheckpartattr = getpartattr("reply", "datacheck".$partsuffix);
|
|
|
|
# get the mode attribute
|
|
|
|
my $filemode=$replycheckpartattr{'mode'};
|
|
|
|
if($filemode && ($filemode eq "text") && $has_textaware) {
|
|
|
|
# text mode when running on windows: fix line endings
|
|
|
|
map s/\r\n/\n/g, @replycheckpart;
|
|
|
|
map s/\n/\r\n/g, @replycheckpart;
|
|
|
|
}
|
|
|
|
if($replycheckpartattr{'nonewline'}) {
|
|
|
|
# Yes, we must cut off the final newline from the final line
|
|
|
|
# of the datacheck
|
|
|
|
chomp($replycheckpart[$#replycheckpart]);
|
|
|
|
}
|
2017-05-06 03:04:00 -04:00
|
|
|
push(@reply, @replycheckpart);
|
2015-12-26 04:59:22 -05:00
|
|
|
}
|
2014-01-26 05:31:52 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
2015-12-26 04:59:22 -05:00
|
|
|
else {
|
2017-05-06 03:04:00 -04:00
|
|
|
# check against the data section
|
|
|
|
@reply = getpart("reply", "data");
|
2015-12-26 04:59:22 -05:00
|
|
|
# get the mode attribute
|
|
|
|
my $filemode=$replyattr{'mode'};
|
|
|
|
if($filemode && ($filemode eq "text") && $has_textaware) {
|
|
|
|
# text mode when running on windows: fix line endings
|
|
|
|
map s/\r\n/\n/g, @reply;
|
|
|
|
map s/\n/\r\n/g, @reply;
|
|
|
|
}
|
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# this is the valid protocol blurb curl should generate
|
2004-09-08 04:08:38 -04:00
|
|
|
my @protocol= fixarray ( getpart("verify", "protocol") );
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
# this is the valid protocol blurb curl should generate to a proxy
|
|
|
|
my @proxyprot = fixarray ( getpart("verify", "proxy") );
|
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# redirected stdout/stderr to these files
|
|
|
|
$STDOUT="$LOGDIR/stdout$testnum";
|
|
|
|
$STDERR="$LOGDIR/stderr$testnum";
|
2000-11-21 14:28:11 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# if this section exists, we verify that the stdout contained this:
|
2004-09-08 04:08:38 -04:00
|
|
|
my @validstdout = fixarray ( getpart("verify", "stdout") );
|
2000-11-21 14:28:11 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# if this section exists, we verify upload
|
|
|
|
my @upload = getpart("verify", "upload");
|
2000-11-21 14:28:11 -05:00
|
|
|
|
2005-04-14 18:52:08 -04:00
|
|
|
# if this section exists, it might be FTP server instructions:
|
|
|
|
my @ftpservercmd = getpart("reply", "servercmd");
|
2000-11-27 07:53:50 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
my $CURLOUT="$LOGDIR/curl$testnum.out"; # curl output if not stdout
|
2000-11-21 14:28:11 -05:00
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
# name of the test
|
2001-05-23 11:02:58 -04:00
|
|
|
my @testname= getpart("client", "name");
|
2012-11-23 05:56:26 -05:00
|
|
|
my $testname = $testname[0];
|
|
|
|
$testname =~ s/\n//g;
|
|
|
|
logmsg "[$testname]\n" if(!$short);
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2002-01-04 08:20:17 -05:00
|
|
|
if($listonly) {
|
2009-12-18 14:17:14 -05:00
|
|
|
timestampskippedevents($testnum);
|
2002-01-04 08:20:17 -05:00
|
|
|
return 0; # look successful
|
|
|
|
}
|
|
|
|
|
2002-12-12 07:20:06 -05:00
|
|
|
my @codepieces = getpart("client", "tool");
|
|
|
|
|
|
|
|
my $tool="";
|
|
|
|
if(@codepieces) {
|
|
|
|
$tool = $codepieces[0];
|
|
|
|
chomp $tool;
|
|
|
|
}
|
|
|
|
|
2011-12-31 03:49:34 -05:00
|
|
|
# remove server output logfile
|
2002-01-04 08:20:17 -05:00
|
|
|
unlink($SERVERIN);
|
2011-12-17 17:47:22 -05:00
|
|
|
unlink($SERVER2IN);
|
|
|
|
unlink($PROXYIN);
|
2002-01-04 08:20:17 -05:00
|
|
|
|
|
|
|
if(@ftpservercmd) {
|
|
|
|
# write the instructions to file
|
|
|
|
writearray($FTPDCMD, \@ftpservercmd);
|
|
|
|
}
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
# get the command line options to use
|
2005-05-06 19:21:34 -04:00
|
|
|
my @blaha;
|
|
|
|
($cmd, @blaha)= getpart("client", "command");
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2010-11-03 06:22:46 -04:00
|
|
|
if($cmd) {
|
|
|
|
# make some nice replace operations
|
|
|
|
$cmd =~ s/\n//g; # no newlines please
|
|
|
|
# substitute variables in the command line
|
|
|
|
subVariables \$cmd;
|
|
|
|
}
|
2011-01-03 16:42:46 -05:00
|
|
|
else {
|
|
|
|
# there was no command given, use something silly
|
|
|
|
$cmd="-";
|
|
|
|
}
|
2013-03-15 14:58:00 -04:00
|
|
|
if($has_memory_tracking) {
|
2000-11-17 10:07:29 -05:00
|
|
|
unlink($memdump);
|
|
|
|
}
|
|
|
|
|
2008-03-05 20:11:43 -05:00
|
|
|
# create a (possibly-empty) file before starting the test
|
2001-05-28 11:26:15 -04:00
|
|
|
my @inputfile=getpart("client", "file");
|
2008-03-05 20:11:43 -05:00
|
|
|
my %fileattr = getpartattr("client", "file");
|
|
|
|
my $filename=$fileattr{'name'};
|
|
|
|
if(@inputfile || $filename) {
|
2001-05-28 11:26:15 -04:00
|
|
|
if(!$filename) {
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg "ERROR: section client=>file has no name attribute\n";
|
2009-12-18 14:17:14 -05:00
|
|
|
timestampskippedevents($testnum);
|
2005-05-16 03:07:00 -04:00
|
|
|
return -1;
|
2001-05-28 11:26:15 -04:00
|
|
|
}
|
2002-05-21 18:20:52 -04:00
|
|
|
my $fileContent = join('', @inputfile);
|
|
|
|
subVariables \$fileContent;
|
2005-05-25 08:26:20 -04:00
|
|
|
# logmsg "DEBUG: writing file " . $filename . "\n";
|
2007-06-08 13:03:50 -04:00
|
|
|
open(OUTFILE, ">$filename");
|
2007-06-07 18:42:26 -04:00
|
|
|
binmode OUTFILE; # for crapage systems, use binary
|
|
|
|
print OUTFILE $fileContent;
|
|
|
|
close(OUTFILE);
|
2001-05-28 11:26:15 -04:00
|
|
|
}
|
|
|
|
|
2002-01-08 04:32:41 -05:00
|
|
|
my %cmdhash = getpartattr("client", "command");
|
|
|
|
|
2000-11-17 10:07:29 -05:00
|
|
|
my $out="";
|
2002-01-08 04:32:41 -05:00
|
|
|
|
2010-01-17 09:31:13 -05:00
|
|
|
if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-output/)) {
|
2003-08-06 19:10:36 -04:00
|
|
|
#We may slap on --output!
|
2002-01-08 04:32:41 -05:00
|
|
|
if (!@validstdout) {
|
2002-12-12 11:46:45 -05:00
|
|
|
$out=" --output $CURLOUT ";
|
2002-01-08 04:32:41 -05:00
|
|
|
}
|
2000-11-17 10:07:29 -05:00
|
|
|
}
|
|
|
|
|
2008-04-25 00:19:50 -04:00
|
|
|
my $serverlogslocktimeout = $defserverlogslocktimeout;
|
|
|
|
if($cmdhash{'timeout'}) {
|
|
|
|
# test is allowed to override default server logs lock timeout
|
|
|
|
if($cmdhash{'timeout'} =~ /(\d+)/) {
|
|
|
|
$serverlogslocktimeout = $1 if($1 >= 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
my $postcommanddelay = $defpostcommanddelay;
|
|
|
|
if($cmdhash{'delay'}) {
|
|
|
|
# test is allowed to specify a delay after command is executed
|
|
|
|
if($cmdhash{'delay'} =~ /(\d+)/) {
|
|
|
|
$postcommanddelay = $1 if($1 > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 06:22:46 -04:00
|
|
|
my $CMDLINE;
|
2002-12-12 07:20:06 -05:00
|
|
|
my $cmdargs;
|
2010-11-03 06:22:46 -04:00
|
|
|
my $cmdtype = $cmdhash{'type'} || "default";
|
2013-08-10 16:55:59 -04:00
|
|
|
my $fail_due_event_based = $evbased;
|
2010-11-03 06:22:46 -04:00
|
|
|
if($cmdtype eq "perl") {
|
|
|
|
# run the command line prepended with "perl"
|
|
|
|
$cmdargs ="$cmd";
|
|
|
|
$CMDLINE = "perl ";
|
|
|
|
$tool=$CMDLINE;
|
|
|
|
$disablevalgrind=1;
|
|
|
|
}
|
2013-01-02 14:12:15 -05:00
|
|
|
elsif($cmdtype eq "shell") {
|
|
|
|
# run the command line prepended with "/bin/sh"
|
|
|
|
$cmdargs ="$cmd";
|
|
|
|
$CMDLINE = "/bin/sh ";
|
|
|
|
$tool=$CMDLINE;
|
|
|
|
$disablevalgrind=1;
|
|
|
|
}
|
2010-11-03 06:22:46 -04:00
|
|
|
elsif(!$tool) {
|
2013-08-10 16:55:59 -04:00
|
|
|
# run curl, add suitable command line options
|
2011-09-09 19:23:21 -04:00
|
|
|
$cmd = "-1 ".$cmd if(exists $feature{"SSL"} && ($has_axtls));
|
2011-08-04 11:36:00 -04:00
|
|
|
|
|
|
|
my $inc="";
|
|
|
|
if((!$cmdhash{'option'}) || ($cmdhash{'option'} !~ /no-include/)) {
|
2013-08-10 16:55:59 -04:00
|
|
|
$inc = " --include";
|
2011-08-04 11:36:00 -04:00
|
|
|
}
|
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
$cmdargs = "$out$inc ";
|
|
|
|
$cmdargs .= "--trace-ascii log/trace$testnum ";
|
|
|
|
$cmdargs .= "--trace-time ";
|
|
|
|
if($evbased) {
|
|
|
|
$cmdargs .= "--test-event ";
|
|
|
|
$fail_due_event_based--;
|
|
|
|
}
|
|
|
|
$cmdargs .= $cmd;
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$cmdargs = " $cmd"; # $cmd is the command line for the test file
|
|
|
|
$CURLOUT = $STDOUT; # sends received data to stdout
|
2010-11-03 06:22:46 -04:00
|
|
|
|
2011-01-01 11:33:42 -05:00
|
|
|
if($tool =~ /^lib/) {
|
|
|
|
$CMDLINE="$LIBDIR/$tool";
|
|
|
|
}
|
|
|
|
elsif($tool =~ /^unit/) {
|
|
|
|
$CMDLINE="$UNITDIR/$tool";
|
|
|
|
}
|
|
|
|
|
2010-11-03 06:22:46 -04:00
|
|
|
if(! -f $CMDLINE) {
|
2011-12-31 03:49:34 -05:00
|
|
|
logmsg "The tool set in the test case for this: '$tool' does not exist\n";
|
2010-11-03 06:22:46 -04:00
|
|
|
timestampskippedevents($testnum);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
$DBGCURL=$CMDLINE;
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
2000-11-17 10:07:29 -05:00
|
|
|
|
2014-02-07 16:15:02 -05:00
|
|
|
if($gdbthis) {
|
|
|
|
# gdb is incompatible with valgrind, so disable it when debugging
|
|
|
|
# Perhaps a better approach would be to run it under valgrind anyway
|
|
|
|
# with --db-attach=yes or --vgdb=yes.
|
|
|
|
$disablevalgrind=1;
|
|
|
|
}
|
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
if($fail_due_event_based) {
|
|
|
|
logmsg "This test cannot run event based\n";
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-06-14 08:16:07 -04:00
|
|
|
my @stdintest = getpart("client", "stdin");
|
2001-05-23 11:02:58 -04:00
|
|
|
|
|
|
|
if(@stdintest) {
|
|
|
|
my $stdinfile="$LOGDIR/stdin-for-$testnum";
|
2013-05-07 16:51:59 -04:00
|
|
|
|
|
|
|
my %hash = getpartattr("client", "stdin");
|
|
|
|
if($hash{'nonewline'}) {
|
|
|
|
# cut off the final newline from the final line of the stdin data
|
|
|
|
chomp($stdintest[$#stdintest]);
|
|
|
|
}
|
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
writearray($stdinfile, \@stdintest);
|
|
|
|
|
|
|
|
$cmdargs .= " <$stdinfile";
|
2000-11-17 10:07:29 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2002-12-12 07:20:06 -05:00
|
|
|
if(!$tool) {
|
|
|
|
$CMDLINE="$CURL";
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
|
2010-01-18 09:49:31 -05:00
|
|
|
my $usevalgrind;
|
2010-11-03 06:22:46 -04:00
|
|
|
if($valgrind && !$disablevalgrind) {
|
2010-01-18 09:49:31 -05:00
|
|
|
my @valgrindoption = getpart("verify", "valgrind");
|
|
|
|
if((!@valgrindoption) || ($valgrindoption[0] !~ /disable/)) {
|
|
|
|
$usevalgrind = 1;
|
|
|
|
my $valgrindcmd = "$valgrind ";
|
|
|
|
$valgrindcmd .= "$valgrind_tool " if($valgrind_tool);
|
2016-12-21 09:10:14 -05:00
|
|
|
$valgrindcmd .= "--quiet --leak-check=yes ";
|
2013-01-18 05:20:41 -05:00
|
|
|
$valgrindcmd .= "--suppressions=$srcdir/valgrind.supp ";
|
2014-02-05 17:48:44 -05:00
|
|
|
# $valgrindcmd .= "--gen-suppressions=all ";
|
2010-01-18 09:49:31 -05:00
|
|
|
$valgrindcmd .= "--num-callers=16 ";
|
|
|
|
$valgrindcmd .= "${valgrind_logfile}=$LOGDIR/valgrind$testnum";
|
|
|
|
$CMDLINE = "$valgrindcmd $CMDLINE";
|
|
|
|
}
|
2004-04-22 06:33:55 -04:00
|
|
|
}
|
|
|
|
|
2010-08-16 15:09:18 -04:00
|
|
|
$CMDLINE .= "$cmdargs >$STDOUT 2>$STDERR";
|
2002-12-12 07:20:06 -05:00
|
|
|
|
|
|
|
if($verbose) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "$CMDLINE\n";
|
2004-04-13 01:57:50 -04:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2007-06-07 18:42:26 -04:00
|
|
|
print CMDLOG "$CMDLINE\n";
|
2000-11-21 12:07:16 -05:00
|
|
|
|
2004-04-30 04:03:07 -04:00
|
|
|
unlink("core");
|
|
|
|
|
|
|
|
my $dumped_core;
|
2003-12-17 10:33:04 -05:00
|
|
|
my $cmdres;
|
2004-05-10 05:01:45 -04:00
|
|
|
|
2001-02-20 08:58:39 -05:00
|
|
|
if($gdbthis) {
|
2008-11-19 16:56:11 -05:00
|
|
|
my $gdbinit = "$TESTDIR/gdbinit$testnum";
|
2008-06-18 21:12:02 -04:00
|
|
|
open(GDBCMD, ">$LOGDIR/gdbcmd");
|
2007-06-07 18:42:26 -04:00
|
|
|
print GDBCMD "set args $cmdargs\n";
|
|
|
|
print GDBCMD "show args\n";
|
2008-11-19 16:56:11 -05:00
|
|
|
print GDBCMD "source $gdbinit\n" if -e $gdbinit;
|
2007-06-07 18:42:26 -04:00
|
|
|
close(GDBCMD);
|
2004-05-10 05:01:45 -04:00
|
|
|
}
|
2009-12-18 10:23:18 -05:00
|
|
|
|
|
|
|
# timestamp starting of test command
|
|
|
|
$timetoolini{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2004-05-10 05:01:45 -04:00
|
|
|
# run the command line we built
|
|
|
|
if ($torture) {
|
2007-04-23 18:58:45 -04:00
|
|
|
$cmdres = torture($CMDLINE,
|
2008-06-18 21:12:02 -04:00
|
|
|
"$gdb --directory libtest $DBGCURL -x $LOGDIR/gdbcmd");
|
2004-05-10 05:01:45 -04:00
|
|
|
}
|
|
|
|
elsif($gdbthis) {
|
2011-08-21 13:25:35 -04:00
|
|
|
my $GDBW = ($gdbxwin) ? "-w" : "";
|
|
|
|
runclient("$gdb --directory libtest $DBGCURL $GDBW -x $LOGDIR/gdbcmd");
|
2003-12-17 10:33:04 -05:00
|
|
|
$cmdres=0; # makes it always continue after a debugged run
|
2001-02-20 08:58:39 -05:00
|
|
|
}
|
|
|
|
else {
|
2007-09-20 16:39:17 -04:00
|
|
|
$cmdres = runclient("$CMDLINE");
|
2003-12-17 10:33:04 -05:00
|
|
|
my $signal_num = $cmdres & 127;
|
2004-04-30 04:03:07 -04:00
|
|
|
$dumped_core = $cmdres & 128;
|
2003-10-29 11:27:43 -05:00
|
|
|
|
|
|
|
if(!$anyway && ($signal_num || $dumped_core)) {
|
2003-12-17 10:33:04 -05:00
|
|
|
$cmdres = 1000;
|
2003-10-29 11:27:43 -05:00
|
|
|
}
|
|
|
|
else {
|
2008-09-26 10:08:33 -04:00
|
|
|
$cmdres >>= 8;
|
2008-09-26 14:56:56 -04:00
|
|
|
$cmdres = (2000 + $signal_num) if($signal_num && !$cmdres);
|
2003-10-29 11:27:43 -05:00
|
|
|
}
|
2001-02-20 08:58:39 -05:00
|
|
|
}
|
2009-12-18 10:23:18 -05:00
|
|
|
|
|
|
|
# timestamp finishing of test command
|
|
|
|
$timetoolend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2004-04-30 04:03:07 -04:00
|
|
|
if(!$dumped_core) {
|
|
|
|
if(-r "core") {
|
|
|
|
# there's core file present now!
|
|
|
|
$dumped_core = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($dumped_core) {
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg "core dumped\n";
|
2004-05-05 16:12:59 -04:00
|
|
|
if(0 && $gdb) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "running gdb for post-mortem analysis:\n";
|
2008-06-18 21:12:02 -04:00
|
|
|
open(GDBCMD, ">$LOGDIR/gdbcmd2");
|
2007-06-07 18:42:26 -04:00
|
|
|
print GDBCMD "bt\n";
|
|
|
|
close(GDBCMD);
|
2008-06-18 21:12:02 -04:00
|
|
|
runclient("$gdb --directory libtest -x $LOGDIR/gdbcmd2 -batch $DBGCURL core ");
|
|
|
|
# unlink("$LOGDIR/gdbcmd2");
|
2004-04-30 04:03:07 -04:00
|
|
|
}
|
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2008-04-23 19:55:34 -04:00
|
|
|
# If a server logs advisor read lock file exists, it is an indication
|
|
|
|
# that the server has not yet finished writing out all its log files,
|
|
|
|
# including server request log files used for protocol verification.
|
|
|
|
# So, if the lock file exists the script waits here a certain amount
|
|
|
|
# of time until the server removes it, or the given time expires.
|
|
|
|
|
2008-04-25 00:19:50 -04:00
|
|
|
if($serverlogslocktimeout) {
|
2009-12-19 08:20:07 -05:00
|
|
|
my $lockretry = $serverlogslocktimeout * 20;
|
2008-04-25 00:19:50 -04:00
|
|
|
while((-f $SERVERLOGS_LOCK) && $lockretry--) {
|
2009-12-19 08:20:07 -05:00
|
|
|
select(undef, undef, undef, 0.05);
|
2008-04-25 00:19:50 -04:00
|
|
|
}
|
|
|
|
if(($lockretry < 0) &&
|
|
|
|
($serverlogslocktimeout >= $defserverlogslocktimeout)) {
|
|
|
|
logmsg "Warning: server logs lock timeout ",
|
|
|
|
"($serverlogslocktimeout seconds) expired\n";
|
2008-04-23 19:55:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-25 00:19:50 -04:00
|
|
|
# Test harness ssh server does not have this synchronization mechanism,
|
|
|
|
# this implies that some ssh server based tests might need a small delay
|
|
|
|
# once that the client command has run to avoid false test failures.
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
|
|
|
# gnutls-serv also lacks this synchronization mechanism, so gnutls-serv
|
|
|
|
# based tests might need a small delay once that the client command has
|
|
|
|
# run to avoid false test failures.
|
2008-04-25 00:19:50 -04:00
|
|
|
|
|
|
|
sleep($postcommanddelay) if($postcommanddelay);
|
|
|
|
|
2009-12-18 10:23:18 -05:00
|
|
|
# timestamp removal of server logs advisor read lock
|
|
|
|
$timesrvrlog{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2009-12-21 09:53:07 -05:00
|
|
|
# test definition might instruct to stop some servers
|
2010-01-16 21:45:24 -05:00
|
|
|
# stop also all servers relative to the given one
|
|
|
|
|
|
|
|
my @killtestservers = getpart("client", "killserver");
|
|
|
|
if(@killtestservers) {
|
2010-01-14 12:36:57 -05:00
|
|
|
#
|
2010-01-16 21:45:24 -05:00
|
|
|
# All servers relative to the given one must be stopped also
|
2010-01-14 12:36:57 -05:00
|
|
|
#
|
2010-01-16 21:45:24 -05:00
|
|
|
my @killservers;
|
|
|
|
foreach my $server (@killtestservers) {
|
2010-01-14 12:36:57 -05:00
|
|
|
chomp $server;
|
2014-11-27 17:59:23 -05:00
|
|
|
if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# given a stunnel ssl server, also kill non-ssl underlying one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "${1}${2}";
|
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|-unix|))$/) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# given a non-ssl server, also kill stunnel piggybacking one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "${1}s${2}";
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) {
|
|
|
|
# given a socks server, also kill ssh underlying one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "ssh${2}";
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) {
|
|
|
|
# given a ssh server, also kill socks piggybacking one
|
2010-01-16 21:45:24 -05:00
|
|
|
push @killservers, "socks${2}";
|
|
|
|
}
|
|
|
|
push @killservers, $server;
|
|
|
|
}
|
|
|
|
#
|
|
|
|
# kill sockfilter processes for pingpong relative servers
|
|
|
|
#
|
|
|
|
foreach my $server (@killservers) {
|
2010-01-14 12:36:57 -05:00
|
|
|
if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
|
|
|
|
my $proto = $1;
|
|
|
|
my $idnum = ($2 && ($2 > 1)) ? $2 : 1;
|
|
|
|
my $ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4;
|
|
|
|
killsockfilters($proto, $ipvnum, $idnum, $verbose);
|
2010-01-12 17:22:55 -05:00
|
|
|
}
|
2010-01-14 12:36:57 -05:00
|
|
|
}
|
|
|
|
#
|
2010-01-16 21:45:24 -05:00
|
|
|
# kill server relative pids clearing them in %run hash
|
2010-01-14 12:36:57 -05:00
|
|
|
#
|
|
|
|
my $pidlist;
|
|
|
|
foreach my $server (@killservers) {
|
2010-01-17 09:31:13 -05:00
|
|
|
if($run{$server}) {
|
|
|
|
$pidlist .= "$run{$server} ";
|
|
|
|
$run{$server} = 0;
|
|
|
|
}
|
2010-01-18 21:01:01 -05:00
|
|
|
$runcert{$server} = 0 if($runcert{$server});
|
2010-01-12 17:22:55 -05:00
|
|
|
}
|
2010-01-14 12:36:57 -05:00
|
|
|
killpid($verbose, $pidlist);
|
|
|
|
#
|
|
|
|
# cleanup server pid files
|
|
|
|
#
|
|
|
|
foreach my $server (@killservers) {
|
|
|
|
my $pidfile = $serverpidfile{$server};
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
logmsg "Warning: $server server unexpectedly alive\n";
|
|
|
|
killpid($verbose, $pid);
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
2009-12-23 10:20:20 -05:00
|
|
|
}
|
2009-12-21 09:53:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# remove the test server commands file after each test
|
2011-10-30 11:45:14 -04:00
|
|
|
unlink($FTPDCMD) if(-f $FTPDCMD);
|
2009-12-21 09:53:07 -05:00
|
|
|
|
2007-04-23 18:58:45 -04:00
|
|
|
# run the postcheck command
|
|
|
|
my @postcheck= getpart("client", "postcheck");
|
2010-01-17 09:31:13 -05:00
|
|
|
if(@postcheck) {
|
2017-04-29 04:00:15 -04:00
|
|
|
$cmd = join("", @postcheck);
|
2010-01-17 09:31:13 -05:00
|
|
|
chomp $cmd;
|
|
|
|
subVariables \$cmd;
|
|
|
|
if($cmd) {
|
|
|
|
logmsg "postcheck $cmd\n" if($verbose);
|
|
|
|
my $rc = runclient("$cmd");
|
|
|
|
# Must run the postcheck command in torture mode in order
|
|
|
|
# to clean up, but the result can't be relied upon.
|
|
|
|
if($rc != 0 && !$torture) {
|
|
|
|
logmsg " postcheck FAILED\n";
|
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
return 1;
|
|
|
|
}
|
2009-12-20 21:37:23 -05:00
|
|
|
}
|
2007-04-23 18:58:45 -04:00
|
|
|
}
|
|
|
|
|
2010-01-20 13:31:52 -05:00
|
|
|
# restore environment variables that were modified
|
|
|
|
if(%oldenv) {
|
|
|
|
foreach my $var (keys %oldenv) {
|
|
|
|
if($oldenv{$var} eq 'notset') {
|
2010-01-20 15:08:50 -05:00
|
|
|
delete $ENV{$var} if($ENV{$var});
|
2010-01-20 13:31:52 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ENV{$var} = "$oldenv{$var}";
|
|
|
|
}
|
|
|
|
}
|
2003-05-19 09:06:10 -04:00
|
|
|
}
|
|
|
|
|
2007-04-24 19:28:57 -04:00
|
|
|
# Skip all the verification on torture tests
|
2007-04-23 18:58:45 -04:00
|
|
|
if ($torture) {
|
2009-12-20 21:37:23 -05:00
|
|
|
if(!$cmdres && !$keepoutfiles) {
|
|
|
|
cleardir($LOGDIR);
|
|
|
|
}
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
2007-04-23 18:58:45 -04:00
|
|
|
return $cmdres;
|
|
|
|
}
|
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
my @err = getpart("verify", "errorcode");
|
2005-03-17 03:17:48 -05:00
|
|
|
my $errorcode = $err[0] || "0";
|
2005-04-22 07:51:06 -04:00
|
|
|
my $ok="";
|
2003-12-17 10:33:04 -05:00
|
|
|
my $res;
|
2011-10-21 10:34:37 -04:00
|
|
|
chomp $errorcode;
|
2001-05-23 11:02:58 -04:00
|
|
|
if (@validstdout) {
|
|
|
|
# verify redirected stdout
|
|
|
|
my @actual = loadarray($STDOUT);
|
2000-11-17 10:58:25 -05:00
|
|
|
|
2016-06-03 17:54:06 -04:00
|
|
|
# what parts to cut off from stdout
|
|
|
|
my @stripfile = getpart("verify", "stripfile");
|
|
|
|
|
|
|
|
foreach my $strip (@stripfile) {
|
|
|
|
chomp $strip;
|
|
|
|
my @newgen;
|
|
|
|
for(@actual) {
|
|
|
|
eval $strip;
|
|
|
|
if($_) {
|
|
|
|
push @newgen, $_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# this is to get rid of array entries that vanished (zero
|
|
|
|
# length) because of replacements
|
|
|
|
@actual = @newgen;
|
|
|
|
}
|
|
|
|
|
2008-05-01 06:51:16 -04:00
|
|
|
# variable-replace in the stdout we have from the test case file
|
|
|
|
@validstdout = fixarray(@validstdout);
|
|
|
|
|
2005-05-20 06:40:32 -04:00
|
|
|
# get all attributes
|
|
|
|
my %hash = getpartattr("verify", "stdout");
|
|
|
|
|
|
|
|
# get the mode attribute
|
|
|
|
my $filemode=$hash{'mode'};
|
2010-01-17 09:31:13 -05:00
|
|
|
if($filemode && ($filemode eq "text") && $has_textaware) {
|
2005-05-20 06:40:32 -04:00
|
|
|
# text mode when running on windows: fix line endings
|
2014-01-26 05:23:11 -05:00
|
|
|
map s/\r\n/\n/g, @validstdout;
|
|
|
|
map s/\n/\r\n/g, @validstdout;
|
2005-05-20 06:40:32 -04:00
|
|
|
}
|
|
|
|
|
2008-01-04 18:31:04 -05:00
|
|
|
if($hash{'nonewline'}) {
|
|
|
|
# Yes, we must cut off the final newline from the final line
|
|
|
|
# of the protocol data
|
|
|
|
chomp($validstdout[$#validstdout]);
|
|
|
|
}
|
|
|
|
|
2012-11-23 05:56:26 -05:00
|
|
|
$res = compare($testnum, $testname, "stdout", \@actual, \@validstdout);
|
2001-05-23 11:02:58 -04:00
|
|
|
if($res) {
|
2000-11-17 10:58:25 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
$ok .= "s";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ok .= "-"; # stdout not checked
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
2001-05-23 11:02:58 -04:00
|
|
|
|
|
|
|
if(@protocol) {
|
2008-04-25 00:19:50 -04:00
|
|
|
# Verify the sent request
|
|
|
|
my @out = loadarray($SERVERIN);
|
2000-11-21 14:28:11 -05:00
|
|
|
|
2001-05-23 11:02:58 -04:00
|
|
|
# what to cut off from the live protocol sent by curl
|
|
|
|
my @strip = getpart("verify", "strip");
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2001-06-27 18:01:08 -04:00
|
|
|
my @protstrip=@protocol;
|
|
|
|
|
2002-02-22 05:50:36 -05:00
|
|
|
# check if there's any attributes on the verify/protocol section
|
|
|
|
my %hash = getpartattr("verify", "protocol");
|
|
|
|
|
|
|
|
if($hash{'nonewline'}) {
|
|
|
|
# Yes, we must cut off the final newline from the final line
|
|
|
|
# of the protocol data
|
|
|
|
chomp($protstrip[$#protstrip]);
|
|
|
|
}
|
|
|
|
|
2001-06-27 18:01:08 -04:00
|
|
|
for(@strip) {
|
2004-04-30 04:03:07 -04:00
|
|
|
# strip off all lines that match the patterns from both arrays
|
2004-04-29 09:31:57 -04:00
|
|
|
chomp $_;
|
2001-06-27 18:01:08 -04:00
|
|
|
@out = striparray( $_, \@out);
|
|
|
|
@protstrip= striparray( $_, \@protstrip);
|
|
|
|
}
|
2001-05-28 11:26:15 -04:00
|
|
|
|
2004-11-25 17:21:49 -05:00
|
|
|
# what parts to cut off from the protocol
|
|
|
|
my @strippart = getpart("verify", "strippart");
|
|
|
|
my $strip;
|
|
|
|
for $strip (@strippart) {
|
|
|
|
chomp $strip;
|
|
|
|
for(@out) {
|
|
|
|
eval $strip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-23 05:56:26 -05:00
|
|
|
$res = compare($testnum, $testname, "protocol", \@out, \@protstrip);
|
2001-05-23 11:02:58 -04:00
|
|
|
if($res) {
|
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
|
|
|
|
$ok .= "p";
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ok .= "-"; # protocol not checked
|
2000-11-17 10:58:25 -05:00
|
|
|
}
|
2000-11-27 07:53:50 -05:00
|
|
|
|
2014-03-30 17:15:15 -04:00
|
|
|
if(!$replyattr{'nocheck'} && (@reply || $replyattr{'sendzero'})) {
|
|
|
|
# verify the received data
|
|
|
|
my @out = loadarray($CURLOUT);
|
|
|
|
$res = compare($testnum, $testname, "data", \@out, \@reply);
|
|
|
|
if ($res) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
$ok .= "d";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ok .= "-"; # data not checked
|
|
|
|
}
|
|
|
|
|
|
|
|
if(@upload) {
|
|
|
|
# verify uploaded data
|
|
|
|
my @out = loadarray("$LOGDIR/upload.$testnum");
|
|
|
|
$res = compare($testnum, $testname, "upload", \@out, \@upload);
|
|
|
|
if ($res) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
$ok .= "u";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ok .= "-"; # upload not checked
|
|
|
|
}
|
|
|
|
|
2011-12-17 17:47:22 -05:00
|
|
|
if(@proxyprot) {
|
|
|
|
# Verify the sent proxy request
|
|
|
|
my @out = loadarray($PROXYIN);
|
|
|
|
|
|
|
|
# what to cut off from the live protocol sent by curl, we use the
|
|
|
|
# same rules as for <protocol>
|
|
|
|
my @strip = getpart("verify", "strip");
|
|
|
|
|
|
|
|
my @protstrip=@proxyprot;
|
|
|
|
|
|
|
|
# check if there's any attributes on the verify/protocol section
|
|
|
|
my %hash = getpartattr("verify", "proxy");
|
|
|
|
|
|
|
|
if($hash{'nonewline'}) {
|
|
|
|
# Yes, we must cut off the final newline from the final line
|
|
|
|
# of the protocol data
|
|
|
|
chomp($protstrip[$#protstrip]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(@strip) {
|
|
|
|
# strip off all lines that match the patterns from both arrays
|
|
|
|
chomp $_;
|
|
|
|
@out = striparray( $_, \@out);
|
|
|
|
@protstrip= striparray( $_, \@protstrip);
|
|
|
|
}
|
|
|
|
|
|
|
|
# what parts to cut off from the protocol
|
|
|
|
my @strippart = getpart("verify", "strippart");
|
|
|
|
my $strip;
|
|
|
|
for $strip (@strippart) {
|
|
|
|
chomp $strip;
|
|
|
|
for(@out) {
|
|
|
|
eval $strip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-23 05:56:26 -05:00
|
|
|
$res = compare($testnum, $testname, "proxy", \@out, \@protstrip);
|
2011-12-17 17:47:22 -05:00
|
|
|
if($res) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ok .= "P";
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$ok .= "-"; # protocol not checked
|
|
|
|
}
|
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
my $outputok;
|
|
|
|
for my $partsuffix (('', '1', '2', '3', '4')) {
|
|
|
|
my @outfile=getpart("verify", "file".$partsuffix);
|
2012-06-05 14:01:23 -04:00
|
|
|
if(@outfile || partexists("verify", "file".$partsuffix) ) {
|
2012-05-31 23:37:00 -04:00
|
|
|
# we're supposed to verify a dynamically generated file!
|
|
|
|
my %hash = getpartattr("verify", "file".$partsuffix);
|
|
|
|
|
|
|
|
my $filename=$hash{'name'};
|
|
|
|
if(!$filename) {
|
|
|
|
logmsg "ERROR: section verify=>file$partsuffix ".
|
|
|
|
"has no name attribute\n";
|
|
|
|
stopservers($verbose);
|
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
my @generated=loadarray($filename);
|
2001-05-28 11:26:15 -04:00
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
# what parts to cut off from the file
|
|
|
|
my @stripfile = getpart("verify", "stripfile".$partsuffix);
|
2006-09-06 06:03:34 -04:00
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
my $filemode=$hash{'mode'};
|
|
|
|
if($filemode && ($filemode eq "text") && $has_textaware) {
|
2014-01-26 05:23:11 -05:00
|
|
|
# text mode when running on windows: fix line endings
|
|
|
|
map s/\r\n/\n/g, @outfile;
|
|
|
|
map s/\n/\r\n/g, @outfile;
|
2012-05-31 23:37:00 -04:00
|
|
|
}
|
2005-04-28 02:50:42 -04:00
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
my $strip;
|
|
|
|
for $strip (@stripfile) {
|
|
|
|
chomp $strip;
|
2014-02-08 17:19:10 -05:00
|
|
|
my @newgen;
|
2012-05-31 23:37:00 -04:00
|
|
|
for(@generated) {
|
|
|
|
eval $strip;
|
2014-02-08 17:19:10 -05:00
|
|
|
if($_) {
|
|
|
|
push @newgen, $_;
|
|
|
|
}
|
2012-05-31 23:37:00 -04:00
|
|
|
}
|
2014-02-08 17:19:10 -05:00
|
|
|
# this is to get rid of array entries that vanished (zero
|
|
|
|
# length) because of replacements
|
|
|
|
@generated = @newgen;
|
2005-01-20 17:48:43 -05:00
|
|
|
}
|
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
@outfile = fixarray(@outfile);
|
2007-09-20 16:39:17 -04:00
|
|
|
|
2012-11-23 05:56:26 -05:00
|
|
|
$res = compare($testnum, $testname, "output ($filename)",
|
|
|
|
\@generated, \@outfile);
|
2012-05-31 23:37:00 -04:00
|
|
|
if($res) {
|
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
|
2012-05-31 23:37:00 -04:00
|
|
|
$outputok = 1; # output checked
|
|
|
|
}
|
2001-05-28 11:26:15 -04:00
|
|
|
}
|
2012-05-31 23:37:00 -04:00
|
|
|
$ok .= ($outputok) ? "o" : "-"; # output checked or not
|
2001-05-28 11:26:15 -04:00
|
|
|
|
2005-03-17 03:17:48 -05:00
|
|
|
# accept multiple comma-separated error codes
|
|
|
|
my @splerr = split(/ *, */, $errorcode);
|
|
|
|
my $errok;
|
2010-01-20 13:31:52 -05:00
|
|
|
foreach my $e (@splerr) {
|
2005-03-17 03:17:48 -05:00
|
|
|
if($e == $cmdres) {
|
|
|
|
# a fine error code
|
|
|
|
$errok = 1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($errok) {
|
2005-04-22 07:51:06 -04:00
|
|
|
$ok .= "e";
|
2004-04-30 06:37:40 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(!$short) {
|
2011-12-31 03:49:34 -05:00
|
|
|
logmsg sprintf("\n%s returned $cmdres, when expecting %s\n",
|
|
|
|
(!$tool)?"curl":$tool, $errorcode);
|
2003-12-17 10:33:04 -05:00
|
|
|
}
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg " exit FAILED\n";
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
2004-04-30 06:37:40 -04:00
|
|
|
return 1;
|
2003-12-17 10:33:04 -05:00
|
|
|
}
|
|
|
|
|
2013-03-15 14:58:00 -04:00
|
|
|
if($has_memory_tracking) {
|
2000-11-17 10:58:25 -05:00
|
|
|
if(! -f $memdump) {
|
2013-03-15 14:58:00 -04:00
|
|
|
logmsg "\n** ALERT! memory tracking with no output file?\n"
|
2010-11-03 06:22:46 -04:00
|
|
|
if(!$cmdtype eq "perl");
|
2000-11-17 10:58:25 -05:00
|
|
|
}
|
|
|
|
else {
|
2003-01-09 06:26:57 -05:00
|
|
|
my @memdata=`$memanalyze $memdump`;
|
2000-11-17 10:58:25 -05:00
|
|
|
my $leak=0;
|
|
|
|
for(@memdata) {
|
2000-11-21 10:48:40 -05:00
|
|
|
if($_ ne "") {
|
|
|
|
# well it could be other memory problems as well, but
|
|
|
|
# we call it leak for short here
|
2000-11-17 10:58:25 -05:00
|
|
|
$leak=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($leak) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "\n** MEMORY FAILURE\n";
|
|
|
|
logmsg @memdata;
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
2000-11-17 10:58:25 -05:00
|
|
|
return 1;
|
2000-11-17 10:07:29 -05:00
|
|
|
}
|
|
|
|
else {
|
2005-04-22 07:51:06 -04:00
|
|
|
$ok .= "m";
|
2000-11-17 10:07:29 -05:00
|
|
|
}
|
|
|
|
}
|
2004-04-30 06:37:40 -04:00
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
else {
|
|
|
|
$ok .= "-"; # memory not checked
|
|
|
|
}
|
|
|
|
|
2004-04-30 06:37:40 -04:00
|
|
|
if($valgrind) {
|
2007-10-25 15:39:52 -04:00
|
|
|
if($usevalgrind) {
|
2010-01-19 12:40:15 -05:00
|
|
|
unless(opendir(DIR, "$LOGDIR")) {
|
2010-01-20 13:31:52 -05:00
|
|
|
logmsg "ERROR: unable to read $LOGDIR\n";
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
2010-01-20 13:31:52 -05:00
|
|
|
return 1;
|
2009-12-18 23:15:22 -05:00
|
|
|
}
|
2010-01-20 13:31:52 -05:00
|
|
|
my @files = readdir(DIR);
|
2007-06-07 18:42:26 -04:00
|
|
|
closedir(DIR);
|
2010-01-20 13:31:52 -05:00
|
|
|
my $vgfile;
|
|
|
|
foreach my $file (@files) {
|
|
|
|
if($file =~ /^valgrind$testnum(\..*|)$/) {
|
|
|
|
$vgfile = $file;
|
2005-01-07 16:11:13 -05:00
|
|
|
last;
|
2005-01-30 07:56:36 -05:00
|
|
|
}
|
2005-01-07 16:11:13 -05:00
|
|
|
}
|
2010-01-20 13:31:52 -05:00
|
|
|
if(!$vgfile) {
|
|
|
|
logmsg "ERROR: valgrind log file missing for test $testnum\n";
|
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
return 1;
|
2005-02-10 03:50:33 -05:00
|
|
|
}
|
2017-05-27 08:30:24 -04:00
|
|
|
my @e = valgrindparse("$LOGDIR/$vgfile");
|
2010-01-20 13:31:52 -05:00
|
|
|
if(@e && $e[0]) {
|
2012-11-23 05:56:26 -05:00
|
|
|
if($automakestyle) {
|
|
|
|
logmsg "FAIL: $testnum - $testname - valgrind\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logmsg " valgrind ERROR ";
|
|
|
|
logmsg @e;
|
|
|
|
}
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
2005-01-07 16:11:13 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
$ok .= "v";
|
2004-04-30 06:37:40 -04:00
|
|
|
}
|
2005-01-07 16:11:13 -05:00
|
|
|
else {
|
2010-11-03 06:22:46 -04:00
|
|
|
if(!$short && !$disablevalgrind) {
|
2007-10-25 15:39:52 -04:00
|
|
|
logmsg " valgrind SKIPPED\n";
|
2005-01-07 16:11:13 -05:00
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
$ok .= "-"; # skipped
|
2004-04-30 06:37:40 -04:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
2005-04-22 07:51:06 -04:00
|
|
|
else {
|
|
|
|
$ok .= "-"; # valgrind not checked
|
2000-11-17 10:15:48 -05:00
|
|
|
}
|
2013-08-10 16:55:59 -04:00
|
|
|
# add 'E' for event-based
|
|
|
|
$ok .= $evbased ? "E" : "-";
|
2005-04-22 07:51:06 -04:00
|
|
|
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "$ok " if(!$short);
|
2005-04-22 07:51:06 -04:00
|
|
|
|
|
|
|
my $sofar= time()-$start;
|
|
|
|
my $esttotal = $sofar/$count * $total;
|
|
|
|
my $estleft = $esttotal - $sofar;
|
2005-07-03 18:25:15 -04:00
|
|
|
my $left=sprintf("remaining: %02d:%02d",
|
2005-04-22 07:51:06 -04:00
|
|
|
$estleft/60,
|
|
|
|
$estleft%60);
|
2012-11-23 05:56:26 -05:00
|
|
|
|
|
|
|
if(!$automakestyle) {
|
|
|
|
logmsg sprintf("OK (%-3d out of %-3d, %s)\n", $count, $total, $left);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logmsg "PASS: $testnum - $testname\n";
|
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2005-01-07 16:11:13 -05:00
|
|
|
# the test succeeded, remove all log files
|
|
|
|
if(!$keepoutfiles) {
|
|
|
|
cleardir($LOGDIR);
|
|
|
|
}
|
|
|
|
|
2009-12-18 23:15:22 -05:00
|
|
|
# timestamp test result verification end
|
|
|
|
$timevrfyend{$testnum} = Time::HiRes::time() if($timestats);
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
#######################################################################
|
2006-11-20 11:58:04 -05:00
|
|
|
# Stop all running test servers
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
2006-11-20 11:58:04 -05:00
|
|
|
sub stopservers {
|
2010-01-09 13:35:59 -05:00
|
|
|
my $verbose = $_[0];
|
2010-01-16 21:45:24 -05:00
|
|
|
#
|
|
|
|
# kill sockfilter processes for all pingpong servers
|
|
|
|
#
|
|
|
|
killallsockfilters($verbose);
|
|
|
|
#
|
|
|
|
# kill all server pids from %run hash clearing them
|
|
|
|
#
|
2009-12-16 10:16:06 -05:00
|
|
|
my $pidlist;
|
2010-01-16 21:45:24 -05:00
|
|
|
foreach my $server (keys %run) {
|
|
|
|
if($run{$server}) {
|
|
|
|
if($verbose) {
|
|
|
|
my $prev = 0;
|
|
|
|
my $pids = $run{$server};
|
|
|
|
foreach my $pid (split(' ', $pids)) {
|
|
|
|
if($pid != $prev) {
|
|
|
|
logmsg sprintf("* kill pid for %s => %d\n",
|
|
|
|
$server, $pid);
|
|
|
|
$prev = $pid;
|
|
|
|
}
|
|
|
|
}
|
2005-05-25 08:26:20 -04:00
|
|
|
}
|
2010-01-16 21:45:24 -05:00
|
|
|
$pidlist .= "$run{$server} ";
|
|
|
|
$run{$server} = 0;
|
2005-05-03 19:14:43 -04:00
|
|
|
}
|
2010-01-18 21:01:01 -05:00
|
|
|
$runcert{$server} = 0 if($runcert{$server});
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
2009-12-16 10:16:06 -05:00
|
|
|
killpid($verbose, $pidlist);
|
2010-01-16 21:45:24 -05:00
|
|
|
#
|
|
|
|
# cleanup all server pid files
|
|
|
|
#
|
|
|
|
foreach my $server (keys %serverpidfile) {
|
|
|
|
my $pidfile = $serverpidfile{$server};
|
|
|
|
my $pid = processexists($pidfile);
|
|
|
|
if($pid > 0) {
|
|
|
|
logmsg "Warning: $server server unexpectedly alive\n";
|
|
|
|
killpid($verbose, $pid);
|
|
|
|
}
|
|
|
|
unlink($pidfile) if(-f $pidfile);
|
|
|
|
}
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
2003-04-30 16:28:49 -04:00
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
#######################################################################
|
|
|
|
# startservers() starts all the named servers
|
|
|
|
#
|
2004-12-16 09:18:11 -05:00
|
|
|
# Returns: string with error reason or blank for success
|
2011-10-06 14:26:42 -04:00
|
|
|
#
|
2003-10-24 04:53:59 -04:00
|
|
|
sub startservers {
|
|
|
|
my @what = @_;
|
2006-11-20 11:58:04 -05:00
|
|
|
my ($pid, $pid2);
|
2002-12-12 07:20:06 -05:00
|
|
|
for(@what) {
|
2009-08-11 17:48:58 -04:00
|
|
|
my (@whatlist) = split(/\s+/,$_);
|
|
|
|
my $what = lc($whatlist[0]);
|
2016-06-19 17:52:01 -04:00
|
|
|
$what =~ s/[^a-z0-9\/-]//g;
|
2009-08-11 17:48:58 -04:00
|
|
|
|
2010-01-18 12:03:59 -05:00
|
|
|
my $certfile;
|
2014-11-27 17:59:23 -05:00
|
|
|
if($what =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
|
2010-01-18 12:03:59 -05:00
|
|
|
$certfile = ($whatlist[1]) ? $whatlist[1] : 'stunnel.pem';
|
|
|
|
}
|
|
|
|
|
2009-12-12 16:54:01 -05:00
|
|
|
if(($what eq "pop3") ||
|
|
|
|
($what eq "ftp") ||
|
|
|
|
($what eq "imap") ||
|
|
|
|
($what eq "smtp")) {
|
2011-10-25 17:19:36 -04:00
|
|
|
if($torture && $run{$what} &&
|
|
|
|
!responsive_pingpong_server($what, "", $verbose)) {
|
|
|
|
stopserver($what);
|
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
if(!$run{$what}) {
|
|
|
|
($pid, $pid2) = runpingpongserver($what, "", $verbose);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2009-12-14 09:42:48 -05:00
|
|
|
return "failed starting ". uc($what) ." server";
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
2009-12-12 16:54:01 -05:00
|
|
|
printf ("* pid $what => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{$what}="$pid $pid2";
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
|
|
|
}
|
2005-01-17 15:20:34 -05:00
|
|
|
elsif($what eq "ftp2") {
|
2011-12-29 21:36:18 -05:00
|
|
|
if($torture && $run{'ftp2'} &&
|
2011-10-25 17:19:36 -04:00
|
|
|
!responsive_pingpong_server("ftp", "2", $verbose)) {
|
|
|
|
stopserver('ftp2');
|
|
|
|
}
|
2005-01-17 15:20:34 -05:00
|
|
|
if(!$run{'ftp2'}) {
|
2009-12-12 16:54:01 -05:00
|
|
|
($pid, $pid2) = runpingpongserver("ftp", "2", $verbose);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2005-01-17 15:20:34 -05:00
|
|
|
return "failed starting FTP2 server";
|
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
printf ("* pid ftp2 => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'ftp2'}="$pid $pid2";
|
2005-01-17 15:20:34 -05:00
|
|
|
}
|
|
|
|
}
|
2005-04-18 02:57:44 -04:00
|
|
|
elsif($what eq "ftp-ipv6") {
|
2011-10-25 17:19:36 -04:00
|
|
|
if($torture && $run{'ftp-ipv6'} &&
|
|
|
|
!responsive_pingpong_server("ftp", "", $verbose, "ipv6")) {
|
|
|
|
stopserver('ftp-ipv6');
|
|
|
|
}
|
2005-04-18 02:57:44 -04:00
|
|
|
if(!$run{'ftp-ipv6'}) {
|
2009-12-12 16:54:01 -05:00
|
|
|
($pid, $pid2) = runpingpongserver("ftp", "", $verbose, "ipv6");
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2006-10-27 17:07:08 -04:00
|
|
|
return "failed starting FTP-IPv6 server";
|
2005-04-18 02:57:44 -04:00
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
logmsg sprintf("* pid ftp-ipv6 => %d %d\n", $pid,
|
|
|
|
$pid2) if($verbose);
|
|
|
|
$run{'ftp-ipv6'}="$pid $pid2";
|
2005-04-18 02:57:44 -04:00
|
|
|
}
|
|
|
|
}
|
2010-08-24 18:47:45 -04:00
|
|
|
elsif($what eq "gopher") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'gopher'} &&
|
|
|
|
!responsive_http_server("gopher", $verbose, 0, $GOPHERPORT)) {
|
|
|
|
stopserver('gopher');
|
|
|
|
}
|
2010-08-24 18:47:45 -04:00
|
|
|
if(!$run{'gopher'}) {
|
|
|
|
($pid, $pid2) = runhttpserver("gopher", $verbose, 0,
|
|
|
|
$GOPHERPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting GOPHER server";
|
|
|
|
}
|
2011-12-17 17:47:22 -05:00
|
|
|
logmsg sprintf ("* pid gopher => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
2010-08-24 18:47:45 -04:00
|
|
|
$run{'gopher'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2010-08-23 17:30:59 -04:00
|
|
|
elsif($what eq "gopher-ipv6") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'gopher-ipv6'} &&
|
|
|
|
!responsive_http_server("gopher", $verbose, "ipv6",
|
|
|
|
$GOPHER6PORT)) {
|
|
|
|
stopserver('gopher-ipv6');
|
|
|
|
}
|
2010-08-23 17:30:59 -04:00
|
|
|
if(!$run{'gopher-ipv6'}) {
|
2010-08-24 18:47:45 -04:00
|
|
|
($pid, $pid2) = runhttpserver("gopher", $verbose, "ipv6",
|
|
|
|
$GOPHER6PORT);
|
2010-08-23 17:30:59 -04:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting GOPHER-IPv6 server";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* pid gopher-ipv6 => %d %d\n", $pid,
|
2010-08-24 18:47:45 -04:00
|
|
|
$pid2) if($verbose);
|
2010-08-23 17:30:59 -04:00
|
|
|
$run{'gopher-ipv6'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2016-06-19 17:52:01 -04:00
|
|
|
elsif($what eq "http/2") {
|
|
|
|
if(!$run{'http/2'}) {
|
2016-06-03 17:36:10 -04:00
|
|
|
($pid, $pid2) = runhttp2server($verbose, $HTTP2PORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting HTTP/2 server";
|
|
|
|
}
|
2016-06-19 17:52:01 -04:00
|
|
|
logmsg sprintf ("* pid http/2 => %d %d\n", $pid, $pid2)
|
2016-06-03 17:36:10 -04:00
|
|
|
if($verbose);
|
2016-06-19 17:52:01 -04:00
|
|
|
$run{'http/2'}="$pid $pid2";
|
2016-06-03 17:36:10 -04:00
|
|
|
}
|
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
elsif($what eq "http") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'http'} &&
|
|
|
|
!responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
|
|
|
|
stopserver('http');
|
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
if(!$run{'http'}) {
|
2010-08-24 18:47:45 -04:00
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, 0,
|
|
|
|
$HTTPPORT);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2004-12-16 09:18:11 -05:00
|
|
|
return "failed starting HTTP server";
|
2004-05-17 06:53:34 -04:00
|
|
|
}
|
2011-12-17 17:47:22 -05:00
|
|
|
logmsg sprintf ("* pid http => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
2006-11-20 11:58:04 -05:00
|
|
|
$run{'http'}="$pid $pid2";
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
|
|
|
}
|
2011-12-17 17:47:22 -05:00
|
|
|
elsif($what eq "http-proxy") {
|
|
|
|
if($torture && $run{'http-proxy'} &&
|
|
|
|
!responsive_http_server("http", $verbose, "proxy",
|
|
|
|
$HTTPPROXYPORT)) {
|
|
|
|
stopserver('http-proxy');
|
|
|
|
}
|
|
|
|
if(!$run{'http-proxy'}) {
|
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, "proxy",
|
|
|
|
$HTTPPROXYPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting HTTP-proxy server";
|
|
|
|
}
|
|
|
|
logmsg sprintf ("* pid http-proxy => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'http-proxy'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2004-12-11 16:41:00 -05:00
|
|
|
elsif($what eq "http-ipv6") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'http-ipv6'} &&
|
2014-11-27 17:59:17 -05:00
|
|
|
!responsive_http_server("http", $verbose, "ipv6", $HTTP6PORT)) {
|
2011-10-27 18:05:16 -04:00
|
|
|
stopserver('http-ipv6');
|
|
|
|
}
|
2004-12-11 16:41:00 -05:00
|
|
|
if(!$run{'http-ipv6'}) {
|
2011-12-17 17:47:22 -05:00
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, "ipv6",
|
2010-08-24 18:47:45 -04:00
|
|
|
$HTTP6PORT);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2006-10-27 17:07:08 -04:00
|
|
|
return "failed starting HTTP-IPv6 server";
|
2004-12-11 16:41:00 -05:00
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
logmsg sprintf("* pid http-ipv6 => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'http-ipv6'}="$pid $pid2";
|
2004-12-11 16:41:00 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-15 05:50:45 -05:00
|
|
|
elsif($what eq "http-pipe") {
|
|
|
|
if($torture && $run{'http-pipe'} &&
|
|
|
|
!responsive_http_server("http", $verbose, "pipe",
|
|
|
|
$HTTPPIPEPORT)) {
|
|
|
|
stopserver('http-pipe');
|
|
|
|
}
|
|
|
|
if(!$run{'http-pipe'}) {
|
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, "pipe",
|
|
|
|
$HTTPPIPEPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting HTTP-pipe server";
|
|
|
|
}
|
|
|
|
logmsg sprintf ("* pid http-pipe => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'http-pipe'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2010-02-01 07:05:08 -05:00
|
|
|
elsif($what eq "rtsp") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'rtsp'} &&
|
|
|
|
!responsive_rtsp_server($verbose)) {
|
|
|
|
stopserver('rtsp');
|
|
|
|
}
|
2010-02-01 07:05:08 -05:00
|
|
|
if(!$run{'rtsp'}) {
|
|
|
|
($pid, $pid2) = runrtspserver($verbose);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting RTSP server";
|
|
|
|
}
|
|
|
|
printf ("* pid rtsp => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'rtsp'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($what eq "rtsp-ipv6") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'rtsp-ipv6'} &&
|
2014-11-27 17:59:17 -05:00
|
|
|
!responsive_rtsp_server($verbose, "ipv6")) {
|
2011-10-27 18:05:16 -04:00
|
|
|
stopserver('rtsp-ipv6');
|
|
|
|
}
|
2010-02-01 07:05:08 -05:00
|
|
|
if(!$run{'rtsp-ipv6'}) {
|
2014-11-27 17:59:17 -05:00
|
|
|
($pid, $pid2) = runrtspserver($verbose, "ipv6");
|
2010-02-01 07:05:08 -05:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting RTSP-IPv6 server";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* pid rtsp-ipv6 => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'rtsp-ipv6'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
elsif($what eq "ftps") {
|
2007-03-07 21:38:49 -05:00
|
|
|
if(!$stunnel) {
|
|
|
|
# we can't run ftps tests without stunnel
|
|
|
|
return "no stunnel";
|
|
|
|
}
|
2015-11-12 08:50:13 -05:00
|
|
|
if(!$has_ssl) {
|
2007-03-07 21:38:49 -05:00
|
|
|
# we can't run ftps tests if libcurl is SSL-less
|
|
|
|
return "curl lacks SSL support";
|
|
|
|
}
|
2010-01-18 12:03:59 -05:00
|
|
|
if($runcert{'ftps'} && ($runcert{'ftps'} ne $certfile)) {
|
|
|
|
# stop server when running and using a different cert
|
|
|
|
stopserver('ftps');
|
|
|
|
}
|
2011-10-25 17:19:36 -04:00
|
|
|
if($torture && $run{'ftp'} &&
|
|
|
|
!responsive_pingpong_server("ftp", "", $verbose)) {
|
|
|
|
stopserver('ftp');
|
|
|
|
}
|
2007-03-07 21:38:49 -05:00
|
|
|
if(!$run{'ftp'}) {
|
2009-12-12 16:54:01 -05:00
|
|
|
($pid, $pid2) = runpingpongserver("ftp", "", $verbose);
|
2007-03-07 21:38:49 -05:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting FTP server";
|
|
|
|
}
|
|
|
|
printf ("* pid ftp => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'ftp'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
if(!$run{'ftps'}) {
|
2010-01-18 12:03:59 -05:00
|
|
|
($pid, $pid2) = runftpsserver($verbose, "", $certfile);
|
2007-03-07 21:38:49 -05:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting FTPS server (stunnel)";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* pid ftps => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'ftps'}="$pid $pid2";
|
|
|
|
}
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
elsif($what eq "file") {
|
|
|
|
# we support it but have no server!
|
|
|
|
}
|
|
|
|
elsif($what eq "https") {
|
2004-12-16 17:45:06 -05:00
|
|
|
if(!$stunnel) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# we can't run https tests without stunnel
|
2004-12-16 17:45:06 -05:00
|
|
|
return "no stunnel";
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
2015-11-12 08:50:13 -05:00
|
|
|
if(!$has_ssl) {
|
2011-10-06 14:26:42 -04:00
|
|
|
# we can't run https tests if libcurl is SSL-less
|
2004-12-16 17:45:06 -05:00
|
|
|
return "curl lacks SSL support";
|
|
|
|
}
|
2010-01-18 12:03:59 -05:00
|
|
|
if($runcert{'https'} && ($runcert{'https'} ne $certfile)) {
|
|
|
|
# stop server when running and using a different cert
|
|
|
|
stopserver('https');
|
|
|
|
}
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'http'} &&
|
|
|
|
!responsive_http_server("http", $verbose, 0, $HTTPPORT)) {
|
|
|
|
stopserver('http');
|
|
|
|
}
|
2002-12-12 08:42:21 -05:00
|
|
|
if(!$run{'http'}) {
|
2010-08-24 18:47:45 -04:00
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, 0,
|
|
|
|
$HTTPPORT);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2004-12-16 09:18:11 -05:00
|
|
|
return "failed starting HTTP server";
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
printf ("* pid http => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'http'}="$pid $pid2";
|
2002-12-12 08:42:21 -05:00
|
|
|
}
|
2010-01-17 21:53:25 -05:00
|
|
|
if(!$run{'https'}) {
|
2010-01-18 12:03:59 -05:00
|
|
|
($pid, $pid2) = runhttpsserver($verbose, "", $certfile);
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2004-12-16 09:18:11 -05:00
|
|
|
return "failed starting HTTPS server (stunnel)";
|
2003-06-13 05:04:08 -04:00
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
logmsg sprintf("* pid https => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'https'}="$pid $pid2";
|
2002-12-12 07:20:06 -05:00
|
|
|
}
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
elsif($what eq "httptls") {
|
|
|
|
if(!$httptlssrv) {
|
|
|
|
# for now, we can't run http TLS-EXT tests without gnutls-serv
|
|
|
|
return "no gnutls-serv";
|
2011-01-19 14:35:02 -05:00
|
|
|
}
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'httptls'} &&
|
|
|
|
!responsive_httptls_server($verbose, "IPv4")) {
|
|
|
|
stopserver('httptls');
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
if(!$run{'httptls'}) {
|
|
|
|
($pid, $pid2) = runhttptlsserver($verbose, "IPv4");
|
2011-01-19 14:35:02 -05:00
|
|
|
if($pid <= 0) {
|
2011-10-06 14:26:42 -04:00
|
|
|
return "failed starting HTTPTLS server (gnutls-serv)";
|
2011-01-19 14:35:02 -05:00
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
logmsg sprintf("* pid httptls => %d %d\n", $pid, $pid2)
|
2011-01-19 14:35:02 -05:00
|
|
|
if($verbose);
|
2011-10-06 14:26:42 -04:00
|
|
|
$run{'httptls'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($what eq "httptls-ipv6") {
|
|
|
|
if(!$httptlssrv) {
|
|
|
|
# for now, we can't run http TLS-EXT tests without gnutls-serv
|
|
|
|
return "no gnutls-serv";
|
|
|
|
}
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'httptls-ipv6'} &&
|
2014-11-27 17:59:17 -05:00
|
|
|
!responsive_httptls_server($verbose, "ipv6")) {
|
2011-10-27 18:05:16 -04:00
|
|
|
stopserver('httptls-ipv6');
|
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
if(!$run{'httptls-ipv6'}) {
|
2014-11-27 17:59:17 -05:00
|
|
|
($pid, $pid2) = runhttptlsserver($verbose, "ipv6");
|
2011-10-06 14:26:42 -04:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting HTTPTLS-IPv6 server (gnutls-serv)";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* pid httptls-ipv6 => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'httptls-ipv6'}="$pid $pid2";
|
2011-01-19 14:35:02 -05:00
|
|
|
}
|
|
|
|
}
|
2005-09-15 16:25:02 -04:00
|
|
|
elsif($what eq "tftp") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'tftp'} &&
|
2011-10-28 09:59:36 -04:00
|
|
|
!responsive_tftp_server("", $verbose)) {
|
2011-10-27 18:05:16 -04:00
|
|
|
stopserver('tftp');
|
|
|
|
}
|
2005-09-15 16:25:02 -04:00
|
|
|
if(!$run{'tftp'}) {
|
2006-11-20 11:58:04 -05:00
|
|
|
($pid, $pid2) = runtftpserver("", $verbose);
|
|
|
|
if($pid <= 0) {
|
2005-09-15 16:25:02 -04:00
|
|
|
return "failed starting TFTP server";
|
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
printf ("* pid tftp => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'tftp'}="$pid $pid2";
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($what eq "tftp-ipv6") {
|
2011-10-27 18:05:16 -04:00
|
|
|
if($torture && $run{'tftp-ipv6'} &&
|
2014-11-27 17:59:17 -05:00
|
|
|
!responsive_tftp_server("", $verbose, "ipv6")) {
|
2011-10-27 18:05:16 -04:00
|
|
|
stopserver('tftp-ipv6');
|
|
|
|
}
|
2005-09-15 16:25:02 -04:00
|
|
|
if(!$run{'tftp-ipv6'}) {
|
2014-11-27 17:59:17 -05:00
|
|
|
($pid, $pid2) = runtftpserver("", $verbose, "ipv6");
|
2006-11-20 11:58:04 -05:00
|
|
|
if($pid <= 0) {
|
2005-09-15 16:25:02 -04:00
|
|
|
return "failed starting TFTP-IPv6 server";
|
|
|
|
}
|
2006-11-20 11:58:04 -05:00
|
|
|
printf("* pid tftp-ipv6 => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'tftp-ipv6'}="$pid $pid2";
|
2005-09-15 16:25:02 -04:00
|
|
|
}
|
|
|
|
}
|
2007-06-05 09:50:59 -04:00
|
|
|
elsif($what eq "sftp" || $what eq "scp" || $what eq "socks4" || $what eq "socks5" ) {
|
2007-03-23 21:01:28 -04:00
|
|
|
if(!$run{'ssh'}) {
|
|
|
|
($pid, $pid2) = runsshserver("", $verbose);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting SSH server";
|
|
|
|
}
|
|
|
|
printf ("* pid ssh => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'ssh'}="$pid $pid2";
|
|
|
|
}
|
2008-01-03 15:48:22 -05:00
|
|
|
if($what eq "socks4" || $what eq "socks5") {
|
|
|
|
if(!$run{'socks'}) {
|
2008-01-11 15:17:33 -05:00
|
|
|
($pid, $pid2) = runsocksserver("", $verbose);
|
2007-06-05 09:50:59 -04:00
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting socks server";
|
|
|
|
}
|
|
|
|
printf ("* pid socks => %d %d\n", $pid, $pid2) if($verbose);
|
|
|
|
$run{'socks'}="$pid $pid2";
|
2008-01-03 15:48:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if($what eq "socks5") {
|
2008-01-04 08:00:40 -05:00
|
|
|
if(!$sshdid) {
|
|
|
|
# Not an OpenSSH or SunSSH ssh daemon
|
2008-01-03 15:48:22 -05:00
|
|
|
logmsg "Not OpenSSH or SunSSH; socks5 tests need at least OpenSSH 3.7\n";
|
|
|
|
return "failed starting socks5 server";
|
|
|
|
}
|
2008-01-04 08:00:40 -05:00
|
|
|
elsif(($sshdid =~ /OpenSSH/) && ($sshdvernum < 370)) {
|
2017-08-08 15:22:34 -04:00
|
|
|
# Need OpenSSH 3.7 for socks5 - https://www.openssh.com/txt/release-3.7
|
2008-01-04 08:00:40 -05:00
|
|
|
logmsg "$sshdverstr insufficient; socks5 tests need at least OpenSSH 3.7\n";
|
2008-01-03 15:48:22 -05:00
|
|
|
return "failed starting socks5 server";
|
|
|
|
}
|
2008-01-04 08:00:40 -05:00
|
|
|
elsif(($sshdid =~ /SunSSH/) && ($sshdvernum < 100)) {
|
2008-01-03 15:48:22 -05:00
|
|
|
# Need SunSSH 1.0 for socks5
|
2008-01-04 08:00:40 -05:00
|
|
|
logmsg "$sshdverstr insufficient; socks5 tests need at least SunSSH 1.0\n";
|
2008-01-03 15:48:22 -05:00
|
|
|
return "failed starting socks5 server";
|
|
|
|
}
|
|
|
|
}
|
2007-03-23 21:01:28 -04:00
|
|
|
}
|
2014-11-27 17:59:23 -05:00
|
|
|
elsif($what eq "http-unix") {
|
|
|
|
if($torture && $run{'http-unix'} &&
|
|
|
|
!responsive_http_server("http", $verbose, "unix", $HTTPUNIXPATH)) {
|
|
|
|
stopserver('http-unix');
|
|
|
|
}
|
|
|
|
if(!$run{'http-unix'}) {
|
|
|
|
($pid, $pid2) = runhttpserver("http", $verbose, "unix",
|
|
|
|
$HTTPUNIXPATH);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting HTTP-unix server";
|
|
|
|
}
|
|
|
|
logmsg sprintf("* pid http-unix => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'http-unix'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2017-06-26 11:46:53 -04:00
|
|
|
elsif($what eq "dict") {
|
|
|
|
if(!$run{'dict'}) {
|
|
|
|
($pid, $pid2) = rundictserver($verbose, "", $DICTPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting DICT server";
|
|
|
|
}
|
|
|
|
logmsg sprintf ("* pid DICT => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'dict'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2017-07-03 06:00:04 -04:00
|
|
|
elsif($what eq "smb") {
|
|
|
|
if(!$run{'smb'}) {
|
|
|
|
($pid, $pid2) = runsmbserver($verbose, "", $SMBPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting SMB server";
|
|
|
|
}
|
|
|
|
logmsg sprintf ("* pid SMB => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'dict'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2017-07-05 05:12:10 -04:00
|
|
|
elsif($what eq "telnet") {
|
|
|
|
if(!$run{'telnet'}) {
|
|
|
|
($pid, $pid2) = runnegtelnetserver($verbose,
|
|
|
|
"",
|
|
|
|
$NEGTELNETPORT);
|
|
|
|
if($pid <= 0) {
|
|
|
|
return "failed starting neg TELNET server";
|
|
|
|
}
|
|
|
|
logmsg sprintf ("* pid neg TELNET => %d %d\n", $pid, $pid2)
|
|
|
|
if($verbose);
|
|
|
|
$run{'dict'}="$pid $pid2";
|
|
|
|
}
|
|
|
|
}
|
2003-03-15 12:11:13 -05:00
|
|
|
elsif($what eq "none") {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "* starts no server\n" if ($verbose);
|
2003-03-15 12:11:13 -05:00
|
|
|
}
|
2002-12-12 07:20:06 -05:00
|
|
|
else {
|
|
|
|
warn "we don't support a server for $what";
|
2006-04-10 09:03:20 -04:00
|
|
|
return "no server for $what";
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
|
|
|
}
|
2003-10-24 04:53:59 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# This function makes sure the right set of server is running for the
|
|
|
|
# specified test case. This is a useful design when we run single tests as not
|
|
|
|
# all servers need to run then!
|
|
|
|
#
|
2004-12-16 09:18:11 -05:00
|
|
|
# Returns: a string, blank if everything is fine or a reason why it failed
|
|
|
|
#
|
2003-10-24 04:53:59 -04:00
|
|
|
sub serverfortest {
|
|
|
|
my ($testnum)=@_;
|
|
|
|
|
|
|
|
my @what = getpart("client", "server");
|
|
|
|
|
|
|
|
if(!$what[0]) {
|
2007-04-03 08:27:03 -04:00
|
|
|
warn "Test case $testnum has no server(s) specified";
|
2004-12-16 09:18:11 -05:00
|
|
|
return "no server specified";
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
for(my $i = scalar(@what) - 1; $i >= 0; $i--) {
|
|
|
|
my $srvrline = $what[$i];
|
|
|
|
chomp $srvrline if($srvrline);
|
|
|
|
if($srvrline =~ /^(\S+)((\s*)(.*))/) {
|
|
|
|
my $server = "${1}";
|
|
|
|
my $lnrest = "${2}";
|
|
|
|
my $tlsext;
|
|
|
|
if($server =~ /^(httptls)(\+)(ext|srp)(\d*)(-ipv6|)$/) {
|
|
|
|
$server = "${1}${4}${5}";
|
|
|
|
$tlsext = uc("TLS-${3}");
|
|
|
|
}
|
|
|
|
if(! grep /^\Q$server\E$/, @protocols) {
|
|
|
|
if(substr($server,0,5) ne "socks") {
|
|
|
|
if($tlsext) {
|
|
|
|
return "curl lacks $tlsext support";
|
|
|
|
}
|
|
|
|
else {
|
2011-12-17 17:47:22 -05:00
|
|
|
return "curl lacks $server server support";
|
2011-10-06 14:26:42 -04:00
|
|
|
}
|
|
|
|
}
|
2009-12-20 21:37:23 -05:00
|
|
|
}
|
2011-10-06 14:26:42 -04:00
|
|
|
$what[$i] = "$server$lnrest" if($tlsext);
|
2009-12-20 21:37:23 -05:00
|
|
|
}
|
2007-03-09 16:01:39 -05:00
|
|
|
}
|
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
return &startservers(@what);
|
2001-04-24 17:09:53 -04:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2009-12-21 10:50:24 -05:00
|
|
|
#######################################################################
|
|
|
|
# runtimestats displays test-suite run time statistics
|
|
|
|
#
|
|
|
|
sub runtimestats {
|
|
|
|
my $lasttest = $_[0];
|
|
|
|
|
|
|
|
return if(not $timestats);
|
|
|
|
|
|
|
|
logmsg "\nTest suite total running time breakdown per task...\n\n";
|
|
|
|
|
|
|
|
my @timesrvr;
|
|
|
|
my @timeprep;
|
|
|
|
my @timetool;
|
|
|
|
my @timelock;
|
|
|
|
my @timevrfy;
|
|
|
|
my @timetest;
|
|
|
|
my $timesrvrtot = 0.0;
|
|
|
|
my $timepreptot = 0.0;
|
|
|
|
my $timetooltot = 0.0;
|
|
|
|
my $timelocktot = 0.0;
|
|
|
|
my $timevrfytot = 0.0;
|
|
|
|
my $timetesttot = 0.0;
|
|
|
|
my $counter;
|
|
|
|
|
|
|
|
for my $testnum (1 .. $lasttest) {
|
|
|
|
if($timesrvrini{$testnum}) {
|
|
|
|
$timesrvrtot += $timesrvrend{$testnum} - $timesrvrini{$testnum};
|
|
|
|
$timepreptot +=
|
|
|
|
(($timetoolini{$testnum} - $timeprepini{$testnum}) -
|
|
|
|
($timesrvrend{$testnum} - $timesrvrini{$testnum}));
|
|
|
|
$timetooltot += $timetoolend{$testnum} - $timetoolini{$testnum};
|
|
|
|
$timelocktot += $timesrvrlog{$testnum} - $timetoolend{$testnum};
|
|
|
|
$timevrfytot += $timevrfyend{$testnum} - $timesrvrlog{$testnum};
|
|
|
|
$timetesttot += $timevrfyend{$testnum} - $timeprepini{$testnum};
|
|
|
|
push @timesrvr, sprintf("%06.3f %04d",
|
|
|
|
$timesrvrend{$testnum} - $timesrvrini{$testnum}, $testnum);
|
|
|
|
push @timeprep, sprintf("%06.3f %04d",
|
|
|
|
($timetoolini{$testnum} - $timeprepini{$testnum}) -
|
|
|
|
($timesrvrend{$testnum} - $timesrvrini{$testnum}), $testnum);
|
|
|
|
push @timetool, sprintf("%06.3f %04d",
|
|
|
|
$timetoolend{$testnum} - $timetoolini{$testnum}, $testnum);
|
|
|
|
push @timelock, sprintf("%06.3f %04d",
|
|
|
|
$timesrvrlog{$testnum} - $timetoolend{$testnum}, $testnum);
|
|
|
|
push @timevrfy, sprintf("%06.3f %04d",
|
|
|
|
$timevrfyend{$testnum} - $timesrvrlog{$testnum}, $testnum);
|
|
|
|
push @timetest, sprintf("%06.3f %04d",
|
|
|
|
$timevrfyend{$testnum} - $timeprepini{$testnum}, $testnum);
|
|
|
|
}
|
|
|
|
}
|
2010-01-17 09:47:30 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
no warnings 'numeric';
|
|
|
|
@timesrvr = sort { $b <=> $a } @timesrvr;
|
|
|
|
@timeprep = sort { $b <=> $a } @timeprep;
|
|
|
|
@timetool = sort { $b <=> $a } @timetool;
|
|
|
|
@timelock = sort { $b <=> $a } @timelock;
|
|
|
|
@timevrfy = sort { $b <=> $a } @timevrfy;
|
|
|
|
@timetest = sort { $b <=> $a } @timetest;
|
|
|
|
}
|
2009-12-21 10:50:24 -05:00
|
|
|
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timesrvrtot) .
|
|
|
|
"seconds starting and verifying test harness servers.\n";
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timepreptot) .
|
|
|
|
"seconds reading definitions and doing test preparations.\n";
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timetooltot) .
|
|
|
|
"seconds actually running test tools.\n";
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timelocktot) .
|
|
|
|
"seconds awaiting server logs lock removal.\n";
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timevrfytot) .
|
|
|
|
"seconds verifying test results.\n";
|
|
|
|
logmsg "Spent ". sprintf("%08.3f ", $timetesttot) .
|
|
|
|
"seconds doing all of the above.\n";
|
|
|
|
|
|
|
|
$counter = 25;
|
|
|
|
logmsg "\nTest server starting and verification time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timesrvr) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$counter = 10;
|
|
|
|
logmsg "\nTest definition reading and preparation time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timeprep) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$counter = 25;
|
|
|
|
logmsg "\nTest tool execution time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timetool) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$counter = 15;
|
|
|
|
logmsg "\nTest server logs lock removal time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timelock) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$counter = 10;
|
|
|
|
logmsg "\nTest results verification time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timevrfy) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
$counter = 50;
|
|
|
|
logmsg "\nTotal time per test ".
|
|
|
|
sprintf("(%s)...\n\n", (not $fullstats)?"top $counter":"full");
|
|
|
|
logmsg "-time- test\n";
|
|
|
|
logmsg "------ ----\n";
|
|
|
|
foreach my $txt (@timetest) {
|
|
|
|
last if((not $fullstats) && (not $counter--));
|
|
|
|
logmsg "$txt\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
logmsg "\n";
|
|
|
|
}
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
#######################################################################
|
|
|
|
# Check options to this test program
|
|
|
|
#
|
|
|
|
|
2001-03-12 07:58:30 -05:00
|
|
|
my $number=0;
|
|
|
|
my $fromnum=-1;
|
2000-11-21 14:28:11 -05:00
|
|
|
my @testthis;
|
2007-10-11 17:15:09 -04:00
|
|
|
while(@ARGV) {
|
2000-11-14 05:18:44 -05:00
|
|
|
if ($ARGV[0] eq "-v") {
|
|
|
|
# verbose output
|
|
|
|
$verbose=1;
|
|
|
|
}
|
2007-04-30 16:15:33 -04:00
|
|
|
elsif($ARGV[0] =~ /^-b(.*)/) {
|
|
|
|
my $portno=$1;
|
|
|
|
if($portno =~ s/(\d+)$//) {
|
|
|
|
$base = int $1;
|
|
|
|
}
|
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
elsif ($ARGV[0] eq "-c") {
|
2004-05-17 06:53:34 -04:00
|
|
|
# use this path to curl instead of default
|
2015-07-16 22:19:43 -04:00
|
|
|
$DBGCURL=$CURL="\"$ARGV[1]\"";
|
2001-08-21 09:18:07 -04:00
|
|
|
shift @ARGV;
|
|
|
|
}
|
2013-08-26 03:17:55 -04:00
|
|
|
elsif ($ARGV[0] eq "-vc") {
|
|
|
|
# use this path to a curl used to verify servers
|
|
|
|
|
|
|
|
# Particularly useful when you introduce a crashing bug somewhere in
|
|
|
|
# the development version as then it won't be able to run any tests
|
|
|
|
# since it can't verify the servers!
|
|
|
|
|
2015-08-22 21:19:34 -04:00
|
|
|
$VCURL="\"$ARGV[1]\"";
|
2013-08-26 03:17:55 -04:00
|
|
|
shift @ARGV;
|
|
|
|
}
|
2001-01-27 13:50:54 -05:00
|
|
|
elsif ($ARGV[0] eq "-d") {
|
2004-05-17 06:53:34 -04:00
|
|
|
# have the servers display protocol output
|
2001-01-27 13:50:54 -05:00
|
|
|
$debugprotocol=1;
|
|
|
|
}
|
2017-05-04 10:32:56 -04:00
|
|
|
elsif($ARGV[0] eq "-e") {
|
|
|
|
# run the tests cases event based if possible
|
|
|
|
$run_event_based=1;
|
|
|
|
}
|
2001-02-20 08:58:39 -05:00
|
|
|
elsif ($ARGV[0] eq "-g") {
|
|
|
|
# run this test with gdb
|
|
|
|
$gdbthis=1;
|
|
|
|
}
|
2011-08-21 13:25:35 -04:00
|
|
|
elsif ($ARGV[0] eq "-gw") {
|
|
|
|
# run this test with windowed gdb
|
|
|
|
$gdbthis=1;
|
|
|
|
$gdbxwin=1;
|
|
|
|
}
|
2000-11-14 05:18:44 -05:00
|
|
|
elsif($ARGV[0] eq "-s") {
|
|
|
|
# short output
|
|
|
|
$short=1;
|
|
|
|
}
|
2012-11-23 05:56:26 -05:00
|
|
|
elsif($ARGV[0] eq "-am") {
|
|
|
|
# automake-style output
|
|
|
|
$short=1;
|
|
|
|
$automakestyle=1;
|
|
|
|
}
|
2003-11-13 05:05:44 -05:00
|
|
|
elsif($ARGV[0] eq "-n") {
|
|
|
|
# no valgrind
|
|
|
|
undef $valgrind;
|
|
|
|
}
|
2017-05-05 02:12:24 -04:00
|
|
|
elsif ($ARGV[0] eq "-R") {
|
2017-05-04 10:32:56 -04:00
|
|
|
# execute in scrambled order
|
|
|
|
$scrambleorder=1;
|
|
|
|
}
|
2003-10-24 04:53:59 -04:00
|
|
|
elsif($ARGV[0] =~ /^-t(.*)/) {
|
|
|
|
# torture
|
|
|
|
$torture=1;
|
|
|
|
my $xtra = $1;
|
2004-05-10 05:01:45 -04:00
|
|
|
|
2003-10-24 09:00:19 -04:00
|
|
|
if($xtra =~ s/(\d+)$//) {
|
|
|
|
$tortalloc = $1;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
2004-05-13 03:52:33 -04:00
|
|
|
# we undef valgrind to make this fly in comparison
|
|
|
|
undef $valgrind;
|
2003-10-24 04:53:59 -04:00
|
|
|
}
|
2000-11-17 10:15:48 -05:00
|
|
|
elsif($ARGV[0] eq "-a") {
|
|
|
|
# continue anyway, even if a test fail
|
|
|
|
$anyway=1;
|
|
|
|
}
|
2004-04-13 01:57:50 -04:00
|
|
|
elsif($ARGV[0] eq "-p") {
|
|
|
|
$postmortem=1;
|
|
|
|
}
|
2002-01-04 08:20:17 -05:00
|
|
|
elsif($ARGV[0] eq "-l") {
|
|
|
|
# lists the test case names only
|
|
|
|
$listonly=1;
|
|
|
|
}
|
2001-05-04 03:47:11 -04:00
|
|
|
elsif($ARGV[0] eq "-k") {
|
|
|
|
# keep stdout and stderr files after tests
|
|
|
|
$keepoutfiles=1;
|
|
|
|
}
|
2009-12-18 23:15:22 -05:00
|
|
|
elsif($ARGV[0] eq "-r") {
|
2009-12-22 08:46:06 -05:00
|
|
|
# run time statistics needs Time::HiRes
|
|
|
|
if($Time::HiRes::VERSION) {
|
2009-12-18 23:15:22 -05:00
|
|
|
keys(%timeprepini) = 1000;
|
|
|
|
keys(%timesrvrini) = 1000;
|
|
|
|
keys(%timesrvrend) = 1000;
|
|
|
|
keys(%timetoolini) = 1000;
|
|
|
|
keys(%timetoolend) = 1000;
|
|
|
|
keys(%timesrvrlog) = 1000;
|
|
|
|
keys(%timevrfyend) = 1000;
|
|
|
|
$timestats=1;
|
|
|
|
$fullstats=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($ARGV[0] eq "-rf") {
|
2009-12-22 08:46:06 -05:00
|
|
|
# run time statistics needs Time::HiRes
|
|
|
|
if($Time::HiRes::VERSION) {
|
2009-12-18 23:15:22 -05:00
|
|
|
keys(%timeprepini) = 1000;
|
|
|
|
keys(%timesrvrini) = 1000;
|
|
|
|
keys(%timesrvrend) = 1000;
|
|
|
|
keys(%timetoolini) = 1000;
|
|
|
|
keys(%timetoolend) = 1000;
|
|
|
|
keys(%timesrvrlog) = 1000;
|
|
|
|
keys(%timevrfyend) = 1000;
|
|
|
|
$timestats=1;
|
|
|
|
$fullstats=1;
|
|
|
|
}
|
|
|
|
}
|
2009-05-11 07:39:42 -04:00
|
|
|
elsif(($ARGV[0] eq "-h") || ($ARGV[0] eq "--help")) {
|
2000-11-14 05:28:25 -05:00
|
|
|
# show help text
|
|
|
|
print <<EOHELP
|
2008-07-26 22:34:27 -04:00
|
|
|
Usage: runtests.pl [options] [test selection(s)]
|
2000-11-17 10:15:48 -05:00
|
|
|
-a continue even if a test fails
|
2007-04-30 16:15:33 -04:00
|
|
|
-bN use base port number N for test servers (default $base)
|
|
|
|
-c path use this curl executable
|
2001-01-27 13:50:54 -05:00
|
|
|
-d display server debug info
|
2017-05-04 10:32:56 -04:00
|
|
|
-e event-based execution
|
2001-02-20 08:58:39 -05:00
|
|
|
-g run the test case with gdb
|
2011-08-21 13:25:35 -04:00
|
|
|
-gw run the test case with gdb as a windowed application
|
2000-11-14 05:28:25 -05:00
|
|
|
-h this help text
|
2001-05-04 03:47:11 -04:00
|
|
|
-k keep stdout and stderr files present after tests
|
2002-01-04 08:20:17 -05:00
|
|
|
-l list all test case names/descriptions
|
2007-04-30 16:15:33 -04:00
|
|
|
-n no valgrind
|
|
|
|
-p print log file contents when a test fails
|
2017-05-05 02:12:24 -04:00
|
|
|
-R scrambled order
|
2009-12-18 23:15:22 -05:00
|
|
|
-r run time statistics
|
|
|
|
-rf full run time statistics
|
2000-11-14 05:28:25 -05:00
|
|
|
-s short output
|
2012-11-23 05:56:26 -05:00
|
|
|
-am automake style output PASS/FAIL: [number] [name]
|
2007-04-30 16:15:33 -04:00
|
|
|
-t[N] torture (simulate memory alloc failures); N means fail Nth alloc
|
2000-11-14 05:28:25 -05:00
|
|
|
-v verbose output
|
2013-08-26 03:17:55 -04:00
|
|
|
-vc path use this curl only to verify the existing servers
|
2001-04-24 17:09:53 -04:00
|
|
|
[num] like "5 6 9" or " 5 to 22 " to run those tests only
|
2007-04-30 16:15:33 -04:00
|
|
|
[!num] like "!5 !6 !9" to disable those tests
|
2008-07-26 22:34:27 -04:00
|
|
|
[keyword] like "IPv6" to select only tests containing the key word
|
|
|
|
[!keyword] like "!cookies" to disable any tests containing the key word
|
2000-11-14 05:28:25 -05:00
|
|
|
EOHELP
|
|
|
|
;
|
|
|
|
exit;
|
|
|
|
}
|
2000-11-14 05:18:44 -05:00
|
|
|
elsif($ARGV[0] =~ /^(\d+)/) {
|
2001-03-12 07:58:30 -05:00
|
|
|
$number = $1;
|
|
|
|
if($fromnum >= 0) {
|
|
|
|
for($fromnum .. $number) {
|
|
|
|
push @testthis, $_;
|
|
|
|
}
|
|
|
|
$fromnum = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
push @testthis, $1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elsif($ARGV[0] =~ /^to$/i) {
|
2001-03-13 17:14:53 -05:00
|
|
|
$fromnum = $number+1;
|
2000-11-14 05:18:44 -05:00
|
|
|
}
|
2007-04-25 19:18:52 -04:00
|
|
|
elsif($ARGV[0] =~ /^!(\d+)/) {
|
|
|
|
$fromnum = -1;
|
|
|
|
$disabled{$1}=$1;
|
|
|
|
}
|
2007-10-11 17:15:09 -04:00
|
|
|
elsif($ARGV[0] =~ /^!(.+)/) {
|
2017-08-19 16:07:15 -04:00
|
|
|
$disabled_keywords{lc($1)}=$1;
|
2007-10-11 17:15:09 -04:00
|
|
|
}
|
2008-07-26 22:34:27 -04:00
|
|
|
elsif($ARGV[0] =~ /^([-[{a-zA-Z].*)/) {
|
2017-08-14 17:05:11 -04:00
|
|
|
$enabled_keywords{lc($1)}=$1;
|
2008-07-26 22:34:27 -04:00
|
|
|
}
|
2007-10-11 17:15:09 -04:00
|
|
|
else {
|
2009-12-20 21:37:23 -05:00
|
|
|
print "Unknown option: $ARGV[0]\n";
|
|
|
|
exit;
|
2007-10-11 17:15:09 -04:00
|
|
|
}
|
|
|
|
shift @ARGV;
|
2010-02-14 14:40:18 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2010-01-17 15:28:07 -05:00
|
|
|
if(@testthis && ($testthis[0] ne "")) {
|
2000-11-21 14:28:11 -05:00
|
|
|
$TESTCASES=join(" ", @testthis);
|
|
|
|
}
|
|
|
|
|
2003-11-13 05:05:44 -05:00
|
|
|
if($valgrind) {
|
|
|
|
# we have found valgrind on the host, use it
|
|
|
|
|
|
|
|
# verify that we can invoke it fine
|
2007-09-20 16:39:17 -04:00
|
|
|
my $code = runclient("valgrind >/dev/null 2>&1");
|
2003-11-13 05:05:44 -05:00
|
|
|
|
|
|
|
if(($code>>8) != 1) {
|
2005-05-25 08:26:20 -04:00
|
|
|
#logmsg "Valgrind failure, disable it\n";
|
2003-11-13 05:05:44 -05:00
|
|
|
undef $valgrind;
|
2007-09-20 16:39:17 -04:00
|
|
|
} else {
|
|
|
|
|
2009-12-20 21:37:23 -05:00
|
|
|
# since valgrind 2.1.x, '--tool' option is mandatory
|
|
|
|
# use it, if it is supported by the version installed on the system
|
|
|
|
runclient("valgrind --help 2>&1 | grep -- --tool > /dev/null 2>&1");
|
|
|
|
if (($? >> 8)==0) {
|
2010-01-18 09:49:31 -05:00
|
|
|
$valgrind_tool="--tool=memcheck";
|
2009-12-20 21:37:23 -05:00
|
|
|
}
|
|
|
|
open(C, "<$CURL");
|
|
|
|
my $l = <C>;
|
|
|
|
if($l =~ /^\#\!/) {
|
|
|
|
# A shell script. This is typically when built with libtool,
|
|
|
|
$valgrind="../libtool --mode=execute $valgrind";
|
|
|
|
}
|
|
|
|
close(C);
|
|
|
|
|
|
|
|
# valgrind 3 renamed the --logfile option to --log-file!!!
|
|
|
|
my $ver=join(' ', runclientoutput("valgrind --version"));
|
|
|
|
# cut off all but digits and dots
|
|
|
|
$ver =~ s/[^0-9.]//g;
|
|
|
|
|
2010-01-18 09:49:31 -05:00
|
|
|
if($ver =~ /^(\d+)/) {
|
|
|
|
$ver = $1;
|
|
|
|
if($ver >= 3) {
|
|
|
|
$valgrind_logfile="--log-file";
|
|
|
|
}
|
2009-12-20 21:37:23 -05:00
|
|
|
}
|
2003-11-13 05:05:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-20 16:39:17 -04:00
|
|
|
if ($gdbthis) {
|
|
|
|
# open the executable curl and read the first 4 bytes of it
|
|
|
|
open(CHECK, "<$CURL");
|
|
|
|
my $c;
|
|
|
|
sysread CHECK, $c, 4;
|
|
|
|
close(CHECK);
|
|
|
|
if($c eq "#! /") {
|
2009-12-20 21:37:23 -05:00
|
|
|
# A shell script. This is typically when built with libtool,
|
|
|
|
$libtool = 1;
|
2014-11-27 08:08:31 -05:00
|
|
|
$gdb = "../libtool --mode=execute gdb";
|
2007-09-20 16:39:17 -04:00
|
|
|
}
|
2006-03-03 09:37:44 -05:00
|
|
|
}
|
|
|
|
|
2011-10-06 14:26:42 -04:00
|
|
|
$HTTPPORT = $base++; # HTTP server port
|
|
|
|
$HTTPSPORT = $base++; # HTTPS (stunnel) server port
|
|
|
|
$FTPPORT = $base++; # FTP server port
|
|
|
|
$FTPSPORT = $base++; # FTPS (stunnel) server port
|
|
|
|
$HTTP6PORT = $base++; # HTTP IPv6 server port
|
|
|
|
$FTP2PORT = $base++; # FTP server 2 port
|
|
|
|
$FTP6PORT = $base++; # FTP IPv6 port
|
|
|
|
$TFTPPORT = $base++; # TFTP (UDP) port
|
|
|
|
$TFTP6PORT = $base++; # TFTP IPv6 (UDP) port
|
|
|
|
$SSHPORT = $base++; # SSH (SCP/SFTP) port
|
|
|
|
$SOCKSPORT = $base++; # SOCKS port
|
|
|
|
$POP3PORT = $base++; # POP3 server port
|
|
|
|
$POP36PORT = $base++; # POP3 IPv6 server port
|
|
|
|
$IMAPPORT = $base++; # IMAP server port
|
|
|
|
$IMAP6PORT = $base++; # IMAP IPv6 server port
|
|
|
|
$SMTPPORT = $base++; # SMTP server port
|
|
|
|
$SMTP6PORT = $base++; # SMTP IPv6 server port
|
|
|
|
$RTSPPORT = $base++; # RTSP server port
|
|
|
|
$RTSP6PORT = $base++; # RTSP IPv6 server port
|
|
|
|
$GOPHERPORT = $base++; # Gopher IPv4 server port
|
|
|
|
$GOPHER6PORT = $base++; # Gopher IPv6 server port
|
|
|
|
$HTTPTLSPORT = $base++; # HTTP TLS (non-stunnel) server port
|
|
|
|
$HTTPTLS6PORT = $base++; # HTTP TLS (non-stunnel) IPv6 server port
|
2011-12-17 17:47:22 -05:00
|
|
|
$HTTPPROXYPORT = $base++; # HTTP proxy port, when using CONNECT
|
2013-02-15 05:50:45 -05:00
|
|
|
$HTTPPIPEPORT = $base++; # HTTP pipelining port
|
2016-06-03 17:36:10 -04:00
|
|
|
$HTTP2PORT = $base++; # HTTP/2 port
|
2017-06-26 11:46:53 -04:00
|
|
|
$DICTPORT = $base++; # DICT port
|
2017-07-03 06:00:04 -04:00
|
|
|
$SMBPORT = $base++; # SMB port
|
|
|
|
$SMBSPORT = $base++; # SMBS port
|
2017-07-05 05:12:10 -04:00
|
|
|
$NEGTELNETPORT = $base++; # TELNET port with negotiation
|
2014-12-26 15:45:21 -05:00
|
|
|
$HTTPUNIXPATH = 'http.sock'; # HTTP server Unix domain socket path
|
2004-09-08 04:08:38 -04:00
|
|
|
|
2005-12-06 02:44:18 -05:00
|
|
|
#######################################################################
|
|
|
|
# clear and create logging directory:
|
|
|
|
#
|
|
|
|
|
|
|
|
cleardir($LOGDIR);
|
|
|
|
mkdir($LOGDIR, 0777);
|
|
|
|
|
2010-01-12 17:22:55 -05:00
|
|
|
#######################################################################
|
|
|
|
# initialize some variables
|
|
|
|
#
|
|
|
|
|
|
|
|
get_disttests();
|
|
|
|
init_serverpidfile_hash();
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
#######################################################################
|
|
|
|
# Output curl version and host info being tested
|
|
|
|
#
|
|
|
|
|
2002-01-08 04:32:41 -05:00
|
|
|
if(!$listonly) {
|
2005-04-28 17:04:58 -04:00
|
|
|
checksystem();
|
2002-01-08 04:32:41 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2011-06-23 17:10:00 -04:00
|
|
|
#######################################################################
|
2014-06-19 10:40:06 -04:00
|
|
|
# Fetch all disabled tests, if there are any
|
2011-06-23 17:10:00 -04:00
|
|
|
#
|
|
|
|
|
2015-04-26 12:22:46 -04:00
|
|
|
sub disabledtests {
|
|
|
|
my ($file) = @_;
|
|
|
|
|
|
|
|
if(open(D, "<$file")) {
|
|
|
|
while(<D>) {
|
|
|
|
if(/^ *\#/) {
|
|
|
|
# allow comments
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if($_ =~ /(\d+)/) {
|
|
|
|
$disabled{$1}=$1; # disable this test number
|
|
|
|
}
|
2014-06-19 10:40:06 -04:00
|
|
|
}
|
2015-04-26 12:22:46 -04:00
|
|
|
close(D);
|
2011-06-23 17:10:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-26 12:22:46 -04:00
|
|
|
# globally disabled tests
|
|
|
|
disabledtests("$TESTDIR/DISABLED");
|
|
|
|
|
|
|
|
# locally disabled tests, ignored by git etc
|
|
|
|
disabledtests("$TESTDIR/DISABLED.local");
|
|
|
|
|
2000-11-13 11:06:16 -05:00
|
|
|
#######################################################################
|
2000-11-14 05:18:44 -05:00
|
|
|
# If 'all' tests are requested, find out all test numbers
|
2000-11-13 11:06:16 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
if ( $TESTCASES eq "all") {
|
2000-11-14 05:18:44 -05:00
|
|
|
# Get all commands and find out their test numbers
|
2007-06-07 18:42:26 -04:00
|
|
|
opendir(DIR, $TESTDIR) || die "can't opendir $TESTDIR: $!";
|
|
|
|
my @cmds = grep { /^test([0-9]+)$/ && -f "$TESTDIR/$_" } readdir(DIR);
|
|
|
|
closedir(DIR);
|
2000-11-14 05:18:44 -05:00
|
|
|
|
2000-11-15 03:21:14 -05:00
|
|
|
$TESTCASES=""; # start with no test cases
|
|
|
|
|
2004-05-17 06:53:34 -04:00
|
|
|
# cut off everything but the digits
|
2000-11-14 05:18:44 -05:00
|
|
|
for(@cmds) {
|
|
|
|
$_ =~ s/[a-z\/\.]*//g;
|
2000-11-15 03:21:14 -05:00
|
|
|
}
|
2008-07-26 22:34:27 -04:00
|
|
|
# sort the numbers from low to high
|
2006-09-13 06:48:03 -04:00
|
|
|
foreach my $n (sort { $a <=> $b } @cmds) {
|
2007-04-25 19:18:52 -04:00
|
|
|
if($disabled{$n}) {
|
2006-09-13 06:16:36 -04:00
|
|
|
# skip disabled test cases
|
2007-04-25 19:18:52 -04:00
|
|
|
my $why = "configured as DISABLED";
|
2006-09-13 06:48:03 -04:00
|
|
|
$skipped++;
|
|
|
|
$skipped{$why}++;
|
|
|
|
$teststat[$n]=$why; # store reason for this test case
|
2006-09-13 06:16:36 -04:00
|
|
|
next;
|
|
|
|
}
|
2006-09-13 06:48:03 -04:00
|
|
|
$TESTCASES .= " $n";
|
2000-11-14 05:18:44 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
}
|
2014-03-19 18:28:28 -04:00
|
|
|
else {
|
|
|
|
my $verified="";
|
|
|
|
map {
|
|
|
|
if (-e "$TESTDIR/test$_") {
|
|
|
|
$verified.="$_ ";
|
|
|
|
}
|
|
|
|
} split(" ", $TESTCASES);
|
|
|
|
if($verified eq "") {
|
|
|
|
print "No existing test cases were specified\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
$TESTCASES = $verified;
|
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2017-05-04 10:32:56 -04:00
|
|
|
if($scrambleorder) {
|
|
|
|
# scramble the order of the test cases
|
|
|
|
my @rand;
|
|
|
|
while($TESTCASES) {
|
2017-05-08 04:08:48 -04:00
|
|
|
my @all = split(/ +/, $TESTCASES);
|
|
|
|
if(!$all[0]) {
|
|
|
|
# if the first is blank, shift away it
|
|
|
|
shift @all;
|
|
|
|
}
|
2017-05-04 10:32:56 -04:00
|
|
|
my $r = rand @all;
|
|
|
|
push @rand, $all[$r];
|
|
|
|
$all[$r]="";
|
|
|
|
$TESTCASES = join(" ", @all);
|
|
|
|
}
|
|
|
|
$TESTCASES = join(" ", @rand);
|
|
|
|
}
|
|
|
|
|
2000-11-21 12:07:16 -05:00
|
|
|
#######################################################################
|
|
|
|
# Start the command line log
|
|
|
|
#
|
2007-06-08 13:03:50 -04:00
|
|
|
open(CMDLOG, ">$CURLLOG") ||
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "can't log command lines to $CURLLOG\n";
|
2000-11-21 12:07:16 -05:00
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
#######################################################################
|
2004-04-13 01:57:50 -04:00
|
|
|
|
2007-04-25 16:09:32 -04:00
|
|
|
# Display the contents of the given file. Line endings are canonicalized
|
2008-07-23 22:16:48 -04:00
|
|
|
# and excessively long files are elided
|
2004-04-13 01:57:50 -04:00
|
|
|
sub displaylogcontent {
|
|
|
|
my ($file)=@_;
|
2007-06-07 18:42:26 -04:00
|
|
|
if(open(SINGLE, "<$file")) {
|
2007-04-25 16:09:32 -04:00
|
|
|
my $linecount = 0;
|
|
|
|
my $truncate;
|
|
|
|
my @tail;
|
2007-06-07 18:42:26 -04:00
|
|
|
while(my $string = <SINGLE>) {
|
2007-04-04 20:14:27 -04:00
|
|
|
$string =~ s/\r\n/\n/g;
|
|
|
|
$string =~ s/[\r\f\032]/\n/g;
|
|
|
|
$string .= "\n" unless ($string =~ /\n$/);
|
2008-07-23 22:16:48 -04:00
|
|
|
$string =~ tr/\n//;
|
2009-12-20 21:37:23 -05:00
|
|
|
for my $line (split("\n", $string)) {
|
|
|
|
$line =~ s/\s*\!$//;
|
|
|
|
if ($truncate) {
|
|
|
|
push @tail, " $line\n";
|
|
|
|
} else {
|
|
|
|
logmsg " $line\n";
|
|
|
|
}
|
|
|
|
$linecount++;
|
|
|
|
$truncate = $linecount > 1000;
|
|
|
|
}
|
2007-04-25 16:09:32 -04:00
|
|
|
}
|
2010-01-21 09:25:41 -05:00
|
|
|
if(@tail) {
|
|
|
|
my $tailshow = 200;
|
|
|
|
my $tailskip = 0;
|
|
|
|
my $tailtotal = scalar @tail;
|
|
|
|
if($tailtotal > $tailshow) {
|
|
|
|
$tailskip = $tailtotal - $tailshow;
|
|
|
|
logmsg "=== File too long: $tailskip lines omitted here\n";
|
|
|
|
}
|
|
|
|
for($tailskip .. $tailtotal-1) {
|
|
|
|
logmsg "$tail[$_]";
|
|
|
|
}
|
2007-04-03 08:27:03 -04:00
|
|
|
}
|
2007-06-07 18:42:26 -04:00
|
|
|
close(SINGLE);
|
2004-04-13 01:57:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub displaylogs {
|
2004-04-14 03:04:45 -04:00
|
|
|
my ($testnum)=@_;
|
2007-06-07 18:42:26 -04:00
|
|
|
opendir(DIR, "$LOGDIR") ||
|
2004-04-13 01:57:50 -04:00
|
|
|
die "can't open dir: $!";
|
2007-06-07 18:42:26 -04:00
|
|
|
my @logs = readdir(DIR);
|
|
|
|
closedir(DIR);
|
2004-04-14 03:04:45 -04:00
|
|
|
|
2008-06-18 21:12:02 -04:00
|
|
|
logmsg "== Contents of files in the $LOGDIR/ dir after test $testnum\n";
|
2007-04-06 00:24:13 -04:00
|
|
|
foreach my $log (sort @logs) {
|
|
|
|
if($log =~ /\.(\.|)$/) {
|
|
|
|
next; # skip "." and ".."
|
|
|
|
}
|
|
|
|
if($log =~ /^\.nfs/) {
|
|
|
|
next; # skip ".nfs"
|
|
|
|
}
|
|
|
|
if(($log eq "memdump") || ($log eq "core")) {
|
|
|
|
next; # skip "memdump" and "core"
|
|
|
|
}
|
|
|
|
if((-d "$LOGDIR/$log") || (! -s "$LOGDIR/$log")) {
|
|
|
|
next; # skip directory and empty files
|
|
|
|
}
|
|
|
|
if(($log =~ /^stdout\d+/) && ($log !~ /^stdout$testnum/)) {
|
|
|
|
next; # skip stdoutNnn of other tests
|
|
|
|
}
|
|
|
|
if(($log =~ /^stderr\d+/) && ($log !~ /^stderr$testnum/)) {
|
|
|
|
next; # skip stderrNnn of other tests
|
|
|
|
}
|
|
|
|
if(($log =~ /^upload\d+/) && ($log !~ /^upload$testnum/)) {
|
|
|
|
next; # skip uploadNnn of other tests
|
|
|
|
}
|
|
|
|
if(($log =~ /^curl\d+\.out/) && ($log !~ /^curl$testnum\.out/)) {
|
|
|
|
next; # skip curlNnn.out of other tests
|
|
|
|
}
|
|
|
|
if(($log =~ /^test\d+\.txt/) && ($log !~ /^test$testnum\.txt/)) {
|
|
|
|
next; # skip testNnn.txt of other tests
|
2004-04-13 01:57:50 -04:00
|
|
|
}
|
2007-05-30 13:15:05 -04:00
|
|
|
if(($log =~ /^file\d+\.txt/) && ($log !~ /^file$testnum\.txt/)) {
|
|
|
|
next; # skip fileNnn.txt of other tests
|
|
|
|
}
|
2011-09-05 06:39:50 -04:00
|
|
|
if(($log =~ /^netrc\d+/) && ($log !~ /^netrc$testnum/)) {
|
|
|
|
next; # skip netrcNnn of other tests
|
|
|
|
}
|
2012-01-02 07:40:12 -05:00
|
|
|
if(($log =~ /^trace\d+/) && ($log !~ /^trace$testnum/)) {
|
|
|
|
next; # skip traceNnn of other tests
|
|
|
|
}
|
2010-01-20 13:31:52 -05:00
|
|
|
if(($log =~ /^valgrind\d+/) && ($log !~ /^valgrind$testnum(\..*|)$/)) {
|
2007-10-25 14:07:13 -04:00
|
|
|
next; # skip valgrindNnn of other tests
|
|
|
|
}
|
2007-04-06 00:24:13 -04:00
|
|
|
logmsg "=== Start of file $log\n";
|
|
|
|
displaylogcontent("$LOGDIR/$log");
|
|
|
|
logmsg "=== End of file $log\n";
|
2004-04-13 01:57:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-14 05:18:44 -05:00
|
|
|
#######################################################################
|
|
|
|
# The main test-loop
|
|
|
|
#
|
|
|
|
|
2001-03-12 08:46:23 -05:00
|
|
|
my $failed;
|
2000-11-15 02:09:37 -05:00
|
|
|
my $testnum;
|
2000-11-28 07:49:39 -05:00
|
|
|
my $ok=0;
|
|
|
|
my $total=0;
|
2010-01-17 09:31:13 -05:00
|
|
|
my $lasttest=0;
|
2005-04-22 07:51:06 -04:00
|
|
|
my @at = split(" ", $TESTCASES);
|
2005-04-28 04:23:25 -04:00
|
|
|
my $count=0;
|
2005-04-22 07:51:06 -04:00
|
|
|
|
|
|
|
$start = time();
|
2001-04-24 17:09:53 -04:00
|
|
|
|
2005-04-22 07:51:06 -04:00
|
|
|
foreach $testnum (@at) {
|
2000-11-13 11:06:16 -05:00
|
|
|
|
2003-06-26 07:44:01 -04:00
|
|
|
$lasttest = $testnum if($testnum > $lasttest);
|
2005-04-22 07:51:06 -04:00
|
|
|
$count++;
|
2003-06-26 07:44:01 -04:00
|
|
|
|
2013-08-10 16:55:59 -04:00
|
|
|
my $error = singletest($run_event_based, $testnum, $count, scalar(@at));
|
2003-06-26 07:44:01 -04:00
|
|
|
if($error < 0) {
|
2003-01-27 08:51:35 -05:00
|
|
|
# not a test we can run
|
2001-04-24 17:09:53 -04:00
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
2003-01-27 08:51:35 -05:00
|
|
|
$total++; # number of tests we've run
|
|
|
|
|
2001-03-12 08:46:23 -05:00
|
|
|
if($error>0) {
|
2001-05-23 11:02:58 -04:00
|
|
|
$failed.= "$testnum ";
|
2004-04-13 01:57:50 -04:00
|
|
|
if($postmortem) {
|
|
|
|
# display all files in log/ in a nice way
|
2004-04-14 03:04:45 -04:00
|
|
|
displaylogs($testnum);
|
2004-04-13 01:57:50 -04:00
|
|
|
}
|
2001-03-12 08:46:23 -05:00
|
|
|
if(!$anyway) {
|
|
|
|
# a test failed, abort
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "\n - abort tests\n";
|
2001-03-12 08:46:23 -05:00
|
|
|
last;
|
|
|
|
}
|
2000-11-17 10:07:29 -05:00
|
|
|
}
|
2000-11-28 07:49:39 -05:00
|
|
|
elsif(!$error) {
|
2003-01-27 08:51:35 -05:00
|
|
|
$ok++; # successful test counter
|
2000-11-28 07:49:39 -05:00
|
|
|
}
|
2000-11-13 11:06:16 -05:00
|
|
|
|
|
|
|
# loop for next test
|
|
|
|
}
|
|
|
|
|
2009-12-21 10:50:24 -05:00
|
|
|
my $sofar = time() - $start;
|
|
|
|
|
2000-11-21 12:07:16 -05:00
|
|
|
#######################################################################
|
|
|
|
# Close command log
|
|
|
|
#
|
2007-06-07 18:42:26 -04:00
|
|
|
close(CMDLOG);
|
2000-11-21 12:07:16 -05:00
|
|
|
|
2003-10-24 04:53:59 -04:00
|
|
|
# Tests done, stop the servers
|
2006-11-20 11:58:04 -05:00
|
|
|
stopservers($verbose);
|
2000-11-21 10:48:40 -05:00
|
|
|
|
2003-08-14 08:59:54 -04:00
|
|
|
my $all = $total + $skipped;
|
|
|
|
|
2009-12-21 10:50:24 -05:00
|
|
|
runtimestats($lasttest);
|
|
|
|
|
2001-03-12 07:58:30 -05:00
|
|
|
if($total) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg sprintf("TESTDONE: $ok tests out of $total reported OK: %d%%\n",
|
|
|
|
$ok/$total*100);
|
2001-03-12 08:46:23 -05:00
|
|
|
|
|
|
|
if($ok != $total) {
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "TESTFAIL: These test cases failed: $failed\n";
|
2001-03-12 08:46:23 -05:00
|
|
|
}
|
2001-03-12 07:58:30 -05:00
|
|
|
}
|
|
|
|
else {
|
2007-04-03 08:27:03 -04:00
|
|
|
logmsg "TESTFAIL: No tests were performed\n";
|
2001-03-12 07:58:30 -05:00
|
|
|
}
|
2003-08-14 08:59:54 -04:00
|
|
|
|
|
|
|
if($all) {
|
2009-12-18 14:17:14 -05:00
|
|
|
logmsg "TESTDONE: $all tests were considered during ".
|
|
|
|
sprintf("%.0f", $sofar) ." seconds.\n";
|
2003-08-14 08:59:54 -04:00
|
|
|
}
|
|
|
|
|
2011-01-20 17:17:22 -05:00
|
|
|
if($skipped && !$short) {
|
2003-06-26 07:44:01 -04:00
|
|
|
my $s=0;
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg "TESTINFO: $skipped tests were skipped due to these restraints:\n";
|
2003-06-26 07:44:01 -04:00
|
|
|
|
|
|
|
for(keys %skipped) {
|
|
|
|
my $r = $_;
|
2003-08-14 08:59:54 -04:00
|
|
|
printf "TESTINFO: \"%s\" %d times (", $r, $skipped{$_};
|
2003-06-26 07:44:01 -04:00
|
|
|
|
|
|
|
# now show all test case numbers that had this reason for being
|
|
|
|
# skipped
|
|
|
|
my $c=0;
|
2012-11-12 07:50:00 -05:00
|
|
|
my $max = 9;
|
2007-04-03 11:59:52 -04:00
|
|
|
for(0 .. scalar @teststat) {
|
2003-06-26 07:44:01 -04:00
|
|
|
my $t = $_;
|
2010-01-17 09:47:30 -05:00
|
|
|
if($teststat[$_] && ($teststat[$_] eq $r)) {
|
2012-11-12 07:50:00 -05:00
|
|
|
if($c < $max) {
|
|
|
|
logmsg ", " if($c);
|
|
|
|
logmsg $_;
|
|
|
|
}
|
2003-06-26 07:44:01 -04:00
|
|
|
$c++;
|
|
|
|
}
|
|
|
|
}
|
2012-11-12 07:50:00 -05:00
|
|
|
if($c > $max) {
|
|
|
|
logmsg " and ".($c-$max)." more";
|
|
|
|
}
|
2005-05-25 08:26:20 -04:00
|
|
|
logmsg ")\n";
|
2003-06-26 07:44:01 -04:00
|
|
|
}
|
2003-03-15 11:43:58 -05:00
|
|
|
}
|
2008-04-23 19:55:34 -04:00
|
|
|
|
2001-05-28 11:26:15 -04:00
|
|
|
if($total && ($ok != $total)) {
|
|
|
|
exit 1;
|
|
|
|
}
|