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