started the hierarchical view of the nodes
[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         DXDb::process($self, $line);
1376 }
1377
1378 # node connected list from neighbour
1379 sub handle_38
1380 {
1381         my $self = shift;
1382         my $pcno = shift;
1383         my $line = shift;
1384         my $origin = shift;
1385 }
1386                 
1387 # incoming disconnect
1388 sub handle_39
1389 {
1390         my $self = shift;
1391         my $pcno = shift;
1392         my $line = shift;
1393         my $origin = shift;
1394         if ($_[1] eq $self->{call}) {
1395                 $self->disconnect(1);
1396         } else {
1397                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1398         }
1399 }
1400
1401 sub handle_40 {goto &handle_28}
1402                 
1403 # user info
1404 sub handle_41
1405 {
1406         my $self = shift;
1407         my $pcno = shift;
1408         my $line = shift;
1409         my $origin = shift;
1410         my $call = $_[1];
1411
1412         my $l = $line;
1413         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1414         if (eph_dup($l, $eph_info_restime)) {
1415                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1416                 return;
1417         }
1418                         
1419         # input filter if required
1420         #                       my $ref = Route::get($call) || Route->new($call);
1421         #                       return unless $self->in_filter_route($ref);
1422
1423         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1424                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1425                 return;
1426         }
1427
1428         # add this station to the user database, if required
1429         my $user = DXUser->get_current($call);
1430         $user = DXUser->new($call) unless $user;
1431                         
1432         if ($_[2] == 1) {
1433                 $user->name($_[3]);
1434         } elsif ($_[2] == 2) {
1435                 $user->qth($_[3]);
1436         } elsif ($_[2] == 3) {
1437                 if (is_latlong($_[3])) {
1438                         my ($lat, $long) = DXBearing::stoll($_[3]);
1439                         $user->lat($lat);
1440                         $user->long($long);
1441                         $user->qra(DXBearing::lltoqra($lat, $long));
1442                 } else {
1443                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1444                         return;
1445                 }
1446         } elsif ($_[2] == 4) {
1447                 $user->homenode($_[3]);
1448         } elsif ($_[2] == 5) {
1449                 if (is_qra(uc $_[3])) {
1450                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1451                         $user->lat($lat);
1452                         $user->long($long);
1453                         $user->qra(uc $_[3]);
1454                 } else {
1455                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1456                         return;
1457                 }
1458         }
1459         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1460         $user->put;
1461
1462         unless ($self->{isolate}) {
1463                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1464         }
1465
1466         #  perhaps this IS what we want after all
1467         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1468 }
1469
1470 sub handle_42 {goto &handle_28}
1471
1472
1473 # database
1474 sub handle_44 {goto &handle_37}
1475 sub handle_45 {goto &handle_37}
1476 sub handle_46 {goto &handle_37}
1477 sub handle_47 {goto &handle_37}
1478 sub handle_48 {goto &handle_37}
1479                 
1480 # message and database
1481 sub handle_49
1482 {
1483         my $self = shift;
1484         my $pcno = shift;
1485         my $line = shift;
1486         my $origin = shift;
1487
1488         if (eph_dup($line)) {
1489                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1490                 return;
1491         }
1492         
1493         if ($_[1] eq $main::mycall) {
1494                 DXMsg::handle_49($self, @_);
1495         } else {
1496                 $self->route($_[1], $line) unless $self->is_clx;
1497         }
1498 }
1499
1500 # keep alive/user list
1501 sub handle_50
1502 {
1503         my $self = shift;
1504         my $pcno = shift;
1505         my $line = shift;
1506         my $origin = shift;
1507
1508         my $call = $_[1];
1509         my $node = Route::Node::get($call);
1510         if ($node) {
1511                 return unless $node->call eq $self->{call};
1512                 $node->usercount($_[2]);
1513
1514                 # input filter if required
1515                 return unless $self->in_filter_route($node);
1516
1517                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1518         }
1519 }
1520                 
1521 # incoming ping requests/answers
1522 sub handle_51
1523 {
1524         my $self = shift;
1525         my $pcno = shift;
1526         my $line = shift;
1527         my $origin = shift;
1528         my $to = $_[1];
1529         my $from = $_[2];
1530         my $flag = $_[3];
1531
1532                         
1533         # is it for us?
1534         if ($to eq $main::mycall) {
1535                 if ($flag == 1) {
1536                         $self->send(pc51($from, $to, '0'));
1537                 } else {
1538                         # it's a reply, look in the ping list for this one
1539                         my $ref = $pings{$from};
1540                         if ($ref) {
1541                                 my $tochan =  DXChannel->get($from);
1542                                 while (@$ref) {
1543                                         my $r = shift @$ref;
1544                                         my $dxchan = DXChannel->get($r->{call});
1545                                         next unless $dxchan;
1546                                         my $t = tv_interval($r->{t}, [ gettimeofday ]);
1547                                         if ($dxchan->is_user) {
1548                                                 my $s = sprintf "%.2f", $t; 
1549                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1550                                                 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1551                                         } elsif ($dxchan->is_node) {
1552                                                 if ($tochan) {
1553                                                         my $nopings = $tochan->user->nopings || $obscount;
1554                                                         push @{$tochan->{pingtime}}, $t;
1555                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1556
1557                                                                 # cope with a missed ping, this means you must set the pingint large enough
1558                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
1559                                                                 $t -= $tochan->{pingint};
1560                                                         }
1561
1562                                                                 # calc smoothed RTT a la TCP
1563                                                         if (@{$tochan->{pingtime}} == 1) {
1564                                                                 $tochan->{pingave} = $t;
1565                                                         } else {
1566                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1567                                                         }
1568                                                         $tochan->{nopings} = $nopings; # pump up the timer
1569                                                 }
1570                                         } 
1571                                 }
1572                         }
1573                 }
1574         } else {
1575                 if ($line !~ /^PC90/ && eph_dup($line)) {
1576                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1577                         return;
1578                 }
1579                 # route down an appropriate thingy
1580                 $self->route($to, $line);
1581         }
1582 }
1583
1584 # dunno but route it
1585 sub handle_75
1586 {
1587         my $self = shift;
1588         my $pcno = shift;
1589         my $line = shift;
1590         my $origin = shift;
1591         my $call = $_[1];
1592         if ($call ne $main::mycall) {
1593                 $self->route($call, $line);
1594         }
1595 }
1596
1597 # WCY broadcasts
1598 sub handle_73
1599 {
1600         my $self = shift;
1601         my $pcno = shift;
1602         my $line = shift;
1603         my $origin = shift;
1604         my $call = $_[1];
1605                         
1606         # do some de-duping
1607         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1608         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1609                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1610                 return;
1611         }
1612         @_ = map { unpad($_) } @_;
1613         if (WCY::dup($d)) {
1614                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1615                 return;
1616         }
1617                 
1618         my $wcy = WCY::update($d, @_[2..12]);
1619
1620         my $rep;
1621         eval {
1622                 $rep = Local::wcy($self, @_[1..12]);
1623         };
1624         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1625         return if $rep;
1626
1627         # broadcast to the eager world
1628         send_wcy_spot($self, $line, $d, @_[2..12]);
1629 }
1630
1631 # remote commands (incoming)
1632 sub handle_84
1633 {
1634         my $self = shift;
1635         my $pcno = shift;
1636         my $line = shift;
1637         my $origin = shift;
1638         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1639 }
1640
1641 # remote command replies
1642 sub handle_85
1643 {
1644         my $self = shift;
1645         my $pcno = shift;
1646         my $line = shift;
1647         my $origin = shift;
1648         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1649 }
1650
1651 # if get here then rebroadcast the thing with its Hop count decremented (if
1652 # there is one). If it has a hop count and it decrements to zero then don't
1653 # rebroadcast it.
1654 #
1655 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1656 #        REBROADCAST!!!!
1657 #
1658
1659 sub handle_default
1660 {
1661         my $self = shift;
1662         my $pcno = shift;
1663         my $line = shift;
1664         my $origin = shift;
1665
1666         if (eph_dup($line)) {
1667                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1668         } else {
1669                 unless ($self->{isolate}) {
1670                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1671                 }
1672         }
1673 }
1674
1675 #
1676 # This is called from inside the main cluster processing loop and is used
1677 # for despatching commands that are doing some long processing job
1678 #
1679 sub process
1680 {
1681         my $t = time;
1682         my @dxchan = DXChannel->get_all();
1683         my $dxchan;
1684         my $pc50s;
1685         
1686         # send out a pc50 on EVERY channel all at once
1687         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1688                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1689                 eph_dup($pc50s);
1690                 $last_pc50 = $t;
1691         }
1692
1693         foreach $dxchan (@dxchan) {
1694                 next unless $dxchan->is_node();
1695                 next if $dxchan == $main::me;
1696
1697                 # send the pc50
1698                 $dxchan->send($pc50s) if $pc50s;
1699                 
1700                 # send a ping out on this channel
1701                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1702                         if ($dxchan->{nopings} <= 0) {
1703                                 $dxchan->disconnect;
1704                         } else {
1705                                 addping($main::mycall, $dxchan->call);
1706                                 $dxchan->{nopings} -= 1;
1707                                 $dxchan->{lastping} = $t;
1708                         }
1709                 }
1710         }
1711
1712         # every ten seconds
1713         if ($t - $last10 >= 10) {       
1714                 # clean out ephemera 
1715
1716                 eph_clean();
1717
1718                 $last10 = $t;
1719         }
1720         
1721         if ($main::systime - 3600 > $last_hour) {
1722                 $last_hour = $main::systime;
1723         }
1724 }
1725
1726 #
1727 # finish up a pc context
1728 #
1729
1730 #
1731 # some active measures
1732 #
1733
1734
1735 sub send_dx_spot
1736 {
1737         my $self = shift;
1738         my $line = shift;
1739         my @dxchan = DXChannel->get_all();
1740         my $dxchan;
1741         
1742         # send it if it isn't the except list and isn't isolated and still has a hop count
1743         # taking into account filtering and so on
1744         foreach $dxchan (@dxchan) {
1745                 next if $dxchan == $main::me;
1746                 next if $dxchan == $self && $self->is_node;
1747                 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1748         }
1749 }
1750
1751 sub dx_spot
1752 {
1753         my $self = shift;
1754         my $line = shift;
1755         my $isolate = shift;
1756         my ($filter, $hops);
1757
1758         if ($self->{spotsfilter}) {
1759                 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1760                 return unless $filter;
1761         }
1762         send_prot_line($self, $filter, $hops, $isolate, $line);
1763 }
1764
1765 sub send_prot_line
1766 {
1767         my ($self, $filter, $hops, $isolate, $line) = @_;
1768         my $routeit;
1769
1770
1771         if ($hops) {
1772                 $routeit = $line;
1773                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1774         } else {
1775                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1776                 return unless $routeit;
1777         }
1778         if ($filter) {
1779                 $self->send($routeit);
1780         } else {
1781                 $self->send($routeit) unless $self->{isolate} || $isolate;
1782         }
1783 }
1784
1785
1786 sub send_wwv_spot
1787 {
1788         my $self = shift;
1789         my $line = shift;
1790         my @dxchan = DXChannel->get_all();
1791         my $dxchan;
1792         my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1793         my @dxcc = Prefix::extract($_[6]);
1794         if (@dxcc > 0) {
1795                 $wwv_dxcc = $dxcc[1]->dxcc;
1796                 $wwv_itu = $dxcc[1]->itu;
1797                 $wwv_cq = $dxcc[1]->cq;                                         
1798         }
1799         @dxcc = Prefix::extract($_[7]);
1800         if (@dxcc > 0) {
1801                 $org_dxcc = $dxcc[1]->dxcc;
1802                 $org_itu = $dxcc[1]->itu;
1803                 $org_cq = $dxcc[1]->cq;                                         
1804         }
1805         
1806         # send it if it isn't the except list and isn't isolated and still has a hop count
1807         # taking into account filtering and so on
1808         foreach $dxchan (@dxchan) {
1809                 next if $dxchan == $main::me;
1810                 next if $dxchan == $self && $self->is_node;
1811                 my $routeit;
1812                 my ($filter, $hops);
1813
1814                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1815         }
1816 }
1817
1818 sub wwv
1819 {
1820         my $self = shift;
1821         my $line = shift;
1822         my $isolate = shift;
1823         my ($filter, $hops);
1824         
1825         if ($self->{wwvfilter}) {
1826                 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1827                 return unless $filter;
1828         }
1829         send_prot_line($self, $filter, $hops, $isolate, $line)
1830 }
1831
1832 sub send_wcy_spot
1833 {
1834         my $self = shift;
1835         my $line = shift;
1836         my @dxchan = DXChannel->get_all();
1837         my $dxchan;
1838         my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1839         my @dxcc = Prefix::extract($_[10]);
1840         if (@dxcc > 0) {
1841                 $wcy_dxcc = $dxcc[1]->dxcc;
1842                 $wcy_itu = $dxcc[1]->itu;
1843                 $wcy_cq = $dxcc[1]->cq;                                         
1844         }
1845         @dxcc = Prefix::extract($_[11]);
1846         if (@dxcc > 0) {
1847                 $org_dxcc = $dxcc[1]->dxcc;
1848                 $org_itu = $dxcc[1]->itu;
1849                 $org_cq = $dxcc[1]->cq;                                         
1850         }
1851         
1852         # send it if it isn't the except list and isn't isolated and still has a hop count
1853         # taking into account filtering and so on
1854         foreach $dxchan (@dxchan) {
1855                 next if $dxchan == $main::me;
1856                 next if $dxchan == $self;
1857
1858                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1859         }
1860 }
1861
1862 sub wcy
1863 {
1864         my $self = shift;
1865         my $line = shift;
1866         my $isolate = shift;
1867         my ($filter, $hops);
1868
1869         if ($self->{wcyfilter}) {
1870                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1871                 return unless $filter;
1872         }
1873         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1874 }
1875
1876 # send an announce
1877 sub send_announce
1878 {
1879         my $self = shift;
1880         my $line = shift;
1881         my @dxchan = DXChannel->get_all();
1882         my $dxchan;
1883         my $target;
1884         my $to = 'To ';
1885         my $text = unpad($_[2]);
1886                                 
1887         if ($_[3] eq '*') {     # sysops
1888                 $target = "SYSOP";
1889         } elsif ($_[3] gt ' ') { # speciality list handling
1890                 my ($name) = split /\./, $_[3]; 
1891                 $target = "$name"; # put the rest in later (if bothered) 
1892         } 
1893         
1894         if ($_[5] eq '1') {
1895                 $target = "WX"; 
1896                 $to = '';
1897         }
1898         $target = "ALL" if !$target;
1899
1900
1901         # obtain country codes etc 
1902         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1903         my ($ann_state, $org_state) = ("", "");
1904         my @dxcc = Prefix::extract($_[0]);
1905         if (@dxcc > 0) {
1906                 $ann_dxcc = $dxcc[1]->dxcc;
1907                 $ann_itu = $dxcc[1]->itu;
1908                 $ann_cq = $dxcc[1]->cq;                                         
1909                 $ann_state = $dxcc[1]->state;
1910         }
1911         @dxcc = Prefix::extract($_[4]);
1912         if (@dxcc > 0) {
1913                 $org_dxcc = $dxcc[1]->dxcc;
1914                 $org_itu = $dxcc[1]->itu;
1915                 $org_cq = $dxcc[1]->cq;                                         
1916                 $org_state = $dxcc[1]->state;
1917         }
1918
1919         if ($self->{inannfilter}) {
1920                 my ($filter, $hops) = 
1921                         $self->{inannfilter}->it(@_, $self->{call}, 
1922                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1923                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1924                 unless ($filter) {
1925                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1926                         return;
1927                 }
1928         }
1929
1930         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1931                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1932                 return;
1933         }
1934
1935         Log('ann', $target, $_[0], $text);
1936
1937         # send it if it isn't the except list and isn't isolated and still has a hop count
1938         # taking into account filtering and so on
1939         foreach $dxchan (@dxchan) {
1940                 next if $dxchan == $main::me;
1941                 next if $dxchan == $self && $self->is_node;
1942                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1943         }
1944 }
1945
1946 my $msgid = 0;
1947
1948 sub nextchatmsgid
1949 {
1950         $msgid++;
1951         $msgid = 1 if $msgid > 999;
1952         return $msgid;
1953 }
1954
1955 # send a chat line
1956 sub send_chat
1957 {
1958         my $self = shift;
1959         my $line = shift;
1960         my @dxchan = DXChannel->get_all();
1961         my $dxchan;
1962         my $target = $_[3];
1963         my $text = unpad($_[2]);
1964         my $ak1a_line;
1965                                 
1966         # munge the group and recast the line if required
1967         if ($target =~ s/\.LST$//) {
1968                 $ak1a_line = $line;
1969         }
1970         
1971         # obtain country codes etc 
1972         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1973         my ($ann_state, $org_state) = ("", "");
1974         my @dxcc = Prefix::extract($_[0]);
1975         if (@dxcc > 0) {
1976                 $ann_dxcc = $dxcc[1]->dxcc;
1977                 $ann_itu = $dxcc[1]->itu;
1978                 $ann_cq = $dxcc[1]->cq;                                         
1979                 $ann_state = $dxcc[1]->state;
1980         }
1981         @dxcc = Prefix::extract($_[4]);
1982         if (@dxcc > 0) {
1983                 $org_dxcc = $dxcc[1]->dxcc;
1984                 $org_itu = $dxcc[1]->itu;
1985                 $org_cq = $dxcc[1]->cq;                                         
1986                 $org_state = $dxcc[1]->state;
1987         }
1988
1989         if ($self->{inannfilter}) {
1990                 my ($filter, $hops) = 
1991                         $self->{inannfilter}->it(@_, $self->{call}, 
1992                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1993                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1994                 unless ($filter) {
1995                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1996                         return;
1997                 }
1998         }
1999
2000         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
2001                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
2002                 return;
2003         }
2004
2005
2006         Log('chat', $target, $_[0], $text);
2007
2008         # send it if it isn't the except list and isn't isolated and still has a hop count
2009         # taking into account filtering and so on
2010         foreach $dxchan (@dxchan) {
2011                 my $is_ak1a = $dxchan->is_ak1a;
2012                 
2013                 if ($dxchan->is_node) {
2014                         next if $dxchan == $main::me;
2015                         next if $dxchan == $self;
2016                         next unless $dxchan->is_spider || $is_ak1a;
2017                         next if $target eq 'LOCAL';
2018                         if (!$ak1a_line && $is_ak1a) {
2019                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
2020                         }
2021                 }
2022                 
2023                 $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);
2024         }
2025 }
2026
2027 sub announce
2028 {
2029         my $self = shift;
2030         my $line = shift;
2031         my $isolate = shift;
2032         my $to = shift;
2033         my $target = shift;
2034         my $text = shift;
2035         my ($filter, $hops);
2036
2037         if ($self->{annfilter}) {
2038                 ($filter, $hops) = $self->{annfilter}->it(@_);
2039                 return unless $filter;
2040         }
2041         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
2042 }
2043
2044 sub chat
2045 {
2046         goto &announce;
2047 }
2048
2049
2050 sub send_local_config
2051 {
2052         my $self = shift;
2053         my $node;
2054         my @nodes;
2055         my @localnodes;
2056         my @remotenodes;
2057
2058         dbg('DXProt::send_local_config') if isdbg('trace');
2059         
2060         # send our nodes
2061         if ($self->{isolate}) {
2062                 @localnodes = ( $main::routeroot );
2063                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
2064         } else {
2065                 # create a list of all the nodes that are not connected to this connection
2066                 # and are not themselves isolated, this to make sure that isolated nodes
2067         # don't appear outside of this node
2068
2069                 # send locally connected nodes
2070                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
2071                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
2072                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
2073
2074                 my $node;
2075                 if ($self->user->wantpc90) {
2076                         for $node (@localnodes) {
2077                                 my @nodes = map {my $r = Route::Node::get($_); $r ? $r : ()} $node->nodes;
2078                                 $self->send_route($node->call, \&pc19, scalar(@nodes)+1, @nodes);
2079                                 for my $r (@nodes) {
2080                                         push @remotenodes, $r unless grep $r eq $_, @remotenodes;
2081                                 }
2082                         }
2083                 } else {
2084                         my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
2085                         my @intcalls;
2086                         for $node (@rawintcalls) {
2087                                 push @intcalls, $node unless grep $node eq $_, @intcalls; 
2088                         }
2089                         my $ref = Route::Node::get($self->{call});
2090                         my @rnodes = $ref->nodes;
2091                         for $node (@intcalls) {
2092                                 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
2093                         }
2094                         $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
2095                 }
2096         }
2097         
2098
2099         
2100         # get all the users connected on the above nodes and send them out
2101         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
2102                 if ($node) {
2103                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
2104                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
2105                 } else {
2106                         dbg("sent a null value") if isdbg('chanerr');
2107                 }
2108         }
2109 }
2110
2111 #
2112 # route a message down an appropriate interface for a callsign
2113 #
2114 # is called route(to, pcline);
2115 #
2116 sub route
2117 {
2118         my ($self, $call, $line) = @_;
2119
2120         if (ref $self && $call eq $self->{call}) {
2121                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2122                 return;
2123         }
2124
2125         # always send it down the local interface if available
2126         my $dxchan = DXChannel->get($call);
2127         unless ($dxchan) {
2128                 my $cl = Route::get($call);
2129                 $dxchan = $cl->dxchan if $cl;
2130                 if (ref $dxchan) {
2131                         if (ref $self && $dxchan eq $self) {
2132                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2133                                 return;
2134                         }
2135                 }
2136         }
2137         if ($dxchan) {
2138                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
2139                 if ($routeit) {
2140                         $dxchan->send($routeit) unless $dxchan == $main::me;
2141                 }
2142         } else {
2143                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2144         }
2145 }
2146
2147 #
2148 # obtain the hops from the list for this callsign and pc no 
2149 #
2150
2151 sub get_hops
2152 {
2153         my $pcno = shift;
2154         my $hops = $DXProt::hopcount{$pcno};
2155         $hops = $DXProt::def_hopcount if !$hops;
2156         return "H$hops";       
2157 }
2158
2159
2160 # adjust the hop count on a per node basis using the user loadable 
2161 # hop table if available or else decrement an existing one
2162 #
2163
2164 sub adjust_hops
2165 {
2166         my $self = shift;
2167         my $s = shift;
2168         my $call = $self->{call};
2169         my $hops;
2170         
2171         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2172                 my ($pcno) = $s =~ /^PC(\d\d)/o;
2173                 confess "$call called adjust_hops with '$s'" unless $pcno;
2174                 my $ref = $nodehops{$call} if %nodehops;
2175                 if ($ref) {
2176                         my $newhops = $ref->{$pcno};
2177                         return "" if defined $newhops && $newhops == 0;
2178                         $newhops = $ref->{default} unless $newhops;
2179                         return "" if defined $newhops && $newhops == 0;
2180                         $newhops = $hops if !$newhops;
2181                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2182                 } else {
2183                         # simply decrement it
2184                         $hops--;
2185                         return "" if !$hops;
2186                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2187                 }
2188         }
2189         return $s;
2190 }
2191
2192
2193 # load hop tables
2194 #
2195 sub load_hops
2196 {
2197         my $self = shift;
2198         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2199         do "$main::data/hop_table.pl";
2200         return $@ if $@;
2201         return ();
2202 }
2203
2204
2205 # add a ping request to the ping queues
2206 sub addping
2207 {
2208         my ($from, $to) = @_;
2209         my $ref = $pings{$to} || [];
2210         my $r = {};
2211         $r->{call} = $from;
2212         $r->{t} = [ gettimeofday ];
2213         route(undef, $to, pc51($to, $main::mycall, 1));
2214         push @$ref, $r;
2215         $pings{$to} = $ref;
2216 }
2217
2218 sub process_rcmd
2219 {
2220         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2221         if ($tonode eq $main::mycall) {
2222                 my $ref = DXUser->get_current($fromnode);
2223                 my $cref = Route::Node::get($fromnode);
2224                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2225                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2226                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2227                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2228                                 my $oldpriv = $self->{priv};
2229                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2230                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2231                                 $self->{priv} = $oldpriv;
2232                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2233                                 delete $self->{remotecmd};
2234                         } else {
2235                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2236                         }
2237                 } else {
2238                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2239                 }
2240         } else {
2241                 my $ref = DXUser->get_current($tonode);
2242                 if ($ref && $ref->is_clx) {
2243                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2244                 } else {
2245                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2246                 }
2247         }
2248 }
2249
2250 sub process_rcmd_reply
2251 {
2252         my ($self, $tonode, $fromnode, $user, $line) = @_;
2253         if ($tonode eq $main::mycall) {
2254                 my $s = $rcmds{$fromnode};
2255                 if ($s) {
2256                         my $dxchan = DXChannel->get($s->{call});
2257                         my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
2258                         $ref->send($line) if $ref;
2259                         delete $rcmds{$fromnode} if !$dxchan;
2260                 } else {
2261                         # send unsolicited ones to the sysop
2262                         my $dxchan = DXChannel->get($main::myalias);
2263                         $dxchan->send($line) if $dxchan;
2264                 }
2265         } else {
2266                 my $ref = DXUser->get_current($tonode);
2267                 if ($ref && $ref->is_clx) {
2268                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2269                 } else {
2270                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2271                 }
2272         }
2273 }
2274
2275 sub send_rcmd_reply
2276 {
2277         my $self = shift;
2278         my $tonode = shift;
2279         my $fromnode = shift;
2280         my $user = shift;
2281         while (@_) {
2282                 my $line = shift;
2283                 $line =~ s/\s*$//;
2284                 Log('rcmd', 'out', $fromnode, $line);
2285                 if ($self->is_clx) {
2286                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2287                 } else {
2288                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2289                 }
2290         }
2291 }
2292
2293 # add a rcmd request to the rcmd queues
2294 sub addrcmd
2295 {
2296         my ($self, $to, $cmd) = @_;
2297
2298         my $r = {};
2299         $r->{call} = $self->{call};
2300         $r->{t} = $main::systime;
2301         $r->{cmd} = $cmd;
2302         $rcmds{$to} = $r;
2303         
2304         my $ref = Route::Node::get($to);
2305         my $dxchan = $ref->dxchan;
2306         if ($dxchan && $dxchan->is_clx) {
2307                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2308         } else {
2309                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2310         }
2311 }
2312
2313 sub disconnect
2314 {
2315         my $self = shift;
2316         my $pc39flag = shift;
2317         my $call = $self->call;
2318
2319         return if $self->{disconnecting}++;
2320         
2321         unless ($pc39flag && $pc39flag == 1) {
2322                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2323         }
2324
2325         # get rid of any PC16/17/19
2326         eph_del_regex("^PC1[679]*$call");
2327
2328         # do routing stuff, remove me from routing table
2329         my $node = Route::Node::get($call);
2330         my @rout;
2331         if ($node) {
2332                 @rout = $node->del($main::routeroot);
2333                 
2334                 # and all my ephemera as well
2335                 for (@rout) {
2336                         my $c = $_->call;
2337                         eph_del_regex("^PC1[679].*$c");
2338                 }
2339         }
2340         
2341         # remove them from the pc19list as well
2342         while (my ($k,$v) = each %pc19list) {
2343                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2344                 if (@l) {
2345                         $pc19list{$k} = \@l;
2346                 } else {
2347                         delete $pc19list{$k};
2348                 }
2349                 
2350                 # and the ephemera
2351                 eph_del_regex("^PC1[679].*$k");
2352         }
2353
2354         # unbusy and stop and outgoing mail
2355         my $mref = DXMsg::get_busy($call);
2356         $mref->stop_msg($call) if $mref;
2357         
2358         # broadcast to all other nodes that all the nodes connected to via me are gone
2359         unless ($pc39flag && $pc39flag == 2) {
2360                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2361         }
2362
2363         # remove outstanding pings
2364         delete $pings{$call};
2365         
2366         # I was the last node visited
2367     $self->user->node($main::mycall);
2368
2369         # send info to all logged in thingies
2370         $self->tell_login('logoutn');
2371
2372         Log('DXProt', $call . " Disconnected");
2373
2374         $self->SUPER::disconnect;
2375 }
2376
2377
2378
2379 # send a talk message to this thingy
2380 #
2381 sub talk
2382 {
2383         my ($self, $from, $to, $via, $line, $origin) = @_;
2384         
2385         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2386         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2387         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2388 }
2389
2390 # send it if it isn't the except list and isn't isolated and still has a hop count
2391 # taking into account filtering and so on
2392
2393 sub send_route
2394 {
2395         my $self = shift;
2396         my $origin = shift;
2397         my $generate = shift;
2398         my $no = shift;     # the no of things to filter on 
2399         my $routeit;
2400         my ($filter, $hops);
2401         my @rin;
2402         
2403         for (; @_ && $no; $no--) {
2404                 my $r = shift;
2405                 
2406                 if (!$self->{isolate} && $self->{routefilter}) {
2407                         $filter = undef;
2408                         if ($r) {
2409                                 ($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});
2410                                 if ($filter) {
2411                                         push @rin, $r;
2412                                 } else {
2413                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2414                                 }
2415                         } else {
2416                                 dbg("was sent a null value") if isdbg('chanerr');
2417                         }
2418                 } else {
2419                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2420                 }
2421         }
2422         if (@rin) {
2423                 foreach my $line (&$generate(@rin, @_)) {
2424                         if ($hops) {
2425                                 $routeit = $line;
2426                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2427                         } else {
2428                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2429                                 next unless $routeit;
2430                         }
2431                         
2432                         $routeit = mungepc91($origin, $routeit) if $self->user->wantpc90;
2433                         $self->send($routeit);
2434                 }
2435         }
2436 }
2437
2438 sub broadcast_route
2439 {
2440         my $self = shift;
2441         my $origin = shift;
2442         my $generate = shift;
2443         my $line = shift;
2444         my @dxchan = DXChannel::get_all_nodes();
2445         my $dxchan;
2446         
2447         unless ($self->{isolate}) {
2448                 foreach $dxchan (@dxchan) {
2449                         next if $dxchan == $self;
2450                         next if $dxchan == $main::me;
2451                         next unless $dxchan->isa('DXProt');
2452                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2453  
2454                         if ($self->user->wantpc90 && $line) {
2455                                 $dxchan->send(mungepc91($origin, $line));
2456                         } else {
2457                                 $dxchan->send_route($origin, $generate, @_);
2458                         }
2459                 }
2460         }
2461 }
2462
2463 sub route_pc16
2464 {
2465         my $self = shift;
2466         return unless $self->user->wantpc16;
2467         my $origin = shift;
2468         my $line = shift;
2469         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2470 }
2471
2472 sub route_pc17
2473 {
2474         my $self = shift;
2475         return unless $self->user->wantpc16;
2476         my $origin = shift;
2477         my $line = shift;
2478         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2479 }
2480
2481 sub route_pc19
2482 {
2483         my $self = shift;
2484         my $origin = shift;
2485         my $line = shift;
2486         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2487 }
2488
2489 sub route_pc21
2490 {
2491         my $self = shift;
2492         my $origin = shift;
2493         my $line = shift;
2494         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2495 }
2496
2497 sub route_pc24
2498 {
2499         my $self = shift;
2500         my $origin = shift;
2501         my $line = shift;
2502         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2503 }
2504
2505 sub route_pc41
2506 {
2507         my $self = shift;
2508         my $origin = shift;
2509         my $line = shift;
2510         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2511 }
2512
2513 sub route_pc50
2514 {
2515         my $self = shift;
2516         my $origin = shift;
2517         my $line = shift;
2518         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2519 }
2520
2521 sub in_filter_route
2522 {
2523         my $self = shift;
2524         my $r = shift;
2525         my ($filter, $hops) = (1, 1);
2526         
2527         if ($self->{inroutefilter}) {
2528                 ($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);
2529                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2530         }
2531         return $filter;
2532 }
2533
2534 sub eph_dup
2535 {
2536         my $s = shift;
2537         my $t = shift || $eph_restime;
2538         my $r;
2539
2540         # chop the end off
2541         $s =~ s/\^H\d\d?\^?\~?$//;
2542         removepc90($s);
2543         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2544         $eph{$s} = $main::systime + $t;
2545         return $r;
2546 }
2547
2548 sub eph_del_regex
2549 {
2550         my $regex = shift;
2551         my ($key, $val);
2552         while (($key, $val) = each %eph) {
2553                 if ($key =~ m{$regex}) {
2554                         delete $eph{$key};
2555                 }
2556         }
2557 }
2558
2559 sub eph_clean
2560 {
2561         my ($key, $val);
2562         
2563         while (($key, $val) = each %eph) {
2564                 if ($main::systime >= $val) {
2565                         delete $eph{$key};
2566                 }
2567         }
2568 }
2569
2570 sub eph_list
2571 {
2572         my ($key, $val);
2573         my @out;
2574
2575         while (($key, $val) = each %eph) {
2576                 push @out, $key, $val;
2577         }
2578         return @out;
2579 }
2580
2581 sub run_cmd
2582 {
2583         goto &DXCommandmode::run_cmd;
2584 }
2585 1;
2586 __END__