fix missing origin for isolated 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         my $parent = Route::Node::get($self->{call});
1009         unless ($parent) {
1010                 dbg("DXPROT: my parent $self->{call} has disappeared");
1011                 $self->disconnect;
1012                 return;
1013         }
1014
1015         # parse the PC19
1016         for ($i = 1; $i < $#_-1; $i += 4) {
1017                 my $here = $_[$i];
1018                 my $call = uc $_[$i+1];
1019                 my $conf = $_[$i+2];
1020                 my $ver = $_[$i+3];
1021                 next unless defined $here && defined $conf && is_callsign($call);
1022
1023                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
1024                                 
1025                 # check for sane parameters
1026                 #                               $ver = 5000 if $ver eq '0000';
1027                 next if $ver < 5000;    # only works with version 5 software
1028                 next if length $call < 3; # min 3 letter callsigns
1029                 next if $call eq $main::mycall;
1030
1031                 # check that this PC19 isn't trying to alter the wrong dxchan
1032                 my $dxchan = DXChannel->get($call);
1033                 if ($dxchan && $dxchan != $self) {
1034                         dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1035                         next;
1036                 }
1037
1038                 # add this station to the user database, if required (don't remove SSID from nodes)
1039                 my $user = DXUser->get_current($call);
1040                 if (!$user) {
1041                         $user = DXUser->new($call);
1042                         $user->sort('A');
1043                         $user->priv(1);         # I have relented and defaulted nodes
1044                         $user->lockout(1);
1045                         $user->homenode($call);
1046                         $user->node($call);
1047                 }
1048
1049                 my $r = Route::Node::get($call);
1050                 my $flags = Route::here($here)|Route::conf($conf);
1051
1052                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1053                 if ($r) {
1054                         my $ar;
1055                         if ($call ne $parent->call) {
1056                                 if ($self->in_filter_route($r)) {
1057                                         $ar = $parent->add($call, $ver, $flags);
1058                                         push @rout, $ar if $ar;
1059                                 } else {
1060                                         next;
1061                                 }
1062                         }
1063                         if ($r->version ne $ver || $r->flags != $flags) {
1064                                 $r->version($ver);
1065                                 $r->flags($flags);
1066                                 push @rout, $r unless $ar;
1067                         }
1068                 } else {
1069
1070                         # if he is directly connected or allowed then add him, otherwise store him up for later
1071                         if ($call eq $self->{call} || $user->wantroutepc19) {
1072                                 my $new = Route->new($call); # throw away
1073                                 if ($self->in_filter_route($new)) {
1074                                         my $ar = $parent->add($call, $ver, $flags);
1075                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1076                                         push @rout, $ar if $ar;
1077                                 } else {
1078                                         next;
1079                                 }
1080                         } else {
1081                                 $pc19list{$call} = [] unless exists $pc19list{$call};
1082                                 my $nl = $pc19list{$call};
1083                                 push @{$pc19list{$call}}, [$self->{call}, $ver, $flags] unless grep $_->[0] eq $self->{call}, @$nl;
1084                         }
1085                 }
1086
1087                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1088                 my $mref = DXMsg::get_busy($call);
1089                 $mref->stop_msg($call) if $mref;
1090                                 
1091                 $user->lastin($main::systime) unless DXChannel->get($call);
1092                 $user->put;
1093         }
1094
1095
1096         $self->route_pc19($origin, $line, @rout) if @rout;
1097 }
1098                 
1099 # send local configuration
1100 sub handle_20
1101 {
1102         my $self = shift;
1103         my $pcno = shift;
1104         my $line = shift;
1105         my $origin = shift;
1106         $self->send_local_config();
1107         $self->send(pc22());
1108         $self->state('normal');
1109         $self->{lastping} = 0;
1110 }
1111                 
1112 # delete a cluster from the list
1113 sub handle_21
1114 {
1115         my $self = shift;
1116         my $pcno = shift;
1117         my $line = shift;
1118         my $origin = shift;
1119         my $call = uc $_[1];
1120
1121         eph_del_regex("^PC1[679].*$call");
1122                         
1123         # if I get a PC21 from the same callsign as self then treat it
1124         # as a PC39: I have gone away
1125         if ($call eq $self->call) {
1126                 $self->disconnect(1);
1127                 return;
1128         }
1129
1130         # check to see if we are in the pc19list, if we are then don't bother with any of
1131         # this routing table manipulation, just remove it from the list and dump it
1132         my @rout;
1133         if (my $nl = $pc19list{$call}) {
1134                 $pc19list{$call} = [ grep {$_->[0] ne $self->{call}} @$nl ];
1135                 delete $pc19list{$call} unless @{$pc19list{$call}};
1136         } else {
1137                                 
1138                 my $parent = Route::Node::get($self->{call});
1139                 unless ($parent) {
1140                         dbg("DXPROT: my parent $self->{call} has disappeared");
1141                         $self->disconnect;
1142                         return;
1143                 }
1144                 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1145                         my $node = Route::Node::get($call);
1146                         if ($node) {
1147                                                 
1148                                 my $dxchan = DXChannel->get($call);
1149                                 if ($dxchan && $dxchan != $self) {
1150                                         dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1151                                         return;
1152                                 }
1153                                                 
1154                                 # input filter it
1155                                 return unless $self->in_filter_route($node);
1156                                                 
1157                                 # routing objects
1158                                 push @rout, $node->del($parent);
1159                         }
1160                 } else {
1161                         dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1162                         return;
1163                 }
1164         }
1165
1166         $self->route_pc21($origin, $line, @rout) if @rout;
1167 }
1168                 
1169
1170 sub handle_22
1171 {
1172         my $self = shift;
1173         my $pcno = shift;
1174         my $line = shift;
1175         my $origin = shift;
1176         $self->state('normal');
1177         $self->{lastping} = 0;
1178 }
1179                                 
1180 # WWV info
1181 sub handle_23
1182 {
1183         my $self = shift;
1184         my $pcno = shift;
1185         my $line = shift;
1186         my $origin = shift;
1187                         
1188         # route foreign' pc27s 
1189         if ($pcno == 27) {
1190                 if ($_[8] ne $main::mycall) {
1191                         $self->route($_[8], $line);
1192                         return;
1193                 }
1194         }
1195
1196         return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7]);
1197
1198         # do some de-duping
1199         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1200         my $sfi = unpad($_[3]);
1201         my $k = unpad($_[4]);
1202         my $i = unpad($_[5]);
1203         my ($r) = $_[6] =~ /R=(\d+)/;
1204         $r = 0 unless $r;
1205         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1206                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1207                 return;
1208         }
1209         if (Geomag::dup($d,$sfi,$k,$i,$_[6])) {
1210                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1211                 return;
1212         }
1213         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
1214                 
1215         my $wwv = Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1216
1217         my $rep;
1218         eval {
1219                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1220         };
1221         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1222         return if $rep;
1223
1224         # DON'T be silly and send on PC27s!
1225         return if $pcno == 27;
1226
1227         # broadcast to the eager world
1228         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1229 }
1230                 
1231 # set here status
1232 sub handle_24
1233 {
1234         my $self = shift;
1235         my $pcno = shift;
1236         my $line = shift;
1237         my $origin = shift;
1238         my $call = uc $_[1];
1239         my ($nref, $uref);
1240         $nref = Route::Node::get($call);
1241         $uref = Route::User::get($call);
1242         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1243                         
1244         if (eph_dup($line)) {
1245                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1246                 return;
1247         }
1248         
1249         $nref->here($_[2]) if $nref;
1250         $uref->here($_[2]) if $uref;
1251         my $ref = $nref || $uref;
1252         return unless $self->in_filter_route($ref);
1253
1254         $self->route_pc24($origin, $line, $ref, $_[3]);
1255 }
1256                 
1257 # merge request
1258 sub handle_25
1259 {
1260         my $self = shift;
1261         my $pcno = shift;
1262         my $line = shift;
1263         my $origin = shift;
1264         if ($_[1] ne $main::mycall) {
1265                 $self->route($_[1], $line);
1266                 return;
1267         }
1268         if ($_[2] eq $main::mycall) {
1269                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1270                 return;
1271         }
1272
1273         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1274                         
1275         # spots
1276         if ($_[3] > 0) {
1277                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1278                 my $in;
1279                 foreach $in (@in) {
1280                         $self->send(pc26(@{$in}[0..4], $_[2]));
1281                 }
1282         }
1283
1284         # wwv
1285         if ($_[4] > 0) {
1286                 my @in = reverse Geomag::search(0, $_[4], time, 1);
1287                 my $in;
1288                 foreach $in (@in) {
1289                         $self->send(pc27(@{$in}[0..5], $_[2]));
1290                 }
1291         }
1292 }
1293
1294 sub handle_26 {goto &handle_11}
1295 sub handle_27 {goto &handle_23}
1296
1297 # mail/file handling
1298 sub handle_28
1299 {
1300         my $self = shift;
1301         my $pcno = shift;
1302         my $line = shift;
1303         my $origin = shift;
1304         if ($_[1] eq $main::mycall) {
1305                 no strict 'refs';
1306                 my $sub = "DXMsg::handle_$pcno";
1307                 &$sub($self, @_);
1308         } else {
1309                 $self->route($_[1], $line) unless $self->is_clx;
1310         }
1311 }
1312
1313 sub handle_29 {goto &handle_28}
1314 sub handle_30 {goto &handle_28}
1315 sub handle_31 {goto &handle_28}
1316 sub handle_32 {goto &handle_28}
1317 sub handle_33 {goto &handle_28}
1318                 
1319 sub handle_34
1320 {
1321         my $self = shift;
1322         my $pcno = shift;
1323         my $line = shift;
1324         my $origin = shift;
1325         if (eph_dup($line, $eph_pc34_restime)) {
1326                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1327         } else {
1328                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1329         }
1330 }
1331                 
1332 # remote command replies
1333 sub handle_35
1334 {
1335         my $self = shift;
1336         my $pcno = shift;
1337         my $line = shift;
1338         my $origin = shift;
1339         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1340         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1341 }
1342                 
1343 sub handle_36 {goto &handle_34}
1344
1345 # database stuff
1346 sub handle_37
1347 {
1348         my $self = shift;
1349         my $pcno = shift;
1350         my $line = shift;
1351         my $origin = shift;
1352         DXDb::process($self, $line);
1353 }
1354
1355 # node connected list from neighbour
1356 sub handle_38
1357 {
1358         my $self = shift;
1359         my $pcno = shift;
1360         my $line = shift;
1361         my $origin = shift;
1362 }
1363                 
1364 # incoming disconnect
1365 sub handle_39
1366 {
1367         my $self = shift;
1368         my $pcno = shift;
1369         my $line = shift;
1370         my $origin = shift;
1371         if ($_[1] eq $self->{call}) {
1372                 $self->disconnect(1);
1373         } else {
1374                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1375         }
1376 }
1377
1378 sub handle_40 {goto &handle_28}
1379                 
1380 # user info
1381 sub handle_41
1382 {
1383         my $self = shift;
1384         my $pcno = shift;
1385         my $line = shift;
1386         my $origin = shift;
1387         my $call = $_[1];
1388
1389         my $l = $line;
1390         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1391         if (eph_dup($l, $eph_info_restime)) {
1392                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1393                 return;
1394         }
1395                         
1396         # input filter if required
1397         #                       my $ref = Route::get($call) || Route->new($call);
1398         #                       return unless $self->in_filter_route($ref);
1399
1400         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1401                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1402                 return;
1403         }
1404
1405         # add this station to the user database, if required
1406         my $user = DXUser->get_current($call);
1407         $user = DXUser->new($call) unless $user;
1408                         
1409         if ($_[2] == 1) {
1410                 $user->name($_[3]);
1411         } elsif ($_[2] == 2) {
1412                 $user->qth($_[3]);
1413         } elsif ($_[2] == 3) {
1414                 if (is_latlong($_[3])) {
1415                         my ($lat, $long) = DXBearing::stoll($_[3]);
1416                         $user->lat($lat);
1417                         $user->long($long);
1418                         $user->qra(DXBearing::lltoqra($lat, $long));
1419                 } else {
1420                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1421                         return;
1422                 }
1423         } elsif ($_[2] == 4) {
1424                 $user->homenode($_[3]);
1425         } elsif ($_[2] == 5) {
1426                 if (is_qra(uc $_[3])) {
1427                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1428                         $user->lat($lat);
1429                         $user->long($long);
1430                         $user->qra(uc $_[3]);
1431                 } else {
1432                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1433                         return;
1434                 }
1435         }
1436         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1437         $user->put;
1438
1439         unless ($self->{isolate}) {
1440                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1441         }
1442
1443         #  perhaps this IS what we want after all
1444         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1445 }
1446
1447 sub handle_42 {goto &handle_28}
1448
1449
1450 # database
1451 sub handle_44 {goto &handle_37}
1452 sub handle_45 {goto &handle_37}
1453 sub handle_46 {goto &handle_37}
1454 sub handle_47 {goto &handle_37}
1455 sub handle_48 {goto &handle_37}
1456                 
1457 # message and database
1458 sub handle_49
1459 {
1460         my $self = shift;
1461         my $pcno = shift;
1462         my $line = shift;
1463         my $origin = shift;
1464
1465         if (eph_dup($line)) {
1466                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1467                 return;
1468         }
1469         
1470         if ($_[1] eq $main::mycall) {
1471                 DXMsg::handle_49($self, @_);
1472         } else {
1473                 $self->route($_[1], $line) unless $self->is_clx;
1474         }
1475 }
1476
1477 # keep alive/user list
1478 sub handle_50
1479 {
1480         my $self = shift;
1481         my $pcno = shift;
1482         my $line = shift;
1483         my $origin = shift;
1484
1485         my $call = $_[1];
1486         my $node = Route::Node::get($call);
1487         if ($node) {
1488                 return unless $node->call eq $self->{call};
1489                 $node->usercount($_[2]);
1490
1491                 # input filter if required
1492                 return unless $self->in_filter_route($node);
1493
1494                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1495         }
1496 }
1497                 
1498 # incoming ping requests/answers
1499 sub handle_51
1500 {
1501         my $self = shift;
1502         my $pcno = shift;
1503         my $line = shift;
1504         my $origin = shift;
1505         my $to = $_[1];
1506         my $from = $_[2];
1507         my $flag = $_[3];
1508
1509                         
1510         # is it for us?
1511         if ($to eq $main::mycall) {
1512                 if ($flag == 1) {
1513                         $self->send(pc51($from, $to, '0'));
1514                 } else {
1515                         # it's a reply, look in the ping list for this one
1516                         my $ref = $pings{$from};
1517                         if ($ref) {
1518                                 my $tochan =  DXChannel->get($from);
1519                                 while (@$ref) {
1520                                         my $r = shift @$ref;
1521                                         my $dxchan = DXChannel->get($r->{call});
1522                                         next unless $dxchan;
1523                                         my $t = tv_interval($r->{t}, [ gettimeofday ]);
1524                                         if ($dxchan->is_user) {
1525                                                 my $s = sprintf "%.2f", $t; 
1526                                                 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1527                                                 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1528                                         } elsif ($dxchan->is_node) {
1529                                                 if ($tochan) {
1530                                                         my $nopings = $tochan->user->nopings || $obscount;
1531                                                         push @{$tochan->{pingtime}}, $t;
1532                                                         shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1533
1534                                                                 # cope with a missed ping, this means you must set the pingint large enough
1535                                                         if ($t > $tochan->{pingint}  && $t < 2 * $tochan->{pingint} ) {
1536                                                                 $t -= $tochan->{pingint};
1537                                                         }
1538
1539                                                                 # calc smoothed RTT a la TCP
1540                                                         if (@{$tochan->{pingtime}} == 1) {
1541                                                                 $tochan->{pingave} = $t;
1542                                                         } else {
1543                                                                 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1544                                                         }
1545                                                         $tochan->{nopings} = $nopings; # pump up the timer
1546                                                 }
1547                                         } 
1548                                 }
1549                         }
1550                 }
1551         } else {
1552                 if ($line !~ /^PC90/ && eph_dup($line)) {
1553                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1554                         return;
1555                 }
1556                 # route down an appropriate thingy
1557                 $self->route($to, $line);
1558         }
1559 }
1560
1561 # dunno but route it
1562 sub handle_75
1563 {
1564         my $self = shift;
1565         my $pcno = shift;
1566         my $line = shift;
1567         my $origin = shift;
1568         my $call = $_[1];
1569         if ($call ne $main::mycall) {
1570                 $self->route($call, $line);
1571         }
1572 }
1573
1574 # WCY broadcasts
1575 sub handle_73
1576 {
1577         my $self = shift;
1578         my $pcno = shift;
1579         my $line = shift;
1580         my $origin = shift;
1581         my $call = $_[1];
1582                         
1583         # do some de-duping
1584         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1585         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1586                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1587                 return;
1588         }
1589         @_ = map { unpad($_) } @_;
1590         if (WCY::dup($d)) {
1591                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1592                 return;
1593         }
1594                 
1595         my $wcy = WCY::update($d, @_[2..12]);
1596
1597         my $rep;
1598         eval {
1599                 $rep = Local::wcy($self, @_[1..12]);
1600         };
1601         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1602         return if $rep;
1603
1604         # broadcast to the eager world
1605         send_wcy_spot($self, $line, $d, @_[2..12]);
1606 }
1607
1608 # remote commands (incoming)
1609 sub handle_84
1610 {
1611         my $self = shift;
1612         my $pcno = shift;
1613         my $line = shift;
1614         my $origin = shift;
1615         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1616 }
1617
1618 # remote command replies
1619 sub handle_85
1620 {
1621         my $self = shift;
1622         my $pcno = shift;
1623         my $line = shift;
1624         my $origin = shift;
1625         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1626 }
1627
1628 # if get here then rebroadcast the thing with its Hop count decremented (if
1629 # there is one). If it has a hop count and it decrements to zero then don't
1630 # rebroadcast it.
1631 #
1632 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1633 #        REBROADCAST!!!!
1634 #
1635
1636 sub handle_default
1637 {
1638         my $self = shift;
1639         my $pcno = shift;
1640         my $line = shift;
1641         my $origin = shift;
1642
1643         if (eph_dup($line)) {
1644                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1645         } else {
1646                 unless ($self->{isolate}) {
1647                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1648                 }
1649         }
1650 }
1651
1652 #
1653 # This is called from inside the main cluster processing loop and is used
1654 # for despatching commands that are doing some long processing job
1655 #
1656 sub process
1657 {
1658         my $t = time;
1659         my @dxchan = DXChannel->get_all();
1660         my $dxchan;
1661         my $pc50s;
1662         
1663         # send out a pc50 on EVERY channel all at once
1664         if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1665                 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1666                 eph_dup($pc50s);
1667                 $last_pc50 = $t;
1668         }
1669
1670         foreach $dxchan (@dxchan) {
1671                 next unless $dxchan->is_node();
1672                 next if $dxchan == $main::me;
1673
1674                 # send the pc50
1675                 $dxchan->send($pc50s) if $pc50s;
1676                 
1677                 # send a ping out on this channel
1678                 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1679                         if ($dxchan->{nopings} <= 0) {
1680                                 $dxchan->disconnect;
1681                         } else {
1682                                 addping($main::mycall, $dxchan->call);
1683                                 $dxchan->{nopings} -= 1;
1684                                 $dxchan->{lastping} = $t;
1685                         }
1686                 }
1687         }
1688
1689         # every ten seconds
1690         if ($t - $last10 >= 10) {       
1691                 # clean out ephemera 
1692
1693                 eph_clean();
1694
1695                 $last10 = $t;
1696         }
1697         
1698         if ($main::systime - 3600 > $last_hour) {
1699                 $last_hour = $main::systime;
1700         }
1701 }
1702
1703 #
1704 # finish up a pc context
1705 #
1706
1707 #
1708 # some active measures
1709 #
1710
1711
1712 sub send_dx_spot
1713 {
1714         my $self = shift;
1715         my $line = shift;
1716         my @dxchan = DXChannel->get_all();
1717         my $dxchan;
1718         
1719         # send it if it isn't the except list and isn't isolated and still has a hop count
1720         # taking into account filtering and so on
1721         foreach $dxchan (@dxchan) {
1722                 next if $dxchan == $main::me;
1723                 next if $dxchan == $self && $self->is_node;
1724                 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1725         }
1726 }
1727
1728 sub dx_spot
1729 {
1730         my $self = shift;
1731         my $line = shift;
1732         my $isolate = shift;
1733         my ($filter, $hops);
1734
1735         if ($self->{spotsfilter}) {
1736                 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1737                 return unless $filter;
1738         }
1739         send_prot_line($self, $filter, $hops, $isolate, $line);
1740 }
1741
1742 sub send_prot_line
1743 {
1744         my ($self, $filter, $hops, $isolate, $line) = @_;
1745         my $routeit;
1746
1747
1748         if ($hops) {
1749                 $routeit = $line;
1750                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1751         } else {
1752                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
1753                 return unless $routeit;
1754         }
1755         if ($filter) {
1756                 $self->send($routeit);
1757         } else {
1758                 $self->send($routeit) unless $self->{isolate} || $isolate;
1759         }
1760 }
1761
1762
1763 sub send_wwv_spot
1764 {
1765         my $self = shift;
1766         my $line = shift;
1767         my @dxchan = DXChannel->get_all();
1768         my $dxchan;
1769         my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1770         my @dxcc = Prefix::extract($_[6]);
1771         if (@dxcc > 0) {
1772                 $wwv_dxcc = $dxcc[1]->dxcc;
1773                 $wwv_itu = $dxcc[1]->itu;
1774                 $wwv_cq = $dxcc[1]->cq;                                         
1775         }
1776         @dxcc = Prefix::extract($_[7]);
1777         if (@dxcc > 0) {
1778                 $org_dxcc = $dxcc[1]->dxcc;
1779                 $org_itu = $dxcc[1]->itu;
1780                 $org_cq = $dxcc[1]->cq;                                         
1781         }
1782         
1783         # send it if it isn't the except list and isn't isolated and still has a hop count
1784         # taking into account filtering and so on
1785         foreach $dxchan (@dxchan) {
1786                 next if $dxchan == $main::me;
1787                 next if $dxchan == $self && $self->is_node;
1788                 my $routeit;
1789                 my ($filter, $hops);
1790
1791                 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1792         }
1793 }
1794
1795 sub wwv
1796 {
1797         my $self = shift;
1798         my $line = shift;
1799         my $isolate = shift;
1800         my ($filter, $hops);
1801         
1802         if ($self->{wwvfilter}) {
1803                 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1804                 return unless $filter;
1805         }
1806         send_prot_line($self, $filter, $hops, $isolate, $line)
1807 }
1808
1809 sub send_wcy_spot
1810 {
1811         my $self = shift;
1812         my $line = shift;
1813         my @dxchan = DXChannel->get_all();
1814         my $dxchan;
1815         my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1816         my @dxcc = Prefix::extract($_[10]);
1817         if (@dxcc > 0) {
1818                 $wcy_dxcc = $dxcc[1]->dxcc;
1819                 $wcy_itu = $dxcc[1]->itu;
1820                 $wcy_cq = $dxcc[1]->cq;                                         
1821         }
1822         @dxcc = Prefix::extract($_[11]);
1823         if (@dxcc > 0) {
1824                 $org_dxcc = $dxcc[1]->dxcc;
1825                 $org_itu = $dxcc[1]->itu;
1826                 $org_cq = $dxcc[1]->cq;                                         
1827         }
1828         
1829         # send it if it isn't the except list and isn't isolated and still has a hop count
1830         # taking into account filtering and so on
1831         foreach $dxchan (@dxchan) {
1832                 next if $dxchan == $main::me;
1833                 next if $dxchan == $self;
1834
1835                 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1836         }
1837 }
1838
1839 sub wcy
1840 {
1841         my $self = shift;
1842         my $line = shift;
1843         my $isolate = shift;
1844         my ($filter, $hops);
1845
1846         if ($self->{wcyfilter}) {
1847                 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1848                 return unless $filter;
1849         }
1850         send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1851 }
1852
1853 # send an announce
1854 sub send_announce
1855 {
1856         my $self = shift;
1857         my $line = shift;
1858         my @dxchan = DXChannel->get_all();
1859         my $dxchan;
1860         my $target;
1861         my $to = 'To ';
1862         my $text = unpad($_[2]);
1863                                 
1864         if ($_[3] eq '*') {     # sysops
1865                 $target = "SYSOP";
1866         } elsif ($_[3] gt ' ') { # speciality list handling
1867                 my ($name) = split /\./, $_[3]; 
1868                 $target = "$name"; # put the rest in later (if bothered) 
1869         } 
1870         
1871         if ($_[5] eq '1') {
1872                 $target = "WX"; 
1873                 $to = '';
1874         }
1875         $target = "ALL" if !$target;
1876
1877
1878         # obtain country codes etc 
1879         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1880         my ($ann_state, $org_state) = ("", "");
1881         my @dxcc = Prefix::extract($_[0]);
1882         if (@dxcc > 0) {
1883                 $ann_dxcc = $dxcc[1]->dxcc;
1884                 $ann_itu = $dxcc[1]->itu;
1885                 $ann_cq = $dxcc[1]->cq;                                         
1886                 $ann_state = $dxcc[1]->state;
1887         }
1888         @dxcc = Prefix::extract($_[4]);
1889         if (@dxcc > 0) {
1890                 $org_dxcc = $dxcc[1]->dxcc;
1891                 $org_itu = $dxcc[1]->itu;
1892                 $org_cq = $dxcc[1]->cq;                                         
1893                 $org_state = $dxcc[1]->state;
1894         }
1895
1896         if ($self->{inannfilter}) {
1897                 my ($filter, $hops) = 
1898                         $self->{inannfilter}->it(@_, $self->{call}, 
1899                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1900                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1901                 unless ($filter) {
1902                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1903                         return;
1904                 }
1905         }
1906
1907         if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1908                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1909                 return;
1910         }
1911
1912         Log('ann', $target, $_[0], $text);
1913
1914         # send it if it isn't the except list and isn't isolated and still has a hop count
1915         # taking into account filtering and so on
1916         foreach $dxchan (@dxchan) {
1917                 next if $dxchan == $main::me;
1918                 next if $dxchan == $self && $self->is_node;
1919                 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1920         }
1921 }
1922
1923 my $msgid = 0;
1924
1925 sub nextchatmsgid
1926 {
1927         $msgid++;
1928         $msgid = 1 if $msgid > 999;
1929         return $msgid;
1930 }
1931
1932 # send a chat line
1933 sub send_chat
1934 {
1935         my $self = shift;
1936         my $line = shift;
1937         my @dxchan = DXChannel->get_all();
1938         my $dxchan;
1939         my $target = $_[3];
1940         my $text = unpad($_[2]);
1941         my $ak1a_line;
1942                                 
1943         # munge the group and recast the line if required
1944         if ($target =~ s/\.LST$//) {
1945                 $ak1a_line = $line;
1946         }
1947         
1948         # obtain country codes etc 
1949         my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1950         my ($ann_state, $org_state) = ("", "");
1951         my @dxcc = Prefix::extract($_[0]);
1952         if (@dxcc > 0) {
1953                 $ann_dxcc = $dxcc[1]->dxcc;
1954                 $ann_itu = $dxcc[1]->itu;
1955                 $ann_cq = $dxcc[1]->cq;                                         
1956                 $ann_state = $dxcc[1]->state;
1957         }
1958         @dxcc = Prefix::extract($_[4]);
1959         if (@dxcc > 0) {
1960                 $org_dxcc = $dxcc[1]->dxcc;
1961                 $org_itu = $dxcc[1]->itu;
1962                 $org_cq = $dxcc[1]->cq;                                         
1963                 $org_state = $dxcc[1]->state;
1964         }
1965
1966         if ($self->{inannfilter}) {
1967                 my ($filter, $hops) = 
1968                         $self->{inannfilter}->it(@_, $self->{call}, 
1969                                                                          $ann_dxcc, $ann_itu, $ann_cq,
1970                                                                          $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1971                 unless ($filter) {
1972                         dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1973                         return;
1974                 }
1975         }
1976
1977         if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1978                 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1979                 return;
1980         }
1981
1982
1983         Log('chat', $target, $_[0], $text);
1984
1985         # send it if it isn't the except list and isn't isolated and still has a hop count
1986         # taking into account filtering and so on
1987         foreach $dxchan (@dxchan) {
1988                 my $is_ak1a = $dxchan->is_ak1a;
1989                 
1990                 if ($dxchan->is_node) {
1991                         next if $dxchan == $main::me;
1992                         next if $dxchan == $self;
1993                         next unless $dxchan->is_spider || $is_ak1a;
1994                         next if $target eq 'LOCAL';
1995                         if (!$ak1a_line && $is_ak1a) {
1996                                 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
1997                         }
1998                 }
1999                 
2000                 $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);
2001         }
2002 }
2003
2004 sub announce
2005 {
2006         my $self = shift;
2007         my $line = shift;
2008         my $isolate = shift;
2009         my $to = shift;
2010         my $target = shift;
2011         my $text = shift;
2012         my ($filter, $hops);
2013
2014         if ($self->{annfilter}) {
2015                 ($filter, $hops) = $self->{annfilter}->it(@_);
2016                 return unless $filter;
2017         }
2018         send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
2019 }
2020
2021 sub chat
2022 {
2023         goto &announce;
2024 }
2025
2026
2027 sub send_local_config
2028 {
2029         my $self = shift;
2030         my $node;
2031         my @nodes;
2032         my @localnodes;
2033         my @remotenodes;
2034
2035         dbg('DXProt::send_local_config') if isdbg('trace');
2036         
2037         # send our nodes
2038         if ($self->{isolate}) {
2039                 @localnodes = ( $main::routeroot );
2040                 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot, $main::routeroot);
2041         } else {
2042                 # create a list of all the nodes that are not connected to this connection
2043                 # and are not themselves isolated, this to make sure that isolated nodes
2044         # don't appear outside of this node
2045
2046                 # send locally connected nodes
2047                 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
2048                 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
2049                 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
2050
2051                 my $node;
2052                 if ($self->user->wantpc90) {
2053                         for $node (@localnodes) {
2054                                 my @nodes = map {my $r = Route::Node::get($_); $r ? $r : ()} $node->nodes;
2055                                 $self->send_route($node->call, \&pc19, scalar(@nodes)+1, @nodes);
2056                                 for my $r (@nodes) {
2057                                         push @remotenodes, $r unless grep $r eq $_, @remotenodes;
2058                                 }
2059                         }
2060                 } else {
2061                         my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
2062                         my @intcalls;
2063                         for $node (@rawintcalls) {
2064                                 push @intcalls, $node unless grep $node eq $_, @intcalls; 
2065                         }
2066                         my $ref = Route::Node::get($self->{call});
2067                         my @rnodes = $ref->nodes;
2068                         for $node (@intcalls) {
2069                                 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
2070                         }
2071                         $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
2072                 }
2073         }
2074         
2075
2076         
2077         # get all the users connected on the above nodes and send them out
2078         foreach $node ($main::routeroot, @localnodes, @remotenodes) {
2079                 if ($node) {
2080                         my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
2081                         $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
2082                 } else {
2083                         dbg("sent a null value") if isdbg('chanerr');
2084                 }
2085         }
2086 }
2087
2088 #
2089 # route a message down an appropriate interface for a callsign
2090 #
2091 # is called route(to, pcline);
2092 #
2093 sub route
2094 {
2095         my ($self, $call, $line) = @_;
2096
2097         if (ref $self && $call eq $self->{call}) {
2098                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2099                 return;
2100         }
2101
2102         # always send it down the local interface if available
2103         my $dxchan = DXChannel->get($call);
2104         unless ($dxchan) {
2105                 my $cl = Route::get($call);
2106                 $dxchan = $cl->dxchan if $cl;
2107                 if (ref $dxchan) {
2108                         if (ref $self && $dxchan eq $self) {
2109                                 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2110                                 return;
2111                         }
2112                 }
2113         }
2114         if ($dxchan) {
2115                 my $routeit = adjust_hops($dxchan, $line);   # adjust its hop count by node name
2116                 if ($routeit) {
2117                         $dxchan->send($routeit) unless $dxchan == $main::me;
2118                 }
2119         } else {
2120                 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2121         }
2122 }
2123
2124 #
2125 # obtain the hops from the list for this callsign and pc no 
2126 #
2127
2128 sub get_hops
2129 {
2130         my $pcno = shift;
2131         my $hops = $DXProt::hopcount{$pcno};
2132         $hops = $DXProt::def_hopcount if !$hops;
2133         return "H$hops";       
2134 }
2135
2136
2137 # adjust the hop count on a per node basis using the user loadable 
2138 # hop table if available or else decrement an existing one
2139 #
2140
2141 sub adjust_hops
2142 {
2143         my $self = shift;
2144         my $s = shift;
2145         my $call = $self->{call};
2146         my $hops;
2147         
2148         if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2149                 my ($pcno) = $s =~ /^PC(\d\d)/o;
2150                 confess "$call called adjust_hops with '$s'" unless $pcno;
2151                 my $ref = $nodehops{$call} if %nodehops;
2152                 if ($ref) {
2153                         my $newhops = $ref->{$pcno};
2154                         return "" if defined $newhops && $newhops == 0;
2155                         $newhops = $ref->{default} unless $newhops;
2156                         return "" if defined $newhops && $newhops == 0;
2157                         $newhops = $hops if !$newhops;
2158                         $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2159                 } else {
2160                         # simply decrement it
2161                         $hops--;
2162                         return "" if !$hops;
2163                         $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2164                 }
2165         }
2166         return $s;
2167 }
2168
2169
2170 # load hop tables
2171 #
2172 sub load_hops
2173 {
2174         my $self = shift;
2175         return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2176         do "$main::data/hop_table.pl";
2177         return $@ if $@;
2178         return ();
2179 }
2180
2181
2182 # add a ping request to the ping queues
2183 sub addping
2184 {
2185         my ($from, $to) = @_;
2186         my $ref = $pings{$to} || [];
2187         my $r = {};
2188         $r->{call} = $from;
2189         $r->{t} = [ gettimeofday ];
2190         route(undef, $to, pc51($to, $main::mycall, 1));
2191         push @$ref, $r;
2192         $pings{$to} = $ref;
2193 }
2194
2195 sub process_rcmd
2196 {
2197         my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2198         if ($tonode eq $main::mycall) {
2199                 my $ref = DXUser->get_current($fromnode);
2200                 my $cref = Route::Node::get($fromnode);
2201                 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2202                 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2203                         if ($ref->{priv}) {             # you have to have SOME privilege, the commands have further filtering
2204                                 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2205                                 my $oldpriv = $self->{priv};
2206                                 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2207                                 my @in = (DXCommandmode::run_cmd($self, $cmd));
2208                                 $self->{priv} = $oldpriv;
2209                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2210                                 delete $self->{remotecmd};
2211                         } else {
2212                                 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2213                         }
2214                 } else {
2215                         $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2216                 }
2217         } else {
2218                 my $ref = DXUser->get_current($tonode);
2219                 if ($ref && $ref->is_clx) {
2220                         $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2221                 } else {
2222                         $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2223                 }
2224         }
2225 }
2226
2227 sub process_rcmd_reply
2228 {
2229         my ($self, $tonode, $fromnode, $user, $line) = @_;
2230         if ($tonode eq $main::mycall) {
2231                 my $s = $rcmds{$fromnode};
2232                 if ($s) {
2233                         my $dxchan = DXChannel->get($s->{call});
2234                         my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
2235                         $ref->send($line) if $ref;
2236                         delete $rcmds{$fromnode} if !$dxchan;
2237                 } else {
2238                         # send unsolicited ones to the sysop
2239                         my $dxchan = DXChannel->get($main::myalias);
2240                         $dxchan->send($line) if $dxchan;
2241                 }
2242         } else {
2243                 my $ref = DXUser->get_current($tonode);
2244                 if ($ref && $ref->is_clx) {
2245                         $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2246                 } else {
2247                         $self->route($tonode, pc35($fromnode, $tonode, $line));
2248                 }
2249         }
2250 }
2251
2252 sub send_rcmd_reply
2253 {
2254         my $self = shift;
2255         my $tonode = shift;
2256         my $fromnode = shift;
2257         my $user = shift;
2258         while (@_) {
2259                 my $line = shift;
2260                 $line =~ s/\s*$//;
2261                 Log('rcmd', 'out', $fromnode, $line);
2262                 if ($self->is_clx) {
2263                         $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2264                 } else {
2265                         $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2266                 }
2267         }
2268 }
2269
2270 # add a rcmd request to the rcmd queues
2271 sub addrcmd
2272 {
2273         my ($self, $to, $cmd) = @_;
2274
2275         my $r = {};
2276         $r->{call} = $self->{call};
2277         $r->{t} = $main::systime;
2278         $r->{cmd} = $cmd;
2279         $rcmds{$to} = $r;
2280         
2281         my $ref = Route::Node::get($to);
2282         my $dxchan = $ref->dxchan;
2283         if ($dxchan && $dxchan->is_clx) {
2284                 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2285         } else {
2286                 route(undef, $to, pc34($main::mycall, $to, $cmd));
2287         }
2288 }
2289
2290 sub disconnect
2291 {
2292         my $self = shift;
2293         my $pc39flag = shift;
2294         my $call = $self->call;
2295
2296         return if $self->{disconnecting}++;
2297         
2298         unless ($pc39flag && $pc39flag == 1) {
2299                 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2300         }
2301
2302         # get rid of any PC16/17/19
2303         eph_del_regex("^PC1[679]*$call");
2304
2305         # do routing stuff, remove me from routing table
2306         my $node = Route::Node::get($call);
2307         my @rout;
2308         if ($node) {
2309                 @rout = $node->del($main::routeroot);
2310                 
2311                 # and all my ephemera as well
2312                 for (@rout) {
2313                         my $c = $_->call;
2314                         eph_del_regex("^PC1[679].*$c");
2315                 }
2316         }
2317         
2318         # remove them from the pc19list as well
2319         while (my ($k,$v) = each %pc19list) {
2320                 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2321                 if (@l) {
2322                         $pc19list{$k} = \@l;
2323                 } else {
2324                         delete $pc19list{$k};
2325                 }
2326                 
2327                 # and the ephemera
2328                 eph_del_regex("^PC1[679].*$k");
2329         }
2330
2331         # unbusy and stop and outgoing mail
2332         my $mref = DXMsg::get_busy($call);
2333         $mref->stop_msg($call) if $mref;
2334         
2335         # broadcast to all other nodes that all the nodes connected to via me are gone
2336         unless ($pc39flag && $pc39flag == 2) {
2337                 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2338         }
2339
2340         # remove outstanding pings
2341         delete $pings{$call};
2342         
2343         # I was the last node visited
2344     $self->user->node($main::mycall);
2345
2346         # send info to all logged in thingies
2347         $self->tell_login('logoutn');
2348
2349         Log('DXProt', $call . " Disconnected");
2350
2351         $self->SUPER::disconnect;
2352 }
2353
2354
2355
2356 # send a talk message to this thingy
2357 #
2358 sub talk
2359 {
2360         my ($self, $from, $to, $via, $line, $origin) = @_;
2361         
2362         $line =~ s/\^/\\5E/g;                   # remove any ^ characters
2363         $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2364         Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2365 }
2366
2367 # send it if it isn't the except list and isn't isolated and still has a hop count
2368 # taking into account filtering and so on
2369
2370 sub send_route
2371 {
2372         my $self = shift;
2373         my $origin = shift;
2374         my $generate = shift;
2375         my $no = shift;     # the no of things to filter on 
2376         my $routeit;
2377         my ($filter, $hops);
2378         my @rin;
2379         
2380         for (; @_ && $no; $no--) {
2381                 my $r = shift;
2382                 
2383                 if (!$self->{isolate} && $self->{routefilter}) {
2384                         $filter = undef;
2385                         if ($r) {
2386                                 ($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});
2387                                 if ($filter) {
2388                                         push @rin, $r;
2389                                 } else {
2390                                         dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2391                                 }
2392                         } else {
2393                                 dbg("was sent a null value") if isdbg('chanerr');
2394                         }
2395                 } else {
2396                         push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2397                 }
2398         }
2399         if (@rin) {
2400                 foreach my $line (&$generate(@rin, @_)) {
2401                         if ($hops) {
2402                                 $routeit = $line;
2403                                 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2404                         } else {
2405                                 $routeit = adjust_hops($self, $line);  # adjust its hop count by node name
2406                                 next unless $routeit;
2407                         }
2408                         
2409                         $routeit = mungepc91($origin, $routeit) if $self->user->wantpc90;
2410                         $self->send($routeit);
2411                 }
2412         }
2413 }
2414
2415 sub broadcast_route
2416 {
2417         my $self = shift;
2418         my $origin = shift;
2419         my $generate = shift;
2420         my $line = shift;
2421         my @dxchan = DXChannel::get_all_nodes();
2422         my $dxchan;
2423         
2424         unless ($self->{isolate}) {
2425                 foreach $dxchan (@dxchan) {
2426                         next if $dxchan == $self;
2427                         next if $dxchan == $main::me;
2428                         next unless $dxchan->isa('DXProt');
2429                         next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2430  
2431                         if ($self->user->wantpc90 && $line) {
2432                                 $dxchan->send(mungepc91($origin, $line));
2433                         } else {
2434                                 $dxchan->send_route($origin, $generate, @_);
2435                         }
2436                 }
2437         }
2438 }
2439
2440 sub route_pc16
2441 {
2442         my $self = shift;
2443         return unless $self->user->wantpc16;
2444         my $origin = shift;
2445         my $line = shift;
2446         broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2447 }
2448
2449 sub route_pc17
2450 {
2451         my $self = shift;
2452         return unless $self->user->wantpc16;
2453         my $origin = shift;
2454         my $line = shift;
2455         broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2456 }
2457
2458 sub route_pc19
2459 {
2460         my $self = shift;
2461         my $origin = shift;
2462         my $line = shift;
2463         broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2464 }
2465
2466 sub route_pc21
2467 {
2468         my $self = shift;
2469         my $origin = shift;
2470         my $line = shift;
2471         broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2472 }
2473
2474 sub route_pc24
2475 {
2476         my $self = shift;
2477         my $origin = shift;
2478         my $line = shift;
2479         broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2480 }
2481
2482 sub route_pc41
2483 {
2484         my $self = shift;
2485         my $origin = shift;
2486         my $line = shift;
2487         broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2488 }
2489
2490 sub route_pc50
2491 {
2492         my $self = shift;
2493         my $origin = shift;
2494         my $line = shift;
2495         broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2496 }
2497
2498 sub in_filter_route
2499 {
2500         my $self = shift;
2501         my $r = shift;
2502         my ($filter, $hops) = (1, 1);
2503         
2504         if ($self->{inroutefilter}) {
2505                 ($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);
2506                 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2507         }
2508         return $filter;
2509 }
2510
2511 sub eph_dup
2512 {
2513         my $s = shift;
2514         my $t = shift || $eph_restime;
2515         my $r;
2516
2517         # chop the end off
2518         $s =~ s/\^H\d\d?\^?\~?$//;
2519         removepc90($s);
2520         $r = 1 if exists $eph{$s};    # pump up the dup if it keeps circulating
2521         $eph{$s} = $main::systime + $t;
2522         return $r;
2523 }
2524
2525 sub eph_del_regex
2526 {
2527         my $regex = shift;
2528         my ($key, $val);
2529         while (($key, $val) = each %eph) {
2530                 if ($key =~ m{$regex}) {
2531                         delete $eph{$key};
2532                 }
2533         }
2534 }
2535
2536 sub eph_clean
2537 {
2538         my ($key, $val);
2539         
2540         while (($key, $val) = each %eph) {
2541                 if ($main::systime >= $val) {
2542                         delete $eph{$key};
2543                 }
2544         }
2545 }
2546
2547 sub eph_list
2548 {
2549         my ($key, $val);
2550         my @out;
2551
2552         while (($key, $val) = each %eph) {
2553                 push @out, $key, $val;
2554         }
2555         return @out;
2556 }
2557
2558 sub run_cmd
2559 {
2560         goto &DXCommandmode::run_cmd;
2561 }
2562 1;
2563 __END__