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