3 # This is the DX cluster 'daemon'. It sits in the middle of its little
4 # web of client routines sucking and blowing data where it may.
6 # Hence the name of 'spider' (although it may become 'dxspider')
8 # Copyright (c) 1998 Dirk Koopman G1TLH
15 # make sure that modules are searched in the order local then perl
19 # root of directory tree for this system
21 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
23 unshift @INC, "$root/perl"; # this IS the right way round!
24 unshift @INC, "$root/local";
26 # try to create and lock a lockfile (this isn't atomic but
28 my $lockfn = "$root/perl/cluster.lock"; # lock file name
30 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
33 die "Lockfile ($lockfn) and process $pid exist, another cluster running?" if kill 0, $pid;
36 open(CLLOCK, ">$lockfn") or die "Can't open Lockfile ($lockfn) $!";
71 use POSIX ":sys_wait_h";
78 #use vars qw(@inqueue $systime $version $starttime $lockfn @outstanding_connects $zombies $root
79 # $lang $myalias @debug $userfn $clusteraddr $clusterport $mycall $decease );
81 @inqueue = (); # the main input queue, an array of hashes
82 $systime = 0; # the time now (in seconds)
83 $version = "1.47"; # the version no of the software
84 $starttime = 0; # the starting time of the cluster
85 $lockfn = "cluster.lock"; # lock file name
86 #@outstanding_connects = (); # list of outstanding connects
87 @listeners = (); # list of listeners
90 # send a message to call on conn and disconnect
93 my ($conn, $call, $mess) = @_;
95 dbg('chan', "-> D $call $mess\n");
96 $conn->send_now("D$call|$mess");
98 dbg('chan', "-> Z $call bye\n");
99 $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
104 # handle incoming messages
107 my ($conn, $msg, $err) = @_;
108 my $dxchan = DXChannel->get_by_cnum($conn); # get the dxconnnect object for this message
110 if (!defined $msg || (defined $err && $err)) {
115 $dxchan->conn(undef);
124 # set up the basic channel info - this needs a bit more thought - there is duplication here
125 if (!defined $dxchan) {
126 my ($sort, $call, $line) = DXChannel::decode_input(0, $msg);
127 return unless defined $sort;
129 # is there one already connected to me - locally?
130 my $user = DXUser->get($call);
131 if ($sort ne 'O' && Msg->conns($call)) {
132 my $mess = DXM::msg($lang, ($user && $user->is_node) ? 'concluster' : 'conother', $call, $main::mycall);
133 already_conn($conn, $call, $mess);
137 # is there one already connected elsewhere in the cluster?
139 if (($user->is_node || $call eq $myalias) && !DXCluster->get_exact($call)) {
142 if (my $ref = DXCluster->get_exact($call)) {
143 my $mess = DXM::msg($lang, 'concluster', $call, $ref->mynode->call);
144 already_conn($conn, $call, $mess);
148 $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
150 if (my $ref = DXCluster->get_exact($call)) {
151 my $mess = DXM::msg($lang, 'concluster', $call, $ref->mynode->call);
152 already_conn($conn, $call, $mess);
155 $user = DXUser->new($call);
159 if ($user->lockout) {
160 Log('DXCommand', "$call is locked out, disconnected");
161 $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
167 $conn->conns($call) unless $sort eq 'O';
170 $dxchan = DXCommandmode->new($call, $conn, $user) if $user->is_user;
171 $dxchan = DXProt->new($call, $conn, $user) if $user->is_node;
172 $dxchan = BBS->new($call, $conn, $user) if $user->is_bbs;
173 die "Invalid sort of user on $call = $sort" if !$dxchan;
176 # queue the message and the channel object for later processing
178 my $self = bless {}, "inqueue";
179 $self->{dxchan} = $dxchan;
180 $self->{data} = $msg;
181 push @inqueue, $self;
190 # cease running this program, close down all the connections nicely
195 $SIG{'TERM'} = 'IGNORE';
196 $SIG{'INT'} = 'IGNORE';
201 Local::finish(); # end local processing
203 dbg('local', "Local::finish error $@") if $@;
206 foreach $dxchan (DXChannel->get_all()) {
207 next unless $dxchan->is_node;
208 $dxchan->disconnect unless $dxchan == $DXProt::me;
210 Msg->event_loop(1, 0.05);
211 Msg->event_loop(1, 0.05);
214 foreach $dxchan (DXChannel->get_all()) {
215 next if $dxchan->is_node;
216 $dxchan->disconnect unless $dxchan == $DXProt::me;
218 Msg->event_loop(1, 0.05);
219 Msg->event_loop(1, 0.05);
220 Msg->event_loop(1, 0.05);
221 Msg->event_loop(1, 0.05);
222 Msg->event_loop(1, 0.05);
223 Msg->event_loop(1, 0.05);
227 # close all databases
230 # close all listeners
235 dbg('chan', "DXSpider version $version ended");
236 Log('cluster', "DXSpider V$version stopped");
240 # $SIG{__WARN__} = $SIG{__DIE__} = sub {my $a = shift; cluck($a); };
244 # the reaper of children
248 while (($cpid = waitpid(-1, WNOHANG)) > 0) {
249 dbg('reap', "cpid: $cpid");
250 # Msg->pid_gone($cpid);
251 $zombies-- if $zombies > 0;
253 dbg('reap', "cpid: $cpid");
256 # this is where the input queue is dealt with and things are dispatched off to other parts of
260 my $self = shift @inqueue;
263 my $data = $self->{data};
264 my $dxchan = $self->{dxchan};
266 my ($sort, $call, $line) = DXChannel::decode_input($dxchan, $data);
267 return unless defined $sort;
269 # do the really sexy console interface bit! (Who is going to do the TK interface then?)
270 dbg('chan', "<- $sort $call $line\n") unless $sort eq 'D';
273 my $user = $dxchan->user;
274 if ($sort eq 'A' || $sort eq 'O') {
275 $dxchan->start($line, $sort);
276 } elsif ($sort eq 'I') {
277 die "\$user not defined for $call" if !defined $user;
279 $dxchan->normal($line);
280 $dxchan->disconnect if ($dxchan->{state} eq 'bye');
281 } elsif ($sort eq 'Z') {
282 $dxchan->conn(undef);
284 } elsif ($sort eq 'D') {
285 ; # ignored (an echo)
287 print STDERR atime, " Unknown command letter ($sort) received from $call\n";
293 my $t = $systime - $starttime;
294 my $days = int $t / 86400;
296 my $hours = int $t / 3600;
298 my $mins = int $t / 60;
299 return sprintf "%d %02d:%02d", $days, $hours, $mins;
301 #############################################################
303 # The start of the main line of code
305 #############################################################
307 $starttime = $systime = time;
308 $lang = 'en' unless $lang;
310 # open the debug file, set various FHs to be unbuffered
315 STDOUT->autoflush(1);
317 Log('cluster', "DXSpider V$version started");
320 dbg('err', "DXSpider DX Cluster Version $version", "Copyright (c) 1998-2001 Dirk Koopman G1TLH");
323 dbg('err', "loading prefixes ...");
327 dbg('err', "loading band data ...");
330 # initialise User file system
331 dbg('err', "loading user file system ...");
332 DXUser->init($userfn, 1);
334 # start listening for incoming messages/connects
337 dbg('err', "starting listeners ...");
338 push @listeners, IntMsg->new_server("$clusteraddr", $clusterport, \&login);
339 dbg('err', "Internal port: $clusteraddr $clusterport");
340 for (@main::listen) {
341 push @listeners, ExtMsg->new_server($_->[0], $_->[1], \&login);
342 dbg('err', "External Port: $_->[0] $_->[1]");
346 dbg('err', "load badwords: " . (BadWords::load or "Ok"));
349 unless ($^O =~ /^MS/) {
350 unless ($DB::VERSION) {
352 $SIG{TERM} = \&cease;
354 $SIG{HUP} = 'IGNORE';
355 $SIG{CHLD} = sub { $zombies++ };
357 $SIG{PIPE} = sub { dbg('err', "Broken PIPE signal received"); };
358 $SIG{IO} = sub { dbg('err', "SIGIO received"); };
359 $SIG{WINCH} = $SIG{STOP} = $SIG{CONT} = 'IGNORE';
360 $SIG{KILL} = 'DEFAULT'; # as if it matters....
362 # catch the rest with a hopeful message
365 # dbg('chan', "Catching SIG $_");
366 $SIG{$_} = sub { my $sig = shift; DXDebug::confess("Caught signal $sig"); };
374 # read in system messages
377 # read in command aliases
380 # initialise the Geomagnetic data engine
384 # initial the Spot stuff
387 # initialise the protocol engine
388 dbg('err', "reading in duplicate spot and WWV info ...");
391 # put in a DXCluster node for us here so we can add users and take them away
392 DXNode->new($DXProt::me, $mycall, 0, 1, $DXProt::myprot_version);
394 # read in any existing message headers and clean out old crap
395 dbg('err', "reading existing message headers ...");
399 # read in any cron jobs
400 dbg('err', "reading cron jobs ...");
403 # read in database descriptors
404 dbg('err', "reading database descriptors ...");
407 # starting local stuff
408 dbg('err', "doing local initialisation ...");
412 dbg('local', "Local::init error $@") if $@;
414 # print various flags
415 #dbg('err', "seful info - \$^D: $^D \$^W: $^W \$^S: $^S \$^P: $^P");
417 # this, such as it is, is the main loop!
418 dbg('err', "orft we jolly well go ...");
420 #open(DB::OUT, "|tee /tmp/aa");
425 Msg->event_loop(1, 0.1);
427 process_inqueue(); # read in lines from the input queue and despatch them
430 # do timed stuff, ongoing processing happens one a second
431 if ($timenow != $systime) {
434 DXCron::process(); # do cron jobs
435 DXCommandmode::process(); # process ongoing command mode stuff
436 DXProt::process(); # process ongoing ak1a pcxx stuff
437 DXConnect::process();
444 Local::process(); # do any localised processing
446 dbg('local', "Local::process error $@") if $@;
449 last if --$decease <= 0;