regularise set/deb pc11 debugging
[spider.git] / perl / DXProtHandle.pm
1 #
2 #
3 # This module impliments the handlers for the protocal mode for a dx cluster
4 #
5 # Copyright (c) 1998-2007 Dirk Koopman G1TLH
6 #
7 #
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 BadWords;
31 use DXHash;
32 use Route;
33 use Route::Node;
34 use Script;
35 use DXCIDR;
36
37 use strict;
38 use warnings qw(all);
39 no warnings qw(uninitialized);
40
41
42
43 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
44                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
45                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
46                         $investigation_int $pc19_version $myprot_version
47                         %nodehops $baddx $badspotter $badnode $censorpc
48                         $allowzero $decode_dk0wcy $send_opernam @checklist
49                         $eph_pc15_restime $pc9x_past_age $pc9x_dupe_age
50                         $pc10_dupe_age $pc92_slug_changes $last_pc92_slug
51                         $pc92Ain $pc92Cin $pc92Din $pc92Kin $pc9x_time_tolerance
52                         $pc92filterdef $senderverify $pc11_dwell_time
53                    );
54
55 $pc9x_dupe_age = 60;                    # catch loops of circular (usually) D records
56 $pc10_dupe_age = 45;                    # just something to catch duplicate PC10->PC93 conversions
57 $pc92_slug_changes = 60*1;              # slug any changes going outward for this long
58 $last_pc92_slug = 0;                    # the last time we sent out any delayed add or del PC92s
59 $pc9x_time_tolerance = 15*60;   # the time on a pc9x is allowed to be out by this amount
60 $pc9x_past_age = (122*60)+              # maximum age in the past of a px9x (a config record might be the only
61 $pc9x_time_tolerance;           # thing a node might send - once an hour and we allow an extra hour for luck)
62                                 # this is actually the partition between "yesterday" and "today" but old.
63 $senderverify = 0;                              # 1 - check for forged PC11 or PC61.
64                                 # 2 - if forged, dump them.
65 $pc11_dwell_time = 1;                   # number of seconds to wait for a PC61 to come to substitute the PC11
66
67
68 $pc92filterdef = bless ([
69                           # tag, sort, field, priv, special parser
70                           ['call', 'c', 0],
71                           ['by', 'c', 0],
72                           ['dxcc', 'nc', 1],
73                           ['itu', 'ni', 2],
74                           ['zone', 'nz', 3],
75                          ], 'Filter::Cmd');
76
77 our %pc11q;
78 # this is a place to park an incoming PC11 in the sure and certain hope that
79 # a PC61 will be along soon. This has the side benefit that it will delay a
80 # a PC11 for one second - assuming that it is not removed by a PC61 version
81
82 # incoming talk commands
83 sub handle_10
84 {
85         my $self = shift;
86         my $pcno = shift;
87         my $line = shift;
88         my $origin = shift;
89         my $pc = shift;
90
91         # this is to catch loops caused by bad software ...
92         if (eph_dup($line, $pc10_dupe_age)) {
93                 return;
94         }
95
96
97         # is it for me or one of mine?
98         my ($from, $to, $via, $call, $dxchan);
99         $from = $pc->[1];
100         if ($pc->[5] gt ' ') {
101                 $via = $pc->[2];
102                 $to = $pc->[5];
103         } else {
104                 $to = $pc->[2];
105         }
106
107         # if this is a 'nodx' node then ignore it
108         if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
109                 dbg($line) if isdbg('nologchan');
110                 dbg("PCPROT: Bad Node, dropped");
111                 return;
112         }
113
114
115         my $nossid = $from;
116         $nossid =~ s/-\d+$//;
117         if ($badspotter->in($nossid)) {
118                 dbg($line) if isdbg('nologchan');
119                 dbg("PCPROT: Bad Spotter, dropped");
120                 return;
121         }
122
123         # if we are converting announces to talk is it a dup?
124         if ($ann_to_talk) {
125                 if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
126                         dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
127                         return;
128                 }
129         }
130         
131         # will we allow it at all?
132         if ($censorpc) {
133                 my @bad;
134                 if (@bad = BadWords::check($pc->[3])) {
135                         my $bw = join ', ', @bad; 
136                         dbg($line) if isdbg('nologchan');
137                         dbg("PCPROT: Badwords: '$bw', dropped");
138                         return;
139                 }
140         }
141
142         # convert this to a PC93, coming from mycall with origin set and process it as such
143         $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]));
144 }
145
146 my $last;
147 my $pc11_saved;
148 my $pc11_saved_time;
149 my $pc11_rx;
150 my $rpc11_to_61;
151 my $pc11_to_61;
152 my $pc61_rx;
153
154 # DX Spot handling
155 sub handle_11
156 {
157         my $self = shift;
158         my $pcno = shift;
159         my $line = shift;
160         my $origin = shift;
161         my $pc = shift;
162         my $recurse = shift || 0;
163
164         # route 'foreign' pc26s
165         if ($pcno == 26) {
166                 if ($pc->[7] ne $main::mycall) {
167                         $self->route($pc->[7], $line);
168                         return;
169                 }
170         }
171
172         my $type = 
173
174         dbg("INPUT $self->{call} -> $line origin $origin recurse: $recurse") if isdbg("pc11") || isdbg("pc61"); 
175
176 #       my ($hops) = $pc->[8] =~ /^H(\d+)/;
177
178         # is the spotted callsign blank? This should really be trapped earlier but it
179         # could break other protocol sentences. Also check for lower case characters.
180         if ($pc->[2] =~ /^\s*$/) {
181                 dbg($line) if isdbg('nologchan');
182                 dbg("PCPROT: blank callsign, dropped");
183                 return;
184         }
185         if ($pc->[2] =~ /[a-z]/) {
186                 dbg($line) if isdbg('nologchan');
187                 dbg("PCPROT: lowercase characters, dropped");
188                 return;
189         }
190
191
192         # if this is a 'nodx' node then ignore it
193         if ($badnode->in($pc->[7])) {
194                 dbg($line) if isdbg('nologchan');
195                 dbg("PCPROT: Bad Node $pc->[7], dropped");
196                 return;
197         }
198
199         # convert the date to a unix date
200         my $d = cltounix($pc->[3], $pc->[4]);
201         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
202         if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
203                 dbg($line) if isdbg('nologchan');
204                 dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n");
205                 return;
206         }
207
208         # is it 'baddx'
209         if ($baddx->in($pc->[2])) {
210                 dbg("PCPROT: Bad DX spot '$pc->[2]', ignored");
211                 dbg($line) if isdbg('nologchan');
212                 return;
213         }
214
215         # is it claiming to be BUST(ed)
216         $pc->[5] =~ s/^\s+//;                   # take any leading blanks off
217         $pc->[2] = unpad($pc->[2]);             # take off leading and trailing blanks from spotted callsign
218         if ($pc->[2] =~ /BUST\w*$/) {
219                 dbg($line) if isdbg('nologchan');
220                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
221                 return;
222         }
223         
224         my $nossid = $pc->[6];
225     $nossid =~ s/-\d+$//;
226
227         my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
228
229         #   $f0 = frequency
230         #   $f1 = call
231         #   $f2 = date in unix format
232         #   $f3 = comment
233         #   $f4 = spotter
234         #   $f5 = spotted dxcc country
235         #   $f6 = spotter dxcc country
236         #   $f7 = origin
237         #   $f8 = spotted itu
238         #   $f9 = spotted cq zone
239         #   $f10 = spotter itu
240         #   $f11 = spotter cq zone
241         #   $f12 = spotted us state
242         #   $f13 = spotter us state
243         #   $f14 = ip address
244
245
246         # is this is a 'bad spotter' or an unknown user then ignore it. 
247         if ($badspotter->in($nossid)) {
248                 dbg($line) if isdbg('nologchan');
249                 dbg("PCPROT: Bad Spotter $pc->[6], dropped");
250                 return;
251         }
252
253         # global spot filtering on INPUT
254         if ($self->{inspotsfilter}) {
255                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
256                 unless ($filter) {
257                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
258                         return;
259                 }
260         }
261
262
263         # this is where we decide to delay PC11s in the hope that a PC61 will be along soon.
264         
265         my $key = join '|', @spot[0..2,4,7]; # not including text
266
267         unless ($recurse) {
268                 if ($pcno == 61) {
269                         if (Spot::dup_find(@spot[0..4,7])) {
270                                 dbg("DUPE $pc->[0] $self->{call} -> key: $key recurse: $recurse dumped") if isdbg('pc11');
271                                 return;
272                         } else {
273                                 ++$pc61_rx;
274                         }
275
276                         if ($pc11_saved) {
277                                 if ($key eq $pc11_saved->[0]) {
278                                         ++$pc11_to_61;
279                                         my $percent = $pc11_rx ? $pc11_to_61 * 100 / $pc11_rx : 0;
280                                         dbg(sprintf("PROMOTED BETTER $pc->[0] $key received, saved PC11 DUMPED pc61: $pc61_rx recurse: $recurse pc11: $pc11_rx -> pc61: $pc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11");
281                                         undef $pc11_saved;
282                                 }
283                         } 
284                 }
285                 if ($pcno == 11) {
286
287                         if (Spot::dup_find(@spot[0..4,7])) {
288                                 dbg("DUPE $pc->[0] $self->{call} -> key: $key recurse: $recurse dumped") if isdbg('pc11');
289                                 return;
290                         } else {
291                                 ++$pc11_rx;
292                         }
293
294                         if ($pc11_saved) {
295                                 if ($key eq $pc11_saved->[0] ) {
296                                         dbg("DUPE $pc->[0] $self->{call } key: $key same as saved recurse: $recurse, dumped") if isdbg("pc11");
297                                         return;         # because it's a dup
298                                 }
299                         }
300
301                         # can we promote this to a PC61?
302                         my $r = Route::User::get($spot[4]); # find spotter
303                         if ($r && $r->ip) {                     # do we have an ip addres
304                                 $pcno = 61;
305                                 $pc->[0] = 'PC61';
306                                 $pc->[7] = $spot[14] = $r->ip;
307                                 ++$rpc11_to_61;
308                                 my $percent = $pc11_rx ? $rpc11_to_61 * 100 / $pc11_rx : 0;
309                                 dbg(sprintf("PROMOTED ROUTE $self->{call} -> PC11 spot $key PROMOTED to PC61 IP $spot[14] recurse: $recurse pc61: $pc61_rx pc11: $pc11_rx -> pc61 $pc11_to_61 (%0.1f%%)", $percent)) if isdbg("pc11");
310                                 undef $pc11_saved;
311                         }
312
313                         # if it is STILL (despite all efforts to change it)  a PC11
314                         if ($pcno == 11) {
315                                 if ($pc11_saved && $key ne $pc11_saved->[0]) {
316                                         if (Spot::dup_find(@spot[0..4,7])) {
317                                                 dbg("DUPE saved PC11 $self->{call} -> key: $pc11_saved->[0] recurse: $recurse dumped") if isdbg('pc11');
318                                         } else {
319                                                 dbg("RECURSE $self->{call} -> NEW $pc->[0] spot $key ne $pc11_saved->[0] recurse: $recurse, SAVE + recursing") if isdbg("pc11");
320                                                 # shift @$pc11_saved;   # saved key
321                                                 my $self = $pc11_saved->[1];
322                                                 my @saved = @$pc11_saved[2..5];
323                                                 $self->handle_11(@saved, 1);
324                                         }
325                                 }
326                                 $pc11_saved = [$key, $self, $pcno, $line, $origin, $pc];
327                                 $pc11_saved_time = $main::systime;
328                                 dbg("SAVED $self->{call} -> NEW $pc->[0] spot $key for a better offer, recurse: $recurse") if isdbg("pc11");
329                                 return;
330                         }
331                         
332                 } else {
333                         my $count =  $pc11_to_61+$rpc11_to_61;
334                         my $percent = $pc11_rx ? $count*100 / $pc11_rx : 0;
335                         my $pc11_61 = $pc61_rx ? $pc11_rx*100 / $pc61_rx : 0; 
336                         dbg(sprintf("PASSED $self->{call} -> $pc->[0] spot $key, recurse: $recurse pc11: $pc11_rx pc61: $pc61_rx PC11/PC61 ratio: %0.1f%%  pc11->pc61 conversions: $count (%0.1f%%) ", $pc11_61, $percent)) if isdbg("pc11");
337                         $recurse = 0;
338                         undef $pc11_saved;
339                 }
340         } else {
341                 # recursed
342                 my $count =  $pc11_to_61+$rpc11_to_61;
343                 my $percent = $pc11_rx ? $count*100 / $pc11_rx : 0;
344                 my $pc11_61 = $pc61_rx ? $pc11_rx*100 / $pc61_rx : 0; 
345                 dbg(sprintf("PASSED $self->{call} -> $pc->[0] spot $key, recurse: $recurse pc11: $pc11_rx pc61: $pc61_rx PC11/PC61 ratio: %0.1f%%  pc11->pc61 conversions: $count (%0.1f%%) ", $pc11_61, $percent)) if isdbg("pc11");
346         }
347         
348         
349         # this goes after the input filtering, but before the add
350         # so that if it is input filtered, it isn't added to the dup
351         # list. This allows it to come in from a "legitimate" source
352         if (Spot::dup(@spot[0..4,7])) {
353                 dbg("PCPROT: Duplicate Spot  $self->{call} -> $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot') || isdbg('pc11');
354                 return;
355         }
356
357         dbg("PROCESSING $self->{call} -> $pc->[0] key: $key") if isdbg('pc11');
358         
359         # we check IP addresses for PC61 - this will also dedupe PC11 copies
360         if (@$pc > 8 && is_ipaddr($pc->[8])) {
361                 my $ip = $pc->[8];
362                 $ip =~ s/,/:/g;
363                 $ip =~ s/^::ffff://;
364                 if (DXCIDR::find($ip)) {
365                         dbg($line) if isdbg('nologchan');
366                         dbg("PCPROT: $ip in badip list, dropped");
367                         return;
368                 }
369         }
370
371         
372         # here we verify the spotter is currently connected to the node it says it is one. AKA email sender verify
373         # but without the explicit probe to the node. We are relying on "historical" information, but it very likely
374         # to be current once we have seen the first PC92C from that node.
375         #
376         # As for spots generated from non-PC92 nodes, we'll see after about  do_pc9x3h20m...
377         #
378         if ($senderverify) {
379                 my $nroute = Route::Node::get($pc->[7]);
380                 my $uroute = Route::Node::get($pc->[6]);
381                 my $local = DXChannel::get($pc->[7]);
382                 
383                 if ($nroute && ($nroute->last_PC92C || ($local && !$local->do_pc9x))) {
384                         my $s = '';
385                         my $ip = $pcno == 61 ?  $pc->[8] : '';
386 #                       $s .= "User $pc->[6] not logged in, " unless $uroute;
387                         $s .= "User $pc->[6] not on node $pc->[7], " unless $nroute->is_user($pc->[6]);
388 #                       $s .= "Node $pc->[7] at '$ip' not on Node's IP " . $nroute->ip if $ip && $nroute && $nroute->ip && $nroute->ip ne $ip;
389                         if ($s) {
390                                 my $action = $senderverify > 1 ? ", DUMPED" : '';
391                                 $s =~ s/, $//;
392                                 dbg("PCPROT: Suspicious Spot $pc->[2] on $pc->[1] by $pc->[6]($ip)\@$pc->[7] $s$action");
393                                 return unless $senderverify < 2;
394                         }
395                 }
396         }
397
398         # we until here to do any censorship to try and reduce the amount of noise that repeated copies
399         # from other connected nodes cause
400         if ($censorpc) {
401                 my @bad;
402                 if (@bad = BadWords::check($pc->[5])) {
403                         my $bw = join ', ', @bad;
404                         dbg($line) if isdbg('nologchan');
405                         dbg("PCPROT: Badwords: '$bw', dropped");
406                         return;
407                 }
408         }
409
410         
411         # add it
412         Spot::add(@spot);
413
414         my $ip = '';
415         $ip ||= $spot[14] if exists $spot[14];
416         if (isdbg('progress')) {
417                 my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
418                 $sip ||= '';
419                 my $d = ztime($spot[2]);
420                 my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
421                 $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
422                 $s .=  " route: $origin";
423                 dbg($s);
424         }
425         
426         #
427         # @spot at this point contains:-
428         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
429         # then  spotted itu, spotted cq, spotters itu, spotters cq
430         # you should be able to route on any of these
431         #
432
433         # fix up qra locators of known users
434         my $user = DXUser::get_current($spot[4]);
435         if ($user) {
436                 my $qra = $user->qra;
437                 unless ($qra && is_qra($qra)) {
438                         my $lat = $user->lat;
439                         my $long = $user->long;
440                         if (defined $lat && defined $long) {
441                                 $user->qra(DXBearing::lltoqra($lat, $long));
442                                 $user->put;
443                         }
444                 }
445
446                 # send a remote command to a distant cluster if it is visible and there is no
447                 # qra locator and we havn't done it for a month.
448
449                 unless ($user->qra) {
450                         my $node;
451                         my $to = $user->homenode;
452                         my $last = $user->lastoper || 0;
453                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
454                                 my $cmd = "forward/opernam $spot[4]";
455                                 # send the rcmd but we aren't interested in the replies...
456                                 my $dxchan = $node->dxchan;
457                                 if ($dxchan && $dxchan->is_clx) {
458                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
459                                 } else {
460                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
461                                 }
462                                 if ($to ne $origin) {
463                                         $to = $origin;
464                                         $node = Route::Node::get($to);
465                                         if ($node) {
466                                                 $dxchan = $node->dxchan;
467                                                 if ($dxchan && $dxchan->is_clx) {
468                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
469                                                 } else {
470                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
471                                                 }
472                                         }
473                                 }
474                                 $user->lastoper($main::systime);
475                                 $user->put;
476                         }
477                 }
478         }
479
480         # local processing
481         if (defined &Local::spot) {
482                 my $r;
483                 eval {
484                         $r = Local::spot($self, @spot);
485                 };
486                 return if $r;
487         }
488
489         # DON'T be silly and send on PC26s!
490         return if $pcno == 26;
491
492         # send out the filtered spots
493         send_dx_spot($self, $line, @spot) if @spot;
494
495         # cancel any recursion as we have now processed it
496         if ($recurse) {
497                 if ($pc11_saved && $key eq $pc11_saved->[0]) {
498                         dbg("END RECURSED $self->{call} $pc->[0] key: $key saved_key removed and finished") if isdbg('pc11');
499                         undef $pc11_saved;
500                 } else {
501                         dbg("END RECURSED $self->{call} $pc->[0] key: $key finished") if isdbg('pc11');
502                 }
503                 $recurse = 0;
504         } else {
505                 dbg("END NORMAL $self->{call} $pc->[0] key: $key finished") if isdbg('pc11');
506         }
507 }
508
509 # used to kick outstanding PC11 if required
510 sub pc11_process
511 {
512         if ($pc11_saved && $main::systime > $pc11_saved_time + $pc11_dwell_time) {
513                 dbg("SAVED PC11 spot $pc11_saved->[0] timed out waiting, recursing") if isdbg("pc11");
514                 shift @$pc11_saved;     # saved key
515                 my $self = shift @$pc11_saved;
516                 my @saved = @$pc11_saved;
517                 undef $pc11_saved;
518                 $self->handle_11(@saved, 1);
519         }
520 }
521
522 # announces
523 sub handle_12
524 {
525         my $self = shift;
526         my $pcno = shift;
527         my $line = shift;
528         my $origin = shift;
529         my $pc = shift;
530
531         # announce duplicate checking
532         $pc->[3] =~ s/^\s+//;                   # remove leading blanks
533
534         # if this is a 'nodx' node then ignore it
535         if ($badnode->in($pc->[5])) {
536                 dbg($line) if isdbg('nologchan');
537                 dbg("PCPROT: Bad Node, dropped");
538                 return;
539         }
540
541         # if this is a 'bad spotter' user then ignore it
542         my $nossid = $pc->[1];
543         $nossid =~ s/-\d+$//;
544         if ($badspotter->in($nossid)) {
545                 dbg($line) if isdbg('nologchan');
546                 dbg("PCPROT: Bad Spotter, dropped");
547                 return;
548         }
549
550         # ignore PC12s from origins that use PCxx protocol
551         my $oref = Route::get($origin);
552         if ($oref->do_pc9x) {
553                 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
554                 return;
555         }
556
557         if ($censorpc) {
558                 my @bad;
559                 if (@bad = BadWords::check($pc->[3])) {
560                         my $bw = join ', ', @bad;
561                         dbg($line) if isdbg('nologchan');
562                         dbg("PCPROT: Badwords: '$bw', dropped");
563                         return;
564                 }
565         }
566
567
568         my $dxchan;
569
570         if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
571                 $self->send_chat(0, $line, @$pc[1..6]);
572         } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
573
574                 # ignore something that looks like a chat line coming in with sysop
575                 # flag - this is a kludge...
576                 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
577                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
578                         return;
579                 }
580
581                 # here's a bit of fun, convert incoming ann with a callsign in the first word
582                 # or one saying 'to <call>' to a talk if we can route to the recipient
583                 if ($ann_to_talk) {
584                         my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
585                         if ($call) {
586                                 my $ref = Route::get($call);
587                                 if ($ref) {
588                                         $dxchan = $ref->dxchan;
589                                         $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
590                                         return;
591                                 }
592                         }
593                 }
594
595                 # send it
596                 $self->send_announce(0, $line, @$pc[1..6]);
597         } else {
598                 $self->route($pc->[2], $line);
599         }
600
601         # local processing
602         if (defined &Local::ann) {
603                 my $r;
604                 eval {
605                         $r = Local::ann($self, $line, @$pc[1..6]);
606                 };
607                 return if $r;
608         }
609 }
610
611 sub handle_15
612 {
613         my $self = shift;
614         my $pcno = shift;
615         my $line = shift;
616         my $origin = shift;
617         my $pc = shift;
618
619         if (eph_dup($line, $eph_pc15_restime)) {
620                 return;
621         } else {
622                 unless ($self->{isolate}) {
623                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
624                 }
625         }
626 }
627
628 # incoming user
629 sub handle_16
630 {
631         my $self = shift;
632         my $pcno = shift;
633         my $line = shift;
634         my $origin = shift;
635         my $pc = shift;
636
637         # general checks
638         my $dxchan;
639         my $ncall = $pc->[1];
640         my $newline = "PC16^";
641
642         # dos I want users from this channel?
643         unless ($self->user->wantpc16) {
644                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
645                 return;
646         }
647
648         # is it me?
649         if ($ncall eq $main::mycall) {
650                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
651                 return;
652         }
653
654         my $h;
655         $h = 1 if DXChannel::get($ncall);
656         if ($h && $self->{call} ne $ncall) {
657                 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
658                 return;
659         }
660
661         if (eph_dup($line)) {
662                 return;
663         }
664
665         # isolate now means only accept stuff from this call only
666         if ($self->{isolate} && $ncall ne $self->{call}) {
667                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
668                 return;
669         }
670
671         my $parent = Route::Node::get($ncall);
672
673         if ($parent) {
674                 $dxchan = $parent->dxchan;
675                 if ($dxchan && $dxchan ne $self) {
676                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
677                         return;
678                 }
679
680                 # input filter if required
681                 return unless $self->in_filter_route($parent);
682         } else {
683                 $parent = Route::Node->new($ncall);
684         }
685
686         unless ($h) {
687                 if ($parent->via_pc92) {
688                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
689                         return;
690                 }
691         }
692
693         my $i;
694         my @rout;
695         for ($i = 2; $i < $#$pc; $i++) {
696                 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
697                 next unless $call && $conf && defined $here && is_callsign($call);
698                 next if $call eq $main::mycall;
699
700                 eph_del_regex("^PC17\\^$call\\^$ncall");
701
702                 $conf = $conf eq '*';
703
704                 # reject this if we think it is a node already
705                 my $r = Route::Node::get($call);
706                 my $u = DXUser::get_current($call) unless $r;
707                 if ($r || ($u && $u->is_node)) {
708                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
709                         next;
710                 }
711
712                 $r = Route::User::get($call);
713                 my $flags = Route::here($here)|Route::conf($conf);
714
715                 if ($r) {
716                         my $au = $r->addparent($parent);
717                         if ($r->flags != $flags) {
718                                 $r->flags($flags);
719                                 $au = $r;
720                         }
721                         push @rout, $r if $h && $au;
722                 } else {
723                         my @ans = $parent->add_user($call, $flags);
724                         push @rout, @ans if $h && @ans;
725                 }
726
727                 # add this station to the user database, if required
728                 my $user = DXUser::get_current($ncall);
729                 $user = DXUser->new($call) unless $user;
730                 $user->homenode($parent->call) if !$user->homenode;
731                 $user->node($parent->call);
732                 $user->lastin($main::systime) unless DXChannel::get($call);
733                 $user->put;
734
735                 # send info to all logged in thingies
736                 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
737                 $self->tell_buddies('loginb', $call, $ncall);
738         }
739         if (@rout) {
740                 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
741 #               $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
742         }
743 }
744
745 # remove a user
746 sub handle_17
747 {
748         my $self = shift;
749         my $pcno = shift;
750         my $line = shift;
751         my $origin = shift;
752         my $pc = shift;
753
754         my $dxchan;
755         my $ncall = $pc->[2];
756         my $ucall = $pc->[1];
757
758         eph_del_regex("^PC16\\^$ncall.*$ucall");
759
760         # do I want users from this channel?
761         unless ($self->user->wantpc16) {
762                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
763                 return;
764         }
765
766         if ($ncall eq $main::mycall) {
767                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
768                 return;
769         }
770
771         # isolate now means only accept stuff from this call only
772         if ($self->{isolate} && $ncall ne $self->{call}) {
773                 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
774                 return;
775         }
776
777         my $uref = Route::User::get($ucall);
778         unless ($uref) {
779                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
780                 return;
781         }
782         my $parent = Route::Node::get($ncall);
783         unless ($parent) {
784                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
785                 return;
786         }
787
788         $dxchan = DXChannel::get($ncall);
789         if ($dxchan && $dxchan ne $self) {
790                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
791                 return;
792         }
793
794         unless ($dxchan) {
795                 if ($parent->via_pc92) {
796                         dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
797                         return;
798                 }
799         }
800
801         if (DXChannel::get($ucall)) {
802                 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
803                 return;
804         }
805
806         # input filter if required and then remove user if present
807 #               return unless $self->in_filter_route($parent);
808         $parent->del_user($uref);
809
810         # send info to all logged in thingies
811         my $user = DXUser::get_current($ncall);
812         $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
813         $self->tell_buddies('logoutb', $ucall, $ncall);
814
815         if (eph_dup($line)) {
816                 return;
817         }
818
819         $self->route_pc17($origin, $line, $parent, $uref);
820 #       $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
821 }
822
823 # link request
824 sub handle_18
825 {
826         my $self = shift;
827         my $pcno = shift;
828         my $line = shift;
829         my $origin = shift;
830         my $pc = shift;
831
832         $self->state('init');
833
834         my $parent = Route::Node::get($self->{call});
835
836         # record the type and version offered
837         if (my ($software, $version) = $pc->[1] =~ /(DXSpider|CC\s*Cluster)\s+Version: (\d+(?:\.\d+)?)/i) {
838                 $version += 0;
839                 $version += 53 if $version < 6;
840                 $self->{version} = $version;
841                 $self->user->version($version);
842                 $parent->version($version);
843                 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
844                 $build += 0;
845                 $self->{build} = $build;
846                 $self->user->build($build);
847                 $parent->build($build);
848                 dbg("$self->{call} = $software version $version build $build");
849                 unless ($self->is_spider) {
850                         dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
851                         $self->user->sort('S');
852                         $self->user->put;
853                         $self->sort('S');
854                 }
855 #               $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
856         } else {
857                 dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
858                 $self->version(50.0);
859                 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
860                 $self->user->version($self->version);
861         }
862
863         if ($pc->[1] =~ /CC\*Cluster/i || $pc->[1] =~ /\bpc9x/i) {
864                 if ($self->{isolate}) {
865                         dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
866                 } elsif (!$self->user->wantpc9x) {
867                         dbg("$self->{call} pc9x explicitly switched off, using old protocol");
868                 } else {
869                         $self->{do_pc9x} = 1;
870                         dbg("$self->{call} Set do PC9x");
871                 }
872         }
873
874         # first clear out any nodes on this dxchannel
875         my @rout = $parent->del_nodes;
876         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
877         $self->send_local_config();
878         $self->send(pc20());
879 }
880
881 sub check_add_user
882 {
883         my $call = shift;
884         my $type = shift;
885         my $homenode = shift;
886
887         # add this station to the user database, if required (don't remove SSID from nodes)
888         my $user = DXUser::get_current($call);
889         unless ($user) {
890                 $user = DXUser->new($call);
891                 $user->sort($type || 'U');
892                 if ($user->is_node) {
893                         $user->priv(1);         # I have relented and defaulted nodes
894                         $user->lockout(1) if $user->is_node;
895                 } else {
896                         $user->homenode($homenode) if $homenode;
897                         $user->node($homenode);
898                         $user->priv(0);
899                 }
900                 $user->lastin($main::systime); # this make it last longer than just this invocation
901                 $user->put;                             # just to make sure it gets written away!!!
902                 dbg("DXProt: PC92 new user record for $call created");
903         }
904
905         # this is to fix a problem I introduced some build ago by using this function for users
906         # whereas it was only being used for nodes.
907         if ($user->is_user && $user->lockout && ($user->priv // 0) == 1) {
908                 $user->priv(0);
909                 $user->lockout(0);
910                 dbg("DXProt: PC92 user record for $call depriv'd and unlocked");
911                 $user->put;
912         }
913         return $user;
914 }
915
916 # incoming cluster list
917 sub handle_19
918 {
919         my $self = shift;
920         my $pcno = shift;
921         my $line = shift;
922         my $origin = shift;
923         my $pc = shift;
924
925         my $i;
926         my $newline = "PC19^";
927
928         # new routing list
929         my (@rout, @pc92out);
930
931         # first get the INTERFACE node
932         my $parent = Route::Node::get($self->{call});
933         unless ($parent) {
934                 dbg("PCPROT: my parent $self->{call} has disappeared");
935                 $self->disconnect;
936                 return;
937         }
938
939         my $h;
940
941         # parse the PC19
942         #
943         # We are making a major change from now on. We are only going to accept
944         # PC19s from directly connected nodes.  This means that we are probably
945         # going to throw away most of the data that we are being sent.
946         #
947         # The justification for this is that most of it is wrong or out of date
948         # anyway.
949         #
950         # From now on we are only going to believe PC92 data and locally connected
951         # non-pc92 nodes.
952         #
953         for ($i = 1; $i < $#$pc-1; $i += 4) {
954                 my $here = $pc->[$i];
955                 my $call = uc $pc->[$i+1];
956                 my $conf = $pc->[$i+2];
957                 my $ver = $pc->[$i+3];
958                 next unless defined $here && defined $conf && is_callsign($call);
959
960                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
961
962                 # check for sane parameters
963                 #                               $ver = 5000 if $ver eq '0000';
964                 next unless $ver && $ver =~ /^\d+$/;
965                 next if $ver < 5000;    # only works with version 5 software
966                 next if length $call < 3; # min 3 letter callsigns
967                 next if $call eq $main::mycall || $call eq $main::myalias;
968
969                 # check that this PC19 isn't trying to alter the wrong dxchan
970                 $h = 0;
971                 my $dxchan = DXChannel::get($call);
972                 if ($dxchan) {
973                         if ($dxchan == $self) {
974                                 $h = 1;
975                         } else {
976                                 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
977                                 next;
978                         }
979                 }
980
981                 # isolate now means only accept stuff from this call only
982                 if ($self->{isolate} && $call ne $self->{call}) {
983                         dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
984                         next;
985                 }
986
987                 my $user = check_add_user($call, 'A');
988
989 #               if (eph_dup($genline)) {
990 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
991 #                       next;
992 #               }
993
994
995                 unless ($h) {
996                         if ($parent->via_pc92) {
997                                 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
998                                 next;
999                         }
1000                 }
1001
1002                 my $r = Route::Node::get($call);
1003                 my $flags = Route::here($here)|Route::conf($conf);
1004
1005                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1006                 if ($r) {
1007                         my $ar;
1008                         if ($call ne $parent->call) {
1009                                 if ($self->in_filter_route($r)) {
1010                                         $ar = $parent->add($call, $ver, $flags);
1011 #                                       push @rout, $ar if $ar;
1012                                 } else {
1013                                         next;
1014                                 }
1015                         }
1016                         if ($r->version ne $ver || $r->flags != $flags) {
1017                                 $r->version($ver);
1018                                 $r->flags($flags);
1019                         }
1020                         push @rout, $r;
1021                 } else {
1022                         if ($call eq $self->{call} || $user->wantroutepc19) {
1023                                 my $new = Route->new($call); # throw away
1024                                 if ($self->in_filter_route($new)) {
1025                                         my $ar = $parent->add($call, $ver, $flags);
1026                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1027                                         push @rout, $ar if $ar;
1028                                         push @pc92out, $r if $h;
1029                                 } else {
1030                                         next;
1031                                 }
1032                         }
1033                 }
1034
1035                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1036                 my $mref = DXMsg::get_busy($call);
1037                 $mref->stop_msg($call) if $mref;
1038
1039                 $user->lastin($main::systime) unless DXChannel::get($call);
1040                 $user->put;
1041         }
1042
1043         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
1044         # but remember there will only be one (pair) these because any extras will be
1045         # thrown away.
1046         if (@rout) {
1047 #               $self->route_pc21($self->{call}, $line, @rout);
1048                 $self->route_pc19($self->{call}, $line, @rout);
1049         }
1050         if (@pc92out && !$pc92_slug_changes) {
1051                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
1052         }
1053 }
1054
1055 # send local configuration
1056 sub handle_20
1057 {
1058         my $self = shift;
1059         my $pcno = shift;
1060         my $line = shift;
1061         my $origin = shift;
1062         my $pc = shift;
1063
1064         if ($self->{do_pc9x} && $self->{state} ne 'init92' && $self->{state} ne 'normal') {
1065                 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1066                 $self->{do_pc9x} = 0;
1067         }
1068         $self->send_local_config;
1069         $self->send(pc22());
1070         $self->state('normal');
1071         $self->{lastping} = 0;
1072         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1073 }
1074
1075 # delete a cluster from the list
1076 #
1077 # This should never occur for directly connected nodes.
1078 #
1079 sub handle_21
1080 {
1081         my $self = shift;
1082         my $pcno = shift;
1083         my $line = shift;
1084         my $origin = shift;
1085         my $pc = shift;
1086
1087         my $call = uc $pc->[1];
1088
1089         eph_del_regex("^PC1[679].*$call");
1090
1091         # if I get a PC21 from the same callsign as self then ignore it
1092         if ($call eq $self->{call}) {
1093                 dbg("PCPROT: self referencing PC21 from $self->{call}");
1094                 return;
1095         }
1096
1097         # for the above reason and also because of the check for PC21s coming
1098         # in for self->call from outside being ignored further down
1099         # we don't need any isolation code here, because we will never
1100         # act on a PC21 with self->call in it.
1101
1102         my $parent = Route::Node::get($self->{call});
1103         unless ($parent) {
1104                 dbg("PCPROT: my parent $self->{call} has disappeared");
1105                 $self->disconnect;
1106                 return;
1107         }
1108
1109         my @rout;
1110
1111         if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
1112                 my $node = Route::Node::get($call);
1113                 if ($node) {
1114
1115                         if ($node->via_pc92) {
1116                                 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
1117                                 return;
1118                         }
1119
1120                         my $dxchan = DXChannel::get($call);
1121                         if ($dxchan && $dxchan != $self) {
1122                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
1123                                 return;
1124                         }
1125
1126                         # input filter it
1127                         return unless $self->in_filter_route($node);
1128
1129                         # routing objects, force a PC21 if it is local
1130                         push @rout, $node->del($parent);
1131                         push @rout, $call if $dxchan && @rout == 0;
1132                 }
1133         } else {
1134                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
1135                 return;
1136         }
1137
1138         if (eph_dup($line)) {
1139                 return;
1140         }
1141
1142         if (@rout) {
1143                 $self->route_pc21($origin, $line, @rout);
1144 #               $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
1145         }
1146 }
1147
1148
1149 sub handle_22
1150 {
1151         my $self = shift;
1152         my $pcno = shift;
1153         my $line = shift;
1154         my $origin = shift;
1155         my $pc = shift;
1156
1157         if ($self->{do_pc9x}) {
1158                 if ($self->{state} ne 'init92' && $self->{state} ne 'normal') {
1159                         $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1160                         $self->{do_pc9x} = 0;
1161                 }
1162         }
1163         $self->{lastping} = 0;
1164         $self->state('normal');
1165         $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1166 }
1167
1168 # WWV info
1169 sub handle_23
1170 {
1171         my $self = shift;
1172         my $pcno = shift;
1173         my $line = shift;
1174         my $origin = shift;
1175         my $pc = shift;
1176
1177         # route foreign' pc27s
1178         if ($pcno == 27) {
1179                 if ($pc->[8] ne $main::mycall) {
1180                         $self->route($pc->[8], $line);
1181                         return;
1182                 }
1183         }
1184
1185
1186         # do some de-duping
1187         my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1188         my $sfi = unpad($pc->[3]);
1189         my $k = unpad($pc->[4]);
1190         my $i = unpad($pc->[5]);
1191         my ($r) = $pc->[6] =~ /R=(\d+)/;
1192         $r = 0 unless $r;
1193         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1194                 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1195                 return;
1196         }
1197
1198         # global wwv filtering on INPUT
1199         my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1200         if ($self->{inwwvfilter}) {
1201                 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1202                 unless ($filter) {
1203                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1204                         return;
1205                 }
1206         }
1207         $pc->[7] =~ s/-\d+$//o;         # remove spotter's ssid
1208         if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1209                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1210                 return;
1211         }
1212
1213         # note this only takes the first one it gets
1214         Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1215         dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1216
1217         if (defined &Local::wwv) {
1218                 my $rep;
1219                 eval {
1220                         $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1221                 };
1222                 return if $rep;
1223         }
1224
1225         # DON'T be silly and send on PC27s!
1226         return if $pcno == 27;
1227
1228         # broadcast to the eager world
1229         send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1230 }
1231
1232 # set here status
1233 sub handle_24
1234 {
1235         my $self = shift;
1236         my $pcno = shift;
1237         my $line = shift;
1238         my $origin = shift;
1239         my $pc = shift;
1240
1241         my $call = uc $pc->[1];
1242         my ($nref, $uref);
1243         $nref = Route::Node::get($call);
1244         $uref = Route::User::get($call);
1245         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1246
1247         if (eph_dup($line)) {
1248                 return;
1249         }
1250
1251         $nref->here($pc->[2]) if $nref;
1252         $uref->here($pc->[2]) if $uref;
1253         my $ref = $nref || $uref;
1254         return unless $self->in_filter_route($ref);
1255
1256         $self->route_pc24($origin, $line, $ref, $pc->[3]);
1257 }
1258
1259 # merge request
1260 sub handle_25
1261 {
1262         my $self = shift;
1263         my $pcno = shift;
1264         my $line = shift;
1265         my $origin = shift;
1266         my $pc = shift;
1267
1268         if ($pc->[1] ne $main::mycall) {
1269                 $self->route($pc->[1], $line);
1270                 return;
1271         }
1272         if ($pc->[2] eq $main::mycall) {
1273                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1274                 return;
1275         }
1276
1277         Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1278
1279         # spots
1280         if ($pc->[3] > 0) {
1281                 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1282                 my $in;
1283                 foreach $in (@in) {
1284                         $self->send(pc26(@{$in}[0..4], $pc->[2]));
1285                 }
1286         }
1287
1288         # wwv
1289         if ($pc->[4] > 0) {
1290                 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1291                 my $in;
1292                 foreach $in (@in) {
1293                         $self->send(pc27(@{$in}[0..5], $pc->[2]));
1294                 }
1295         }
1296 }
1297
1298 sub handle_26 {goto &handle_11}
1299 sub handle_27 {goto &handle_23}
1300
1301 # mail/file handling
1302 sub handle_28
1303 {
1304         my $self = shift;
1305         my $pcno = shift;
1306         my $line = shift;
1307         my $origin = shift;
1308         my $pc = shift;
1309
1310         if ($pc->[1] eq $main::mycall) {
1311                 no strict 'refs';
1312                 my $sub = "DXMsg::handle_$pcno";
1313                 &$sub($self, @$pc);
1314         } else {
1315                 $self->route($pc->[1], $line) unless $self->is_clx;
1316         }
1317 }
1318
1319 sub handle_29 {goto &handle_28}
1320 sub handle_30 {goto &handle_28}
1321 sub handle_31 {goto &handle_28}
1322 sub handle_32 {goto &handle_28}
1323 sub handle_33 {goto &handle_28}
1324
1325 sub handle_34
1326 {
1327         my $self = shift;
1328         my $pcno = shift;
1329         my $line = shift;
1330         my $origin = shift;
1331         my $pc = shift;
1332
1333         if (eph_dup($line, $eph_pc34_restime)) {
1334                 return;
1335         } else {
1336                 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1337         }
1338 }
1339
1340 # remote command replies
1341 sub handle_35
1342 {
1343         my $self = shift;
1344         my $pcno = shift;
1345         my $line = shift;
1346         my $origin = shift;
1347         my $pc = shift;
1348
1349         eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1350         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1351 }
1352
1353 sub handle_36 {goto &handle_34}
1354
1355 # database stuff
1356 sub handle_37
1357 {
1358         my $self = shift;
1359         my $pcno = shift;
1360         my $line = shift;
1361         my $origin = shift;
1362         my $pc = shift;
1363
1364         if ($pc->[1] eq $main::mycall) {
1365                 no strict 'refs';
1366                 my $sub = "DXDb::handle_$pcno";
1367                 &$sub($self, @$pc);
1368         } else {
1369                 $self->route($pc->[1], $line) unless $self->is_clx;
1370         }
1371 }
1372
1373 # node connected list from neighbour
1374 sub handle_38
1375 {
1376         my $self = shift;
1377         my $pcno = shift;
1378         my $line = shift;
1379         my $origin = shift;
1380         my $pc = shift;
1381 }
1382
1383 # incoming disconnect
1384 sub handle_39
1385 {
1386         my $self = shift;
1387         my $pcno = shift;
1388         my $line = shift;
1389         my $origin = shift;
1390         my $pc = shift;
1391
1392         if ($pc->[1] eq $self->{call}) {
1393                 $self->disconnect(1);
1394         } else {
1395                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1396         }
1397 }
1398
1399 sub handle_40 {goto &handle_28}
1400
1401 # user info
1402 sub handle_41
1403 {
1404         my $self = shift;
1405         my $pcno = shift;
1406         my $line = shift;
1407         my $origin = shift;
1408         my $pc = shift;
1409
1410         my $call = $pc->[1];
1411         my $sort = $pc->[2];
1412         my $val = $pc->[3];
1413
1414         my $l = "PC41^$call^$sort";
1415         if (eph_dup($l, $eph_info_restime)) {
1416                 return;
1417         }
1418
1419         # input filter if required
1420         #                       my $ref = Route::get($call) || Route->new($call);
1421         #                       return unless $self->in_filter_route($ref);
1422
1423         if ($val eq $sort || $val =~ /^\s*$/) {
1424                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1425                 return;
1426         }
1427
1428         if ($call eq $main::mycall || $call eq $main::myalias) {
1429                 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1430                 return;
1431         }
1432         my $chan = DXChannel::get($call);
1433         if ($chan) {
1434                 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1435                 return;
1436         }
1437
1438         # add this station to the user database, if required
1439         my $user = DXUser::get_current($call);
1440         $user = DXUser->new($call) unless $user;
1441
1442         if ($sort == 1) {
1443                 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1444                         dbg("PCPROT: invalid name") if isdbg('chanerr');
1445                         return;
1446                 }
1447                 $user->name($val);
1448         } elsif ($sort == 2) {
1449                 $user->qth($val);
1450         } elsif ($sort == 3) {
1451                 if (is_latlong($val)) {
1452                         my ($lat, $long) = DXBearing::stoll($val);
1453                         $user->lat($lat) if $lat;
1454                         $user->long($long) if $long;
1455                         $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1456                 } else {
1457                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1458                         return;
1459                 }
1460         } elsif ($sort == 4) {
1461                 $user->homenode($val);
1462         } elsif ($sort == 5) {
1463                 if (is_qra(uc $val)) {
1464                         my ($lat, $long) = DXBearing::qratoll(uc $val);
1465                         $user->lat($lat) if $lat && !$user->lat;
1466                         $user->long($long) if $long && !$user->long;
1467                         $user->qra(uc $val);
1468                 } else {
1469                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1470                         return;
1471                 }
1472         }
1473         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1474         $user->put;
1475
1476         unless ($self->{isolate}) {
1477                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1478         }
1479
1480         #  perhaps this IS what we want after all
1481         #                       $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1482 }
1483
1484 sub handle_42 {goto &handle_28}
1485
1486
1487 # database
1488 sub handle_44 {goto &handle_37}
1489 sub handle_45 {goto &handle_37}
1490 sub handle_46 {goto &handle_37}
1491 sub handle_47 {goto &handle_37}
1492 sub handle_48 {goto &handle_37}
1493
1494 # message and database
1495 sub handle_49
1496 {
1497         my $self = shift;
1498         my $pcno = shift;
1499         my $line = shift;
1500         my $origin = shift;
1501         my $pc = shift;
1502
1503         if (eph_dup($line)) {
1504                 return;
1505         }
1506
1507         if ($pc->[1] eq $main::mycall) {
1508                 DXMsg::handle_49($self, @$pc);
1509         } else {
1510                 $self->route($pc->[1], $line) unless $self->is_clx;
1511         }
1512 }
1513
1514 # keep alive/user list
1515 sub handle_50
1516 {
1517         my $self = shift;
1518         my $pcno = shift;
1519         my $line = shift;
1520         my $origin = shift;
1521         my $pc = shift;
1522
1523         return if (eph_dup($line));
1524
1525         my $call = $pc->[1];
1526
1527         my $node = Route::Node::get($call);
1528         if ($node) {
1529                 return unless $node->call eq $self->{call};
1530                 $node->usercount($pc->[2]) unless $node->users;
1531                 $node->reset_obs;
1532                 $node->PC92C_dxchan($self->call, $pc->[-1]);
1533
1534                 # input filter if required
1535 #               return unless $self->in_filter_route($node);
1536
1537                 unless ($self->{isolate}) {
1538                         DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1539                 }
1540 #               $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1541         }
1542 }
1543
1544 # incoming ping requests/answers
1545 sub handle_51
1546 {
1547         my $self = shift;
1548         my $pcno = shift;
1549         my $line = shift;
1550         my $origin = shift;
1551         my $pc = shift;
1552
1553         my $to = $pc->[1];
1554         my $from = $pc->[2];
1555         my $flag = $pc->[3];
1556
1557         if ($to eq $main::myalias) {
1558                 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1559                 return;
1560         }
1561
1562         # is it for us?
1563         if ($to eq $main::mycall) {
1564                 if ($flag == 1) {
1565                         $self->send(pc51($from, $to, '0'));
1566                 } else {
1567                         DXXml::Ping::handle_ping_reply($self, $from);
1568                 }
1569         } else {
1570                 if (eph_dup($line)) {
1571                         return;
1572                 }
1573                 # route down an appropriate thingy
1574                 $self->route($to, $line);
1575         }
1576 }
1577
1578 sub handle_61 { goto &handle_11; }
1579
1580 # dunno but route it
1581 sub handle_75
1582 {
1583         my $self = shift;
1584         my $pcno = shift;
1585         my $line = shift;
1586         my $origin = shift;
1587         my $pc = shift;
1588
1589         my $call = $pc->[1];
1590         if ($call ne $main::mycall) {
1591                 $self->route($call, $line);
1592         }
1593 }
1594
1595 # WCY broadcasts
1596 sub handle_73
1597 {
1598         my $self = shift;
1599         my $pcno = shift;
1600         my $line = shift;
1601         my $origin = shift;
1602         my $pc = shift;
1603
1604         my $call = $pc->[1];
1605
1606         # do some de-duping
1607         my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1608         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1609                 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1610                 return;
1611         }
1612         $pc = [ map { unpad($_) } @$pc ];
1613         if (WCY::dup($d)) {
1614                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1615                 return;
1616         }
1617
1618         my $wcy = WCY::update($d, @$pc[2..12]);
1619         dbg("WCY: <$pc->[2]> K=$pc->[5] expK=$pc->[6] A=$pc->[4] R=$pc->[7] SFI=$pc->[3] SA=$pc->[8] GMF=$pc->[9] Au=$pc->[10] $pc->[11]\@$pc->[12] route: $origin") if isdbg('progress');
1620
1621         if (defined &Local::wcy) {
1622                 my $rep;
1623                 eval {
1624                         $rep = Local::wcy($self, @$pc[1..12]);
1625                 };
1626                 return if $rep;
1627         }
1628
1629         # broadcast to the eager world
1630         send_wcy_spot($self, $line, $d, @$pc[2..12]);
1631 }
1632
1633 # remote commands (incoming)
1634 sub handle_84
1635 {
1636         my $self = shift;
1637         my $pcno = shift;
1638         my $line = shift;
1639         my $origin = shift;
1640         my $pc = shift;
1641
1642         $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1643 }
1644
1645 # remote command replies
1646 sub handle_85
1647 {
1648         my $self = shift;
1649         my $pcno = shift;
1650         my $line = shift;
1651         my $origin = shift;
1652         my $pc = shift;
1653
1654         $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1655 }
1656
1657 # decode a pc92 call: flag call : version : build
1658 sub _decode_pc92_call
1659 {
1660         my $icall = shift;
1661         my @part = split /:/, $icall;
1662         my ($flag, $call) = unpack "A A*", $part[0];
1663         unless (defined $flag && $flag ge '0' && $flag le '7') {
1664                 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1665                 return ();
1666         }
1667         unless ($call && is_callsign($call)) {
1668                 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1669                 return ();
1670         }
1671         my $is_node = $flag & 4;
1672         my $is_extnode = $flag & 2;
1673         my $here = $flag & 1;
1674         my $version = $part[1] || 0;
1675         my $build = $part[2] || 0;
1676         my $ip = $part[3] || '';
1677
1678         # remember that, at this stage, IPV6 addresses have : replaced by ,
1679         if (length $version > 4 && $version =~ /[,\.][\da-f]{1,4}/i) {
1680                 $ip = $version;
1681                 $version = 0;
1682         }
1683         $version =~ s/\D//g;
1684         $version = 0 unless $version && $version =~ /^[0-9]+$/;
1685         $build =~ s/^0\.//;
1686         $build =~ s/\D//g;
1687         $build = 0 unless $build &&  $build =~ /^[0-9]+$/;
1688         if ($ip) {
1689         $ip =~ s/,/:/g;
1690         $ip =~ s/^::ffff://i;
1691                 $ip = '' unless is_ipaddr($ip);
1692     }
1693         dbg("'$icall' = '" . join("', '", $call, $is_node, $is_extnode, $here, $version, $build, $ip) . "'") if isdbg('pc92');
1694         return ($call, $is_node, $is_extnode, $here, $version+0, $build+0, $ip);
1695 }
1696
1697 # decode a pc92 call: flag call : version : build
1698 sub _encode_pc92_call
1699 {
1700         my $ref = shift;
1701
1702         # plain call or value
1703         return $ref unless ref $ref;
1704
1705         my $ext = shift || 0;
1706         my $flag = 0;
1707         my $call = $ref->call;
1708         my $extra = '';
1709         $flag |= $ref->here ? 1 : 0;
1710         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1711                 $flag |= 4;
1712                 my $dxchan = DXChannel::get($call);
1713                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1714                 if (($ext & 1) && $ref->version) {
1715                         my $version = $ref->version || 1.0;
1716                         $version =  $version * 100 + 5300 if $version < 50;
1717                         $extra .= ":" . $version;
1718                 }
1719         }
1720         if (($ext & 2) && $ref->ip) {
1721                 my $ip = $ref->ip;
1722                 $ip =~ s/:/,/g;
1723                 $extra .= ':' . $ip;
1724         }
1725
1726         return "$flag$call$extra";
1727 }
1728
1729 my %things_add;
1730 my %things_del;
1731
1732 sub _add_thingy
1733 {
1734         my $parent = shift;
1735         my $s = shift;
1736         my $dxchan = shift;
1737         my $hops = shift;
1738
1739         my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1740         my @rout;
1741
1742         # remove spurious IPV6 prefix on IPV4 addresses
1743         $build ||= 0;
1744         $version ||= 0;
1745
1746         if ($call) {
1747                 my $ncall = $parent->call;
1748                 if ($ncall ne $call) {
1749                         my $user;
1750                         my $r;
1751
1752                         # normalise call, delete any unnormalised calls in the users file.
1753                         # then ignore this thingy
1754                         my $normcall = normalise_call($call);
1755                         if ($normcall ne $call) {
1756                                 next if DXChannel::get($call);
1757                                 $user = DXUser::get($call);
1758                                 dbg("DXProt::_add_thingy call $call normalised to $normcall, deleting spurious user $call");
1759                                 $user->del if $user;
1760                             $call = $normcall; # this is safe because a route add will ignore duplicates
1761                         }
1762                         
1763                         if ($is_node) {
1764                                 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1765                                 $user = check_add_user($call, 'A');
1766                                 @rout = $parent->add($call, $version, Route::here($here), $ip);
1767                                 $r = Route::Node::get($call);
1768                                 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1769                                 if ($version && is_numeric($version) && !$r->K && !$user->K) {
1770                                         my $old = $user->sort;
1771                                         if ($user->is_ak1a && (($version >= 5455 &&  $build > 0) || ($version >= 3000 && $version <= 3500)) ) {
1772                                                 $user->sort('S');
1773                                                 dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) updated to " . $user->sort);
1774                                         } elsif ($user->is_spider && ($version < 3000 || ($version > 4000 && $version < 5455))) {
1775                                                 unless ($version > 0  && $build == 0) {
1776                                                         $user->sort('A');
1777                                                         $build ||= 0;
1778                                                         dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) downgraded to " . $user->sort);
1779                                                 }
1780                                         }
1781                                 }
1782                                 $r->version($user->version) if $user->version;
1783                                 $r->build($user->build) if $user->build;
1784                                 $r->K(1) if $user->K;
1785                         } else {
1786                                 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1787                                 $user = check_add_user($call, 'U', $parent->call);
1788                                 @rout = $parent->add_user($call, Route::here($here), $ip);
1789                                 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1790                                 $r = Route::User::get($call);
1791                         }
1792                         if ($ip) {
1793                                 $r->ip($ip);
1794                                 Log('DXProt', "PC92A $call -> $ip on $ncall");
1795                         }
1796                         if ($pc92_slug_changes && $parent == $main::routeroot) {
1797                                 $things_add{$call} = Route::get($call);
1798                                 delete $things_del{$call};
1799                         }
1800                         $user->close($main::systime, $ip) if $user;             # this just updates lastseen and the connlist list containing the IP address
1801                 } else {                                
1802                         dbgprintring(10) if isdbg('nologchan');
1803                         dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1804                 }
1805         }
1806         
1807         return @rout;
1808 }
1809
1810 sub _del_thingy
1811 {
1812         my $parent = shift;
1813         my $s = shift;
1814         my $dxchan = shift;
1815         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1816         my @rout;
1817         if ($call) {
1818                 my $ref;
1819                 if ($is_node) {
1820                         $ref = Route::Node::get($call);
1821                         dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1822                         @rout = $ref->del($parent) if $ref;
1823                 } else {
1824                         dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1825                         $ref = Route::User::get($call);
1826                         if ($ref) {
1827                                 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1828                                 @rout = $parent->del_user($ref);
1829                         }
1830                 }
1831                 if ($pc92_slug_changes && $parent == $main::routeroot) {
1832                         $things_del{$call} = $ref unless exists $things_add{$call};
1833                         delete $things_add{$call};
1834                 }
1835         }
1836         return @rout;
1837 }
1838
1839 # this will only happen if we are slugging changes and
1840 # there are some changes to be sent, it will create an add or a delete
1841 # or both
1842 sub gen_pc92_changes
1843 {
1844         my @add = values %things_add;
1845         my @del = values %things_del;
1846         return (\@add, \@del);
1847 }
1848
1849 sub clear_pc92_changes
1850 {
1851         %things_add = %things_del = ();
1852         $last_pc92_slug = $main::systime;
1853 }
1854
1855 my $_last_time;
1856 my $_last_occurs;
1857 my $_last_pc9x_id;
1858
1859 sub last_pc9x_id
1860 {
1861         return $_last_pc9x_id;
1862 }
1863
1864 sub gen_pc9x_t
1865 {
1866         if (!$_last_time || $_last_time != $main::systime) {
1867                 $_last_time = $main::systime;
1868                 $_last_occurs = 0;
1869                 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1870         } else {
1871                 $_last_occurs++;
1872                 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1873         }
1874 }
1875
1876 sub check_pc9x_t
1877 {
1878         my $call = shift;
1879         my $t = shift;
1880         my $pc = shift;
1881         my $create = shift;
1882
1883         # check that the time is between 0 >= $t < 86400
1884         unless ($t >= 0 && $t < 86400) {
1885                 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1886                 return undef;
1887         }
1888
1889         # check that the time of this pc9x is within tolerance (default 15 mins either way)
1890         my $now = $main::systime - $main::systime_daystart ;
1891         my $diff = abs($now - $t);
1892         unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1893                 my $c = ref $call ? $call->call : $call;
1894                 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1895                 return undef;
1896         }
1897
1898         my $parent = ref $call ? $call : Route::Node::get($call);
1899         if ($parent) {
1900                 # we only do this for external calls whose routing table
1901                 # record come and go. The reference for mycall is permanent
1902                 # and not that frequently used, it also never times out, so
1903                 # the id on it is completely unreliable. Besides, only commands
1904                 # originating on this box will go through this code...
1905                 if ($parent->call ne $main::mycall) {
1906                         my $lastid = $parent->lastid;
1907                         if (defined $lastid) {
1908                                 if ($t < $lastid) {
1909                                         # note that this is where we determine whether this pc9x has come in yesterday
1910                                         # but is still greater (modulo 86400) than the lastid or is simply an old
1911                                         # duplicate sentence. To determine this we need to do some module 86400
1912                                         # arithmetic. High numbers mean that this is an old duplicate sentence,
1913                                         # low numbers that it is a new sentence.
1914                                         #
1915                                         # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1916                                         # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1917                                         # 86378 respectively in the calculation below).
1918                                         #
1919                                         if ($t+86400-$lastid > $pc9x_past_age) {
1920                                                 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1921                                                 return undef;
1922                                         }
1923                                 } elsif ($t == $lastid) {
1924                                         dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1925                                         return undef;
1926                                 } else {
1927                                         # check that if we have a low number in lastid that yesterday's numbers
1928                                         # (likely in the 85000+ area) don't override them, thus causing flip flopping
1929                                         if ($lastid+86400-$t < $pc9x_past_age) {
1930                                                 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1931                                                 return undef;
1932                                         }
1933                                 }
1934                         }
1935                 }
1936         } elsif ($create) {
1937                 $parent = Route::Node->new($call);
1938         } else {
1939                 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1940                 return undef;
1941         }
1942         if (isdbg('pc92dedupe')) {
1943                 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1944                 my $val = $parent->{lastid};
1945                 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1946                 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1947         }
1948         $parent->lastid($t);
1949
1950         return $parent;
1951 }
1952
1953 sub pc92_handle_first_slot
1954 {
1955         my $self = shift;
1956         my $slot = shift;
1957         my $parent = shift;
1958         my $t = shift;
1959         my $hops = shift;
1960         my $oparent = $parent;
1961
1962         my @radd;
1963
1964         my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1965         if ($call && $is_node) {
1966                 if ($call eq $main::mycall) {
1967                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::mycall ($main::mycall), ignored");
1968                         return;
1969                 }
1970                 if ($call eq $main::myalias) {
1971                         LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::myalias ($main::myalias), ignored");
1972                         return;
1973                 }
1974                 # this is only accepted from my "self".
1975                 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1976                 # locally connected. Local nodes always take precedence. But we remember the lastid
1977                 # to try to reduce the number of dupe PC92s for this external node.
1978                 if (DXChannel::get($call) && $call ne $self->{call}) {
1979                         $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1980                         dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1981                         return;
1982                 }
1983                 if ($is_extnode) {
1984                         # reparent to external node (note that we must have received a 'C' or 'A' record
1985                         # from the true parent node for this external before we get one for the this node
1986                         unless ($parent = Route::Node::get($call)) {
1987                                 if ($is_extnode && $oparent) {
1988                                         @radd = _add_thingy($oparent, $slot, $self, $hops);
1989                                         $parent = $radd[0];
1990                                 } else {
1991                                         dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1992                                         return;
1993                                 }
1994                         }
1995                         $parent = check_pc9x_t($call, $t, 92) || return;
1996                         $parent->via_pc92(1);
1997                         $parent->PC92C_dxchan($self->{call}, $hops);
1998                 }
1999         } else {
2000                 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
2001                 return;
2002         }
2003         $parent->here(Route::here($here));
2004         $parent->version($version || $pc19_version) if $version;
2005     $parent->build($build) if $build;
2006         $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2007         return ($parent, @radd);
2008 }
2009
2010 # DXSpider routing entries
2011 sub handle_92
2012 {
2013         my $self = shift;
2014         my $pcno = shift;
2015         my $line = shift;
2016         my $origin = shift;
2017         my $pc = shift;
2018
2019         my (@radd, @rdel);
2020
2021         my $pcall = $pc->[1];
2022         my $t = $pc->[2];
2023         my $sort = $pc->[3];
2024         my $hops = $pc->[-1];
2025
2026         # this catches loops of A/Ds
2027 #       if (eph_dup($line, $pc9x_dupe_age)) {
2028 #               return;
2029 #       }
2030
2031         if ($pcall eq $main::mycall) {
2032                 LogDbg('err', "PCPROT: looped back, ignored");
2033                 return;
2034         }
2035
2036         if ($pcall eq $main::myalias) {
2037                 LogDbg('err', "PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored");
2038                 return;
2039         }
2040
2041         if ($pcall eq $self->{call} && $self->{state} eq 'init') {
2042                 if ($self->{isolate}) {
2043                         dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
2044                         return;
2045                 } elsif (!$self->user->wantpc9x) {
2046                         dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
2047                         return;
2048                 } else {
2049                         $self->state('init92');
2050                         $self->{do_pc9x} = 1;
2051                         dbg("DXPROT: Do pc9x set on $pcall");
2052                 }
2053         }
2054         unless ($self->{do_pc9x}) {
2055                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2056                 return;
2057         }
2058
2059         # don't create routing entries for D records that don't already exist
2060         # this is what causes all those PC92 loops!
2061         my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
2062         my $oparent = $parent;
2063
2064         $parent->do_pc9x(1);
2065         $parent->via_pc92(1);
2066
2067         if ($sort eq 'F' || $sort eq 'R') {
2068
2069                 # this is the route finding section
2070                 # here is where the consequences of the 'find' command
2071                 # are dealt with
2072
2073                 my $from = $pc->[4];
2074                 my $target = $pc->[5];
2075
2076                 if ($sort eq 'F') {
2077                         my $flag;
2078                         my $ref;
2079                         my $dxchan;
2080                         if ($ref = DXChannel::get($target)) {
2081                                 $flag = 1;              # we are directly connected
2082                         } else {
2083                                 $ref = Route::get($target);
2084                                 $dxchan = $ref->dxchan;
2085                                 $flag = 2;
2086                         }
2087                         if ($ref && $flag && $dxchan) {
2088                                 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
2089                                 return;
2090                         }
2091                 } elsif ($sort eq 'R') {
2092                         if (my $dxchan = DXChannel::get($from)) {
2093                                 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
2094                         } else {
2095                                 my $ref = Route::get($from);
2096                                 if ($ref) {
2097                                         my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
2098                                         if (@dxchan) {
2099                                                 $_->send($line) for @dxchan;
2100                                         } else {
2101                                                 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2102                                         }
2103                                 } else {
2104                                         dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2105                                 }
2106                         }
2107                         return;
2108                 }
2109
2110         } elsif ($sort eq 'K') {
2111                 $pc92Kin += length $line;
2112
2113                 # remember the last channel we arrived on
2114                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2115
2116                 my @ent = _decode_pc92_call($pc->[4]);
2117
2118                 if (@ent) {
2119                         my $add;
2120
2121                         ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
2122                         return unless $parent; # dupe
2123                         
2124                         push @radd, $add if $add;
2125                         $parent->reset_obs;
2126                         my $call = $parent->call;
2127                         my $version = $ent[4] || 0;
2128                         my $build = $ent[5] ||  0;
2129                         $build =~ s/^0\.//;
2130                         my $oldbuild = $parent->build || 0;
2131                         my $oldversion = $parent->version || 0;
2132                         my $user = check_add_user($parent->call, 'S');
2133                         my $oldsort = $user->sort // '';
2134
2135                         dbg("PCPROT: PC92 K v: $version ov: $oldversion b: $build ob: $oldbuild pk: " . ($parent->K || '0') . " uk: " . ($user->K || 0)) if isdbg('pc92k');
2136                                 
2137                         if (is_numeric($version) || is_numeric($build)) {
2138                                 my $changed = 0;
2139                                 if (($oldversion ne $version || $build ne $oldbuild)) {
2140                                         dbg("PCPROT: PC92 K node $call updated version: $version (was $oldversion) build: $build (was $oldbuild)");
2141                                         $user->version($parent->version($version));
2142                                         $user->build($parent->build($build));
2143                                         ++$changed;
2144                                 }
2145                                 if ($oldsort ne 'S') {
2146                                         dbg("PCPROT: PC92 K node $call updated sort: $sort (was $oldsort)");
2147                                         $user->sort('S');
2148                                         ++$changed;
2149                                 }
2150                                 unless ($user->K) {
2151                                         dbg("PCPROT: PC92 K node $call updated - marked as PC92 K user");
2152                                         $user->K(1);
2153                                         ++$changed;
2154                                 }
2155                                 $user->put if $changed;
2156                                 $parent->K(1); # mark this as come in on a K
2157                         } else {
2158                                 dbg("DXProt PC92 K version call $call: invalid version: '$version' or build: '$version', ignored");
2159                         }
2160                         dbg("ROUTE: reset obscount on $call now " . $parent->obscount) if isdbg('obscount');
2161                 }
2162         } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
2163
2164                 $pc92Ain += length $line if $sort eq 'A';
2165                 $pc92Cin += length $line if $sort eq 'C';
2166                 $pc92Din += length $line if $sort eq 'D';
2167
2168                 # remember the last channel we arrived on
2169                 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2170
2171                 # this is the main route section
2172                 # here is where all the routes are created and destroyed
2173
2174                 # cope with missing duplicate node calls in the first slot
2175                 my $me = $pc->[4] || '';
2176                 $me ||= _encode_pc92_call($parent) unless $me ;
2177
2178                 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
2179
2180                 if (@ent) {
2181
2182                         # look at the first one which will always be a node of some sort
2183                         # except in the case of 'A' or 'D' in which the $pcall is used
2184                         # otherwise use the node call and update any information
2185                         # that needs to be done.
2186                         my $add;
2187
2188                         ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
2189                         return unless $parent; # dupe
2190
2191                         shift @ent;
2192                         push @radd, $add if $add;
2193                 }
2194
2195                 # do a pass through removing any references to either mycall
2196                 my @nent;
2197                 for (@ent) {
2198                         my $dxc;
2199                         next unless $_ && @$_;
2200                         if ($_->[0] eq $main::mycall) {
2201                                 dbg("PCPROT: $self->{call} : type $sort $_->[0] refers to me, ignored") if isdbg('route');
2202                                 next;
2203                         }
2204                         if ($_->[0] eq $main::myalias && $_->[1] || $_->[0] eq $main::mycall && $_->[1] == 0) {
2205                                 LogDbg('err',"PCPROT: $self->{call} : type $sort $_->[0] trying to change type to " . $_->[1]?"Node":"User" . ", ignored");
2206                                 next;
2207                         }
2208                         
2209                         push @nent, $_;
2210                 }
2211
2212                 if ($sort eq 'A') {
2213                         for (@nent) {
2214                                 push @radd, _add_thingy($parent, $_, $self, $hops);
2215                         }
2216                 } elsif ($sort eq 'D') {
2217                         for (@nent) {
2218                                 push @rdel, _del_thingy($parent, $_, $self);
2219                         }
2220                 } elsif ($sort eq 'C') {
2221                         my (@nodes, @users);
2222
2223                         # we reset obscounts on config records as well as K records
2224                         $parent->reset_obs;
2225                         dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2226
2227                         #
2228                         foreach my $r (@nent) {
2229                                 #                       my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
2230                                 if ($r->[0]) {
2231                                         if ($r->[1]) {
2232                                                 push @nodes, $r->[0];
2233                                         } else {
2234                                                 push @users, $r->[0];
2235                                         }
2236                                 } else {
2237                                         dbg("PCPROT: $self->{call} :  pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr') || isdbg('route');
2238                                 }
2239                         }
2240
2241                         my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
2242
2243                         # add users here
2244                         foreach my $r (@nent) {
2245                                 my $call = $r->[0];
2246                                 if ($call) {
2247                                         push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
2248                                 }
2249                         }
2250                         # del users here
2251                         foreach my $r (@$dnodes) {
2252                                 push @rdel,_del_thingy($parent, [$r, 1], $self);
2253                         }
2254                         foreach my $r (@$dusers) {
2255                                 push @rdel,_del_thingy($parent, [$r, 0], $self);
2256                         }
2257
2258                         # remember this last PC92C for rebroadcast on demand
2259                         $parent->last_PC92C($line);
2260                 } else {
2261                         dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2262                         return;
2263                 }
2264
2265                 foreach my $r (@rdel) {
2266                         next unless $r;
2267
2268                         $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2269                         $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2270                 }
2271                 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2272                 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2273                 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2274                 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2275                 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2276         }
2277
2278         # broadcast it if we get here
2279         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2280 }
2281
2282 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2283 # might be on two or more nodes at the same time or that there may be more than
2284 # one equal distance neighbour to a node.
2285 #
2286 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2287 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2288 # each and then combined to give a set of dxchans to send the PC9x record down
2289 #
2290 sub find_pc9x_routes
2291 {
2292         my $to = shift;
2293         my $ref = Route::get($to);
2294         my @parent;
2295         my %cand;
2296
2297         if ($ref->isa('Route::User')) {
2298                 my $dxchan = DXChannel::get($to);
2299                 push @parent, $to if $dxchan;
2300                 push @parent, $ref->parents;
2301         } else {
2302                 @parent = $to;
2303         }
2304         foreach my $p (@parent) {
2305                 my $lasthops;
2306                 my @routes = Route::findroutes($p);
2307                 foreach my $r (@routes) {
2308                         $lasthops = $r->[0] unless defined $lasthops;
2309                         if ($r->[0] == $lasthops) {
2310                                 $cand{$r->[1]->call} = $r->[1];
2311                         } else {
2312                                 last;
2313                         }
2314                 }
2315         }
2316         return values %cand;
2317 }
2318
2319 sub handle_93
2320 {
2321         my $self = shift;
2322         my $pcno = shift;
2323         my $line = shift;
2324         my $origin = shift;
2325         my $pc = shift;
2326
2327 #       $self->{do_pc9x} ||= 1;
2328
2329         my $pcall = $pc->[1];                   # this is now checked earlier
2330
2331         # remember that we are converting PC10->PC93 and self will be $main::me if it
2332         # comes from us
2333         unless ($self->{do_pc9x}) {
2334                 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2335                 return;
2336         }
2337
2338         my $t = $pc->[2];
2339         my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2340
2341         my $to = uc $pc->[3];
2342         my $from = uc $pc->[4];
2343         my $via = uc $pc->[5];
2344         my $text = $pc->[6];
2345         my $onode = uc $pc->[7];
2346         $onode = $pcall if @$pc <= 8;
2347
2348         # this is catch loops caused by bad software ...
2349         if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2350                 return;
2351         }
2352
2353         if (isdbg('progress')) {
2354                 my $vs = $via ne '*' ? " via $via" : ''; 
2355                 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2356                 dbg($s);
2357         }
2358
2359         # if this is a 'bad spotter' user then ignore it
2360         my $nossid = $from;
2361         $nossid =~ s/-\d+$//;
2362         if ($badspotter->in($nossid)) {
2363                 dbg($line) if isdbg('nologchan');
2364                 dbg("PCPROT: Bad Spotter, dropped");
2365                 return;
2366         }
2367
2368         # ignore PC93 coming in from outside this node with a target of local
2369         if ($to eq 'LOCAL' && $self != $main::me) {
2370                 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2371                 return;
2372         }
2373
2374         # will we allow it at all?
2375         if ($censorpc) {
2376                 my @bad;
2377                 if (@bad = BadWords::check($text)) {
2378                         my $bw = join ', ', @bad;
2379                         dbg($line) if isdbg('nologchan');
2380                         dbg("PCPROT: Badwords: '$bw', dropped");
2381                         return;
2382                 }
2383         }
2384
2385         # if it is routeable then then treat it like a talk
2386         my $ref = Route::get($to);
2387         if ($ref) {
2388                 my $dxchan;
2389
2390                 # convert to PC10 or local talks where appropriate
2391                 # PC93 capable nodes of the same hop count all get a copy
2392                 # if there is a PC10 node then it will get a copy and that
2393                 # will be it. Hopefully such a node will not figure highly
2394                 # in the route list, unless it is local, 'cos it don't issue PC92s!
2395                 # note that both local and PC93s at the same time are possible if the
2396                 # user on more than one node.
2397                 my @routes = find_pc9x_routes($to);
2398                 my $lasthops;
2399                 foreach $dxchan (@routes) {
2400                         if (ref $dxchan && $dxchan->isa('DXChannel')) {
2401                                 if ($dxchan->{do_pc9x}) {
2402                                         $dxchan->send($line);
2403                                 } else {
2404                                         $dxchan->talk($from, $to, $via, $text, $onode);
2405                                 }
2406                         } else {
2407                                 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2408                         }
2409                 }
2410                 return;
2411
2412         } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2413                 # announces
2414                 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2415                 my $wx = $to eq 'WX' ? '1' : '0';
2416                 my $local = $via eq 'LOCAL' ? '*' : $via;
2417
2418                 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2419                 return if $via eq 'LOCAL';
2420         } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2421                 # chat messages really only locally connected users
2422                 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2423         }
2424
2425         # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2426         $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2427 }
2428
2429 # if get here then rebroadcast the thing with its Hop count decremented (if
2430 # there is one). If it has a hop count and it decrements to zero then don't
2431 # rebroadcast it.
2432 #
2433 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2434 #        REBROADCAST!!!!
2435 #
2436
2437 sub handle_default
2438 {
2439         my $self = shift;
2440         my $pcno = shift;
2441         my $line = shift;
2442         my $origin = shift;
2443         my $pc = shift;
2444
2445         unless (eph_dup($line)) {
2446                 if ($pcno >= 90) {
2447                         my $pcall = $pc->[1];
2448                         unless (is_callsign($pcall)) {
2449                                 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2450                                 return;
2451                         }
2452                         my $t = $pc->[2];
2453                         my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2454                         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2455                 } else {
2456                         unless ($self->{isolate}) {
2457                                 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
2458                         }
2459                 }
2460         }
2461 }
2462
2463 1;