3 # This module impliments the handlers for the protocal mode for a dx cluster
5 # Copyright (c) 1998-2006 Dirk Koopman G1TLH
40 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
41 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
42 $pingint $obscount %pc19list $chatdupeage $chatimportfn
43 $investigation_int $pc19_version $myprot_version
44 %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
45 $allowzero $decode_dk0wcy $send_opernam @checklist
46 $eph_pc15_restime $pc9x_past_age $pc9x_future_age
49 $pc9x_past_age = 15*60; # maximum age in the past of a px9x
50 $pc9x_future_age = 5*60; # maximum age in the future ditto
52 # incoming talk commands
61 return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
63 # will we allow it at all?
66 if (@bad = BadWords::check($_[3])) {
67 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
72 # is it for me or one of mine?
73 my ($from, $to, $via, $call, $dxchan);
82 # if this is a 'nodx' node then ignore it
83 if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
84 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
88 # if this is a 'bad spotter' user then ignore it
91 if ($badspotter->in($nossid)) {
92 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
96 # if we are converting announces to talk is it a dup?
98 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
99 dbg("PCPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
104 # remember a route to this node and also the node on which this user is
105 RouteDB::update($_[6], $self->{call});
106 # RouteDB::update($to, $_[6]);
108 # convert this to a PC93 and process it as such
109 $self->normal(pc93($to, $from, $via, $_[3], $_[6]));
112 # this is all redundant but kept for now for reference
114 # it is here and logged on
115 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
116 $dxchan = DXChannel::get($to) unless $dxchan;
117 if ($dxchan && $dxchan->is_user) {
119 $dxchan->talk($from, $to, $via, $_[3]);
123 # is it elsewhere, visible on the cluster via the to address?
124 # note: this discards the via unless the to address is on
127 if ($ref = Route::get($to)) {
128 $vref = Route::Node::get($via) if $via;
129 $vref = undef unless $vref && grep $to eq $_, $vref->users;
130 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
134 # can we see an interface to send it down?
136 # not visible here, send a message of condolence
138 $ref = Route::get($from);
139 $vref = $ref = Route::Node::get($_[6]) unless $ref;
141 $dxchan = $ref->dxchan;
142 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
154 # route 'foreign' pc26s
156 if ($_[7] ne $main::mycall) {
157 $self->route($_[7], $line);
163 # return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
165 # is the spotted callsign blank? This should really be trapped earlier but it
166 # could break other protocol sentences. Also check for lower case characters.
167 if ($_[2] =~ /^\s*$/) {
168 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
171 if ($_[2] =~ /[a-z]/) {
172 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
177 # if this is a 'nodx' node then ignore it
178 if ($badnode->in($_[7])) {
179 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
183 # if this is a 'bad spotter' user then ignore it
185 $nossid =~ s/-\d+$//;
186 if ($badspotter->in($nossid)) {
187 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
191 # convert the date to a unix date
192 my $d = cltounix($_[3], $_[4]);
193 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
194 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
195 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
200 if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
201 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
206 $_[5] =~ s/^\s+//; # take any leading blanks off
207 $_[2] = unpad($_[2]); # take off leading and trailing blanks from spotted callsign
208 if ($_[2] =~ /BUST\w*$/) {
209 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
214 if (@bad = BadWords::check($_[5])) {
215 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
221 # RouteDB::update($_[7], $self->{call});
222 # RouteDB::update($_[6], $_[7]);
224 my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7]);
225 # global spot filtering on INPUT
226 if ($self->{inspotsfilter}) {
227 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
229 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
234 # this goes after the input filtering, but before the add
235 # so that if it is input filtered, it isn't added to the dup
236 # list. This allows it to come in from a "legitimate" source
237 if (Spot::dup(@spot[0..4,5])) {
238 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
246 # @spot at this point contains:-
247 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
248 # then spotted itu, spotted cq, spotters itu, spotters cq
249 # you should be able to route on any of these
252 # fix up qra locators of known users
253 my $user = DXUser->get_current($spot[4]);
255 my $qra = $user->qra;
256 unless ($qra && is_qra($qra)) {
257 my $lat = $user->lat;
258 my $long = $user->long;
259 if (defined $lat && defined $long) {
260 $user->qra(DXBearing::lltoqra($lat, $long));
265 # send a remote command to a distant cluster if it is visible and there is no
266 # qra locator and we havn't done it for a month.
268 unless ($user->qra) {
270 my $to = $user->homenode;
271 my $last = $user->lastoper || 0;
272 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
273 my $cmd = "forward/opernam $spot[4]";
274 # send the rcmd but we aren't interested in the replies...
275 my $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 $node = Route::Node::get($to);
285 $dxchan = $node->dxchan;
286 if ($dxchan && $dxchan->is_clx) {
287 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
289 route(undef, $to, pc34($main::mycall, $to, $cmd));
293 $user->lastoper($main::systime);
302 $r = Local::spot($self, @spot);
304 # dbg("Local::spot1 error $@") if isdbg('local') if $@;
307 # DON'T be silly and send on PC26s!
308 return if $pcno == 26;
310 # send out the filtered spots
311 send_dx_spot($self, $line, @spot) if @spot;
322 # return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
324 # announce duplicate checking
325 $_[3] =~ s/^\s+//; # remove leading blanks
329 if (@bad = BadWords::check($_[3])) {
330 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
335 # if this is a 'nodx' node then ignore it
336 if ($badnode->in($_[5])) {
337 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
341 # if this is a 'bad spotter' user then ignore it
343 $nossid =~ s/-\d+$//;
344 if ($badspotter->in($nossid)) {
345 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
352 if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
353 $self->send_chat(0, $line, @_[1..6]);
354 } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
357 # RouteDB::update($_[5], $self->{call});
358 # RouteDB::update($_[1], $_[5]);
360 # ignore something that looks like a chat line coming in with sysop
361 # flag - this is a kludge...
362 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
363 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
367 # here's a bit of fun, convert incoming ann with a callsign in the first word
368 # or one saying 'to <call>' to a talk if we can route to the recipient
370 my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
372 my $ref = Route::get($call);
374 $dxchan = $ref->dxchan;
375 $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
382 $self->send_announce(0, $line, @_[1..6]);
384 $self->route($_[2], $line);
395 if (eph_dup($line, $eph_pc15_restime)) {
396 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
398 unless ($self->{isolate}) {
399 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
415 my $newline = "PC16^";
417 # dos I want users from this channel?
418 unless ($self->user->wantpc16) {
419 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
424 if ($ncall eq $main::mycall) {
425 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
430 $h = 1 if DXChannel::get($ncall);
431 RouteDB::update($ncall, $self->{call}, $h);
432 if ($h && $self->{call} ne $ncall) {
433 dbg("PCPROT: trying to update a local node, ignored") if isdbg('chanerr');
437 if (eph_dup($line)) {
438 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
442 my $parent = Route::Node::get($ncall);
445 $dxchan = $parent->dxchan;
446 if ($dxchan && $dxchan ne $self) {
447 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
451 # input filter if required
452 return unless $self->in_filter_route($parent);
454 $parent = Route::Node->new($ncall);
458 if ($parent->via_pc92) {
459 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
466 for ($i = 2; $i < $#_; $i++) {
467 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
468 next unless $call && $conf && defined $here && is_callsign($call);
469 next if $call eq $main::mycall;
471 eph_del_regex("^PC17\\^$call\\^$ncall");
473 $conf = $conf eq '*';
475 # reject this if we think it is a node already
476 my $r = Route::Node::get($call);
477 my $u = DXUser->get_current($call) unless $r;
478 if ($r || ($u && $u->is_node)) {
479 dbg("PCPROT: $call is a node") if isdbg('chanerr');
483 $r = Route::User::get($call);
484 my $flags = Route::here($here)|Route::conf($conf);
487 my $au = $r->addparent($parent);
488 if ($r->flags != $flags) {
492 push @rout, $r if $h && $au;
494 my @ans = $parent->add_user($call, $flags);
495 push @rout, @ans if $h && @ans;
498 # send info to all logged in thingies
499 $self->tell_login('loginu', "$ncall: $call") if DXUser->get_current($ncall)->is_local_node;
500 $self->tell_buddies('loginb', $call, $ncall);
502 # add this station to the user database, if required
503 # $call =~ s/-\d+$//o; # remove ssid for users
504 my $user = DXUser->get_current($call);
505 $user = DXUser->new($call) if !$user;
506 $user->homenode($parent->call) if !$user->homenode;
507 $user->node($parent->call);
508 $user->lastin($main::systime) unless DXChannel::get($call);
512 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
513 # $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
528 eph_del_regex("^PC16\\^$ncall.*$ucall");
530 # do I want users from this channel?
531 unless ($self->user->wantpc16) {
532 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
536 if ($ncall eq $main::mycall) {
537 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
541 RouteDB::delete($ncall, $self->{call});
543 my $uref = Route::User::get($ucall);
545 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
548 my $parent = Route::Node::get($ncall);
550 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
554 $dxchan = DXChannel::get($ncall);
555 if ($dxchan && $dxchan ne $self) {
556 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
561 if ($parent->via_pc92) {
562 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
567 if (DXChannel::get($ucall)) {
568 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
572 # input filter if required and then remove user if present
573 # return unless $self->in_filter_route($parent);
574 $parent->del_user($uref);
576 # send info to all logged in thingies
577 $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node;
578 $self->tell_buddies('logoutb', $ucall, $ncall);
580 if (eph_dup($line)) {
581 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
585 $self->route_pc17($origin, $line, $parent, $uref);
586 # $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
596 $self->state('init');
598 my $parent = Route::Node::get($self->{call});
600 # record the type and version offered
601 if ($_[1] =~ /DXSpider Version: (\d+\.\d+)/) {
602 $self->{version} = 53 + $1;
603 $self->user->version(53 + $1);
604 $parent->version(0 + $1);
605 dbg("DXSpider version $1");
606 my ($build) = $_[1] =~ /Build: (\d+(?:\.\d+)?)/;
607 $self->{build} = 0 + $build;
608 $self->user->build(0 + $build);
609 $parent->build(0 + $build);
610 dbg("DXSpider build $build");
611 unless ($self->is_spider) {
612 dbg("Change U " . $self->user->sort . " C $self->{sort} -> S");
613 $self->user->sort('S');
617 # $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
618 if (!$self->{isolate} && $_[1] =~ /\bpc9x/) {
619 $self->{do_pc9x} = 1;
620 dbg("Do px9x set on $self->{call}");
623 dbg("Unknown software");
624 $self->version(50.0);
625 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
626 $self->user->version($self->version);
629 # first clear out any nodes on this dxchannel
630 my @rout = $parent->del_nodes;
631 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
632 $self->send_local_config();
640 # add this station to the user database, if required (don't remove SSID from nodes)
641 my $user = DXUser->get_current($call);
643 $user = DXUser->new($call);
644 $user->priv(1); # I have relented and defaulted nodes
646 $user->homenode($call);
649 $user->sort('A') unless $user->is_node;
653 # incoming cluster list
662 my $newline = "PC19^";
665 my (@rout, @pc92out);
667 # first get the INTERFACE node
668 my $parent = Route::Node::get($self->{call});
670 dbg("PCPROT: my parent $self->{call} has disappeared");
679 # We are making a major change from now on. We are only going to accept
680 # PC19s from directly connected nodes. This means that we are probably
681 # going to throw away most of the data that we are being sent.
683 # The justification for this is that most of it is wrong or out of date
686 # From now on we are only going to believe PC92 data and locally connected
689 for ($i = 1; $i < $#_-1; $i += 4) {
691 my $call = uc $_[$i+1];
694 next unless defined $here && defined $conf && is_callsign($call);
696 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
698 # check for sane parameters
699 # $ver = 5000 if $ver eq '0000';
700 next unless $ver && $ver =~ /^\d+$/;
701 next if $ver < 5000; # only works with version 5 software
702 next if length $call < 3; # min 3 letter callsigns
703 next if $call eq $main::mycall;
705 # check that this PC19 isn't trying to alter the wrong dxchan
707 my $dxchan = DXChannel::get($call);
709 if ($dxchan == $self) {
712 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
717 my $user = check_add_node($call);
719 # if (eph_dup($genline)) {
720 # dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
724 RouteDB::update($call, $self->{call}, $dxchan ? 1 : undef);
727 if ($parent->via_pc92) {
728 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
733 my $r = Route::Node::get($call);
734 my $flags = Route::here($here)|Route::conf($conf);
736 # modify the routing table if it is in it, otherwise store it in the pc19list for now
739 if ($call ne $parent->call) {
740 if ($self->in_filter_route($r)) {
741 $ar = $parent->add($call, $ver, $flags);
742 # push @rout, $ar if $ar;
747 if ($r->version ne $ver || $r->flags != $flags) {
753 if ($call eq $self->{call} || $user->wantroutepc19) {
754 my $new = Route->new($call); # throw away
755 if ($self->in_filter_route($new)) {
756 my $ar = $parent->add($call, $ver, $flags);
757 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
758 push @rout, $ar if $ar;
759 push @pc92out, $r if $h;
766 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
767 my $mref = DXMsg::get_busy($call);
768 $mref->stop_msg($call) if $mref;
770 $user->lastin($main::systime) unless DXChannel::get($call);
774 # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
775 # but remember there will only be one (pair) these because any extras will be
778 # $self->route_pc21($self->{call}, $line, @rout);
779 $self->route_pc19($self->{call}, $line, @rout);
782 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
786 # send local configuration
794 if ($self->{do_pc9x} && $self->{state} ne 'init92') {
795 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
796 $self->{do_pc9x} = 0;
798 $self->send_local_config;
800 $self->state('normal');
801 $self->{lastping} = 0;
802 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
805 # delete a cluster from the list
807 # This should never occur for directly connected nodes.
817 eph_del_regex("^PC1[679].*$call");
819 # if I get a PC21 from the same callsign as self then ignore it
820 if ($call eq $self->call) {
821 dbg("PCPROT: self referencing PC21 from $self->{call}");
825 RouteDB::delete($call, $self->{call});
827 my $parent = Route::Node::get($self->{call});
829 dbg("PCPROT: my parent $self->{call} has disappeared");
836 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
837 my $node = Route::Node::get($call);
840 if ($node->via_pc92) {
841 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
845 my $dxchan = DXChannel::get($call);
846 if ($dxchan && $dxchan != $self) {
847 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
852 return unless $self->in_filter_route($node);
854 # routing objects, force a PC21 if it is local
855 push @rout, $node->del($parent);
856 push @rout, $call if $dxchan && @rout == 0;
859 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
863 if (eph_dup($line)) {
864 dbg("PCPROT: dup PC21 detected") if isdbg('chanerr');
869 $self->route_pc21($origin, $line, @rout);
870 # $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
882 if ($self->{do_pc9x}) {
883 if ($self->{state} ne 'init92') {
884 $self->send("Reseting to oldstyle routing because login call not sent in any pc92");
885 $self->{do_pc9x} = 0;
888 $self->{lastping} = 0;
889 $self->state('normal');
890 $self->route_pc92a($main::mycall, undef, $main::routeroot, Route::Node::get($self->{call}));
901 # route foreign' pc27s
903 if ($_[8] ne $main::mycall) {
904 $self->route($_[8], $line);
909 # only do a rspf check on PC23 (not 27)
911 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
915 my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
916 my $sfi = unpad($_[3]);
917 my $k = unpad($_[4]);
918 my $i = unpad($_[5]);
919 my ($r) = $_[6] =~ /R=(\d+)/;
921 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
922 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
926 # global wwv filtering on INPUT
927 my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
928 if ($self->{inwwvfilter}) {
929 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
931 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
935 $_[7] =~ s/-\d+$//o; # remove spotter's ssid
936 if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
937 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
941 # note this only takes the first one it gets
942 Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
946 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
948 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
951 # DON'T be silly and send on PC27s!
952 return if $pcno == 27;
954 # broadcast to the eager world
955 send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
967 $nref = Route::Node::get($call);
968 $uref = Route::User::get($call);
969 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
971 if (eph_dup($line)) {
972 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
976 $nref->here($_[2]) if $nref;
977 $uref->here($_[2]) if $uref;
978 my $ref = $nref || $uref;
979 return unless $self->in_filter_route($ref);
981 $self->route_pc24($origin, $line, $ref, $_[3]);
991 if ($_[1] ne $main::mycall) {
992 $self->route($_[1], $line);
995 if ($_[2] eq $main::mycall) {
996 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1000 Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1004 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1007 $self->send(pc26(@{$in}[0..4], $_[2]));
1013 my @in = reverse Geomag::search(0, $_[4], time, 1);
1016 $self->send(pc27(@{$in}[0..5], $_[2]));
1021 sub handle_26 {goto &handle_11}
1022 sub handle_27 {goto &handle_23}
1024 # mail/file handling
1031 if ($_[1] eq $main::mycall) {
1033 my $sub = "DXMsg::handle_$pcno";
1036 $self->route($_[1], $line) unless $self->is_clx;
1040 sub handle_29 {goto &handle_28}
1041 sub handle_30 {goto &handle_28}
1042 sub handle_31 {goto &handle_28}
1043 sub handle_32 {goto &handle_28}
1044 sub handle_33 {goto &handle_28}
1052 if (eph_dup($line, $eph_pc34_restime)) {
1053 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1055 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1059 # remote command replies
1066 eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1067 $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1070 sub handle_36 {goto &handle_34}
1079 if ($_[1] eq $main::mycall) {
1081 my $sub = "DXDb::handle_$pcno";
1084 $self->route($_[1], $line) unless $self->is_clx;
1088 # node connected list from neighbour
1097 # incoming disconnect
1104 if ($_[1] eq $self->{call}) {
1105 $self->disconnect(1);
1107 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1111 sub handle_40 {goto &handle_28}
1124 my $l = "PC41^$call^$sort";
1125 if (eph_dup($l, $eph_info_restime)) {
1126 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1130 # input filter if required
1131 # my $ref = Route::get($call) || Route->new($call);
1132 # return unless $self->in_filter_route($ref);
1134 if ($val eq $sort || $val =~ /^\s*$/) {
1135 dbg('PCPROT: invalid value') if isdbg('chanerr');
1139 # add this station to the user database, if required
1140 my $user = DXUser->get_current($call);
1141 $user = DXUser->new($call) unless $user;
1144 if (($val =~ /spotter/i || $val =~ /self/i) && $user->name && $user->name ne $val) {
1145 dbg("PCPROT: invalid name") if isdbg('chanerr');
1146 if ($main::mycall eq 'GB7DJK' || $main::mycall eq 'GB7BAA' || $main::mycall eq 'WR3D') {
1147 DXChannel::broadcast_nodes(pc41($_[1], 1, $user->name)); # send it to everyone including me
1152 } elsif ($sort == 2) {
1154 } elsif ($sort == 3) {
1155 if (is_latlong($val)) {
1156 my ($lat, $long) = DXBearing::stoll($val);
1157 $user->lat($lat) if $lat;
1158 $user->long($long) if $long;
1159 $user->qra(DXBearing::lltoqra($lat, $long)) unless $user->qra;
1161 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1164 } elsif ($sort == 4) {
1165 $user->homenode($val);
1166 } elsif ($sort == 5) {
1167 if (is_qra(uc $val)) {
1168 my ($lat, $long) = DXBearing::qratoll(uc $val);
1169 $user->lat($lat) if $lat && !$user->lat;
1170 $user->long($long) if $long && !$user->long;
1171 $user->qra(uc $val);
1173 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1177 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1180 unless ($self->{isolate}) {
1181 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1184 # perhaps this IS what we want after all
1185 # $self->route_pc41($ref, $call, $sort, $val, $_[4]);
1188 sub handle_42 {goto &handle_28}
1192 sub handle_44 {goto &handle_37}
1193 sub handle_45 {goto &handle_37}
1194 sub handle_46 {goto &handle_37}
1195 sub handle_47 {goto &handle_37}
1196 sub handle_48 {goto &handle_37}
1198 # message and database
1206 if (eph_dup($line)) {
1207 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1211 if ($_[1] eq $main::mycall) {
1212 DXMsg::handle_49($self, @_);
1214 $self->route($_[1], $line) unless $self->is_clx;
1218 # keep alive/user list
1228 RouteDB::update($call, $self->{call});
1230 my $node = Route::Node::get($call);
1232 return unless $node->call eq $self->{call};
1233 $node->usercount($_[2]);
1235 # input filter if required
1236 return unless $self->in_filter_route($node);
1238 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1242 # incoming ping requests/answers
1255 if ($to eq $main::mycall) {
1257 $self->send(pc51($from, $to, '0'));
1259 DXXml::Ping::handle_ping_reply($self, $from);
1263 RouteDB::update($from, $self->{call});
1265 if (eph_dup($line)) {
1266 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1269 # route down an appropriate thingy
1270 $self->route($to, $line);
1274 # dunno but route it
1282 if ($call ne $main::mycall) {
1283 $self->route($call, $line);
1297 my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1298 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1299 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1302 @_ = map { unpad($_) } @_;
1304 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1308 my $wcy = WCY::update($d, @_[2..12]);
1312 $rep = Local::wcy($self, @_[1..12]);
1314 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1317 # broadcast to the eager world
1318 send_wcy_spot($self, $line, $d, @_[2..12]);
1321 # remote commands (incoming)
1328 $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1331 # remote command replies
1338 $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1341 # decode a pc92 call: flag call : version : build
1342 sub _decode_pc92_call
1345 my @part = split /:/, $icall;
1346 my ($flag, $call) = unpack "A A*", $part[0];
1347 return () unless defined $flag && $flag ge '0' && $flag le '7';
1348 return () unless $call && is_callsign($call);
1349 my $is_node = $flag & 4;
1350 my $is_extnode = $flag & 2;
1351 my $here = $flag & 1;
1352 return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1355 # decode a pc92 call: flag call : version : build
1356 sub _encode_pc92_call
1360 # plain call or value
1361 return $ref unless ref $ref;
1365 my $call = $ref->call;
1367 $flag |= $ref->here ? 1 : 0;
1368 if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1370 my $dxchan = DXChannel::get($call);
1371 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc9x};
1373 if ($ref->version) {
1374 my $version = $ref->version || 1.0;
1375 $version = $version * 100 + 5300 if $version < 50;
1376 $extra .= ":" . $version;
1380 return "$flag$call$extra";
1387 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1392 dbg("ROUTE: added node $call to " . $parent->call) if isdbg('routelow');
1393 @rout = $parent->add($call, $version, Route::here($here));
1395 dbg("ROUTE: added user $call to " . $parent->call) if isdbg('routelow');
1396 @rout = $parent->add_user($call, Route::here($here));
1406 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1410 my $nref = Route::Node::get($call);
1411 dbg("ROUTE: deleting node $call from " . $parent->call) if isdbg('routelow');
1412 @rout = $nref->del($parent) if $nref;
1414 my $uref = Route::User::get($call);
1415 dbg("ROUTE: deleting user $call from " . $parent->call) if isdbg('routelow');
1416 @rout = $parent->del_user($uref) if $uref;
1427 if (!$_last_time || $_last_time != $main::systime) {
1428 $_last_time = $main::systime;
1430 return $_last_time - $main::systime_daystart;
1433 return sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1444 my $parent = ref $call ? $call : Route::Node::get($call);
1446 # we only do this for external calls whose routing table
1447 # record come and go. The reference for mycall is permanent
1448 # and not that frequently used, it also never times out, so
1449 # the id on it is completely unreliable. Besides, only commands
1450 # originating on this box will go through this code...
1451 if ($parent->call ne $main::mycall) {
1452 my $lastid = $parent->lastid->{$pc} || 0;
1454 if ($lastid-86400+$t > $pc9x_past_age) {
1455 dbg("PCPROT: dup id on $t <= $lastid (midnight rollover), ignored") if isdbg('chanerr');
1459 if ($lastid >= $t) {
1460 dbg("PCPROT: dup id on $call $lastid >= $t, ignored") if isdbg('chanerr');
1465 $parent = Route::Node->new($call);
1467 $parent->lastid->{$pc} = $t;
1472 # DXSpider routing entries
1484 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1490 if ($pcall eq $main::mycall) {
1491 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1495 if ($pcall eq $self->{call} && $self->{state} eq 'init') {
1496 $self->state('init92');
1497 $self->{do_pc9x} = 1;
1498 dbg("Do pc9x set on $pcall");
1500 unless ($self->{do_pc9x}) {
1501 dbg("PCPROT: PC9x come in from non-PC9x node, ignored") if isdbg('chanerr');
1505 my $parent = check_pc9x_t($pcall, $t, 92, 1) || return;
1506 my $oparent = $parent;
1508 $parent->do_pc9x(1);
1509 $parent->via_pc92(1);
1511 if ($sort eq 'F' || $sort eq 'R') {
1513 # this is the route finding section
1514 # here is where the consequences of the 'find' command
1524 if ($ref = DXChannel::get($target)) {
1525 $flag = 1; # we are directly connected
1527 $ref = Route::get($target);
1528 $dxchan = $ref->dxchan;
1531 if ($ref && $flag && $dxchan) {
1532 $self->send(pc92r($from, $target, $flag, int($dxchan->{pingave}*1000)));
1535 } elsif ($sort eq 'R') {
1536 if (my $dxchan = DXChannel::get($from)) {
1537 handle_pc92_find_reply($dxchan, $pcall, $from, $target, @_[6,7]);
1539 my $ref = Route::get($from);
1541 my @dxchan = grep {$_->do_pc9x} $ref->alldxchan;
1543 $_->send($line) for @dxchan;
1545 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1548 dbg("PCPROT: no return route, ignored") if isdbg('chanerr')
1553 } elsif ($sort eq 'A' || $sort eq 'D' || $sort eq 'C') {
1555 # this is the main route section
1556 # here is where all the routes are created and destroyed
1558 my @ent = map {[ _decode_pc92_call($_) ]} grep {$_ && /^[0-7]/} @_[4 .. $#_];
1562 # look at the first one which will always be a node of some sort
1563 # except in the case of 'A' or 'D' in which the $pcall is used
1564 # otherwise use the node call and update any information
1565 # that needs to be done.
1566 my ($call, $is_node, $is_extnode, $here, $version, $build) = @{$ent[0]};
1567 if (($sort eq 'A' || $sort eq 'D') && !$is_node) {
1568 # parent is already set correctly
1569 # this is to allow shortcuts for A and D records
1570 # not repeating the origin call to no real purpose
1573 if ($call && $is_node) {
1574 if ($call eq $main::mycall) {
1575 dbg("PCPROT: $call looped back onto $main::mycall, ignored") if isdbg('chanerr');
1579 # this is only accepted from my "self"
1580 if (DXChannel::get($call) && $call ne $self->{call}) {
1581 dbg("PCPROT: locally connected node config for $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1584 # reparent to external node (note that we must have received a 'C' or 'A' record
1585 # from the true parent node for this external before we get one for the this node
1586 unless ($parent = Route::Node::get($call)) {
1587 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1590 $parent = check_pc9x_t($call, $t, 92) || return;
1591 $parent->via_pc92(1);
1594 dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1597 $parent->here(Route::here($here));
1598 $parent->version($version) if $version && $version > $parent->version;
1599 $parent->build($build) if $build && $build > $parent->build;
1604 # do a pass through removing any references to either locally connected nodes or mycall
1608 if ($_->[0] eq $main::mycall || DXChannel::get($_->[0])) {
1609 dbg("PCPROT: $_->[0] refers to locally connected node, ignored") if isdbg('chanerr');
1617 push @radd, _add_thingy($parent, $_);
1619 } elsif ($sort eq 'D') {
1621 push @rdel, _del_thingy($parent, $_);
1623 } elsif ($sort eq 'C') {
1624 my (@nodes, @users);
1626 # we only reset obscounts on config records
1627 $oparent->reset_obs;
1628 dbg("ROUTE: reset obscount on $pcall now " . $oparent->obscount) if isdbg('route');
1629 if ($oparent != $parent) {
1631 dbg("ROUTE: reset obscount on $parent->{call} now " . $parent->obscount) if isdbg('route');
1635 foreach my $r (@nent) {
1636 # my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1639 push @nodes, $r->[0];
1641 push @users, $r->[0];
1644 dbg("PCPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1648 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1651 foreach my $r (@nent) {
1654 push @radd,_add_thingy($parent, $r) if grep $call eq $_, (@$nnodes, @$nusers);
1658 foreach my $r (@$dnodes) {
1659 push @rdel,_del_thingy($parent, [$r, 1]);
1661 foreach my $r (@$dusers) {
1662 push @rdel,_del_thingy($parent, [$r, 0]);
1665 # remember this last PC92C for rebroadcast on demand
1666 $parent->last_PC92C($line);
1668 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1672 foreach my $r (@rdel) {
1675 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1676 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1678 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1679 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1680 unshift @pc19, $parent if $self->{state} eq 'init92' && $oparent == $parent;
1681 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1682 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1685 # broadcast it if we get here
1686 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1697 # $self->{do_pc9x} ||= 1;
1700 unless (is_callsign($pcall)) {
1701 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1705 my $parent = check_pc9x_t($pcall, $t, 93, 1) || return;
1712 $onode = $pcall if @_ <= 8;
1714 # will we allow it at all?
1717 if (@bad = BadWords::check($text)) {
1718 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
1723 # if this is a 'bad spotter' user then ignore it
1725 $nossid =~ s/-\d+$//;
1726 if ($badspotter->in($nossid)) {
1727 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
1731 if (is_callsign($to)) {
1734 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
1735 $dxchan = DXChannel::get($to) unless $dxchan;
1736 if ($dxchan && $dxchan->is_user) {
1737 $dxchan->talk($from, $to, $via, $text, $onode);
1741 # convert to PC10 talks where appropriate
1742 my $ref = Route::get($to);
1744 my @dxchan = $ref->alldxchan;
1745 for $dxchan (@dxchan) {
1746 if ($dxchan->{do_pc9x}) {
1747 $dxchan->send($line);
1749 $dxchan->talk($from, $to, $via, $text, $onode);
1755 # otherwise, drop through and allow it to be broadcast
1756 } elsif ($to eq '*' || uc $to eq 'SYSOP' || uc $to eq 'WX') {
1758 my $sysop = uc $to eq 'SYSOP' ? '*' : ' ';
1759 my $wx = uc $to eq 'WX' ? '1' : '0';
1760 my $local = $via eq 'LOCAL' ? '*' : $via;
1762 $self->send_announce(1, pc12($from, $text, $local, $via, $sysop, $wx, $pcall), $from, $local, $text, $sysop, $pcall, $wx, $via eq 'LOCAL' ? $via : undef);
1763 return if $via eq 'LOCAL';
1765 # chat messages to non-pc9x nodes
1766 $self->send_chat(1, pc12($from, $text, undef, $to, undef, $pcall), $from, '*', $text, $to, $pcall, '0');
1768 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1771 # if get here then rebroadcast the thing with its Hop count decremented (if
1772 # there is one). If it has a hop count and it decrements to zero then don't
1775 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1786 if (eph_dup($line)) {
1787 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1791 unless (is_callsign($pcall)) {
1792 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1796 my $parent = check_pc9x_t($pcall, $t, $pcno, 1) || return;
1797 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1799 unless ($self->{isolate}) {
1800 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me