fixed confusion over DXCluster->get_exact and DXUser->get
[spider.git] / perl / cluster.pl
1 #!/usr/bin/perl -w
2 #
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.
5 #
6 # Hence the name of 'spider' (although it may become 'dxspider')
7 #
8 # Copyright (c) 1998 Dirk Koopman G1TLH
9 #
10 # $Id$
11
12
13 require 5.004;
14
15 # make sure that modules are searched in the order local then perl
16 BEGIN {
17         umask 002;
18         
19         # root of directory tree for this system
20         $root = "/spider"; 
21         $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
22         
23         unshift @INC, "$root/perl";     # this IS the right way round!
24         unshift @INC, "$root/local";
25
26         # try to create and lock a lockfile (this isn't atomic but 
27         # should do for now
28         $lockfn = "$root/perl/cluster.lock";       # lock file name
29         if (-e $lockfn) {
30                 open(CLLOCK, "$lockfn") or die "Can't open Lockfile ($lockfn) $!";
31                 my $pid = <CLLOCK>;
32                 chomp $pid;
33                 die "Lockfile ($lockfn) and process $pid exist, another cluster running?" if kill 0, $pid;
34                 close CLLOCK;
35         }
36         open(CLLOCK, ">$lockfn") or die "Can't open Lockfile ($lockfn) $!";
37         print CLLOCK "$$\n";
38         close CLLOCK;
39 }
40
41 use Msg;
42 use DXVars;
43 use DXDebug;
44 use DXLog;
45 use DXLogPrint;
46 use DXUtil;
47 use DXChannel;
48 use DXUser;
49 use DXM;
50 use DXCommandmode;
51 use DXProt;
52 use DXMsg;
53 use DXCluster;
54 use DXCron;
55 use DXConnect;
56 use Prefix;
57 use Bands;
58 use Geomag;
59 use CmdAlias;
60 use Filter;
61 use Local;
62 use DXDb;
63 use Data::Dumper;
64
65 use Fcntl ':flock'; 
66
67 use Carp qw(cluck);
68
69 package main;
70
71 @inqueue = ();                                  # the main input queue, an array of hashes
72 $systime = 0;                                   # the time now (in seconds)
73 $version = "1.37";                              # the version no of the software
74 $starttime = 0;                 # the starting time of the cluster   
75 $lockfn = "cluster.lock";       # lock file name
76 @outstanding_connects = ();     # list of outstanding connects
77       
78 # handle disconnections
79 sub disconnect
80 {
81         my $dxchan = shift;
82         return if !defined $dxchan;
83         $dxchan->disconnect();
84 }
85
86 # send a message to call on conn and disconnect
87 sub already_conn
88 {
89         my ($conn, $call, $mess) = @_;
90         
91         dbg('chan', "-> D $call $mess\n"); 
92         $conn->send_now("D$call|$mess");
93         sleep(1);
94         dbg('chan', "-> Z $call bye\n");
95         $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
96         sleep(1);
97         $conn->disconnect();
98 }
99
100 # handle incoming messages
101 sub rec
102 {
103         my ($conn, $msg, $err) = @_;
104         my $dxchan = DXChannel->get_by_cnum($conn); # get the dxconnnect object for this message
105         
106         if (defined $err && $err) {
107                 if ($dxchan) {
108                         $dxchan->disconnect;
109                 }
110                 return;
111         }
112         
113         # set up the basic channel info - this needs a bit more thought - there is duplication here
114         if (!defined $dxchan) {
115                 my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
116  
117                 # is there one already connected to me - locally? 
118                 my $user = DXUser->get($call);
119                 if (DXChannel->get($call)) {
120                         my $mess = DXM::msg($lang, ($user && $user->sort eq 'A') ? 'concluster' : 'conother', $call);
121                         already_conn($conn, $call, $mess);
122                         return;
123                 }
124                 
125                 # is there one already connected elsewhere in the cluster?
126                 if ($user) {
127                         if (($user->sort eq 'A' || $call eq $myalias) && !DXCluster->get_exact($call)) {
128                                 ;
129                         } else {
130                                 if (DXCluster->get_exact($call)) {
131                                         my $mess = DXM::msg($lang, $user->sort eq 'A' ? 'concluster' : 'conother', $call);
132                                         already_conn($conn, $call, $mess);
133                                         return;
134                                 }
135                         }
136                         $user->{lang} = $main::lang if !$user->{lang}; # to autoupdate old systems
137                 } else {
138                         if (DXCluster->get_exact($call)) {
139                                 my $mess = DXM::msg($lang, 'conother', $call);
140                                 already_conn($conn, $call, $mess);
141                                 return;
142                         }
143                         $user = DXUser->new($call);
144                 }
145
146                 # is he locked out ?
147                 if ($user->lockout) {
148                         Log('DXCommand', "$call is locked out, disconnected");
149                         $conn->send_now("Z$call|bye"); # this will cause 'client' to disconnect
150                         return;
151                 }
152
153                 # create the channel
154                 $dxchan = DXCommandmode->new($call, $conn, $user) if ($user->sort eq 'U');
155                 $dxchan = DXProt->new($call, $conn, $user) if ($user->sort eq 'A');
156                 $dxchan = BBS->new($call, $conn, $user) if ($user->sort eq 'B');
157                 die "Invalid sort of user on $call = $sort" if !$dxchan;
158         }
159         
160         # queue the message and the channel object for later processing
161         if (defined $msg) {
162                 my $self = bless {}, "inqueue";
163                 $self->{dxchan} = $dxchan;
164                 $self->{data} = $msg;
165                 push @inqueue, $self;
166         }
167 }
168
169 sub login
170 {
171         return \&rec;
172 }
173
174 # cease running this program, close down all the connections nicely
175 sub cease
176 {
177         my $dxchan;
178
179         $SIG{'TERM'} = 'IGNORE';
180         $SIG{'INT'} = 'IGNORE';
181         
182         eval {
183                 Local::finish();   # end local processing
184         };
185         dbg('local', "Local::finish error $@") if $@;
186
187         # disconnect nodes
188         foreach $dxchan (DXChannel->get_all()) {
189                 next unless $dxchan->is_ak1a;
190                 disconnect($dxchan) unless $dxchan == $DXProt::me;
191         }
192         Msg->event_loop(1, 0.05);
193         Msg->event_loop(1, 0.05);
194         Msg->event_loop(1, 0.05);
195         Msg->event_loop(1, 0.05);
196         Msg->event_loop(1, 0.05);
197         Msg->event_loop(1, 0.05);
198
199         # disconnect users
200         foreach $dxchan (DXChannel->get_all()) {
201                 next if $dxchan->is_ak1a;
202                 disconnect($dxchan) unless $dxchan == $DXProt::me;
203         }
204         Msg->event_loop(1, 0.05);
205         Msg->event_loop(1, 0.05);
206         Msg->event_loop(1, 0.05);
207         Msg->event_loop(1, 0.05);
208         Msg->event_loop(1, 0.05);
209         Msg->event_loop(1, 0.05);
210         DXUser::finish();
211
212         # close all databases
213         DXDb::closeall;
214         
215         dbg('chan', "DXSpider version $version ended");
216         Log('cluster', "DXSpider V$version stopped");
217         dbgclose();
218         Logclose();
219         unlink $lockfn;
220 #       $SIG{__WARN__} = $SIG{__DIE__} =  sub {my $a = shift; cluck($a); };
221         exit(0);
222 }
223
224 # the reaper of children
225 sub reap
226 {
227         $SIG{'CHLD'} = \&reap;
228         my $cpid = wait;
229         @outstanding_connects = grep {$_->{pid} != $cpid} @outstanding_connects;
230 }
231
232 # this is where the input queue is dealt with and things are dispatched off to other parts of
233 # the cluster
234 sub process_inqueue
235 {
236         my $self = shift @inqueue;
237         return if !$self;
238         
239         my $data = $self->{data};
240         my $dxchan = $self->{dxchan};
241         my ($sort, $call, $line) = $data =~ /^(\w)([A-Z0-9\-]+)\|(.*)$/;
242         my $error;
243         
244         # the above regexp must work
245         return unless ($sort && $call && $line);
246         
247         # translate any crappy characters into hex characters 
248         if ($line =~ /[\x00-\x06\x08\x0a-\x1f\x7f-\xff]/o) {
249                 $line =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg;
250         }
251         
252         # do the really sexy console interface bit! (Who is going to do the TK interface then?)
253         dbg('chan', "<- $sort $call $line\n") unless $sort eq 'D';
254
255         # handle A records
256         my $user = $dxchan->user;
257         if ($sort eq 'A' || $sort eq 'O') {
258                 $dxchan->start($line, $sort);  
259         } elsif ($sort eq 'I') {
260                 die "\$user not defined for $call" if !defined $user;
261                 # normal input
262                 $dxchan->normal($line);
263                 disconnect($dxchan) if ($dxchan->{state} eq 'bye');
264         } elsif ($sort eq 'Z') {
265                 $dxchan->conn(undef);
266                 disconnect($dxchan);
267         } elsif ($sort eq 'D') {
268                 ;                       # ignored (an echo)
269         } else {
270                 print STDERR atime, " Unknown command letter ($sort) received from $call\n";
271         }
272 }
273
274 sub uptime
275 {
276         my $t = $systime - $starttime;
277         my $days = int $t / 86400;
278         $t -= $days * 86400;
279         my $hours = int $t / 3600;
280         $t -= $hours * 3600;
281         my $mins = int $t / 60;
282         return sprintf "%d %02d:%02d", $days, $hours, $mins;
283 }
284 #############################################################
285 #
286 # The start of the main line of code 
287 #
288 #############################################################
289
290 $starttime = $systime = time;
291
292 # open the debug file, set various FHs to be unbuffered
293 dbginit();
294 foreach (@debug) {
295         dbgadd($_);
296 }
297 STDOUT->autoflush(1);
298
299 Log('cluster', "DXSpider V$version started");
300
301 # banner
302 print "DXSpider DX Cluster Version $version\nCopyright (c) 1998-1999 Dirk Koopman G1TLH\n";
303
304 # load Prefixes
305 print "loading prefixes ...\n";
306 Prefix::load();
307
308 # load band data
309 print "loading band data ...\n";
310 Bands::load();
311
312 # initialise User file system
313 print "loading user file system ...\n"; 
314 DXUser->init($userfn, 1);
315
316 # start listening for incoming messages/connects
317 print "starting listener ...\n";
318 Msg->new_server("$clusteraddr", $clusterport, \&login);
319
320 # prime some signals
321 $SIG{'INT'} = \&cease;
322 $SIG{'TERM'} = \&cease;
323 $SIG{'HUP'} = 'IGNORE';
324 $SIG{'CHLD'} = \&reap;
325
326 # read in system messages
327 DXM->init();
328
329 # read in command aliases
330 CmdAlias->init();
331
332 # initialise the Geomagnetic data engine
333 Geomag->init();
334
335 # initial the Spot stuff
336 Spot->init();
337
338 # initialise the protocol engine
339 print "reading in duplicate spot and WWV info ...\n";
340 DXProt->init();
341
342
343 # put in a DXCluster node for us here so we can add users and take them away
344 DXNode->new(0, $mycall, 0, 1, $DXProt::myprot_version); 
345
346 # read in any existing message headers and clean out old crap
347 print "reading existing message headers ...\n";
348 DXMsg->init();
349 DXMsg::clean_old();
350
351 # read in any cron jobs
352 print "reading cron jobs ...\n";
353 DXCron->init();
354
355 # read in database descriptors
356 print "reading database descriptors ...\n";
357 DXDb::load();
358
359 # starting local stuff
360 print "doing local initialisation ...\n";
361 eval {
362         Local::init();
363 };
364 dbg('local', "Local::init error $@") if $@;
365
366 # print various flags
367 #print "useful info - \$^D: $^D \$^W: $^W \$^S: $^S \$^P: $^P\n";
368
369 # this, such as it is, is the main loop!
370 print "orft we jolly well go ...\n";
371 dbg('chan', "DXSpider version $version started...");
372 for (;;) {
373         my $timenow;
374         Msg->event_loop(1, 0.1);
375         $timenow = time;
376         process_inqueue();                      # read in lines from the input queue and despatch them
377         
378         # do timed stuff, ongoing processing happens one a second
379         if ($timenow != $systime) {
380                 $systime = $timenow;
381                 $cldate = &cldate();
382                 $ztime = &ztime();
383                 DXCron::process();      # do cron jobs
384                 DXCommandmode::process(); # process ongoing command mode stuff
385                 DXProt::process();              # process ongoing ak1a pcxx stuff
386                 DXConnect::process();
387                 DXMsg::process();
388                 DXDb::process();
389                 eval { 
390                         Local::process();       # do any localised processing
391                 };
392                 dbg('local', "Local::process error $@") if $@;
393         }
394         if ($decease) {
395                 last if --$decease <= 0;
396         }
397 }
398 cease(0);
399 exit(0);
400
401