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 # do some validation of the input
27 die "The directory $root doesn't exist, please RTFM" unless -d $root;
28 die "$root/local doesn't exist, please RTFM" unless -d "$root/local";
29 die "$root/local/DXVars.pm doesn't exist, please RTFM" unless -e "$root/local/DXVars.pm";
31 mkdir "$root/local_cmd", 0777 unless -d "$root/local_cmd";
34 # try to create and lock a lockfile (this isn't atomic but
36 $lockfn = "$root/local/cluster.lck"; # lock file name
38 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
42 die "Lockfile ($lockfn) and process $pid exist, another cluster running?" if kill 0, $pid;
47 open(CLLOCK, ">$lockfn") or die "Can't open Lockfile ($lockfn) $!";
51 $is_win = ($^O =~ /^MS/ || $^O =~ /^OS-2/) ? 1 : 0; # is it Windows?
114 use POSIX ":sys_wait_h";
122 use vars qw(@inqueue $systime $starttime $lockfn @outstanding_connects
123 $zombies $root @listeners $lang $myalias @debug $userfn $clusteraddr
124 $clusterport $mycall $decease $is_win $routeroot $me $reqreg $bumpexisting
125 $allowdxby $dbh $dsn $dbuser $dbpass $do_xml $systime_days $systime_daystart
126 $can_encode $maxconnect_user $maxconnect_node $idle_interval
129 @inqueue = (); # the main input queue, an array of hashes
130 $systime = 0; # the time now (in seconds)
131 $starttime = 0; # the starting time of the cluster
132 @outstanding_connects = (); # list of outstanding connects
133 @listeners = (); # list of listeners
134 $reqreg = 0; # 1 = registration required, 2 = deregister people
135 $bumpexisting = 1; # 1 = allow new connection to disconnect old, 0 - don't allow it
136 $allowdxby = 0; # 1 = allow "dx by <othercall>", 0 - don't allow it
137 $maxconnect_user = 3; # the maximum no of concurrent connections a user can have at a time
138 $maxconnect_node = 0; # Ditto but for nodes. In either case if a new incoming connection
139 # takes the no of references in the routing table above these numbers
140 # then the connection is refused. This only affects INCOMING connections.
141 $idle_interval = 0.100; # the wait between invocations of the main idle loop processing.
143 # send a message to call on conn and disconnect
146 my ($conn, $call, $mess) = @_;
148 $conn->disable_read(1);
149 dbg("-> D $call $mess\n") if isdbg('chan');
150 $conn->send_now("D$call|$mess");
158 $dxchan->{conn}->set_error(undef) if exists $dxchan->{conn};
159 $dxchan->disconnect(1);
162 # handle incoming messages
165 my ($conn, $msg) = @_;
166 my ($sort, $call, $line) = DXChannel::decode_input(0, $msg);
167 return unless defined $sort;
169 unless (is_callsign($call)) {
170 already_conn($conn, $call, DXM::msg($lang, "illcall", $call));
174 # set up the basic channel info
175 # is there one already connected to me - locally?
176 my $user = DXUser::get_current($call);
177 my $dxchan = DXChannel::get($call);
179 if ($user && $user->is_node) {
180 already_conn($conn, $call, DXM::msg($lang, 'concluster', $call, $main::mycall));
184 my $ip = $conn->peerhost || 'unknown';
185 $dxchan->send_now('D', DXM::msg($lang, 'conbump', $call, $ip));
186 LogDbg('DXCommand', "$call bumped off by $ip, disconnected");
189 already_conn($conn, $call, DXM::msg($lang, 'conother', $call, $main::mycall));
194 # (fairly) politely disconnect people that are connected to too many other places at once
195 my $r = Route::get($call);
196 if ($conn->{sort} && $conn->{sort} =~ /^I/ && $r && $user) {
198 my $m = $r->isa('Route::Node') ? $maxconnect_node : $maxconnect_user;
199 my $c = $user->maxconnect;
201 $v = defined $c ? $c : $m;
202 if ($v && @n >= $v) {
203 my $nodes = join ',', @n;
204 LogDbg('DXCommand', "$call has too many connections ($v) at $nodes - disconnected");
205 already_conn($conn, $call, DXM::msg($lang, 'contomany', $call, $v, $nodes));
211 my $basecall = $call;
212 $basecall =~ s/-\d+$//;
213 my $baseuser = DXUser::get_current($basecall);
214 my $lock = $user->lockout if $user;
215 if ($baseuser && $baseuser->lockout || $lock) {
216 if (!$user || !defined $lock || $lock) {
217 my $host = $conn->peerhost || "unknown";
218 LogDbg('DXCommand', "$call on $host is locked out, disconnected");
225 $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
227 $user = DXUser->new($call);
231 if ($user->is_node) {
232 $dxchan = DXProt->new($call, $conn, $user);
233 } elsif ($user->is_user) {
234 $dxchan = DXCommandmode->new($call, $conn, $user);
235 # } elsif ($user->is_bbs) { # there is no support so
236 # $dxchan = BBS->new($call, $conn, $user); # don't allow it!!!
238 die "Invalid sort of user on $call = $sort";
241 # check that the conn has a callsign
242 $conn->conns($call) if $conn->isa('IntMsg');
245 $conn->set_error(sub {error_handler($dxchan)});
246 $conn->set_rproc(sub {my ($conn,$msg) = @_; $dxchan->rec($msg);});
253 return \&new_channel;
256 # cease running this program, close down all the connections nicely
262 $SIG{'TERM'} = 'IGNORE';
263 $SIG{'INT'} = 'IGNORE';
268 if (defined &Local::finish) {
270 Local::finish(); # end local processing
272 dbg("Local::finish error $@") if $@;
276 foreach $dxchan (DXChannel::get_all_nodes) {
277 $dxchan->disconnect(2) unless $dxchan == $main::me;
281 foreach $dxchan (DXChannel::get_all_users) {
289 # disconnect UDP customers
292 # end everything else
296 # close all databases
299 # close all listeners
300 foreach my $l (@listeners) {
304 LogDbg('cluster', "DXSpider V$version, build $build (git: $gitversion) ended");
305 dbg("bye bye everyone - bye bye");
309 $dbh->finish if $dbh;
312 # $SIG{__WARN__} = $SIG{__DIE__} = sub {my $a = shift; cluck($a); };
316 # the reaper of children
320 while (($cpid = waitpid(-1, WNOHANG)) > 0) {
321 dbg("cpid: $cpid") if isdbg('reap');
322 # Msg->pid_gone($cpid);
323 $zombies-- if $zombies > 0;
325 dbg("cpid: $cpid") if isdbg('reap');
328 # this is where the input queue is dealt with and things are dispatched off to other parts of
333 my $t = $systime - $starttime;
334 my $days = int $t / 86400;
336 my $hours = int $t / 3600;
338 my $mins = int $t / 60;
339 return sprintf "%d %02d:%02d", $days, $hours, $mins;
344 AGWMsg::init(\&new_channel);
351 DXChannel::process();
355 # do timed stuff, ongoing processing happens one a second
356 if ($timenow != $systime) {
359 my $days = int ($systime / 86400);
360 if ($systime_days != $days) {
361 $systime_days = $days;
362 $systime_daystart = $days * 86400;
364 IsoTime::update($systime);
365 DXCron::process(); # do cron jobs
366 DXCommandmode::process(); # process ongoing command mode stuff
368 DXProt::process(); # process ongoing ak1a pcxx stuff
369 DXConnect::process();
374 $systime_days = $days;
375 $systime_daystart = $days * 86400;
377 IsoTime::update($systime);
378 DXCron::process(); # do cron jobs
379 DXCommandmode::process(); # process ongoing command mode stuff
381 DXProt::process(); # process ongoing ak1a pcxx stuff
382 DXConnect::process();
392 if (defined &Local::process) {
394 Local::process(); # do any localised processing
396 dbg("Local::process error $@") if $@;
401 #############################################################
403 # The start of the main line of code
405 #############################################################
407 $starttime = $systime = time;
408 $systime_days = int ($systime / 86400);
409 $systime_daystart = $systime_days * 86400;
410 $lang = 'en' unless $lang;
412 unless ($DB::VERSION) {
413 $SIG{INT} = $SIG{TERM} = \&cease;
416 # open the debug file, set various FHs to be unbuffered
417 dbginit(\&DXCommandmode::broadcast_debug);
421 STDOUT->autoflush(1);
423 # try to load the database
424 if (DXSql::init($dsn)) {
425 $dbh = DXSql->new($dsn);
426 $dbh = $dbh->connect($dsn, $dbuser, $dbpass) if $dbh;
432 my $w = $SIG{__DIE__};
433 $SIG{__DIE__} = 'IGNORE';
434 eval { require Encode; };
442 # try to load XML::Simple
446 my ($year) = (gmtime)[5];
448 LogDbg('cluster', "DXSpider V$version, build $build (git: $gitversion) started");
449 dbg("Copyright (c) 1998-$year Dirk Koopman G1TLH");
452 dbg("loading prefixes ...");
454 my $r = Prefix::init();
458 dbg("loading band data ...");
461 # initialise User file system
462 dbg("loading user file system ...");
463 DXUser->init($userfn, 1);
465 # look for the sysop and the alias user and complain if they aren't there
467 die "\$myalias \& \$mycall are the same ($mycall)!, they must be different (hint: make \$mycall = '${mycall}-2';). Oh and don't forget to rerun create_sysop.pl!" if $mycall eq $myalias;
468 my $ref = DXUser::get($mycall);
469 die "$mycall missing, run the create_sysop.pl script and please RTFM" unless $ref && $ref->priv == 9;
470 $ref = DXUser::get($myalias);
471 die "$myalias missing, run the create_sysop.pl script and please RTFM" unless $ref && $ref->priv == 9;
474 # start listening for incoming messages/connects
475 dbg("starting listeners ...");
476 my $conn = IntMsg->new_server($clusteraddr, $clusterport, \&login);
477 $conn->conns("Server $clusteraddr/$clusterport using IntMsg");
478 push @listeners, $conn;
479 dbg("Internal port: $clusteraddr $clusterport using IntMsg");
480 foreach my $l (@main::listen) {
482 my $pkg = $l->[2] || 'ExtMsg';
483 my $login = $l->[3] || 'login';
485 $conn = $pkg->new_server($l->[0], $l->[1], \&{"${pkg}::${login}"});
486 $conn->conns("Server $l->[0]/$l->[1] using ${pkg}::${login}");
487 push @listeners, $conn;
488 dbg("External Port: $l->[0] $l->[1] using ${pkg}::${login}");
491 dbg("AGW Listener") if $AGWMsg::enable;
494 dbg("BPQ Listener") if $BPQMsg::enable;
495 BPQMsg::init(\&new_channel);
497 dbg("UDP Listener") if $UDPMsg::enable;
498 UDPMsg::init(\&new_channel);
501 dbg("load badwords: " . (BadWords::load or "Ok"));
504 unless ($DB::VERSION) {
505 $SIG{INT} = $SIG{TERM} = sub { Mojo::IOLoop->stop; };
509 $SIG{HUP} = 'IGNORE';
510 $SIG{CHLD} = sub { $zombies++ };
512 $SIG{PIPE} = sub { dbg("Broken PIPE signal received"); };
513 $SIG{IO} = sub { dbg("SIGIO received"); };
514 $SIG{WINCH} = $SIG{STOP} = $SIG{CONT} = 'IGNORE';
515 $SIG{KILL} = 'DEFAULT'; # as if it matters....
517 # catch the rest with a hopeful message
520 # dbg("Catching SIG $_") if isdbg('chan');
521 $SIG{$_} = sub { my $sig = shift; DXDebug::confess("Caught signal $sig"); };
527 dbg("Starting Dupe system");
530 # read in system messages
531 dbg("Read in Messages");
534 # read in command aliases
535 dbg("Read in Aliases");
538 # initialise the Geomagnetic data engine
544 # initial the Spot stuff
545 dbg("Starting DX Spot system");
548 # initialise the protocol engine
549 dbg("Start Protocol Engines ...");
552 # put in a DXCluster node for us here so we can add users and take them away
553 $routeroot = Route::Node->new($mycall, $version*100+5300, Route::here($main::me->here)|Route::conf($main::me->conf));
554 $routeroot->do_pc9x(1);
555 $routeroot->via_pc92(1);
557 # make sure that there is a routing OUTPUT node default file
558 #unless (Filter::read_in('route', 'node_default', 0)) {
559 # my $dxcc = $main::me->dxcc;
560 # $Route::filterdef->cmd($main::me, 'route', 'accept', "node_default call $mycall" );
563 # read in any existing message headers and clean out old crap
564 dbg("reading existing message headers ...");
568 # read in any cron jobs
569 dbg("reading cron jobs ...");
572 # read in database desriptors
573 dbg("reading database descriptors ...");
576 # starting local stuff
577 dbg("doing local initialisation ...");
579 if (defined &Local::init) {
583 dbg("Local::init error $@") if $@;
587 # this, such as it is, is the main loop!
588 dbg("orft we jolly well go ...");
589 my $script = new Script "startup";
590 $script->run($main::me) if $script;
592 #open(DB::OUT, "|tee /tmp/aa");
594 my $main_loop = Mojo::IOLoop->recurring($idle_interval => \&idle_loop);
596 Mojo::IOLoop->start unless Mojo::IOLoop->is_running;