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