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