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);
39 use vars qw($VERSION $BRANCH);
40 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
41 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0));
42 $main::build += $VERSION;
43 $main::branch += $BRANCH;
45 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
46 $last_hour $last10 %eph %pings %rcmds $ann_to_talk
47 $pingint $obscount %pc19list
48 %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
49 $allowzero $decode_dk0wcy $send_opernam @checklist);
51 $pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11
52 $pc23_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc23
54 $last_hour = time; # last time I did an hourly periodic update
55 %pings = (); # outstanding ping requests outbound
56 %rcmds = (); # outstanding rcmd requests outbound
57 %nodehops = (); # node specific hop control
58 %pc19list = (); # list of outstanding PC19s that haven't had PC16s on them
60 $censorpc = 1; # Do a BadWords::check on text fields and reject things
61 # loads of 'bad things'
62 $baddx = new DXHash "baddx";
63 $badspotter = new DXHash "badspotter";
64 $badnode = new DXHash "badnode";
65 $last10 = $last_pc50 = time;
69 $eph_info_restime = 60*60;
70 $eph_pc34_restime = 30;
76 [ qw(c c m bp bc c) ], # pc10
77 [ qw(f m d t m c c h) ], # pc11
78 [ qw(c bc m bp bm p h) ], # pc12
82 undef , # pc16 has to be validated manually
85 undef , # pc19 has to be validated manually
86 undef , # pc20 no validation
88 undef , # pc22 no validation
89 [ qw(d n n n n m c c h) ], # pc23
91 [ qw(c c n n) ], # pc25
92 [ qw(f m d t m c c bc) ], # pc26
93 [ qw(d n n n n m c c bc) ], # pc27
94 [ qw(c c m c d t p m bp n p bp bc) ], # pc28
95 [ qw(c c n m) ], # pc29
100 [ qw(c c m) ], # pc34
101 [ qw(c c m) ], # pc35
102 [ qw(c c m) ], # pc36
103 [ qw(c c n m) ], # pc37
104 undef, # pc38 not interested
106 [ qw(c c m p n) ], # pc40
107 [ qw(c n m h) ], # pc41
108 [ qw(c c n) ], # pc42
109 undef, # pc43 don't handle it
110 [ qw(c c n m m c) ], # pc44
111 [ qw(c c n m) ], # pc45
112 [ qw(c c n) ], # pc46
115 [ qw(c m h) ], # pc49
116 [ qw(c n h) ], # pc50
117 [ qw(c c n) ], # pc51
139 [ qw(d n n n n n n m m m c c h) ], # pc73
150 [ qw(c c c m) ], # pc84
151 [ qw(c c c m) ], # pc85
154 # use the entry in the check list to check the field list presented
155 # return OK if line NOT in check list (for now)
160 return 0 if $n < 0 || $n > @checklist;
161 my $ref = $checklist[$n];
162 return 0 unless ref $ref;
165 shift; # not interested in the first field
166 for ($i = 0; $i < @$ref; $i++) {
167 my ($blank, $act) = $$ref[$i] =~ /^(b?)(\w)$/;
168 return 0 unless $act;
169 next if $blank && $_[$i] =~ /^[ \*]$/;
171 return $i+1 unless is_callsign($_[$i]);
172 } elsif ($act eq 'm') {
173 return $i+1 unless is_pctext($_[$i]);
174 } elsif ($act eq 'p') {
175 return $i+1 unless is_pcflag($_[$i]);
176 } elsif ($act eq 'f') {
177 return $i+1 unless is_freq($_[$i]);
178 } elsif ($act eq 'n') {
179 return $i+1 unless $_[$i] =~ /^[\d ]+$/;
180 } elsif ($act eq 'h') {
181 return $i+1 unless $_[$i] =~ /^H\d\d?$/;
182 } elsif ($act eq 'd') {
183 return $i+1 unless $_[$i] =~ /^\s*\d+-\w\w\w-[12][90]\d\d$/;
184 } elsif ($act eq 't') {
185 return $i+1 unless $_[$i] =~ /^[012]\d[012345]\dZ$/;
193 do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
198 # obtain a new connection this is derived from dxchannel
203 my $self = DXChannel::alloc(@_);
205 # add this node to the table, the values get filled in later
208 $main::routeroot->add($call, '5000', Route::here(1)) if $call ne $main::mycall;
213 # this is how a pc connection starts (for an incoming connection)
214 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
215 # all the crap that comes between).
218 my ($self, $line, $sort) = @_;
219 my $call = $self->{call};
220 my $user = $self->{user};
223 my $host = $self->{conn}->{peerhost} || "unknown";
224 Log('DXProt', "$call connected from $host");
226 # remember type of connection
227 $self->{consort} = $line;
228 $self->{outbound} = $sort eq 'O';
229 my $priv = $user->priv;
230 $priv = $user->priv(1) unless $priv;
231 $self->{priv} = $priv; # other clusters can always be 'normal' users
232 $self->{lang} = $user->lang || 'en';
233 $self->{isolate} = $user->{isolate};
234 $self->{consort} = $line; # save the connection type
238 # sort out registration
239 $self->{registered} = 1;
241 # get the output filters
242 $self->{spotsfilter} = Filter::read_in('spots', $call, 0) || Filter::read_in('spots', 'node_default', 0);
243 $self->{wwvfilter} = Filter::read_in('wwv', $call, 0) || Filter::read_in('wwv', 'node_default', 0);
244 $self->{wcyfilter} = Filter::read_in('wcy', $call, 0) || Filter::read_in('wcy', 'node_default', 0);
245 $self->{annfilter} = Filter::read_in('ann', $call, 0) || Filter::read_in('ann', 'node_default', 0) ;
246 $self->{routefilter} = Filter::read_in('route', $call, 0) || Filter::read_in('route', 'node_default', 0) unless $self->{isolate} ;
249 # get the INPUT filters (these only pertain to Clusters)
250 $self->{inspotsfilter} = Filter::read_in('spots', $call, 1) || Filter::read_in('spots', 'node_default', 1);
251 $self->{inwwvfilter} = Filter::read_in('wwv', $call, 1) || Filter::read_in('wwv', 'node_default', 1);
252 $self->{inwcyfilter} = Filter::read_in('wcy', $call, 1) || Filter::read_in('wcy', 'node_default', 1);
253 $self->{inannfilter} = Filter::read_in('ann', $call, 1) || Filter::read_in('ann', 'node_default', 1);
254 $self->{inroutefilter} = Filter::read_in('route', $call, 1) || Filter::read_in('route', 'node_default', 1) unless $self->{isolate};
256 # set unbuffered and no echo
257 $self->send_now('B',"0");
258 $self->send_now('E',"0");
259 $self->conn->echo(0) if $self->conn->can('echo');
261 # ping neighbour node stuff
262 my $ping = $user->pingint;
263 $ping = $pingint unless defined $ping;
264 $self->{pingint} = $ping;
265 $self->{nopings} = $user->nopings || $obscount;
266 $self->{pingtime} = [ ];
267 $self->{pingave} = 999;
268 $self->{metric} ||= 100;
269 $self->{lastping} = $main::systime;
271 # send initialisation string
272 unless ($self->{outbound}) {
276 $self->state('init');
277 $self->{pc50_t} = $main::systime;
279 # send info to all logged in thingies
280 $self->tell_login('loginn');
282 # run a script send the output to the debug file
283 my $script = new Script(lc $call) || new Script('node_default');
284 $script->run($self) if $script;
288 # send outgoing 'challenge'
298 # This is the normal pcxx despatcher
302 my ($self, $line) = @_;
303 my @field = split /\^/, $line;
304 return unless @field;
306 pop @field if $field[-1] eq '~';
308 # print join(',', @field), "\n";
311 # process PC frames, this will fail unless the frame starts PCnn
312 my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
314 return if $pcno < 10 || $pcno > 99;
316 # check for and dump bad protocol messages
317 my $n = check($pcno, @field);
319 dbg("PCPROT: bad field $n, dumped (" . parray($checklist[$pcno-10]) . ")") if isdbg('chanerr');
326 $pcr = Local::pcprot($self, $pcno, @field);
328 # dbg("Local::pcprot error $@") if isdbg('local') if $@;
332 if ($pcno == 10) { # incoming talk
335 return if $rspfcheck and !$self->rspfcheck(0, $field[6], $field[1]);
337 # will we allow it at all?
340 if (@bad = BadWords::check($field[3])) {
341 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
346 # is it for me or one of mine?
347 my ($from, $to, $via, $call, $dxchan);
349 if ($field[5] gt ' ') {
356 # if this is a 'nodx' node then ignore it
357 if ($badnode->in($field[6]) || ($via && $badnode->in($via))) {
358 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
362 # if this is a 'bad spotter' user then ignore it
364 $nossid =~ s/-\d+$//;
365 if ($badspotter->in($nossid)) {
366 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
370 # if we are converting announces to talk is it a dup?
372 if (AnnTalk::is_talk_candidate($from, $field[3]) && AnnTalk::dup($from, $to, $field[3])) {
373 dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
378 # it is here and logged on
379 $dxchan = DXChannel->get($main::myalias) if $to eq $main::mycall;
380 $dxchan = DXChannel->get($to) unless $dxchan;
381 if ($dxchan && $dxchan->is_user) {
382 $field[3] =~ s/\%5E/^/g;
383 $dxchan->talk($from, $to, $via, $field[3]);
387 # is it elsewhere, visible on the cluster via the to address?
388 # note: this discards the via unless the to address is on
391 if ($ref = Route::get($to)) {
392 $vref = Route::Node::get($via) if $via;
393 $vref = undef unless $vref && grep $to eq $_, $vref->users;
394 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $field[3], $field[6]);
398 # not visible here, send a message of condolence
400 $ref = Route::get($from);
401 $vref = $ref = Route::Node::get($field[6]) unless $ref;
403 $dxchan = $ref->dxchan;
404 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
409 if ($pcno == 11 || $pcno == 26) { # dx spot
411 # route 'foreign' pc26s
413 if ($field[7] ne $main::mycall) {
414 $self->route($field[7], $line);
420 # return if $rspfcheck and !$self->rspfcheck(1, $field[7], $field[6]);
422 # if this is a 'nodx' node then ignore it
423 if ($badnode->in($field[7])) {
424 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
428 # if this is a 'bad spotter' user then ignore it
429 my $nossid = $field[6];
430 $nossid =~ s/-\d+$//;
431 if ($badspotter->in($nossid)) {
432 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
436 # convert the date to a unix date
437 my $d = cltounix($field[3], $field[4]);
438 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
439 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
440 dbg("PCPROT: Spot ignored, invalid date or out of range ($field[3] $field[4])\n") if isdbg('chanerr');
445 if ($baddx->in($field[2]) || BadWords::check($field[2]) || $field[2] =~ /COCK/) {
446 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
451 $field[5] =~ s/^\s+//; # take any leading blanks off
452 $field[2] = unpad($field[2]); # take off leading and trailing blanks from spotted callsign
453 if ($field[2] =~ /BUST\w*$/) {
454 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
459 if (@bad = BadWords::check($field[5])) {
460 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
466 my @spot = Spot::prepare($field[1], $field[2], $d, $field[5], $field[6], $field[7]);
467 # global spot filtering on INPUT
468 if ($self->{inspotsfilter}) {
469 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
471 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
476 # this goes after the input filtering, but before the add
477 # so that if it is input filtered, it isn't added to the dup
478 # list. This allows it to come in from a "legitimate" source
479 if (Spot::dup($field[1], $field[2], $d, $field[5], $field[6])) {
480 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
488 # @spot at this point contains:-
489 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
490 # then spotted itu, spotted cq, spotters itu, spotters cq
491 # you should be able to route on any of these
494 # fix up qra locators of known users
495 my $user = DXUser->get_current($spot[4]);
497 my $qra = $user->qra;
498 unless ($qra && is_qra($qra)) {
499 my $lat = $user->lat;
500 my $long = $user->long;
501 if (defined $lat && defined $long) {
502 $user->qra(DXBearing::lltoqra($lat, $long));
507 # send a remote command to a distant cluster if it is visible and there is no
508 # qra locator and we havn't done it for a month.
510 unless ($user->qra) {
512 my $to = $user->homenode;
513 my $last = $user->lastoper || 0;
514 if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
515 my $cmd = "forward/opernam $spot[4]";
516 # send the rcmd but we aren't interested in the replies...
517 my $dxchan = $node->dxchan;
518 if ($dxchan && $dxchan->is_clx) {
519 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
521 route(undef, $to, pc34($main::mycall, $to, $cmd));
523 if ($to ne $field[7]) {
525 $node = Route::Node::get($to);
527 $dxchan = $node->dxchan;
528 if ($dxchan && $dxchan->is_clx) {
529 route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
531 route(undef, $to, pc34($main::mycall, $to, $cmd));
535 $user->lastoper($main::systime);
544 $r = Local::spot($self, @spot);
546 # dbg("Local::spot1 error $@") if isdbg('local') if $@;
549 # DON'T be silly and send on PC26s!
550 return if $pcno == 26;
552 # send out the filtered spots
553 send_dx_spot($self, $line, @spot) if @spot;
557 if ($pcno == 12) { # announces
559 # return if $rspfcheck and !$self->rspfcheck(1, $field[5], $field[1]);
561 # announce duplicate checking
562 $field[3] =~ s/^\s+//; # remove leading blanks
566 if (@bad = BadWords::check($field[3])) {
567 dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
572 # if this is a 'nodx' node then ignore it
573 if ($badnode->in($field[5])) {
574 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
578 # if this is a 'bad spotter' user then ignore it
579 my $nossid = $field[1];
580 $nossid =~ s/-\d+$//;
581 if ($badspotter->in($nossid)) {
582 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
586 if ($field[2] eq '*' || $field[2] eq $main::mycall) {
589 # here's a bit of fun, convert incoming ann with a callsign in the first word
590 # or one saying 'to <call>' to a talk if we can route to the recipient
592 my $call = AnnTalk::is_talk_candidate($field[1], $field[3]);
594 my $ref = Route::get($call);
596 my $dxchan = $ref->dxchan;
597 $dxchan->talk($field[1], $call, undef, $field[3], $field[5]) if $dxchan != $self;
604 $self->send_announce($line, @field[1..6]);
606 $self->route($field[2], $line);
621 if ($pcno == 16) { # add a user
623 if (eph_dup($line)) {
624 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
630 my $ncall = $field[1];
631 my $newline = "PC16^";
633 # do I want users from this channel?
634 unless ($self->user->wantpc16) {
635 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
639 if ($ncall eq $main::mycall) {
640 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
643 my $parent = Route::Node::get($ncall);
645 # if there is a parent, proceed, otherwise if there is a latent PC19 in the PC19list,
646 # fix it up in the routing tables and issue it forth before the PC16
648 my $nl = $pc19list{$ncall};
650 if ($nl && @field > 3) { # 3 because of the hop count!
652 # this is a new (remembered) node, now attach it to me if it isn't in filtered
653 # and we haven't disallowed it
654 my $user = DXUser->get_current($ncall);
656 $user = DXUser->new($ncall);
658 $user->priv(1); # I have relented and defaulted nodes
660 $user->homenode($ncall);
664 my $wantpc19 = $user->wantroutepc19;
665 if ($wantpc19 || !defined $wantpc19) {
666 my $new = Route->new($ncall); # throw away
667 if ($self->in_filter_route($new)) {
670 $parent = Route::Node::get($_->[0]);
671 $dxchan = $parent->dxchan if $parent;
672 if ($dxchan && $dxchan ne $self) {
673 dbg("PCPROT: PC19 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
677 my $r = $parent->add($ncall, $_->[1], $_->[2]);
678 push @nrout, $r unless @nrout;
681 $user->wantroutepc19(1) unless defined $wantpc19; # for now we work on the basis that pc16 = real route
682 $user->lastin($main::systime) unless DXChannel->get($ncall);
685 # route the pc19 - this will cause 'stuttering PC19s' for a while
686 $self->route_pc19(@nrout) if @nrout ;
687 $parent = Route::Node::get($ncall);
689 dbg("PCPROT: lost $ncall after sending PC19 for it?");
695 delete $pc19list{$ncall};
698 dbg("PCPROT: Node $ncall not in config") if isdbg('chanerr');
703 $dxchan = $parent->dxchan;
704 if ($dxchan && $dxchan ne $self) {
705 dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
709 # input filter if required
710 return unless $self->in_filter_route($parent);
715 for ($i = 2; $i < $#field; $i++) {
716 my ($call, $conf, $here) = $field[$i] =~ /^(\S+) (\S) (\d)/o;
717 next unless $call && $conf && defined $here && is_callsign($call);
718 next if $call eq $main::mycall;
720 eph_del_regex("^PC17\\^$call\\^$ncall");
722 $conf = $conf eq '*';
724 # reject this if we think it is a node already
725 my $r = Route::Node::get($call);
726 my $u = DXUser->get_current($call) unless $r;
727 if ($r || ($u && $u->is_node)) {
728 dbg("PCPROT: $call is a node") if isdbg('chanerr');
732 $r = Route::User::get($call);
733 my $flags = Route::here($here)|Route::conf($conf);
736 my $au = $r->addparent($parent);
737 if ($r->flags != $flags) {
741 push @rout, $r if $au;
743 push @rout, $parent->add_user($call, $flags);
747 # add this station to the user database, if required
748 $call =~ s/-\d+$//o; # remove ssid for users
749 my $user = DXUser->get_current($call);
750 $user = DXUser->new($call) if !$user;
751 $user->homenode($parent->call) if !$user->homenode;
752 $user->node($parent->call);
753 $user->lastin($main::systime) unless DXChannel->get($call);
757 # queue up any messages (look for privates only)
758 DXMsg::queue_msg(1) if $self->state eq 'normal';
760 $self->route_pc16($parent, @rout) if @rout;
764 if ($pcno == 17) { # remove a user
766 my $ncall = $field[2];
767 my $ucall = $field[1];
769 eph_del_regex("^PC16\\^$ncall.*$ucall");
771 # do I want users from this channel?
772 unless ($self->user->wantpc16) {
773 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
776 if ($ncall eq $main::mycall) {
777 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
781 my $uref = Route::User::get($ucall);
783 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
786 my $parent = Route::Node::get($ncall);
788 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
792 $dxchan = $parent->dxchan;
793 if ($dxchan && $dxchan ne $self) {
794 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
798 # input filter if required
799 return unless $self->in_filter_route($parent);
801 $parent->del_user($uref);
803 if (eph_dup($line)) {
804 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
808 $self->route_pc17($parent, $uref);
812 if ($pcno == 18) { # link request
813 $self->state('init');
815 # record the type and version offered
816 if ($field[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
817 $self->version(53 + $1);
818 $self->user->version(53 + $1);
819 $self->build(0 + $2);
820 $self->user->build(0 + $2);
821 unless ($self->is_spider) {
822 $self->user->sort('S');
827 $self->version(50.0);
828 $self->version($field[2] / 100) if $field[2] && $field[2] =~ /^\d+$/;
829 $self->user->version($self->version);
832 # first clear out any nodes on this dxchannel
833 my $parent = Route::Node::get($self->{call});
834 my @rout = $parent->del_nodes;
835 $self->route_pc21(@rout, $parent) if @rout;
836 $self->send_local_config();
838 return; # we don't pass these on
841 if ($pcno == 19) { # incoming cluster list
843 my $newline = "PC19^";
845 if (eph_dup($line)) {
846 dbg("PCPROT: dup PC19 detected") if isdbg('chanerr');
852 my $parent = Route::Node::get($self->{call});
854 dbg("DXPROT: my parent $self->{call} has disappeared");
860 for ($i = 1; $i < $#field-1; $i += 4) {
861 my $here = $field[$i];
862 my $call = uc $field[$i+1];
863 my $conf = $field[$i+2];
864 my $ver = $field[$i+3];
865 next unless defined $here && defined $conf && is_callsign($call);
867 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
869 # check for sane parameters
870 # $ver = 5000 if $ver eq '0000';
871 next if $ver < 5000; # only works with version 5 software
872 next if length $call < 3; # min 3 letter callsigns
873 next if $call eq $main::mycall;
875 # check that this PC19 isn't trying to alter the wrong dxchan
876 my $dxchan = DXChannel->get($call);
877 if ($dxchan && $dxchan != $self) {
878 dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
882 # add this station to the user database, if required (don't remove SSID from nodes)
883 my $user = DXUser->get_current($call);
885 $user = DXUser->new($call);
887 $user->priv(1); # I have relented and defaulted nodes
889 $user->homenode($call);
893 my $r = Route::Node::get($call);
894 my $flags = Route::here($here)|Route::conf($conf);
896 # modify the routing table if it is in it, otherwise store it in the pc19list for now
899 if ($call ne $parent->call) {
900 if ($self->in_filter_route($r)) {
901 $ar = $parent->add($call, $ver, $flags);
902 push @rout, $ar if $ar;
907 if ($r->version ne $ver || $r->flags != $flags) {
910 push @rout, $r unless $ar;
914 # if he is directly connected or allowed then add him, otherwise store him up for later
915 if ($call eq $self->{call} || $user->wantroutepc19) {
916 my $new = Route->new($call); # throw away
917 if ($self->in_filter_route($new)) {
918 my $ar = $parent->add($call, $ver, $flags);
919 $user->wantroutepc19(1) unless defined $user->wantroutepc19;
920 push @rout, $ar if $ar;
925 $pc19list{$call} = [] unless exists $pc19list{$call};
926 my $nl = $pc19list{$call};
927 push @{$pc19list{$call}}, [$self->{call}, $ver, $flags] unless grep $_->[0] eq $self->{call}, @$nl;
931 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
932 my $mref = DXMsg::get_busy($call);
933 $mref->stop_msg($call) if $mref;
935 $user->lastin($main::systime) unless DXChannel->get($call);
940 $self->route_pc19(@rout) if @rout;
944 if ($pcno == 20) { # send local configuration
945 $self->send_local_config();
947 $self->state('normal');
948 $self->{lastping} = 0;
952 if ($pcno == 21) { # delete a cluster from the list
953 my $call = uc $field[1];
955 eph_del_regex("^PC1[679].*$call");
957 # if I get a PC21 from the same callsign as self then treat it
958 # as a PC39: I have gone away
959 if ($call eq $self->call) {
960 $self->disconnect(1);
964 # check to see if we are in the pc19list, if we are then don't bother with any of
965 # this routing table manipulation, just remove it from the list and dump it
967 if (my $nl = $pc19list{$call}) {
968 $pc19list{$call} = [ grep {$_->[0] ne $self->{call}} @$nl ];
969 delete $pc19list{$call} unless @{$pc19list{$call}};
972 my $parent = Route::Node::get($self->{call});
974 dbg("DXPROT: my parent $self->{call} has disappeared");
978 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
979 my $node = Route::Node::get($call);
982 my $dxchan = DXChannel->get($call);
983 if ($dxchan && $dxchan != $self) {
984 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
989 return unless $self->in_filter_route($node);
992 push @rout, $node->del($parent);
995 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
1000 $self->route_pc21(@rout) if @rout;
1005 $self->state('normal');
1006 $self->{lastping} = 0;
1010 if ($pcno == 23 || $pcno == 27) { # WWV info
1012 # route 'foreign' pc27s
1014 if ($field[8] ne $main::mycall) {
1015 $self->route($field[8], $line);
1020 return if $rspfcheck and !$self->rspfcheck(1, $field[8], $field[7]);
1023 my $d = cltounix($field[1], sprintf("%02d18Z", $field[2]));
1024 my $sfi = unpad($field[3]);
1025 my $k = unpad($field[4]);
1026 my $i = unpad($field[5]);
1027 my ($r) = $field[6] =~ /R=(\d+)/;
1029 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
1030 dbg("PCPROT: WWV Date ($field[1] $field[2]) out of range") if isdbg('chanerr');
1033 if (Geomag::dup($d,$sfi,$k,$i,$field[6])) {
1034 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
1037 $field[7] =~ s/-\d+$//o; # remove spotter's ssid
1039 my $wwv = Geomag::update($d, $field[2], $sfi, $k, $i, @field[6..8], $r);
1043 $rep = Local::wwv($self, $field[1], $field[2], $sfi, $k, $i, @field[6..8], $r);
1045 # dbg("Local::wwv2 error $@") if isdbg('local') if $@;
1048 # DON'T be silly and send on PC27s!
1049 return if $pcno == 27;
1051 # broadcast to the eager world
1052 send_wwv_spot($self, $line, $d, $field[2], $sfi, $k, $i, @field[6..8]);
1056 if ($pcno == 24) { # set here status
1057 my $call = uc $field[1];
1059 $nref = Route::Node::get($call);
1060 $uref = Route::User::get($call);
1061 return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
1063 unless (eph_dup($line)) {
1064 $nref->here($field[2]) if $nref;
1065 $uref->here($field[2]) if $uref;
1066 my $ref = $nref || $uref;
1067 return unless $self->in_filter_route($ref);
1068 $self->route_pc24($ref, $field[3]);
1073 if ($pcno == 25) { # merge request
1074 if ($field[1] ne $main::mycall) {
1075 $self->route($field[1], $line);
1078 if ($field[2] eq $main::mycall) {
1079 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
1083 Log('DXProt', "Merge request for $field[3] spots and $field[4] WWV from $field[2]");
1086 if ($field[3] > 0) {
1087 my @in = reverse Spot::search(1, undef, undef, 0, $field[3]);
1090 $self->send(pc26(@{$in}[0..4], $field[2]));
1095 if ($field[4] > 0) {
1096 my @in = reverse Geomag::search(0, $field[4], time, 1);
1099 $self->send(pc27(@{$in}[0..5], $field[2]));
1105 if (($pcno >= 28 && $pcno <= 33) || $pcno == 40 || $pcno == 42 || $pcno == 49) { # mail/file handling
1106 return if $pcno == 49 && eph_dup($line);
1107 if ($pcno == 49 || $field[1] eq $main::mycall) {
1108 DXMsg::process($self, $line);
1110 $self->route($field[1], $line) unless $self->is_clx;
1115 if ($pcno == 34 || $pcno == 36) { # remote commands (incoming)
1116 if (eph_dup($line, $eph_pc34_restime)) {
1117 dbg("PCPROT: dupe") if isdbg('chanerr');
1119 $self->process_rcmd($field[1], $field[2], $field[2], $field[3]);
1124 if ($pcno == 35) { # remote command replies
1125 eph_del_regex("^PC35\\^$field[2]\\^$field[1]\\^");
1126 $self->process_rcmd_reply($field[1], $field[2], $field[1], $field[3]);
1130 # for pc 37 see 44 onwards
1132 if ($pcno == 38) { # node connected list from neighbour
1136 if ($pcno == 39) { # incoming disconnect
1137 if ($field[1] eq $self->{call}) {
1138 $self->disconnect(1);
1140 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1145 if ($pcno == 41) { # user info
1146 my $call = $field[1];
1149 $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1150 if (eph_dup($l, $eph_info_restime)) {
1151 dbg("PCPROT: dupe") if isdbg('chanerr');
1155 # input filter if required
1156 # my $ref = Route::get($call) || Route->new($call);
1157 # return unless $self->in_filter_route($ref);
1159 if ($field[3] eq $field[2] || $field[3] =~ /^\s*$/) {
1160 dbg('PCPROT: invalid value') if isdbg('chanerr');
1164 # add this station to the user database, if required
1165 my $user = DXUser->get_current($call);
1166 $user = DXUser->new($call) unless $user;
1168 if ($field[2] == 1) {
1169 $user->name($field[3]);
1170 } elsif ($field[2] == 2) {
1171 $user->qth($field[3]);
1172 } elsif ($field[2] == 3) {
1173 if (is_latlong($field[3])) {
1174 my ($lat, $long) = DXBearing::stoll($field[3]);
1177 $user->qra(DXBearing::lltoqra($lat, $long));
1179 dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1182 } elsif ($field[2] == 4) {
1183 $user->homenode($field[3]);
1184 } elsif ($field[2] == 5) {
1185 if (is_qra(uc $field[3])) {
1186 my ($lat, $long) = DXBearing::qratoll(uc $field[3]);
1189 $user->qra(uc $field[3]);
1191 dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1195 $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1198 unless ($self->{isolate}) {
1199 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1202 # perhaps this IS what we want after all
1203 # $self->route_pc41($ref, $call, $field[2], $field[3], $field[4]);
1211 if ($pcno == 37 || $pcno == 44 || $pcno == 45 || $pcno == 46 || $pcno == 47 || $pcno == 48) {
1212 DXDb::process($self, $line);
1216 if ($pcno == 50) { # keep alive/user list
1217 my $call = $field[1];
1218 my $node = Route::Node::get($call);
1220 return unless $node->call eq $self->{call};
1221 $node->usercount($field[2]);
1223 # input filter if required
1224 return unless $self->in_filter_route($node);
1226 $self->route_pc50($node, $field[2], $field[3]) unless eph_dup($line);
1231 if ($pcno == 51) { # incoming ping requests/answers
1233 my $from = $field[2];
1234 my $flag = $field[3];
1238 if ($to eq $main::mycall) {
1240 $self->send(pc51($from, $to, '0'));
1242 # it's a reply, look in the ping list for this one
1243 my $ref = $pings{$from};
1245 my $tochan = DXChannel->get($from);
1247 my $r = shift @$ref;
1248 my $dxchan = DXChannel->get($r->{call});
1249 next unless $dxchan;
1250 my $t = tv_interval($r->{t}, [ gettimeofday ]);
1251 if ($dxchan->is_user) {
1252 my $s = sprintf "%.2f", $t;
1253 my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t;
1254 $dxchan->send($dxchan->msg('pingi', $from, $s, $ave))
1255 } elsif ($dxchan->is_node) {
1257 my $nopings = $tochan->user->nopings || 2;
1258 push @{$tochan->{pingtime}}, $t;
1259 shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6;
1261 # cope with a missed ping, this means you must set the pingint large enough
1262 if ($t > $tochan->{pingint} && $t < 2 * $tochan->{pingint} ) {
1263 $t -= $tochan->{pingint};
1266 # calc smoothed RTT a la TCP
1267 if (@{$tochan->{pingtime}} == 1) {
1268 $tochan->{pingave} = $t;
1270 $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6);
1272 $tochan->{nopings} = $nopings; # pump up the timer
1279 if (eph_dup($line)) {
1280 dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1283 # route down an appropriate thingy
1284 $self->route($to, $line);
1289 if ($pcno == 75) { # dunno but route it
1290 my $call = $field[1];
1291 if ($call ne $main::mycall) {
1292 $self->route($call, $line);
1297 if ($pcno == 73) { # WCY broadcasts
1298 my $call = $field[1];
1301 my $d = cltounix($call, sprintf("%02d18Z", $field[2]));
1302 if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $field[2] < 0 || $field[2] > 23) {
1303 dbg("PCPROT: WCY Date ($call $field[2]) out of range") if isdbg('chanerr');
1306 @field = map { unpad($_) } @field;
1308 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1312 my $wcy = WCY::update($d, @field[2..12]);
1316 $rep = Local::wcy($self, @field[1..12]);
1318 # dbg("Local::wcy error $@") if isdbg('local') if $@;
1321 # broadcast to the eager world
1322 send_wcy_spot($self, $line, $d, @field[2..12]);
1326 if ($pcno == 84) { # remote commands (incoming)
1327 $self->process_rcmd($field[1], $field[2], $field[3], $field[4]);
1331 if ($pcno == 85) { # remote command replies
1332 $self->process_rcmd_reply($field[1], $field[2], $field[3], $field[4]);
1336 if ($pcno == 90) { # new style PC16,17,19,21
1341 # if get here then rebroadcast the thing with its Hop count decremented (if
1342 # there is one). If it has a hop count and it decrements to zero then don't
1345 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1349 if (eph_dup($line)) {
1350 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1352 unless ($self->{isolate}) {
1353 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1359 # This is called from inside the main cluster processing loop and is used
1360 # for despatching commands that are doing some long processing job
1365 my @dxchan = DXChannel->get_all();
1369 # send out a pc50 on EVERY channel all at once
1370 if ($t >= $last_pc50 + $DXProt::pc50_interval) {
1371 $pc50s = pc50($main::me, scalar DXChannel::get_all_users);
1376 foreach $dxchan (@dxchan) {
1377 next unless $dxchan->is_node();
1378 next if $dxchan == $main::me;
1380 # send the pc50 or PC90
1381 $dxchan->send($pc50s) if $pc50s;
1383 # send a ping out on this channel
1384 if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) {
1385 if ($dxchan->{nopings} <= 0) {
1386 $dxchan->disconnect;
1388 addping($main::mycall, $dxchan->call);
1389 $dxchan->{nopings} -= 1;
1390 $dxchan->{lastping} = $t;
1396 if ($t - $last10 >= 10) {
1397 # clean out ephemera
1404 if ($main::systime - 3600 > $last_hour) {
1405 $last_hour = $main::systime;
1410 # finish up a pc context
1414 # some active measures
1422 my @dxchan = DXChannel->get_all();
1425 # send it if it isn't the except list and isn't isolated and still has a hop count
1426 # taking into account filtering and so on
1427 foreach $dxchan (@dxchan) {
1428 next if $dxchan == $main::me;
1429 next if $dxchan == $self && $self->is_node;
1430 $dxchan->dx_spot($line, $self->{isolate}, @_, $self->{call});
1438 my $isolate = shift;
1439 my ($filter, $hops);
1441 if ($self->{spotsfilter}) {
1442 ($filter, $hops) = $self->{spotsfilter}->it(@_);
1443 return unless $filter;
1445 send_prot_line($self, $filter, $hops, $isolate, $line);
1450 my ($self, $filter, $hops, $isolate, $line) = @_;
1455 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
1457 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
1458 return unless $routeit;
1461 $self->send($routeit);
1463 $self->send($routeit) unless $self->{isolate} || $isolate;
1472 my @dxchan = DXChannel->get_all();
1474 my ($wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1475 my @dxcc = Prefix::extract($_[6]);
1477 $wwv_dxcc = $dxcc[1]->dxcc;
1478 $wwv_itu = $dxcc[1]->itu;
1479 $wwv_cq = $dxcc[1]->cq;
1481 @dxcc = Prefix::extract($_[7]);
1483 $org_dxcc = $dxcc[1]->dxcc;
1484 $org_itu = $dxcc[1]->itu;
1485 $org_cq = $dxcc[1]->cq;
1488 # send it if it isn't the except list and isn't isolated and still has a hop count
1489 # taking into account filtering and so on
1490 foreach $dxchan (@dxchan) {
1491 next if $dxchan == $main::me;
1492 next if $dxchan == $self && $self->is_node;
1494 my ($filter, $hops);
1496 $dxchan->wwv($line, $self->{isolate}, @_, $self->{call}, $wwv_dxcc, $wwv_itu, $wwv_cq, $org_dxcc, $org_itu, $org_cq);
1505 my $isolate = shift;
1506 my ($filter, $hops);
1508 if ($self->{wwvfilter}) {
1509 ($filter, $hops) = $self->{wwvfilter}->it(@_);
1510 return unless $filter;
1512 send_prot_line($self, $filter, $hops, $isolate, $line)
1519 my @dxchan = DXChannel->get_all();
1521 my ($wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1522 my @dxcc = Prefix::extract($_[10]);
1524 $wcy_dxcc = $dxcc[1]->dxcc;
1525 $wcy_itu = $dxcc[1]->itu;
1526 $wcy_cq = $dxcc[1]->cq;
1528 @dxcc = Prefix::extract($_[11]);
1530 $org_dxcc = $dxcc[1]->dxcc;
1531 $org_itu = $dxcc[1]->itu;
1532 $org_cq = $dxcc[1]->cq;
1535 # send it if it isn't the except list and isn't isolated and still has a hop count
1536 # taking into account filtering and so on
1537 foreach $dxchan (@dxchan) {
1538 next if $dxchan == $main::me;
1539 next if $dxchan == $self;
1541 $dxchan->wcy($line, $self->{isolate}, @_, $self->{call}, $wcy_dxcc, $wcy_itu, $wcy_cq, $org_dxcc, $org_itu, $org_cq);
1549 my $isolate = shift;
1550 my ($filter, $hops);
1552 if ($self->{wcyfilter}) {
1553 ($filter, $hops) = $self->{wcyfilter}->it(@_);
1554 return unless $filter;
1556 send_prot_line($self, $filter, $hops, $isolate, $line) if $self->is_clx || $self->is_spider || $self->is_dxnet;
1564 my @dxchan = DXChannel->get_all();
1568 my $text = unpad($_[2]);
1570 if ($_[3] eq '*') { # sysops
1572 } elsif ($_[3] gt ' ') { # speciality list handling
1573 my ($name) = split /\./, $_[3];
1574 $target = "$name"; # put the rest in later (if bothered)
1581 $target = "ALL" if !$target;
1584 # obtain country codes etc
1585 my ($ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq) = (0..0);
1586 my ($ann_state, $org_state) = ("", "");
1587 my @dxcc = Prefix::extract($_[0]);
1589 $ann_dxcc = $dxcc[1]->dxcc;
1590 $ann_itu = $dxcc[1]->itu;
1591 $ann_cq = $dxcc[1]->cq;
1592 $ann_state = $dxcc[1]->state;
1594 @dxcc = Prefix::extract($_[4]);
1596 $org_dxcc = $dxcc[1]->dxcc;
1597 $org_itu = $dxcc[1]->itu;
1598 $org_cq = $dxcc[1]->cq;
1599 $org_state = $dxcc[1]->state;
1602 if ($self->{inannfilter}) {
1603 my ($filter, $hops) =
1604 $self->{inannfilter}->it(@_, $self->{call},
1605 $ann_dxcc, $ann_itu, $ann_cq,
1606 $org_dxcc, $org_itu, $org_cq, $ann_state, $org_state);
1608 dbg("PCPROT: Rejected by input announce filter") if isdbg('chanerr');
1613 if (AnnTalk::dup($_[0], $_[1], $_[2])) {
1614 dbg("PCPROT: Duplicate Announce ignored") if isdbg('chanerr');
1618 Log('ann', $target, $_[0], $text);
1620 # send it if it isn't the except list and isn't isolated and still has a hop count
1621 # taking into account filtering and so on
1622 foreach $dxchan (@dxchan) {
1623 next if $dxchan == $main::me;
1624 next if $dxchan == $self && $self->is_node;
1625 $dxchan->announce($line, $self->{isolate}, $to, $target, $text, @_, $self->{call}, $ann_dxcc, $ann_itu, $ann_cq, $org_dxcc, $org_itu, $org_cq);
1633 my $isolate = shift;
1637 my ($filter, $hops);
1639 if ($self->{annfilter}) {
1640 ($filter, $hops) = $self->{annfilter}->it(@_);
1641 return unless $filter;
1643 send_prot_line($self, $filter, $hops, $isolate, $line) unless $_[1] eq $main::mycall;
1647 sub send_local_config
1655 dbg('DXProt::send_local_config') if isdbg('trace');
1658 if ($self->{isolate}) {
1659 @localnodes = ( $main::routeroot );
1661 # create a list of all the nodes that are not connected to this connection
1662 # and are not themselves isolated, this to make sure that isolated nodes
1663 # don't appear outside of this node
1664 my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all_nodes();
1665 @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
1666 my @intcalls = map { $_->nodes } @localnodes if @localnodes;
1667 my $ref = Route::Node::get($self->{call});
1668 my @rnodes = $ref->nodes;
1669 for my $node (@intcalls) {
1670 push @remotenodes, Route::Node::get($node) unless grep $node eq $_, @rnodes;
1672 unshift @localnodes, $main::routeroot;
1676 $self->send_route(\&pc19, scalar(@localnodes)+scalar(@remotenodes), @localnodes, @remotenodes);
1678 # get all the users connected on the above nodes and send them out
1679 foreach $node (@localnodes, @remotenodes) {
1681 my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
1682 $self->send_route(\&pc16, 1, $node, @rout) if @rout && $self->user->wantsendpc16;
1684 dbg("sent a null value") if isdbg('chanerr');
1690 # route a message down an appropriate interface for a callsign
1692 # is called route(to, pcline);
1696 my ($self, $call, $line) = @_;
1698 if (ref $self && $call eq $self->{call}) {
1699 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1703 # always send it down the local interface if available
1704 my $dxchan = DXChannel->get($call);
1706 my $cl = Route::get($call);
1707 $dxchan = $cl->dxchan if $cl;
1709 if (ref $self && $dxchan eq $self) {
1710 dbg("PCPROT: Trying to route back to source, dropped") if isdbg('chanerr');
1716 my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
1718 $dxchan->send($routeit) unless $dxchan == $main::me;
1721 dbg("PCPROT: No route available, dropped") if isdbg('chanerr');
1726 # obtain the hops from the list for this callsign and pc no
1732 my $hops = $DXProt::hopcount{$pcno};
1733 $hops = $DXProt::def_hopcount if !$hops;
1738 # adjust the hop count on a per node basis using the user loadable
1739 # hop table if available or else decrement an existing one
1746 my $call = $self->{call};
1749 if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
1750 my ($pcno) = $s =~ /^PC(\d\d)/o;
1751 confess "$call called adjust_hops with '$s'" unless $pcno;
1752 my $ref = $nodehops{$call} if %nodehops;
1754 my $newhops = $ref->{$pcno};
1755 return "" if defined $newhops && $newhops == 0;
1756 $newhops = $ref->{default} unless $newhops;
1757 return "" if defined $newhops && $newhops == 0;
1758 $newhops = $hops if !$newhops;
1759 $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
1761 # simply decrement it
1763 return "" if !$hops;
1764 $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
1776 return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
1777 do "$main::data/hop_table.pl";
1783 # add a ping request to the ping queues
1786 my ($from, $to) = @_;
1787 my $ref = $pings{$to} || [];
1790 $r->{t} = [ gettimeofday ];
1791 route(undef, $to, pc51($to, $main::mycall, 1));
1798 my ($self, $tonode, $fromnode, $user, $cmd) = @_;
1799 if ($tonode eq $main::mycall) {
1800 my $ref = DXUser->get_current($fromnode);
1801 my $cref = Route::Node::get($fromnode);
1802 Log('rcmd', 'in', $ref->{priv}, $fromnode, $cmd);
1803 if ($cmd !~ /^\s*rcmd/i && $cref && $ref && $cref->call eq $ref->homenode) { # not allowed to relay RCMDS!
1804 if ($ref->{priv}) { # you have to have SOME privilege, the commands have further filtering
1805 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
1806 my $oldpriv = $self->{priv};
1807 $self->{priv} = $ref->{priv}; # assume the user's privilege level
1808 my @in = (DXCommandmode::run_cmd($self, $cmd));
1809 $self->{priv} = $oldpriv;
1810 $self->send_rcmd_reply($main::mycall, $fromnode, $user, @in);
1811 delete $self->{remotecmd};
1813 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "sorry...!");
1816 $self->send_rcmd_reply($main::mycall, $fromnode, $user, "your attempt is logged, Tut tut tut...!");
1819 my $ref = DXUser->get_current($tonode);
1820 if ($ref && $ref->is_clx) {
1821 $self->route($tonode, pc84($fromnode, $tonode, $user, $cmd));
1823 $self->route($tonode, pc34($fromnode, $tonode, $cmd));
1828 sub process_rcmd_reply
1830 my ($self, $tonode, $fromnode, $user, $line) = @_;
1831 if ($tonode eq $main::mycall) {
1832 my $s = $rcmds{$fromnode};
1834 my $dxchan = DXChannel->get($s->{call});
1835 my $ref = $user eq $tonode ? $dxchan : (DXChannel->get($user) || $dxchan);
1836 $ref->send($line) if $ref;
1837 delete $rcmds{$fromnode} if !$dxchan;
1839 # send unsolicited ones to the sysop
1840 my $dxchan = DXChannel->get($main::myalias);
1841 $dxchan->send($line) if $dxchan;
1844 my $ref = DXUser->get_current($tonode);
1845 if ($ref && $ref->is_clx) {
1846 $self->route($tonode, pc85($fromnode, $tonode, $user, $line));
1848 $self->route($tonode, pc35($fromnode, $tonode, $line));
1857 my $fromnode = shift;
1862 Log('rcmd', 'out', $fromnode, $line);
1863 if ($self->is_clx) {
1864 $self->send(pc85($main::mycall, $fromnode, $user, "$main::mycall:$line"));
1866 $self->send(pc35($main::mycall, $fromnode, "$main::mycall:$line"));
1871 # add a rcmd request to the rcmd queues
1874 my ($self, $to, $cmd) = @_;
1877 $r->{call} = $self->{call};
1878 $r->{t} = $main::systime;
1882 my $ref = Route::Node::get($to);
1883 my $dxchan = $ref->dxchan;
1884 if ($dxchan && $dxchan->is_clx) {
1885 route(undef, $to, pc84($main::mycall, $to, $self->{call}, $cmd));
1887 route(undef, $to, pc34($main::mycall, $to, $cmd));
1894 my $pc39flag = shift;
1895 my $call = $self->call;
1897 return if $self->{disconnecting}++;
1899 unless ($pc39flag && $pc39flag == 1) {
1900 $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op")));
1903 # get rid of any PC16/17/19
1904 eph_del_regex("^PC1[679]*$call");
1906 # do routing stuff, remove me from routing table
1907 my $node = Route::Node::get($call);
1910 @rout = $node->del($main::routeroot);
1912 # and all my ephemera as well
1915 eph_del_regex("^PC1[679].*$c");
1919 # remove them from the pc19list as well
1920 while (my ($k,$v) = each %pc19list) {
1921 my @l = grep {$_->[0] ne $call} @{$pc19list{$k}};
1923 $pc19list{$k} = \@l;
1925 delete $pc19list{$k};
1929 eph_del_regex("^PC1[679].*$k");
1932 # unbusy and stop and outgoing mail
1933 my $mref = DXMsg::get_busy($call);
1934 $mref->stop_msg($call) if $mref;
1936 # broadcast to all other nodes that all the nodes connected to via me are gone
1937 unless ($pc39flag && $pc39flag == 2) {
1938 $self->route_pc21(@rout) if @rout;
1941 # remove outstanding pings
1942 delete $pings{$call};
1944 # I was the last node visited
1945 $self->user->node($main::mycall);
1947 # send info to all logged in thingies
1948 $self->tell_login('logoutn');
1950 Log('DXProt', $call . " Disconnected");
1952 $self->SUPER::disconnect;
1957 # send a talk message to this thingy
1961 my ($self, $from, $to, $via, $line, $origin) = @_;
1963 $line =~ s/\^/\\5E/g; # remove any ^ characters
1964 $self->send(DXProt::pc10($from, $to, $via, $line, $origin));
1965 Log('talk', $to, $from, $via?$via:$self->call, $line) unless $origin && $origin ne $main::mycall;
1968 # send it if it isn't the except list and isn't isolated and still has a hop count
1969 # taking into account filtering and so on
1973 my $generate = shift;
1974 my $no = shift; # the no of things to filter on
1976 my ($filter, $hops);
1979 for (; @_ && $no; $no--) {
1982 if (!$self->{isolate} && $self->{routefilter}) {
1985 ($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});
1989 dbg("DXPROT: $self->{call}/" . $r->call . " rejected by output filter") if isdbg('chanerr');
1992 dbg("was sent a null value") if isdbg('chanerr');
1995 push @rin, $r unless $self->{isolate} && $r->call ne $main::mycall;
1999 foreach my $line (&$generate(@rin, @_)) {
2002 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
2004 $routeit = adjust_hops($self, $line); # adjust its hop count by node name
2005 next unless $routeit;
2007 $self->send($routeit);
2015 my $generate = shift;
2016 my @dxchan = DXChannel::get_all_nodes();
2020 unless ($self->{isolate}) {
2021 foreach $dxchan (@dxchan) {
2022 next if $dxchan == $self;
2023 next if $dxchan == $main::me;
2024 next if $dxchan->user->wantnp;
2025 next if ($generate == \&pc16 || $generate==\&pc17) && !$dxchan->user->wantsendpc16;
2027 $dxchan->send_route($generate, @_);
2035 return unless $self->user->wantpc16;
2036 broadcast_route($self, \&pc16, 1, @_);
2042 return unless $self->user->wantpc16;
2043 broadcast_route($self, \&pc17, 1, @_);
2049 broadcast_route($self, \&pc19, scalar @_, @_);
2055 broadcast_route($self, \&pc21, scalar @_, @_);
2061 broadcast_route($self, \&pc24, 1, @_);
2067 broadcast_route($self, \&pc41, 1, @_);
2073 broadcast_route($self, \&pc50, 1, @_);
2079 broadcast_route($self, \&pc90, 1, @_);
2086 my ($filter, $hops) = (1, 1);
2088 if ($self->{inroutefilter}) {
2089 ($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);
2090 dbg("PCPROT: $self->{call}/" . $r->call . ' rejected by in_filter_route') if !$filter && isdbg('chanerr');
2098 my $t = shift || $eph_restime;
2102 $s =~ s/\^H\d\d?\^?\~?$//;
2103 $r = 1 if exists $eph{$s}; # pump up the dup if it keeps circulating
2104 $eph{$s} = $main::systime + $t;
2112 while (($key, $val) = each %eph) {
2113 if ($key =~ m{$regex}) {
2123 while (($key, $val) = each %eph) {
2124 if ($main::systime >= $val) {
2135 while (($key, $val) = each %eph) {
2136 push @out, $key, $val;
2143 goto &DXCommandmode::run_cmd;