3 # This module impliments the handlers for the protocal mode for a dx cluster
5 # Copyright (c) 1998-2007 Dirk Koopman G1TLH
38 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
39 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
40 $pingint $obscount %pc19list $chatdupeage $chatimportfn
41 $investigation_int $pc19_version $myprot_version
42 %nodehops $baddx $badspotter $badnode $censorpc
43 $allowzero $decode_dk0wcy $send_opernam @checklist
44 $eph_pc15_restime $pc9x_past_age $pc9x_dupe_age
45 $pc10_dupe_age $pc92_slug_changes $last_pc92_slug
46 $pc92Ain $pc92Cin $pc92Din $pc92Kin $pc9x_time_tolerance
50 $pc9x_dupe_age = 60; # catch loops of circular (usually) D records
51 $pc10_dupe_age = 45; # just something to catch duplicate PC10->PC93 conversions
52 $pc92_slug_changes = 60*5; # slug any changes going outward for this long
53 $last_pc92_slug = 0; # the last time we sent out any delayed add or del PC92s
54 $pc9x_time_tolerance = 15*60; # the time on a pc9x is allowed to be out by this amount
55 $pc9x_past_age = (122*60)+ # maximum age in the past of a px9x (a config record might be the only
56 $pc9x_time_tolerance; # thing a node might send - once an hour and we allow an extra hour for luck)
57 # this is actually the partition between "yesterday" and "today" but old.
59 $pc92filterdef = bless ([
60 # tag, sort, field, priv, special parser
69 # incoming talk commands
78 # this is to catch loops caused by bad software ...
79 if (eph_dup($line, $pc10_dupe_age)) {
83 # will we allow it at all?
86 if (@bad = BadWords::check($pc->[3])) {
87 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
92 # is it for me or one of mine?
93 my ($from, $to, $via, $call, $dxchan);
95 if ($pc->[5] gt ' ') {
102 # if this is a 'nodx' node then ignore it
103 if ($badnode->in($pc->[6]) || ($via && $badnode->in($via))) {
104 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
108 # if this is a 'bad spotter' user then ignore it
110 $nossid =~ s/-\d+$//;
111 if ($badspotter->in($nossid)) {
112 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
116 # if we are converting announces to talk is it a dup?
118 if (AnnTalk::is_talk_candidate($from, $pc->[3]) && AnnTalk::dup($from, $to, $pc->[3])) {
119 dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
124 # convert this to a PC93, coming from mycall with origin set and process it as such
125 $main::me->normal(pc93($to, $from, $via, $pc->[3], $pc->[6]));
137 # route 'foreign' pc26s
139 if ($pc->[7] ne $main::mycall) {
140 $self->route($pc->[7], $line);
145 # my ($hops) = $pc->[8] =~ /^H(\d+)/;
147 # is the spotted callsign blank? This should really be trapped earlier but it
148 # could break other protocol sentences. Also check for lower case characters.
149 if ($pc->[2] =~ /^\s*$/) {
150 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
153 if ($pc->[2] =~ /[a-z]/) {
154 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
159 # if this is a 'nodx' node then ignore it
160 if ($badnode->in($pc->[7])) {
161 dbg("PCPROT: Bad Node $pc->[7], dropped") if isdbg('chanerr');
165 # 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
166 my $nossid = $pc->[6];
167 $nossid =~ s/-\d+$//;
168 if ($badspotter->in($nossid)) {
169 dbg("PCPROT: Bad Spotter $pc->[6], dropped") if isdbg('chanerr');
172 # unless (is_ipaddr($pc->[8]) || DXUser::get_current($pc->[6])) {
173 # dbg("PCPROT: Unknown Spotter $pc->[6], dropped") if isdbg('chanerr');
177 # convert the date to a unix date
178 my $d = cltounix($pc->[3], $pc->[4]);
179 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
180 if (!$d || (($pcno == 11 || $pcno == 61) && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
181 dbg("PCPROT: Spot ignored, invalid date or out of range ($pc->[3] $pc->[4])\n") if isdbg('chanerr');
186 if ($baddx->in($pc->[2]) || BadWords::check($pc->[2])) {
187 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
192 $pc->[5] =~ s/^\s+//; # take any leading blanks off
193 $pc->[2] = unpad($pc->[2]); # take off leading and trailing blanks from spotted callsign
194 if ($pc->[2] =~ /BUST\w*$/) {
195 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
200 if (@bad = BadWords::check($pc->[5])) {
201 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
206 my @spot = Spot::prepare($pc->[1], $pc->[2], $d, $pc->[5], $nossid, $pc->[7], $pc->[8]);
207 # global spot filtering on INPUT
208 if ($self->{inspotsfilter}) {
209 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
211 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
216 # this goes after the input filtering, but before the add
217 # so that if it is input filtered, it isn't added to the dup
218 # list. This allows it to come in from a "legitimate" source
219 if (Spot::dup(@spot[0..4,5])) {
220 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
228 $ip ||= $spot[14] if exists $spot[14];
229 if (isdbg('progress')) {
230 my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
232 my $d = ztime($spot[2]);
233 my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
234 $s .= $spot[3] ? " '$spot[3]'" : q{ ''};
235 $s .= " route: $origin";
240 # @spot at this point contains:-
241 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
242 # then spotted itu, spotted cq, spotters itu, spotters cq
243 # you should be able to route on any of these
246 # fix up qra locators of known users
247 my $user = DXUser::get_current($spot[4]);
249 my $qra = $user->qra;
250 unless ($qra && is_qra($qra)) {
251 my $lat = $user->lat;
252 my $long = $user->long;
253 if (defined $lat && defined $long) {
254 $user->qra(DXBearing::lltoqra($lat, $long));
259 # send a remote command to a distant cluster if it is visible and there is no
260 # qra locator and we havn't done it for a month.
262 unless ($user->qra) {
264 my $to = $user->homenode;
265 my $last = $user->lastoper || 0;
266 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
267 my $cmd = "forward/opernam $spot[4]";
268 # send the rcmd but we aren't interested in the replies...
269 my $dxchan = $node->dxchan;
270 if ($dxchan && $dxchan->is_clx) {
271 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
273 route(undef, $to, pc34($main::mycall, $to, $cmd));
275 if ($to ne $pc->[7]) {
277 $node = Route::Node::get($to);
279 $dxchan = $node->dxchan;
280 if ($dxchan && $dxchan->is_clx) {
281 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
283 route(undef, $to, pc34($main::mycall, $to, $cmd));
287 $user->lastoper($main::systime);
294 if (defined &Local::spot) {
297 $r = Local::spot($self, @spot);
302 # DON'T be silly and send on PC26s!
303 return if $pcno == 26;
305 # send out the filtered spots
306 send_dx_spot($self, $line, @spot) if @spot;
318 # announce duplicate checking
319 $pc->[3] =~ s/^\s+//; # remove leading blanks
323 if (@bad = BadWords::check($pc->[3])) {
324 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
329 # if this is a 'nodx' node then ignore it
330 if ($badnode->in($pc->[5])) {
331 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
335 # if this is a 'bad spotter' user then ignore it
336 my $nossid = $pc->[1];
337 $nossid =~ s/-\d+$//;
338 if ($badspotter->in($nossid)) {
339 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
343 # ignore PC12s from origins that use PCxx protocol
344 my $oref = Route::get($origin);
345 if ($oref->do_pc9x) {
346 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
352 if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
353 $self->send_chat(0, $line, @$pc[1..6]);
354 } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
356 # ignore something that looks like a chat line coming in with sysop
357 # flag - this is a kludge...
358 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
359 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
363 # here's a bit of fun, convert incoming ann with a callsign in the first word
364 # or one saying 'to <call>' to a talk if we can route to the recipient
366 my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
368 my $ref = Route::get($call);
370 $dxchan = $ref->dxchan;
371 $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
378 $self->send_announce(0, $line, @$pc[1..6]);
380 $self->route($pc->[2], $line);
384 if (defined &Local::ann) {
387 $r = Local::ann($self, $line, @$pc[1..6]);
401 if (eph_dup($line, $eph_pc15_restime)) {
404 unless ($self->{isolate}) {
405 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
421 my $ncall = $pc->[1];
422 my $newline = "PC16^";
424 # dos I want users from this channel?
425 unless ($self->user->wantpc16) {
426 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
431 if ($ncall eq $main::mycall) {
432 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
437 $h = 1 if DXChannel::get($ncall);
438 if ($h && $self->{call} ne $ncall) {
439 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
443 if (eph_dup($line)) {
447 # isolate now means only accept stuff from this call only
448 if ($self->{isolate} && $ncall ne $self->{call}) {
449 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
453 my $parent = Route::Node::get($ncall);
456 $dxchan = $parent->dxchan;
457 if ($dxchan && $dxchan ne $self) {
458 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
462 # input filter if required
463 return unless $self->in_filter_route($parent);
465 $parent = Route::Node->new($ncall);
469 if ($parent->via_pc92) {
470 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
477 for ($i = 2; $i < $#$pc; $i++) {
478 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
479 next unless $call && $conf && defined $here && is_callsign($call);
480 next if $call eq $main::mycall;
482 eph_del_regex("^PC17\\^$call\\^$ncall");
484 $conf = $conf eq '*';
486 # reject this if we think it is a node already
487 my $r = Route::Node::get($call);
488 my $u = DXUser::get_current($call) unless $r;
489 if ($r || ($u && $u->is_node)) {
490 dbg("PCPROT: $call is a node") if isdbg('chanerr');
494 $r = Route::User::get($call);
495 my $flags = Route::here($here)|Route::conf($conf);
498 my $au = $r->addparent($parent);
499 if ($r->flags != $flags) {
503 push @rout, $r if $h && $au;
505 my @ans = $parent->add_user($call, $flags);
506 push @rout, @ans if $h && @ans;
509 # add this station to the user database, if required
510 my $user = DXUser::get_current($ncall);
511 $user = DXUser->new($call) unless $user;
512 $user->homenode($parent->call) if !$user->homenode;
513 $user->node($parent->call);
514 $user->lastin($main::systime) unless DXChannel::get($call);
517 # send info to all logged in thingies
518 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
519 $self->tell_buddies('loginb', $call, $ncall);
522 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
523 # $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
537 my $ncall = $pc->[2];
538 my $ucall = $pc->[1];
540 eph_del_regex("^PC16\\^$ncall.*$ucall");
542 # do I want users from this channel?
543 unless ($self->user->wantpc16) {
544 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
548 if ($ncall eq $main::mycall) {
549 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
553 # isolate now means only accept stuff from this call only
554 if ($self->{isolate} && $ncall ne $self->{call}) {
555 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
559 my $uref = Route::User::get($ucall);
561 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
564 my $parent = Route::Node::get($ncall);
566 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
570 $dxchan = DXChannel::get($ncall);
571 if ($dxchan && $dxchan ne $self) {
572 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
577 if ($parent->via_pc92) {
578 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
583 if (DXChannel::get($ucall)) {
584 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
588 # input filter if required and then remove user if present
589 # return unless $self->in_filter_route($parent);
590 $parent->del_user($uref);
592 # send info to all logged in thingies
593 my $user = DXUser::get_current($ncall);
594 $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
595 $self->tell_buddies('logoutb', $ucall, $ncall);
597 if (eph_dup($line)) {
601 $self->route_pc17($origin, $line, $parent, $uref);
602 # $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
614 $self->state('init');
616 my $parent = Route::Node::get($self->{call});
618 # record the type and version offered
619 if (my ($version) = $pc->[1] =~ /DXSpider Version: (\d+\.\d+)/) {
620 $self->{version} = 53 + $version;
621 $self->user->version(53 + $version);
622 $parent->version(0 + $version);
623 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
624 $self->{build} = 0 + $build;
625 $self->user->build(0 + $build);
626 $parent->build(0 + $build);
627 dbg("$self->{call} = DXSpider version $version build $build");
628 unless ($self->is_spider) {
629 dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
630 $self->user->sort('S');
634 # $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
636 dbg("$self->{call} = Unknown software ($pc->[1] $pc->[2])");
637 $self->version(50.0);
638 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
639 $self->user->version($self->version);
642 if ($pc->[1] =~ /\bpc9x/) {
643 if ($self->{isolate}) {
644 dbg("$self->{call} pc9x recognised, but node is isolated, using old protocol");
645 } elsif (!$self->user->wantpc9x) {
646 dbg("$self->{call} pc9x explicitly switched off, using old protocol");
648 $self->{do_pc9x} = 1;
649 dbg("$self->{call} Set do PC9x");
653 # first clear out any nodes on this dxchannel
654 my @rout = $parent->del_nodes;
655 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
656 $self->send_local_config();
664 # add this station to the user database, if required (don't remove SSID from nodes)
665 my $user = DXUser::get_current($call);
667 $user = DXUser->new($call);
668 $user->priv(1); # I have relented and defaulted nodes
670 $user->homenode($call);
673 $user->lastin($main::systime); # this make it last longer than just this invocation
674 $user->put; # just to make sure it gets written away!!!
679 # incoming cluster list
689 my $newline = "PC19^";
692 my (@rout, @pc92out);
694 # first get the INTERFACE node
695 my $parent = Route::Node::get($self->{call});
697 dbg("PCPROT: my parent $self->{call} has disappeared");
706 # We are making a major change from now on. We are only going to accept
707 # PC19s from directly connected nodes. This means that we are probably
708 # going to throw away most of the data that we are being sent.
710 # The justification for this is that most of it is wrong or out of date
713 # From now on we are only going to believe PC92 data and locally connected
716 for ($i = 1; $i < $#$pc-1; $i += 4) {
717 my $here = $pc->[$i];
718 my $call = uc $pc->[$i+1];
719 my $conf = $pc->[$i+2];
720 my $ver = $pc->[$i+3];
721 next unless defined $here && defined $conf && is_callsign($call);
723 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
725 # check for sane parameters
726 # $ver = 5000 if $ver eq '0000';
727 next unless $ver && $ver =~ /^\d+$/;
728 next if $ver < 5000; # only works with version 5 software
729 next if length $call < 3; # min 3 letter callsigns
730 next if $call eq $main::mycall || $call eq $main::myalias;
732 # check that this PC19 isn't trying to alter the wrong dxchan
734 my $dxchan = DXChannel::get($call);
736 if ($dxchan == $self) {
739 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
744 # isolate now means only accept stuff from this call only
745 if ($self->{isolate} && $call ne $self->{call}) {
746 dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
750 my $user = check_add_node($call);
752 # if (eph_dup($genline)) {
753 # dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
759 if ($parent->via_pc92) {
760 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
765 my $r = Route::Node::get($call);
766 my $flags = Route::here($here)|Route::conf($conf);
768 # modify the routing table if it is in it, otherwise store it in the pc19list for now
771 if ($call ne $parent->call) {
772 if ($self->in_filter_route($r)) {
773 $ar = $parent->add($call, $ver, $flags);
774 # push @rout, $ar if $ar;
779 if ($r->version ne $ver || $r->flags != $flags) {
785 if ($call eq $self->{call} || $user->wantroutepc19) {
786 my $new = Route->new($call); # throw away
787 if ($self->in_filter_route($new)) {
788 my $ar = $parent->add($call, $ver, $flags);
789 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
790 push @rout, $ar if $ar;
791 push @pc92out, $r if $h;
798 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
799 my $mref = DXMsg::get_busy($call);
800 $mref->stop_msg($call) if $mref;
802 $user->lastin($main::systime) unless DXChannel::get($call);
806 # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
807 # but remember there will only be one (pair) these because any extras will be
810 # $self->route_pc21($self->{call}, $line, @rout);
811 $self->route_pc19($self->{call}, $line, @rout);
813 if (@pc92out && !$pc92_slug_changes) {
814 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
818 # send local configuration
827 if ($self->{do_pc9x} && $self->{state} ne 'init92') {
828 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
829 $self->{do_pc9x} = 0;
831 $self->send_local_config;
833 $self->state('normal');
834 $self->{lastping} = 0;
835 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
838 # delete a cluster from the list
840 # This should never occur for directly connected nodes.
850 my $call = uc $pc->[1];
852 eph_del_regex("^PC1[679].*$call");
854 # if I get a PC21 from the same callsign as self then ignore it
855 if ($call eq $self->{call}) {
856 dbg("PCPROT: self referencing PC21 from $self->{call}");
860 # for the above reason and also because of the check for PC21s coming
861 # in for self->call from outside being ignored further down
862 # we don't need any isolation code here, because we will never
863 # act on a PC21 with self->call in it.
865 my $parent = Route::Node::get($self->{call});
867 dbg("PCPROT: my parent $self->{call} has disappeared");
874 if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
875 my $node = Route::Node::get($call);
878 if ($node->via_pc92) {
879 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
883 my $dxchan = DXChannel::get($call);
884 if ($dxchan && $dxchan != $self) {
885 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
890 return unless $self->in_filter_route($node);
892 # routing objects, force a PC21 if it is local
893 push @rout, $node->del($parent);
894 push @rout, $call if $dxchan && @rout == 0;
897 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
901 if (eph_dup($line)) {
906 $self->route_pc21($origin, $line, @rout);
907 # $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
920 if ($self->{do_pc9x}) {
921 if ($self->{state} ne 'init92') {
922 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
923 $self->{do_pc9x} = 0;
926 $self->{lastping} = 0;
927 $self->state('normal');
928 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
940 # route foreign' pc27s
942 if ($pc->[8] ne $main::mycall) {
943 $self->route($pc->[8], $line);
950 my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
951 my $sfi = unpad($pc->[3]);
952 my $k = unpad($pc->[4]);
953 my $i = unpad($pc->[5]);
954 my ($r) = $pc->[6] =~ /R=(\d+)/;
956 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
957 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
961 # global wwv filtering on INPUT
962 my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
963 if ($self->{inwwvfilter}) {
964 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
966 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
970 $pc->[7] =~ s/-\d+$//o; # remove spotter's ssid
971 if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
972 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
976 # note this only takes the first one it gets
977 Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
978 dbg("WWV: <$pc->[2]>, sfi=$sfi k=$k info=$i '$pc->[6]' $pc->[7]\@$pc->[8] $r route: $origin") if isdbg('progress');
980 if (defined &Local::wwv) {
983 $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
988 # DON'T be silly and send on PC27s!
989 return if $pcno == 27;
991 # broadcast to the eager world
992 send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
1004 my $call = uc $pc->[1];
1006 $nref = Route::Node::get($call);
1007 $uref = Route::User::get($call);
1008 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1010 if (eph_dup($line)) {
1014 $nref->here($pc->[2]) if $nref;
1015 $uref->here($pc->[2]) if $uref;
1016 my $ref = $nref || $uref;
1017 return unless $self->in_filter_route($ref);
1019 $self->route_pc24($origin, $line, $ref, $pc->[3]);
1031 if ($pc->[1] ne $main::mycall) {
1032 $self->route($pc->[1], $line);
1035 if ($pc->[2] eq $main::mycall) {
1036 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1040 Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1044 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1047 $self->send(pc26(@{$in}[0..4], $pc->[2]));
1053 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1056 $self->send(pc27(@{$in}[0..5], $pc->[2]));
1061 sub handle_26 {goto &handle_11}
1062 sub handle_27 {goto &handle_23}
1064 # mail/file handling
1073 if ($pc->[1] eq $main::mycall) {
1075 my $sub = "DXMsg::handle_$pcno";
1078 $self->route($pc->[1], $line) unless $self->is_clx;
1082 sub handle_29 {goto &handle_28}
1083 sub handle_30 {goto &handle_28}
1084 sub handle_31 {goto &handle_28}
1085 sub handle_32 {goto &handle_28}
1086 sub handle_33 {goto &handle_28}
1096 if (eph_dup($line, $eph_pc34_restime)) {
1099 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1103 # remote command replies
1112 eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1113 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1116 sub handle_36 {goto &handle_34}
1127 if ($pc->[1] eq $main::mycall) {
1129 my $sub = "DXDb::handle_$pcno";
1132 $self->route($pc->[1], $line) unless $self->is_clx;
1136 # node connected list from neighbour
1146 # incoming disconnect
1155 if ($pc->[1] eq $self->{call}) {
1156 $self->disconnect(1);
1158 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1162 sub handle_40 {goto &handle_28}
1173 my $call = $pc->[1];
1174 my $sort = $pc->[2];
1177 my $l = "PC41^$call^$sort";
1178 if (eph_dup($l, $eph_info_restime)) {
1182 # input filter if required
1183 # my $ref = Route::get($call) || Route->new($call);
1184 # return unless $self->in_filter_route($ref);
1186 if ($val eq $sort || $val =~ /^\s*$/) {
1187 dbg('PCPROT: invalid value') if isdbg('chanerr');
1191 if ($call eq $main::mycall || $call eq $main::myalias) {
1192 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1195 my $chan = DXChannel::get($call);
1197 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1201 # add this station to the user database, if required
1202 my $user = DXUser::get_current($call);
1203 $user = DXUser->new($call) unless $user;
1206 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1207 dbg("PCPROT: invalid name") if isdbg('chanerr');
1211 } elsif ($sort == 2) {
1213 } elsif ($sort == 3) {
1214 if (is_latlong($val)) {
1215 my ($lat, $long) = DXBearing::stoll($val);
1216 $user->lat($lat) if $lat;
1217 $user->long($long) if $long;
1218 $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1220 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1223 } elsif ($sort == 4) {
1224 $user->homenode($val);
1225 } elsif ($sort == 5) {
1226 if (is_qra(uc $val)) {
1227 my ($lat, $long) = DXBearing::qratoll(uc $val);
1228 $user->lat($lat) if $lat && !$user->lat;
1229 $user->long($long) if $long && !$user->long;
1230 $user->qra(uc $val);
1232 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1236 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1239 unless ($self->{isolate}) {
1240 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1243 # perhaps this IS what we want after all
1244 # $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1247 sub handle_42 {goto &handle_28}
1251 sub handle_44 {goto &handle_37}
1252 sub handle_45 {goto &handle_37}
1253 sub handle_46 {goto &handle_37}
1254 sub handle_47 {goto &handle_37}
1255 sub handle_48 {goto &handle_37}
1257 # message and database
1266 if (eph_dup($line)) {
1270 if ($pc->[1] eq $main::mycall) {
1271 DXMsg::handle_49($self, @$pc);
1273 $self->route($pc->[1], $line) unless $self->is_clx;
1277 # keep alive/user list
1286 return if (eph_dup($line));
1288 my $call = $pc->[1];
1290 my $node = Route::Node::get($call);
1292 return unless $node->call eq $self->{call};
1293 $node->usercount($pc->[2]) unless $node->users;
1295 $node->PC92C_dxchan($self->call, $pc->[-1]);
1297 # input filter if required
1298 # return unless $self->in_filter_route($node);
1300 unless ($self->{isolate}) {
1301 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1303 # $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1307 # incoming ping requests/answers
1317 my $from = $pc->[2];
1318 my $flag = $pc->[3];
1320 if ($to eq $main::myalias) {
1321 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1326 if ($to eq $main::mycall) {
1328 $self->send(pc51($from, $to, '0'));
1330 DXXml::Ping::handle_ping_reply($self, $from);
1333 if (eph_dup($line)) {
1336 # route down an appropriate thingy
1337 $self->route($to, $line);
1341 sub handle_61 { goto &handle_11; }
1343 # dunno but route it
1352 my $call = $pc->[1];
1353 if ($call ne $main::mycall) {
1354 $self->route($call, $line);
1367 my $call = $pc->[1];
1370 my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1371 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1372 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1375 $pc = [ map { unpad($_) } @$pc ];
1377 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1381 my $wcy = WCY::update($d, @$pc[2..12]);
1382 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');
1384 if (defined &Local::wcy) {
1387 $rep = Local::wcy($self, @$pc[1..12]);
1392 # broadcast to the eager world
1393 send_wcy_spot($self, $line, $d, @$pc[2..12]);
1396 # remote commands (incoming)
1405 $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1408 # remote command replies
1417 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1420 # decode a pc92 call: flag call : version : build
1421 sub _decode_pc92_call
1424 my @part = split /:/, $icall;
1425 my ($flag, $call) = unpack "A A*", $part[0];
1426 unless (defined $flag && $flag ge '0' && $flag le '7') {
1427 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1430 unless ($call && is_callsign($call)) {
1431 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1434 my $is_node = $flag & 4;
1435 my $is_extnode = $flag & 2;
1436 my $here = $flag & 1;
1438 $ip ||= $part[1] if $part[1] && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
1439 $ip =~ s/,/:/g if $ip;
1440 return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1443 # decode a pc92 call: flag call : version : build
1444 sub _encode_pc92_call
1448 # plain call or value
1449 return $ref unless ref $ref;
1451 my $ext = shift || 0;
1453 my $call = $ref->call;
1455 $flag |= $ref->here ? 1 : 0;
1456 if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1458 my $dxchan = DXChannel::get($call);
1459 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1460 if (($ext & 1) && $ref->version) {
1461 my $version = $ref->version || 1.0;
1462 $version = $version * 100 + 5300 if $version < 50;
1463 $extra .= ":" . $version;
1466 if (($ext & 2) && $ref->ip) {
1469 $extra .= ':' . $ip;
1471 return "$flag$call$extra";
1484 my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1487 # remove spurious IPV6 prefix on IPV4 addresses
1488 $ip =~ s/^::ffff:// if $ip;
1491 my $ncall = $parent->call;
1492 if ($ncall ne $call) {
1494 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1495 @rout = $parent->add($call, $version, Route::here($here), $ip);
1496 my $r = Route::Node::get($call);
1497 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1500 Log('DXProt', "PC92A $call -> $ip on $ncall");
1503 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1504 @rout = $parent->add_user($call, Route::here($here), $ip);
1505 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1506 my $r = Route::User::get($call);
1509 Log('DXProt', "PC92A $call -> $ip on $ncall");
1512 if ($pc92_slug_changes && $parent == $main::routeroot) {
1513 $things_add{$call} = Route::get($call);
1514 delete $things_del{$call};
1518 dbg("DXProt::add_thingy: Trying to add parent $call to itself $ncall, ignored");
1530 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1535 $ref = Route::Node::get($call);
1536 dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1537 @rout = $ref->del($parent) if $ref;
1539 dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1540 $ref = Route::User::get($call);
1542 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1543 @rout = $parent->del_user($ref);
1546 if ($pc92_slug_changes && $parent == $main::routeroot) {
1547 $things_del{$call} = $ref unless exists $things_add{$call};
1548 delete $things_add{$call};
1554 # this will only happen if we are slugging changes and
1555 # there are some changes to be sent, it will create an add or a delete
1557 sub gen_pc92_changes
1559 my @add = values %things_add;
1560 my @del = values %things_del;
1561 return (\@add, \@del);
1564 sub clear_pc92_changes
1566 %things_add = %things_del = ();
1567 $last_pc92_slug = $main::systime;
1576 return $_last_pc9x_id;
1581 if (!$_last_time || $_last_time != $main::systime) {
1582 $_last_time = $main::systime;
1584 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1587 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1598 # check that the time is between 0 >= $t < 86400
1599 unless ($t >= 0 && $t < 86400) {
1600 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1604 # check that the time of this pc9x is within tolerance (default 15 mins either way)
1605 my $now = $main::systime - $main::systime_daystart ;
1606 my $diff = abs($now - $t);
1607 unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1608 my $c = ref $call ? $call->call : $call;
1609 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1613 my $parent = ref $call ? $call : Route::Node::get($call);
1615 # we only do this for external calls whose routing table
1616 # record come and go. The reference for mycall is permanent
1617 # and not that frequently used, it also never times out, so
1618 # the id on it is completely unreliable. Besides, only commands
1619 # originating on this box will go through this code...
1620 if ($parent->call ne $main::mycall) {
1621 my $lastid = $parent->lastid;
1622 if (defined $lastid) {
1624 # note that this is where we determine whether this pc9x has come in yesterday
1625 # but is still greater (modulo 86400) than the lastid or is simply an old
1626 # duplicate sentence. To determine this we need to do some module 86400
1627 # arithmetic. High numbers mean that this is an old duplicate sentence,
1628 # low numbers that it is a new sentence.
1630 # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1631 # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1632 # 86378 respectively in the calculation below).
1634 if ($t+86400-$lastid > $pc9x_past_age) {
1635 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1638 } elsif ($t == $lastid) {
1639 dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1642 # check that if we have a low number in lastid that yesterday's numbers
1643 # (likely in the 85000+ area) don't override them, thus causing flip flopping
1644 if ($lastid+86400-$t < $pc9x_past_age) {
1645 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1652 $parent = Route::Node->new($call);
1654 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1657 if (isdbg('pc92dedupe')) {
1658 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1659 my $val = $parent->{lastid};
1660 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1661 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1663 $parent->lastid($t);
1668 sub pc92_handle_first_slot
1675 my $oparent = $parent;
1679 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1680 if ($call && $is_node) {
1681 if ($call eq $main::mycall) {
1682 dbg("PCPROT: $call looped back onto \$main::mycall ($main::mycall), ignored") if isdbg('chan');
1685 if ($call eq $main::myalias) {
1686 dbg("PCPROT: $call looped back onto \$main::myalias ($main::myalias), ignored") if isdbg('chan');
1689 # this is only accepted from my "self".
1690 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1691 # locally connected. Local nodes always take precedence. But we remember the lastid
1692 # to try to reduce the number of dupe PC92s for this external node.
1693 if (DXChannel::get($call) && $call ne $self->{call}) {
1694 $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1695 dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1699 # reparent to external node (note that we must have received a 'C' or 'A' record
1700 # from the true parent node for this external before we get one for the this node
1701 unless ($parent = Route::Node::get($call)) {
1702 if ($is_extnode && $oparent) {
1703 @radd = _add_thingy($oparent, $slot, $self, $hops);
1706 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1710 $parent = check_pc9x_t($call, $t, 92) || return;
1711 $parent->via_pc92(1);
1712 $parent->PC92C_dxchan($self->{call}, $hops);
1715 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1718 $parent->here(Route::here($here));
1719 $parent->version($version || $pc19_version) if $version;
1720 $parent->build($build) if $build;
1721 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1722 return ($parent, @radd);
1725 # DXSpider routing entries
1736 my $pcall = $pc->[1];
1738 my $sort = $pc->[3];
1739 my $hops = $pc->[-1];
1741 # this catches loops of A/Ds
1742 # if (eph_dup($line, $pc9x_dupe_age)) {
1746 if ($pcall eq $main::mycall) {
1747 dbg("PCPROT: looped back, ignored") if isdbg('chan');
1751 if ($pcall eq $main::myalias) {
1752 dbg("PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored") if isdbg('chan');
1756 if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1757 if ($self->{isolate}) {
1758 dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1760 } elsif (!$self->user->wantpc9x) {
1761 dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1764 $self->state('init92');
1765 $self->{do_pc9x} = 1;
1766 dbg("DXPROT: Do pc9x set on $pcall");
1769 unless ($self->{do_pc9x}) {
1770 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1774 # don't create routing entries for D records that don't already exist
1775 # this is what causes all those PC92 loops!
1776 my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1777 my $oparent = $parent;
1779 $parent->do_pc9x(1);
1780 $parent->via_pc92(1);
1782 if ($sort eq 'F' || $sort eq 'R') {
1784 # this is the route finding section
1785 # here is where the consequences of the 'find' command
1788 my $from = $pc->[4];
1789 my $target = $pc->[5];
1795 if ($ref = DXChannel::get($target)) {
1796 $flag = 1; # we are directly connected
1798 $ref = Route::get($target);
1799 $dxchan = $ref->dxchan;
1802 if ($ref && $flag && $dxchan) {
1803 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1806 } elsif ($sort eq 'R') {
1807 if (my $dxchan = DXChannel::get($from)) {
1808 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1810 my $ref = Route::get($from);
1812 my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1814 $_->send($line) for @dxchan;
1816 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1819 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1825 } elsif ($sort eq 'K') {
1826 $pc92Kin += length $line;
1828 # remember the last channel we arrived on
1829 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1831 my @ent = _decode_pc92_call($pc->[4]);
1836 ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1837 return unless $parent; # dupe
1839 push @radd, $add if $add;
1841 $parent->version($ent[4]) if $ent[4];
1842 $parent->build($ent[5]) if $ent[5];
1844 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1846 } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1848 $pc92Ain += length $line if $sort eq 'A';
1849 $pc92Cin += length $line if $sort eq 'C';
1850 $pc92Din += length $line if $sort eq 'D';
1852 # remember the last channel we arrived on
1853 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1855 # this is the main route section
1856 # here is where all the routes are created and destroyed
1858 # cope with missing duplicate node calls in the first slot
1859 my $me = $pc->[4] || '';
1860 $me ||= _encode_pc92_call($parent) unless $me ;
1862 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
1866 # look at the first one which will always be a node of some sort
1867 # except in the case of 'A' or 'D' in which the $pcall is used
1868 # otherwise use the node call and update any information
1869 # that needs to be done.
1872 ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
1873 return unless $parent; # dupe
1876 push @radd, $add if $add;
1879 # do a pass through removing any references to either mycall
1883 next unless $_ && @$_;
1884 if ($_->[0] eq $main::mycall) {
1885 dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
1893 push @radd, _add_thingy($parent, $_, $self, $hops);
1895 } elsif ($sort eq 'D') {
1897 push @rdel, _del_thingy($parent, $_, $self);
1899 } elsif ($sort eq 'C') {
1900 my (@nodes, @users);
1902 # we reset obscounts on config records as well as K records
1904 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1907 foreach my $r (@nent) {
1908 # my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1911 push @nodes, $r->[0];
1913 push @users, $r->[0];
1916 dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1920 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1923 foreach my $r (@nent) {
1926 push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
1930 foreach my $r (@$dnodes) {
1931 push @rdel,_del_thingy($parent, [$r, 1], $self);
1933 foreach my $r (@$dusers) {
1934 push @rdel,_del_thingy($parent, [$r, 0], $self);
1937 # remember this last PC92C for rebroadcast on demand
1938 $parent->last_PC92C($line);
1940 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1944 foreach my $r (@rdel) {
1947 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1948 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1950 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1951 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1952 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1953 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1954 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1957 # broadcast it if we get here
1958 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1961 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
1962 # might be on two or more nodes at the same time or that there may be more than
1963 # one equal distance neighbour to a node.
1965 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
1966 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
1967 # each and then combined to give a set of dxchans to send the PC9x record down
1969 sub find_pc9x_routes
1972 my $ref = Route::get($to);
1976 if ($ref->isa('Route::User')) {
1977 my $dxchan = DXChannel::get($to);
1978 push @parent, $to if $dxchan;
1979 push @parent, $ref->parents;
1983 foreach my $p (@parent) {
1985 my @routes = Route::findroutes($p);
1986 foreach my $r (@routes) {
1987 $lasthops = $r->[0] unless defined $lasthops;
1988 if ($r->[0] == $lasthops) {
1989 $cand{$r->[1]->call} = $r->[1];
1995 return values %cand;
2006 # $self->{do_pc9x} ||= 1;
2008 my $pcall = $pc->[1]; # this is now checked earlier
2010 # remember that we are converting PC10->PC93 and self will be $main::me if it
2012 unless ($self->{do_pc9x}) {
2013 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2018 my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2020 my $to = uc $pc->[3];
2021 my $from = uc $pc->[4];
2022 my $via = uc $pc->[5];
2023 my $text = $pc->[6];
2024 my $onode = uc $pc->[7];
2025 $onode = $pcall if @$pc <= 8;
2027 # this is catch loops caused by bad software ...
2028 if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2032 if (isdbg('progress')) {
2033 my $vs = $via ne '*' ? " via $via" : '';
2034 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text' route: $origin";
2038 # will we allow it at all?
2041 if (@bad = BadWords::check($text)) {
2042 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2047 # if this is a 'bad spotter' user then ignore it
2049 $nossid =~ s/-\d+$//;
2050 if ($badspotter->in($nossid)) {
2051 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2055 # ignore PC93 coming in from outside this node with a target of local
2056 if ($to eq 'LOCAL' && $self != $main::me) {
2057 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2061 # if it is routeable then then treat it like a talk
2062 my $ref = Route::get($to);
2066 # convert to PC10 or local talks where appropriate
2067 # PC93 capable nodes of the same hop count all get a copy
2068 # if there is a PC10 node then it will get a copy and that
2069 # will be it. Hopefully such a node will not figure highly
2070 # in the route list, unless it is local, 'cos it don't issue PC92s!
2071 # note that both local and PC93s at the same time are possible if the
2072 # user on more than one node.
2073 my @routes = find_pc9x_routes($to);
2075 foreach $dxchan (@routes) {
2076 if (ref $dxchan && $dxchan->isa('DXChannel')) {
2077 if ($dxchan->{do_pc9x}) {
2078 $dxchan->send($line);
2080 $dxchan->talk($from, $to, $via, $text, $onode);
2083 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2088 } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2090 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2091 my $wx = $to eq 'WX' ? '1' : '0';
2092 my $local = $via eq 'LOCAL' ? '*' : $via;
2094 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2095 return if $via eq 'LOCAL';
2096 } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2097 # chat messages really only locally connected users
2098 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2101 # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2102 $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2105 # if get here then rebroadcast the thing with its Hop count decremented (if
2106 # there is one). If it has a hop count and it decrements to zero then don't
2109 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2121 unless (eph_dup($line)) {
2123 my $pcall = $pc->[1];
2124 unless (is_callsign($pcall)) {
2125 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2129 my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2130 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2132 unless ($self->{isolate}) {
2133 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me