added run_cmd to the cron system to run any DXCluster command
[spider.git] / perl / DXProt.pm
1 #!/usr/bin/perl
2 #
3 # This module impliments the protocal mode for a dx cluster
4 #
5 # Copyright (c) 1998 Dirk Koopman G1TLH
6 #
7 # $Id$
8
9
10 package DXProt;
11
12 @ISA = qw(DXChannel);
13
14 use DXUtil;
15 use DXChannel;
16 use DXUser;
17 use DXM;
18 use DXCluster;
19 use DXProtVars;
20 use DXCommandmode;
21 use DXLog;
22 use Spot;
23 use DXProtout;
24 use DXDebug;
25 use Filter;
26 use Local;
27 use DXDb;
28 use AnnTalk;
29 use Geomag;
30 use WCY;
31 use Time::HiRes qw(gettimeofday tv_interval);
32 use BadWords;
33 use DXHash;
34
35 use strict;
36 use vars qw($me $pc11_max_age $pc23_max_age
37                         $last_hour %pings %rcmds
38                         %nodehops $baddx $badspotter $badnode $censorpc
39                         $allowzero $decode_dk0wcy $send_opernam @checklist);
40
41 $me = undef;                                    # the channel id for this cluster
42 $pc11_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc11
43 $pc23_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc23
44
45 $last_hour = time;                              # last time I did an hourly periodic update
46 %pings = ();                    # outstanding ping requests outbound
47 %rcmds = ();                    # outstanding rcmd requests outbound
48 %nodehops = ();                 # node specific hop control
49 $censorpc = 1;                                  # Do a BadWords::check on text fields and reject things
50                                                                 # loads of 'bad things'
51 $baddx = new DXHash "baddx";
52 $badspotter = new DXHash "badspotter";
53 $badnode = new DXHash "badnode";
54
55 @checklist = 
56 (
57  [ qw(c c m bp bc c) ],                 # pc10
58  [ qw(f m d t m c c h) ],               # pc11
59  [ qw(c bc m bp bm p h) ],              # pc12
60  [ qw(c h) ],                                   # 
61  [ qw(c h) ],                                   # 
62  [ qw(c m h) ],                                 # 
63  undef ,                                                # pc16 has to be validated manually
64  [ qw(c c h) ],                                 # pc17
65  [ qw(m n) ],                                   # pc18
66  undef ,                                                # pc19 has to be validated manually
67  undef ,                                                # pc20 no validation
68  [ qw(c m h) ],                                 # pc21
69  undef ,                                                # pc22 no validation
70  [ qw(d n n n n m c c h) ],             # pc23
71  [ qw(c p h) ],                                 # pc24
72  [ qw(c c n n) ],                               # pc25
73  [ qw(f m d t m c c bc) ],              # pc26
74  [ qw(d n n n n m c c bc) ],    # pc27
75  [ qw(c c m c d t p m bp n p bp bc) ], # pc28
76  [ qw(c c n m) ],                               # pc29
77  [ qw(c c n) ],                                 # pc30
78  [ qw(c c n) ],                                 # pc31
79  [ qw(c c n) ],                                 # pc32
80  [ qw(c c n) ],                                 # pc33
81  [ qw(c c m) ],                                 # pc34
82  [ qw(c c m) ],                                 # pc35
83  [ qw(c c m) ],                                 # pc36
84  [ qw(c c n m) ],                               # pc37
85  undef,                                                 # pc38 not interested
86  [ qw(c m) ],                                   # pc39
87  [ qw(c c m p n) ],                             # pc40
88  [ qw(c n m h) ],                               # pc41
89  [ qw(c c n) ],                                 # pc42
90  undef,                                                 # pc43 don't handle it
91  [ qw(c c n m m c) ],                   # pc44
92  [ qw(c c n m) ],                               # pc45
93  [ qw(c c n) ],                                 # pc46
94  undef,                                                 # pc47
95  undef,                                                 # pc48
96  [ qw(c m h) ],                                 # pc49
97  [ qw(c n h) ],                                 # pc50
98  [ qw(c c n) ],                                 # pc51
99  undef,
100  undef,
101  undef,
102  undef,
103  undef,
104  undef,
105  undef,
106  undef,
107  undef,                                                 # pc60
108  undef,
109  undef,
110  undef,
111  undef,
112  undef,
113  undef,
114  undef,
115  undef,
116  undef,
117  undef,                                                 # pc70
118  undef,
119  undef,
120  [ qw(d n n n n n n m m m c c h) ],     # pc73
121  undef,
122  undef,
123  undef,
124  undef,
125  undef,
126  undef,
127  undef,                                                 # pc80
128  undef,
129  undef,
130  undef,
131  [ qw(c c c m) ],                               # pc84
132  [ qw(c c c m) ],                               # pc85
133 );
134
135 # use the entry in the check list to check the field list presented
136 # return OK if line NOT in check list (for now)
137 sub check
138 {
139         my $n = shift;
140         $n -= 10;
141         return 0 if $n < 0 || $n > @checklist; 
142         my $ref = $checklist[$n];
143         return 0 unless ref $ref;
144         
145         my $i;
146         shift;    # not interested in the first field
147         for ($i = 0; $i < @$ref; $i++) {
148                 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
149                 return 0 unless $act;
150                 next if $blank && $_[$i] =~ /^[ \*]$/;
151                 if ($act eq 'c') {
152                         return $i+1 unless is_callsign($_[$i]);
153                 } elsif ($act eq 'm') {
154                         return $i+1 unless is_pctext($_[$i]);
155                 } elsif ($act eq 'p') {
156                         return $i+1 unless is_pcflag($_[$i]);
157                 } elsif ($act eq 'f') {
158                         return $i+1 unless is_freq($_[$i]);
159                 } elsif ($act eq 'n') {
160                         return $i+1 unless $_[$i] =~ /^[\d ]+$/;
161                 } elsif ($act eq 'h') {
162                         return $i+1 unless $_[$i] =~ /^H\d\d?$/;
163                 } elsif ($act eq 'd') {
164                         return $i+1 unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
165                 } elsif ($act eq 't') {
166                         return $i+1 unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
167                 }
168         }
169         return 0;
170 }
171
172 sub init
173 {
174         my $user = DXUser->get($main::mycall);
175         $DXProt::myprot_version += $main::version*100;
176         $me = DXProt->new($main::mycall, 0, $user); 
177         $me->{here} = 1;
178         $me->{state} = "indifferent";
179         do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
180         confess $@ if $@;
181         $me->{sort} = 'S';    # S for spider
182         $me->{priv} = 9;
183 }
184
185 #
186 # obtain a new connection this is derived from dxchannel
187 #
188
189 sub new 
190 {
191         my $self = DXChannel::alloc(@_);
192         return $self;
193 }
194
195 # this is how a pc connection starts (for an incoming connection)
196 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
197 # all the crap that comes between).
198 sub start
199 {
200         my ($self, $line, $sort) = @_;
201         my $call = $self->{call};
202         my $user = $self->{user};
203         
204         # remember type of connection
205         $self->{consort} = $line;
206         $self->{outbound} = $sort eq 'O';
207         $self->{priv} = $user->priv || 1;     # other clusters can always be 'normal' users
208         $self->{lang} = $user->lang || 'en';
209         $self->{isolate} = $user->{isolate};
210         $self->{consort} = $line;       # save the connection type
211         $self->{here} = 1;
212
213         # get the output filters
214         $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
215         $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
216         $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
217         $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
218
219
220         # get the INPUT filters (these only pertain to Clusters)
221         $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
222         $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
223         $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
224         $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
225         
226         # set unbuffered and no echo
227         $self->send_now('B',"0");
228         $self->send_now('E',"0");
229         
230         # ping neighbour node stuff
231         my $ping = $user->pingint;
232         $ping = 5*60 unless defined $ping;
233         $self->{pingint} = $ping;
234         $self->{nopings} = $user->nopings || 2;
235         $self->{pingtime} = [ ];
236         $self->{pingave} = 0;
237
238         # send initialisation string
239         unless ($self->{outbound}) {
240                 $self->send(pc18());
241                 $self->{lastping} = $main::systime;
242         } else {
243                 $self->{lastping} = $main::systime + ($self->pingint / 2);
244         }
245         $self->state('init');
246         $self->{pc50_t} = $main::systime;
247
248         # send info to all logged in thingies
249         $self->tell_login('loginn');
250
251         Log('DXProt', "$call connected");
252 }
253
254 #
255 # This is the normal pcxx despatcher
256 #
257 sub normal
258 {
259         my ($self, $line) = @_;
260         my @field = split /\^/, $line;
261         return unless @field;
262         
263         pop @field if $field[-1] eq '~';
264         
265 #       print join(',', @field), "\n";
266                                                 
267         # ignore any lines that don't start with PC
268         return if !$field[0] =~ /^PC/;
269         
270         # process PC frames
271         my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
272         return unless $pcno;
273         return if $pcno < 10 || $pcno > 99;
274
275         # check for and dump bad protocol messages
276         my $n = check($pcno, @field);
277         if ($n) {
278                 dbg('chan', "PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")");
279                 return;
280         }
281
282         # local processing 1
283         my $pcr;
284         eval {
285                 $pcr = Local::pcprot($self, $pcno, @field);
286         };
287 #       dbg('local', "Local::pcprot error $@") if $@;
288         return if $pcr;
289         
290  SWITCH: {
291                 if ($pcno == 10) {              # incoming talk
292
293                         # will we allow it at all?
294                         if ($censorpc) {
295                                 my @bad;
296                                 if (@bad = BadWords::check($field[3])) {
297                                         dbg('chan', "PCPROT: Bad words: @bad, dropped" );
298                                         return;
299                                 }
300                         }
301
302                         # is it for me or one of mine?
303                         my ($to, $via, $call, $dxchan);
304                         if ($field[5] gt ' ') {
305                                 $call = $via = $field[2];
306                                 $to = $field[5];
307                         } else {
308                                 $call = $to = $field[2];
309                         }
310                         $dxchan = DXChannel->get($call);
311                         if ($dxchan && $dxchan->is_user) {
312                                 $field[3] =~ s/\%5E/^/g;
313                                 $dxchan->talk($field[1], $to, $via, $field[3]);
314                         } else {
315                                 $self->route($field[2], $line); # relay it on its way
316                         }
317                         return;
318                 }
319                 
320                 if ($pcno == 11 || $pcno == 26) { # dx spot
321
322                         # route 'foreign' pc26s 
323                         if ($pcno == 26) {
324                                 if ($field[7] ne $main::mycall) {
325                                         $self->route($field[7], $line);
326                                         return;
327                                 }
328                         }
329                         
330                         # if this is a 'nodx' node then ignore it
331                         if ($badnode->in($field[7])) {
332                                 dbg('chan', "PCPROT: Bad Node, dropped");
333                                 return;
334                         }
335                         
336                         # if this is a 'bad spotter' user then ignore it
337                         if ($badspotter->in($field[6])) {
338                                 dbg('chan', "PCPROT: Bad Spotter, dropped");
339                                 return;
340                         }
341                         
342                         # convert the date to a unix date
343                         my $d = cltounix($field[3], $field[4]);
344                         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
345                         if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
346                                 dbg('chan', "PCPROT: Spot ignored, invalid date or out of range ($field[3] $field[4])\n");
347                                 return;
348                         }
349
350                         # is it 'baddx'
351                         if ($baddx->in($field[2])) {
352                                 dbg('chan', "PCPROT: Bad DX spot, ignored");
353                                 return;
354                         }
355                         
356                         # do some de-duping
357                         $field[5] =~ s/^\s+//;      # take any leading blanks off
358                         $field[2] = unpad($field[2]);   # take off leading and trailing blanks from spotted callsign
359                         if ($field[2] =~ /BUST\w*$/) {
360                                 dbg('chan', "PCPROT: useless 'BUSTED' spot");
361                                 return;
362                         }
363                         if (Spot::dup($field[1], $field[2], $d, $field[5])) {
364                                 dbg('chan', "PCPROT: Duplicate Spot ignored\n");
365                                 return;
366                         }
367                         if ($censorpc) {
368                                 my @bad;
369                                 if (@bad = BadWords::check($field[5])) {
370                                         dbg('chan', "PCPROT: Bad words: @bad, dropped" );
371                                         return;
372                                 }
373                         }
374
375                         my @spot = Spot::prepare($field[1], $field[2], $d, $field[5], $field[6], $field[7]);
376                         # global spot filtering on INPUT
377                         if ($self->{inspotsfilter}) {
378                                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
379                                 unless ($filter) {
380                                         dbg('chan', "PCPROT: Rejected by filter");
381                                         return;
382                                 }
383                         }
384                         
385                         # add it 
386                         Spot::add(@spot);
387
388             #
389                         # @spot at this point contains:-
390             # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
391                         # then  spotted itu, spotted cq, spotters itu, spotters cq
392                         # you should be able to route on any of these
393             #
394                         
395                         # fix up qra locators of known users 
396                         my $user = DXUser->get_current($spot[4]);
397                         if ($user) {
398                                 my $qra = $user->qra;
399                                 unless ($qra && DXBearing::is_qra($qra)) {
400                                         my $lat = $user->lat;
401                                         my $long = $user->long;
402                                         if (defined $lat && defined $long) {
403                                                 $user->qra(DXBearing::lltoqra($lat, $long)); 
404                                                 $user->put;
405                                         }
406                                 }
407
408                                 # send a remote command to a distant cluster if it is visible and there is no
409                                 # qra locator and we havn't done it for a month.
410
411                                 unless ($user->qra) {
412                                         my $node;
413                                         my $to = $user->homenode;
414                                         my $last = $user->lastoper || 0;
415                                         if ($send_opernam && $main::systime > $last + $DXUser::lastoperinterval && $to && ($node = DXCluster->get_exact($to)) ) {
416                                                 my $cmd = "forward/opernam $spot[4]";
417                                                 # send the rcmd but we aren't interested in the replies...
418                                                 if ($node && $node->dxchan && $node->dxchan->is_clx) {
419                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
420                                                 } else {
421                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
422                                                 }
423                                                 if ($to ne $field[7]) {
424                                                         $to = $field[7];
425                                                         $node = DXCluster->get_exact($to);
426                                                         if ($node && $node->dxchan && $node->dxchan->is_clx) {
427                                                                 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
428                                                         } else {
429                                                                 route(undef, $to, pc34($main::mycall, $to, $cmd));
430                                                         }
431                                                 }
432                                                 $user->lastoper($main::systime);
433                                                 $user->put;
434                                         }
435                                 }
436                         }
437                                 
438                         # local processing 
439                         my $r;
440                         eval {
441                                 $r = Local::spot($self, @spot);
442                         };
443 #                       dbg('local', "Local::spot1 error $@") if $@;
444                         return if $r;
445
446                         # DON'T be silly and send on PC26s!
447                         return if $pcno == 26;
448
449                         # send out the filtered spots
450                         send_dx_spot($self, $line, @spot) if @spot;
451                         return;
452                 }
453                 
454                 if ($pcno == 12) {              # announces
455                         # announce duplicate checking
456                         $field[3] =~ s/^\s+//;  # remove leading blanks
457                         if (AnnTalk::dup($field[1], $field[2], $field[3])) {
458                                 dbg('chan', "PCPROT: Duplicate Announce ignored");
459                                 return;
460                         }
461
462                         if ($censorpc) {
463                                 my @bad;
464                                 if (@bad = BadWords::check($field[3])) {
465                                         dbg('chan', "PCPROT: Bad words: @bad, dropped" );
466                                         return;
467                                 }
468                         }
469                         
470                         if ($field[2] eq '*' || $field[2] eq $main::mycall) {
471                                 
472                                 # global ann filtering on INPUT
473                                 if ($self->{inannfilter}) {
474                                         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
475                                         my @dxcc = Prefix::extract($field[1]);
476                                         if (@dxcc > 0) {
477                                                 $ann_dxcc = $dxcc[1]->dxcc;
478                                                 $ann_itu = $dxcc[1]->itu;
479                                                 $ann_cq = $dxcc[1]->cq();                                               
480                                         }
481                                         @dxcc = Prefix::extract($field[5]);
482                                         if (@dxcc > 0) {
483                                                 $org_dxcc = $dxcc[1]->dxcc;
484                                                 $org_itu = $dxcc[1]->itu;
485                                                 $org_cq = $dxcc[1]->cq();                                               
486                                         }
487                                         my ($filter, $hops) = $self->{inannfilter}->it(@field[1..6], $self->{call}, 
488                                                                                                         $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
489                                         unless ($filter) {
490                                                 dbg('chan', "PCPROT: Rejected by filter");
491                                                 return;
492                                         }
493                                 }
494
495                                 # send it
496                                 $self->send_announce($line, @field[1..6]);
497                         } else {
498                                 $self->route($field[2], $line);
499                         }
500                         
501                         return;
502                 }
503                 
504                 if ($pcno == 13) {
505                         last SWITCH;
506                 }
507                 if ($pcno == 14) {
508                         last SWITCH;
509                 }
510                 if ($pcno == 15) {
511                         last SWITCH;
512                 }
513                 
514                 if ($pcno == 16) {              # add a user
515                         my $node = DXCluster->get_exact($field[1]); 
516                         my $dxchan;
517                         if (!$node && ($dxchan = DXChannel->get($field[1]))) {
518                                 # add it to the node table if it isn't present and it's
519                                 # connected locally
520                                 $node = DXNode->new($dxchan, $field[1], 0, 1, 5400);
521                                 dbg('chan', "PCPROT: $field[1] no PC19 yet, autovivified as node");
522 #                               broadcast_ak1a(pc19($dxchan, $node), $dxchan, $self) unless $dxchan->{isolate};
523                                 
524                         }
525                         if ($field[1] eq $main::mycall || $field[2] eq $main::mycall) {
526                                 dbg('chan', "PCPROT: trying to alter config on this node from outside!");
527                                 return;
528                         }
529                         if ($field[2] eq $main::myalias && DXChannel->get($field[1])) {
530                                 dbg('chan', "PCPROT: trying to connect sysop from outside!");
531                                 return;
532                         }
533                         unless ($node) {
534                                 dbg('chan', "PCPROT: Node $field[1] not in config");
535                                 return;
536                         }
537                         unless ($node->isa('DXNode')) {
538                                 dbg('chan', "PCPROT: $field[1] is not a node");
539                                 return;
540                         }
541                         if ($node->dxchan != $self) {
542                                 dbg('chan', "PCPROT: $field[1] came in on wrong channel");
543                                 return;
544                         }
545                         if (($dxchan = DXChannel->get($field[1])) && $dxchan != $self) {
546                                 dbg('chan', "PCPROT: $field[1] connected locally");
547                                 return;
548                         }
549                         my $i;
550                                                 
551                         for ($i = 2; $i < $#field; $i++) {
552                                 my ($call, $confmode, $here) = $field[$i] =~ /^(\S+) (\S) (\d)/o;
553                                 next unless $call && $confmode && defined $here && is_callsign($call);
554                                 my $ref = DXCluster->get_exact($call); 
555                                 if ($ref) {
556                                         if ($ref->isa('DXNode')) {
557                                                 dbg('chan', "PCPROT: $call is a node");
558                                                 next;
559                                         }
560                                         my $rcall = $ref->mynode->call;
561                                         dbg('chan', "PCPROT: already have $call on $rcall");
562                                         next;
563                                 }
564                                 
565                                 $confmode = $confmode eq '*';
566                                 DXNodeuser->new($self, $node, $call, $confmode, $here);
567                                 
568                                 # add this station to the user database, if required
569                                 $call =~ s/-\d+$//o;        # remove ssid for users
570                                 my $user = DXUser->get_current($call);
571                                 $user = DXUser->new($call) if !$user;
572                                 $user->homenode($node->call) if !$user->homenode;
573                                 $user->node($node->call);
574                                 $user->lastin($main::systime) unless DXChannel->get($call);
575                                 $user->put;
576                         }
577                         
578                         # queue up any messages (look for privates only)
579                         DXMsg::queue_msg(1) if $self->state eq 'normal';     
580 #                       broadcast_route($line, $self, $field[1]);
581 #                       return;
582                         last SWITCH;
583                 }
584                 
585                 if ($pcno == 17) {              # remove a user
586                         my $node = DXCluster->get_exact($field[2]);
587                         my $dxchan;
588                         if (!$node && ($dxchan = DXChannel->get($field[2]))) {
589                                 # add it to the node table if it isn't present and it's
590                                 # connected locally
591                                 $node = DXNode->new($dxchan, $field[2], 0, 1, 5400);
592                                 dbg('chan', "PCPROT: $field[2] no PC19 yet, autovivified as node");
593 #                               broadcast_ak1a(pc19($dxchan, $node), $dxchan, $self) unless $dxchan->{isolate};
594                         }
595                         if ($field[1] eq $main::mycall || $field[2] eq $main::mycall) {
596                                 dbg('chan', "PCPROT: trying to alter config on this node from outside!");
597                                 return;
598                         }
599                         if ($field[1] eq $main::myalias && DXChannel->get($field[1])) {
600                                 dbg('chan', "PCPROT: trying to disconnect sysop from outside!");
601                                 return;
602                         }
603                         unless ($node) {
604                                 dbg('chan', "PCPROT: Node $field[2] not in config");
605                                 return;
606                         }
607                         unless ($node->isa('DXNode')) {
608                                 dbg('chan', "PCPROT: $field[2] is not a node");
609                                 return;
610                         }
611                         if ($node->dxchan != $self) {
612                                 dbg('chan', "PCPROT: $field[2] came in on wrong channel");
613                                 return;
614                         }
615                         if ($dxchan = DXChannel->get($field[1])) {
616                                 dbg('chan', "PCPROT: $field[1] connected locally");
617                                 return;
618                         }
619                         my $ref = DXCluster->get_exact($field[1]);
620                         if ($ref) {
621                                 if ($ref->mynode != $node) {
622                                         dbg('chan', "PCPROT: $field[1] came in from wrong node $field[2]");
623                                         return;
624                                 }
625                                 $ref->del;
626                         } else {
627                                 dbg('chan', "PCPROT: $field[1] not known" );
628                                 return;
629                         }
630 #                       broadcast_route($line, $self, $field[2]);
631 #                       return;
632                         last SWITCH;
633                 }
634                 
635                 if ($pcno == 18) {              # link request
636                         $self->state('init');   
637
638                         # first clear out any nodes on this dxchannel
639                         my @gonenodes = map { $_->dxchan == $self ? $_ : () } DXNode::get_all();
640                         foreach my $node (@gonenodes) {
641                                 next if $node->dxchan == $DXProt::me;
642                                 broadcast_ak1a(pc21($node->call, 'Gone, re-init') , $self) unless $self->{isolate}; 
643                                 $node->del();
644                         }
645                         $self->send_local_config();
646                         $self->send(pc20());
647                         return;             # we don't pass these on
648                 }
649                 
650                 if ($pcno == 19) {              # incoming cluster list
651                         my $i;
652                         my $newline = "PC19^";
653                         for ($i = 1; $i < $#field-1; $i += 4) {
654                                 my $here = $field[$i];
655                                 my $call = uc $field[$i+1];
656                                 my $confmode = $field[$i+2];
657                                 my $ver = $field[$i+3];
658                                 next unless defined $here && defined $confmode && is_callsign($call);
659
660                                 $ver = 5400 if !$ver && $allowzero;
661                                 
662                                 # now check the call over
663                                 my $node = DXCluster->get_exact($call);
664                                 if ($node) {
665                                         my $dxchan;
666                                         if (($dxchan = DXChannel->get($call)) && $dxchan != $self) {
667                                                 dbg('chan', "PCPROT: $call connected locally");
668                                         }
669                                     if ($node->dxchan != $self) {
670                                                 dbg('chan', "PCPROT: $call come in on wrong channel");
671                                                 next;
672                                         }
673                                         my $rcall = $node->mynode->call;
674                                         dbg('chan', "PCPROT: already have $call on $rcall");
675                                         next;
676                                 }
677                                 
678                                 # check for sane parameters
679                                 next if $ver < 5000; # only works with version 5 software
680                                 next if length $call < 3; # min 3 letter callsigns
681
682                                 # add it to the nodes table and outgoing line
683                                 $newline .= "$here^$call^$confmode^$ver^";
684                                 DXNode->new($self, $call, $confmode, $here, $ver);
685                                 
686                                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
687                                 my $mref = DXMsg::get_busy($call);
688                                 $mref->stop_msg($call) if $mref;
689                                 
690                                 # add this station to the user database, if required (don't remove SSID from nodes)
691                                 my $user = DXUser->get_current($call);
692                                 if (!$user) {
693                                         $user = DXUser->new($call);
694                                         $user->sort('A');
695                                         $user->priv(1);                   # I have relented and defaulted nodes
696                                         $self->{priv} = 1;                # to user RCMDs allowed
697                                         $user->homenode($call);
698                                         $user->node($call);
699                                 }
700                                 $user->lastin($main::systime) unless DXChannel->get($call);
701                                 $user->put;
702                         }
703                         
704                         return if $newline eq "PC19^";
705
706                         # add hop count 
707                         $newline .=  get_hops(19) . "^";
708                         $line = $newline;
709                         last SWITCH;
710                 }
711                 
712                 if ($pcno == 20) {              # send local configuration
713                         $self->send_local_config();
714                         $self->send(pc22());
715                         $self->state('normal');
716                         return;
717                 }
718                 
719                 if ($pcno == 21) {              # delete a cluster from the list
720                         my $call = uc $field[1];
721                         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
722                                 my $node = DXCluster->get_exact($call);
723                                 if ($node) {
724                                         unless ($node->isa('DXNode')) {
725                                                 dbg('chan', "PCPROT: $call is not a node");
726                                                 return;
727                                         }
728                                         if ($call eq $self->{call}) {
729                                                 dbg('chan', "PCPROT: Trying to disconnect myself with PC21");
730                                                 return;
731                                         } 
732                                         if ($node->dxchan != $self) {
733                                                 dbg('chan', "PCPROT: $call come in on wrong channel");
734                                                 return;
735                                         }
736                                         my $dxchan;
737                                         if ($dxchan = DXChannel->get($call)) {
738                                                 dbg('chan', "PCPROT: $call connected locally");
739                                                 return;
740                                         }
741                                         $node->del();
742                                 } else {
743                                         dbg('chan', "PCPROT: $call not in table, dropped");
744                                         return;
745                                 }
746                         } else {
747                                 dbg('chan', "PCPROT: I WILL _NOT_ be disconnected!");
748                                 return;
749                         }
750 #                       broadcast_route($line, $self, $call);
751 #                       return;
752                         last SWITCH;
753                 }
754                 
755                 if ($pcno == 22) {
756                         $self->state('normal');
757                         return;
758                 }
759                                 
760                 if ($pcno == 23 || $pcno == 27) { # WWV info
761                         
762                         # route 'foreign' pc27s 
763                         if ($pcno == 27) {
764                                 if ($field[8] ne $main::mycall) {
765                                         $self->route($field[8], $line);
766                                         return;
767                                 }
768                         }
769
770                         # do some de-duping
771                         my $d = cltounix($field[1], sprintf("%02d18Z", $field[2]));
772                         my $sfi = unpad($field[3]);
773                         my $k = unpad($field[4]);
774                         my $i = unpad($field[5]);
775                         my ($r) = $field[6] =~ /R=(\d+)/;
776                         $r = 0 unless $r;
777                         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
778                                 dbg('chan', "PCPROT: WWV Date ($field[1] $field[2]) out of range");
779                                 return;
780                         }
781                         if (Geomag::dup($d,$sfi,$k,$i,$field[6])) {
782                                 dbg('chan', "PCPROT: Dup WWV Spot ignored\n");
783                                 return;
784                         }
785                         $field[7] =~ s/-\d+$//o;            # remove spotter's ssid
786                 
787                         my $wwv = Geomag::update($d, $field[2], $sfi, $k, $i, @field[6..8], $r);
788
789                         my $rep;
790                         eval {
791                                 $rep = Local::wwv($self, $field[1], $field[2], $sfi, $k, $i, @field[6..8], $r);
792                         };
793 #                       dbg('local', "Local::wwv2 error $@") if $@;
794                         return if $rep;
795
796                         # DON'T be silly and send on PC27s!
797                         return if $pcno == 27;
798
799                         # broadcast to the eager world
800                         send_wwv_spot($self, $line, $d, $field[2], $sfi, $k, $i, @field[6..8]);
801                         return;
802                 }
803                 
804                 if ($pcno == 24) {              # set here status
805                         my $call = uc $field[1];
806                         my $ref = DXCluster->get_exact($call);
807                         $ref->here($field[2]) if $ref;
808                         last SWITCH;
809                 }
810                 
811                 if ($pcno == 25) {      # merge request
812                         if ($field[1] ne $main::mycall) {
813                                 $self->route($field[1], $line);
814                                 return;
815                         }
816                         if ($field[2] eq $main::mycall) {
817                                 dbg('chan', "PCPROT: Trying to merge to myself, ignored");
818                                 return;
819                         }
820
821                         Log('DXProt', "Merge request for $field[3] spots and $field[4] WWV from $field[1]");
822                         
823                         # spots
824                         if ($field[3] > 0) {
825                                 my @in = reverse Spot::search(1, undef, undef, 0, $field[3]);
826                                 my $in;
827                                 foreach $in (@in) {
828                                         $self->send(pc26(@{$in}[0..4], $field[2]));
829                                 }
830                         }
831
832                         # wwv
833                         if ($field[4] > 0) {
834                                 my @in = reverse Geomag::search(0, $field[4], time, 1);
835                                 my $in;
836                                 foreach $in (@in) {
837                                         $self->send(pc27(@{$in}[0..5], $field[2]));
838                                 }
839                         }
840                         return;
841                 }
842
843                 if (($pcno >= 28 && $pcno <= 33) || $pcno == 40 || $pcno == 42 || $pcno == 49) { # mail/file handling
844                         if ($pcno == 49 || $field[1] eq $main::mycall) {
845                                 DXMsg::process($self, $line);
846                         } else {
847                                 $self->route($field[1], $line) unless $self->is_clx;
848                         }
849                         return;
850                 }
851                 
852                 if ($pcno == 34 || $pcno == 36) { # remote commands (incoming)
853                         if ($field[1] eq $main::mycall) {
854                                 my $ref = DXUser->get_current($field[2]);
855                                 my $cref = DXCluster->get($field[2]);
856                                 Log('rcmd', 'in', $ref->{priv}, $field[2], $field[3]);
857                                 unless (!$cref || !$ref || $cref->mynode->call ne $ref->homenode) {    # not allowed to relay RCMDS!
858                                         if ($ref->{priv}) {     # you have to have SOME privilege, the commands have further filtering
859                                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
860                                                 my $oldpriv = $self->{priv};
861                                                 $self->{priv} = $ref->{priv};     # assume the user's privilege level
862                                                 my @in = (DXCommandmode::run_cmd($self, $field[3]));
863                                                 $self->{priv} = $oldpriv;
864                                                 for (@in) {
865                                                         s/\s*$//og;
866                                                         $self->send(pc35($main::mycall, $field[2], "$main::mycall:$_"));
867                                                         Log('rcmd', 'out', $field[2], $_);
868                                                 }
869                                                 delete $self->{remotecmd};
870                                         } else {
871                                                 $self->send(pc35($main::mycall, $field[2], "$main::mycall:sorry...!"));
872                                         }
873                                 } else {
874                                         $self->send(pc35($main::mycall, $field[2], "$main::mycall:your attempt is logged, Tut tut tut...!"));
875                                 }
876                         } else {
877                                 my $ref = DXUser->get_current($field[1]);
878                                 if ($ref && $ref->is_clx) {
879                                         $self->route($field[1], pc84($field[2], $field[1], $field[2], $field[3]));
880                                 } else {
881                                         $self->route($field[1], $line);
882                                 }
883                         }
884                         return;
885                 }
886                 
887                 if ($pcno == 35) {              # remote command replies
888                         if ($field[1] eq $main::mycall) {
889                                 my $s = $rcmds{$field[2]};
890                                 if ($s) {
891                                         my $dxchan = DXChannel->get($s->{call});
892                                         $dxchan->send($field[3]) if $dxchan;
893                                         delete $rcmds{$field[2]} if !$dxchan;
894                                 } else {
895                                         # send unsolicited ones to the sysop
896                                         my $dxchan = DXChannel->get($main::myalias);
897                                         $dxchan->send($field[3]) if $dxchan;
898                                 }
899                         } else {
900                                 my $ref = DXUser->get_current($field[1]);
901                                 if ($ref && $ref->is_clx) {
902                                         $self->route($field[1], pc85($field[2], $field[1], $field[2], $field[3]));
903                                 } else {
904                                         $self->route($field[1], $line);
905                                 }
906                         }
907                         return;
908                 }
909                 
910                 # for pc 37 see 44 onwards
911
912                 if ($pcno == 38) {              # node connected list from neighbour
913                         return;
914                 }
915                 
916                 if ($pcno == 39) {              # incoming disconnect
917                         if ($field[1] eq $self->{call}) {
918                                 $self->disconnect(1);
919                         } else {
920                                 dbg('chan', "PCPROT: came in on wrong channel");
921                         }
922                         return;
923                 }
924                 
925                 if ($pcno == 41) {              # user info
926                         # add this station to the user database, if required
927                         my $user = DXUser->get_current($field[1]);
928                         $user = DXUser->new($field[1]) if !$user;
929                         
930                         if ($field[2] == 1) {
931                                 $user->name($field[3]);
932                         } elsif ($field[2] == 2) {
933                                 $user->qth($field[3]);
934                         } elsif ($field[2] == 3) {
935                                 my ($lat, $long) = DXBearing::stoll($field[3]);
936                                 $user->lat($lat);
937                                 $user->long($long);
938                                 $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra && DXBearing::is_qra($user->qra);
939                         } elsif ($field[2] == 4) {
940                                 $user->homenode($field[3]);
941                         }
942                         $user->lastoper($main::systime);   # to cut down on excessive for/opers being generated
943                         $user->put;
944                         last SWITCH;
945                 }
946                 if ($pcno == 43) {
947                         last SWITCH;
948                 }
949                 if ($pcno == 37 || $pcno == 44 || $pcno == 45 || $pcno == 46 || $pcno == 47 || $pcno == 48) {
950                         DXDb::process($self, $line);
951                         return;
952                 }
953                 
954                 if ($pcno == 50) {              # keep alive/user list
955                         my $node = DXCluster->get_exact($field[1]);
956                         if ($node) {
957                                 return unless $node->isa('DXNode');
958                                 return unless $node->dxchan == $self;
959                                 $node->update_users($field[2]);
960                         }
961                         last SWITCH;
962                 }
963                 
964                 if ($pcno == 51) {              # incoming ping requests/answers
965                         
966                         # is it for us?
967                         if ($field[1] eq $main::mycall) {
968                                 my $flag = $field[3];
969                                 if ($flag == 1) {
970                                         $self->send(pc51($field[2], $field[1], '0'));
971                                 } else {
972                                         # it's a reply, look in the ping list for this one
973                                         my $ref = $pings{$field[2]};
974                                         if ($ref) {
975                                                 my $tochan =  DXChannel->get($field[2]);
976                                                 while (@$ref) {
977                                                         my $r = shift @$ref;
978                                                         my $dxchan = DXChannel->get($r->{call});
979                                                         next unless $dxchan;
980                                                         my $t = tv_interval($r->{t}, [ gettimeofday ]);
981                                                         if ($dxchan->is_user) {
982                                                                 my $s = sprintf "%.2f", $t; 
983                                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
984                                                                 $dxchan->send($dxchan->msg('pingi', $field[2], $s, $ave))
985                                                         } elsif ($dxchan->is_node) {
986                                                                 if ($tochan) {
987                                                                         $tochan->{nopings} = $tochan->user->nopings || 2; # pump up the timer
988                                                                         push @{$tochan->{pingtime}}, $t;
989                                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
990                                                                         my $st;
991                                                                         for (@{$tochan->{pingtime}}) {
992                                                                                 $st += $_;
993                                                                         }
994                                                                         $tochan->{pingave} = $st / @{$tochan->{pingtime}};
995                                                                 }
996                                                         } 
997                                                 }
998                                         }
999                                 }
1000                         } else {
1001                                 # route down an appropriate thingy
1002                                 $self->route($field[1], $line);
1003                         }
1004                         return;
1005                 }
1006
1007                 if ($pcno == 75) {              # dunno but route it
1008                         if ($field[1] ne $main::mycall) {
1009                                 $self->route($field[1], $line);
1010                         }
1011                         return;
1012                 }
1013
1014                 if ($pcno == 73) {  # WCY broadcasts
1015                         
1016                         # do some de-duping
1017                         my $d = cltounix($field[1], sprintf("%02d18Z", $field[2]));
1018                         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
1019                                 dbg('chan', "PCPROT: WCY Date ($field[1] $field[2]) out of range");
1020                                 return;
1021                         }
1022                         @field = map { unpad($_) } @field;
1023                         if (WCY::dup($d,@field[3..7])) {
1024                                 dbg('chan', "PCPROT: Dup WCY Spot ignored\n");
1025                                 return;
1026                         }
1027                 
1028                         my $wcy = WCY::update($d, @field[2..12]);
1029
1030                         my $rep;
1031                         eval {
1032                                 $rep = Local::wwv($self, @field[1..12]);
1033                         };
1034                         # dbg('local', "Local::wcy error $@") if $@;
1035                         return if $rep;
1036
1037                         # broadcast to the eager world
1038                         send_wcy_spot($self, $line, $d, @field[2..12]);
1039                         return;
1040                 }
1041
1042                 if ($pcno == 84) { # remote commands (incoming)
1043                         if ($field[1] eq $main::mycall) {
1044                                 my $ref = DXUser->get_current($field[2]);
1045                                 my $cref = DXCluster->get($field[2]);
1046                                 Log('rcmd', 'in', $ref->{priv}, $field[2], $field[4]);
1047                                 unless ($field[4] =~ /rcmd/i || !$cref || !$ref || $cref->mynode->call ne $ref->homenode) {    # not allowed to relay RCMDS!
1048                                         if ($ref->{priv}) {     # you have to have SOME privilege, the commands have further filtering
1049                                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
1050                                                 my $oldpriv = $self->{priv};
1051                                                 $self->{priv} = $ref->{priv};     # assume the user's privilege level
1052                                                 my @in = (DXCommandmode::run_cmd($self, $field[4]));
1053                                                 $self->{priv} = $oldpriv;
1054                                                 for (@in) {
1055                                                         s/\s*$//og;
1056                                                         $self->send(pc85($main::mycall, $field[2], $field[3], "$main::mycall:$_"));
1057                                                         Log('rcmd', 'out', $field[2], $_);
1058                                                 }
1059                                                 delete $self->{remotecmd};
1060                                         } else {
1061                                                 $self->send(pc85($main::mycall, $field[2], $field[3], "$main::mycall:sorry...!"));
1062                                         }
1063                                 } else {
1064                                         $self->send(pc85($main::mycall, $field[2], $field[3],"$main::mycall:your attempt is logged, Tut tut tut...!"));
1065                                 }
1066                         } else {
1067                                 my $ref = DXUser->get_current($field[1]);
1068                                 if ($ref && $ref->is_clx) {
1069                                         $self->route($field[1], $line);
1070                                 } else {
1071                                         $self->route($field[1], pc34($field[2], $field[1], $field[4]));
1072                                 }
1073                         }
1074                         return;
1075                 }
1076
1077                 if ($pcno == 85) {              # remote command replies
1078                         if ($field[1] eq $main::mycall) {
1079                                 my $dxchan = DXChannel->get($field[3]);
1080                                 if ($dxchan) {
1081                                         $dxchan->send($field[4]);
1082                                 } else {
1083                                         my $s = $rcmds{$field[2]};
1084                                         if ($s) {
1085                                                 $dxchan = DXChannel->get($s->{call});
1086                                                 $dxchan->send($field[4]) if $dxchan;
1087                                                 delete $rcmds{$field[2]} if !$dxchan;
1088                                         } else {
1089                                                 # send unsolicited ones to the sysop
1090                                                 my $dxchan = DXChannel->get($main::myalias);
1091                                                 $dxchan->send($field[4]) if $dxchan;
1092                                         }
1093                                 }
1094                         } else {
1095                                 my $ref = DXUser->get_current($field[1]);
1096                                 if ($ref && $ref->is_clx) {
1097                                         $self->route($field[1], $line);
1098                                 } else {
1099                                         $self->route($field[1], pc35($field[2], $field[1], $field[4]));
1100                                 }
1101                         }
1102                         return;
1103                 }
1104         }
1105          
1106         # if get here then rebroadcast the thing with its Hop count decremented (if
1107         # there is one). If it has a hop count and it decrements to zero then don't
1108         # rebroadcast it.
1109         #
1110         # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1111         #        REBROADCAST!!!!
1112         #
1113          
1114         unless ($self->{isolate}) {
1115                 broadcast_ak1a($line, $self); # send it to everyone but me
1116         }
1117 }
1118
1119 #
1120 # This is called from inside the main cluster processing loop and is used
1121 # for despatching commands that are doing some long processing job
1122 #
1123 sub process
1124 {
1125         my $t = time;
1126         my @dxchan = DXChannel->get_all();
1127         my $dxchan;
1128         
1129         foreach $dxchan (@dxchan) {
1130                 next unless $dxchan->is_node();
1131                 next if $dxchan == $me;
1132                 
1133                 # send a pc50 out on this channel
1134                 if ($t >= $dxchan->{pc50_t} + $DXProt::pc50_interval) {
1135                         $dxchan->send(pc50(scalar DXChannel::get_all_users));
1136                         $dxchan->{pc50_t} = $t;
1137                 } 
1138
1139                 # send a ping out on this channel
1140                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1141                         if ($dxchan->{nopings} <= 0) {
1142                                 $dxchan->disconnect;
1143                         } else {
1144                                 addping($main::mycall, $dxchan->call);
1145                                 $dxchan->{nopings} -= 1;
1146                                 $dxchan->{lastping} = $t;
1147                         }
1148                 }
1149         }
1150         
1151         my $key;
1152         my $val;
1153         my $cutoff;
1154         if ($main::systime - 3600 > $last_hour) {
1155 #               Spot::process;
1156 #               Geomag::process;
1157 #               AnnTalk::process;
1158                 $last_hour = $main::systime;
1159         }
1160 }
1161
1162 #
1163 # finish up a pc context
1164 #
1165
1166 #
1167 # some active measures
1168 #
1169 sub send_route
1170 {
1171         my $self = shift;
1172         my $line = shift;
1173         my @dxchan = DXChannel::get_all_nodes();
1174         my $dxchan;
1175         
1176         # send it if it isn't the except list and isn't isolated and still has a hop count
1177         # taking into account filtering and so on
1178         foreach $dxchan (@dxchan) {
1179                 my $routeit;
1180                 my ($filter, $hops);
1181
1182                 if ($dxchan->{routefilter}) {
1183                         ($filter, $hops) = $dxchan->{routefilter}->it($self->{call}, @_);
1184                          next unless $filter;
1185                 }
1186                 next if $dxchan == $self;
1187                 if ($hops) {
1188                         $routeit = $line;
1189                         $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1190                 } else {
1191                         $routeit = adjust_hops($dxchan, $line);  # adjust its hop count by node name
1192                         next unless $routeit;
1193                 }
1194                 if ($filter) {
1195                         $dxchan->send($routeit) if $routeit;
1196                 } else {
1197                         $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
1198                 }
1199         }
1200 }
1201
1202 sub send_dx_spot
1203 {
1204         my $self = shift;
1205         my $line = shift;
1206         my @dxchan = DXChannel->get_all();
1207         my $dxchan;
1208         
1209         # send it if it isn't the except list and isn't isolated and still has a hop count
1210         # taking into account filtering and so on
1211         foreach $dxchan (@dxchan) {
1212                 my $routeit;
1213                 my ($filter, $hops);
1214
1215                 if ($dxchan->{spotsfilter}) {
1216                     ($filter, $hops) = $dxchan->{spotsfilter}->it(@_, $self->{call} );
1217                         next unless $filter;
1218                 }
1219                 
1220                 if ($dxchan->is_node) {
1221                         next if $dxchan == $self;
1222                         if ($hops) {
1223                                 $routeit = $line;
1224                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1225                         } else {
1226                                 $routeit = adjust_hops($dxchan, $line);  # adjust its hop count by node name
1227                                 next unless $routeit;
1228                         }
1229                         if ($filter) {
1230                                 $dxchan->send($routeit) if $routeit;
1231                         } else {
1232                                 $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
1233                         }
1234                 } elsif ($dxchan->is_user && $dxchan->{dx}) {
1235                         my $buf = Spot::formatb($dxchan->{user}->wantgrid, $_[0], $_[1], $_[2], $_[3], $_[4]);
1236                         $buf .= "\a\a" if $dxchan->{beep};
1237                         $buf =~ s/\%5E/^/g;
1238                         if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
1239                                 $dxchan->send($buf);
1240                         } else {
1241                                 $dxchan->delay($buf);
1242                         }
1243                 }                                       
1244         }
1245 }
1246
1247 sub send_wwv_spot
1248 {
1249         my $self = shift;
1250         my $line = shift;
1251         my @dxchan = DXChannel->get_all();
1252         my $dxchan;
1253         my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1254         my @dxcc = Prefix::extract($_[7]);
1255         if (@dxcc > 0) {
1256                 $wwv_dxcc = $dxcc[1]->dxcc;
1257                 $wwv_itu = $dxcc[1]->itu;
1258                 $wwv_cq = $dxcc[1]->cq;                                         
1259         }
1260         @dxcc = Prefix::extract($_[8]);
1261         if (@dxcc > 0) {
1262                 $org_dxcc = $dxcc[1]->dxcc;
1263                 $org_itu = $dxcc[1]->itu;
1264                 $org_cq = $dxcc[1]->cq;                                         
1265         }
1266         
1267         # send it if it isn't the except list and isn't isolated and still has a hop count
1268         # taking into account filtering and so on
1269         foreach $dxchan (@dxchan) {
1270                 my $routeit;
1271                 my ($filter, $hops);
1272
1273                 if ($dxchan->{wwvfilter}) {
1274                         ($filter, $hops) = $dxchan->{wwvfilter}->it(@_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1275                          next unless $filter;
1276                 }
1277                 if ($dxchan->is_node) {
1278                         next if $dxchan == $self;
1279                         if ($hops) {
1280                                 $routeit = $line;
1281                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1282                         } else {
1283                                 $routeit = adjust_hops($dxchan, $line);  # adjust its hop count by node name
1284                                 next unless $routeit;
1285                         }
1286                         if ($filter) {
1287                                 $dxchan->send($routeit) if $routeit;
1288                         } else {
1289                                 $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
1290                                 
1291                         }
1292                 } elsif ($dxchan->is_user && $dxchan->{wwv}) {
1293                         my $buf = "WWV de $_[6] <$_[1]>:   SFI=$_[2], A=$_[3], K=$_[4], $_[5]";
1294                         $buf .= "\a\a" if $dxchan->{beep};
1295                         if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
1296                                 $dxchan->send($buf);
1297                         } else {
1298                                 $dxchan->delay($buf);
1299                         }
1300                 }                                       
1301         }
1302 }
1303
1304 sub send_wcy_spot
1305 {
1306         my $self = shift;
1307         my $line = shift;
1308         my @dxchan = DXChannel->get_all();
1309         my $dxchan;
1310         my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1311         my @dxcc = Prefix::extract($_[11]);
1312         if (@dxcc > 0) {
1313                 $wcy_dxcc = $dxcc[1]->dxcc;
1314                 $wcy_itu = $dxcc[1]->itu;
1315                 $wcy_cq = $dxcc[1]->cq;                                         
1316         }
1317         @dxcc = Prefix::extract($_[12]);
1318         if (@dxcc > 0) {
1319                 $org_dxcc = $dxcc[1]->dxcc;
1320                 $org_itu = $dxcc[1]->itu;
1321                 $org_cq = $dxcc[1]->cq;                                         
1322         }
1323         
1324         # send it if it isn't the except list and isn't isolated and still has a hop count
1325         # taking into account filtering and so on
1326         foreach $dxchan (@dxchan) {
1327                 my $routeit;
1328                 my ($filter, $hops);
1329
1330                 if ($dxchan->{wcyfilter}) {
1331                         ($filter, $hops) = $dxchan->{wcyfilter}->it(@_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1332                          next unless $filter;
1333                 }
1334                 if ($dxchan->is_clx || $dxchan->is_spider || $dxchan->is_dxnet) {
1335                         next if $dxchan == $self;
1336                         if ($hops) {
1337                                 $routeit = $line;
1338                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1339                         } else {
1340                                 $routeit = adjust_hops($dxchan, $line);  # adjust its hop count by node name
1341                                 next unless $routeit;
1342                         }
1343                         if ($filter) {
1344                                 $dxchan->send($routeit) if $routeit;
1345                         } else {
1346                                 $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
1347                         }
1348                 } elsif ($dxchan->is_user && $dxchan->{wcy}) {
1349                         my $buf = "WCY de $_[10] <$_[1]> : K=$_[4] expK=$_[5] A=$_[3] R=$_[6] SFI=$_[2] SA=$_[7] GMF=$_[8] Au=$_[9]";
1350                         $buf .= "\a\a" if $dxchan->{beep};
1351                         if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
1352                                 $dxchan->send($buf);
1353                         } else {
1354                                 $dxchan->delay($buf);
1355                         }
1356                 }                                       
1357         }
1358 }
1359
1360 # send an announce
1361 sub send_announce
1362 {
1363         my $self = shift;
1364         my $line = shift;
1365         my @dxchan = DXChannel->get_all();
1366         my $dxchan;
1367         my $text = unpad($_[2]);
1368         my $target;
1369         my $to = 'To ';
1370                                 
1371         if ($_[3] eq '*') {     # sysops
1372                 $target = "SYSOP";
1373         } elsif ($_[3] gt ' ') { # speciality list handling
1374                 my ($name) = split /\./, $_[3]; 
1375                 $target = "$name"; # put the rest in later (if bothered) 
1376         } 
1377         
1378         if ($_[5] eq '1') {
1379                 $target = "WX"; 
1380                 $to = '';
1381         }
1382         $target = "ALL" if !$target;
1383         
1384         Log('ann', $target, $_[0], $text);
1385
1386         # obtain country codes etc 
1387         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1388         my @dxcc = Prefix::extract($_[0]);
1389         if (@dxcc > 0) {
1390                 $ann_dxcc = $dxcc[1]->dxcc;
1391                 $ann_itu = $dxcc[1]->itu;
1392                 $ann_cq = $dxcc[1]->cq;                                         
1393         }
1394         @dxcc = Prefix::extract($_[4]);
1395         if (@dxcc > 0) {
1396                 $org_dxcc = $dxcc[1]->dxcc;
1397                 $org_itu = $dxcc[1]->itu;
1398                 $org_cq = $dxcc[1]->cq;                                         
1399         }
1400
1401         # send it if it isn't the except list and isn't isolated and still has a hop count
1402         # taking into account filtering and so on
1403         foreach $dxchan (@dxchan) {
1404                 my $routeit;
1405                 my ($filter, $hops);
1406
1407                 if ($dxchan->{annfilter}) {
1408                         ($filter, $hops) = $dxchan->{annfilter}->it(@_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1409                         next unless $filter;
1410                 } 
1411                 if ($dxchan->is_node && $_[1] ne $main::mycall) {  # i.e not specifically routed to me
1412                         next if $dxchan == $self;
1413                         if ($hops) {
1414                                 $routeit = $line;
1415                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1416                         } else {
1417                                 $routeit = adjust_hops($dxchan, $line);  # adjust its hop count by node name
1418                                 next unless $routeit;
1419                         }
1420                         if ($filter) {
1421                                 $dxchan->send($routeit) if $routeit;
1422                         } else {
1423                                 $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
1424                                 
1425                         }
1426                 } elsif ($dxchan->is_user) {
1427                         unless ($dxchan->{ann}) {
1428                                 next if $_[0] ne $main::myalias && $_[0] ne $main::mycall;
1429                         }
1430                         next if $target eq 'SYSOP' && $dxchan->{priv} < 5;
1431                         my $buf = "$to$target de $_[0]: $text";
1432                         $buf =~ s/\%5E/^/g;
1433                         $buf .= "\a\a" if $dxchan->{beep};
1434                         if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
1435                                 $dxchan->send($buf);
1436                         } else {
1437                                 $dxchan->delay($buf);
1438                         }
1439                 }                                       
1440         }
1441 }
1442
1443 sub send_local_config
1444 {
1445         my $self = shift;
1446         my $n;
1447         my @nodes;
1448         my @localnodes;
1449         my @remotenodes;
1450                 
1451         # send our nodes
1452         if ($self->{isolate}) {
1453                 @localnodes = (DXCluster->get_exact($main::mycall));
1454         } else {
1455                 # create a list of all the nodes that are not connected to this connection
1456                 # and are not themselves isolated, this to make sure that isolated nodes
1457         # don't appear outside of this node
1458                 @nodes = DXNode::get_all();
1459                 @nodes = grep { $_->{call} ne $main::mycall } @nodes;
1460                 @nodes = grep { $_->dxchan != $self } @nodes if @nodes;
1461                 @nodes = grep { !$_->dxchan->{isolate} } @nodes if @nodes;
1462                 @localnodes = grep { $_->dxchan->{call} eq $_->{call} } @nodes if @nodes;
1463                 unshift @localnodes, DXCluster->get_exact($main::mycall);
1464                 @remotenodes = grep { $_->dxchan->{call} ne $_->{call} } @nodes if @nodes;
1465         }
1466
1467         my @s = $me->pc19(@localnodes, @remotenodes);
1468         for (@s) {
1469                 my $routeit = adjust_hops($self, $_);
1470                 $self->send($routeit) if $routeit;
1471         }
1472         
1473         # get all the users connected on the above nodes and send them out
1474         foreach $n (@localnodes, @remotenodes) {
1475                 my @users = values %{$n->list};
1476                 my @s = pc16($n, @users);
1477                 for (@s) {
1478                         my $routeit = adjust_hops($self, $_);
1479                         $self->send($routeit) if $routeit;
1480                 }
1481         }
1482 }
1483
1484 #
1485 # route a message down an appropriate interface for a callsign
1486 #
1487 # is called route(to, pcline);
1488 #
1489 sub route
1490 {
1491         my ($self, $call, $line) = @_;
1492
1493         if (ref $self && $call eq $self->{call}) {
1494                 dbg('chan', "PCPROT: Trying to route back to source, dropped");
1495                 return;
1496         }
1497
1498         # always send it down the local interface if available
1499         my $dxchan = DXChannel->get($call);
1500         unless ($dxchan) {
1501                 my $cl = DXCluster->get_exact($call);
1502                 $dxchan = $cl->dxchan if $cl;
1503                 if (ref $dxchan) {
1504                         if (ref $self && $dxchan eq $self) {
1505                                 dbg('chan', "PCPROT: Trying to route back to source, dropped");
1506                                 return;
1507                         }
1508                 }
1509         }
1510         if ($dxchan) {
1511                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
1512                 if ($routeit) {
1513                         $dxchan->send($routeit);
1514                 }
1515         } else {
1516                 dbg('chan', "PCPROT: No route available, dropped");
1517         }
1518 }
1519
1520 # broadcast a message to all clusters taking into account isolation
1521 # [except those mentioned after buffer]
1522 sub broadcast_ak1a
1523 {
1524         my $s = shift;                          # the line to be rebroadcast
1525         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
1526         my @dxchan = DXChannel::get_all_nodes();
1527         my $dxchan;
1528         
1529         # send it if it isn't the except list and isn't isolated and still has a hop count
1530         foreach $dxchan (@dxchan) {
1531                 next if grep $dxchan == $_, @except;
1532                 next if $dxchan == $me;
1533                 
1534                 my $routeit = adjust_hops($dxchan, $s);      # adjust its hop count by node name
1535                 $dxchan->send($routeit) unless $dxchan->{isolate} || !$routeit;
1536         }
1537 }
1538
1539 # broadcast a message to all clusters ignoring isolation
1540 # [except those mentioned after buffer]
1541 sub broadcast_all_ak1a
1542 {
1543         my $s = shift;                          # the line to be rebroadcast
1544         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
1545         my @dxchan = DXChannel::get_all_nodes();
1546         my $dxchan;
1547         
1548         # send it if it isn't the except list and isn't isolated and still has a hop count
1549         foreach $dxchan (@dxchan) {
1550                 next if grep $dxchan == $_, @except;
1551                 next if $dxchan == $me;
1552
1553                 my $routeit = adjust_hops($dxchan, $s);      # adjust its hop count by node name
1554                 $dxchan->send($routeit);
1555         }
1556 }
1557
1558 # broadcast to all users
1559 # storing the spot or whatever until it is in a state to receive it
1560 sub broadcast_users
1561 {
1562         my $s = shift;                          # the line to be rebroadcast
1563         my $sort = shift;           # the type of transmission
1564         my $fref = shift;           # a reference to an object to filter on
1565         my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)
1566         my @dxchan = DXChannel::get_all_users();
1567         my $dxchan;
1568         my @out;
1569         
1570         foreach $dxchan (@dxchan) {
1571                 next if grep $dxchan == $_, @except;
1572                 push @out, $dxchan;
1573         }
1574         broadcast_list($s, $sort, $fref, @out);
1575 }
1576
1577 # broadcast to a list of users
1578 sub broadcast_list
1579 {
1580         my $s = shift;
1581         my $sort = shift;
1582         my $fref = shift;
1583         my $dxchan;
1584         
1585         foreach $dxchan (@_) {
1586                 my $filter = 1;
1587                 next if $dxchan == $me;
1588                 
1589                 if ($sort eq 'dx') {
1590                     next unless $dxchan->{dx};
1591                         ($filter) = $dxchan->{spotsfilter}->it(@{$fref}) if ref $fref;
1592                         next unless $filter;
1593                 }
1594                 next if $sort eq 'ann' && !$dxchan->{ann};
1595                 next if $sort eq 'wwv' && !$dxchan->{wwv};
1596                 next if $sort eq 'wcy' && !$dxchan->{wcy};
1597                 next if $sort eq 'wx' && !$dxchan->{wx};
1598
1599                 $s =~ s/\a//og unless $dxchan->{beep};
1600
1601                 if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'talk') {
1602                         $dxchan->send($s);      
1603                 } else {
1604                         $dxchan->delay($s);
1605                 }
1606         }
1607 }
1608
1609
1610 #
1611 # obtain the hops from the list for this callsign and pc no 
1612 #
1613
1614 sub get_hops
1615 {
1616         my $pcno = shift;
1617         my $hops = $DXProt::hopcount{$pcno};
1618         $hops = $DXProt::def_hopcount if !$hops;
1619         return "H$hops";       
1620 }
1621
1622
1623 # adjust the hop count on a per node basis using the user loadable 
1624 # hop table if available or else decrement an existing one
1625 #
1626
1627 sub adjust_hops
1628 {
1629         my $self = shift;
1630         my $s = shift;
1631         my $call = $self->{call};
1632         my $hops;
1633         
1634         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
1635                 my ($pcno) = $s =~ /^PC(\d\d)/o;
1636                 confess "$call called adjust_hops with '$s'" unless $pcno;
1637                 my $ref = $nodehops{$call} if %nodehops;
1638                 if ($ref) {
1639                         my $newhops = $ref->{$pcno};
1640                         return "" if defined $newhops && $newhops == 0;
1641                         $newhops = $ref->{default} unless $newhops;
1642                         return "" if defined $newhops && $newhops == 0;
1643                         $newhops = $hops if !$newhops;
1644                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
1645                 } else {
1646                         # simply decrement it
1647                         $hops--;
1648                         return "" if !$hops;
1649                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
1650                 }
1651         }
1652         return $s;
1653 }
1654
1655
1656 # load hop tables
1657 #
1658 sub load_hops
1659 {
1660         my $self = shift;
1661         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
1662         do "$main::data/hop_table.pl";
1663         return $@ if $@;
1664         return 0;
1665 }
1666
1667
1668 # add a ping request to the ping queues
1669 sub addping
1670 {
1671         my ($from, $to) = @_;
1672         my $ref = $pings{$to} || [];
1673         my $r = {};
1674         $r->{call} = $from;
1675         $r->{t} = [ gettimeofday ];
1676         route(undef, $to, pc51($to, $main::mycall, 1));
1677         push @$ref, $r;
1678         $pings{$to} = $ref;
1679 }
1680
1681 # add a rcmd request to the rcmd queues
1682 sub addrcmd
1683 {
1684         my ($self, $to, $cmd) = @_;
1685
1686         my $r = {};
1687         $r->{call} = $self->{call};
1688         $r->{t} = $main::systime;
1689         $r->{cmd} = $cmd;
1690         $rcmds{$to} = $r;
1691
1692         my $ref = DXCluster->get_exact($to);
1693     if ($ref && $ref->dxchan && $ref->dxchan->is_clx) {
1694                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
1695         } else {
1696                 route(undef, $to, pc34($main::mycall, $to, $cmd));
1697         }
1698 }
1699
1700 sub disconnect
1701 {
1702         my $self = shift;
1703         my $pc39flag = shift;
1704         my $call = $self->call;
1705
1706         unless ($pc39flag && $pc39flag == 1) {
1707                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
1708         }
1709
1710         # unbusy and stop and outgoing mail
1711         my $mref = DXMsg::get_busy($call);
1712         $mref->stop_msg($call) if $mref;
1713         
1714         # create a list of all the nodes that have gone and delete them from the table
1715         my @nodes;
1716         foreach my $node (grep { $_->dxchancall eq $call } DXNode::get_all) {
1717                 next if $node->call eq $call;
1718                 next if $node->call eq $main::mycall;
1719                 push @nodes, $node->call;
1720                 $node->del;
1721         }
1722
1723         # broadcast to all other nodes that all the nodes connected to via me are gone
1724         unless ($pc39flag && $pc39flag == 2) {
1725                 unless ($self->{isolate}) {
1726                         push @nodes, $call;
1727                         for (@nodes) {
1728                                 broadcast_ak1a(pc21($_, 'Gone.'), $self);
1729                         }
1730                 }
1731         }
1732
1733         # remove this node from the tables
1734         my $node = DXCluster->get_exact($call);
1735         $node->del if $node;
1736         
1737         # remove outstanding pings
1738         delete $pings{$call};
1739         
1740         # I was the last node visited
1741     $self->user->node($main::mycall);
1742
1743         # send info to all logged in thingies
1744         $self->tell_login('logoutn');
1745
1746         Log('DXProt', $call . " Disconnected");
1747
1748         $self->SUPER::disconnect;
1749 }
1750
1751
1752
1753 # send a talk message to this thingy
1754 #
1755 sub talk
1756 {
1757         my ($self, $from, $to, $via, $line) = @_;
1758         
1759         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
1760         $self->send(DXProt::pc10($from, $to, $via, $line));
1761         Log('talk', $self->call, $from, $via?$via:$main::mycall, $line);
1762 }
1763 1;
1764 __END__