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