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