3 # This module impliments the protocal mode for a dx cluster
5 # Copyright (c) 1998 Dirk Koopman G1TLH
30 use Time::HiRes qw(gettimeofday tv_interval);
48 use vars qw($VERSION $BRANCH);
50 main::mkver($VERSION = q$Revision$);
52 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
53 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
54 $pingint $obscount %pc19list $chatdupeage $chatimportfn
55 $investigation_int $pc19_version $myprot_version
56 %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
57 $allowzero $decode_dk0wcy $send_opernam @checklist);
59 $pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11
60 $pc23_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc23
62 $last_hour = time; # last time I did an hourly periodic update
63 %pings = (); # outstanding ping requests outbound
64 %rcmds = (); # outstanding rcmd requests outbound
65 %nodehops = (); # node specific hop control
66 %pc19list = (); # list of outstanding PC19s that haven't had PC16s on them
68 $censorpc = 1; # Do a BadWords::check on text fields and reject things
69 # loads of 'bad things'
70 $baddx = new DXHash "baddx";
71 $badspotter = new DXHash "badspotter";
72 $badnode = new DXHash "badnode";
73 $last10 = $last_pc50 = time;
77 $eph_info_restime = 60*60;
78 $eph_pc34_restime = 30;
81 $chatdupeage = 20 * 60 * 60;
82 $chatimportfn = "$main::root/chat_import";
83 $investigation_int = 12*60*60; # time between checks to see if we can see this node
84 $pc19_version = 5466; # the visible version no for outgoing PC19s generated from pc59
88 [ qw(i c c m bp bc c) ], # pc10
89 [ qw(i f m d t m c c h) ], # pc11
90 [ qw(i c bm m bm bm p h) ], # pc12
94 undef , # pc16 has to be validated manually
95 [ qw(i c c h) ], # pc17
97 undef , # pc19 has to be validated manually
98 undef , # pc20 no validation
99 [ qw(i c m h) ], # pc21
100 undef , # pc22 no validation
101 [ qw(i d n n n n m c c h) ], # pc23
102 [ qw(i c p h) ], # pc24
103 [ qw(i c c n n) ], # pc25
104 [ qw(i f m d t m c c bc) ], # pc26
105 [ qw(i d n n n n m c c bc) ], # pc27
106 [ qw(i c c m c d t p m bp n p bp bc) ], # pc28
107 [ qw(i c c n m) ], # pc29
108 [ qw(i c c n) ], # pc30
109 [ qw(i c c n) ], # pc31
110 [ qw(i c c n) ], # pc32
111 [ qw(i c c n) ], # pc33
112 [ qw(i c c m) ], # pc34
113 [ qw(i c c m) ], # pc35
114 [ qw(i c c m) ], # pc36
115 [ qw(i c c n m) ], # pc37
116 undef, # pc38 not interested
117 [ qw(i c m) ], # pc39
118 [ qw(i c c m p n) ], # pc40
119 [ qw(i c n m h) ], # pc41
120 [ qw(i c c n) ], # pc42
121 undef, # pc43 don't handle it
122 [ qw(i c c n m m c) ], # pc44
123 [ qw(i c c n m) ], # pc45
124 [ qw(i c c n) ], # pc46
127 [ qw(i c m h) ], # pc49
128 [ qw(i c n h) ], # pc50
129 [ qw(i c c n) ], # pc51
151 [ qw(i d n n n n n n m m m c c h) ], # pc73
162 [ qw(i c c c m) ], # pc84
163 [ qw(i c c c m) ], # pc85
168 [ qw(i c n) ], # pc90
171 # use the entry in the check list to check the field list presented
172 # return OK if line NOT in check list (for now)
177 return 0 if $n < 0 || $n > @checklist;
178 my $ref = $checklist[$n];
179 return 0 unless ref $ref;
182 for ($i = 1; $i < @$ref; $i++) {
183 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
184 return 0 unless $act;
185 next if $blank && $_[$i] =~ /^[ \*]$/;
187 return $i unless is_callsign($_[$i]);
188 } elsif ($act eq 'i') {
190 } elsif ($act eq 'm') {
191 return $i unless is_pctext($_[$i]);
192 } elsif ($act eq 'p') {
193 return $i unless is_pcflag($_[$i]);
194 } elsif ($act eq 'f') {
195 return $i unless is_freq($_[$i]);
196 } elsif ($act eq 'n') {
197 return $i unless $_[$i] =~ /^[\d ]+$/;
198 } elsif ($act eq 'h') {
199 return $i unless $_[$i] =~ /^H\d\d?$/;
200 } elsif ($act eq 'd') {
201 return $i unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
202 } elsif ($act eq 't') {
203 return $i unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
211 do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
214 my $user = DXUser->get($main::mycall);
215 die "User $main::mycall not setup or disappeared RTFM" unless $user;
217 $myprot_version += $main::version*100;
218 $main::me = DXProt->new($main::mycall, 0, $user);
219 $main::me->{here} = 1;
220 $main::me->{state} = "indifferent";
221 $main::me->{sort} = 'S'; # S for spider
222 $main::me->{priv} = 9;
223 $main::me->{metric} = 0;
224 $main::me->{pingave} = 0;
225 $main::me->{registered} = 1;
226 $main::me->{version} = 5252 + $main::version;
227 $main::me->{build} = $main::build;
228 $main::me->{lastcf} = $main::me->{lasthello} = time;
232 # obtain a new connection this is derived from dxchannel
237 my $self = DXChannel::alloc(@_);
239 # add this node to the table, the values get filled in later
242 $main::routeroot->add($call, '5000', 1) if $call ne $main::mycall;
246 # this is how a pc connection starts (for an incoming connection)
247 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
248 # all the crap that comes between).
251 my ($self, $line, $sort) = @_;
252 my $call = $self->{call};
253 my $user = $self->{user};
256 my $host = $self->{conn}->{peerhost} || "unknown";
257 Log('DXProt', "$call connected from $host");
259 # remember type of connection
260 $self->{consort} = $line;
261 $self->{outbound} = $sort eq 'O';
262 my $priv = $user->priv;
263 $priv = $user->priv(1) unless $priv;
264 $self->{priv} = $priv; # other clusters can always be 'normal' users
265 $self->{lang} = $user->lang || 'en';
266 $self->{isolate} = $user->{isolate};
267 $self->{consort} = $line; # save the connection type
271 # sort out registration
272 $self->{registered} = 1;
274 # get the output filters
275 $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
276 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
277 $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
278 $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
279 $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
282 # get the INPUT filters (these only pertain to Clusters)
283 $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
284 $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
285 $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
286 $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
287 $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
289 # set unbuffered and no echo
290 $self->send_now('B',"0");
291 $self->send_now('E',"0");
292 $self->conn->echo(0) if $self->conn->can('echo');
294 # ping neighbour node stuff
295 my $ping = $user->pingint;
296 $ping = $pingint unless defined $ping;
297 $self->{pingint} = $ping;
298 $self->{nopings} = $user->nopings || $obscount;
299 $self->{pingtime} = [ ];
300 $self->{pingave} = 999;
301 $self->{metric} ||= 100;
302 $self->{lastping} = $main::systime;
304 # send initialisation string
305 unless ($self->{outbound}) {
309 $self->state('init');
310 $self->{pc50_t} = $main::systime;
312 # ALWAYS output the hello
313 my $thing = Thingy::Hello->new(user => $call, h => $self->{here});
314 $thing->broadcast($self);
315 $self->lasthello($main::systime);
317 # send info to all logged in thingies
318 $self->tell_login('loginn');
320 # run a script send the output to the debug file
321 my $script = new Script(lc $call) || new Script('node_default');
322 $script->run($self) if $script;
326 # send outgoing 'challenge'
337 # This is the normal pcxx despatcher
341 my ($self, $line) = @_;
343 my @field = split /\^/, $line;
344 return unless @field;
346 pop @field if $field[-1] eq '~';
348 # print join(',', @field), "\n";
350 # process PC frames, this will fail unless the frame starts PCnn
351 my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
352 unless (defined $pcno && $pcno >= 10 && $pcno <= 99) {
353 dbg("PCPROT: unknown protocol") if isdbg('chanerr');
357 # check for and dump bad protocol messages
358 my $n = check($pcno, @field);
360 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
364 # decrement any hop fields at this point
365 if ($line =~ /\^H(\d\d?)\^?~?$/) {
368 dbg("PCPROT: zero hop count, dumped") if isdbg('chanerr');
371 $line =~ s/\^H\d\d?(\^?~?)$/^H$hops$1/;
374 my $origin = $self->{call};
376 my $sub = "handle_$pcno";
378 if ($self->can($sub)) {
379 $self->$sub($pcno, $line, $origin, @field);
381 $self->handle_default($pcno, $line, $origin, @field);
385 # incoming talk commands
394 return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
396 # will we allow it at all?
399 if (@bad = BadWords::check($_[3])) {
400 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
405 # is it for me or one of mine?
406 my ($from, $to, $via, $call, $dxchan);
415 # if this is a 'nodx' node then ignore it
416 if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
417 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
421 # if this is a 'bad spotter' user then ignore it
423 $nossid =~ s/-\d+$//;
424 if ($badspotter->in($nossid)) {
425 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
429 # if we are converting announces to talk is it a dup?
431 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
432 dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
437 # remember a route to this node and also the node on which this user is
438 RouteDB::update($_[6], $origin);
439 # RouteDB::update($to, $_[6]);
441 # it is here and logged on
442 $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
443 $dxchan = DXChannel::get($to) unless $dxchan;
444 if ($dxchan && $dxchan->is_user) {
446 $dxchan->talk($from, $to, $via, $_[3]);
450 # is it elsewhere, visible on the cluster via the to address?
451 # note: this discards the via unless the to address is on
454 if ($ref = Route::get($to)) {
455 $vref = Route::Node::get($via) if $via;
456 $vref = undef unless $vref && grep $to eq $_, $vref->users;
457 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
461 # can we see an interface to send it down?
463 # not visible here, send a message of condolence
465 $ref = Route::get($from);
466 $vref = $ref = Route::Node::get($_[6]) unless $ref;
468 $dxchan = $ref->dxchan;
469 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
481 # route 'foreign' pc26s
483 if ($_[7] ne $main::mycall) {
484 $self->route($_[7], $line);
490 # return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
492 # if this is a 'nodx' node then ignore it
493 if ($badnode->in($_[7])) {
494 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
498 # if this is a 'bad spotter' user then ignore it
500 $nossid =~ s/-\d+$//;
501 if ($badspotter->in($nossid)) {
502 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
506 # convert the date to a unix date
507 my $d = cltounix($_[3], $_[4]);
508 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
509 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
510 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
515 if ($baddx->in($_[2]) || BadWords::check($_[2])) {
516 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
521 $_[5] =~ s/^\s+//; # take any leading blanks off
522 $_[2] = unpad($_[2]); # take off leading and trailing blanks from spotted callsign
523 if ($_[2] =~ /BUST\w*$/) {
524 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
529 if (@bad = BadWords::check($_[5])) {
530 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
536 # RouteDB::update($_[7], $self->{call});
537 # RouteDB::update($_[6], $_[7]);
539 my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $_[6], $_[7]);
541 my $thing = Thingy::Dx->new(origin=>$main::mycall);
542 $thing->from_DXProt(DXProt=>$line,spotdata=>\@spot);
543 $thing->process($self);
545 # this goes after the input filtering, but before the add
546 # so that if it is input filtered, it isn't added to the dup
547 # list. This allows it to come in from a "legitimate" source
549 # @spot at this point contains:-
550 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
551 # then spotted itu, spotted cq, spotters itu, spotters cq
552 # you should be able to route on any of these
555 # fix up qra locators of known users
556 my $user = DXUser->get_current($spot[4]);
558 my $qra = $user->qra;
559 unless ($qra && is_qra($qra)) {
560 my $lat = $user->lat;
561 my $long = $user->long;
562 if (defined $lat && defined $long) {
563 $user->qra(DXBearing::lltoqra($lat, $long));
568 # send a remote command to a distant cluster if it is visible and there is no
569 # qra locator and we havn't done it for a month.
571 unless ($user->qra) {
573 my $to = $user->homenode;
574 my $last = $user->lastoper || 0;
575 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
576 my $cmd = "forward/opernam $spot[4]";
577 # send the rcmd but we aren't interested in the replies...
578 my $dxchan = $node->dxchan;
579 if ($dxchan && $dxchan->is_clx) {
580 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
582 route(undef, $to, pc34($main::mycall, $to, $cmd));
586 $node = Route::Node::get($to);
588 $dxchan = $node->dxchan;
589 if ($dxchan && $dxchan->is_clx) {
590 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
592 route(undef, $to, pc34($main::mycall, $to, $cmd));
596 $user->lastoper($main::systime);
611 # return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
613 # announce duplicate checking
614 $_[3] =~ s/^\s+//; # remove leading blanks
618 if (@bad = BadWords::check($_[3])) {
619 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
624 # if this is a 'nodx' node then ignore it
625 if ($badnode->in($_[5])) {
626 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
630 # if this is a 'bad spotter' user then ignore it
632 $nossid =~ s/-\d+$//;
633 if ($badspotter->in($nossid)) {
634 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
641 if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
642 $self->send_chat($line, @_[1..6]);
643 } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
646 # RouteDB::update($_[5], $self->{call});
647 # RouteDB::update($_[1], $_[5]);
649 # ignore something that looks like a chat line coming in with sysop
650 # flag - this is a kludge...
651 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
652 dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
656 # here's a bit of fun, convert incoming ann with a callsign in the first word
657 # or one saying 'to <call>' to a talk if we can route to the recipient
659 my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
661 my $ref = Route::get($call);
663 $dxchan = $ref->dxchan;
664 $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
671 $self->send_announce($line, @_[1..6]);
673 $self->route($_[2], $line);
688 my $newline = "PC16^";
690 # dos I want users from this channel?
691 unless ($self->user->wantpc16) {
692 dbg("PCPROT: don't send users to $origin") if isdbg('chanerr');
696 if ($ncall eq $main::mycall) {
697 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
701 RouteDB::update($ncall, $self->{call});
703 # do we believe this call?
704 unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
705 if (my $ivp = Investigate::get($ncall, $self->{call})) {
706 $ivp->store_pcxx($pcno,$line,$origin,@_);
708 dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
713 if (eph_dup($line)) {
714 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
718 my $parent = Route::Node::get($ncall);
720 # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list,
721 # fix it up in the routing tables and issue it forth before the PC16
723 my $nl = $pc19list{$ncall};
725 if ($nl && @_ > 3) { # 3 because of the hop count!
727 # this is a new (remembered) node, now attach it to me if it isn't in filtered
728 # and we haven't disallowed it
729 my $user = DXUser->get_current($ncall);
731 $user = DXUser->new($ncall);
733 $user->priv(1); # I have relented and defaulted nodes
735 $user->homenode($ncall);
739 my $wantpc19 = $user->wantroutepc19;
740 if ($wantpc19 || !defined $wantpc19) {
741 my $new = Route->new($ncall); # throw away
742 if ($self->in_filter_route($new)) {
745 $parent = Route::Node::get($_->[0]);
746 $dxchan = $parent->dxchan if $parent;
747 if ($dxchan && $dxchan ne $self) {
748 dbg("PCPROT: PC19 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
752 my $r = $parent->add($ncall, $_->[1], $_->[2]);
753 push @nrout, $r unless @nrout;
756 $user->wantroutepc19(1) unless defined $wantpc19; # for now we work on the basis that pc16 = real route
757 $user->lastin($main::systime) unless DXChannel::get($ncall);
760 # route the pc19 - this will cause 'stuttering PC19s' for a while
761 $self->route_pc19($origin, $line, @nrout) if @nrout ;
762 $parent = Route::Node::get($ncall);
764 dbg("PCPROT: lost $ncall after sending PC19 for it?");
770 delete $pc19list{$ncall};
773 dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
778 $dxchan = $parent->dxchan;
779 if ($dxchan && $dxchan ne $self) {
780 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
784 # input filter if required
785 return unless $self->in_filter_route($parent);
788 # is he under the control of the new protocol?
789 if ($parent && $parent->np) {
790 dbg("PCPROT: $ncall aranea node, ignored") if isdbg('chanerr');
796 for ($i = 2; $i < $#_; $i++) {
797 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
798 next unless $call && $conf && defined $here && is_callsign($call);
799 next if $call eq $main::mycall;
801 eph_del_regex("^PC17\\^$call\\^$ncall");
803 $conf = $conf eq '*';
805 # reject this if we think it is a node already
806 my $r = Route::Node::get($call);
807 my $u = DXUser->get_current($call) unless $r;
808 if ($r || ($u && $u->is_node)) {
809 dbg("PCPROT: $call is a node") if isdbg('chanerr');
813 $r = Route::User::get($call);
817 my $au = $r->addparent($parent);
818 if ($r->flags != $flags) {
822 push @rout, $r if $au;
824 push @rout, $parent->add_user($call, $flags);
828 # add this station to the user database, if required
829 $call =~ s/-\d+$//o; # remove ssid for users
830 my $user = DXUser->get_current($call);
831 $user = DXUser->new($call) if !$user;
832 $user->homenode($parent->call) if !$user->homenode;
833 $user->node($parent->call);
834 $user->lastin($main::systime) unless DXChannel::get($call);
837 $self->route_pc16($origin, $line, $parent, @rout) if @rout;
851 eph_del_regex("^PC16\\^$ncall.*$ucall");
853 # do I want users from this channel?
854 unless ($self->user->wantpc16) {
855 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
858 if ($ncall eq $main::mycall) {
859 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
863 RouteDB::delete($ncall, $self->{call});
865 # do we believe this call?
866 unless ($ncall eq $self->{call} || $self->is_believed($ncall)) {
867 if (my $ivp = Investigate::get($ncall, $self->{call})) {
868 $ivp->store_pcxx($pcno,$line,$origin,@_);
870 dbg("PCPROT: We don't believe $ncall on $self->{call}") if isdbg('chanerr');
875 my $uref = Route::User::get($ucall);
877 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
879 my $parent = Route::Node::get($ncall);
881 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
884 $dxchan = $parent->dxchan if $parent;
885 if ($dxchan && $dxchan ne $self) {
886 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
890 # is he under the control of the new protocol?
891 if ($parent && $parent->np) {
892 dbg("PCPROT: $ncall aranea node, ignored") if isdbg('chanerr');
896 # input filter if required and then remove user if present
898 # return unless $self->in_filter_route($parent);
899 $parent->del_user($uref) if $uref;
901 $parent = Route->new($ncall); # throw away
904 if (eph_dup($line)) {
905 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
909 $uref = Route->new($ucall) unless $uref; # throw away
910 $self->route_pc17($origin, $line, $parent, $uref);
920 $self->state('init');
922 # record the type and version offered
923 if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
924 $self->version(0 + $1);
925 $self->user->version(0 + $1);
926 $self->build(0 + $2);
927 $self->user->build(0 + $2);
928 unless ($self->is_spider) {
929 $self->user->sort('S');
934 $self->version(50.0);
935 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
936 $self->user->version($self->version);
939 # first clear out any nodes on this dxchannel
940 my $parent = Route::Node::get($origin);
941 my @rout = $parent->del_nodes;
942 $self->route_pc21($origin, $line, @rout, $parent) if @rout;
943 $self->send_local_config();
947 # incoming cluster list
956 my $newline = "PC19^";
961 # first get the INTERFACE node
962 my $parent = Route::Node::get($origin);
964 dbg("DXPROT: my parent $origin has disappeared");
969 # if the origin isn't the same as the INTERFACE, then reparent, creating nodes as necessary
970 if ($origin ne $self->call) {
971 my $op = Route::Node::get($origin);
973 $op = $parent->add($origin, 5000, 1);
974 my $user = DXUser->get_current($origin);
976 $user = DXUser->new($origin);
977 $user->priv(1); # I have relented and defaulted nodes
979 $user->homenode($origin);
980 $user->node($origin);
981 $user->wantroutepc19(1);
983 $user->sort('A') unless $user->is_node;
990 for ($i = 1; $i < $#_-1; $i += 4) {
992 my $call = uc $_[$i+1];
995 next unless defined $here && defined $conf && is_callsign($call);
997 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
999 # check for sane parameters
1000 # $ver = 5000 if $ver eq '0000';
1001 next if $ver < 5000; # only works with version 5 software
1002 next if length $call < 3; # min 3 letter callsigns
1003 next if $call eq $main::mycall;
1005 # check that this PC19 isn't trying to alter the wrong dxchan
1006 my $dxchan = DXChannel::get($call);
1007 if ($dxchan && $dxchan != $self) {
1008 dbg("PCPROT: PC19 from $origin trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
1012 # add this station to the user database, if required (don't remove SSID from nodes)
1013 my $user = DXUser->get_current($call);
1015 $user = DXUser->new($call);
1016 $user->priv(1); # I have relented and defaulted nodes
1018 $user->homenode($call);
1021 $user->sort('A') unless $user->is_node;
1023 RouteDB::update($call, $origin);
1025 # do we believe this call?
1026 my $genline = "PC19^$here^$call^$conf^$ver^$_[-1]^";
1027 unless ($call eq $origin || $self->is_believed($call)) {
1028 my $pt = $user->lastping($origin) || 0;
1029 if ($pt+$investigation_int < $main::systime && !Investigate::get($call, $origin)) {
1030 my $ivp = Investigate->new($call, $origin);
1031 $ivp->version($ver);
1033 $ivp->store_pcxx($pcno,$genline,$origin,'PC19',$here,$call,$conf,$ver,$_[-1]);
1035 dbg("PCPROT: We don't believe $call on $origin") if isdbg('chanerr');
1041 if (eph_dup($genline)) {
1042 dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
1046 my $r = Route::Node::get($call);
1049 # is he under the control of the new protocol?
1051 dbg("PCPROT: $call aranea node, ignored") if isdbg('chanerr');
1054 # modify the routing table if it is in it, otherwise store it in the pc19list for now
1057 if ($call ne $parent->call) {
1058 if ($self->in_filter_route($r)) {
1059 $ar = $parent->add($call, $ver, $flags);
1060 push @rout, $ar if $ar;
1067 # if he is directly connected or allowed then add him, otherwise store him up for later
1068 if ($call eq $origin || $user->wantroutepc19) {
1069 my $new = Route->new($call); # throw away
1070 if ($self->in_filter_route($new)) {
1071 my $ar = $parent->add($call, $ver, $flags);
1072 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
1073 push @rout, $ar if $ar;
1078 $pc19list{$call} = [] unless exists $pc19list{$call};
1079 my $nl = $pc19list{$call};
1080 push @{$pc19list{$call}}, [$origin, $ver, $flags] unless grep $_->[0] eq $origin, @$nl;
1084 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
1085 my $mref = DXMsg::get_busy($call);
1086 $mref->stop_msg($call) if $mref;
1088 $user->lastin($main::systime) unless DXChannel::get($call);
1093 $self->route_pc19($origin, $line, @rout) if @rout;
1096 # send local configuration
1103 $self->send_local_config();
1104 $self->send(pc22());
1105 $self->state('normal');
1106 $self->{lastping} = 0;
1107 my $thing = Thingy::Rt->new(user=>$self->{call});
1108 my $nref = Route::Node::get($self->{call});
1109 $thing->copy_pc16_data($nref);
1112 $self->lastcf($main::systime);
1115 # delete a cluster from the list
1122 my $call = uc $_[1];
1124 eph_del_regex("^PC1[679].*$call");
1126 # if I get a PC21 from the same callsign as self then treat it
1127 # as a PC39: I have gone away
1128 if ($call eq $self->call) {
1129 $self->disconnect(1);
1133 RouteDB::delete($call, $origin);
1135 # check if we believe this
1136 unless ($call eq $origin || $self->is_believed($call)) {
1137 if (my $ivp = Investigate::get($call, $origin)) {
1138 $ivp->store_pcxx($pcno,$line,$origin,@_);
1140 dbg("PCPROT: We don't believe $call on $origin") if isdbg('chanerr');
1145 # check to see if we are in the pc19list, if we are then don't bother with any of
1146 # this routing table manipulation, just remove it from the list and dump it
1148 if (my $nl = $pc19list{$call}) {
1149 $pc19list{$call} = [ grep {$_->[0] ne $origin} @$nl ];
1150 delete $pc19list{$call} unless @{$pc19list{$call}};
1153 my $parent = Route::Node::get($origin);
1155 dbg("DXPROT: my parent $origin has disappeared");
1159 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
1160 my $node = Route::Node::get($call);
1163 my $dxchan = DXChannel::get($call);
1164 if ($dxchan && $dxchan != $self) {
1165 dbg("PCPROT: PC21 from $origin trying to alter locally connected $call, ignored!") if isdbg('chanerr');
1170 return unless $self->in_filter_route($node);
1172 # is he under the control of the new protocol?
1174 dbg("PCPROT: $call aranea node, ignored") if isdbg('chanerr');
1179 push @rout, $node->del($parent);
1182 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1187 $self->route_pc21($origin, $line, @rout) if @rout;
1197 $self->state('normal');
1198 $self->{lastping} = 0;
1199 my $thing = Thingy::Rt->new(user=>$self->{call});
1200 my $nref = Route::Node::get($self->{call});
1201 $thing->copy_pc16_data($nref);
1203 $self->lastcf($main::systime);
1214 # route foreign' pc27s
1216 if ($_[8] ne $main::mycall) {
1217 $self->route($_[8], $line);
1222 # only do a rspf check on PC23 (not 27)
1224 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
1228 my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
1229 my $sfi = unpad($_[3]);
1230 my $k = unpad($_[4]);
1231 my $i = unpad($_[5]);
1232 my ($r) = $_[6] =~ /R=(\d+)/;
1234 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1235 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
1238 if (Geomag::dup($d,$sfi,$k,$i,$_[6])) {
1239 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1242 $_[7] =~ s/-\d+$//o; # remove spotter's ssid
1244 my $wwv = Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
1248 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
1250 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1253 # DON'T be silly and send on PC27s!
1254 return if $pcno == 27;
1256 # broadcast to the eager world
1257 send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
1267 my $call = uc $_[1];
1269 $nref = Route::Node::get($call);
1270 $uref = Route::User::get($call);
1271 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1273 if (eph_dup($line)) {
1274 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
1278 $nref->here($_[2]) if $nref;
1279 $uref->here($_[2]) if $uref;
1280 my $ref = $nref || $uref;
1281 return unless $self->in_filter_route($ref);
1283 $self->route_pc24($origin, $line, $ref, $_[3]);
1293 if ($_[1] ne $main::mycall) {
1294 $self->route($_[1], $line);
1297 if ($_[2] eq $main::mycall) {
1298 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1302 Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
1306 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
1309 $self->send(pc26(@{$in}[0..4], $_[2]));
1315 my @in = reverse Geomag::search(0, $_[4], time, 1);
1318 $self->send(pc27(@{$in}[0..5], $_[2]));
1323 sub handle_26 {goto &handle_11}
1324 sub handle_27 {goto &handle_23}
1326 # mail/file handling
1333 if ($_[1] eq $main::mycall) {
1335 my $sub = "DXMsg::handle_$pcno";
1338 $self->route($_[1], $line) unless $self->is_clx;
1342 sub handle_29 {goto &handle_28}
1343 sub handle_30 {goto &handle_28}
1344 sub handle_31 {goto &handle_28}
1345 sub handle_32 {goto &handle_28}
1346 sub handle_33 {goto &handle_28}
1354 if (eph_dup($line, $eph_pc34_restime)) {
1355 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
1357 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
1361 # remote command replies
1368 eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
1369 $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
1372 sub handle_36 {goto &handle_34}
1381 if ($_[1] eq $main::mycall) {
1383 my $sub = "DXDb::handle_$pcno";
1386 $self->route($_[1], $line) unless $self->is_clx;
1390 # node connected list from neighbour
1399 # incoming disconnect
1406 if ($_[1] eq $origin) {
1407 $self->disconnect(1);
1409 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1413 sub handle_40 {goto &handle_28}
1425 $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1426 if (eph_dup($l, $eph_info_restime)) {
1427 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1431 # input filter if required
1432 # my $ref = Route::get($call) || Route->new($call);
1433 # return unless $self->in_filter_route($ref);
1435 if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1436 dbg('PCPROT: invalid value') if isdbg('chanerr');
1440 # add this station to the user database, if required
1441 my $user = DXUser->get_current($call);
1442 $user = DXUser->new($call) unless $user;
1446 } elsif ($_[2] == 2) {
1448 } elsif ($_[2] == 3) {
1449 if (is_latlong($_[3])) {
1450 my ($lat, $long) = DXBearing::stoll($_[3]);
1453 $user->qra(DXBearing::lltoqra($lat, $long));
1455 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1458 } elsif ($_[2] == 4) {
1459 $user->homenode($_[3]);
1460 } elsif ($_[2] == 5) {
1461 if (is_qra(uc $_[3])) {
1462 my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1465 $user->qra(uc $_[3]);
1467 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1471 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1474 unless ($self->{isolate}) {
1475 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1478 # perhaps this IS what we want after all
1479 # $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1482 sub handle_42 {goto &handle_28}
1486 sub handle_44 {goto &handle_37}
1487 sub handle_45 {goto &handle_37}
1488 sub handle_46 {goto &handle_37}
1489 sub handle_47 {goto &handle_37}
1490 sub handle_48 {goto &handle_37}
1492 # message and database
1500 if (eph_dup($line)) {
1501 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1505 if ($_[1] eq $main::mycall) {
1506 DXMsg::handle_49($self, @_);
1508 $self->route($_[1], $line) unless $self->is_clx;
1512 # keep alive/user list
1522 RouteDB::update($call, $origin);
1524 my $node = Route::Node::get($call);
1526 return unless $node->call eq $origin;
1527 $node->usercount($_[2]);
1529 # input filter if required
1530 return unless $self->in_filter_route($node);
1532 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1536 # incoming ping requests/answers
1544 if (eph_dup($line, 60)) {
1545 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1549 my $thing = Thingy::Ping->new(origin=>$main::mycall);
1550 $thing->from_DXProt($self, $line, @_);
1551 $thing->handle($self);
1554 # dunno but route it
1562 if ($call ne $main::mycall) {
1563 $self->route($call, $line);
1577 my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1578 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1579 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1582 @_ = map { unpad($_) } @_;
1584 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1588 my $wcy = WCY::update($d, @_[2..12]);
1592 $rep = Local::wcy($self, @_[1..12]);
1594 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1597 # broadcast to the eager world
1598 send_wcy_spot($self, $line, $d, @_[2..12]);
1601 # remote commands (incoming)
1608 $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1611 # remote command replies
1618 $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1621 # if get here then rebroadcast the thing with its Hop count decremented (if
1622 # there is one). If it has a hop count and it decrements to zero then don't
1625 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1636 if (eph_dup($line)) {
1637 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1639 unless ($self->{isolate}) {
1640 DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1646 # This is called from inside the main cluster processing loop and is used
1647 # for despatching commands that are doing some long processing job
1652 my @dxchan = DXChannel::get_all();
1656 # send out a pc50 on EVERY channel all at once
1657 if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1658 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1663 foreach $dxchan (@dxchan) {
1664 next unless $dxchan->is_node();
1665 next if $dxchan == $main::me;
1668 $dxchan->send($pc50s) if $pc50s;
1670 # send a ping out on this channel
1671 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1672 if ($dxchan->{nopings} <= 0) {
1673 $dxchan->disconnect;
1675 addping($main::mycall, $dxchan->call);
1676 $dxchan->{nopings} -= 1;
1677 $dxchan->{lastping} = $t;
1682 Investigate::process();
1685 if ($t - $last10 >= 10) {
1686 # clean out ephemera
1695 if ($main::systime - 3600 > $last_hour) {
1696 $last_hour = $main::systime;
1701 # finish up a pc context
1705 # some active measures
1711 my ($self, $filter, $hops, $isolate, $line) = @_;
1717 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1719 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
1720 return unless $routeit;
1723 $self->send($routeit);
1725 $self->send($routeit) unless $self->{isolate} || $isolate;
1734 my @dxchan = DXChannel::get_all();
1736 my @dxcc = ((Prefix::cty_data($_[6]))[0..2], (Prefix::cty_data($_[7]))[0..2]);
1738 # send it if it isn't the except list and isn't isolated and still has a hop count
1739 # taking into account filtering and so on
1740 foreach $dxchan (@dxchan) {
1741 next if $dxchan == $main::me;
1742 next if $dxchan == $self && $self->is_node;
1744 my ($filter, $hops);
1746 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1754 my $isolate = shift;
1755 my ($filter, $hops);
1757 if ($self->{wwvfilter}) {
1758 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1759 return unless $filter;
1761 send_prot_line($self, $filter, $hops, $isolate, $line)
1768 my @dxchan = DXChannel::get_all();
1770 my @dxcc = ((Prefix::cty_data($_[10]))[0..2], (Prefix::cty_data($_[11]))[0..2]);
1772 # send it if it isn't the except list and isn't isolated and still has a hop count
1773 # taking into account filtering and so on
1774 foreach $dxchan (@dxchan) {
1775 next if $dxchan == $main::me;
1776 next if $dxchan == $self;
1778 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, @dxcc);
1786 my $isolate = shift;
1787 my ($filter, $hops);
1789 if ($self->{wcyfilter}) {
1790 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1791 return unless $filter;
1793 send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1801 my @dxchan = DXChannel::get_all();
1805 my $text = unpad($_[2]);
1807 if ($_[3] eq '*') { # sysops
1809 } elsif ($_[3] gt ' ') { # speciality list handling
1810 my ($name) = split /\./, $_[3];
1811 $target = "$name"; # put the rest in later (if bothered)
1818 $target = "ALL" if !$target;
1821 # obtain country codes etc
1822 my @a = Prefix::cty_data($_[0]);
1823 my @b = Prefix::cty_data($_[4]);
1824 if ($self->{inannfilter}) {
1825 my ($filter, $hops) =
1826 $self->{inannfilter}->it(@_, $self->{call},
1828 @b[0..2], $a[3], $b[3]);
1830 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1835 if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1836 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1840 Log('ann', $target, $_[0], $text);
1842 # send it if it isn't the except list and isn't isolated and still has a hop count
1843 # taking into account filtering and so on
1844 foreach $dxchan (@dxchan) {
1845 next if $dxchan == $main::me;
1846 next if $dxchan == $self && $self->is_node;
1847 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call},
1848 @a[0..2], @b[0..2]);
1857 $msgid = 1 if $msgid > 999;
1866 my @dxchan = DXChannel::get_all();
1869 my $text = unpad($_[2]);
1872 # munge the group and recast the line if required
1873 if ($target =~ s/\.LST$//) {
1877 # obtain country codes etc
1878 my @a = Prefix::cty_data($_[0]);
1879 my @b = Prefix::cty_data($_[4]);
1880 if ($self->{inannfilter}) {
1881 my ($filter, $hops) =
1882 $self->{inannfilter}->it(@_, $self->{call},
1884 @b[0..2], $a[3], $b[3]);
1886 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1891 if (AnnTalk::dup($_[0], $_[1], $_[2], $chatdupeage)) {
1892 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1897 Log('chat', $target, $_[0], $text);
1899 # send it if it isn't the except list and isn't isolated and still has a hop count
1900 # taking into account filtering and so on
1901 foreach $dxchan (@dxchan) {
1902 my $is_ak1a = $dxchan->is_ak1a;
1904 if ($dxchan->is_node) {
1905 next if $dxchan == $main::me;
1906 next if $dxchan == $self;
1907 next unless $dxchan->is_spider || $is_ak1a;
1908 next if $target eq 'LOCAL';
1909 if (!$ak1a_line && $is_ak1a) {
1910 $ak1a_line = DXProt::pc12($_[0], $text, $_[1], "$target.LST");
1914 $dxchan->chat($is_ak1a ? $ak1a_line : $line, $self->{isolate}, $target, $_[1],
1915 $text, @_, $self->{call}, @a[0..2], @b[0..2]);
1923 my $isolate = shift;
1927 my ($filter, $hops);
1929 if ($self->{annfilter}) {
1930 ($filter, $hops) = $self->{annfilter}->it(@_);
1931 return unless $filter;
1933 send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1942 sub send_local_config
1950 dbg('DXProt::send_local_config') if isdbg('trace');
1953 if ($self->{isolate}) {
1954 @localnodes = ( $main::routeroot );
1955 $self->send_route($main::mycall, \&pc19, 1, $main::routeroot);
1957 # create a list of all the nodes that are not connected to this connection
1958 # and are not themselves isolated, this to make sure that isolated nodes
1959 # don't appear outside of this node
1961 # send locally connected nodes
1962 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && ($_->is_node || $_->is_aranea) } DXChannel::get_all();
1963 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
1964 $self->send_route($main::mycall, \&pc19, scalar(@localnodes)+1, $main::routeroot, @localnodes);
1967 my @rawintcalls = map { $_->nodes } @localnodes if @localnodes;
1969 for $node (@rawintcalls) {
1970 push @intcalls, $node unless grep $node eq $_, @intcalls;
1972 my $ref = Route::Node::get($self->{call});
1973 my @rnodes = $ref->nodes;
1974 for $node (@intcalls) {
1975 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes, @remotenodes;
1977 $self->send_route($main::mycall, \&pc19, scalar(@remotenodes), @remotenodes);
1980 # get all the users connected on the above nodes and send them out
1981 foreach $node ($main::routeroot, @localnodes, @remotenodes) {
1983 my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
1984 $self->send_route($main::mycall, \&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
1986 dbg("sent a null value") if isdbg('chanerr');
1992 # route a message down an appropriate interface for a callsign
1994 # is called route(to, pcline);
1999 my ($self, $call, $line) = @_;
2001 if (ref $self && $call eq $self->{call}) {
2002 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2006 # always send it down the local interface if available
2007 my $dxchan = DXChannel::get($call);
2009 dbg("route: $call -> $dxchan->{call} direct" ) if isdbg('route');
2011 my $cl = Route::get($call);
2012 $dxchan = $cl->dxchan if $cl;
2014 if (ref $self && $dxchan eq $self) {
2015 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2018 dbg("route: $call -> $dxchan->{call} using normal route" ) if isdbg('route');
2022 # try the backstop method
2024 my $rcall = RouteDB::get($call);
2026 if ($self && $rcall eq $self->{call}) {
2027 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
2030 $dxchan = DXChannel::get($rcall);
2031 dbg("route: $call -> $rcall using RouteDB" ) if isdbg('route') && $dxchan;
2036 my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
2038 $dxchan->send($routeit) unless $dxchan == $main::me;
2041 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
2046 # obtain the hops from the list for this callsign and pc no
2052 my $hops = $DXProt::hopcount{$pcno};
2053 $hops = $DXProt::def_hopcount if !$hops;
2058 # adjust the hop count on a per node basis using the user loadable
2059 # hop table if available or else decrement an existing one
2066 my $call = $self->{call};
2069 if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
2070 my ($pcno) = $s =~ /^PC(\d\d)/o;
2071 confess "$call called adjust_hops with '$s'" unless $pcno;
2072 my $ref = $nodehops{$call} if %nodehops;
2074 my $newhops = $ref->{$pcno};
2075 return "" if defined $newhops && $newhops == 0;
2076 $newhops = $ref->{default} unless $newhops;
2077 return "" if defined $newhops && $newhops == 0;
2078 $newhops = $hops if !$newhops;
2079 $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
2081 # simply decrement it
2082 # $hops--; this is done on receipt now
2083 return "" if !$hops;
2084 $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
2096 return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
2097 do "$main::data/hop_table.pl";
2103 # add a ping request to the ping queues
2106 my ($from, $to, $via) = @_;
2107 my $thing = Thingy::Ping->new_ping($from eq $main::mycall ? () : (user=>$from), $via ? (touser=> $to, group => $via) : (group => $to));
2114 my ($self, $tonode, $fromnode, $user, $cmd) = @_;
2115 if ($tonode eq $main::mycall) {
2116 my $ref = DXUser->get_current($fromnode);
2117 my $cref = Route::Node::get($fromnode);
2118 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
2119 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
2120 if ($ref->{priv}) { # you have to have SOME privilege, the commands have further filtering
2121 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
2122 my $oldpriv = $self->{priv};
2123 $self->{priv} = $ref->{priv}; # assume the user's privilege level
2124 my @in = (DXCommandmode::run_cmd($self, $cmd));
2125 $self->{priv} = $oldpriv;
2126 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
2127 delete $self->{remotecmd};
2129 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
2132 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
2135 my $ref = DXUser->get_current($tonode);
2136 if ($ref && $ref->is_clx) {
2137 $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
2139 $self->route($tonode, pc34($fromnode, $tonode, $cmd));
2144 sub process_rcmd_reply
2146 my ($self, $tonode, $fromnode, $user, $line) = @_;
2147 if ($tonode eq $main::mycall) {
2148 my $s = $rcmds{$fromnode};
2150 my $dxchan = DXChannel::get($s->{call});
2151 my $ref = $user eq $tonode ? $dxchan : (DXChannel::get($user) || $dxchan);
2152 $ref->send($line) if $ref;
2153 delete $rcmds{$fromnode} if !$dxchan;
2155 # send unsolicited ones to the sysop
2156 my $dxchan = DXChannel::get($main::myalias);
2157 $dxchan->send($line) if $dxchan;
2160 my $ref = DXUser->get_current($tonode);
2161 if ($ref && $ref->is_clx) {
2162 $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
2164 $self->route($tonode, pc35($fromnode, $tonode, $line));
2173 my $fromnode = shift;
2178 Log('rcmd', 'out', $fromnode, $line);
2179 if ($self->is_clx) {
2180 $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
2182 $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
2187 # add a rcmd request to the rcmd queues
2190 my ($self, $to, $cmd) = @_;
2193 $r->{call} = $self->{call};
2194 $r->{t} = $main::systime;
2198 my $ref = Route::Node::get($to);
2199 my $dxchan = $ref->dxchan;
2200 if ($dxchan && $dxchan->is_clx) {
2201 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
2203 route(undef, $to, pc34($main::mycall, $to, $cmd));
2210 my $pc39flag = shift;
2211 my $call = $self->call;
2213 return if $self->{disconnecting}++;
2215 unless ($pc39flag && $pc39flag == 1) {
2216 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
2219 # get rid of any PC16/17/19
2220 eph_del_regex("^PC1[679]*$call");
2222 # do routing stuff, remove me from routing table
2223 my $node = Route::Node::get($call);
2226 @rout = $node->del($main::routeroot);
2228 # and all my ephemera as well
2231 eph_del_regex("^PC1[679].*$c");
2235 RouteDB::delete_interface($call);
2237 # remove them from the pc19list as well
2238 while (my ($k,$v) = each %pc19list) {
2239 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
2241 $pc19list{$k} = \@l;
2243 delete $pc19list{$k};
2247 eph_del_regex("^PC1[679].*$k");
2250 # unbusy and stop and outgoing mail
2251 my $mref = DXMsg::get_busy($call);
2252 $mref->stop_msg($call) if $mref;
2254 # broadcast to all other nodes that all the nodes connected to via me are gone
2255 unless ($pc39flag && $pc39flag == 2) {
2256 my $thing = Thingy::Bye->new(user=>$call);
2257 $thing->broadcast($self);
2259 $self->route_pc21($main::mycall, undef, @rout) if @rout;
2262 # remove outstanding pings
2263 Thingy::Ping::forget($call);
2265 # I was the last node visited
2266 $self->user->node($main::mycall);
2268 # send info to all logged in thingies
2269 $self->tell_login('logoutn');
2271 Log('DXProt', $call . " Disconnected");
2273 $self->SUPER::disconnect;
2278 # send a talk message to this thingy
2282 my ($self, $from, $to, $via, $line, $origin) = @_;
2284 $line =~ s/\^/\\5E/g; # remove any ^ characters
2285 $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
2286 Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
2289 # send it if it isn't the except list and isn't isolated and still has a hop count
2290 # taking into account filtering and so on
2296 my $generate = shift;
2297 my $no = shift; # the no of things to filter on
2299 my ($filter, $hops);
2302 for (; @_ && $no; $no--) {
2305 if (!$self->{isolate} && $self->{routefilter}) {
2308 ($filter, $hops) = $self->{routefilter}->it($self->{call}, $self->{dxcc}, $self->{itu}, $self->{cq}, $r->call, $r->dxcc, $r->itu, $r->cq, $self->{state}, $r->{state});
2312 dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
2315 dbg("was sent a null value") if isdbg('chanerr');
2318 push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
2322 foreach my $line (&$generate(@rin, @_)) {
2325 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2327 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
2328 next unless $routeit;
2331 $self->send($routeit);
2340 my $generate = shift;
2342 my @dxchan = DXChannel::get_all_nodes();
2345 unless ($self->{isolate}) {
2346 foreach $dxchan (@dxchan) {
2347 next if $dxchan == $self;
2348 next if $dxchan == $main::me;
2349 next unless $dxchan->isa('DXProt');
2350 next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2352 $dxchan->send_route($origin, $generate, @_);
2360 return unless $self->user->wantpc16;
2363 broadcast_route($self, $origin, \&pc16, $line, 1, @_);
2369 return unless $self->user->wantpc16;
2372 broadcast_route($self, $origin, \&pc17, $line, 1, @_);
2380 broadcast_route($self, $origin, \&pc19, $line, scalar @_, @_);
2388 broadcast_route($self, $origin, \&pc21, $line, scalar @_, @_);
2396 broadcast_route($self, $origin, \&pc24, $line, 1, @_);
2404 broadcast_route($self, $origin, \&pc41, $line, 1, @_);
2412 broadcast_route($self, $origin, \&pc50, $line, 1, @_);
2419 my ($filter, $hops) = (1, 1);
2421 if ($self->{inroutefilter}) {
2422 ($filter, $hops) = $self->{inroutefilter}->it($self->{call}, $self->{dxcc}, $self->{itu}, $self->{cq}, $r->call, $r->dxcc, $r->itu, $r->cq, $self->state, $r->state);
2423 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2431 my $t = shift || $eph_restime;
2435 $s =~ s/\^H\d\d?\^?\~?$//;
2436 $r = 1 if exists $eph{$s}; # pump up the dup if it keeps circulating
2437 $eph{$s} = $main::systime + $t;
2438 dbg("PCPROT: emphemeral duplicate") if $r && isdbg('chanerr');
2446 while (($key, $val) = each %eph) {
2447 if ($key =~ m{$regex}) {
2457 while (($key, $val) = each %eph) {
2458 if ($main::systime >= $val) {
2469 while (($key, $val) = each %eph) {
2470 push @out, $key, $val;
2477 goto &DXCommandmode::run_cmd;
2481 # import any msgs in the chat directory
2482 # the messages are sent to the chat group which forms the
2483 # the first part of the name (eg: solar.1243.txt would be
2484 # sent to chat group SOLAR)
2486 # Each message found is sent: one non-blank line to one chat
2487 # message. So 4 lines = 4 chat messages.
2489 # The special name LOCAL is for local users ANN
2490 # The special name ALL is for ANN/FULL
2491 # The special name SYSOP is for ANN/SYSOP
2495 # are there any to do in this directory?
2496 return unless -d $chatimportfn;
2497 unless (opendir(DIR, $chatimportfn)) {
2498 dbg("can\'t open $chatimportfn $!") if isdbg('msg');
2499 Log('msg', "can\'t open $chatimportfn $!");
2503 my @names = readdir(DIR);
2506 foreach $name (@names) {
2507 next if $name =~ /^\./;
2508 my $splitit = $name =~ /^split/;
2509 my $fn = "$chatimportfn/$name";
2511 unless (open(MSG, $fn)) {
2512 dbg("can\'t open import file $fn $!") if isdbg('msg');
2513 Log('msg', "can\'t open import file $fn $!");
2517 my @msg = map { s/\r?\n$//; $_ } <MSG>;
2521 my @cat = split /\./, $name;
2522 my $target = uc $cat[0];
2524 foreach my $text (@msg) {
2525 next unless $text && $text !~ /^\s*#/;
2526 if ($target eq 'ALL' || $target eq 'LOCAL' || $target eq 'SYSOP') {
2527 my $sysopflag = $target eq 'SYSOP' ? '*' : ' ';
2528 if ($target ne 'LOCAL') {
2529 send_announce($main::me, pc12($main::mycall, $text, '*', $sysopflag), $main::mycall, '*', $text, $sysopflag, $main::mycall, '0');
2531 Log('ann', 'LOCAL', $main::mycall, $text);
2532 DXChannel::broadcast_list("To LOCAL de ${main::mycall}: $text\a", 'ann', undef, DXCommandmode->get_all());
2535 my $msgid = nextchatmsgid();
2536 $text = "#$msgid $text";
2537 send_chat($main::me, pc12($main::mycall, $text, '*', $target), $main::mycall, '*', $text, $target, $main::mycall, '0');