sort out the remote db handling
[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 DXProtVars;
19 use DXCommandmode;
20 use DXLog;
21 use Spot;
22 use DXProtout;
23 use DXDebug;
24 use Filter;
25 use Local;
26 use DXDb;
27 use AnnTalk;
28 use Geomag;
29 use WCY;
30 use Time::HiRes qw(gettimeofday tv_interval);
31 use BadWords;
32 use DXHash;
33 use Route;
34 use Route::Node;
35 use Script;
36
37 use strict;
38
39 use vars qw($VERSION $BRANCH);
40 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
41 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
42 $main::build += $VERSION;
43 $main::branch += $BRANCH;
44
45 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
46                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
47                         $pingint $obscount %pc19list $chatdupeage
48                         %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
49                         $allowzero $decode_dk0wcy $send_opernam @checklist);
50
51 $pc11_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc11
52 $pc23_max_age = 1*3600;                 # the maximum age for an incoming 'real-time' pc23
53
54 $last_hour = time;                              # last time I did an hourly periodic update
55 %pings = ();                    # outstanding ping requests outbound
56 %rcmds = ();                    # outstanding rcmd requests outbound
57 %nodehops = ();                 # node specific hop control
58 %pc19list = ();                                 # list of outstanding PC19s that haven't had PC16s on them
59
60 $censorpc = 1;                                  # Do a BadWords::check on text fields and reject things
61                                                                 # loads of 'bad things'
62 $baddx = new DXHash "baddx";
63 $badspotter = new DXHash "badspotter";
64 $badnode = new DXHash "badnode";
65 $last10 = $last_pc50 = time;
66 $ann_to_talk = 1;
67 $rspfcheck = 1;
68 $eph_restime = 180;
69 $eph_info_restime = 60*60;
70 $eph_pc34_restime = 30;
71 $pingint = 5*60;
72 $obscount = 2;
73 $chatdupeage = 20 * 60 * 60;
74
75 @checklist = 
76 (
77  [ qw(i c c m bp bc c) ],                       # pc10
78  [ qw(i f m d t m c c h) ],             # pc11
79  [ qw(i c bm m bm bm p h) ],            # pc12
80  [ qw(i c h) ],                                 # 
81  [ qw(i c h) ],                                 # 
82  [ qw(i c m h) ],                                       # 
83  undef ,                                                # pc16 has to be validated manually
84  [ qw(i c c h) ],                                       # pc17
85  [ qw(i m n) ],                                 # pc18
86  undef ,                                                # pc19 has to be validated manually
87  undef ,                                                # pc20 no validation
88  [ qw(i c m h) ],                                       # pc21
89  undef ,                                                # pc22 no validation
90  [ qw(i d n n n n m c c h) ],           # pc23
91  [ qw(i c p h) ],                                       # pc24
92  [ qw(i c c n n) ],                             # pc25
93  [ qw(i f m d t m c c bc) ],            # pc26
94  [ qw(i d n n n n m c c bc) ],  # pc27
95  [ qw(i c c m c d t p m bp n p bp bc) ], # pc28
96  [ qw(i c c n m) ],                             # pc29
97  [ qw(i c c n) ],                                       # pc30
98  [ qw(i c c n) ],                                       # pc31
99  [ qw(i c c n) ],                                       # pc32
100  [ qw(i c c n) ],                                       # pc33
101  [ qw(i c c m) ],                                       # pc34
102  [ qw(i c c m) ],                                       # pc35
103  [ qw(i c c m) ],                                       # pc36
104  [ qw(i c c n m) ],                             # pc37
105  undef,                                                 # pc38 not interested
106  [ qw(i c m) ],                                 # pc39
107  [ qw(i c c m p n) ],                           # pc40
108  [ qw(i c n m h) ],                             # pc41
109  [ qw(i c c n) ],                                       # pc42
110  undef,                                                 # pc43 don't handle it
111  [ qw(i c c n m m c) ],                 # pc44
112  [ qw(i c c n m) ],                             # pc45
113  [ qw(i c c n) ],                                       # pc46
114  undef,                                                 # pc47
115  undef,                                                 # pc48
116  [ qw(i c m h) ],                                       # pc49
117  [ qw(i c n h) ],                                       # pc50
118  [ qw(i c c n) ],                                       # pc51
119  undef,
120  undef,
121  undef,
122  undef,
123  undef,
124  undef,
125  undef,
126  undef,
127  undef,                                                 # pc60
128  undef,
129  undef,
130  undef,
131  undef,
132  undef,
133  undef,
134  undef,
135  undef,
136  undef,
137  undef,                                                 # pc70
138  undef,
139  undef,
140  [ qw(i d n n n n n n m m m c c h) ],   # pc73
141  undef,
142  undef,
143  undef,
144  undef,
145  undef,
146  undef,
147  undef,                                                 # pc80
148  undef,
149  undef,
150  undef,
151  [ qw(i c c c m) ],                             # pc84
152  [ qw(i c c c m) ],                             # pc85
153  undef,
154  undef,
155  undef,
156  undef,
157  [ qw(i c n) ],                                 # pc90
158 );
159
160 # use the entry in the check list to check the field list presented
161 # return OK if line NOT in check list (for now)
162 sub check
163 {
164         my $n = shift;
165         $n -= 10;
166         return 0 if $n < 0 || $n > @checklist; 
167         my $ref = $checklist[$n];
168         return 0 unless ref $ref;
169         
170         my $i;
171         for ($i = 1; $i < @$ref; $i++) {
172                 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
173                 return 0 unless $act;
174                 next if $blank && $_[$i] =~ /^[ \*]$/;
175                 if ($act eq 'c') {
176                         return $i unless is_callsign($_[$i]);
177                 } elsif ($act eq 'i') {                 
178                         ;                                       # do nothing
179                 } elsif ($act eq 'm') {
180                         return $i unless is_pctext($_[$i]);
181                 } elsif ($act eq 'p') {
182                         return $i unless is_pcflag($_[$i]);
183                 } elsif ($act eq 'f') {
184                         return $i unless is_freq($_[$i]);
185                 } elsif ($act eq 'n') {
186                         return $i unless $_[$i] =~ /^[\d ]+$/;
187                 } elsif ($act eq 'h') {
188                         return $i unless $_[$i] =~ /^H\d\d?$/;
189                 } elsif ($act eq 'd') {
190                         return $i unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
191                 } elsif ($act eq 't') {
192                         return $i unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
193                 } 
194         }
195         return 0;
196 }
197
198 sub init
199 {
200         do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
201         confess $@ if $@;
202 }
203
204 #
205 # obtain a new connection this is derived from dxchannel
206 #
207
208 sub new 
209 {
210         my $self = DXChannel::alloc(@_);
211
212         # add this node to the table, the values get filled in later
213         my $pkg = shift;
214         my $call = shift;
215         $main::routeroot->add($call, '5000', Route::here(1)) if $call ne $main::mycall;
216
217         return $self;
218 }
219
220 # this is how a pc connection starts (for an incoming connection)
221 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
222 # all the crap that comes between).
223 sub start
224 {
225         my ($self, $line, $sort) = @_;
226         my $call = $self->{call};
227         my $user = $self->{user};
228
229         # log it
230         my $host = $self->{conn}->{peerhost} || "unknown";
231         Log('DXProt', "$call connected from $host");
232         
233         # remember type of connection
234         $self->{consort} = $line;
235         $self->{outbound} = $sort eq 'O';
236         my $priv = $user->priv;
237         $priv = $user->priv(1) unless $priv;
238         $self->{priv} = $priv;     # other clusters can always be 'normal' users
239         $self->{lang} = $user->lang || 'en';
240         $self->{isolate} = $user->{isolate};
241         $self->{consort} = $line;       # save the connection type
242         $self->{here} = 1;
243         $self->{width} = 80;
244
245         # sort out registration
246         $self->{registered} = 1;
247
248         # get the output filters
249         $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
250         $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
251         $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
252         $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
253         $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
254
255
256         # get the INPUT filters (these only pertain to Clusters)
257         $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
258         $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
259         $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
260         $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
261         $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
262         
263         # set unbuffered and no echo
264         $self->send_now('B',"0");
265         $self->send_now('E',"0");
266         $self->conn->echo(0) if $self->conn->can('echo');
267         
268         # ping neighbour node stuff
269         my $ping = $user->pingint;
270         $ping = $pingint unless defined $ping;
271         $self->{pingint} = $ping;
272         $self->{nopings} = $user->nopings || $obscount;
273         $self->{pingtime} = [ ];
274         $self->{pingave} = 999;
275         $self->{metric} ||= 100;
276         $self->{lastping} = $main::systime;
277
278         # send initialisation string
279         unless ($self->{outbound}) {
280                 $self->sendinit;
281         }
282         
283         $self->state('init');
284         $self->{pc50_t} = $main::systime;
285
286         # send info to all logged in thingies
287         $self->tell_login('loginn');
288
289         # run a script send the output to the debug file
290         my $script = new Script(lc $call) || new Script('node_default');
291         $script->run($self) if $script;
292 }
293
294 #
295 # send outgoing 'challenge'
296 #
297
298 sub sendinit
299 {
300         my $self = shift;
301         $self->send(pc18());
302 }
303
304 sub removepc90
305 {
306         $_[0] =~ s/^PC90\^[-A-Z0-9]+\^\d+\^//;
307 }
308
309 sub removepc91
310 {
311         $_[0] =~ s/^PC91\^[-A-Z0-9]+\^\d+\^[-A-Z0-9]+\^//;
312 }
313
314 sub send
315 {
316         my $self = shift;
317         while (@_) {
318                 my $line = shift;
319                 if ($self->user->wantpc90) {
320                         $line = mungepc90($line);
321                 } else {
322                         removepc91($line);
323                         removepc90($line);
324                 }
325                 $self->SUPER::send($line);
326         }
327 }
328
329 my $pc90msgid = 0;
330
331 sub nextpc90
332 {
333         $pc90msgid = 0 if $pc90msgid > 9999;
334         return $pc90msgid++;
335 }
336
337 sub mungepc90
338 {
339         unless ($_[0] =~ /^PC9\d/) {
340                 my $id = nextpc90();
341                 return "PC90^$main::mycall^$id^" . $_[0]; 
342         } 
343         return $_[0];
344 }
345
346 sub mungepc91
347 {
348         unless ($_[1] =~ /^PC9\d/) {
349                 my $id = nextpc90();
350                 return "PC91^$main::mycall^$id^$_[0]^" . $_[1]; 
351         } 
352         return $_[1];
353 }
354
355 #
356 # This is the normal pcxx despatcher
357 #
358 sub normal
359 {
360         my ($self, $line) = @_;
361         my @field = split /\^/, $line;
362         return unless @field;
363         
364         pop @field if $field[-1] eq '~';
365         
366 #       print join(',', @field), "\n";
367                                                 
368         
369         # process PC frames, this will fail unless the frame starts PCnn
370         my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
371         unless (defined $pcno && $pcno >= 10 && $pcno <= 99) {
372                 dbg("PCPROT: unknown protocol") if isdbg('chanerr');
373                 return;
374         }
375
376         # check for and dump bad protocol messages
377         my $n = check($pcno, @field);
378         if ($n) {
379                 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
380                 return;
381         }
382
383         # handle PC90 frames in a special way.
384     # 
385         # PC90 frames are normal frames that that are wrapped in inside a PC90 
386     # The extra fields are "originating node" and a sequence number.
387     # The sequence number is checked against the nodes 'last one' to see if
388         # it is a duplicate and, if so, is dropped at this stage; before any
389         # other processing.
390         #
391         # This is done here simply for efficiency. Adding another function would
392         # add more copying and so on.
393         #
394
395         my $origin = $self->{call};
396         
397         if ($pcno >= 90) {
398                 $origin = $field[1];
399                 if ($origin eq $main::mycall) {
400                         dbg("PCPROT: loop dupe") if isdbg('chanerr');
401                         return;
402                 }
403                 $self->user->wantpc90(1) unless $self->user->wantpc90 || $origin ne $self->{call};
404                 my $seq = $field[2];
405                 my $node = Route::Node::get($origin);
406                 if ($node) {
407                         if (my $lid = $node->lid) {
408                                 my $cmp = $seq >= $lid ? $seq : $seq + 9999;
409                                 if ($cmp <= $lid) {
410                                         dbg("PCPROT: sequence dupe $seq ($cmp) <= $lid") if isdbg('chanerr');
411                                         return;
412                                 }
413                         }
414                         $node->lid($seq);
415                 }
416
417                 # do a recheck on the contents of the PC90
418                 if ($pcno >= 90) {
419                         shift @field;
420                         shift @field;
421                         shift @field;
422                         $origin = shift @field if $pcno == 91;
423
424                         ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
425                         unless (defined $pcno && $pcno >= 10 && $pcno <= 89) {
426                                 dbg("PCPROT: unknown protocol") if isdbg('chanerr');
427                                 return;
428                         }
429                         
430                         # check for and dump bad protocol messages
431                         my $n = check($pcno, @field);
432                         if ($n) {
433                                 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
434                                 return;
435                         }
436                 }
437         } else {
438                 if ($pcno == 16 || $pcno == 17 || $pcno == 19 || $pcno == 21) {
439                         $line = mungepc91($origin, $line);
440                 } else {
441                         $line = mungepc90($line);
442                 }
443         }
444
445         no strict 'subs';
446         my $sub = "handle_$pcno";
447
448         if ($self->can($sub)) {
449                 $self->$sub($pcno, $line, $origin, @field);
450         } else {
451                 $self->handle_default($pcno, $line, $origin, @field);
452         }
453 }
454         
455 # incoming talk commands
456 sub handle_10
457 {
458         my $self = shift;
459         my $pcno = shift;
460         my $line = shift;
461         my $origin = shift;
462
463         # rsfp check
464         return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
465                         
466         # will we allow it at all?
467         if ($censorpc) {
468                 my @bad;
469                 if (@bad = BadWords::check($_[3])) {
470                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
471                         return;
472                 }
473         }
474
475         # is it for me or one of mine?
476         my ($from, $to, $via, $call, $dxchan);
477         $from = $_[1];
478         if ($_[5] gt ' ') {
479                 $via = $_[2];
480                 $to = $_[5];
481         } else {
482                 $to = $_[2];
483         }
484
485         # if this is a 'nodx' node then ignore it
486         if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
487                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
488                 return;
489         }
490
491         # if this is a 'bad spotter' user then ignore it
492         my $nossid = $from;
493         $nossid =~ s/-\d+$//;
494         if ($badspotter->in($nossid)) {
495                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
496                 return;
497         }
498
499         # if we are converting announces to talk is it a dup?
500         if ($ann_to_talk) {
501                 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
502                         dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
503                         return;
504                 }
505         }
506
507         # it is here and logged on
508         $dxchan = DXChannel->get($main::myalias) if $to eq $main::mycall;
509         $dxchan = DXChannel->get($to) unless $dxchan;
510         if ($dxchan && $dxchan->is_user) {
511                 $_[3] =~ s/\%5E/^/g;
512                 $dxchan->talk($from, $to, $via, $_[3]);
513                 return;
514         }
515
516         # is it elsewhere, visible on the cluster via the to address?
517         # note: this discards the via unless the to address is on
518         # the via address
519         my ($ref, $vref);
520         if ($ref = Route::get($to)) {
521                 $vref = Route::Node::get($via) if $via;
522                 $vref = undef unless $vref && grep $to eq $_, $vref->users;
523                 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
524                 return;
525         }
526
527         # not visible here, send a message of condolence
528         $vref = undef;
529         $ref = Route::get($from);
530         $vref = $ref = Route::Node::get($_[6]) unless $ref; 
531         if ($ref) {
532                 $dxchan = $ref->dxchan;
533                 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
534         }
535 }
536
537 # DX Spot handling
538 sub handle_11
539 {
540         my $self = shift;
541         my $pcno = shift;
542         my $line = shift;
543         my $origin = shift;
544
545         # route 'foreign' pc26s 
546         if ($pcno == 26) {
547                 if ($_[7] ne $main::mycall) {
548                         $self->route($_[7], $line);
549                         return;
550                 }
551         }
552                         
553         # rsfp check
554         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
555
556         # if this is a 'nodx' node then ignore it
557         if ($badnode->in($_[7])) {
558                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
559                 return;
560         }
561                         
562         # if this is a 'bad spotter' user then ignore it
563         my $nossid = $_[6];
564         $nossid =~ s/-\d+$//;
565         if ($badspotter->in($nossid)) {
566                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
567                 return;
568         }
569                         
570         # convert the date to a unix date
571         my $d = cltounix($_[3], $_[4]);
572         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
573         if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
574                 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
575                 return;
576         }
577
578         # is it 'baddx'
579         if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
580                 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
581                 return;
582         }
583                         
584         # do some de-duping
585         $_[5] =~ s/^\s+//;                      # take any leading blanks off
586         $_[2] = unpad($_[2]);           # take off leading and trailing blanks from spotted callsign
587         if ($_[2] =~ /BUST\w*$/) {
588                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
589                 return;
590         }
591         if ($censorpc) {
592                 my @bad;
593                 if (@bad = BadWords::check($_[5])) {
594                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
595                         return;
596                 }
597         }
598
599
600         my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $_[6], $_[7]);
601         # global spot filtering on INPUT
602         if ($self->{inspotsfilter}) {
603                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
604                 unless ($filter) {
605                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
606                         return;
607                 }
608         }
609
610         # this goes after the input filtering, but before the add
611         # so that if it is input filtered, it isn't added to the dup
612         # list. This allows it to come in from a "legitimate" source
613         if (Spot::dup($_[1], $_[2], $d, $_[5], $_[6])) {
614                 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
615                 return;
616         }
617
618         # add it 
619         Spot::add(@spot);
620
621         #
622         # @spot at this point contains:-
623         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
624         # then  spotted itu, spotted cq, spotters itu, spotters cq
625         # you should be able to route on any of these
626         #
627                         
628         # fix up qra locators of known users 
629         my $user = DXUser->get_current($spot[4]);
630         if ($user) {
631                 my $qra = $user->qra;
632                 unless ($qra && is_qra($qra)) {
633                         my $lat = $user->lat;
634                         my $long = $user->long;
635                         if (defined $lat && defined $long) {
636                                 $user->qra(DXBearing::lltoqra($lat, $long)); 
637                                 $user->put;
638                         }
639                 }
640
641                 # send a remote command to a distant cluster if it is visible and there is no
642                 # qra locator and we havn't done it for a month.
643
644                 unless ($user->qra) {
645                         my $node;
646                         my $to = $user->homenode;
647                         my $last = $user->lastoper || 0;
648                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
649                                 my $cmd = "forward/opernam $spot[4]";
650                                 # send the rcmd but we aren't interested in the replies...
651                                 my $dxchan = $node->dxchan;
652                                 if ($dxchan && $dxchan->is_clx) {
653                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
654                                 } else {
655                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
656                                 }
657                                 if ($to ne $_[7]) {
658                                         $to = $_[7];
659                                         $node = Route::Node::get($to);
660                                         if ($node) {
661                                                 $dxchan = $node->dxchan;
662                                                 if ($dxchan && $dxchan->is_clx) {
663                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
664                                                 } else {
665                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
666                                                 }
667                                         }
668                                 }
669                                 $user->lastoper($main::systime);
670                                 $user->put;
671                         }
672                 }
673         }
674                                 
675         # local processing 
676         my $r;
677         eval {
678                 $r = Local::spot($self, @spot);
679         };
680         #                       dbg("Local::spot1 error $@") if isdbg('local') if $@;
681         return if $r;
682
683         # DON'T be silly and send on PC26s!
684         return if $pcno == 26;
685
686         # send out the filtered spots
687         send_dx_spot($self, $line, @spot) if @spot;
688 }
689                 
690 # announces
691 sub handle_12
692 {
693         my $self = shift;
694         my $pcno = shift;
695         my $line = shift;
696         my $origin = shift;
697
698         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
699
700         # announce duplicate checking
701         $_[3] =~ s/^\s+//;                      # remove leading blanks
702
703         if ($censorpc) {
704                 my @bad;
705                 if (@bad = BadWords::check($_[3])) {
706                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
707                         return;
708                 }
709         }
710
711         # if this is a 'nodx' node then ignore it
712         if ($badnode->in($_[5])) {
713                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
714                 return;
715         }
716
717         # if this is a 'bad spotter' user then ignore it
718         my $nossid = $_[1];
719         $nossid =~ s/-\d+$//;
720         if ($badspotter->in($nossid)) {
721                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
722                 return;
723         }
724
725         my $dxchan;
726         
727         if ((($dxchan = DXChannel->get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
728                 $self->send_chat($line, @_[1..6]);
729         } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
730
731                 # ignore something that looks like a chat line coming in with sysop
732                 # flag - this is a kludge...
733                 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
734                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
735                         return;
736                 }
737
738                 # here's a bit of fun, convert incoming ann with a callsign in the first word
739                 # or one saying 'to <call>' to a talk if we can route to the recipient
740                 if ($ann_to_talk) {
741                         my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
742                         if ($call) {
743                                 my $ref = Route::get($call);
744                                 if ($ref) {
745                                         $dxchan = $ref->dxchan;
746                                         $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
747                                         return;
748                                 }
749                         }
750                 }
751         
752                 # send it
753                 $self->send_announce($line, @_[1..6]);
754         } else {
755                 $self->route($_[2], $line);
756         }
757 }
758                 
759 # incoming user         
760 sub handle_16
761 {
762         my $self = shift;
763         my $pcno = shift;
764         my $line = shift;
765         my $origin = shift;
766
767         if (eph_dup($line)) {
768                 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
769                 return;
770         }
771
772         # general checks
773         my $dxchan;
774         my $ncall = $_[1];
775         my $newline = "PC16^";
776                         
777         # do I want users from this channel?
778         unless ($self->user->wantpc16) {
779                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
780                 return;
781         }
782         # is it me?
783         if ($ncall eq $main::mycall) {
784                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
785                 return;
786         }
787         my $parent = Route::Node::get($ncall); 
788
789         # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list, 
790         # fix it up in the routing tables and issue it forth before the PC16
791         unless ($parent) {
792                 my $nl = $pc19list{$ncall};
793
794                 if ($nl && @_ > 3) { # 3 because of the hop count!
795
796                         # this is a new (remembered) node, now attach it to me if it isn't in filtered
797                         # and we haven't disallowed it
798                         my $user = DXUser->get_current($ncall);
799                         if (!$user) {
800                                 $user = DXUser->new($ncall);
801                                 $user->sort('A');
802                                 $user->priv(1); # I have relented and defaulted nodes
803                                 $user->lockout(1);
804                                 $user->homenode($ncall);
805                                 $user->node($ncall);
806                         }
807
808                         my $wantpc19 = $user->wantroutepc19;
809                         if ($wantpc19 || !defined $wantpc19) {
810                                 my $new = Route->new($ncall); # throw away
811                                 if ($self->in_filter_route($new)) {
812                                         my @nrout;
813                                         for (@$nl) {
814                                                 $parent = Route::Node::get($_->[0]);
815                                                 $dxchan = $parent->dxchan if $parent;
816                                                 if ($dxchan && $dxchan ne $self) {
817                                                         dbg("PCPROT: PC19 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
818                                                         $parent = undef;
819                                                 }
820                                                 if ($parent) {
821                                                         my $r = $parent->add($ncall, $_->[1], $_->[2]);
822                                                         push @nrout, $r unless @nrout;
823                                                 }
824                                         }
825                                         $user->wantroutepc19(1) unless defined $wantpc19; # for now we work on the basis that pc16 = real route 
826                                         $user->lastin($main::systime) unless DXChannel->get($ncall);
827                                         $user->put;
828                                                 
829                                         # route the pc19 - this will cause 'stuttering PC19s' for a while
830                                         $self->route_pc19($origin, $line, @nrout) if @nrout ;
831                                         $parent = Route::Node::get($ncall);
832                                         unless ($parent) {
833                                                 dbg("PCPROT: lost $ncall after sending PC19 for it?");
834                                                 return;
835                                         }
836                                 } else {
837                                         return;
838                                 }
839                                 delete $pc19list{$ncall};
840                         }
841                 } else {
842                         dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
843                         return;
844                 }
845         } else {
846                                 
847                 $dxchan = $parent->dxchan;
848                 if ($dxchan && $dxchan ne $self) {
849                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
850                         return;
851                 }
852
853                 # input filter if required
854                 return unless $self->in_filter_route($parent);
855         }
856
857         my $i;
858         my @rout;
859         for ($i = 2; $i < $#_; $i++) {
860                 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
861                 next unless $call && $conf && defined $here && is_callsign($call);
862                 next if $call eq $main::mycall;
863
864                 eph_del_regex("^PC17\\^$call\\^$ncall");
865                                 
866                 $conf = $conf eq '*';
867
868                 # reject this if we think it is a node already
869                 my $r = Route::Node::get($call);
870                 my $u = DXUser->get_current($call) unless $r;
871                 if ($r || ($u && $u->is_node)) {
872                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
873                         next;
874                 }
875                                 
876                 $r = Route::User::get($call);
877                 my $flags = Route::here($here)|Route::conf($conf);
878                                 
879                 if ($r) {
880                         my $au = $r->addparent($parent);                                        
881                         if ($r->flags != $flags) {
882                                 $r->flags($flags);
883                                 $au = $r;
884                         }
885                         push @rout, $r if $au;
886                 } else {
887                         push @rout, $parent->add_user($call, $flags);
888                 }
889                 
890                                 
891                 # add this station to the user database, if required
892                 $call =~ s/-\d+$//o;    # remove ssid for users
893                 my $user = DXUser->get_current($call);
894                 $user = DXUser->new($call) if !$user;
895                 $user->homenode($parent->call) if !$user->homenode;
896                 $user->node($parent->call);
897                 $user->lastin($main::systime) unless DXChannel->get($call);
898                 $user->put;
899         }
900         $self->route_pc16($origin, $line, $parent, @rout) if @rout;
901 }
902                 
903 # remove a user
904 sub handle_17
905 {
906         my $self = shift;
907         my $pcno = shift;
908         my $line = shift;
909         my $origin = shift;
910         my $dxchan;
911         my $ncall = $_[2];
912         my $ucall = $_[1];
913
914         eph_del_regex("^PC16\\^$ncall.*$ucall");
915                         
916         # do I want users from this channel?
917         unless ($self->user->wantpc16) {
918                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
919                 return;
920         }
921         if ($ncall eq $main::mycall) {
922                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
923                 return;
924         }
925
926         my $uref = Route::User::get($ucall);
927         unless ($uref) {
928                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
929                 return;
930         }
931         my $parent = Route::Node::get($ncall);
932         unless ($parent) {
933                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
934                 return;
935         }                       
936
937         $dxchan = $parent->dxchan;
938         if ($dxchan && $dxchan ne $self) {
939                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
940                 return;
941         }
942
943         # input filter if required
944         return unless $self->in_filter_route($parent);
945                         
946         $parent->del_user($uref);
947
948         if (eph_dup($line)) {
949                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
950                 return;
951         }
952
953         $self->route_pc17($origin, $line, $parent, $uref);
954 }
955                 
956 # link request
957 sub handle_18
958 {
959         my $self = shift;
960         my $pcno = shift;
961         my $line = shift;
962         my $origin = shift;
963         $self->state('init');   
964
965         # record the type and version offered
966         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
967                 $self->version(53 + $1);
968                 $self->user->version(53 + $1);
969                 $self->build(0 + $2);
970                 $self->user->build(0 + $2);
971                 unless ($self->is_spider) {
972                         $self->user->sort('S');
973                         $self->user->put;
974                         $self->sort('S');
975                 }
976         } else {
977                 $self->version(50.0);
978                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
979                 $self->user->version($self->version);
980         }
981
982         # first clear out any nodes on this dxchannel
983         my $parent = Route::Node::get($self->{call});
984         my @rout = $parent->del_nodes;
985         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
986         $self->send_local_config();
987         $self->send(pc20());
988 }
989                 
990 # incoming cluster list
991 sub handle_19
992 {
993         my $self = shift;
994         my $pcno = shift;
995         my $line = shift;
996         my $origin = shift;
997
998         my $i;
999         my $newline = "PC19^";
1000
1001         if (eph_dup($line)) {
1002                 dbg("PCPROT: dup PC19 detected") if isdbg('chanerr');
1003                 return;
1004         }
1005
1006         # new routing list
1007         my @rout;
1008
1009         # first get the INTERFACE node
1010         my $parent = Route::Node::get($self->{call});
1011         unless ($parent) {
1012                 dbg("DXPROT: my parent $self->{call} has disappeared");
1013                 $self->disconnect;
1014                 return;
1015         }
1016
1017         # if the origin isn't the same as the INTERFACE, then reparent, creating nodes as necessary
1018         if ($origin ne $self->call) {
1019                 my $op = Route::Node::get($origin);
1020                 unless ($op) {
1021                         $op = $parent->add($origin, 5000, Route::here(1));
1022                         my $user = DXUser->get_current($origin);
1023                         if (!$user) {
1024                                 $user = DXUser->new($origin);
1025                                 $user->sort('S');
1026                                 $user->priv(1);         # I have relented and defaulted nodes
1027                                 $user->lockout(1);
1028                                 $user->homenode($origin);
1029                                 $user->node($origin);
1030                                 $user->wantroutepc19(1);
1031                                 $user->wantpc90(1);
1032                         }
1033                         $user->put;
1034                 }
1035                 $parent = $op;
1036         }
1037
1038         # parse the PC19
1039         for ($i = 1; $i < $#_-1; $i += 4) {
1040                 my $here = $_[$i];
1041                 my $call = uc $_[$i+1];
1042                 my $conf = $_[$i+2];
1043                 my $ver = $_[$i+3];
1044                 next unless defined $here && defined $conf && is_callsign($call);
1045
1046                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
1047                                 
1048                 # check for sane parameters
1049                 #                               $ver = 5000 if $ver eq '0000';
1050                 next if $ver < 5000;    # only works with version 5 software
1051                 next if length $call < 3; # min 3 letter callsigns
1052                 next if $call eq $main::mycall;
1053
1054                 # check that this PC19 isn't trying to alter the wrong dxchan
1055                 my $dxchan = DXChannel->get($call);
1056                 if ($dxchan && $dxchan != $self) {
1057                         dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1058                         next;
1059                 }
1060
1061                 # add this station to the user database, if required (don't remove SSID from nodes)
1062                 my $user = DXUser->get_current($call);
1063                 if (!$user) {
1064                         $user = DXUser->new($call);
1065                         $user->sort('A');
1066                         $user->priv(1);         # I have relented and defaulted nodes
1067                         $user->lockout(1);
1068                         $user->homenode($call);
1069                         $user->node($call);
1070                 }
1071
1072                 my $r = Route::Node::get($call);
1073                 my $flags = Route::here($here)|Route::conf($conf);
1074
1075                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1076                 if ($r) {
1077                         my $ar;
1078                         if ($call ne $parent->call) {
1079                                 if ($self->in_filter_route($r)) {
1080                                         $ar = $parent->add($call, $ver, $flags);
1081                                         push @rout, $ar if $ar;
1082                                 } else {
1083                                         next;
1084                                 }
1085                         }
1086                         if ($r->version ne $ver || $r->flags != $flags) {
1087                                 $r->version($ver);
1088                                 $r->flags($flags);
1089                                 push @rout, $r unless $ar;
1090                         }
1091                 } else {
1092
1093                         # if he is directly connected or allowed then add him, otherwise store him up for later
1094                         if ($call eq $self->{call} || $user->wantroutepc19) {
1095                                 my $new = Route->new($call); # throw away
1096                                 if ($self->in_filter_route($new)) {
1097                                         my $ar = $parent->add($call, $ver, $flags);
1098                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1099                                         push @rout, $ar if $ar;
1100                                 } else {
1101                                         next;
1102                                 }
1103                         } else {
1104                                 $pc19list{$call} = [] unless exists $pc19list{$call};
1105                                 my $nl = $pc19list{$call};
1106                                 push @{$pc19list{$call}}, [$self->{call}, $ver, $flags] unless grep $_->[0] eq $self->{call}, @$nl;
1107                         }
1108                 }
1109
1110                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1111                 my $mref = DXMsg::get_busy($call);
1112                 $mref->stop_msg($call) if $mref;
1113                                 
1114                 $user->lastin($main::systime) unless DXChannel->get($call);
1115                 $user->put;
1116         }
1117
1118
1119         $self->route_pc19($origin, $line, @rout) if @rout;
1120 }
1121                 
1122 # send local configuration
1123 sub handle_20
1124 {
1125         my $self = shift;
1126         my $pcno = shift;
1127         my $line = shift;
1128         my $origin = shift;
1129         $self->send_local_config();
1130         $self->send(pc22());
1131         $self->state('normal');
1132         $self->{lastping} = 0;
1133 }
1134                 
1135 # delete a cluster from the list
1136 sub handle_21
1137 {
1138         my $self = shift;
1139         my $pcno = shift;
1140         my $line = shift;
1141         my $origin = shift;
1142         my $call = uc $_[1];
1143
1144         eph_del_regex("^PC1[679].*$call");
1145                         
1146         # if I get a PC21 from the same callsign as self then treat it
1147         # as a PC39: I have gone away
1148         if ($call eq $self->call) {
1149                 $self->disconnect(1);
1150                 return;
1151         }
1152
1153         # check to see if we are in the pc19list, if we are then don't bother with any of
1154         # this routing table manipulation, just remove it from the list and dump it
1155         my @rout;
1156         if (my $nl = $pc19list{$call}) {
1157                 $pc19list{$call} = [ grep {$_->[0] ne $self->{call}} @$nl ];
1158                 delete $pc19list{$call} unless @{$pc19list{$call}};
1159         } else {
1160                                 
1161                 my $parent = Route::Node::get($self->{call});
1162                 unless ($parent) {
1163                         dbg("DXPROT: my parent $self->{call} has disappeared");
1164                         $self->disconnect;
1165                         return;
1166                 }
1167                 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1168                         my $node = Route::Node::get($call);
1169                         if ($node) {
1170                                                 
1171                                 my $dxchan = DXChannel->get($call);
1172                                 if ($dxchan && $dxchan != $self) {
1173                                         dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1174                                         return;
1175                                 }
1176                                                 
1177                                 # input filter it
1178                                 return unless $self->in_filter_route($node);
1179                                                 
1180                                 # routing objects
1181                                 push @rout, $node->del($parent);
1182                         }
1183                 } else {
1184                         dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1185                         return;
1186                 }
1187         }
1188
1189         $self->route_pc21($origin, $line, @rout) if @rout;
1190 }
1191                 
1192
1193 sub handle_22
1194 {
1195         my $self = shift;
1196         my $pcno = shift;
1197         my $line = shift;
1198         my $origin = shift;
1199         $self->state('normal');
1200         $self->{lastping} = 0;
1201 }
1202                                 
1203 # WWV info
1204 sub handle_23
1205 {
1206         my $self = shift;
1207         my $pcno = shift;
1208         my $line = shift;
1209         my $origin = shift;
1210                         
1211         # route foreign' pc27s 
1212         if ($pcno == 27) {
1213                 if ($_[8] ne $main::mycall) {
1214                         $self->route($_[8], $line);
1215                         return;
1216                 }
1217         }
1218
1219         return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7]);
1220
1221         # do some de-duping
1222         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1223         my $sfi = unpad($_[3]);
1224         my $k = unpad($_[4]);
1225         my $i = unpad($_[5]);
1226         my ($r) = $_[6] =~ /R=(\d+)/;
1227         $r = 0 unless $r;
1228         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1229                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1230                 return;
1231         }
1232         if (Geomag::dup($d,$sfi,$k,$i,$_[6])) {
1233                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1234                 return;
1235         }
1236         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
1237                 
1238         my $wwv = Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1239
1240         my $rep;
1241         eval {
1242                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1243         };
1244         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1245         return if $rep;
1246
1247         # DON'T be silly and send on PC27s!
1248         return if $pcno == 27;
1249
1250         # broadcast to the eager world
1251         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1252 }
1253                 
1254 # set here status
1255 sub handle_24
1256 {
1257         my $self = shift;
1258         my $pcno = shift;
1259         my $line = shift;
1260         my $origin = shift;
1261         my $call = uc $_[1];
1262         my ($nref, $uref);
1263         $nref = Route::Node::get($call);
1264         $uref = Route::User::get($call);
1265         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1266                         
1267         if (eph_dup($line)) {
1268                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1269                 return;
1270         }
1271         
1272         $nref->here($_[2]) if $nref;
1273         $uref->here($_[2]) if $uref;
1274         my $ref = $nref || $uref;
1275         return unless $self->in_filter_route($ref);
1276
1277         $self->route_pc24($origin, $line, $ref, $_[3]);
1278 }
1279                 
1280 # merge request
1281 sub handle_25
1282 {
1283         my $self = shift;
1284         my $pcno = shift;
1285         my $line = shift;
1286         my $origin = shift;
1287         if ($_[1] ne $main::mycall) {
1288                 $self->route($_[1], $line);
1289                 return;
1290         }
1291         if ($_[2] eq $main::mycall) {
1292                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1293                 return;
1294         }
1295
1296         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1297                         
1298         # spots
1299         if ($_[3] > 0) {
1300                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1301                 my $in;
1302                 foreach $in (@in) {
1303                         $self->send(pc26(@{$in}[0..4], $_[2]));
1304                 }
1305         }
1306
1307         # wwv
1308         if ($_[4] > 0) {
1309                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1310                 my $in;
1311                 foreach $in (@in) {
1312                         $self->send(pc27(@{$in}[0..5], $_[2]));
1313                 }
1314         }
1315 }
1316
1317 sub handle_26 {goto &handle_11}
1318 sub handle_27 {goto &handle_23}
1319
1320 # mail/file handling
1321 sub handle_28
1322 {
1323         my $self = shift;
1324         my $pcno = shift;
1325         my $line = shift;
1326         my $origin = shift;
1327         if ($_[1] eq $main::mycall) {
1328                 no strict 'refs';
1329                 my $sub = "DXMsg::handle_$pcno";
1330                 &$sub($self, @_);
1331         } else {
1332                 $self->route($_[1], $line) unless $self->is_clx;
1333         }
1334 }
1335
1336 sub handle_29 {goto &handle_28}
1337 sub handle_30 {goto &handle_28}
1338 sub handle_31 {goto &handle_28}
1339 sub handle_32 {goto &handle_28}
1340 sub handle_33 {goto &handle_28}
1341                 
1342 sub handle_34
1343 {
1344         my $self = shift;
1345         my $pcno = shift;
1346         my $line = shift;
1347         my $origin = shift;
1348         if (eph_dup($line, $eph_pc34_restime)) {
1349                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1350         } else {
1351                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1352         }
1353 }
1354                 
1355 # remote command replies
1356 sub handle_35
1357 {
1358         my $self = shift;
1359         my $pcno = shift;
1360         my $line = shift;
1361         my $origin = shift;
1362         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1363         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1364 }
1365                 
1366 sub handle_36 {goto &handle_34}
1367
1368 # database stuff
1369 sub handle_37
1370 {
1371         my $self = shift;
1372         my $pcno = shift;
1373         my $line = shift;
1374         my $origin = shift;
1375         if ($_[1] eq $main::mycall) {
1376                 no strict 'refs';
1377                 my $sub = "DXDb::handle_$pcno";
1378                 &$sub($self, @_);
1379         } else {
1380                 $self->route($_[1], $line) unless $self->is_clx;
1381         }
1382 }
1383
1384 # node connected list from neighbour
1385 sub handle_38
1386 {
1387         my $self = shift;
1388         my $pcno = shift;
1389         my $line = shift;
1390         my $origin = shift;
1391 }
1392                 
1393 # incoming disconnect
1394 sub handle_39
1395 {
1396         my $self = shift;
1397         my $pcno = shift;
1398         my $line = shift;
1399         my $origin = shift;
1400         if ($_[1] eq $self->{call}) {
1401                 $self->disconnect(1);
1402         } else {
1403                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1404         }
1405 }
1406
1407 sub handle_40 {goto &handle_28}
1408                 
1409 # user info
1410 sub handle_41
1411 {
1412         my $self = shift;
1413         my $pcno = shift;
1414         my $line = shift;
1415         my $origin = shift;
1416         my $call = $_[1];
1417
1418         my $l = $line;
1419         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1420         if (eph_dup($l, $eph_info_restime)) {
1421                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1422                 return;
1423         }
1424                         
1425         # input filter if required
1426         #                       my $ref = Route::get($call) || Route->new($call);
1427         #                       return unless $self->in_filter_route($ref);
1428
1429         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1430                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1431                 return;
1432         }
1433
1434         # add this station to the user database, if required
1435         my $user = DXUser->get_current($call);
1436         $user = DXUser->new($call) unless $user;
1437                         
1438         if ($_[2] == 1) {
1439                 $user->name($_[3]);
1440         } elsif ($_[2] == 2) {
1441                 $user->qth($_[3]);
1442         } elsif ($_[2] == 3) {
1443                 if (is_latlong($_[3])) {
1444                         my ($lat, $long) = DXBearing::stoll($_[3]);
1445                         $user->lat($lat);
1446                         $user->long($long);
1447                         $user->qra(DXBearing::lltoqra($lat, $long));
1448                 } else {
1449                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1450                         return;
1451                 }
1452         } elsif ($_[2] == 4) {
1453                 $user->homenode($_[3]);
1454         } elsif ($_[2] == 5) {
1455                 if (is_qra(uc $_[3])) {
1456                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1457                         $user->lat($lat);
1458                         $user->long($long);
1459                         $user->qra(uc $_[3]);
1460                 } else {
1461                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1462                         return;
1463                 }
1464         }
1465         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1466         $user->put;
1467
1468         unless ($self->{isolate}) {
1469                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1470         }
1471
1472         #  perhaps this IS what we want after all
1473         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1474 }
1475
1476 sub handle_42 {goto &handle_28}
1477
1478
1479 # database
1480 sub handle_44 {goto &handle_37}
1481 sub handle_45 {goto &handle_37}
1482 sub handle_46 {goto &handle_37}
1483 sub handle_47 {goto &handle_37}
1484 sub handle_48 {goto &handle_37}
1485                 
1486 # message and database
1487 sub handle_49
1488 {
1489         my $self = shift;
1490         my $pcno = shift;
1491         my $line = shift;
1492         my $origin = shift;
1493
1494         if (eph_dup($line)) {
1495                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1496                 return;
1497         }
1498         
1499         if ($_[1] eq $main::mycall) {
1500                 DXMsg::handle_49($self, @_);
1501         } else {
1502                 $self->route($_[1], $line) unless $self->is_clx;
1503         }
1504 }
1505
1506 # keep alive/user list
1507 sub handle_50
1508 {
1509         my $self = shift;
1510         my $pcno = shift;
1511         my $line = shift;
1512         my $origin = shift;
1513
1514         my $call = $_[1];
1515         my $node = Route::Node::get($call);
1516         if ($node) {
1517                 return unless $node->call eq $self->{call};
1518                 $node->usercount($_[2]);
1519
1520                 # input filter if required
1521                 return unless $self->in_filter_route($node);
1522
1523                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1524         }
1525 }
1526                 
1527 # incoming ping requests/answers
1528 sub handle_51
1529 {
1530         my $self = shift;
1531         my $pcno = shift;
1532         my $line = shift;
1533         my $origin = shift;
1534         my $to = $_[1];
1535         my $from = $_[2];
1536         my $flag = $_[3];
1537
1538                         
1539         # is it for us?
1540         if ($to eq $main::mycall) {
1541                 if ($flag == 1) {
1542                         $self->send(pc51($from, $to, '0'));
1543                 } else {
1544                         # it's a reply, look in the ping list for this one
1545                         my $ref = $pings{$from};
1546                         if ($ref) {
1547                                 my $tochan =  DXChannel->get($from);
1548                                 while (@$ref) {
1549                                         my $r = shift @$ref;
1550                                         my $dxchan = DXChannel->get($r->{call});
1551                                         next unless $dxchan;
1552                                         my $t = tv_interval($r->{t}, [ gettimeofday ]);
1553                                         if ($dxchan->is_user) {
1554                                                 my $s = sprintf "%.2f", $t; 
1555                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1556                                                 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1557                                         } elsif ($dxchan->is_node) {
1558                                                 if ($tochan) {
1559                                                         my $nopings = $tochan->user->nopings || $obscount;
1560                                                         push @{$tochan->{pingtime}}, $t;
1561                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1562
1563                                                                 # cope with a missed ping, this means you must set the pingint large enough
1564                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
1565                                                                 $t -= $tochan->{pingint};
1566                                                         }
1567
1568                                                                 # calc smoothed RTT a la TCP
1569                                                         if (@{$tochan->{pingtime}} == 1) {
1570                                                                 $tochan->{pingave} = $t;
1571                                                         } else {
1572                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1573                                                         }
1574                                                         $tochan->{nopings} = $nopings; # pump up the timer
1575                                                 }
1576                                         } 
1577                                 }
1578                         }
1579                 }
1580         } else {
1581                 if ($line !~ /^PC90/ && eph_dup($line)) {
1582                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1583                         return;
1584                 }
1585                 # route down an appropriate thingy
1586                 $self->route($to, $line);
1587         }
1588 }
1589
1590 # dunno but route it
1591 sub handle_75
1592 {
1593         my $self = shift;
1594         my $pcno = shift;
1595         my $line = shift;
1596         my $origin = shift;
1597         my $call = $_[1];
1598         if ($call ne $main::mycall) {
1599                 $self->route($call, $line);
1600         }
1601 }
1602
1603 # WCY broadcasts
1604 sub handle_73
1605 {
1606         my $self = shift;
1607         my $pcno = shift;
1608         my $line = shift;
1609         my $origin = shift;
1610         my $call = $_[1];
1611                         
1612         # do some de-duping
1613         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1614         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1615                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1616                 return;
1617         }
1618         @_ = map { unpad($_) } @_;
1619         if (WCY::dup($d)) {
1620                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1621                 return;
1622         }
1623                 
1624         my $wcy = WCY::update($d, @_[2..12]);
1625
1626         my $rep;
1627         eval {
1628                 $rep = Local::wcy($self, @_[1..12]);
1629         };
1630         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1631         return if $rep;
1632
1633         # broadcast to the eager world
1634         send_wcy_spot($self, $line, $d, @_[2..12]);
1635 }
1636
1637 # remote commands (incoming)
1638 sub handle_84
1639 {
1640         my $self = shift;
1641         my $pcno = shift;
1642         my $line = shift;
1643         my $origin = shift;
1644         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1645 }
1646
1647 # remote command replies
1648 sub handle_85
1649 {
1650         my $self = shift;
1651         my $pcno = shift;
1652         my $line = shift;
1653         my $origin = shift;
1654         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1655 }
1656
1657 # if get here then rebroadcast the thing with its Hop count decremented (if
1658 # there is one). If it has a hop count and it decrements to zero then don't
1659 # rebroadcast it.
1660 #
1661 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1662 #        REBROADCAST!!!!
1663 #
1664
1665 sub handle_default
1666 {
1667         my $self = shift;
1668         my $pcno = shift;
1669         my $line = shift;
1670         my $origin = shift;
1671
1672         if (eph_dup($line)) {
1673                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1674         } else {
1675                 unless ($self->{isolate}) {
1676                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1677                 }
1678         }
1679 }
1680
1681 #
1682 # This is called from inside the main cluster processing loop and is used
1683 # for despatching commands that are doing some long processing job
1684 #
1685 sub process
1686 {
1687         my $t = time;
1688         my @dxchan = DXChannel->get_all();
1689         my $dxchan;
1690         my $pc50s;
1691         
1692         # send out a pc50 on EVERY channel all at once
1693         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1694                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1695                 eph_dup($pc50s);
1696                 $last_pc50 = $t;
1697         }
1698
1699         foreach $dxchan (@dxchan) {
1700                 next unless $dxchan->is_node();
1701                 next if $dxchan == $main::me;
1702
1703                 # send the pc50
1704                 $dxchan->send($pc50s) if $pc50s;
1705                 
1706                 # send a ping out on this channel
1707                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1708                         if ($dxchan->{nopings} <= 0) {
1709                                 $dxchan->disconnect;
1710                         } else {
1711                                 addping($main::mycall, $dxchan->call);
1712                                 $dxchan->{nopings} -= 1;
1713                                 $dxchan->{lastping} = $t;
1714                         }
1715                 }
1716         }
1717
1718         # every ten seconds
1719         if ($t - $last10 >= 10) {       
1720                 # clean out ephemera 
1721
1722                 eph_clean();
1723
1724                 $last10 = $t;
1725         }
1726         
1727         if ($main::systime - 3600 > $last_hour) {
1728                 $last_hour = $main::systime;
1729         }
1730 }
1731
1732 #
1733 # finish up a pc context
1734 #
1735
1736 #
1737 # some active measures
1738 #
1739
1740
1741 sub send_dx_spot
1742 {
1743         my $self = shift;
1744         my $line = shift;
1745         my @dxchan = DXChannel->get_all();
1746         my $dxchan;
1747         
1748         # send it if it isn't the except list and isn't isolated and still has a hop count
1749         # taking into account filtering and so on
1750         foreach $dxchan (@dxchan) {
1751                 next if $dxchan == $main::me;
1752                 next if $dxchan == $self && $self->is_node;
1753                 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1754         }
1755 }
1756
1757 sub dx_spot
1758 {
1759         my $self = shift;
1760         my $line = shift;
1761         my $isolate = shift;
1762         my ($filter, $hops);
1763
1764         if ($self->{spotsfilter}) {
1765                 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1766                 return unless $filter;
1767         }
1768         send_prot_line($self, $filter, $hops, $isolate, $line);
1769 }
1770
1771 sub send_prot_line
1772 {
1773         my ($self, $filter, $hops, $isolate, $line) = @_;
1774         my $routeit;
1775
1776
1777         if ($hops) {
1778                 $routeit = $line;
1779                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1780         } else {
1781                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1782                 return unless $routeit;
1783         }
1784         if ($filter) {
1785                 $self->send($routeit);
1786         } else {
1787                 $self->send($routeit) unless $self->{isolate} || $isolate;
1788         }
1789 }
1790
1791
1792 sub send_wwv_spot
1793 {
1794         my $self = shift;
1795         my $line = shift;
1796         my @dxchan = DXChannel->get_all();
1797         my $dxchan;
1798         my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1799         my @dxcc = Prefix::extract($_[6]);
1800         if (@dxcc > 0) {
1801                 $wwv_dxcc = $dxcc[1]->dxcc;
1802                 $wwv_itu = $dxcc[1]->itu;
1803                 $wwv_cq = $dxcc[1]->cq;                                         
1804         }
1805         @dxcc = Prefix::extract($_[7]);
1806         if (@dxcc > 0) {
1807                 $org_dxcc = $dxcc[1]->dxcc;
1808                 $org_itu = $dxcc[1]->itu;
1809                 $org_cq = $dxcc[1]->cq;                                         
1810         }
1811         
1812         # send it if it isn't the except list and isn't isolated and still has a hop count
1813         # taking into account filtering and so on
1814         foreach $dxchan (@dxchan) {
1815                 next if $dxchan == $main::me;
1816                 next if $dxchan == $self && $self->is_node;
1817                 my $routeit;
1818                 my ($filter, $hops);
1819
1820                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1821         }
1822 }
1823
1824 sub wwv
1825 {
1826         my $self = shift;
1827         my $line = shift;
1828         my $isolate = shift;
1829         my ($filter, $hops);
1830         
1831         if ($self->{wwvfilter}) {
1832                 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1833                 return unless $filter;
1834         }
1835         send_prot_line($self, $filter, $hops, $isolate, $line)
1836 }
1837
1838 sub send_wcy_spot
1839 {
1840         my $self = shift;
1841         my $line = shift;
1842         my @dxchan = DXChannel->get_all();
1843         my $dxchan;
1844         my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1845         my @dxcc = Prefix::extract($_[10]);
1846         if (@dxcc > 0) {
1847                 $wcy_dxcc = $dxcc[1]->dxcc;
1848                 $wcy_itu = $dxcc[1]->itu;
1849                 $wcy_cq = $dxcc[1]->cq;                                         
1850         }
1851         @dxcc = Prefix::extract($_[11]);
1852         if (@dxcc > 0) {
1853                 $org_dxcc = $dxcc[1]->dxcc;
1854                 $org_itu = $dxcc[1]->itu;
1855                 $org_cq = $dxcc[1]->cq;                                         
1856         }
1857         
1858         # send it if it isn't the except list and isn't isolated and still has a hop count
1859         # taking into account filtering and so on
1860         foreach $dxchan (@dxchan) {
1861                 next if $dxchan == $main::me;
1862                 next if $dxchan == $self;
1863
1864                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1865         }
1866 }
1867
1868 sub wcy
1869 {
1870         my $self = shift;
1871         my $line = shift;
1872         my $isolate = shift;
1873         my ($filter, $hops);
1874
1875         if ($self->{wcyfilter}) {
1876                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1877                 return unless $filter;
1878         }
1879         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1880 }
1881
1882 # send an announce
1883 sub send_announce
1884 {
1885         my $self = shift;
1886         my $line = shift;
1887         my @dxchan = DXChannel->get_all();
1888         my $dxchan;
1889         my $target;
1890         my $to = 'To ';
1891         my $text = unpad($_[2]);
1892                                 
1893         if ($_[3] eq '*') {     # sysops
1894                 $target = "SYSOP";
1895         } elsif ($_[3] gt ' ') { # speciality list handling
1896                 my ($name) = split /\./, $_[3]; 
1897                 $target = "$name"; # put the rest in later (if bothered) 
1898         } 
1899         
1900         if ($_[5] eq '1') {
1901                 $target = "WX"; 
1902                 $to = '';
1903         }
1904         $target = "ALL" if !$target;
1905
1906
1907         # obtain country codes etc 
1908         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1909         my ($ann_state, $org_state) = ("", "");
1910         my @dxcc = Prefix::extract($_[0]);
1911         if (@dxcc > 0) {
1912                 $ann_dxcc = $dxcc[1]->dxcc;
1913                 $ann_itu = $dxcc[1]->itu;
1914                 $ann_cq = $dxcc[1]->cq;                                         
1915                 $ann_state = $dxcc[1]->state;
1916         }
1917         @dxcc = Prefix::extract($_[4]);
1918         if (@dxcc > 0) {
1919                 $org_dxcc = $dxcc[1]->dxcc;
1920                 $org_itu = $dxcc[1]->itu;
1921                 $org_cq = $dxcc[1]->cq;                                         
1922                 $org_state = $dxcc[1]->state;
1923         }
1924
1925         if ($self->{inannfilter}) {
1926                 my ($filter, $hops) = 
1927                         $self->{inannfilter}->it(@_, $self->{call}, 
1928                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1929                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1930                 unless ($filter) {
1931                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1932                         return;
1933                 }
1934         }
1935
1936         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1937                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1938                 return;
1939         }
1940
1941         Log('ann', $target, $_[0], $text);
1942
1943         # send it if it isn't the except list and isn't isolated and still has a hop count
1944         # taking into account filtering and so on
1945         foreach $dxchan (@dxchan) {
1946                 next if $dxchan == $main::me;
1947                 next if $dxchan == $self && $self->is_node;
1948                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1949         }
1950 }
1951
1952 my $msgid = 0;
1953
1954 sub nextchatmsgid
1955 {
1956         $msgid++;
1957         $msgid = 1 if $msgid > 999;
1958         return $msgid;
1959 }
1960
1961 # send a chat line
1962 sub send_chat
1963 {
1964         my $self = shift;
1965         my $line = shift;
1966         my @dxchan = DXChannel->get_all();
1967         my $dxchan;
1968         my $target = $_[3];
1969         my $text = unpad($_[2]);
1970         my $ak1a_line;
1971                                 
1972         # munge the group and recast the line if required
1973         if ($target =~ s/\.LST$//) {
1974                 $ak1a_line = $line;
1975         }
1976         
1977         # obtain country codes etc 
1978         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1979         my ($ann_state, $org_state) = ("", "");
1980         my @dxcc = Prefix::extract($_[0]);
1981         if (@dxcc > 0) {
1982                 $ann_dxcc = $dxcc[1]->dxcc;
1983                 $ann_itu = $dxcc[1]->itu;
1984                 $ann_cq = $dxcc[1]->cq;                                         
1985                 $ann_state = $dxcc[1]->state;
1986         }
1987         @dxcc = Prefix::extract($_[4]);
1988         if (@dxcc > 0) {
1989                 $org_dxcc = $dxcc[1]->dxcc;
1990                 $org_itu = $dxcc[1]->itu;
1991                 $org_cq = $dxcc[1]->cq;                                         
1992                 $org_state = $dxcc[1]->state;
1993         }
1994
1995         if ($self->{inannfilter}) {
1996                 my ($filter, $hops) = 
1997                         $self->{inannfilter}->it(@_, $self->{call}, 
1998                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1999                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
2000                 unless ($filter) {
2001                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
2002                         return;
2003                 }
2004         }
2005
2006         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
2007                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
2008                 return;
2009         }
2010
2011
2012         Log('chat', $target, $_[0], $text);
2013
2014         # send it if it isn't the except list and isn't isolated and still has a hop count
2015         # taking into account filtering and so on
2016         foreach $dxchan (@dxchan) {
2017                 my $is_ak1a = $dxchan->is_ak1a;
2018                 
2019                 if ($dxchan->is_node) {
2020                         next if $dxchan == $main::me;
2021                         next if $dxchan == $self;
2022                         next unless $dxchan->is_spider || $is_ak1a;
2023                         next if $target eq 'LOCAL';
2024                         if (!$ak1a_line && $is_ak1a) {
2025                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
2026                         }
2027                 }
2028                 
2029                 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1], $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
2030         }
2031 }
2032
2033 sub announce
2034 {
2035         my $self = shift;
2036         my $line = shift;
2037         my $isolate = shift;
2038         my $to = shift;
2039         my $target = shift;
2040         my $text = shift;
2041         my ($filter, $hops);
2042
2043         if ($self->{annfilter}) {
2044                 ($filter, $hops) = $self->{annfilter}->it(@_);
2045                 return unless $filter;
2046         }
2047         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
2048 }
2049
2050 sub chat
2051 {
2052         goto &announce;
2053 }
2054
2055
2056 sub send_local_config
2057 {
2058         my $self = shift;
2059         my $node;
2060         my @nodes;
2061         my @localnodes;
2062         my @remotenodes;
2063
2064         dbg('DXProt::send_local_config') if isdbg('trace');
2065         
2066         # send our nodes
2067         if ($self->{isolate}) {
2068                 @localnodes = ( $main::routeroot );
2069                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
2070         } else {
2071                 # create a list of all the nodes that are not connected to this connection
2072                 # and are not themselves isolated, this to make sure that isolated nodes
2073         # don't appear outside of this node
2074
2075                 # send locally connected nodes
2076                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
2077                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
2078                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
2079
2080                 my $node;
2081                 if ($self->user->wantpc90) {
2082                         for $node (@localnodes) {
2083                                 my @nodes = map {my $r = Route::Node::get($_); $r ? $r : ()} $node->nodes;
2084                                 $self->send_route($node->call, \&pc19, scalar(@nodes)+1, @nodes);
2085                                 for my $r (@nodes) {
2086                                         push @remotenodes, $r unless grep $r eq $_, @remotenodes;
2087                                 }
2088                         }
2089                 } else {
2090                         my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
2091                         my @intcalls;
2092                         for $node (@rawintcalls) {
2093                                 push @intcalls, $node unless grep $node eq $_, @intcalls; 
2094                         }
2095                         my $ref = Route::Node::get($self->{call});
2096                         my @rnodes = $ref->nodes;
2097                         for $node (@intcalls) {
2098                                 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
2099                         }
2100                         $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
2101                 }
2102         }
2103         
2104
2105         
2106         # get all the users connected on the above nodes and send them out
2107         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
2108                 if ($node) {
2109                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
2110                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
2111                 } else {
2112                         dbg("sent a null value") if isdbg('chanerr');
2113                 }
2114         }
2115 }
2116
2117 #
2118 # route a message down an appropriate interface for a callsign
2119 #
2120 # is called route(to, pcline);
2121 #
2122 sub route
2123 {
2124         my ($self, $call, $line) = @_;
2125
2126         if (ref $self && $call eq $self->{call}) {
2127                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2128                 return;
2129         }
2130
2131         # always send it down the local interface if available
2132         my $dxchan = DXChannel->get($call);
2133         unless ($dxchan) {
2134                 my $cl = Route::get($call);
2135                 $dxchan = $cl->dxchan if $cl;
2136                 if (ref $dxchan) {
2137                         if (ref $self && $dxchan eq $self) {
2138                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2139                                 return;
2140                         }
2141                 }
2142         }
2143         if ($dxchan) {
2144                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
2145                 if ($routeit) {
2146                         $dxchan->send($routeit) unless $dxchan == $main::me;
2147                 }
2148         } else {
2149                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2150         }
2151 }
2152
2153 #
2154 # obtain the hops from the list for this callsign and pc no 
2155 #
2156
2157 sub get_hops
2158 {
2159         my $pcno = shift;
2160         my $hops = $DXProt::hopcount{$pcno};
2161         $hops = $DXProt::def_hopcount if !$hops;
2162         return "H$hops";       
2163 }
2164
2165
2166 # adjust the hop count on a per node basis using the user loadable 
2167 # hop table if available or else decrement an existing one
2168 #
2169
2170 sub adjust_hops
2171 {
2172         my $self = shift;
2173         my $s = shift;
2174         my $call = $self->{call};
2175         my $hops;
2176         
2177         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2178                 my ($pcno) = $s =~ /^PC(\d\d)/o;
2179                 confess "$call called adjust_hops with '$s'" unless $pcno;
2180                 my $ref = $nodehops{$call} if %nodehops;
2181                 if ($ref) {
2182                         my $newhops = $ref->{$pcno};
2183                         return "" if defined $newhops && $newhops == 0;
2184                         $newhops = $ref->{default} unless $newhops;
2185                         return "" if defined $newhops && $newhops == 0;
2186                         $newhops = $hops if !$newhops;
2187                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2188                 } else {
2189                         # simply decrement it
2190                         $hops--;
2191                         return "" if !$hops;
2192                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2193                 }
2194         }
2195         return $s;
2196 }
2197
2198
2199 # load hop tables
2200 #
2201 sub load_hops
2202 {
2203         my $self = shift;
2204         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2205         do "$main::data/hop_table.pl";
2206         return $@ if $@;
2207         return ();
2208 }
2209
2210
2211 # add a ping request to the ping queues
2212 sub addping
2213 {
2214         my ($from, $to) = @_;
2215         my $ref = $pings{$to} || [];
2216         my $r = {};
2217         $r->{call} = $from;
2218         $r->{t} = [ gettimeofday ];
2219         route(undef, $to, pc51($to, $main::mycall, 1));
2220         push @$ref, $r;
2221         $pings{$to} = $ref;
2222 }
2223
2224 sub process_rcmd
2225 {
2226         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2227         if ($tonode eq $main::mycall) {
2228                 my $ref = DXUser->get_current($fromnode);
2229                 my $cref = Route::Node::get($fromnode);
2230                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2231                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2232                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2233                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2234                                 my $oldpriv = $self->{priv};
2235                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2236                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2237                                 $self->{priv} = $oldpriv;
2238                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2239                                 delete $self->{remotecmd};
2240                         } else {
2241                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2242                         }
2243                 } else {
2244                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2245                 }
2246         } else {
2247                 my $ref = DXUser->get_current($tonode);
2248                 if ($ref && $ref->is_clx) {
2249                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2250                 } else {
2251                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2252                 }
2253         }
2254 }
2255
2256 sub process_rcmd_reply
2257 {
2258         my ($self, $tonode, $fromnode, $user, $line) = @_;
2259         if ($tonode eq $main::mycall) {
2260                 my $s = $rcmds{$fromnode};
2261                 if ($s) {
2262                         my $dxchan = DXChannel->get($s->{call});
2263                         my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
2264                         $ref->send($line) if $ref;
2265                         delete $rcmds{$fromnode} if !$dxchan;
2266                 } else {
2267                         # send unsolicited ones to the sysop
2268                         my $dxchan = DXChannel->get($main::myalias);
2269                         $dxchan->send($line) if $dxchan;
2270                 }
2271         } else {
2272                 my $ref = DXUser->get_current($tonode);
2273                 if ($ref && $ref->is_clx) {
2274                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2275                 } else {
2276                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2277                 }
2278         }
2279 }
2280
2281 sub send_rcmd_reply
2282 {
2283         my $self = shift;
2284         my $tonode = shift;
2285         my $fromnode = shift;
2286         my $user = shift;
2287         while (@_) {
2288                 my $line = shift;
2289                 $line =~ s/\s*$//;
2290                 Log('rcmd', 'out', $fromnode, $line);
2291                 if ($self->is_clx) {
2292                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2293                 } else {
2294                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2295                 }
2296         }
2297 }
2298
2299 # add a rcmd request to the rcmd queues
2300 sub addrcmd
2301 {
2302         my ($self, $to, $cmd) = @_;
2303
2304         my $r = {};
2305         $r->{call} = $self->{call};
2306         $r->{t} = $main::systime;
2307         $r->{cmd} = $cmd;
2308         $rcmds{$to} = $r;
2309         
2310         my $ref = Route::Node::get($to);
2311         my $dxchan = $ref->dxchan;
2312         if ($dxchan && $dxchan->is_clx) {
2313                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2314         } else {
2315                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2316         }
2317 }
2318
2319 sub disconnect
2320 {
2321         my $self = shift;
2322         my $pc39flag = shift;
2323         my $call = $self->call;
2324
2325         return if $self->{disconnecting}++;
2326         
2327         unless ($pc39flag && $pc39flag == 1) {
2328                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2329         }
2330
2331         # get rid of any PC16/17/19
2332         eph_del_regex("^PC1[679]*$call");
2333
2334         # do routing stuff, remove me from routing table
2335         my $node = Route::Node::get($call);
2336         my @rout;
2337         if ($node) {
2338                 @rout = $node->del($main::routeroot);
2339                 
2340                 # and all my ephemera as well
2341                 for (@rout) {
2342                         my $c = $_->call;
2343                         eph_del_regex("^PC1[679].*$c");
2344                 }
2345         }
2346         
2347         # remove them from the pc19list as well
2348         while (my ($k,$v) = each %pc19list) {
2349                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2350                 if (@l) {
2351                         $pc19list{$k} = \@l;
2352                 } else {
2353                         delete $pc19list{$k};
2354                 }
2355                 
2356                 # and the ephemera
2357                 eph_del_regex("^PC1[679].*$k");
2358         }
2359
2360         # unbusy and stop and outgoing mail
2361         my $mref = DXMsg::get_busy($call);
2362         $mref->stop_msg($call) if $mref;
2363         
2364         # broadcast to all other nodes that all the nodes connected to via me are gone
2365         unless ($pc39flag && $pc39flag == 2) {
2366                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2367         }
2368
2369         # remove outstanding pings
2370         delete $pings{$call};
2371         
2372         # I was the last node visited
2373     $self->user->node($main::mycall);
2374
2375         # send info to all logged in thingies
2376         $self->tell_login('logoutn');
2377
2378         Log('DXProt', $call . " Disconnected");
2379
2380         $self->SUPER::disconnect;
2381 }
2382
2383
2384
2385 # send a talk message to this thingy
2386 #
2387 sub talk
2388 {
2389         my ($self, $from, $to, $via, $line, $origin) = @_;
2390         
2391         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2392         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2393         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2394 }
2395
2396 # send it if it isn't the except list and isn't isolated and still has a hop count
2397 # taking into account filtering and so on
2398
2399 sub send_route
2400 {
2401         my $self = shift;
2402         my $origin = shift;
2403         my $generate = shift;
2404         my $no = shift;     # the no of things to filter on 
2405         my $routeit;
2406         my ($filter, $hops);
2407         my @rin;
2408         
2409         for (; @_ && $no; $no--) {
2410                 my $r = shift;
2411                 
2412                 if (!$self->{isolate} && $self->{routefilter}) {
2413                         $filter = undef;
2414                         if ($r) {
2415                                 ($filter, $hops) = $self->{routefilter}->it($self->{call}, $self->{dxcc}, $self->{itu}, $self->{cq}, $r->call, $r->dxcc, $r->itu, $r->cq, $self->{state}, $r->{state});
2416                                 if ($filter) {
2417                                         push @rin, $r;
2418                                 } else {
2419                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2420                                 }
2421                         } else {
2422                                 dbg("was sent a null value") if isdbg('chanerr');
2423                         }
2424                 } else {
2425                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2426                 }
2427         }
2428         if (@rin) {
2429                 foreach my $line (&$generate(@rin, @_)) {
2430                         if ($hops) {
2431                                 $routeit = $line;
2432                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2433                         } else {
2434                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2435                                 next unless $routeit;
2436                         }
2437                         
2438                         $routeit = mungepc91($origin, $routeit) if $self->user->wantpc90;
2439                         $self->send($routeit);
2440                 }
2441         }
2442 }
2443
2444 sub broadcast_route
2445 {
2446         my $self = shift;
2447         my $origin = shift;
2448         my $generate = shift;
2449         my $line = shift;
2450         my @dxchan = DXChannel::get_all_nodes();
2451         my $dxchan;
2452         
2453         unless ($self->{isolate}) {
2454                 foreach $dxchan (@dxchan) {
2455                         next if $dxchan == $self;
2456                         next if $dxchan == $main::me;
2457                         next unless $dxchan->isa('DXProt');
2458                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2459  
2460                         if ($self->user->wantpc90 && $line) {
2461                                 $dxchan->send(mungepc91($origin, $line));
2462                         } else {
2463                                 $dxchan->send_route($origin, $generate, @_);
2464                         }
2465                 }
2466         }
2467 }
2468
2469 sub route_pc16
2470 {
2471         my $self = shift;
2472         return unless $self->user->wantpc16;
2473         my $origin = shift;
2474         my $line = shift;
2475         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2476 }
2477
2478 sub route_pc17
2479 {
2480         my $self = shift;
2481         return unless $self->user->wantpc16;
2482         my $origin = shift;
2483         my $line = shift;
2484         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2485 }
2486
2487 sub route_pc19
2488 {
2489         my $self = shift;
2490         my $origin = shift;
2491         my $line = shift;
2492         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2493 }
2494
2495 sub route_pc21
2496 {
2497         my $self = shift;
2498         my $origin = shift;
2499         my $line = shift;
2500         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2501 }
2502
2503 sub route_pc24
2504 {
2505         my $self = shift;
2506         my $origin = shift;
2507         my $line = shift;
2508         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2509 }
2510
2511 sub route_pc41
2512 {
2513         my $self = shift;
2514         my $origin = shift;
2515         my $line = shift;
2516         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2517 }
2518
2519 sub route_pc50
2520 {
2521         my $self = shift;
2522         my $origin = shift;
2523         my $line = shift;
2524         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2525 }
2526
2527 sub in_filter_route
2528 {
2529         my $self = shift;
2530         my $r = shift;
2531         my ($filter, $hops) = (1, 1);
2532         
2533         if ($self->{inroutefilter}) {
2534                 ($filter, $hops) = $self->{inroutefilter}->it($self->{call}, $self->{dxcc}, $self->{itu}, $self->{cq}, $r->call, $r->dxcc, $r->itu, $r->cq, $self->state, $r->state);
2535                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2536         }
2537         return $filter;
2538 }
2539
2540 sub eph_dup
2541 {
2542         my $s = shift;
2543         my $t = shift || $eph_restime;
2544         my $r;
2545
2546         # chop the end off
2547         $s =~ s/\^H\d\d?\^?\~?$//;
2548         removepc90($s);
2549         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2550         $eph{$s} = $main::systime + $t;
2551         return $r;
2552 }
2553
2554 sub eph_del_regex
2555 {
2556         my $regex = shift;
2557         my ($key, $val);
2558         while (($key, $val) = each %eph) {
2559                 if ($key =~ m{$regex}) {
2560                         delete $eph{$key};
2561                 }
2562         }
2563 }
2564
2565 sub eph_clean
2566 {
2567         my ($key, $val);
2568         
2569         while (($key, $val) = each %eph) {
2570                 if ($main::systime >= $val) {
2571                         delete $eph{$key};
2572                 }
2573         }
2574 }
2575
2576 sub eph_list
2577 {
2578         my ($key, $val);
2579         my @out;
2580
2581         while (($key, $val) = each %eph) {
2582                 push @out, $key, $val;
2583         }
2584         return @out;
2585 }
2586
2587 sub run_cmd
2588 {
2589         goto &DXCommandmode::run_cmd;
2590 }
2591 1;
2592 __END__