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