|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package servers; |
|
|
|
|
|
use IO::Socket; |
|
|
use strict; |
|
|
use warnings; |
|
|
|
|
|
BEGIN { |
|
|
use base qw(Exporter); |
|
|
|
|
|
our @EXPORT = ( |
|
|
|
|
|
qw( |
|
|
$SOCKSIN |
|
|
$err_unexpected |
|
|
$debugprotocol |
|
|
$stunnel |
|
|
), |
|
|
|
|
|
|
|
|
qw( |
|
|
initserverconfig |
|
|
) |
|
|
); |
|
|
|
|
|
our @EXPORT_OK = ( |
|
|
|
|
|
qw( |
|
|
checkcmd |
|
|
clearlocks |
|
|
serverfortest |
|
|
stopserver |
|
|
stopservers |
|
|
subvariables |
|
|
localhttp |
|
|
), |
|
|
|
|
|
|
|
|
qw( |
|
|
protoport |
|
|
) |
|
|
); |
|
|
} |
|
|
|
|
|
use serverhelp qw( |
|
|
serverfactors |
|
|
servername_id |
|
|
servername_str |
|
|
servername_canon |
|
|
server_pidfilename |
|
|
server_portfilename |
|
|
server_logfilename |
|
|
); |
|
|
|
|
|
use sshhelp qw( |
|
|
$hstpubmd5f |
|
|
$hstpubsha256f |
|
|
$sshexe |
|
|
$sftpexe |
|
|
$sftpconfig |
|
|
$sshdlog |
|
|
$sftplog |
|
|
$sftpcmds |
|
|
display_sshdconfig |
|
|
display_sftpconfig |
|
|
display_sshdlog |
|
|
display_sftplog |
|
|
find_sshd |
|
|
find_ssh |
|
|
find_sftp |
|
|
find_httptlssrv |
|
|
sshversioninfo |
|
|
); |
|
|
|
|
|
use pathhelp qw( |
|
|
exe_ext |
|
|
os_is_win |
|
|
build_sys_abs_path |
|
|
sys_native_abs_path |
|
|
); |
|
|
|
|
|
use processhelp; |
|
|
use globalconfig; |
|
|
use testutil qw( |
|
|
logmsg |
|
|
runclient |
|
|
runclientoutput |
|
|
); |
|
|
|
|
|
|
|
|
my %serverpidfile; |
|
|
my %serverportfile; |
|
|
my $sshdvernum; |
|
|
my $sshdverstr; |
|
|
my $sshderror; |
|
|
my %doesntrun; |
|
|
my %PORT = (nolisten => 47); |
|
|
my $server_response_maxtime=13; |
|
|
my $httptlssrv = find_httptlssrv(); |
|
|
my %run; |
|
|
my %runcert; |
|
|
my $CLIENTIP="127.0.0.1"; |
|
|
my $CLIENT6IP="[::1]"; |
|
|
my $posix_pwd = build_sys_abs_path($pwd); |
|
|
my $h2cver = "h2c"; |
|
|
my $portrange = 999; |
|
|
|
|
|
|
|
|
my $HOSTIP="127.0.0.1"; |
|
|
my $HOST6IP="[::1]"; |
|
|
my $HTTPUNIXPATH; |
|
|
my $SOCKSUNIXPATH; |
|
|
my $SSHSRVMD5 = "[uninitialized]"; |
|
|
my $SSHSRVSHA256 = "[uninitialized]"; |
|
|
my $USER; |
|
|
my $sshdid; |
|
|
my $ftpchecktime=1; |
|
|
|
|
|
|
|
|
our $SOCKSIN="socksd-request.log"; |
|
|
our $err_unexpected; |
|
|
our $debugprotocol; |
|
|
our $stunnel; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub checkcmd { |
|
|
my ($cmd, @extrapaths)=@_; |
|
|
my @paths; |
|
|
if ($^O eq 'MSWin32' || $^O eq 'dos' || $^O eq 'os2') { |
|
|
|
|
|
@paths=(split(';', $ENV{'PATH'}), @extrapaths); |
|
|
} |
|
|
else { |
|
|
@paths=(split(':', $ENV{'PATH'}), "/usr/sbin", "/usr/local/sbin", |
|
|
"/sbin", "/usr/bin", "/usr/local/bin", @extrapaths); |
|
|
} |
|
|
for(@paths) { |
|
|
if( -x "$_/$cmd" . exe_ext('SYS') && ! -d "$_/$cmd" . exe_ext('SYS')) { |
|
|
|
|
|
return "$_/$cmd"; |
|
|
} |
|
|
} |
|
|
return ""; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub getfreeport { |
|
|
my ($ipnum) = @_; |
|
|
my $server = IO::Socket->new(LocalPort => 0, |
|
|
Domain => $ipnum == 6 ? AF_INET6 : AF_INET, |
|
|
Type => SOCK_STREAM, |
|
|
Reuse => 1, |
|
|
Listen => 10 ) |
|
|
or die "Couldn't create tcp server socket: $@\n"; |
|
|
|
|
|
return $server->sockport(); |
|
|
} |
|
|
|
|
|
use File::Temp qw/ tempfile/; |
|
|
|
|
|
|
|
|
|
|
|
sub initserverconfig { |
|
|
my ($fh, $socks) = tempfile("curl-socksd-XXXXXXXX", TMPDIR => 1); |
|
|
close($fh); |
|
|
unlink($socks); |
|
|
my ($f2, $http) = tempfile("curl-http-XXXXXXXX", TMPDIR => 1); |
|
|
close($f2); |
|
|
unlink($http); |
|
|
$SOCKSUNIXPATH = $socks; |
|
|
$HTTPUNIXPATH = $http; |
|
|
$stunnel = checkcmd("stunnel4") || checkcmd("tstunnel") || checkcmd("stunnel"); |
|
|
|
|
|
|
|
|
$USER = $ENV{USER}; |
|
|
if (!$USER) { |
|
|
$USER = $ENV{USERNAME}; |
|
|
if (!$USER) { |
|
|
$USER = $ENV{LOGNAME}; |
|
|
} |
|
|
} |
|
|
init_serverpidfile_hash(); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub init_serverpidfile_hash { |
|
|
for my $proto (('ftp', 'gopher', 'http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) { |
|
|
for my $ssl (('', 's')) { |
|
|
for my $ipvnum ((4, 6)) { |
|
|
for my $idnum ((1, 2, 3)) { |
|
|
my $serv = servername_id("$proto$ssl", $ipvnum, $idnum); |
|
|
my $pidf = server_pidfilename("$LOGDIR/$PIDDIR", "$proto$ssl", |
|
|
$ipvnum, $idnum); |
|
|
$serverpidfile{$serv} = $pidf; |
|
|
my $portf = server_portfilename("$LOGDIR/$PIDDIR", "$proto$ssl", |
|
|
$ipvnum, $idnum); |
|
|
$serverportfile{$serv} = $portf; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
for my $proto (('tftp', 'sftp', 'socks', 'ssh', 'rtsp', 'httptls', |
|
|
'dict', 'smb', 'smbs', 'telnet', 'mqtt', 'verynormalprotocol')) { |
|
|
for my $ipvnum ((4, 6)) { |
|
|
for my $idnum ((1, 2)) { |
|
|
my $serv = servername_id($proto, $ipvnum, $idnum); |
|
|
my $pidf = server_pidfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
$serverpidfile{$serv} = $pidf; |
|
|
my $portf = server_portfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
$serverportfile{$serv} = $portf; |
|
|
} |
|
|
} |
|
|
} |
|
|
for my $proto (('http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) { |
|
|
for my $ssl (('', 's')) { |
|
|
my $serv = servername_id("$proto$ssl", "unix", 1); |
|
|
my $pidf = server_pidfilename("$LOGDIR/$PIDDIR", "$proto$ssl", |
|
|
"unix", 1); |
|
|
$serverpidfile{$serv} = $pidf; |
|
|
my $portf = server_portfilename("$LOGDIR/$PIDDIR", "$proto$ssl", |
|
|
"unix", 1); |
|
|
$serverportfile{$serv} = $portf; |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub clearlocks { |
|
|
my $dir = $_[0]; |
|
|
my $done = 0; |
|
|
|
|
|
if(os_is_win()) { |
|
|
$dir = sys_native_abs_path($dir); |
|
|
|
|
|
if ($^O eq 'MSWin32') { |
|
|
$dir =~ s/\//\\/g; |
|
|
} |
|
|
else { |
|
|
$dir =~ s/\//\\\\/g; |
|
|
} |
|
|
my $handle = "handle"; |
|
|
if($ENV{"PROCESSOR_ARCHITECTURE"} =~ /64$/) { |
|
|
$handle = "handle64"; |
|
|
} |
|
|
if(checkcmd($handle)) { |
|
|
|
|
|
my $cmd = "$handle $dir -accepteula -nobanner"; |
|
|
logmsg "clearlocks: Executing query: '$cmd'\n"; |
|
|
my @handles = `$cmd`; |
|
|
for my $tryhandle (@handles) { |
|
|
|
|
|
if($tryhandle =~ /^(\S+)\s+pid:\s+(\d+)\s+type:\s+(\w+)\s+([0-9A-F]+):\s+(.+)\r\r/) { |
|
|
logmsg "clearlocks: Found $3 lock of '$5' ($4) by $1 ($2)\n"; |
|
|
|
|
|
if("$3" eq "File" && "$1" ne "tstunnel.exe") { |
|
|
logmsg "clearlocks: Killing IMAGENAME eq $1 and PID eq $2\n"; |
|
|
|
|
|
my $cmd = "taskkill.exe -f -t -fi \"IMAGENAME eq $1\" -fi \"PID eq $2\" >nul 2>&1"; |
|
|
logmsg "clearlocks: Executing kill: '$cmd'\n"; |
|
|
system($cmd); |
|
|
$done = 1; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
logmsg "Warning: 'handle' tool not found.\n"; |
|
|
} |
|
|
} |
|
|
return $done; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub checkdied { |
|
|
my $pid = $_[0]; |
|
|
if((not defined $pid) || $pid <= 0) { |
|
|
return 0; |
|
|
} |
|
|
use POSIX ":sys_wait_h"; |
|
|
my $rc = pidwait($pid, &WNOHANG); |
|
|
return ($rc == $pid)?1:0; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub serverfortest { |
|
|
my (@what)=@_; |
|
|
|
|
|
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", 4); |
|
|
} |
|
|
else { |
|
|
return ("curl lacks $server server support", 4); |
|
|
} |
|
|
} |
|
|
} |
|
|
$what[$i] = "$server$lnrest" if($tlsext); |
|
|
} |
|
|
} |
|
|
|
|
|
return &startservers(@what); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub startnew { |
|
|
my ($cmd, $pidfile, $timeout, $fakepidfile)=@_; |
|
|
|
|
|
logmsg "startnew: $cmd\n" if ($verbose); |
|
|
|
|
|
my $child = fork(); |
|
|
|
|
|
if(not defined $child) { |
|
|
logmsg "startnew: fork() failure detected\n"; |
|
|
return (-1,-1); |
|
|
} |
|
|
|
|
|
if(0 == $child) { |
|
|
|
|
|
|
|
|
|
|
|
$| = 1; |
|
|
|
|
|
|
|
|
|
|
|
exec("exec $cmd") || die "Can't exec() $cmd: $!"; |
|
|
|
|
|
|
|
|
|
|
|
die "error: exec() has returned"; |
|
|
} |
|
|
|
|
|
|
|
|
if ($fakepidfile) { |
|
|
if(open(my $out, ">", "$pidfile")) { |
|
|
print $out $child . "\n"; |
|
|
close($out) || die "Failure writing pidfile"; |
|
|
logmsg "startnew: $pidfile faked with pid=$child\n" if($verbose); |
|
|
} |
|
|
else { |
|
|
logmsg "startnew: failed to write fake $pidfile with pid=$child\n"; |
|
|
} |
|
|
|
|
|
portable_sleep($timeout); |
|
|
if (checkdied($child)) { |
|
|
logmsg "startnew: child process has failed to start\n" if($verbose); |
|
|
return (-1,-1); |
|
|
} |
|
|
} |
|
|
|
|
|
my $pid2 = 0; |
|
|
my $count = $timeout; |
|
|
while($count--) { |
|
|
$pid2 = pidfromfile($pidfile); |
|
|
if(($pid2 > 0) && pidexists($pid2)) { |
|
|
|
|
|
|
|
|
|
|
|
last; |
|
|
} |
|
|
if (checkdied($child)) { |
|
|
logmsg "startnew: child process has died, server might start up\n" |
|
|
if($verbose); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$count >>= 2; |
|
|
} |
|
|
sleep(1); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ($child, $pid2); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub protoport { |
|
|
my ($proto) = @_; |
|
|
return $PORT{$proto} || "[not running]"; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub stopserver { |
|
|
my ($server, $pidlist) = @_; |
|
|
my $ipvnum = 4; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) { |
|
|
my $proto = $1; |
|
|
my $idnum = ($2 && ($2 > 1)) ? $2 : 1; |
|
|
$ipvnum = ($3 && ($3 =~ /6$/)) ? 6 : 4; |
|
|
killsockfilters("$LOGDIR/$PIDDIR", $proto, $ipvnum, $idnum, $verbose); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
my @killservers; |
|
|
if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) { |
|
|
|
|
|
push @killservers, "${1}${2}"; |
|
|
} |
|
|
elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|-unix|))$/) { |
|
|
|
|
|
push @killservers, "${1}s${2}"; |
|
|
} |
|
|
elsif($server =~ /^(socks)((\d*)(-ipv6|))$/) { |
|
|
|
|
|
push @killservers, "ssh${2}"; |
|
|
} |
|
|
elsif($server =~ /^(ssh)((\d*)(-ipv6|))$/) { |
|
|
|
|
|
push @killservers, "socks${2}"; |
|
|
} |
|
|
if($server eq "http" or $server eq "https") { |
|
|
|
|
|
|
|
|
|
|
|
push @killservers, "http/2"; |
|
|
push @killservers, "http/3"; |
|
|
} |
|
|
push @killservers, $server; |
|
|
|
|
|
|
|
|
|
|
|
foreach my $server (@killservers) { |
|
|
if($run{$server}) { |
|
|
|
|
|
$pidlist .= " $run{$server}"; |
|
|
$run{$server} = 0; |
|
|
} |
|
|
$runcert{$server} = 0 if($runcert{$server}); |
|
|
} |
|
|
killpid($verbose, $pidlist); |
|
|
|
|
|
|
|
|
|
|
|
my $result = 0; |
|
|
foreach my $server (@killservers) { |
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
foreach my $server (@killservers) { |
|
|
|
|
|
my @lockfiles = ( |
|
|
"$LOGDIR/$LOCKDIR/$server.lock", |
|
|
"$LOGDIR/$LOCKDIR/$server-IPv$ipvnum.lock", |
|
|
"$LOGDIR/$LOCKDIR/sws-".uc($server)."-IPv$ipvnum.lock" |
|
|
); |
|
|
foreach my $lockfile (@lockfiles) { |
|
|
if(-f $lockfile) { |
|
|
unlink($lockfile); |
|
|
logmsg "RUN: kill $server, cleaned up $lockfile\n" if ($verbose); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
return $result; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub getexternalproxyflags { |
|
|
return " --proxy $proxy_address "; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifyhttp { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port_or_path, $do_http3) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
my $bonus=""; |
|
|
|
|
|
my $port = ($ipvnum eq "unix") ? 80 : $port_or_path; |
|
|
my $infix = ($do_http3) ? "_h3" : ""; |
|
|
|
|
|
my $verifyout = "$LOGDIR/". |
|
|
servername_canon($proto, $ipvnum, $idnum) .$infix .'_verify.out'; |
|
|
unlink($verifyout) if(-f $verifyout); |
|
|
|
|
|
my $verifylog = "$LOGDIR/". |
|
|
servername_canon($proto, $ipvnum, $idnum) .$infix .'_verify.log'; |
|
|
unlink($verifylog) if(-f $verifylog); |
|
|
|
|
|
if($proto eq "gopher") { |
|
|
|
|
|
$bonus="1/"; |
|
|
} |
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime "; |
|
|
$flags .= "--output $verifyout "; |
|
|
$flags .= "--silent "; |
|
|
$flags .= "--verbose "; |
|
|
$flags .= "--globoff "; |
|
|
$flags .= "--unix-socket '$port_or_path' " if $ipvnum eq "unix"; |
|
|
$flags .= "--insecure " if($proto eq 'https'); |
|
|
if($proxy_address) { |
|
|
$flags .= getexternalproxyflags(); |
|
|
} |
|
|
$flags .= "--http3-only " if($do_http3); |
|
|
$flags .= "\"$proto://$ip:$port/${bonus}verifiedserver\""; |
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my $res = runclient($cmd); |
|
|
|
|
|
$res >>= 8; |
|
|
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(my $file, "<", "$verifylog")) { |
|
|
while(my $string = <$file>) { |
|
|
logmsg "RUN: $string" if($string !~ /^([ \t]*)$/); |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
} |
|
|
|
|
|
my $data; |
|
|
if(open(my $file, "<", "$verifyout")) { |
|
|
while(my $string = <$file>) { |
|
|
$data = $string; |
|
|
last; |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
if($data && ($data =~ /WE ROOLZ: (\d+)/)) { |
|
|
$pid = 0+$1; |
|
|
} |
|
|
elsif($res == 6) { |
|
|
|
|
|
logmsg "RUN: failed to resolve host ($proto://$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; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifyftp { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
my $time=time(); |
|
|
my $extra=""; |
|
|
|
|
|
my $verifylog = "$LOGDIR/". |
|
|
servername_canon($proto, $ipvnum, $idnum) .'_verify.log'; |
|
|
unlink($verifylog) if(-f $verifylog); |
|
|
|
|
|
if($proto eq "ftps") { |
|
|
$extra .= "--insecure --ftp-ssl-control "; |
|
|
} |
|
|
|
|
|
my $flags = "--max-time $server_response_maxtime "; |
|
|
$flags .= "--silent "; |
|
|
$flags .= "--verbose "; |
|
|
$flags .= "--globoff "; |
|
|
$flags .= $extra; |
|
|
if($proxy_address) { |
|
|
$flags .= getexternalproxyflags(); |
|
|
} |
|
|
$flags .= "\"$proto://$ip:$port/verifiedserver\""; |
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my @data = runclientoutput($cmd); |
|
|
|
|
|
my $res = $? >> 8; |
|
|
if($res & 128) { |
|
|
logmsg "RUN: curl command died with a coredump\n"; |
|
|
return -1; |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
foreach my $line (@data) { |
|
|
if($line =~ /WE ROOLZ: (\d+)/) { |
|
|
|
|
|
$pid = 0+$1; |
|
|
last; |
|
|
} |
|
|
} |
|
|
if($pid <= 0 && @data && $data[0]) { |
|
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n"; |
|
|
return 0; |
|
|
} |
|
|
|
|
|
|
|
|
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; |
|
|
|
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifyrtsp { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
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 "; |
|
|
if($proxy_address) { |
|
|
$flags .= getexternalproxyflags(); |
|
|
} |
|
|
|
|
|
$flags .= "\"http://$ip:$port/verifiedserver\""; |
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my $res = runclient($cmd); |
|
|
|
|
|
$res >>= 8; |
|
|
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(my $file, "<", "$verifylog")) { |
|
|
while(my $string = <$file>) { |
|
|
logmsg "RUN: $string" if($string !~ /^[ \t]*$/); |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
} |
|
|
|
|
|
my $data; |
|
|
if(open(my $file, "<", "$verifyout")) { |
|
|
while(my $string = <$file>) { |
|
|
$data = $string; |
|
|
last; |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
if($data && ($data =~ /RTSP_SERVER WE ROOLZ: (\d+)/)) { |
|
|
$pid = 0+$1; |
|
|
} |
|
|
elsif($res == 6) { |
|
|
|
|
|
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; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifyssh { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $pidfile = server_pidfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
my $pid = processexists($pidfile); |
|
|
if($pid < 0) { |
|
|
logmsg "RUN: SSH server has died after starting up\n"; |
|
|
} |
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifysftp { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
my $verified = 0; |
|
|
|
|
|
my $sftp = find_sftp(); |
|
|
if(!$sftp) { |
|
|
logmsg "RUN: SFTP server cannot find $sftpexe\n"; |
|
|
return -1; |
|
|
} |
|
|
|
|
|
my $ssh = find_ssh(); |
|
|
if(!$ssh) { |
|
|
logmsg "RUN: SFTP server cannot find $sshexe\n"; |
|
|
return -1; |
|
|
} |
|
|
|
|
|
|
|
|
my $cmd = "\"$sftp\" -b $LOGDIR/$PIDDIR/$sftpcmds -F $LOGDIR/$PIDDIR/$sftpconfig -S \"$ssh\" $ip > $sftplog 2>&1"; |
|
|
my $res = runclient($cmd); |
|
|
|
|
|
if(open(my $sftplogfile, "<", "$sftplog")) { |
|
|
while(<$sftplogfile>) { |
|
|
if(/^Remote working directory: /) { |
|
|
$verified = 1; |
|
|
last; |
|
|
} |
|
|
} |
|
|
close($sftplogfile); |
|
|
} |
|
|
return $verified; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifyhttptls { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
my $pidfile = server_pidfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
|
|
|
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 "; |
|
|
$flags .= "--tlsauthtype SRP "; |
|
|
$flags .= "--tlsuser jsmith "; |
|
|
$flags .= "--tlspassword abc "; |
|
|
if($proxy_address) { |
|
|
$flags .= getexternalproxyflags(); |
|
|
} |
|
|
$flags .= "\"https://$ip:$port/verifiedserver\""; |
|
|
|
|
|
my $cmd = "$VCURL $flags 2>$verifylog"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my $res = runclient($cmd); |
|
|
|
|
|
$res >>= 8; |
|
|
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(my $file, "<", "$verifylog")) { |
|
|
while(my $string = <$file>) { |
|
|
logmsg "RUN: $string" if($string !~ /^([ \t]*)$/); |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
} |
|
|
|
|
|
my $data; |
|
|
if(open(my $file, "<", "$verifyout")) { |
|
|
while(my $string = <$file>) { |
|
|
$data .= $string; |
|
|
} |
|
|
close($file); |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
if($data && ($data =~ /(GNUTLS|GnuTLS)/) && ($pid = processexists($pidfile))) { |
|
|
if($pid < 0) { |
|
|
logmsg "RUN: $server server has died after starting up\n"; |
|
|
} |
|
|
return $pid; |
|
|
} |
|
|
elsif($res == 6) { |
|
|
|
|
|
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; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifymqtt { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $pidfile = server_pidfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
my $pid = processexists($pidfile); |
|
|
if($pid < 0) { |
|
|
logmsg "RUN: MQTT server has died after starting up\n"; |
|
|
} |
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifysocks { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $pidfile = server_pidfilename("$LOGDIR/$PIDDIR", $proto, $ipvnum, |
|
|
$idnum); |
|
|
my $pid = processexists($pidfile); |
|
|
if($pid < 0) { |
|
|
logmsg "RUN: SOCKS server has died after starting up\n"; |
|
|
} |
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifysmb { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
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"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my @data = runclientoutput($cmd); |
|
|
|
|
|
my $res = $? >> 8; |
|
|
if($res & 128) { |
|
|
logmsg "RUN: curl command died with a coredump\n"; |
|
|
return -1; |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
foreach my $line (@data) { |
|
|
if($line =~ /WE ROOLZ: (\d+)/) { |
|
|
|
|
|
$pid = 0+$1; |
|
|
last; |
|
|
} |
|
|
} |
|
|
if($pid <= 0 && @data && $data[0]) { |
|
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n"; |
|
|
return 0; |
|
|
} |
|
|
|
|
|
|
|
|
my $took = int(0.5+time()-$time); |
|
|
|
|
|
if($verbose) { |
|
|
logmsg "RUN: Verifying our test $server server took $took seconds\n"; |
|
|
} |
|
|
|
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub verifytelnet { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
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"; |
|
|
|
|
|
|
|
|
logmsg "RUN: $cmd\n" if($verbose); |
|
|
my @data = runclientoutput($cmd); |
|
|
|
|
|
my $res = $? >> 8; |
|
|
if($res & 128) { |
|
|
logmsg "RUN: curl command died with a coredump\n"; |
|
|
return -1; |
|
|
} |
|
|
|
|
|
my $pid = 0; |
|
|
foreach my $line (@data) { |
|
|
if($line =~ /WE ROOLZ: (\d+)/) { |
|
|
|
|
|
$pid = 0+$1; |
|
|
last; |
|
|
} |
|
|
} |
|
|
if($pid <= 0 && @data && $data[0]) { |
|
|
|
|
|
logmsg "RUN: Unknown server on our $server port: $port\n"; |
|
|
return 0; |
|
|
} |
|
|
|
|
|
|
|
|
my $took = int(0.5+time()-$time); |
|
|
|
|
|
if($verbose) { |
|
|
logmsg "RUN: Verifying our test $server server took $took seconds\n"; |
|
|
} |
|
|
|
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
my %protofunc = ('http' => \&verifyhttp, |
|
|
'https' => \&verifyhttp, |
|
|
'rtsp' => \&verifyrtsp, |
|
|
'ftp' => \&verifyftp, |
|
|
'pop3' => \&verifyftp, |
|
|
'imap' => \&verifyftp, |
|
|
'smtp' => \&verifyftp, |
|
|
'ftps' => \&verifyftp, |
|
|
'pop3s' => \&verifyftp, |
|
|
'imaps' => \&verifyftp, |
|
|
'mqtt' => \&verifymqtt, |
|
|
'smtps' => \&verifyftp, |
|
|
'tftp' => \&verifyftp, |
|
|
'ssh' => \&verifyssh, |
|
|
'socks' => \&verifysocks, |
|
|
'socks5unix' => \&verifysocks, |
|
|
'gopher' => \&verifyhttp, |
|
|
'httptls' => \&verifyhttptls, |
|
|
'dict' => \&verifyftp, |
|
|
'smb' => \&verifysmb, |
|
|
'telnet' => \&verifytelnet); |
|
|
|
|
|
sub verifyserver { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port) = @_; |
|
|
|
|
|
my $count = 30; |
|
|
my $pid; |
|
|
|
|
|
while($count--) { |
|
|
my $fun = $protofunc{$proto}; |
|
|
|
|
|
$pid = &$fun($proto, $ipvnum, $idnum, $ip, $port); |
|
|
|
|
|
if($pid > 0) { |
|
|
last; |
|
|
} |
|
|
elsif($pid < 0) { |
|
|
|
|
|
return 0; |
|
|
} |
|
|
sleep(1); |
|
|
} |
|
|
return $pid; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsiveserver { |
|
|
my ($proto, $ipvnum, $idnum, $ip, $port, $do_http3) = @_; |
|
|
my $prev_verbose = $verbose; |
|
|
|
|
|
$verbose = 0; |
|
|
my $fun = $protofunc{$proto}; |
|
|
my $pid = &$fun($proto, $ipvnum, $idnum, $ip, $port, $do_http3); |
|
|
$verbose = $prev_verbose; |
|
|
|
|
|
if($pid > 0) { |
|
|
return 1; |
|
|
} |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
logmsg " server precheck FAILED (unresponsive $srvrname server)\n"; |
|
|
return 0; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runhttpserver { |
|
|
my ($proto, $verb, $alt, $port_or_path) = @_; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
my $exe = "$perl $srcdir/http-server.pl"; |
|
|
my $verbose_flag = "--verbose "; |
|
|
my $keepalive_secs = 30; |
|
|
|
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
elsif($alt eq "proxy") { |
|
|
|
|
|
$idnum = 2; |
|
|
} |
|
|
elsif($alt eq "unix") { |
|
|
|
|
|
$ipvnum = "unix"; |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $portfile = $serverportfile{$server}; |
|
|
|
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--gopher " if($proto eq "gopher"); |
|
|
$flags .= "--connect $HOSTIP " if($alt eq "proxy"); |
|
|
$flags .= "--keepalive $keepalive_secs "; |
|
|
$flags .= $verbose_flag if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--portfile $portfile "; |
|
|
$flags .= "--config $LOGDIR/$SERVERCMD "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
if($ipvnum eq "unix") { |
|
|
$flags .= "--unix-socket '$port_or_path' "; |
|
|
} else { |
|
|
$flags .= "--ipv$ipvnum --port 0 "; |
|
|
} |
|
|
$flags .= "--srcdir \"$srcdir\""; |
|
|
|
|
|
my $cmd = "$exe $flags"; |
|
|
my ($httppid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($httppid <= 0 || !pidexists($httppid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
|
|
|
|
|
|
my $port = 0; |
|
|
if(!$port_or_path) { |
|
|
$port = $port_or_path = pidfromfile($portfile); |
|
|
} |
|
|
|
|
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port_or_path); |
|
|
if(!$pid3) { |
|
|
logmsg "RUN: $srvrname server failed verification\n"; |
|
|
|
|
|
stopserver($server, "$httppid $pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
$pid2 = $pid3; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server is on PID $httppid port $port_or_path\n"; |
|
|
} |
|
|
|
|
|
return (0, $httppid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runhttp2server { |
|
|
my ($verb) = @_; |
|
|
my $proto="http/2"; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 0; |
|
|
my $exe = "$perl $srcdir/http2-server.pl"; |
|
|
my $verbose_flag = "--verbose "; |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--nghttpx \"$ENV{'NGHTTPX'}\" "; |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--connect $HOSTIP:" . protoport("http") . " "; |
|
|
$flags .= $verbose_flag if($debugprotocol); |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $port2 = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port --port2 $port2 $flags"; |
|
|
my $cmd = "$exe $aflags"; |
|
|
my ($http2pid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($http2pid <= 0 || !pidexists($http2pid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$http2pid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $http2pid ". |
|
|
"http-port $port https-port $port2 ". |
|
|
"backend $HOSTIP:" . protoport("http") . "\n"; |
|
|
} |
|
|
|
|
|
return (0+!$http2pid, $http2pid, $pid2, $port, $port2); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runhttp3server { |
|
|
my ($verb, $cert) = @_; |
|
|
my $proto="http/3"; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 0; |
|
|
my $exe = "$perl $srcdir/http3-server.pl"; |
|
|
my $verbose_flag = "--verbose "; |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--nghttpx \"$ENV{'NGHTTPX'}\" "; |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--connect $HOSTIP:" . protoport("http") . " "; |
|
|
$flags .= "--cert \"$cert\" " if($cert); |
|
|
$flags .= $verbose_flag if($debugprotocol); |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port $flags"; |
|
|
my $cmd = "$exe $aflags"; |
|
|
my ($http3pid, $pid3) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($http3pid <= 0 || !pidexists($http3pid)) { |
|
|
|
|
|
stopserver($server, "$pid3"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$http3pid = $pid3 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $http3pid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$http3pid, $http3pid, $pid3, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runhttpsserver { |
|
|
my ($verb, $proto, $proxy, $certfile) = @_; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($proxy eq "proxy") { |
|
|
|
|
|
$idnum = 2; |
|
|
} |
|
|
|
|
|
if(!$stunnel) { |
|
|
return (4, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
$certfile = 'stunnel.pem' unless($certfile); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --proto $proto "; |
|
|
$flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem'); |
|
|
$flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" "; |
|
|
if($proto eq "gophers") { |
|
|
$flags .= "--connect " . protoport("gopher"); |
|
|
} |
|
|
elsif(!$proxy) { |
|
|
$flags .= "--connect " . protoport("http"); |
|
|
} |
|
|
else { |
|
|
|
|
|
$flags .= "--connect " . protoport("httpproxy"); |
|
|
} |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $options = "$flags --accept $port"; |
|
|
my $cmd = "$perl $srcdir/secureserver.pl $options"; |
|
|
my ($httpspid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($httpspid <= 0 || !pidexists($httpspid)) { |
|
|
|
|
|
|
|
|
|
|
|
$doesntrun{$pidfile} = 1; |
|
|
$httpspid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
|
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server is PID $httpspid port $port\n"; |
|
|
} |
|
|
|
|
|
$runcert{$server} = $certfile; |
|
|
|
|
|
return (0+!$httpspid, $httpspid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runhttptlsserver { |
|
|
my ($verb, $ipv6) = @_; |
|
|
my $proto = "httptls"; |
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP"; |
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if(!$httptlssrv) { |
|
|
return (4, 0, 0); |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--http "; |
|
|
$flags .= "--debug 1 " if($debugprotocol); |
|
|
$flags .= "--priority NORMAL:+SRP "; |
|
|
$flags .= "--srppasswd $srcdir/certs/srp-verifier-db "; |
|
|
$flags .= "--srppasswdconf $srcdir/certs/srp-verifier-conf"; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $allflags = "--port $port $flags"; |
|
|
my $cmd = "$httptlssrv $allflags > $logfile 2>&1"; |
|
|
my ($httptlspid, $pid2) = startnew($cmd, $pidfile, 10, 1); |
|
|
|
|
|
if($httptlspid <= 0 || !pidexists($httptlspid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$httptlspid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $httptlspid port $port\n"; |
|
|
} |
|
|
return (0+!$httptlspid, $httptlspid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runpingpongserver { |
|
|
my ($proto, $id, $verb, $ipv6) = @_; |
|
|
|
|
|
|
|
|
if($proto !~ /^(?:ftp|imap|pop3|smtp)$/) { |
|
|
logmsg "Unsupported protocol $proto!!\n"; |
|
|
return (4, 0, 0); |
|
|
} |
|
|
|
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP"; |
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
my $portfile = $serverportfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--portfile \"$portfile\" "; |
|
|
$flags .= "--srcdir \"$srcdir\" --proto $proto "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --port 0 --addr \"$ip\""; |
|
|
|
|
|
my $cmd = "$perl $srcdir/ftpserver.pl $flags"; |
|
|
my ($ftppid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($ftppid <= 0 || !pidexists($ftppid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0); |
|
|
} |
|
|
|
|
|
|
|
|
my $port = pidfromfile($portfile); |
|
|
|
|
|
logmsg "PINGPONG runs on port $port ($portfile)\n" if($verb); |
|
|
|
|
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
if(!$pid3) { |
|
|
logmsg "RUN: $srvrname server failed verification\n"; |
|
|
|
|
|
stopserver($server, "$ftppid $pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0); |
|
|
} |
|
|
$pid2 = $pid3; |
|
|
|
|
|
logmsg "RUN: $srvrname server is PID $ftppid port $port\n" if($verb); |
|
|
|
|
|
|
|
|
$PORT{$proto . ($ipvnum == 6? '6': '')} = $port; |
|
|
|
|
|
return (0, $pid2, $ftppid); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runsecureserver { |
|
|
my ($verb, $ipv6, $certfile, $proto, $clearport) = @_; |
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP"; |
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if(!$stunnel) { |
|
|
return (4, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
$certfile = 'stunnel.pem' unless($certfile); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --proto $proto "; |
|
|
$flags .= "--certfile \"$certfile\" " if($certfile ne 'stunnel.pem'); |
|
|
$flags .= "--stunnel \"$stunnel\" --srcdir \"$srcdir\" "; |
|
|
$flags .= "--connect $clearport"; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $options = "$flags --accept $port"; |
|
|
|
|
|
my $cmd = "$perl $srcdir/secureserver.pl $options"; |
|
|
my ($protospid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($protospid <= 0 || !pidexists($protospid)) { |
|
|
|
|
|
|
|
|
|
|
|
$doesntrun{$pidfile} = 1; |
|
|
$protospid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
|
|
|
$doesntrun{$pidfile} = 0; |
|
|
$runcert{$server} = $certfile; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server is PID $protospid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$protospid, $protospid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runtftpserver { |
|
|
my ($id, $verb, $ipv6) = @_; |
|
|
my $ip = $HOSTIP; |
|
|
my $proto = 'tftp'; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
if($ipv6) { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $portfile = $serverportfile{$server}; |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" "; |
|
|
$flags .= "--portfile \"$portfile\" "; |
|
|
$flags .= "--logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --port 0 --srcdir \"$srcdir\""; |
|
|
|
|
|
my $cmd = "$perl $srcdir/tftpserver.pl $flags"; |
|
|
my ($tftppid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($tftppid <= 0 || !pidexists($tftppid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $port = pidfromfile($portfile); |
|
|
|
|
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
if(!$pid3) { |
|
|
logmsg "RUN: $srvrname server failed verification\n"; |
|
|
|
|
|
stopserver($server, "$tftppid $pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
$pid2 = $pid3; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server on PID $tftppid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0, $pid2, $tftppid, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runrtspserver { |
|
|
my ($verb, $ipv6) = @_; |
|
|
my $ip = $HOSTIP; |
|
|
my $proto = 'rtsp'; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($ipv6) { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
my $portfile = $serverportfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" "; |
|
|
$flags .= "--portfile \"$portfile\" "; |
|
|
$flags .= "--logfile \"$logfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --port 0 --srcdir \"$srcdir\""; |
|
|
|
|
|
my $cmd = "$perl $srcdir/rtspserver.pl $flags"; |
|
|
my ($rtsppid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($rtsppid <= 0 || !pidexists($rtsppid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $port = pidfromfile($portfile); |
|
|
|
|
|
|
|
|
my $pid3 = verifyserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
if(!$pid3) { |
|
|
logmsg "RUN: $srvrname server failed verification\n"; |
|
|
|
|
|
stopserver($server, "$rtsppid $pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
$pid2 = $pid3; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $rtsppid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0, $rtsppid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runsshserver { |
|
|
my ($id, $verb, $ipv6) = @_; |
|
|
my $ip=$HOSTIP; |
|
|
my $proto = 'ssh'; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
if(!$USER) { |
|
|
logmsg "Can't start ssh server due to lack of USER name\n"; |
|
|
return (4, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $sshd = find_sshd(); |
|
|
if($sshd) { |
|
|
($sshdid,$sshdvernum,$sshdverstr,$sshderror) = sshversioninfo($sshd); |
|
|
logmsg $sshderror if($sshderror); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose " if($verb); |
|
|
$flags .= "--debugprotocol " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" "; |
|
|
$flags .= "--logdir \"$LOGDIR\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--ipv$ipvnum --addr \"$ip\" "; |
|
|
$flags .= "--user \"$USER\""; |
|
|
|
|
|
my @tports; |
|
|
my $port = getfreeport($ipvnum); |
|
|
|
|
|
push @tports, $port; |
|
|
|
|
|
my $options = "$flags --sshport $port"; |
|
|
|
|
|
my $cmd = "$perl $srcdir/sshserver.pl $options"; |
|
|
my ($sshpid, $pid2) = startnew($cmd, $pidfile, 60, 0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($sshpid <= 0 || !pidexists($sshpid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$sshpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server on $port\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$sshdlog = server_logfilename($LOGDIR, 'ssh', $ipvnum, $idnum); |
|
|
$sftplog = server_logfilename($LOGDIR, 'sftp', $ipvnum, $idnum); |
|
|
|
|
|
if(verifysftp('sftp', $ipvnum, $idnum, $ip, $port) < 1) { |
|
|
logmsg "RUN: SFTP server failed verification\n"; |
|
|
|
|
|
display_sftplog(); |
|
|
display_sftpconfig(); |
|
|
display_sshdlog(); |
|
|
display_sshdconfig(); |
|
|
stopserver($server, "$sshpid $pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$sshpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to verify the $srvrname server on $port\n"; |
|
|
return (5, 0, 0, 0); |
|
|
} |
|
|
|
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
my $hostfile; |
|
|
if(!open($hostfile, "<", "$LOGDIR/$PIDDIR/$hstpubmd5f") || |
|
|
(read($hostfile, $SSHSRVMD5, 32) != 32) || |
|
|
!close($hostfile) || |
|
|
($SSHSRVMD5 !~ /^[a-f0-9]{32}$/i)) |
|
|
{ |
|
|
my $msg = "Fatal: $srvrname pubkey md5 missing : \"$hstpubmd5f\" : $!"; |
|
|
logmsg "$msg\n"; |
|
|
stopservers($verb); |
|
|
die $msg; |
|
|
} |
|
|
|
|
|
if(!open($hostfile, "<", "$LOGDIR/$PIDDIR/$hstpubsha256f") || |
|
|
(read($hostfile, $SSHSRVSHA256, 48) == 0) || |
|
|
!close($hostfile)) |
|
|
{ |
|
|
my $msg = "Fatal: $srvrname pubkey sha256 missing : \"$hstpubsha256f\" : $!"; |
|
|
logmsg "$msg\n"; |
|
|
stopservers($verb); |
|
|
die $msg; |
|
|
} |
|
|
|
|
|
logmsg "RUN: $srvrname on PID $pid2 port $port\n" if($verb); |
|
|
|
|
|
return (0, $pid2, $sshpid, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runmqttserver { |
|
|
my ($id, $verb, $ipv6) = @_; |
|
|
my $ip=$HOSTIP; |
|
|
my $proto = 'mqtt'; |
|
|
my $port = protoport($proto); |
|
|
my $ipvnum = 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
my $portfile = $serverportfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
|
|
|
my $cmd="server/mqttd".exe_ext('SRV'). |
|
|
" --port 0 ". |
|
|
" --pidfile $pidfile". |
|
|
" --portfile $portfile". |
|
|
" --config $LOGDIR/$SERVERCMD". |
|
|
" --logfile $logfile". |
|
|
" --logdir $LOGDIR"; |
|
|
my ($sockspid, $pid2) = startnew($cmd, $pidfile, 30, 0); |
|
|
|
|
|
if($sockspid <= 0 || !pidexists($sockspid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0); |
|
|
} |
|
|
|
|
|
my $mqttport = pidfromfile($portfile); |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server is now running PID $pid2 on PORT $mqttport\n"; |
|
|
} |
|
|
|
|
|
return (0, $pid2, $sockspid, $mqttport); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runsocksserver { |
|
|
my ($id, $verb, $ipv6, $is_unix) = @_; |
|
|
my $ip=$HOSTIP; |
|
|
my $proto = 'socks'; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $portfile = $serverportfile{$server}; |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
|
|
|
my $cmd=""; |
|
|
if($is_unix) { |
|
|
$cmd="server/socksd".exe_ext('SRV'). |
|
|
" --pidfile $pidfile". |
|
|
" --reqfile $LOGDIR/$SOCKSIN". |
|
|
" --logfile $logfile". |
|
|
" --unix-socket $SOCKSUNIXPATH". |
|
|
" --backend $HOSTIP". |
|
|
" --config $LOGDIR/$SERVERCMD"; |
|
|
} else { |
|
|
$cmd="server/socksd".exe_ext('SRV'). |
|
|
" --port 0 ". |
|
|
" --pidfile $pidfile". |
|
|
" --portfile $portfile". |
|
|
" --reqfile $LOGDIR/$SOCKSIN". |
|
|
" --logfile $logfile". |
|
|
" --backend $HOSTIP". |
|
|
" --config $LOGDIR/$SERVERCMD"; |
|
|
} |
|
|
my ($sockspid, $pid2) = startnew($cmd, $pidfile, 30, 0); |
|
|
|
|
|
if($sockspid <= 0 || !pidexists($sockspid)) { |
|
|
|
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
return (1, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $port = pidfromfile($portfile); |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server is now running PID $pid2\n"; |
|
|
} |
|
|
|
|
|
return (0, $pid2, $sockspid, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runverynormalprotocolserver { |
|
|
my ($verb, $alt) = @_; |
|
|
my $proto = "verynormalprotocol"; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose 1 " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--srcdir \"$srcdir\" "; |
|
|
$flags .= "--host $HOSTIP"; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port $flags"; |
|
|
my $cmd = "$srcdir/verynormalprotocolserver.py $aflags"; |
|
|
my ($dictpid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($dictpid <= 0 || !pidexists($dictpid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$dictpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $dictpid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$dictpid, $dictpid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub rundictserver { |
|
|
my ($verb, $alt) = @_; |
|
|
my $proto = "dict"; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose 1 " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--srcdir \"$srcdir\" "; |
|
|
$flags .= "--host $HOSTIP"; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port $flags"; |
|
|
my $cmd = "$srcdir/dictserver.py $aflags"; |
|
|
my ($dictpid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($dictpid <= 0 || !pidexists($dictpid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$dictpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $dictpid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$dictpid, $dictpid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runsmbserver { |
|
|
my ($verb, $alt) = @_; |
|
|
my $proto = "smb"; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose 1 " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--srcdir \"$srcdir\" "; |
|
|
$flags .= "--host $HOSTIP"; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port $flags"; |
|
|
my $cmd = "$srcdir/smbserver.py $aflags"; |
|
|
my ($smbpid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($smbpid <= 0 || !pidexists($smbpid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$smbpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $smbpid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$smbpid, $smbpid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub runnegtelnetserver { |
|
|
my ($verb, $alt) = @_; |
|
|
my $proto = "telnet"; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
} |
|
|
|
|
|
my $server = servername_id($proto, $ipvnum, $idnum); |
|
|
|
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
|
|
|
|
|
|
if ($doesntrun{$pidfile}) { |
|
|
return (2, 0, 0, 0); |
|
|
} |
|
|
|
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
stopserver($server, "$pid"); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
|
|
|
my $srvrname = servername_str($proto, $ipvnum, $idnum); |
|
|
my $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); |
|
|
|
|
|
my $flags = ""; |
|
|
$flags .= "--verbose 1 " if($debugprotocol); |
|
|
$flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; |
|
|
$flags .= "--id $idnum " if($idnum > 1); |
|
|
$flags .= "--srcdir \"$srcdir\""; |
|
|
|
|
|
my $port = getfreeport($ipvnum); |
|
|
my $aflags = "--port $port $flags"; |
|
|
my $cmd = "$srcdir/negtelnetserver.py $aflags"; |
|
|
my ($ntelpid, $pid2) = startnew($cmd, $pidfile, 15, 0); |
|
|
|
|
|
if($ntelpid <= 0 || !pidexists($ntelpid)) { |
|
|
|
|
|
stopserver($server, "$pid2"); |
|
|
$doesntrun{$pidfile} = 1; |
|
|
$ntelpid = $pid2 = 0; |
|
|
logmsg "RUN: failed to start the $srvrname server\n"; |
|
|
return (3, 0, 0, 0); |
|
|
} |
|
|
$doesntrun{$pidfile} = 0; |
|
|
|
|
|
if($verb) { |
|
|
logmsg "RUN: $srvrname server PID $ntelpid port $port\n"; |
|
|
} |
|
|
|
|
|
return (0+!$ntelpid, $ntelpid, $pid2, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_http_server { |
|
|
my ($proto, $verb, $alt, $port_or_path, $do_http3) = @_; |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($alt eq "ipv6") { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
elsif($alt eq "proxy") { |
|
|
$idnum = 2; |
|
|
} |
|
|
elsif($alt eq "unix") { |
|
|
|
|
|
$ipvnum = "unix"; |
|
|
} |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port_or_path, $do_http3); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_mqtt_server { |
|
|
my ($proto, $id, $verb, $ipv6) = @_; |
|
|
my $ip = ($ipv6 && ($ipv6 =~ /6$/)) ? "$HOST6IP" : "$HOSTIP"; |
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_pingpong_server { |
|
|
my ($proto, $id, $verb, $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; |
|
|
my $protoip = $proto . ($ipvnum == 6? '6': ''); |
|
|
|
|
|
if($proto =~ /^(?:ftp|imap|pop3|smtp)$/) { |
|
|
$port = protoport($protoip); |
|
|
} |
|
|
else { |
|
|
logmsg "Unsupported protocol $proto!!\n"; |
|
|
return 0; |
|
|
} |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_rtsp_server { |
|
|
my ($verb, $ipv6) = @_; |
|
|
my $proto = 'rtsp'; |
|
|
my $port = protoport($proto); |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = 1; |
|
|
|
|
|
if($ipv6) { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$port = protoport('rtsp6'); |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_tftp_server { |
|
|
my ($id, $verb, $ipv6) = @_; |
|
|
my $proto = 'tftp'; |
|
|
my $port = protoport($proto); |
|
|
my $ip = $HOSTIP; |
|
|
my $ipvnum = 4; |
|
|
my $idnum = ($id && ($id =~ /^(\d+)$/) && ($id > 1)) ? $id : 1; |
|
|
|
|
|
if($ipv6) { |
|
|
|
|
|
$ipvnum = 6; |
|
|
$port = protoport('tftp6'); |
|
|
$ip = $HOST6IP; |
|
|
} |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub responsive_httptls_server { |
|
|
my ($verb, $ipv6) = @_; |
|
|
my $ipvnum = ($ipv6 && ($ipv6 =~ /6$/)) ? 6 : 4; |
|
|
my $proto = "httptls"; |
|
|
my $port = protoport($proto); |
|
|
my $ip = "$HOSTIP"; |
|
|
my $idnum = 1; |
|
|
|
|
|
if ($ipvnum == 6) { |
|
|
$port = protoport("httptls6"); |
|
|
$ip = "$HOST6IP"; |
|
|
} |
|
|
|
|
|
return &responsiveserver($proto, $ipvnum, $idnum, $ip, $port); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub startservers { |
|
|
my @what = @_; |
|
|
my ($pid, $pid2); |
|
|
my $serr; |
|
|
for(@what) { |
|
|
my (@whatlist) = split(/\s+/,$_); |
|
|
my $what = lc($whatlist[0]); |
|
|
$what =~ s/[^a-z0-9\/-]//g; |
|
|
|
|
|
my $certfile; |
|
|
if($what =~ /^(ftp|gopher|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) { |
|
|
$certfile = ($whatlist[1]) ? $whatlist[1] : 'stunnel.pem'; |
|
|
} |
|
|
|
|
|
if(($what eq "pop3") || |
|
|
($what eq "ftp") || |
|
|
($what eq "imap") || |
|
|
($what eq "smtp")) { |
|
|
if($run{$what} && |
|
|
!responsive_pingpong_server($what, "", $verbose)) { |
|
|
if(stopserver($what)) { |
|
|
return ("failed stopping unresponsive ".uc($what)." server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{$what}) { |
|
|
($serr, $pid, $pid2) = runpingpongserver($what, "", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting ". uc($what) ." server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid $what => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{$what}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "ftp-ipv6") { |
|
|
if($run{'ftp-ipv6'} && |
|
|
!responsive_pingpong_server("ftp", "", $verbose, "ipv6")) { |
|
|
if(stopserver('ftp-ipv6')) { |
|
|
return ("failed stopping unresponsive FTP-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'ftp-ipv6'}) { |
|
|
($serr, $pid, $pid2) = runpingpongserver("ftp", "", $verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting FTP-IPv6 server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid ftp-ipv6 => %d %d\n", $pid, |
|
|
$pid2) if($verbose); |
|
|
$run{'ftp-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "gopher") { |
|
|
if($run{'gopher'} && |
|
|
!responsive_http_server("gopher", $verbose, 0, |
|
|
protoport("gopher"))) { |
|
|
if(stopserver('gopher')) { |
|
|
return ("failed stopping unresponsive GOPHER server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'gopher'}) { |
|
|
($serr, $pid, $pid2, $PORT{'gopher'}) = |
|
|
runhttpserver("gopher", $verbose, 0); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting GOPHER server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid gopher => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'gopher'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "gopher-ipv6") { |
|
|
if($run{'gopher-ipv6'} && |
|
|
!responsive_http_server("gopher", $verbose, "ipv6", |
|
|
protoport("gopher"))) { |
|
|
if(stopserver('gopher-ipv6')) { |
|
|
return ("failed stopping unresponsive GOPHER-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'gopher-ipv6'}) { |
|
|
($serr, $pid, $pid2, $PORT{"gopher6"}) = |
|
|
runhttpserver("gopher", $verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting GOPHER-IPv6 server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid gopher-ipv6 => %d %d\n", $pid, |
|
|
$pid2) if($verbose); |
|
|
$run{'gopher-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http") { |
|
|
if($run{'http'} && |
|
|
!responsive_http_server("http", $verbose, 0, protoport('http'))) { |
|
|
logmsg "* restarting unresponsive HTTP server\n"; |
|
|
if(stopserver('http')) { |
|
|
return ("failed stopping unresponsive HTTP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http'}) { |
|
|
($serr, $pid, $pid2, $PORT{'http'}) = |
|
|
runhttpserver("http", $verbose, 0); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid http => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http-proxy") { |
|
|
if($run{'http-proxy'} && |
|
|
!responsive_http_server("http", $verbose, "proxy", |
|
|
protoport("httpproxy"))) { |
|
|
if(stopserver('http-proxy')) { |
|
|
return ("failed stopping unresponsive HTTP-proxy server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http-proxy'}) { |
|
|
($serr, $pid, $pid2, $PORT{"httpproxy"}) = |
|
|
runhttpserver("http", $verbose, "proxy"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP-proxy server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid http-proxy => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http-proxy'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http-ipv6") { |
|
|
if($run{'http-ipv6'} && |
|
|
!responsive_http_server("http", $verbose, "ipv6", |
|
|
protoport("http6"))) { |
|
|
if(stopserver('http-ipv6')) { |
|
|
return ("failed stopping unresponsive HTTP-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http-ipv6'}) { |
|
|
($serr, $pid, $pid2, $PORT{"http6"}) = |
|
|
runhttpserver("http", $verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP-IPv6 server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid http-ipv6 => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "rtsp") { |
|
|
if($run{'rtsp'} && |
|
|
!responsive_rtsp_server($verbose)) { |
|
|
if(stopserver('rtsp')) { |
|
|
return ("failed stopping unresponsive RTSP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'rtsp'}) { |
|
|
($serr, $pid, $pid2, $PORT{'rtsp'}) = runrtspserver($verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting RTSP server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid rtsp => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'rtsp'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "rtsp-ipv6") { |
|
|
if($run{'rtsp-ipv6'} && |
|
|
!responsive_rtsp_server($verbose, "ipv6")) { |
|
|
if(stopserver('rtsp-ipv6')) { |
|
|
return ("failed stopping unresponsive RTSP-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'rtsp-ipv6'}) { |
|
|
($serr, $pid, $pid2, $PORT{'rtsp6'}) = runrtspserver($verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting RTSP-IPv6 server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid rtsp-ipv6 => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'rtsp-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what =~ /^(ftp|imap|pop3|smtp)s$/) { |
|
|
my $cproto = $1; |
|
|
if(!$stunnel) { |
|
|
|
|
|
return ("no stunnel", 4); |
|
|
} |
|
|
if($runcert{$what} && ($runcert{$what} ne $certfile)) { |
|
|
|
|
|
if(stopserver($what)) { |
|
|
return ("failed stopping $what server with different cert", 3); |
|
|
} |
|
|
} |
|
|
if($run{$cproto} && |
|
|
!responsive_pingpong_server($cproto, "", $verbose)) { |
|
|
if(stopserver($cproto)) { |
|
|
return ("failed stopping unresponsive $cproto server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{$cproto}) { |
|
|
($serr, $pid, $pid2) = runpingpongserver($cproto, "", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting $cproto server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid $cproto => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{$cproto}="$pid $pid2"; |
|
|
} |
|
|
if(!$run{$what}) { |
|
|
($serr, $pid, $pid2, $PORT{$what}) = |
|
|
runsecureserver($verbose, "", $certfile, $what, |
|
|
protoport($cproto)); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting $what server (stunnel)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid $what => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{$what}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "file") { |
|
|
|
|
|
} |
|
|
elsif($what eq "https") { |
|
|
if(!$stunnel) { |
|
|
|
|
|
return ("no stunnel", 4); |
|
|
} |
|
|
if($runcert{'https'} && ($runcert{'https'} ne $certfile)) { |
|
|
|
|
|
if(stopserver('https')) { |
|
|
return ("failed stopping HTTPS server with different cert", 3); |
|
|
} |
|
|
|
|
|
if($run{'http'} && stopserver('http')) { |
|
|
return ("failed stopping HTTP server", 3); |
|
|
} |
|
|
} |
|
|
if($run{'https'} && |
|
|
!responsive_http_server("https", $verbose, 0, |
|
|
protoport('https'))) { |
|
|
if(stopserver('https')) { |
|
|
return ("failed stopping unresponsive HTTPS server", 3); |
|
|
} |
|
|
|
|
|
if($run{'http'} && stopserver('http')) { |
|
|
return ("failed stopping unresponsive HTTP server", 3); |
|
|
} |
|
|
} |
|
|
|
|
|
if($run{'http'} && !$run{'https'} && |
|
|
!responsive_http_server("http", $verbose, 0, |
|
|
protoport('http'))) { |
|
|
if(stopserver('http')) { |
|
|
return ("failed stopping unresponsive HTTP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http'}) { |
|
|
($serr, $pid, $pid2, $PORT{'http'}) = |
|
|
runhttpserver("http", $verbose, 0); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid http => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'http'}="$pid $pid2"; |
|
|
} |
|
|
if(!$run{'https'}) { |
|
|
($serr, $pid, $pid2, $PORT{'https'}) = |
|
|
runhttpsserver($verbose, "https", "", $certfile); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTPS server (stunnel)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid https => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'https'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http/2") { |
|
|
|
|
|
if($run{'http/2'} && |
|
|
!responsive_http_server("https", $verbose, 0, protoport('http2tls'))) { |
|
|
logmsg "* restarting unresponsive HTTP/2 server\n"; |
|
|
if(stopserver('http/2')) { |
|
|
return ("failed stopping unresponsive HTTP/2 server", 3); |
|
|
} |
|
|
|
|
|
if($run{'http'} && stopserver('http')) { |
|
|
return ("failed stopping HTTP server", 3); |
|
|
} |
|
|
} |
|
|
|
|
|
if($run{'http'} && !$run{'http/2'} && |
|
|
!responsive_http_server("http", $verbose, 0, |
|
|
protoport('http'))) { |
|
|
if(stopserver('http')) { |
|
|
return ("failed stopping unresponsive HTTP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http'}) { |
|
|
($serr, $pid, $pid2, $PORT{'http'}) = |
|
|
runhttpserver("http", $verbose, 0); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid http => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'http'}="$pid $pid2"; |
|
|
} |
|
|
if(!$run{'http/2'}) { |
|
|
($serr, $pid, $pid2, $PORT{"http2"}, $PORT{"http2tls"}) = |
|
|
runhttp2server($verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP/2 server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid http/2 => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http/2'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http/3") { |
|
|
|
|
|
if($run{'http/3'} && |
|
|
!responsive_http_server("https", $verbose, 0, protoport('http3'), 1)) { |
|
|
logmsg "* restarting unresponsive HTTP/3 server\n"; |
|
|
if(stopserver('http/3')) { |
|
|
return ("failed stopping unresponsive HTTP/3 server", 3); |
|
|
} |
|
|
|
|
|
if($run{'http'} && stopserver('http')) { |
|
|
return ("failed stopping HTTP server", 3); |
|
|
} |
|
|
} |
|
|
|
|
|
if($run{'http'} && !$run{'http/3'} && |
|
|
!responsive_http_server("http", $verbose, 0, |
|
|
protoport('http'))) { |
|
|
if(stopserver('http')) { |
|
|
return ("failed stopping unresponsive HTTP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http'}) { |
|
|
($serr, $pid, $pid2, $PORT{'http'}) = |
|
|
runhttpserver("http", $verbose, 0); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid http => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'http'}="$pid $pid2"; |
|
|
} |
|
|
if(!$run{'http/3'}) { |
|
|
($serr, $pid, $pid2, $PORT{"http3"}) = runhttp3server($verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP/3 server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid http/3 => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http/3'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "gophers") { |
|
|
if(!$stunnel) { |
|
|
|
|
|
return ("no stunnel", 4); |
|
|
} |
|
|
if($runcert{'gophers'} && ($runcert{'gophers'} ne $certfile)) { |
|
|
|
|
|
if(stopserver('gophers')) { |
|
|
return ("failed stopping GOPHERS server with different cert", 3); |
|
|
} |
|
|
} |
|
|
if($run{'gopher'} && |
|
|
!responsive_http_server("gopher", $verbose, 0, |
|
|
protoport('gopher'))) { |
|
|
if(stopserver('gopher')) { |
|
|
return ("failed stopping unresponsive GOPHER server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'gopher'}) { |
|
|
my $port; |
|
|
($serr, $pid, $pid2, $port) = |
|
|
runhttpserver("gopher", $verbose, 0); |
|
|
$PORT{'gopher'} = $port; |
|
|
if($pid <= 0) { |
|
|
return ("failed starting GOPHER server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid gopher => %d %d\n", $pid, $pid2) if($verbose); |
|
|
logmsg "GOPHERPORT => $port\n" if($verbose); |
|
|
$run{'gopher'}="$pid $pid2"; |
|
|
} |
|
|
if(!$run{'gophers'}) { |
|
|
my $port; |
|
|
($serr, $pid, $pid2, $port) = |
|
|
runhttpsserver($verbose, "gophers", "", $certfile); |
|
|
$PORT{'gophers'} = $port; |
|
|
if($pid <= 0) { |
|
|
return ("failed starting GOPHERS server (stunnel)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid gophers => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
logmsg "GOPHERSPORT => $port\n" if($verbose); |
|
|
$run{'gophers'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "https-proxy") { |
|
|
if(!$stunnel) { |
|
|
|
|
|
return ("no stunnel", 4); |
|
|
} |
|
|
if($runcert{'https-proxy'} && |
|
|
($runcert{'https-proxy'} ne $certfile)) { |
|
|
|
|
|
if(stopserver('https-proxy')) { |
|
|
return ("failed stopping HTTPS-proxy with different cert", 3); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
my ($f, $e) = startservers("http-proxy"); |
|
|
if($f) { |
|
|
return ($f, $e); |
|
|
} |
|
|
|
|
|
if(!$run{'https-proxy'}) { |
|
|
($serr, $pid, $pid2, $PORT{"httpsproxy"}) = |
|
|
runhttpsserver($verbose, "https", "proxy", $certfile); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTPS-proxy (stunnel)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid https-proxy => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'https-proxy'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "httptls") { |
|
|
if(!$httptlssrv) { |
|
|
|
|
|
return ("no gnutls-serv (with SRP support)", 4); |
|
|
} |
|
|
if($run{'httptls'} && |
|
|
!responsive_httptls_server($verbose, "IPv4")) { |
|
|
if(stopserver('httptls')) { |
|
|
return ("failed stopping unresponsive HTTPTLS server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'httptls'}) { |
|
|
($serr, $pid, $pid2, $PORT{'httptls'}) = |
|
|
runhttptlsserver($verbose, "IPv4"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTPTLS server (gnutls-serv)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid httptls => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'httptls'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "httptls-ipv6") { |
|
|
if(!$httptlssrv) { |
|
|
|
|
|
return ("no gnutls-serv", 4); |
|
|
} |
|
|
if($run{'httptls-ipv6'} && |
|
|
!responsive_httptls_server($verbose, "ipv6")) { |
|
|
if(stopserver('httptls-ipv6')) { |
|
|
return ("failed stopping unresponsive HTTPTLS-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'httptls-ipv6'}) { |
|
|
($serr, $pid, $pid2, $PORT{"httptls6"}) = |
|
|
runhttptlsserver($verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTPTLS-IPv6 server (gnutls-serv)", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid httptls-ipv6 => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'httptls-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "tftp") { |
|
|
if($run{'tftp'} && |
|
|
!responsive_tftp_server("", $verbose)) { |
|
|
if(stopserver('tftp')) { |
|
|
return ("failed stopping unresponsive TFTP server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'tftp'}) { |
|
|
($serr, $pid, $pid2, $PORT{'tftp'}) = |
|
|
runtftpserver("", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting TFTP server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid tftp => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'tftp'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "tftp-ipv6") { |
|
|
if($run{'tftp-ipv6'} && |
|
|
!responsive_tftp_server("", $verbose, "ipv6")) { |
|
|
if(stopserver('tftp-ipv6')) { |
|
|
return ("failed stopping unresponsive TFTP-IPv6 server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'tftp-ipv6'}) { |
|
|
($serr, $pid, $pid2, $PORT{'tftp6'}) = |
|
|
runtftpserver("", $verbose, "ipv6"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting TFTP-IPv6 server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid tftp-ipv6 => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'tftp-ipv6'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "sftp" || $what eq "scp") { |
|
|
if(!$run{'ssh'}) { |
|
|
($serr, $pid, $pid2, $PORT{'ssh'}) = runsshserver("", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting SSH server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid ssh => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'ssh'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "socks4" || $what eq "socks5" ) { |
|
|
if(!$run{'socks'}) { |
|
|
($serr, $pid, $pid2, $PORT{"socks"}) = runsocksserver("", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting socks server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid socks => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'socks'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "socks5unix") { |
|
|
if(!$run{'socks5unix'}) { |
|
|
($serr, $pid, $pid2) = runsocksserver("2", $verbose, "", "unix"); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting socks5unix server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid socks5unix => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'socks5unix'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "mqtt" ) { |
|
|
if($run{'mqtt'} && |
|
|
!responsive_mqtt_server("mqtt", "", $verbose)) { |
|
|
if(stopserver('mqtt')) { |
|
|
return ("failed stopping unresponsive MQTT server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'mqtt'}) { |
|
|
($serr, $pid, $pid2, $PORT{"mqtt"}) = runmqttserver("", $verbose); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting mqtt server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid mqtt => %d %d\n", $pid, $pid2) if($verbose); |
|
|
$run{'mqtt'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "http-unix") { |
|
|
if($run{'http-unix'} && |
|
|
!responsive_http_server("http", $verbose, "unix", $HTTPUNIXPATH)) { |
|
|
if(stopserver('http-unix')) { |
|
|
return ("failed stopping unresponsive HTTP-unix server", 3); |
|
|
} |
|
|
} |
|
|
if(!$run{'http-unix'}) { |
|
|
my $unused; |
|
|
($serr, $pid, $pid2, $unused) = |
|
|
runhttpserver("http", $verbose, "unix", $HTTPUNIXPATH); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting HTTP-unix server", $serr); |
|
|
} |
|
|
logmsg sprintf("* pid http-unix => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'http-unix'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "verynormalprotocol") { |
|
|
if(!$run{'verynormalprotocol'}) { |
|
|
($serr, $pid, $pid2, $PORT{"verynormalprotocol"}) = runverynormalprotocolserver($verbose, ""); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting verynormalprotocol server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid VERYNORMAL => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'verynormalprotocol'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "dict") { |
|
|
if(!$run{'dict'}) { |
|
|
($serr, $pid, $pid2, $PORT{"dict"}) = rundictserver($verbose, ""); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting DICT server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid DICT => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'dict'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "smb") { |
|
|
if(!$run{'smb'}) { |
|
|
($serr, $pid, $pid2, $PORT{"smb"}) = runsmbserver($verbose, ""); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting SMB server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid SMB => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'smb'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "telnet") { |
|
|
if(!$run{'telnet'}) { |
|
|
($serr, $pid, $pid2, $PORT{"telnet"}) = |
|
|
runnegtelnetserver($verbose, ""); |
|
|
if($pid <= 0) { |
|
|
return ("failed starting neg TELNET server", $serr); |
|
|
} |
|
|
logmsg sprintf ("* pid neg TELNET => %d %d\n", $pid, $pid2) |
|
|
if($verbose); |
|
|
$run{'telnet'}="$pid $pid2"; |
|
|
} |
|
|
} |
|
|
elsif($what eq "none") { |
|
|
logmsg "* starts no server\n" if ($verbose); |
|
|
} |
|
|
else { |
|
|
warn "we don't support a server for $what"; |
|
|
return ("no server for $what", 4); |
|
|
} |
|
|
} |
|
|
return ("", 0); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub stopservers { |
|
|
my $verb = $_[0]; |
|
|
|
|
|
|
|
|
|
|
|
killallsockfilters("$LOGDIR/$PIDDIR", $verb); |
|
|
|
|
|
|
|
|
|
|
|
my $pidlist; |
|
|
foreach my $server (keys %run) { |
|
|
if($run{$server}) { |
|
|
if($verb) { |
|
|
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; |
|
|
} |
|
|
} |
|
|
} |
|
|
$pidlist .= "$run{$server} "; |
|
|
$run{$server} = 0; |
|
|
} |
|
|
$runcert{$server} = 0 if($runcert{$server}); |
|
|
} |
|
|
killpid($verb, $pidlist); |
|
|
|
|
|
|
|
|
|
|
|
my $result = 0; |
|
|
foreach my $server (keys %serverpidfile) { |
|
|
my $pidfile = $serverpidfile{$server}; |
|
|
my $pid = processexists($pidfile); |
|
|
if($pid > 0) { |
|
|
if($err_unexpected) { |
|
|
logmsg "ERROR: "; |
|
|
$result = -1; |
|
|
} |
|
|
else { |
|
|
logmsg "Warning: "; |
|
|
} |
|
|
logmsg "$server server unexpectedly alive\n"; |
|
|
killpid($verb, $pid); |
|
|
} |
|
|
unlink($pidfile) if(-f $pidfile); |
|
|
} |
|
|
|
|
|
return $result; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub subvariables { |
|
|
my ($thing, $testnum, $prefix) = @_; |
|
|
my $port; |
|
|
|
|
|
if(!$prefix) { |
|
|
$prefix = "%"; |
|
|
} |
|
|
|
|
|
# test server ports |
|
|
# Substitutes variables like %HTTPPORT and %SMTP6PORT with the server ports |
|
|
foreach my $proto ('DICT', |
|
|
'FTP', 'FTP6', 'FTPS', |
|
|
'GOPHER', 'GOPHER6', 'GOPHERS', |
|
|
'HTTP', 'HTTP6', 'HTTPS', |
|
|
'HTTPSPROXY', 'HTTPTLS', 'HTTPTLS6', |
|
|
'HTTP2', 'HTTP2TLS', |
|
|
'HTTP3', |
|
|
'IMAP', 'IMAP6', 'IMAPS', |
|
|
'MQTT', |
|
|
'NOLISTEN', |
|
|
'POP3', 'POP36', 'POP3S', |
|
|
'RTSP', 'RTSP6', |
|
|
'SMB', 'SMBS', |
|
|
'SMTP', 'SMTP6', 'SMTPS', |
|
|
'SOCKS', |
|
|
'SSH', |
|
|
'TELNET', |
|
|
'TFTP', 'TFTP6', 'VERYNORMALPROTOCOL') { |
|
|
$port = protoport(lc $proto); |
|
|
$$thing =~ s/${prefix}(?:$proto)PORT/$port/g; |
|
|
} |
|
|
# Special case: for PROXYPORT substitution, use httpproxy. |
|
|
$port = protoport('httpproxy'); |
|
|
$$thing =~ s/${prefix}PROXYPORT/$port/g; |
|
|
|
|
|
# server Unix domain socket paths |
|
|
$$thing =~ s/${prefix}HTTPUNIXPATH/$HTTPUNIXPATH/g; |
|
|
$$thing =~ s/${prefix}SOCKSUNIXPATH/$SOCKSUNIXPATH/g; |
|
|
|
|
|
# client IP addresses |
|
|
my $nb = $CLIENT6IP; |
|
|
$nb =~ s/^\[(.*)\]/$1/; # trim off the brackets |
|
|
|
|
|
$$thing =~ s/${prefix}CLIENT6IP-NB/$nb/g; |
|
|
$$thing =~ s/${prefix}CLIENT6IP/$CLIENT6IP/g; |
|
|
$$thing =~ s/${prefix}CLIENTIP/$CLIENTIP/g; |
|
|
|
|
|
# server IP addresses |
|
|
$$thing =~ s/${prefix}HOST6IP/$HOST6IP/g; |
|
|
$$thing =~ s/${prefix}HOSTIP/$HOSTIP/g; |
|
|
|
|
|
# misc |
|
|
$$thing =~ s/${prefix}PERL/$perlcmd/g; |
|
|
$$thing =~ s/${prefix}CURL/$CURL/g; |
|
|
$$thing =~ s/${prefix}LOGDIR/$LOGDIR/g; |
|
|
$$thing =~ s/${prefix}PWD/$pwd/g; |
|
|
$$thing =~ s/${prefix}POSIX_PWD/$posix_pwd/g; |
|
|
$$thing =~ s/${prefix}VERSION/$CURLVERSION/g; |
|
|
$$thing =~ s/${prefix}VERNUM/$CURLVERNUM/g; |
|
|
$$thing =~ s/${prefix}DATE/$DATE/g; |
|
|
$$thing =~ s/${prefix}TESTNUMBER/$testnum/g; |
|
|
|
|
|
# POSIX/MSYS/Cygwin curl needs: file://localhost/d/path/to |
|
|
# Windows native curl needs: file://localhost/D:/path/to |
|
|
my $file_pwd = $pwd; |
|
|
if($file_pwd !~ /^\//) { |
|
|
$file_pwd = "/$file_pwd"; |
|
|
} |
|
|
my $ssh_pwd = $posix_pwd; |
|
|
# this only works after the SSH server has been started |
|
|
# TODO: call sshversioninfo early and store $sshdid so this substitution |
|
|
# always works |
|
|
if ($sshdid && $sshdid =~ /OpenSSH-Windows/) { |
|
|
$ssh_pwd = $file_pwd; |
|
|
} |
|
|
|
|
|
$$thing =~ s/${prefix}FILE_PWD/$file_pwd/g; |
|
|
$$thing =~ s/${prefix}SSH_PWD/$ssh_pwd/g; |
|
|
$$thing =~ s/${prefix}SRCDIR/$srcdir/g; |
|
|
$$thing =~ s/${prefix}USER/$USER/g; |
|
|
$$thing =~ s/${prefix}DEV_NULL/$dev_null/g; |
|
|
|
|
|
$$thing =~ s/${prefix}SSHSRVMD5/$SSHSRVMD5/g; |
|
|
$$thing =~ s/${prefix}SSHSRVSHA256/$SSHSRVSHA256/g; |
|
|
|
|
|
# The purpose of FTPTIME2 is to provide times that can be |
|
|
# used for time-out tests and that would 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 * 8; |
|
|
|
|
|
$$thing =~ s/${prefix}FTPTIME2/$ftp2/g; |
|
|
|
|
|
# HTTP2 |
|
|
$$thing =~ s/${prefix}H2CVER/$h2cver/g; |
|
|
} |
|
|
|
|
|
sub localhttp { |
|
|
return $HOSTIP eq "127.0.0.1"; |
|
|
} |
|
|
|
|
|
1; |
|
|
|