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');
227 if (isdbg('progress')) {
229 $ip = sprintf "($spot[14])" if $spot[14];
230 my $s = sprintf "SPOT: $spot[1] on $spot[0] \@ %s by $spot[4]$ip\@$spot[7]", cldatetime($spot[2]);
231 $s .= " '$spot[3]'" if $spot[3];
236 # @spot at this point contains:-
237 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
238 # then spotted itu, spotted cq, spotters itu, spotters cq
239 # you should be able to route on any of these
242 # fix up qra locators of known users
243 my $user = DXUser::get_current($spot[4]);
245 my $qra = $user->qra;
246 unless ($qra && is_qra($qra)) {
247 my $lat = $user->lat;
248 my $long = $user->long;
249 if (defined $lat && defined $long) {
250 $user->qra(DXBearing::lltoqra($lat, $long));
255 # send a remote command to a distant cluster if it is visible and there is no
256 # qra locator and we havn't done it for a month.
258 unless ($user->qra) {
260 my $to = $user->homenode;
261 my $last = $user->lastoper || 0;
262 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
263 my $cmd = "forward/opernam $spot[4]";
264 # send the rcmd but we aren't interested in the replies...
265 my $dxchan = $node->dxchan;
266 if ($dxchan && $dxchan->is_clx) {
267 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
269 route(undef, $to, pc34($main::mycall, $to, $cmd));
271 if ($to ne $pc->[7]) {
273 $node = Route::Node::get($to);
275 $dxchan = $node->dxchan;
276 if ($dxchan && $dxchan->is_clx) {
277 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
279 route(undef, $to, pc34($main::mycall, $to, $cmd));
283 $user->lastoper($main::systime);
290 if (defined &Local::spot) {
293 $r = Local::spot($self, @spot);
298 # DON'T be silly and send on PC26s!
299 return if $pcno == 26;
301 # send out the filtered spots
302 send_dx_spot($self, $line, @spot) if @spot;
314 # announce duplicate checking
315 $pc->[3] =~ s/^\s+//; # remove leading blanks
319 if (@bad = BadWords::check($pc->[3])) {
320 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
325 # if this is a 'nodx' node then ignore it
326 if ($badnode->in($pc->[5])) {
327 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
331 # if this is a 'bad spotter' user then ignore it
332 my $nossid = $pc->[1];
333 $nossid =~ s/-\d+$//;
334 if ($badspotter->in($nossid)) {
335 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
339 # ignore PC12s from origins that use PCxx protocol
340 my $oref = Route::get($origin);
341 if ($oref->do_pc9x) {
342 dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
348 if ((($dxchan = DXChannel::get($pc->[2])) && $dxchan->is_user) || $pc->[4] =~ /^[\#\w.]+$/){
349 $self->send_chat(0, $line, @$pc[1..6]);
350 } elsif ($pc->[2] eq '*' || $pc->[2] eq $main::mycall) {
352 # ignore something that looks like a chat line coming in with sysop
353 # flag - this is a kludge...
354 if ($pc->[3] =~ /^\#\d+ / && $pc->[4] eq '*') {
355 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
359 # here's a bit of fun, convert incoming ann with a callsign in the first word
360 # or one saying 'to <call>' to a talk if we can route to the recipient
362 my $call = AnnTalk::is_talk_candidate($pc->[1], $pc->[3]);
364 my $ref = Route::get($call);
366 $dxchan = $ref->dxchan;
367 $dxchan->talk($pc->[1], $call, undef, $pc->[3], $pc->[5]) if $dxchan != $self;
374 $self->send_announce(0, $line, @$pc[1..6]);
376 $self->route($pc->[2], $line);
380 if (defined &Local::ann) {
383 $r = Local::ann($self, $line, @$pc[1..6]);
397 if (eph_dup($line, $eph_pc15_restime)) {
400 unless ($self->{isolate}) {
401 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
417 my $ncall = $pc->[1];
418 my $newline = "PC16^";
420 # dos I want users from this channel?
421 unless ($self->user->wantpc16) {
422 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
427 if ($ncall eq $main::mycall) {
428 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
433 $h = 1 if DXChannel::get($ncall);
434 if ($h && $self->{call} ne $ncall) {
435 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
439 if (eph_dup($line)) {
443 # isolate now means only accept stuff from this call only
444 if ($self->{isolate} && $ncall ne $self->{call}) {
445 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
449 my $parent = Route::Node::get($ncall);
452 $dxchan = $parent->dxchan;
453 if ($dxchan && $dxchan ne $self) {
454 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
458 # input filter if required
459 return unless $self->in_filter_route($parent);
461 $parent = Route::Node->new($ncall);
465 if ($parent->via_pc92) {
466 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
473 for ($i = 2; $i < $#$pc; $i++) {
474 my ($call, $conf, $here) = $pc->[$i] =~ /^(\S+) (\S) (\d)/o;
475 next unless $call && $conf && defined $here && is_callsign($call);
476 next if $call eq $main::mycall;
478 eph_del_regex("^PC17\\^$call\\^$ncall");
480 $conf = $conf eq '*';
482 # reject this if we think it is a node already
483 my $r = Route::Node::get($call);
484 my $u = DXUser::get_current($call) unless $r;
485 if ($r || ($u && $u->is_node)) {
486 dbg("PCPROT: $call is a node") if isdbg('chanerr');
490 $r = Route::User::get($call);
491 my $flags = Route::here($here)|Route::conf($conf);
494 my $au = $r->addparent($parent);
495 if ($r->flags != $flags) {
499 push @rout, $r if $h && $au;
501 my @ans = $parent->add_user($call, $flags);
502 push @rout, @ans if $h && @ans;
505 # add this station to the user database, if required
506 my $user = DXUser::get_current($ncall);
507 $user = DXUser->new($call) unless $user;
508 $user->homenode($parent->call) if !$user->homenode;
509 $user->node($parent->call);
510 $user->lastin($main::systime) unless DXChannel::get($call);
513 # send info to all logged in thingies
514 $self->tell_login('loginu', "$ncall: $call") if $user->is_local_node;
515 $self->tell_buddies('loginb', $call, $ncall);
518 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
519 # $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
533 my $ncall = $pc->[2];
534 my $ucall = $pc->[1];
536 eph_del_regex("^PC16\\^$ncall.*$ucall");
538 # do I want users from this channel?
539 unless ($self->user->wantpc16) {
540 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
544 if ($ncall eq $main::mycall) {
545 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
549 # isolate now means only accept stuff from this call only
550 if ($self->{isolate} && $ncall ne $self->{call}) {
551 dbg("PCPROT: $self->{call} isolated, $ncall ignored") if isdbg('chanerr');
555 my $uref = Route::User::get($ucall);
557 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
560 my $parent = Route::Node::get($ncall);
562 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
566 $dxchan = DXChannel::get($ncall);
567 if ($dxchan && $dxchan ne $self) {
568 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
573 if ($parent->via_pc92) {
574 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
579 if (DXChannel::get($ucall)) {
580 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
584 # input filter if required and then remove user if present
585 # return unless $self->in_filter_route($parent);
586 $parent->del_user($uref);
588 # send info to all logged in thingies
589 my $user = DXUser::get_current($ncall);
590 $self->tell_login('logoutu', "$ncall: $ucall") if $user && $user->is_local_node;
591 $self->tell_buddies('logoutb', $ucall, $ncall);
593 if (eph_dup($line)) {
597 $self->route_pc17($origin, $line, $parent, $uref);
598 # $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
610 $self->state('init');
612 my $parent = Route::Node::get($self->{call});
614 # record the type and version offered
615 if (my ($version) = $pc->[1] =~ /DXSpider Version: (\d+\.\d+)/) {
616 $self->{version} = 53 + $version;
617 $self->user->version(53 + $version);
618 $parent->version(0 + $version);
619 my ($build) = $pc->[1] =~ /Build: (\d+(?:\.\d+)?)/;
620 $self->{build} = 0 + $build;
621 $self->user->build(0 + $build);
622 $parent->build(0 + $build);
623 dbg("DXSpider version $version build $build");
624 unless ($self->is_spider) {
625 dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
626 $self->user->sort('S');
630 # $self->{handle_xml}++ if DXXml::available() && $pc->[1] =~ /\bxml/;
632 dbg("Unknown software");
633 $self->version(50.0);
634 $self->version($pc->[2] / 100) if $pc->[2] && $pc->[2] =~ /^\d+$/;
635 $self->user->version($self->version);
638 if ($pc->[1] =~ /\bpc9x/) {
639 if ($self->{isolate}) {
640 dbg("pc9x recognised, but $self->{call} is isolated, using old protocol");
641 } elsif (!$self->user->wantpc9x) {
642 dbg("pc9x explicitly switched off on $self->{call}, using old protocol");
644 $self->{do_pc9x} = 1;
645 dbg("Do px9x set on $self->{call}");
649 # first clear out any nodes on this dxchannel
650 my @rout = $parent->del_nodes;
651 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
652 $self->send_local_config();
660 # add this station to the user database, if required (don't remove SSID from nodes)
661 my $user = DXUser::get_current($call);
663 $user = DXUser->new($call);
664 $user->priv(1); # I have relented and defaulted nodes
666 $user->homenode($call);
673 # incoming cluster list
683 my $newline = "PC19^";
686 my (@rout, @pc92out);
688 # first get the INTERFACE node
689 my $parent = Route::Node::get($self->{call});
691 dbg("PCPROT: my parent $self->{call} has disappeared");
700 # We are making a major change from now on. We are only going to accept
701 # PC19s from directly connected nodes. This means that we are probably
702 # going to throw away most of the data that we are being sent.
704 # The justification for this is that most of it is wrong or out of date
707 # From now on we are only going to believe PC92 data and locally connected
710 for ($i = 1; $i < $#$pc-1; $i += 4) {
711 my $here = $pc->[$i];
712 my $call = uc $pc->[$i+1];
713 my $conf = $pc->[$i+2];
714 my $ver = $pc->[$i+3];
715 next unless defined $here && defined $conf && is_callsign($call);
717 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
719 # check for sane parameters
720 # $ver = 5000 if $ver eq '0000';
721 next unless $ver && $ver =~ /^\d+$/;
722 next if $ver < 5000; # only works with version 5 software
723 next if length $call < 3; # min 3 letter callsigns
724 next if $call eq $main::mycall || $call eq $main::myalias;
726 # check that this PC19 isn't trying to alter the wrong dxchan
728 my $dxchan = DXChannel::get($call);
730 if ($dxchan == $self) {
733 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
738 # isolate now means only accept stuff from this call only
739 if ($self->{isolate} && $call ne $self->{call}) {
740 dbg("PCPROT: $self->{call} isolated, $call ignored") if isdbg('chanerr');
744 my $user = check_add_node($call);
746 # if (eph_dup($genline)) {
747 # dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
753 if ($parent->via_pc92) {
754 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
759 my $r = Route::Node::get($call);
760 my $flags = Route::here($here)|Route::conf($conf);
762 # modify the routing table if it is in it, otherwise store it in the pc19list for now
765 if ($call ne $parent->call) {
766 if ($self->in_filter_route($r)) {
767 $ar = $parent->add($call, $ver, $flags);
768 # push @rout, $ar if $ar;
773 if ($r->version ne $ver || $r->flags != $flags) {
779 if ($call eq $self->{call} || $user->wantroutepc19) {
780 my $new = Route->new($call); # throw away
781 if ($self->in_filter_route($new)) {
782 my $ar = $parent->add($call, $ver, $flags);
783 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
784 push @rout, $ar if $ar;
785 push @pc92out, $r if $h;
792 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
793 my $mref = DXMsg::get_busy($call);
794 $mref->stop_msg($call) if $mref;
796 $user->lastin($main::systime) unless DXChannel::get($call);
800 # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
801 # but remember there will only be one (pair) these because any extras will be
804 # $self->route_pc21($self->{call}, $line, @rout);
805 $self->route_pc19($self->{call}, $line, @rout);
807 if (@pc92out && !$pc92_slug_changes) {
808 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
812 # send local configuration
821 if ($self->{do_pc9x} && $self->{state} ne 'init92') {
822 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
823 $self->{do_pc9x} = 0;
825 $self->send_local_config;
827 $self->state('normal');
828 $self->{lastping} = 0;
829 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
832 # delete a cluster from the list
834 # This should never occur for directly connected nodes.
844 my $call = uc $pc->[1];
846 eph_del_regex("^PC1[679].*$call");
848 # if I get a PC21 from the same callsign as self then ignore it
849 if ($call eq $self->{call}) {
850 dbg("PCPROT: self referencing PC21 from $self->{call}");
854 # for the above reason and also because of the check for PC21s coming
855 # in for self->call from outside being ignored further down
856 # we don't need any isolation code here, because we will never
857 # act on a PC21 with self->call in it.
859 my $parent = Route::Node::get($self->{call});
861 dbg("PCPROT: my parent $self->{call} has disappeared");
868 if ($call ne $main::mycall && $call ne $main::myalias) { # don't allow malicious buggers to disconnect me!
869 my $node = Route::Node::get($call);
872 if ($node->via_pc92) {
873 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
877 my $dxchan = DXChannel::get($call);
878 if ($dxchan && $dxchan != $self) {
879 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chan');
884 return unless $self->in_filter_route($node);
886 # routing objects, force a PC21 if it is local
887 push @rout, $node->del($parent);
888 push @rout, $call if $dxchan && @rout == 0;
891 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chan');
895 if (eph_dup($line)) {
900 $self->route_pc21($origin, $line, @rout);
901 # $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
914 if ($self->{do_pc9x}) {
915 if ($self->{state} ne 'init92') {
916 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
917 $self->{do_pc9x} = 0;
920 $self->{lastping} = 0;
921 $self->state('normal');
922 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
934 # route foreign' pc27s
936 if ($pc->[8] ne $main::mycall) {
937 $self->route($pc->[8], $line);
944 my $d = cltounix($pc->[1], sprintf("%02d18Z", $pc->[2]));
945 my $sfi = unpad($pc->[3]);
946 my $k = unpad($pc->[4]);
947 my $i = unpad($pc->[5]);
948 my ($r) = $pc->[6] =~ /R=(\d+)/;
950 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
951 dbg("PCPROT: WWV Date ($pc->[1] $pc->[2]) out of range") if isdbg('chanerr');
955 # global wwv filtering on INPUT
956 my @dxcc = ((Prefix::cty_data($pc->[7]))[0..2], (Prefix::cty_data($pc->[8]))[0..2]);
957 if ($self->{inwwvfilter}) {
958 my ($filter, $hops) = $self->{inwwvfilter}->it(@$pc[7,8], $origin, @dxcc);
960 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
964 $pc->[7] =~ s/-\d+$//o; # remove spotter's ssid
965 if (Geomag::dup($d,$sfi,$k,$i,$pc->[6],$pc->[7])) {
966 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
970 # note this only takes the first one it gets
971 Geomag::update($d, $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
972 dbg("WWV: $d $pc->[2], sfi:$sfi k:$k info:$i $pc->[6] $pc->[7] $pc->[8] $r") if isdbg('progress');
974 if (defined &Local::wwv) {
977 $rep = Local::wwv($self, $pc->[1], $pc->[2], $sfi, $k, $i, @$pc[6..8], $r);
982 # DON'T be silly and send on PC27s!
983 return if $pcno == 27;
985 # broadcast to the eager world
986 send_wwv_spot($self, $line, $d, $pc->[2], $sfi, $k, $i, @$pc[6..8]);
998 my $call = uc $pc->[1];
1000 $nref = Route::Node::get($call);
1001 $uref = Route::User::get($call);
1002 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1004 if (eph_dup($line)) {
1008 $nref->here($pc->[2]) if $nref;
1009 $uref->here($pc->[2]) if $uref;
1010 my $ref = $nref || $uref;
1011 return unless $self->in_filter_route($ref);
1013 $self->route_pc24($origin, $line, $ref, $pc->[3]);
1025 if ($pc->[1] ne $main::mycall) {
1026 $self->route($pc->[1], $line);
1029 if ($pc->[2] eq $main::mycall) {
1030 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chan');
1034 Log('DXProt', "Merge request for $pc->[3] spots and $pc->[4] WWV from $pc->[2]");
1038 my @in = reverse Spot::search(1, undef, undef, 0, $pc->[3]);
1041 $self->send(pc26(@{$in}[0..4], $pc->[2]));
1047 my @in = reverse Geomag::search(0, $pc->[4], time, 1);
1050 $self->send(pc27(@{$in}[0..5], $pc->[2]));
1055 sub handle_26 {goto &handle_11}
1056 sub handle_27 {goto &handle_23}
1058 # mail/file handling
1067 if ($pc->[1] eq $main::mycall) {
1069 my $sub = "DXMsg::handle_$pcno";
1072 $self->route($pc->[1], $line) unless $self->is_clx;
1076 sub handle_29 {goto &handle_28}
1077 sub handle_30 {goto &handle_28}
1078 sub handle_31 {goto &handle_28}
1079 sub handle_32 {goto &handle_28}
1080 sub handle_33 {goto &handle_28}
1090 if (eph_dup($line, $eph_pc34_restime)) {
1093 $self->process_rcmd($pc->[1], $pc->[2], $pc->[2], $pc->[3]);
1097 # remote command replies
1106 eph_del_regex("^PC35\\^$pc->[2]\\^$pc->[1]\\^");
1107 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[1], $pc->[3]);
1110 sub handle_36 {goto &handle_34}
1121 if ($pc->[1] eq $main::mycall) {
1123 my $sub = "DXDb::handle_$pcno";
1126 $self->route($pc->[1], $line) unless $self->is_clx;
1130 # node connected list from neighbour
1140 # incoming disconnect
1149 if ($pc->[1] eq $self->{call}) {
1150 $self->disconnect(1);
1152 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1156 sub handle_40 {goto &handle_28}
1167 my $call = $pc->[1];
1168 my $sort = $pc->[2];
1171 my $l = "PC41^$call^$sort";
1172 if (eph_dup($l, $eph_info_restime)) {
1176 # input filter if required
1177 # my $ref = Route::get($call) || Route->new($call);
1178 # return unless $self->in_filter_route($ref);
1180 if ($val eq $sort || $val =~ /^\s*$/) {
1181 dbg('PCPROT: invalid value') if isdbg('chanerr');
1185 if ($call eq $main::mycall || $call eq $main::myalias) {
1186 dbg "DXPROT: PC41 trying to update $call from outside via $origin, ignored";
1189 my $chan = DXChannel::get($call);
1191 dbg "DXPROT: PC41 trying to update online $call from outside via $origin, ignored";
1195 # add this station to the user database, if required
1196 my $user = DXUser::get_current($call);
1197 $user = DXUser->new($call) unless $user;
1200 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1201 dbg("PCPROT: invalid name") if isdbg('chanerr');
1205 } elsif ($sort == 2) {
1207 } elsif ($sort == 3) {
1208 if (is_latlong($val)) {
1209 my ($lat, $long) = DXBearing::stoll($val);
1210 $user->lat($lat) if $lat;
1211 $user->long($long) if $long;
1212 $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1214 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1217 } elsif ($sort == 4) {
1218 $user->homenode($val);
1219 } elsif ($sort == 5) {
1220 if (is_qra(uc $val)) {
1221 my ($lat, $long) = DXBearing::qratoll(uc $val);
1222 $user->lat($lat) if $lat && !$user->lat;
1223 $user->long($long) if $long && !$user->long;
1224 $user->qra(uc $val);
1226 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1230 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1233 unless ($self->{isolate}) {
1234 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1237 # perhaps this IS what we want after all
1238 # $self->route_pc41($ref, $call, $sort, $val, $pc->[4]);
1241 sub handle_42 {goto &handle_28}
1245 sub handle_44 {goto &handle_37}
1246 sub handle_45 {goto &handle_37}
1247 sub handle_46 {goto &handle_37}
1248 sub handle_47 {goto &handle_37}
1249 sub handle_48 {goto &handle_37}
1251 # message and database
1260 if (eph_dup($line)) {
1264 if ($pc->[1] eq $main::mycall) {
1265 DXMsg::handle_49($self, @$pc);
1267 $self->route($pc->[1], $line) unless $self->is_clx;
1271 # keep alive/user list
1280 return if (eph_dup($line));
1282 my $call = $pc->[1];
1284 my $node = Route::Node::get($call);
1286 return unless $node->call eq $self->{call};
1287 $node->usercount($pc->[2]) unless $node->users;
1289 $node->PC92C_dxchan($self->call, $pc->[-1]);
1291 # input filter if required
1292 # return unless $self->in_filter_route($node);
1294 unless ($self->{isolate}) {
1295 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1297 # $self->route_pc50($origin, $line, $node, $pc->[2], $pc->[3]) unless eph_dup($line);
1301 # incoming ping requests/answers
1311 my $from = $pc->[2];
1312 my $flag = $pc->[3];
1314 if ($to eq $main::myalias) {
1315 dbg("DXPROT: Ping addressed to \$myalias ($main::myalias), ignored") if isdbg('chan');
1320 if ($to eq $main::mycall) {
1322 $self->send(pc51($from, $to, '0'));
1324 DXXml::Ping::handle_ping_reply($self, $from);
1327 if (eph_dup($line)) {
1330 # route down an appropriate thingy
1331 $self->route($to, $line);
1335 sub handle_61 { goto &handle_11; }
1337 # dunno but route it
1346 my $call = $pc->[1];
1347 if ($call ne $main::mycall) {
1348 $self->route($call, $line);
1361 my $call = $pc->[1];
1364 my $d = cltounix($call, sprintf("%02d18Z", $pc->[2]));
1365 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $pc->[2] < 0 || $pc->[2] > 23) {
1366 dbg("PCPROT: WCY Date ($call $pc->[2]) out of range") if isdbg('chanerr');
1369 $pc = [ map { unpad($_) } @$pc ];
1371 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1375 my $wcy = WCY::update($d, @$pc[2..12]);
1376 dbg("WCY: " . join ', ', @$pc[2..12]) if isdbg('progress');
1378 if (defined &Local::wcy) {
1381 $rep = Local::wcy($self, @$pc[1..12]);
1386 # broadcast to the eager world
1387 send_wcy_spot($self, $line, $d, @$pc[2..12]);
1390 # remote commands (incoming)
1399 $self->process_rcmd($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1402 # remote command replies
1411 $self->process_rcmd_reply($pc->[1], $pc->[2], $pc->[3], $pc->[4]);
1414 # decode a pc92 call: flag call : version : build
1415 sub _decode_pc92_call
1418 my @part = split /:/, $icall;
1419 my ($flag, $call) = unpack "A A*", $part[0];
1420 unless (defined $flag && $flag ge '0' && $flag le '7') {
1421 dbg("PCPROT: $icall no flag byte (0-7) at front of call, ignored") if isdbg('chanerr');
1424 unless ($call && is_callsign($call)) {
1425 dbg("PCPROT: $icall no recognisable callsign, ignored") if isdbg('chanerr');
1428 my $is_node = $flag & 4;
1429 my $is_extnode = $flag & 2;
1430 my $here = $flag & 1;
1432 $ip ||= $part[1] if $part[1] && ($part[1] =~ /^(?:\d+\.)+/ || $part[1] =~ /^(?:(?:[abcdef\d]+)?,)+/);
1433 $ip =~ s/,/:/g if $ip;
1434 return ($call, $is_node, $is_extnode, $here, $part[1], $part[2], $ip);
1437 # decode a pc92 call: flag call : version : build
1438 sub _encode_pc92_call
1442 # plain call or value
1443 return $ref unless ref $ref;
1445 my $ext = shift || 0;
1447 my $call = $ref->call;
1449 $flag |= $ref->here ? 1 : 0;
1450 if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1452 my $dxchan = DXChannel::get($call);
1453 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1454 if (($ext & 1) && $ref->version) {
1455 my $version = $ref->version || 1.0;
1456 $version = $version * 100 + 5300 if $version < 50;
1457 $extra .= ":" . $version;
1460 if (($ext & 2) && $ref->ip) {
1463 $extra .= ':' . $ip;
1465 return "$flag$call$extra";
1478 my ($call, $is_node, $is_extnode, $here, $version, $build, $ip) = @$s;
1482 my $ncall = $parent->call;
1484 dbg("ROUTE: added node $call to $ncall") if isdbg('routelow');
1485 @rout = $parent->add($call, $version, Route::here($here), $ip);
1486 my $r = Route::Node::get($call);
1487 $r->PC92C_dxchan($dxchan->call, $hops) if $r;
1490 Log('DXProt', "PC92A $call -> $ip on $ncall");
1493 dbg("ROUTE: added user $call to $ncall") if isdbg('routelow');
1494 @rout = $parent->add_user($call, Route::here($here), $ip);
1495 $dxchan->tell_buddies('loginb', $call, $ncall) if $dxchan;
1496 my $r = Route::User::get($call);
1499 Log('DXProt', "PC92A $call -> $ip on $ncall");
1502 if ($pc92_slug_changes && $parent == $main::routeroot) {
1503 $things_add{$call} = Route::get($call);
1504 delete $things_del{$call};
1515 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1520 $ref = Route::Node::get($call);
1521 dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1522 @rout = $ref->del($parent) if $ref;
1524 dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1525 $ref = Route::User::get($call);
1527 $dxchan->tell_buddies('logoutb', $call, $parent->call) if $dxchan;
1528 @rout = $parent->del_user($ref);
1531 if ($pc92_slug_changes && $parent == $main::routeroot) {
1532 $things_del{$call} = $ref unless exists $things_add{$call};
1533 delete $things_add{$call};
1539 # this will only happen if we are slugging changes and
1540 # there are some changes to be sent, it will create an add or a delete
1542 sub gen_pc92_changes
1544 my @add = values %things_add;
1545 my @del = values %things_del;
1546 return (\@add, \@del);
1549 sub clear_pc92_changes
1551 %things_add = %things_del = ();
1552 $last_pc92_slug = $main::systime;
1561 return $_last_pc9x_id;
1566 if (!$_last_time || $_last_time != $main::systime) {
1567 $_last_time = $main::systime;
1569 return $_last_pc9x_id = $_last_time - $main::systime_daystart;
1572 return $_last_pc9x_id = sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1583 # check that the time is between 0 >= $t < 86400
1584 unless ($t >= 0 && $t < 86400) {
1585 dbg("PCPROT: time invalid t: $t, ignored") if isdbg('chanerr');
1589 # check that the time of this pc9x is within tolerance (default 15 mins either way)
1590 my $now = $main::systime - $main::systime_daystart ;
1591 my $diff = abs($now - $t);
1592 unless ($diff < $pc9x_time_tolerance || 86400 - $diff < $pc9x_time_tolerance) {
1593 my $c = ref $call ? $call->call : $call;
1594 dbg("PC9XERR: $c time out of range t: $t now: $now diff: $diff > $pc9x_time_tolerance, ignored") if isdbg('chan');
1598 my $parent = ref $call ? $call : Route::Node::get($call);
1600 # we only do this for external calls whose routing table
1601 # record come and go. The reference for mycall is permanent
1602 # and not that frequently used, it also never times out, so
1603 # the id on it is completely unreliable. Besides, only commands
1604 # originating on this box will go through this code...
1605 if ($parent->call ne $main::mycall) {
1606 my $lastid = $parent->lastid;
1607 if (defined $lastid) {
1609 # note that this is where we determine whether this pc9x has come in yesterday
1610 # but is still greater (modulo 86400) than the lastid or is simply an old
1611 # duplicate sentence. To determine this we need to do some module 86400
1612 # arithmetic. High numbers mean that this is an old duplicate sentence,
1613 # low numbers that it is a new sentence.
1615 # Typically you will see yesterday being taken on $t = 84, $lastid = 86235
1616 # and old dupes with $t = 234, $lastid = 256 (which give answers 249 and
1617 # 86378 respectively in the calculation below).
1619 if ($t+86400-$lastid > $pc9x_past_age) {
1620 dbg("PCPROT: dup id on $t <= lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1623 } elsif ($t == $lastid) {
1624 dbg("PCPROT: dup id on $t == lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1627 # check that if we have a low number in lastid that yesterday's numbers
1628 # (likely in the 85000+ area) don't override them, thus causing flip flopping
1629 if ($lastid+86400-$t < $pc9x_past_age) {
1630 dbg("PCPROT: dup id on $t in yesterday, lastid $lastid, ignored") if isdbg('chanerr') || isdbg('pc92dedupe');
1637 $parent = Route::Node->new($call);
1639 dbg("PCPROT: $call does not exist, ignored") if isdbg('pc92dedupe');
1642 if (isdbg('pc92dedupe')) {
1643 my $exists = exists $parent->{lastid}; # naughty, naughty :-)
1644 my $val = $parent->{lastid};
1645 my $s = $exists ? (defined $val ? $val : 'exists/undef') : 'undef';
1646 dbg("PCPROT: $call pc92 id lastid $s -> $t");
1648 $parent->lastid($t);
1653 sub pc92_handle_first_slot
1660 my $oparent = $parent;
1664 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$slot;
1665 if ($call && $is_node) {
1666 if ($call eq $main::mycall) {
1667 dbg("PCPROT: $call looped back onto \$main::mycall ($main::mycall), ignored") if isdbg('chan');
1670 if ($call eq $main::myalias) {
1671 dbg("PCPROT: $call looped back onto \$main::myalias ($main::myalias), ignored") if isdbg('chan');
1674 # this is only accepted from my "self".
1675 # this also kills configs from PC92 nodes with external PC19 nodes that are also
1676 # locally connected. Local nodes always take precedence. But we remember the lastid
1677 # to try to reduce the number of dupe PC92s for this external node.
1678 if (DXChannel::get($call) && $call ne $self->{call}) {
1679 $parent = check_pc9x_t($call, $t, 92); # this will update the lastid time
1680 dbg("PCPROT: locally connected node $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1684 # reparent to external node (note that we must have received a 'C' or 'A' record
1685 # from the true parent node for this external before we get one for the this node
1686 unless ($parent = Route::Node::get($call)) {
1687 if ($is_extnode && $oparent) {
1688 @radd = _add_thingy($oparent, $slot, $self, $hops);
1691 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1695 $parent = check_pc9x_t($call, $t, 92) || return;
1696 $parent->via_pc92(1);
1697 $parent->PC92C_dxchan($self->{call}, $hops);
1700 dbg("PCPROT: must be \$mycall or external node as first entry, ignored") if isdbg('chanerr');
1703 $parent->here(Route::here($here));
1704 $parent->version($version || $pc19_version) if $version;
1705 $parent->build($build) if $build;
1706 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1707 return ($parent, @radd);
1710 # DXSpider routing entries
1721 my $pcall = $pc->[1];
1723 my $sort = $pc->[3];
1724 my $hops = $pc->[-1];
1726 # this catches loops of A/Ds
1727 # if (eph_dup($line, $pc9x_dupe_age)) {
1731 if ($pcall eq $main::mycall) {
1732 dbg("PCPROT: looped back, ignored") if isdbg('chan');
1736 if ($pcall eq $main::myalias) {
1737 dbg("PCPROT: looped back to \$myalias ($main::myalias), misconfiguration ignored") if isdbg('chan');
1741 if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1742 if ($self->{isolate}) {
1743 dbg("DXPROT: PC9x received, but $pcall is isolated, ignored");
1745 } elsif (!$self->user->wantpc9x) {
1746 dbg("DXPROT: PC9x explicitly switched off on $pcall, ignored");
1749 $self->state('init92');
1750 $self->{do_pc9x} = 1;
1751 dbg("DXPROT: Do pc9x set on $pcall");
1754 unless ($self->{do_pc9x}) {
1755 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1759 # don't create routing entries for D records that don't already exist
1760 # this is what causes all those PC92 loops!
1761 my $parent = check_pc9x_t($pcall, $t, 92, $sort ne 'D') || return;
1762 my $oparent = $parent;
1764 $parent->do_pc9x(1);
1765 $parent->via_pc92(1);
1767 if ($sort eq 'F' || $sort eq 'R') {
1769 # this is the route finding section
1770 # here is where the consequences of the 'find' command
1773 my $from = $pc->[4];
1774 my $target = $pc->[5];
1780 if ($ref = DXChannel::get($target)) {
1781 $flag = 1; # we are directly connected
1783 $ref = Route::get($target);
1784 $dxchan = $ref->dxchan;
1787 if ($ref && $flag && $dxchan) {
1788 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1791 } elsif ($sort eq 'R') {
1792 if (my $dxchan = DXChannel::get($from)) {
1793 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @$pc[6,7]);
1795 my $ref = Route::get($from);
1797 my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1799 $_->send($line) for @dxchan;
1801 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1804 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1810 } elsif ($sort eq 'K') {
1811 $pc92Kin += length $line;
1813 # remember the last channel we arrived on
1814 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1816 my @ent = _decode_pc92_call($pc->[4]);
1821 ($parent, $add) = $self->pc92_handle_first_slot(\@ent, $parent, $t, $hops);
1822 return unless $parent; # dupe
1824 push @radd, $add if $add;
1826 $parent->version($ent[4]) if $ent[4];
1827 $parent->build($ent[5]) if $ent[5];
1829 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1831 } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1833 $pc92Ain += length $line if $sort eq 'A';
1834 $pc92Cin += length $line if $sort eq 'C';
1835 $pc92Din += length $line if $sort eq 'D';
1837 # remember the last channel we arrived on
1838 $parent->PC92C_dxchan($self->{call}, $hops) unless $self->{call} eq $parent->call;
1840 # this is the main route section
1841 # here is where all the routes are created and destroyed
1843 # cope with missing duplicate node calls in the first slot
1844 my $me = $pc->[4] || '';
1845 $me ||= _encode_pc92_call($parent) unless $me ;
1847 my @ent = map {my @a = _decode_pc92_call($_); @a ? \@a : ()} grep {$_ && /^[0-7]/} $me, @$pc[5 .. $#$pc];
1851 # look at the first one which will always be a node of some sort
1852 # except in the case of 'A' or 'D' in which the $pcall is used
1853 # otherwise use the node call and update any information
1854 # that needs to be done.
1857 ($parent, $add) = $self->pc92_handle_first_slot($ent[0], $parent, $t, $hops);
1858 return unless $parent; # dupe
1861 push @radd, $add if $add;
1864 # do a pass through removing any references to either mycall
1868 next unless $_ && @$_;
1869 if ($_->[0] eq $main::mycall) {
1870 dbg("PCPROT: $_->[0] refers to me, ignored") if isdbg('chanerr');
1878 push @radd, _add_thingy($parent, $_, $self, $hops);
1880 } elsif ($sort eq 'D') {
1882 push @rdel, _del_thingy($parent, $_, $self);
1884 } elsif ($sort eq 'C') {
1885 my (@nodes, @users);
1887 # we reset obscounts on config records as well as K records
1889 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('obscount');
1892 foreach my $r (@nent) {
1893 # my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1896 push @nodes, $r->[0];
1898 push @users, $r->[0];
1901 dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1905 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1908 foreach my $r (@nent) {
1911 push @radd,_add_thingy($parent, $r, $self, $hops) if grep $call eq $_, (@$nnodes, @$nusers);
1915 foreach my $r (@$dnodes) {
1916 push @rdel,_del_thingy($parent, [$r, 1], $self);
1918 foreach my $r (@$dusers) {
1919 push @rdel,_del_thingy($parent, [$r, 0], $self);
1922 # remember this last PC92C for rebroadcast on demand
1923 $parent->last_PC92C($line);
1925 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1929 foreach my $r (@rdel) {
1932 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1933 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1935 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1936 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1937 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1938 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1939 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1942 # broadcast it if we get here
1943 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1946 # get all the routes for a thing, bearing in mind that the thing (e.g. a user)
1947 # might be on two or more nodes at the same time or that there may be more than
1948 # one equal distance neighbour to a node.
1950 # What this means that if sh/route g1tlh shows that he is on (say) two nodes, then
1951 # a Route::findroutes is done on each of those two nodes, the best route(s) taken from
1952 # each and then combined to give a set of dxchans to send the PC9x record down
1954 sub find_pc9x_routes
1957 my $ref = Route::get($to);
1961 if ($ref->isa('Route::User')) {
1962 my $dxchan = DXChannel::get($to);
1963 push @parent, $to if $dxchan;
1964 push @parent, $ref->parents;
1968 foreach my $p (@parent) {
1970 my @routes = Route::findroutes($p);
1971 foreach my $r (@routes) {
1972 $lasthops = $r->[0] unless defined $lasthops;
1973 if ($r->[0] == $lasthops) {
1974 $cand{$r->[1]->call} = $r->[1];
1980 return values %cand;
1991 # $self->{do_pc9x} ||= 1;
1993 my $pcall = $pc->[1]; # this is now checked earlier
1995 # remember that we are converting PC10->PC93 and self will be $main::me if it
1997 unless ($self->{do_pc9x}) {
1998 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
2003 my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
2005 my $to = uc $pc->[3];
2006 my $from = uc $pc->[4];
2007 my $via = uc $pc->[5];
2008 my $text = $pc->[6];
2009 my $onode = uc $pc->[7];
2010 $onode = $pcall if @$pc <= 8;
2012 # this is catch loops caused by bad software ...
2013 if (eph_dup("PC93|$from|$text|$onode", $pc10_dupe_age)) {
2017 if (isdbg('progress')) {
2018 my $vs = $via ne '*' ? " via $via" : '';
2019 my $s = "ANNTALK: $from\@$onode$vs -> $to '$text'";
2023 # will we allow it at all?
2026 if (@bad = BadWords::check($text)) {
2027 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
2032 # if this is a 'bad spotter' user then ignore it
2034 $nossid =~ s/-\d+$//;
2035 if ($badspotter->in($nossid)) {
2036 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
2040 # ignore PC93 coming in from outside this node with a target of local
2041 if ($to eq 'LOCAL' && $self != $main::me) {
2042 dbg("PCPROT: incoming LOCAL chat not from local node, ignored") if isdbg('chanerr');
2046 # if it is routeable then then treat it like a talk
2047 my $ref = Route::get($to);
2051 # convert to PC10 or local talks where appropriate
2052 # PC93 capable nodes of the same hop count all get a copy
2053 # if there is a PC10 node then it will get a copy and that
2054 # will be it. Hopefully such a node will not figure highly
2055 # in the route list, unless it is local, 'cos it don't issue PC92s!
2056 # note that both local and PC93s at the same time are possible if the
2057 # user on more than one node.
2058 my @routes = find_pc9x_routes($to);
2060 foreach $dxchan (@routes) {
2061 if (ref $dxchan && $dxchan->isa('DXChannel')) {
2062 if ($dxchan->{do_pc9x}) {
2063 $dxchan->send($line);
2065 $dxchan->talk($from, $to, $via, $text, $onode);
2068 dbg("ERROR: $to -> $dxchan is not a DXChannel! (convert to pc10)");
2073 } elsif ($to eq '*' || $to eq 'SYSOP' || $to eq 'WX') {
2075 my $sysop = $to eq 'SYSOP' ? '*' : ' ';
2076 my $wx = $to eq 'WX' ? '1' : '0';
2077 my $local = $via eq 'LOCAL' ? '*' : $via;
2079 $self->send_announce(1, pc12($from, $text, $local, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
2080 return if $via eq 'LOCAL';
2081 } elsif (!is_callsign($to) && $text =~ /^#\d+ /) {
2082 # chat messages really only locally connected users
2083 $self->send_chat(1, $line, $from, '*', $text, $to, $pcall, '0');
2086 # broadcast this chat sentence everywhere unless it is targetted to 'LOCAL'
2087 $self->broadcast_route_pc9x($pcall, undef, $line, 0) unless $to eq 'LOCAL' || $via eq 'LOCAL';
2090 # if get here then rebroadcast the thing with its Hop count decremented (if
2091 # there is one). If it has a hop count and it decrements to zero then don't
2094 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
2106 unless (eph_dup($line)) {
2108 my $pcall = $pc->[1];
2109 unless (is_callsign($pcall)) {
2110 dbg("PCPROT: invalid callsign string '$pc->[1]', ignored") if isdbg('chanerr');
2114 my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
2115 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
2117 unless ($self->{isolate}) {
2118 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me