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($VERSION $BRANCH);
41 ($VERSION, $BRANCH) = dxver(q$Revision$);
43 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
44 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
45 $pingint $obscount %pc19list $chatdupeage $chatimportfn
46 $investigation_int $pc19_version $myprot_version
47 %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
48 $allowzero $decode_dk0wcy $send_opernam @checklist
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("DXPROT: 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 # it is here and logged on
109 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
110 $dxchan = DXChannel::get($to) unless $dxchan;
111 if ($dxchan && $dxchan->is_user) {
113 $dxchan->talk($from, $to, $via, $_[3]);
117 # is it elsewhere, visible on the cluster via the to address?
118 # note: this discards the via unless the to address is on
121 if ($ref = Route::get($to)) {
122 $vref = Route::Node::get($via) if $via;
123 $vref = undef unless $vref && grep $to eq $_, $vref->users;
124 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
128 # can we see an interface to send it down?
130 # not visible here, send a message of condolence
132 $ref = Route::get($from);
133 $vref = $ref = Route::Node::get($_[6]) unless $ref;
135 $dxchan = $ref->dxchan;
136 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
148 # route 'foreign' pc26s
150 if ($_[7] ne $main::mycall) {
151 $self->route($_[7], $line);
157 # return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
159 # is the spotted callsign blank? This should really be trapped earlier but it
160 # could break other protocol sentences. Also check for lower case characters.
161 if ($_[2] =~ /^\s*$/) {
162 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
165 if ($_[2] =~ /[a-z]/) {
166 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
171 # if this is a 'nodx' node then ignore it
172 if ($badnode->in($_[7])) {
173 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
177 # if this is a 'bad spotter' user then ignore it
179 $nossid =~ s/-\d+$//;
180 if ($badspotter->in($nossid)) {
181 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
185 # convert the date to a unix date
186 my $d = cltounix($_[3], $_[4]);
187 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
188 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
189 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
194 if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
195 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
200 $_[5] =~ s/^\s+//; # take any leading blanks off
201 $_[2] = unpad($_[2]); # take off leading and trailing blanks from spotted callsign
202 if ($_[2] =~ /BUST\w*$/) {
203 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
208 if (@bad = BadWords::check($_[5])) {
209 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
215 # RouteDB::update($_[7], $self->{call});
216 # RouteDB::update($_[6], $_[7]);
218 my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7]);
219 # global spot filtering on INPUT
220 if ($self->{inspotsfilter}) {
221 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
223 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
228 # this goes after the input filtering, but before the add
229 # so that if it is input filtered, it isn't added to the dup
230 # list. This allows it to come in from a "legitimate" source
231 if (Spot::dup(@spot[0..4,5])) {
232 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
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));
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);
296 $r = Local::spot($self, @spot);
298 # dbg("Local::spot1 error $@") if isdbg('local') if $@;
301 # DON'T be silly and send on PC26s!
302 return if $pcno == 26;
304 # send out the filtered spots
305 send_dx_spot($self, $line, @spot) if @spot;
316 # return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
318 # announce duplicate checking
319 $_[3] =~ s/^\s+//; # remove leading blanks
323 if (@bad = BadWords::check($_[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($_[5])) {
331 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
335 # if this is a 'bad spotter' user then ignore it
337 $nossid =~ s/-\d+$//;
338 if ($badspotter->in($nossid)) {
339 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
346 if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
347 $self->send_chat($line, @_[1..6]);
348 } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
351 # RouteDB::update($_[5], $self->{call});
352 # RouteDB::update($_[1], $_[5]);
354 # ignore something that looks like a chat line coming in with sysop
355 # flag - this is a kludge...
356 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
357 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
361 # here's a bit of fun, convert incoming ann with a callsign in the first word
362 # or one saying 'to <call>' to a talk if we can route to the recipient
364 my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
366 my $ref = Route::get($call);
368 $dxchan = $ref->dxchan;
369 $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
376 $self->send_announce($line, @_[1..6]);
378 $self->route($_[2], $line);
389 if (eph_dup($line, $eph_pc15_restime)) {
390 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
392 unless ($self->{isolate}) {
393 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
409 my $newline = "PC16^";
411 # dos I want users from this channel?
412 unless ($self->user->wantpc16) {
413 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
418 if ($ncall eq $main::mycall) {
419 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
424 $h = 1 if DXChannel::get($ncall);
425 RouteDB::update($ncall, $self->{call}, $h);
427 if (eph_dup($line)) {
428 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
432 my $parent = Route::Node::get($ncall);
435 $dxchan = $parent->dxchan;
436 if ($dxchan && $dxchan ne $self) {
437 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
441 # input filter if required
442 return unless $self->in_filter_route($parent);
444 $parent = Route::Node->new($ncall);
448 if ($parent->via_pc92) {
449 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
456 for ($i = 2; $i < $#_; $i++) {
457 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
458 next unless $call && $conf && defined $here && is_callsign($call);
459 next if $call eq $main::mycall;
461 eph_del_regex("^PC17\\^$call\\^$ncall");
463 $conf = $conf eq '*';
465 # reject this if we think it is a node already
466 my $r = Route::Node::get($call);
467 my $u = DXUser->get_current($call) unless $r;
468 if ($r || ($u && $u->is_node)) {
469 dbg("PCPROT: $call is a node") if isdbg('chanerr');
473 $r = Route::User::get($call);
474 my $flags = Route::here($here)|Route::conf($conf);
477 my $au = $r->addparent($parent);
478 if ($r->flags != $flags) {
482 push @rout, $r if $h && $au;
484 my @ans = $parent->add_user($call, $flags);
485 push @rout, @ans if $h && @ans;
488 # send info to all logged in thingies
489 $self->tell_login('loginu', "$ncall: $call") if DXUser->get_current($ncall)->is_local_node;
490 $self->tell_buddies('loginb', $call, $ncall);
492 # add this station to the user database, if required
493 # $call =~ s/-\d+$//o; # remove ssid for users
494 my $user = DXUser->get_current($call);
495 $user = DXUser->new($call) if !$user;
496 $user->homenode($parent->call) if !$user->homenode;
497 $user->node($parent->call);
498 $user->lastin($main::systime) unless DXChannel::get($call);
502 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
503 # $self->route_pc92a($main::mycall, undef, $parent, @rout) if $h && $self->{state} eq 'normal';
518 eph_del_regex("^PC16\\^$ncall.*$ucall");
520 # do I want users from this channel?
521 unless ($self->user->wantpc16) {
522 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
526 if ($ncall eq $main::mycall) {
527 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
531 RouteDB::delete($ncall, $self->{call});
533 unless ($ncall eq $self->{call}) {
534 dbg("PCPROT: PC17 from non-local $ncall, ignored") if isdbg('chanerr');
538 my $uref = Route::User::get($ucall);
540 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
542 my $parent = Route::Node::get($ncall);
544 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
547 $dxchan = $parent->dxchan if $parent;
548 if ($dxchan && $dxchan ne $self) {
549 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
553 $dxchan = DXChannel::get($ncall);
555 if ($parent->via_pc92) {
556 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
561 if (DXChannel::get($ucall)) {
562 dbg("PCPROT: trying do disconnect local user, ignored") if isdbg('chanerr');
566 # input filter if required and then remove user if present
568 # return unless $self->in_filter_route($parent);
569 $parent->del_user($uref) if $uref;
571 $parent = Route->new($ncall); # throw away
574 # send info to all logged in thingies
575 $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node;
576 $self->tell_buddies('logoutb', $ucall, $ncall);
578 if (eph_dup($line)) {
579 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
583 $uref = Route->new($ucall) unless $uref; # throw away
584 $self->route_pc17($origin, $line, $parent, $uref);
585 # $self->route_pc92d($main::mycall, undef, $parent, $uref) if $dxchan;
595 $self->state('init');
597 # record the type and version offered
598 if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
599 $self->version(53 + $1);
600 $self->user->version(53 + $1);
601 $self->build(0 + $2);
602 $self->user->build(0 + $2);
603 unless ($self->is_spider) {
604 $self->user->sort('S');
608 $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml/;
609 my ($pc9x) = $_[1] =~ /\bpc9\[(\d+)\]/;
610 $self->{do_pc92}++ if defined $pc9x && $pc9x =~ /2/;
612 $self->version(50.0);
613 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
614 $self->user->version($self->version);
617 # first clear out any nodes on this dxchannel
618 my $parent = Route::Node::get($self->{call});
619 my @rout = $parent->del_nodes;
620 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
621 $self->send_local_config();
629 # add this station to the user database, if required (don't remove SSID from nodes)
630 my $user = DXUser->get_current($call);
632 $user = DXUser->new($call);
633 $user->priv(1); # I have relented and defaulted nodes
635 $user->homenode($call);
638 $user->sort('A') unless $user->is_node;
642 # incoming cluster list
651 my $newline = "PC19^";
654 my (@rout, @pc92out);
656 # first get the INTERFACE node
657 my $parent = Route::Node::get($self->{call});
659 dbg("DXPROT: my parent $self->{call} has disappeared");
668 # We are making a major change from now on. We are only going to accept
669 # PC19s from directly connected nodes. This means that we are probably
670 # going to throw away most of the data that we are being sent.
672 # The justification for this is that most of it is wrong or out of date
675 # From now on we are only going to believe PC92 data and locally connected
678 for ($i = 1; $i < $#_-1; $i += 4) {
680 my $call = uc $_[$i+1];
683 next unless defined $here && defined $conf && is_callsign($call);
685 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
687 # check for sane parameters
688 # $ver = 5000 if $ver eq '0000';
689 next unless $ver && $ver =~ /^\d+$/;
690 next if $ver < 5000; # only works with version 5 software
691 next if length $call < 3; # min 3 letter callsigns
692 next if $call eq $main::mycall;
694 # check that this PC19 isn't trying to alter the wrong dxchan
696 my $dxchan = DXChannel::get($call);
698 if ($dxchan == $self) {
701 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
706 my $user = check_add_node($call);
708 # if (eph_dup($genline)) {
709 # dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
713 RouteDB::update($call, $self->{call}, $dxchan ? 1 : undef);
716 if ($parent->via_pc92) {
717 dbg("PCPROT: non-local node controlled by PC92, ignored") if isdbg('chanerr');
722 my $r = Route::Node::get($call);
723 my $flags = Route::here($here)|Route::conf($conf);
725 # modify the routing table if it is in it, otherwise store it in the pc19list for now
728 if ($call ne $parent->call) {
729 if ($self->in_filter_route($r)) {
730 $ar = $parent->add($call, $ver, $flags);
731 # push @rout, $ar if $ar;
736 if ($r->version ne $ver || $r->flags != $flags) {
742 if ($call eq $self->{call} || $user->wantroutepc19) {
743 my $new = Route->new($call); # throw away
744 if ($self->in_filter_route($new)) {
745 my $ar = $parent->add($call, $ver, $flags);
746 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
747 push @rout, $ar if $ar;
748 push @pc92out, $r if $h;
755 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
756 my $mref = DXMsg::get_busy($call);
757 $mref->stop_msg($call) if $mref;
759 $user->lastin($main::systime) unless DXChannel::get($call);
763 # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
764 # but remember there will only be one (pair) these because any extras will be
767 $self->route_pc21($self->{call}, $line, @rout);
768 $self->route_pc19($self->{call}, $line, @rout);
771 $self->route_pc92a($main::mycall, $line, $main::routeroot, @pc92out) if $self->{state} eq 'normal';
775 sub send_delayed_pc92
779 # send out delayed PC92 config for this node if it is external
780 unless ($self->{do_pc92}) {
781 my $node = Route::Node::get($self->{call});
783 my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
784 $self->route_pc92c($main::mycall, undef, $node, @rout);
789 # send local configuration
796 $self->send_local_config();
798 $self->state('normal');
799 $self->{lastping} = 0;
800 $self->send_delayed_pc92;
803 # delete a cluster from the list
805 # This should never occur for directly connected nodes.
815 eph_del_regex("^PC1[679].*$call");
817 # if I get a PC21 from the same callsign as self then ignore it
818 if ($call eq $self->call) {
819 dbg("PCPROT: self referencing PC21 from $self->{call}");
823 RouteDB::delete($call, $self->{call});
825 my $parent = Route::Node::get($self->{call});
827 dbg("PCPROT: my parent $self->{call} has disappeared");
834 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
835 my $node = Route::Node::get($call);
838 if ($node->via_pc92) {
839 dbg("PCPROT: controlled by PC92, ignored") if isdbg('chanerr');
843 my $dxchan = DXChannel::get($call);
844 if ($dxchan && $dxchan != $self) {
845 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
850 return unless $self->in_filter_route($node);
852 # routing objects, force a PC21 if it is local
853 push @rout, $node->del($parent);
854 push @rout, $call if $dxchan && @rout == 0;
857 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
862 $self->route_pc21($origin, $line, @rout);
863 # $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
874 $self->state('normal');
875 $self->{lastping} = 0;
877 $self->send_delayed_pc92
888 # route foreign' pc27s
890 if ($_[8] ne $main::mycall) {
891 $self->route($_[8], $line);
896 # only do a rspf check on PC23 (not 27)
898 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
902 my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
903 my $sfi = unpad($_[3]);
904 my $k = unpad($_[4]);
905 my $i = unpad($_[5]);
906 my ($r) = $_[6] =~ /R=(\d+)/;
908 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
909 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
913 # global wwv filtering on INPUT
914 my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
915 if ($self->{inwwvfilter}) {
916 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
918 dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
922 $_[7] =~ s/-\d+$//o; # remove spotter's ssid
923 if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
924 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
928 # note this only takes the first one it gets
929 Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
933 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
935 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
938 # DON'T be silly and send on PC27s!
939 return if $pcno == 27;
941 # broadcast to the eager world
942 send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
954 $nref = Route::Node::get($call);
955 $uref = Route::User::get($call);
956 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
958 if (eph_dup($line)) {
959 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
963 $nref->here($_[2]) if $nref;
964 $uref->here($_[2]) if $uref;
965 my $ref = $nref || $uref;
966 return unless $self->in_filter_route($ref);
968 $self->route_pc24($origin, $line, $ref, $_[3]);
978 if ($_[1] ne $main::mycall) {
979 $self->route($_[1], $line);
982 if ($_[2] eq $main::mycall) {
983 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
987 Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
991 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
994 $self->send(pc26(@{$in}[0..4], $_[2]));
1000 my @in = reverse Geomag::search(0, $_[4], time, 1);
1003 $self->send(pc27(@{$in}[0..5], $_[2]));
1008 sub handle_26 {goto &handle_11}
1009 sub handle_27 {goto &handle_23}
1011 # mail/file handling
1018 if ($_[1] eq $main::mycall) {
1020 my $sub = "DXMsg::handle_$pcno";
1023 $self->route($_[1], $line) unless $self->is_clx;
1027 sub handle_29 {goto &handle_28}
1028 sub handle_30 {goto &handle_28}
1029 sub handle_31 {goto &handle_28}
1030 sub handle_32 {goto &handle_28}
1031 sub handle_33 {goto &handle_28}
1039 if (eph_dup($line, $eph_pc34_restime)) {
1040 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1042 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1046 # remote command replies
1053 eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1054 $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1057 sub handle_36 {goto &handle_34}
1066 if ($_[1] eq $main::mycall) {
1068 my $sub = "DXDb::handle_$pcno";
1071 $self->route($_[1], $line) unless $self->is_clx;
1075 # node connected list from neighbour
1084 # incoming disconnect
1091 if ($_[1] eq $self->{call}) {
1092 $self->disconnect(1);
1094 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1098 sub handle_40 {goto &handle_28}
1110 $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1111 if (eph_dup($l, $eph_info_restime)) {
1112 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1116 # input filter if required
1117 # my $ref = Route::get($call) || Route->new($call);
1118 # return unless $self->in_filter_route($ref);
1120 if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1121 dbg('PCPROT: invalid value') if isdbg('chanerr');
1125 # add this station to the user database, if required
1126 my $user = DXUser->get_current($call);
1127 $user = DXUser->new($call) unless $user;
1131 } elsif ($_[2] == 2) {
1133 } elsif ($_[2] == 3) {
1134 if (is_latlong($_[3])) {
1135 my ($lat, $long) = DXBearing::stoll($_[3]);
1138 $user->qra(DXBearing::lltoqra($lat, $long));
1140 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1143 } elsif ($_[2] == 4) {
1144 $user->homenode($_[3]);
1145 } elsif ($_[2] == 5) {
1146 if (is_qra(uc $_[3])) {
1147 my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1150 $user->qra(uc $_[3]);
1152 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1156 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1159 unless ($self->{isolate}) {
1160 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1163 # perhaps this IS what we want after all
1164 # $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1167 sub handle_42 {goto &handle_28}
1171 sub handle_44 {goto &handle_37}
1172 sub handle_45 {goto &handle_37}
1173 sub handle_46 {goto &handle_37}
1174 sub handle_47 {goto &handle_37}
1175 sub handle_48 {goto &handle_37}
1177 # message and database
1185 if (eph_dup($line)) {
1186 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1190 if ($_[1] eq $main::mycall) {
1191 DXMsg::handle_49($self, @_);
1193 $self->route($_[1], $line) unless $self->is_clx;
1197 # keep alive/user list
1207 RouteDB::update($call, $self->{call});
1209 my $node = Route::Node::get($call);
1211 return unless $node->call eq $self->{call};
1212 $node->usercount($_[2]);
1214 # input filter if required
1215 return unless $self->in_filter_route($node);
1217 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1221 # incoming ping requests/answers
1234 if ($to eq $main::mycall) {
1236 $self->send(pc51($from, $to, '0'));
1238 DXXml::Ping::handle_ping_reply($self, $from);
1242 RouteDB::update($from, $self->{call});
1244 if (eph_dup($line)) {
1245 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1248 # route down an appropriate thingy
1249 $self->route($to, $line);
1253 # dunno but route it
1261 if ($call ne $main::mycall) {
1262 $self->route($call, $line);
1276 my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1277 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1278 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1281 @_ = map { unpad($_) } @_;
1283 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1287 my $wcy = WCY::update($d, @_[2..12]);
1291 $rep = Local::wcy($self, @_[1..12]);
1293 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1296 # broadcast to the eager world
1297 send_wcy_spot($self, $line, $d, @_[2..12]);
1300 # remote commands (incoming)
1307 $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1310 # remote command replies
1317 $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1320 # decode a pc92 call: flag call : version : build
1321 sub _decode_pc92_call
1324 my @part = split /:/, $icall;
1325 my ($flag, $call) = unpack "A A*", $part[0];
1326 return () unless defined $flag && $flag ge '0' && $flag le '7';
1327 return () unless $call && is_callsign($call);
1328 my $is_node = $flag & 4;
1329 my $is_extnode = $flag & 2;
1330 my $here = $flag & 1;
1331 return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1334 # decode a pc92 call: flag call : version : build
1335 sub _encode_pc92_call
1340 my $call = $ref->call;
1342 $flag |= $ref->here ? 1 : 0;
1343 if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1345 my $dxchan = DXChannel::get($call);
1346 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc92};
1348 if ($ref->version) {
1349 my $version = $ref->version || 1.0;
1350 $version = $version * 100 + 5300 if $version < 50;
1351 $extra .= ":" . $version;
1355 return "$flag$call$extra";
1362 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1367 @rout = $parent->add($call, $version, Route::here($here));
1369 @rout = $parent->add_user($call, Route::here($here));
1379 my ($call, $is_node, $is_extnode, $here, $version, $build) = @$s;
1383 my $nref = Route::Node::get($call);
1384 @rout = $nref->del($parent) if $nref;
1386 my $uref = Route::User::get($call);
1387 @rout = $parent->del_user($uref) if $uref;
1398 if (!$_last_time || $_last_time != $main::systime) {
1399 $_last_time = $main::systime;
1401 return $_last_time - $main::systime_daystart;
1404 return sprintf "%d.%02d", $_last_time - $main::systime_daystart, $_last_occurs;
1415 my $parent = ref $call ? $call : Route::Node::get($call);
1417 my $lastid = $parent->lastid->{$pc} || 0;
1418 if ($lastid + $main::systime_daystart >= $t + $main::systime_daystart) {
1419 dbg("PCPROT: dup / old id on $call <= $lastid, ignored") if isdbg('chanerr');
1423 $parent = Route::Node->new($call);
1425 $parent->lastid->{$pc} = $t;
1430 # DXSpider routing entries
1438 $self->{do_pc92} ||= 1;
1442 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1448 my @ent = map {[ _decode_pc92_call($_) ]} grep {$_ && /^[0-7]/} @_[4 .. $#_];
1450 if ($pcall eq $main::mycall) {
1451 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1455 my $parent = check_pc9x_t($pcall, $t, 92, 1) || return;
1457 $parent->lastid->{92} = $t;
1458 $parent->do_pc92(1);
1459 $parent->via_pc92(1);
1461 dbg("ROUTE: reset obscount on $pcall now " . $parent->obscount) if isdbg('route');
1466 # look at the first one which will always be a node of some sort
1467 # and update any information that needs to be done.
1468 my ($call, $is_node, $is_extnode, $here, $version, $build) = @{$ent[0]};
1469 if ($call && $is_node) {
1470 if ($call eq $main::mycall) {
1471 dbg("PCPROT: looped back on node entry, ignored") if isdbg('chanerr');
1475 # this is only accepted from my "self"
1476 if (DXChannel::get($call) && $call ne $self->{call}) {
1477 dbg("PCPROT: locally connected node config for $call from other another node $self->{call}, ignored") if isdbg('chanerr');
1480 # reparent to external node (note that we must have received a 'C' or 'A' record
1481 # from the true parent node for this external before we get one for the this node
1482 unless ($parent = Route::Node::get($call)) {
1483 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1486 $parent = check_pc9x_t($call, $t, 92) || return;
1487 $parent->via_pc92(1);
1489 dbg("ROUTE: reset obscount on $pcall now " . $parent->obscount) if isdbg('route');
1492 dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1495 $parent->here(Route::here($here));
1496 $parent->version($version) if $version && $version > $parent->version;
1497 $parent->build($build) if $build && $build > $parent->build;
1501 # do a pass through removing any references to either locally connected nodes or mycall
1505 if ($_->[0] eq $main::mycall || DXChannel::get($_->[0])) {
1506 dbg("PCPROT: $_->[0] refers to locally connected node, ignored") if isdbg('chanerr');
1516 push @radd, _add_thingy($parent, $_);
1518 } elsif ($sort eq 'D') {
1520 push @rdel, _del_thingy($parent, $_);
1522 } elsif ($sort eq 'C') {
1523 my (@nodes, @users);
1524 foreach my $r (@nent) {
1525 # my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1528 push @nodes, $r->[0];
1530 push @users, $r->[0];
1533 dbg("DXPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr');
1537 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1539 foreach my $r (@nent) {
1542 push @radd,_add_thingy($parent, $r) if grep $call eq $_, (@$nnodes, @$nusers);
1543 push @rdel,_del_thingy($parent, $r) if grep $call eq $_, (@$dnodes, @$dusers);
1547 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1551 $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1552 foreach my $r (@rdel) {
1555 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1556 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1558 my @pc19 = grep { $_ && $_->isa('Route::Node') } @radd;
1559 my @pc16 = grep { $_ && $_->isa('Route::User') } @radd;
1560 $self->route_pc19($pcall, undef, @pc19) if @pc19;
1561 $self->route_pc16($pcall, undef, $parent, @pc16) if @pc16;
1564 # if get here then rebroadcast the thing with its Hop count decremented (if
1565 # there is one). If it has a hop count and it decrements to zero then don't
1568 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1579 if (eph_dup($line)) {
1580 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1582 unless ($self->{isolate}) {
1583 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me