X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fcluster.pl;h=93e769ba4e788a2d4ccf0dcac3d0e592b2f7fb94;hb=766014807e2521cc60a219c6eda5b49d13ffc70f;hp=baa48ca704bd5433a89ed433a76d94b64552a7d4;hpb=606b9690c7bb9e293cb4a03507f0280eea05d9ce;p=spider.git diff --git a/perl/cluster.pl b/perl/cluster.pl index baa48ca7..93e769ba 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -187,9 +187,6 @@ $yes //= 'Yes'; # visual representation of yes $no //= 'No'; # ditto for no $user_interval //= 11*60; # the interval between unsolicited prompts if no traffic - -$clusteraddr //= '127.0.0.1'; # cluster tcp host address - used for things like console.pl -$clusterport //= 27754; # cluster tcp port @inqueue = (); # the main input queue, an array of hashes $systime = 0; # the time now (in seconds) $starttime = 0; # the starting time of the cluster @@ -221,6 +218,14 @@ our $clssecs; # the amount of cpu time the DXSpider process have consumed our $cldsecs; # the amount of cpu time any child processes have consumed our $allowslashcall; # Allow / in connecting callsigns (ie PA0/G1TLH, or even PA0/G1TLH/2) +our @localhost_names = qw(127.0.0.1 ::1); # all ip addresses that will need to be aliased below (ipv4 or ipv6) + +our $localhost_alias_ipv4; # these are the IPV4 & 6 aliases for localhost connected clients +our $localhost_alias_ipv6; # for things (PC92, PC61 etc) that expose IP addresses. These *may* + # be set by Msg.pm stuff if they are left undefined but, if you need + # certanty then set/var them in the startup file. + +our $save_route_cache; # save and restore route cache on restart. Probably only useful for G1TLH testing use vars qw($version $subversion $build $gitversion $gitbranch); @@ -304,13 +309,20 @@ sub new_channel } # now deal with the lock + my $host = $conn->peerhost; if ($lock) { - my $host = $conn->peerhost; LogDbg('', "$call on $host is locked out, disconnected"); $conn->disconnect; return; } + # Is he from a badip? + if (DXCIDR::find($host)) { + LogDbg('', "$call on $host is from a badip $host, disconnected"); + $conn->disconnect; + return; + } + # set up the basic channel info for "Normal" Users # is there one already connected to me - locally? @@ -460,6 +472,9 @@ sub cease # close all databases DXDb::closeall; + # Write route cache + Route::write_cache() if $save_route_cache; + # close all listeners foreach my $l (@listeners) { $l->close_server; @@ -508,7 +523,6 @@ sub AGWrestart AGWMsg::init(\&new_channel); } - sub setup_start { ############################################################# @@ -619,9 +633,6 @@ sub setup_start Filter::init(); # doesn't do much, but has to be done - AnnTalk::init(); # initialise announce cache - - # look for the sysop and the alias user and complain if they aren't there { @@ -642,7 +653,9 @@ sub setup_start } } - + # read any route cache there might be + Route::read_cache() if $save_route_cache; + # start listening for incoming messages/connects dbg("starting listeners ..."); my $conn = IntMsg->new_server($clusteraddr, $clusterport, \&login); @@ -711,12 +724,6 @@ sub setup_start dbg("Read in Aliases"); CmdAlias->init(); - # initialise the Geomagnetic data engine - dbg("Start WWV"); - Geomag->init(); - dbg("Start WCY"); - WCY->init(); - # initialise the protocol engine dbg("Start Protocol Engines ..."); DXProt->init(); @@ -725,6 +732,15 @@ sub setup_start my $script = new Script "startup"; $script->run($main::me) if $script; + + # initialise the Geomagnetic data engine + dbg("Start WWV"); + Geomag->init(); + dbg("Start WCY"); + WCY->init(); + AnnTalk::init(); # initialise announce cache + + # put in a DXCluster node for us here so we can add users and take them away $routeroot = Route::Node->new($mycall, $version*100+5300, Route::here($main::me->here)|Route::conf($main::me->conf)); $routeroot->do_pc9x(1); @@ -856,6 +872,7 @@ sub per_minute sub per_10_minute { RBN::per_10_minute(); + Route::write_cache() if $save_route_cache; } sub per_hour