3 # This module impliments the handlers for the protocal mode for a dx cluster
5 # Copyright (c) 1998-2007 Dirk Koopman G1TLH
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
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.
64 $pc92filterdef = bless ([
65 # tag, sort, field, priv, special parser
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
78 # incoming talk commands
87 # this is to catch loops caused by bad software ...
88 if (eph_dup($line, $pc10_dupe_age)) {
93 # is it for me or one of mine?
94 my ($from, $to, $via, $call, $dxchan);
96 if ($pc->[5] gt ' ') {
103 # if this is a 'nodx' node then ignore it
104 if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
105 dbg($line) if isdbg('nologchan');
106 dbg("PCPROT: Bad Node, dropped");
112 $nossid =~ s/-\d+$//;
113 if ($badspotter->in($nossid)) {
114 dbg($line) if isdbg('nologchan');
115 dbg("PCPROT: Bad Spotter, dropped");
119 # if we are converting announces to talk is it a dup?
121 if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
122 dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
127 # will we allow it at all?
130 if (@bad = BadWords::check($pc->[3])) {
131 my $bw = join ', ', @bad;
132 dbg($line) if isdbg('nologchan');
133 dbg("PCPROT: Badwords: '$bw', dropped");
138 # convert this to a PC93, coming from mycall with origin set and process it as such
139 $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]));
154 my $recurse = shift || 0;
156 # route 'foreign' pc26s
158 if ($pc->[7] ne $main::mycall) {
159 $self->route($pc->[7], $line);
164 dbg("INPUT PC$pcno $line origin $origin recurse: $recurse") if isdbg("pc11") || isdbg("pc61");
166 # my ($hops) = $pc->[8] =~ /^H(\d+)/;
168 # is the spotted callsign blank? This should really be trapped earlier but it
169 # could break other protocol sentences. Also check for lower case characters.
170 if ($pc->[2] =~ /^\s*$/) {
171 dbg($line) if isdbg('nologchan');
172 dbg("PCPROT: blank callsign, dropped");
175 if ($pc->[2] =~ /[a-z]/) {
176 dbg($line) if isdbg('nologchan');
177 dbg("PCPROT: lowercase characters, dropped");
182 # if this is a 'nodx' node then ignore it
183 if ($badnode->in($pc->[7])) {
184 dbg($line) if isdbg('nologchan');
185 dbg("PCPROT: Bad Node $pc->[7], dropped");
189 # convert the date to a unix date
190 my $d = cltounix($pc->[3], $pc->[4]);
191 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
192 if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
193 dbg($line) if isdbg('nologchan');
194 dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n");
199 if ($baddx->in($pc->[2])) {
200 dbg("PCPROT: Bad DX spot '$pc->[2]', ignored");
201 dbg($line) if isdbg('nologchan');
206 $pc->[5] =~ s/^\s+//; # take any leading blanks off
207 $pc->[2] = unpad($pc->[2]); # take off leading and trailing blanks from spotted callsign
208 if ($pc->[2] =~ /BUST\w*$/) {
209 dbg($line) if isdbg('nologchan');
210 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
214 my $nossid = $pc->[6];
215 $nossid =~ s/-\d+$//;
217 my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
220 if (@$pc > 8 && is_ipaddr($pc->[8])) {
224 if (DXCIDR::find($ip)) {
225 dbg($line) if isdbg('nologchan');
226 dbg("PCPROT: $ip in badip list, dropped");
227 # sneakily put it into the dup list to prevent following PC11s also getting through :-)
228 Spot::dup(@spot[0..4,7]);
233 # is this is a 'bad spotter' or an unknown user then ignore it.
234 if ($badspotter->in($nossid)) {
235 dbg($line) if isdbg('nologchan');
236 dbg("PCPROT: Bad Spotter $pc->[6], dropped");
240 # global spot filtering on INPUT
241 if ($self->{inspotsfilter}) {
242 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
244 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
250 # this is where we decide to delay PC11s in the hope that a PC61 will be along soon.
252 my $key = join '|', @spot[0..2,4,7]; # not including text
256 if ($key eq $pc11_saved->[0]) {
257 dbg("saved PC11 spot $key dumped, better pc61 received") if isdbg("pc11");
264 if ($key eq $pc11_saved->[0]) {
265 dbg("saved PC11 spot $key, dupe pc11 received and dumped") if isdbg("pc11");
266 return; # because it's a dup
270 # can we promote this to a PC61?
271 my $r = Route::User::get($spot[4]); # find spotter
272 if ($r && $r->ip) { # do we have an ip addres
273 $pcno = 61; # now turn this into a PC61
275 dbg("PC11 spot $key promoted to pc61 ip $spot[14]") if isdbg("pc11");
280 if ($pc11_saved && $key ne $pc11_saved) {
281 dbg("saved PC11 spot $pc11_saved->[0] ne new key $key, recursing") if isdbg("pc11");
282 shift @$pc11_saved; # saved key
283 my $self = shift @$pc11_saved;
284 my @saved = @$pc11_saved;
286 $self->handle_11(@saved, 1);
289 # if we are still a PC11, save it for a better offer
291 $pc11_saved = [$key, $self, $pcno, $line, $origin, $pc];
292 $pc11_saved_time = $main::systime;
293 dbg("saved new PC11 spot $key for a better offer") if isdbg("pc11");
296 dbg("PC61 spot $key passed onward") if isdbg("pc11");
301 # this goes after the input filtering, but before the add
302 # so that if it is input filtered, it isn't added to the dup
303 # list. This allows it to come in from a "legitimate" source
304 if (Spot::dup(@spot[0..4,7])) {
305 dbg("PCPROT: Duplicate Spot $pc->[0] $key ignored\n") if isdbg('chanerr') || isdbg('dupespot');
309 # here we verify the spotter is currently connected to the node it says it is one. AKA email sender verify
310 # but without the explicit probe to the node. We are relying on "historical" information, but it very likely
311 # to be current once we have seen the first PC92C from that node.
313 # As for spots generated from non-PC92 nodes, we'll see after about do_pc9x3h20m...
316 my $nroute = Route::Node::get($pc->[7]);
317 my $uroute = Route::Node::get($pc->[6]);
318 my $local = DXChannel::get($pc->[7]);
320 if ($nroute && ($nroute->last_PC92C || ($local && !$local->do_pc9x))) {
322 my $ip = $pcno == 61 ? $pc->[8] : '';
323 # $s .= "User $pc->[6] not logged in, " unless $uroute;
324 $s .= "User $pc->[6] not on node $pc->[7], " unless $nroute->is_user($pc->[6]);
325 # $s .= "Node $pc->[7] at '$ip' not on Node's IP " . $nroute->ip if $ip && $nroute && $nroute->ip && $nroute->ip ne $ip;
327 my $action = $senderverify > 1 ? ", DUMPED" : '';
329 dbg("PCPROT: Suspicious Spot $pc->[2] on $pc->[1] by $pc->[6]($ip)\@$pc->[7] $s$action");
330 return unless $senderverify < 2;
335 # we until here to do any censorship to try and reduce the amount of noise that repeated copies
336 # from other connected nodes cause
339 if (@bad = BadWords::check($pc->[5])) {
340 my $bw = join ', ', @bad;
341 dbg($line) if isdbg('nologchan');
342 dbg("PCPROT: Badwords: '$bw', dropped");
347 # If is a new PC11, store it, releasing the one that is there (if any),
348 # if a PC61 comes along then dump the stored PC11
349 # If there is a different PC11 stored, release that one and store this PC11 instead,
355 $ip ||= $spot[14] if exists $spot[14];
356 if (isdbg('progress')) {
357 my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
359 my $d = ztime($spot[2]);
360 my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
361 $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
362 $s .= " route: $origin";
367 # @spot at this point contains:-
368 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
369 # then spotted itu, spotted cq, spotters itu, spotters cq
370 # you should be able to route on any of these
373 # fix up qra locators of known users
374 my $user = DXUser::get_current($spot[4]);
376 my $qra = $user->qra;
377 unless ($qra && is_qra($qra)) {
378 my $lat = $user->lat;
379 my $long = $user->long;
380 if (defined $lat && defined $long) {
381 $user->qra(DXBearing::lltoqra($lat, $long));
386 # send a remote command to a distant cluster if it is visible and there is no
387 # qra locator and we havn't done it for a month.
389 unless ($user->qra) {
391 my $to = $user->homenode;
392 my $last = $user->lastoper || 0;
393 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
394 my $cmd = "forward/opernam $spot[4]";
395 # send the rcmd but we aren't interested in the replies...
396 my $dxchan = $node->dxchan;
397 if ($dxchan && $dxchan->is_clx) {
398 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
400 route(undef, $to, pc34($main::mycall, $to, $cmd));
402 if ($to ne $origin) {
404 $node = Route::Node::get($to);
406 $dxchan = $node->dxchan;
407 if ($dxchan && $dxchan->is_clx) {
408 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
410 route(undef, $to, pc34($main::mycall, $to, $cmd));
414 $user->lastoper($main::systime);
421 if (defined &Local::spot) {
424 $r = Local::spot($self, @spot);
429 # DON'T be silly and send on PC26s!
430 return if $pcno == 26;
432 # send out the filtered spots
433 send_dx_spot($self, $line, @spot) if @spot;
436 # used to kick outstanding PC11 if required
439 if ($pc11_saved && $main::systime > $pc11_saved_time) {
440 dbg("saved PC11 spot $pc11_saved->[0] timed out waiting, recursing") if isdbg("pc11");
441 shift @$pc11_saved; # saved key
442 my $self = shift @$pc11_saved;
443 my @saved = @$pc11_saved;
445 $self->handle_11(@saved, 1);
458 # announce duplicate checking
459 $pc->[3] =~ s/^\s+//; # remove leading blanks
461 # if this is a 'nodx' node then ignore it
462 if ($badnode->in($pc->[5])) {
463 dbg($line) if isdbg('nologchan');
464 dbg("PCPROT: Bad Node, dropped");
468 # if this is a 'bad spotter' user then ignore it
469 my $nossid = $pc->[1];
470 $nossid =~ s/-\d+$//;
471 if ($badspotter->in($nossid)) {
472 dbg($line) if isdbg('nologchan');
473 dbg("PCPROT: Bad Spotter, dropped");
477 # ignore PC12s from origins that use PCxx protocol
478 my $oref = Route::get($origin);
479 if ($oref->do_pc9x) {
480 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
486 if (@bad = BadWords::check($pc->[3])) {
487 my $bw = join ', ', @bad;
488 dbg($line) if isdbg('nologchan');
489 dbg("PCPROT: Badwords: '$bw', dropped");
497 if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
498 $self->send_chat(0, $line, @$pc[1..6]);
499 } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
501 # ignore something that looks like a chat line coming in with sysop
502 # flag - this is a kludge...
503 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
504 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
508 # here's a bit of fun, convert incoming ann with a callsign in the first word
509 # or one saying 'to <call>' to a talk if we can route to the recipient
511 my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
513 my $ref = Route::get($call);
515 $dxchan = $ref->dxchan;
516 $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
523 $self->send_announce(0, $line, @$pc[1..6]);
525 $self->route($pc->[2], $line);
529 if (defined &Local::ann) {
532 $r = Local::ann($self, $line, @$pc[1..6]);
546 if (eph_dup($line, $eph_pc15_restime)) {
549 unless ($self->{isolate}) {
550 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
566 my $ncall = $pc->[1];
567 my $newline = "PC16^";
569 # dos I want users from this channel?
570 unless ($self->user->wantpc16) {
571 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
576 if ($ncall eq $main::mycall) {
577 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
582 $h = 1 if DXChannel::get($ncall);
583 if ($h && $self->{call} ne $ncall) {
584 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
588 if (eph_dup($line)) {
592 # isolate now means only accept stuff from this call only
593 if ($self->{isolate} && $ncall ne $self->{call}) {
594 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
598 my $parent = Route::Node::get($ncall);
601 $dxchan = $parent->dxchan;
602 if ($dxchan && $dxchan ne $self) {
603 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
607 # input filter if required
608 return unless $self->in_filter_route($parent);
610 $parent = Route::Node->new($ncall);
614 if ($parent->via_pc92) {
615 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
622 for ($i = 2; $i < $#$pc; $i++) {
623 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
624 next unless $call && $conf && defined $here && is_callsign($call);
625 next if $call eq $main::mycall;
627 eph_del_regex("^PC17\\^$call\\^$ncall");
629 $conf = $conf eq '*';
631 # reject this if we think it is a node already
632 my $r = Route::Node::get($call);
633 my $u = DXUser::get_current($call) unless $r;
634 if ($r || ($u && $u->is_node)) {
635 dbg("PCPROT: $call is a node") if isdbg('chanerr');
639 $r = Route::User::get($call);
640 my $flags = Route::here($here)|Route::conf($conf);
643 my $au = $r->addparent($parent);
644 if ($r->flags != $flags) {
648 push @rout, $r if $h && $au;
650 my @ans = $parent->add_user($call, $flags);
651 push @rout, @ans if $h && @ans;
654 # add this station to the user database, if required
655 my $user = DXUser::get_current($ncall);
656 $user = DXUser->new($call) unless $user;
657 $user->homenode($parent->call) if !$user->homenode;
658 $user->node($parent->call);
659 $user->lastin($main::systime) unless DXChannel::get($call);
662 # send info to all logged in thingies
663 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
664 $self->tell_buddies('loginb', $call, $ncall);
667 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
668 # $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
682 my $ncall = $pc->[2];
683 my $ucall = $pc->[1];
685 eph_del_regex("^PC16\\^$ncall.*$ucall");
687 # do I want users from this channel?
688 unless ($self->user->wantpc16) {
689 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
693 if ($ncall eq $main::mycall) {
694 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
698 # isolate now means only accept stuff from this call only
699 if ($self->{isolate} && $ncall ne $self->{call}) {
700 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
704 my $uref = Route::User::get($ucall);
706 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
709 my $parent = Route::Node::get($ncall);
711 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
715 $dxchan = DXChannel::get($ncall);
716 if ($dxchan && $dxchan ne $self) {
717 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
722 if ($parent->via_pc92) {
723 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
728 if (DXChannel::get($ucall)) {
729 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
733 # input filter if required and then remove user if present
734 # return unless $self->in_filter_route($parent);
735 $parent->del_user($uref);
737 # send info to all logged in thingies
738 my $user = DXUser::get_current($ncall);
739 $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
740 $self->tell_buddies('logoutb', $ucall, $ncall);
742 if (eph_dup($line)) {
746 $self->route_pc17($origin, $line, $parent, $uref);
747 # $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
759 $self->state('init');
761 my $parent = Route::Node::get($self->{call});
763 # record the type and version offered
764 if (my ($version) = $pc->[1] =~ /(?:DXSpider|CC\s*Cluster)\s+Version: (\d+(?:\.\d+))/) {
766 $version += 53 if $version < 6;
767 $self->{version} = $version;
768 $self->user->version($version);
769 $parent->version($version);
770 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
772 $self->{build} = $build;
773 $self->user->build($build);
774 $parent->build($build);
775 dbg("$self->{call} = DXSpider version $version build $build");
776 unless ($self->is_spider) {
777 dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
778 $self->user->sort('S');
782 # $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
784 dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
785 $self->version(50.0);
786 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
787 $self->user->version($self->version);
790 if ($pc->[1] =~ /\bpc9x/) {
791 if ($self->{isolate}) {
792 dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
793 } elsif (!$self->user->wantpc9x) {
794 dbg("$self->{call} pc9x explicitly switched off, using old protocol");
796 $self->{do_pc9x} = 1;
797 dbg("$self->{call} Set do PC9x");
801 # first clear out any nodes on this dxchannel
802 my @rout = $parent->del_nodes;
803 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
804 $self->send_local_config();
812 my $homenode = shift;
814 # add this station to the user database, if required (don't remove SSID from nodes)
815 my $user = DXUser::get_current($call);
817 $user = DXUser->new($call);
818 $user->sort($type || 'U');
819 if ($user->is_node) {
820 $user->priv(1); # I have relented and defaulted nodes
821 $user->lockout(1) if $user->is_node;
823 $user->homenode($homenode) if $homenode;
824 $user->node($homenode);
827 $user->lastin($main::systime); # this make it last longer than just this invocation
828 $user->put; # just to make sure it gets written away!!!
829 dbg("DXProt: PC92 new user record for $call created");
832 # this is to fix a problem I introduced some build ago by using this function for users
833 # whereas it was only being used for nodes.
834 if ($user->is_user && $user->lockout && ($user->priv // 0) == 1) {
837 dbg("DXProt: PC92 user record for $call depriv'd and unlocked");
843 # incoming cluster list
853 my $newline = "PC19^";
856 my (@rout, @pc92out);
858 # first get the INTERFACE node
859 my $parent = Route::Node::get($self->{call});
861 dbg("PCPROT: my parent $self->{call} has disappeared");
870 # We are making a major change from now on. We are only going to accept
871 # PC19s from directly connected nodes. This means that we are probably
872 # going to throw away most of the data that we are being sent.
874 # The justification for this is that most of it is wrong or out of date
877 # From now on we are only going to believe PC92 data and locally connected
880 for ($i = 1; $i < $#$pc-1; $i += 4) {
881 my $here = $pc->[$i];
882 my $call = uc $pc->[$i+1];
883 my $conf = $pc->[$i+2];
884 my $ver = $pc->[$i+3];
885 next unless defined $here && defined $conf && is_callsign($call);
887 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
889 # check for sane parameters
890 # $ver = 5000 if $ver eq '0000';
891 next unless $ver && $ver =~ /^\d+$/;
892 next if $ver < 5000; # only works with version 5 software
893 next if length $call < 3; # min 3 letter callsigns
894 next if $call eq $main::mycall || $call eq $main::myalias;
896 # check that this PC19 isn't trying to alter the wrong dxchan
898 my $dxchan = DXChannel::get($call);
900 if ($dxchan == $self) {
903 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
908 # isolate now means only accept stuff from this call only
909 if ($self->{isolate} && $call ne $self->{call}) {
910 dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
914 my $user = check_add_user($call, 'A');
916 # if (eph_dup($genline)) {
917 # dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
923 if ($parent->via_pc92) {
924 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
929 my $r = Route::Node::get($call);
930 my $flags = Route::here($here)|Route::conf($conf);
932 # modify the routing table if it is in it, otherwise store it in the pc19list for now
935 if ($call ne $parent->call) {
936 if ($self->in_filter_route($r)) {
937 $ar = $parent->add($call, $ver, $flags);
938 # push @rout, $ar if $ar;
943 if ($r->version ne $ver || $r->flags != $flags) {
949 if ($call eq $self->{call} || $user->wantroutepc19) {
950 my $new = Route->new($call); # throw away
951 if ($self->in_filter_route($new)) {
952 my $ar = $parent->add($call, $ver, $flags);
953 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
954 push @rout, $ar if $ar;
955 push @pc92out, $r if $h;
962 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
963 my $mref = DXMsg::get_busy($call);
964 $mref->stop_msg($call) if $mref;
966 $user->lastin($main::systime) unless DXChannel::get($call);
970 # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
971 # but remember there will only be one (pair) these because any extras will be
974 # $self->route_pc21($self->{call}, $line, @rout);
975 $self->route_pc19($self->{call}, $line, @rout);
977 if (@pc92out && !$pc92_slug_changes) {
978 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
982 # send local configuration
991 if ($self->{do_pc9x} && $self->{state} ne 'init92') {
992 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
993 $self->{do_pc9x} = 0;
995 $self->send_local_config;
997 $self->state('normal');
998 $self->{lastping} = 0;
999 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1002 # delete a cluster from the list
1004 # This should never occur for directly connected nodes.
1014 my $call = uc $pc->[1];
1016 eph_del_regex("^PC1[679].*$call");
1018 # if I get a PC21 from the same callsign as self then ignore it
1019 if ($call eq $self->{call}) {
1020 dbg("PCPROT: self referencing PC21 from $self->{call}");
1024 # for the above reason and also because of the check for PC21s coming
1025 # in for self->call from outside being ignored further down
1026 # we don't need any isolation code here, because we will never
1027 # act on a PC21 with self->call in it.
1029 my $parent = Route::Node::get($self->{call});
1031 dbg("PCPROT: my parent $self->{call} has disappeared");
1038 if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
1039 my $node = Route::Node::get($call);
1042 if ($node->via_pc92) {
1043 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
1047 my $dxchan = DXChannel::get($call);
1048 if ($dxchan && $dxchan != $self) {
1049 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
1054 return unless $self->in_filter_route($node);
1056 # routing objects, force a PC21 if it is local
1057 push @rout, $node->del($parent);
1058 push @rout, $call if $dxchan && @rout == 0;
1061 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
1065 if (eph_dup($line)) {
1070 $self->route_pc21($origin, $line, @rout);
1071 # $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
1084 if ($self->{do_pc9x}) {
1085 if ($self->{state} ne 'init92') {
1086 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
1087 $self->{do_pc9x} = 0;
1090 $self->{lastping} = 0;
1091 $self->state('normal');
1092 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
1104 # route foreign' pc27s
1106 if ($pc->[8] ne $main::mycall) {
1107 $self->route($pc->[8], $line);
1114 my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
1115 my $sfi = unpad($pc->[3]);
1116 my $k = unpad($pc->[4]);
1117 my $i = unpad($pc->[5]);
1118 my ($r) = $pc->[6] =~ /R=(\d+)/;
1120 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1121 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
1125 # global wwv filtering on INPUT
1126 my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
1127 if ($self->{inwwvfilter}) {
1128 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
1130 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
1134 $pc->[7] =~ s/-\d+$//o; # remove spotter's ssid
1135 if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
1136 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1140 # note this only takes the first one it gets
1141 Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1142 dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
1144 if (defined &Local::wwv) {
1147 $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
1152 # DON'T be silly and send on PC27s!
1153 return if $pcno == 27;
1155 # broadcast to the eager world
1156 send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1168 my $call = uc $pc->[1];
1170 $nref = Route::Node::get($call);
1171 $uref = Route::User::get($call);
1172 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1174 if (eph_dup($line)) {
1178 $nref->here($pc->[2]) if $nref;
1179 $uref->here($pc->[2]) if $uref;
1180 my $ref = $nref || $uref;
1181 return unless $self->in_filter_route($ref);
1183 $self->route_pc24($origin, $line, $ref, $pc->[3]);
1195 if ($pc->[1] ne $main::mycall) {
1196 $self->route($pc->[1], $line);
1199 if ($pc->[2] eq $main::mycall) {
1200 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1204 Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1208 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1211 $self->send(pc26(@{$in}[0..4], $pc->[2]));
1217 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1220 $self->send(pc27(@{$in}[0..5], $pc->[2]));
1225 sub handle_26 {goto &handle_11}
1226 sub handle_27 {goto &handle_23}
1228 # mail/file handling
1237 if ($pc->[1] eq $main::mycall) {
1239 my $sub = "DXMsg::handle_$pcno";
1242 $self->route($pc->[1], $line) unless $self->is_clx;
1246 sub handle_29 {goto &handle_28}
1247 sub handle_30 {goto &handle_28}
1248 sub handle_31 {goto &handle_28}
1249 sub handle_32 {goto &handle_28}
1250 sub handle_33 {goto &handle_28}
1260 if (eph_dup($line, $eph_pc34_restime)) {
1263 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1267 # remote command replies
1276 eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1277 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1280 sub handle_36 {goto &handle_34}
1291 if ($pc->[1] eq $main::mycall) {
1293 my $sub = "DXDb::handle_$pcno";
1296 $self->route($pc->[1], $line) unless $self->is_clx;
1300 # node connected list from neighbour
1310 # incoming disconnect
1319 if ($pc->[1] eq $self->{call}) {
1320 $self->disconnect(1);
1322 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1326 sub handle_40 {goto &handle_28}
1337 my $call = $pc->[1];
1338 my $sort = $pc->[2];
1341 my $l = "PC41^$call^$sort";
1342 if (eph_dup($l, $eph_info_restime)) {
1346 # input filter if required
1347 # my $ref = Route::get($call) || Route->new($call);
1348 # return unless $self->in_filter_route($ref);
1350 if ($val eq $sort || $val =~ /^\s*$/) {
1351 dbg('PCPROT: invalid value') if isdbg('chanerr');
1355 if ($call eq $main::mycall || $call eq $main::myalias) {
1356 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1359 my $chan = DXChannel::get($call);
1361 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1365 # add this station to the user database, if required
1366 my $user = DXUser::get_current($call);
1367 $user = DXUser->new($call) unless $user;
1370 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1371 dbg("PCPROT: invalid name") if isdbg('chanerr');
1375 } elsif ($sort == 2) {
1377 } elsif ($sort == 3) {
1378 if (is_latlong($val)) {
1379 my ($lat, $long) = DXBearing::stoll($val);
1380 $user->lat($lat) if $lat;
1381 $user->long($long) if $long;
1382 $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1384 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1387 } elsif ($sort == 4) {
1388 $user->homenode($val);
1389 } elsif ($sort == 5) {
1390 if (is_qra(uc $val)) {
1391 my ($lat, $long) = DXBearing::qratoll(uc $val);
1392 $user->lat($lat) if $lat && !$user->lat;
1393 $user->long($long) if $long && !$user->long;
1394 $user->qra(uc $val);
1396 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1400 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1403 unless ($self->{isolate}) {
1404 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1407 # perhaps this IS what we want after all
1408 # $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1411 sub handle_42 {goto &handle_28}
1415 sub handle_44 {goto &handle_37}
1416 sub handle_45 {goto &handle_37}
1417 sub handle_46 {goto &handle_37}
1418 sub handle_47 {goto &handle_37}
1419 sub handle_48 {goto &handle_37}
1421 # message and database
1430 if (eph_dup($line)) {
1434 if ($pc->[1] eq $main::mycall) {
1435 DXMsg::handle_49($self, @$pc);
1437 $self->route($pc->[1], $line) unless $self->is_clx;
1441 # keep alive/user list
1450 return if (eph_dup($line));
1452 my $call = $pc->[1];
1454 my $node = Route::Node::get($call);
1456 return unless $node->call eq $self->{call};
1457 $node->usercount($pc->[2]) unless $node->users;
1459 $node->PC92C_dxchan($self->call, $pc->[-1]);
1461 # input filter if required
1462 # return unless $self->in_filter_route($node);
1464 unless ($self->{isolate}) {
1465 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1467 # $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1471 # incoming ping requests/answers
1481 my $from = $pc->[2];
1482 my $flag = $pc->[3];
1484 if ($to eq $main::myalias) {
1485 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1490 if ($to eq $main::mycall) {
1492 $self->send(pc51($from, $to, '0'));
1494 DXXml::Ping::handle_ping_reply($self, $from);
1497 if (eph_dup($line)) {
1500 # route down an appropriate thingy
1501 $self->route($to, $line);
1505 sub handle_61 { goto &handle_11; }
1507 # dunno but route it
1516 my $call = $pc->[1];
1517 if ($call ne $main::mycall) {
1518 $self->route($call, $line);
1531 my $call = $pc->[1];
1534 my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1535 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1536 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1539 $pc = [ map { unpad($_) } @$pc ];
1541 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1545 my $wcy = WCY::update($d, @$pc[2..12]);
1546 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');
1548 if (defined &Local::wcy) {
1551 $rep = Local::wcy($self, @$pc[1..12]);
1556 # broadcast to the eager world
1557 send_wcy_spot($self, $line, $d, @$pc[2..12]);
1560 # remote commands (incoming)
1569 $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1572 # remote command replies
1581 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1584 # decode a pc92 call: flag call : version : build
1585 sub _decode_pc92_call
1588 my @part = split /:/, $icall;
1589 my ($flag, $call) = unpack "A A*", $part[0];
1590 unless (defined $flag && $flag ge '0' && $flag le '7') {
1591 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1594 unless ($call && is_callsign($call)) {
1595 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1598 my $is_node = $flag & 4;
1599 my $is_extnode = $flag & 2;
1600 my $here = $flag & 1;
1601 my $version = $part[1] || 0;
1602 my $build = $part[2] || 0;
1603 my $ip = $part[3] || '';
1605 # remember that, at this stage, IPV6 addresses have : replaced by ,
1606 if (length $version > 4 && $version =~ /[,\.][\da-f]{1,4}/i) {
1610 $version =~ s/\D//g;
1611 $version = 0 unless $version && $version =~ /^[0-9]+$/;
1614 $build = 0 unless $build && $build =~ /^[0-9]+$/;
1617 $ip =~ s/^::ffff://i;
1618 $ip = '' unless is_ipaddr($ip);
1620 dbg("'$icall' = '" . join("', '", $call, $is_node, $is_extnode, $here, $version, $build, $ip) . "'") if isdbg('pc92');
1621 return ($call, $is_node, $is_extnode, $here, $version+0, $build+0, $ip);
1624 # decode a pc92 call: flag call : version : build
1625 sub _encode_pc92_call
1629 # plain call or value
1630 return $ref unless ref $ref;
1632 my $ext = shift || 0;
1634 my $call = $ref->call;
1636 $flag |= $ref->here ? 1 : 0;
1637 if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1639 my $dxchan = DXChannel::get($call);
1640 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1641 if (($ext & 1) && $ref->version) {
1642 my $version = $ref->version || 1.0;
1643 $version = $version * 100 + 5300 if $version < 50;
1644 $extra .= ":" . $version;
1647 if (($ext & 2) && $ref->ip) {
1650 $extra .= ':' . $ip;
1653 return "$flag$call$extra";
1666 my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1669 # remove spurious IPV6 prefix on IPV4 addresses
1674 my $ncall = $parent->call;
1675 if ($ncall ne $call) {
1679 # normalise call, delete any unnormalised calls in the users file.
1680 # then ignore this thingy
1681 my $normcall = normalise_call($call);
1682 if ($normcall ne $call) {
1683 next if DXChannel::get($call);
1684 $user = DXUser::get($call);
1685 dbg("DXProt::_add_thingy call $call normalised to $normcall, deleting spurious user $call");
1686 $user->del if $user;
1687 $call = $normcall; # this is safe because a route add will ignore duplicates
1691 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1692 $user = check_add_user($call, 'A');
1693 @rout = $parent->add($call, $version, Route::here($here), $ip);
1694 $r = Route::Node::get($call);
1695 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1696 if ($version && is_numeric($version) && !$r->K && !$user->K) {
1697 my $old = $user->sort;
1698 if ($user->is_ak1a && (($version >= 5455 && $build > 0) || ($version >= 3000 && $version <= 3500)) ) {
1700 dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) updated to " . $user->sort);
1701 } elsif ($user->is_spider && ($version < 3000 || ($version > 4000 && $version < 5455))) {
1702 unless ($version > 0 && $build == 0) {
1705 dbg("PCPROT::_add_thingy node $call v: $version b: $build sort ($old) downgraded to " . $user->sort);
1709 $r->version($user->version) if $user->version;
1710 $r->build($user->build) if $user->build;
1711 $r->K(1) if $user->K;
1713 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1714 $user = check_add_user($call, 'U', $parent->call);
1715 @rout = $parent->add_user($call, Route::here($here), $ip);
1716 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1717 $r = Route::User::get($call);
1721 Log('DXProt', "PC92A $call -> $ip on $ncall");
1723 if ($pc92_slug_changes && $parent == $main::routeroot) {
1724 $things_add{$call} = Route::get($call);
1725 delete $things_del{$call};
1727 $user->close($main::systime, $ip) if $user; # this just updates lastseen and the connlist list containing the IP address
1729 dbgprintring(10) if isdbg('nologchan');
1730 dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1742 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1747 $ref = Route::Node::get($call);
1748 dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1749 @rout = $ref->del($parent) if $ref;
1751 dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1752 $ref = Route::User::get($call);
1754 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1755 @rout = $parent->del_user($ref);
1758 if ($pc92_slug_changes && $parent == $main::routeroot) {
1759 $things_del{$call} = $ref unless exists $things_add{$call};
1760 delete $things_add{$call};
1766 # this will only happen if we are slugging changes and
1767 # there are some changes to be sent, it will create an add or a delete
1769 sub gen_pc92_changes
1771 my @add = values %things_add;
1772 my @del = values %things_del;
1773 return (\@add, \@del);
1776 sub clear_pc92_changes
1778 %things_add = %things_del = ();
1779 $last_pc92_slug = $main::systime;
1788 return $_last_pc9x_id;
1793 if (!$_last_time || $_last_time != $main::systime) {
1794 $_last_time = $main::systime;
1796 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1799 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1810 # check that the time is between 0 >= $t < 86400
1811 unless ($t >= 0 && $t < 86400) {
1812 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1816 # check that the time of this pc9x is within tolerance (default 15 mins either way)
1817 my $now = $main::systime - $main::systime_daystart ;
1818 my $diff = abs($now - $t);
1819 unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1820 my $c = ref $call ? $call->call : $call;
1821 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1825 my $parent = ref $call ? $call : Route::Node::get($call);
1827 # we only do this for external calls whose routing table
1828 # record come and go. The reference for mycall is permanent
1829 # and not that frequently used, it also never times out, so
1830 # the id on it is completely unreliable. Besides, only commands
1831 # originating on this box will go through this code...
1832 if ($parent->call ne $main::mycall) {
1833 my $lastid = $parent->lastid;
1834 if (defined $lastid) {
1836 # note that this is where we determine whether this pc9x has come in yesterday
1837 # but is still greater (modulo 86400) than the lastid or is simply an old
1838 # duplicate sentence. To determine this we need to do some module 86400
1839 # arithmetic. High numbers mean that this is an old duplicate sentence,
1840 # low numbers that it is a new sentence.
1842 # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1843 # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1844 # 86378 respectively in the calculation below).
1846 if ($t+86400-$lastid > $pc9x_past_age) {
1847 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1850 } elsif ($t == $lastid) {
1851 dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1854 # check that if we have a low number in lastid that yesterday's numbers
1855 # (likely in the 85000+ area) don't override them, thus causing flip flopping
1856 if ($lastid+86400-$t < $pc9x_past_age) {
1857 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1864 $parent = Route::Node->new($call);
1866 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1869 if (isdbg('pc92dedupe')) {
1870 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1871 my $val = $parent->{lastid};
1872 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1873 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1875 $parent->lastid($t);
1880 sub pc92_handle_first_slot
1887 my $oparent = $parent;
1891 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1892 if ($call && $is_node) {
1893 if ($call eq $main::mycall) {
1894 LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::mycall ($main::mycall), ignored");
1897 if ($call eq $main::myalias) {
1898 LogDbg('err', "PCPROT: $self->{call} : $call looped back onto \$main::myalias ($main::myalias), ignored");
1901 # this is only accepted from my "self".
1902 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1903 # locally connected. Local nodes always take precedence. But we remember the lastid
1904 # to try to reduce the number of dupe PC92s for this external node.
1905 if (DXChannel::get($call) && $call ne $self->{call}) {
1906 $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1907 dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1911 # reparent to external node (note that we must have received a 'C' or 'A' record
1912 # from the true parent node for this external before we get one for the this node
1913 unless ($parent = Route::Node::get($call)) {
1914 if ($is_extnode && $oparent) {
1915 @radd = _add_thingy($oparent, $slot, $self, $hops);
1918 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1922 $parent = check_pc9x_t($call, $t, 92) || return;
1923 $parent->via_pc92(1);
1924 $parent->PC92C_dxchan($self->{call}, $hops);
1927 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1930 $parent->here(Route::here($here));
1931 $parent->version($version || $pc19_version) if $version;
1932 $parent->build($build) if $build;
1933 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1934 return ($parent, @radd);
1937 # DXSpider routing entries
1948 my $pcall = $pc->[1];
1950 my $sort = $pc->[3];
1951 my $hops = $pc->[-1];
1953 # this catches loops of A/Ds
1954 # if (eph_dup($line, $pc9x_dupe_age)) {
1958 if ($pcall eq $main::mycall) {
1959 LogDbg('err', "PCPROT: looped back, ignored");
1963 if ($pcall eq $main::myalias) {
1964 LogDbg('err', "PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored");
1968 if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1969 if ($self->{isolate}) {
1970 dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1972 } elsif (!$self->user->wantpc9x) {
1973 dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1976 $self->state('init92');
1977 $self->{do_pc9x} = 1;
1978 dbg("DXPROT: Do pc9x set on $pcall");
1981 unless ($self->{do_pc9x}) {
1982 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1986 # don't create routing entries for D records that don't already exist
1987 # this is what causes all those PC92 loops!
1988 my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1989 my $oparent = $parent;
1991 $parent->do_pc9x(1);
1992 $parent->via_pc92(1);
1994 if ($sort eq 'F' || $sort eq 'R') {
1996 # this is the route finding section
1997 # here is where the consequences of the 'find' command
2000 my $from = $pc->[4];
2001 my $target = $pc->[5];
2007 if ($ref = DXChannel::get($target)) {
2008 $flag = 1; # we are directly connected
2010 $ref = Route::get($target);
2011 $dxchan = $ref->dxchan;
2014 if ($ref && $flag && $dxchan) {
2015 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
2018 } elsif ($sort eq 'R') {
2019 if (my $dxchan = DXChannel::get($from)) {
2020 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
2022 my $ref = Route::get($from);
2024 my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
2026 $_->send($line) for @dxchan;
2028 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2031 dbg("PCPROT: $self->{call} : type R no return route, ignored") if isdbg('chanerr') || isdbg('route');
2037 } elsif ($sort eq 'K') {
2038 $pc92Kin += length $line;
2040 # remember the last channel we arrived on
2041 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2043 my @ent = _decode_pc92_call($pc->[4]);
2048 ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
2049 return unless $parent; # dupe
2051 push @radd, $add if $add;
2053 my $call = $parent->call;
2054 my $version = $ent[4] || 0;
2055 my $build = $ent[5] || 0;
2057 my $oldbuild = $parent->build || 0;
2058 my $oldversion = $parent->version || 0;
2059 my $user = check_add_user($parent->call, 'S');
2060 my $oldsort = $user->sort // '';
2062 dbg("PCPROT: PC92 K v: $version ov: $oldversion b: $build ob: $oldbuild pk: " . ($parent->K || '0') . " uk: " . ($user->K || 0)) if isdbg('pc92k');
2064 if (is_numeric($version) || is_numeric($build)) {
2066 if (($oldversion ne $version || $build ne $oldbuild)) {
2067 dbg("PCPROT: PC92 K node $call updated version: $version (was $oldversion) build: $build (was $oldbuild)");
2068 $user->version($parent->version($version));
2069 $user->build($parent->build($build));
2072 if ($oldsort ne 'S') {
2073 dbg("PCPROT: PC92 K node $call updated sort: $sort (was $oldsort)");
2078 dbg("PCPROT: PC92 K node $call updated - marked as PC92 K user");
2082 $user->put if $changed;
2083 $parent->K(1); # mark this as come in on a K
2085 dbg("DXProt PC92 K version call $call: invalid version: '$version' or build: '$version', ignored");
2087 dbg("ROUTE: reset obscount on $call now " . $parent->obscount) if isdbg('obscount');
2089 } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
2091 $pc92Ain += length $line if $sort eq 'A';
2092 $pc92Cin += length $line if $sort eq 'C';
2093 $pc92Din += length $line if $sort eq 'D';
2095 # remember the last channel we arrived on
2096 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
2098 # this is the main route section
2099 # here is where all the routes are created and destroyed
2101 # cope with missing duplicate node calls in the first slot
2102 my $me = $pc->[4] || '';
2103 $me ||= _encode_pc92_call($parent) unless $me ;
2105 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
2109 # look at the first one which will always be a node of some sort
2110 # except in the case of 'A' or 'D' in which the $pcall is used
2111 # otherwise use the node call and update any information
2112 # that needs to be done.
2115 ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
2116 return unless $parent; # dupe
2119 push @radd, $add if $add;
2122 # do a pass through removing any references to either mycall
2126 next unless $_ && @$_;
2127 if ($_->[0] eq $main::mycall) {
2128 dbg("PCPROT: $self->{call} : type $sort $_->[0] refers to me, ignored") if isdbg('route');
2131 if ($_->[0] eq $main::myalias && $_->[1] || $_->[0] eq $main::mycall && $_->[1] == 0) {
2132 LogDbg('err',"PCPROT: $self->{call} : type $sort $_->[0] trying to change type to " . $_->[1]?"Node":"User" . ", ignored");
2141 push @radd, _add_thingy($parent, $_, $self, $hops);
2143 } elsif ($sort eq 'D') {
2145 push @rdel, _del_thingy($parent, $_, $self);
2147 } elsif ($sort eq 'C') {
2148 my (@nodes, @users);
2150 # we reset obscounts on config records as well as K records
2152 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
2155 foreach my $r (@nent) {
2156 # my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
2159 push @nodes, $r->[0];
2161 push @users, $r->[0];
2164 dbg("PCPROT: $self->{call} : pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr') || isdbg('route');
2168 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
2171 foreach my $r (@nent) {
2174 push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
2178 foreach my $r (@$dnodes) {
2179 push @rdel,_del_thingy($parent, [$r, 1], $self);
2181 foreach my $r (@$dusers) {
2182 push @rdel,_del_thingy($parent, [$r, 0], $self);
2185 # remember this last PC92C for rebroadcast on demand
2186 $parent->last_PC92C($line);
2188 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
2192 foreach my $r (@rdel) {
2195 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
2196 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
2198 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
2199 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
2200 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
2201 $self->route_pc19($pcall, undef, @pc19) if @pc19;
2202 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
2205 # broadcast it if we get here
2206 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2209 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
2210 # might be on two or more nodes at the same time or that there may be more than
2211 # one equal distance neighbour to a node.
2213 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
2214 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
2215 # each and then combined to give a set of dxchans to send the PC9x record down
2217 sub find_pc9x_routes
2220 my $ref = Route::get($to);
2224 if ($ref->isa('Route::User')) {
2225 my $dxchan = DXChannel::get($to);
2226 push @parent, $to if $dxchan;
2227 push @parent, $ref->parents;
2231 foreach my $p (@parent) {
2233 my @routes = Route::findroutes($p);
2234 foreach my $r (@routes) {
2235 $lasthops = $r->[0] unless defined $lasthops;
2236 if ($r->[0] == $lasthops) {
2237 $cand{$r->[1]->call} = $r->[1];
2243 return values %cand;
2254 # $self->{do_pc9x} ||= 1;
2256 my $pcall = $pc->[1]; # this is now checked earlier
2258 # remember that we are converting PC10->PC93 and self will be $main::me if it
2260 unless ($self->{do_pc9x}) {
2261 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2266 my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2268 my $to = uc $pc->[3];
2269 my $from = uc $pc->[4];
2270 my $via = uc $pc->[5];
2271 my $text = $pc->[6];
2272 my $onode = uc $pc->[7];
2273 $onode = $pcall if @$pc <= 8;
2275 # this is catch loops caused by bad software ...
2276 if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2280 if (isdbg('progress')) {
2281 my $vs = $via ne '*' ? " via $via" : '';
2282 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2286 # if this is a 'bad spotter' user then ignore it
2288 $nossid =~ s/-\d+$//;
2289 if ($badspotter->in($nossid)) {
2290 dbg($line) if isdbg('nologchan');
2291 dbg("PCPROT: Bad Spotter, dropped");
2295 # ignore PC93 coming in from outside this node with a target of local
2296 if ($to eq 'LOCAL' && $self != $main::me) {
2297 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2301 # will we allow it at all?
2304 if (@bad = BadWords::check($text)) {
2305 my $bw = join ', ', @bad;
2306 dbg($line) if isdbg('nologchan');
2307 dbg("PCPROT: Badwords: '$bw', dropped");
2312 # if it is routeable then then treat it like a talk
2313 my $ref = Route::get($to);
2317 # convert to PC10 or local talks where appropriate
2318 # PC93 capable nodes of the same hop count all get a copy
2319 # if there is a PC10 node then it will get a copy and that
2320 # will be it. Hopefully such a node will not figure highly
2321 # in the route list, unless it is local, 'cos it don't issue PC92s!
2322 # note that both local and PC93s at the same time are possible if the
2323 # user on more than one node.
2324 my @routes = find_pc9x_routes($to);
2326 foreach $dxchan (@routes) {
2327 if (ref $dxchan && $dxchan->isa('DXChannel')) {
2328 if ($dxchan->{do_pc9x}) {
2329 $dxchan->send($line);
2331 $dxchan->talk($from, $to, $via, $text, $onode);
2334 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2339 } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2341 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2342 my $wx = $to eq 'WX' ? '1' : '0';
2343 my $local = $via eq 'LOCAL' ? '*' : $via;
2345 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2346 return if $via eq 'LOCAL';
2347 } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2348 # chat messages really only locally connected users
2349 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2352 # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2353 $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2356 # if get here then rebroadcast the thing with its Hop count decremented (if
2357 # there is one). If it has a hop count and it decrements to zero then don't
2360 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2372 unless (eph_dup($line)) {
2374 my $pcall = $pc->[1];
2375 unless (is_callsign($pcall)) {
2376 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2380 my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2381 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2383 unless ($self->{isolate}) {
2384 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me